diff --git a/src/Classes/Item.lua b/src/Classes/Item.lua index 4597dde52b..178b4cae4c 100644 --- a/src/Classes/Item.lua +++ b/src/Classes/Item.lua @@ -104,12 +104,12 @@ local function getTagBasedModifiers(tagName, itemSlotName) if data.itemTagSpecial[tagName] and data.itemTagSpecial[tagName][itemSlotName] then for _, specialMod in ipairs(data.itemTagSpecial[tagName][itemSlotName]) do if dv:lower():find(specialMod:lower()) then - exclude = true + excluded = true break end end end - if exclude then + if excluded then found = true break end @@ -131,12 +131,12 @@ local function getTagBasedModifiers(tagName, itemSlotName) if data.itemTagSpecial[tagName] and data.itemTagSpecial[tagName][itemSlotName] then for _, specialMod in ipairs(data.itemTagSpecial[tagName][itemSlotName]) do if dv:lower():find(specialMod:lower()) then - exclude = true + excluded = true break end end end - if exclude then + if excluded then found = true break end @@ -444,16 +444,16 @@ function ItemClass:ParseRaw(raw, rarity, highQuality) end end elseif specName == "Radius" and self.type == "Jewel" then - self.jewelRadiusLabel = specVal:match("^%a+") - if specVal:match("^%a+") == "Variable" then - -- Jewel radius is variable and must be read from it's mods instead after they are parsed - deferJewelRadiusIndexAssignment = true - else - for index, data in pairs(data.jewelRadius) do - if specVal:match("^%a+") == data.label then - self.jewelRadiusIndex = index - break - end + self.jewelRadiusLabel = specVal:match("^[%a ]+") + if specVal:match("^[%a ]+") == "Variable" then + -- Jewel radius is variable and must be read from it's mods instead after they are parsed + deferJewelRadiusIndexAssignment = true + else + for index, data in pairs(data.jewelRadius) do + if specVal:match("^[%a ]+") == data.label then + self.jewelRadiusIndex = index + break + end end end elseif specName == "Limited to" and self.type == "Jewel" then diff --git a/src/Data/BeastCraft.lua b/src/Data/BeastCraft.lua index 7c8bf3fdb2..2ceaf29766 100644 --- a/src/Data/BeastCraft.lua +++ b/src/Data/BeastCraft.lua @@ -2,12 +2,12 @@ -- Item data (c) Grinding Gear Games return { - ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 700 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 695 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 725 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 702 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, - ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 700 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 695 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 725 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 702 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, + ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 695 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 690 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, + ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 695 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 690 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, } \ No newline at end of file diff --git a/src/Data/ModCache.lua b/src/Data/ModCache.lua index e35fd09163..566ff2859e 100755 --- a/src/Data/ModCache.lua +++ b/src/Data/ModCache.lua @@ -74,7 +74,6 @@ c["(8-10)% chance to Avoid being Stunned"]={nil,"(8-10)% chance to Avoid being S c["(8-12)% increased maximum Energy Shield"]={nil,"(8-12)% increased maximum Energy Shield "} c["(8-12)% increased maximum Energy Shield (10-15)% increased Energy Shield Recharge Rate"]={nil,"(8-12)% increased maximum Energy Shield (10-15)% increased Energy Shield Recharge Rate "} c["(8-12)% increased maximum Energy Shield 0.3% of Spell Damage Leeched as Energy Shield"]={nil,"(8-12)% increased maximum Energy Shield 0.3% of Spell Damage Leeched as Energy Shield "} -c["(The damage they take will be divided evenly between them)"]={nil,"(The damage they take will be divided evenly between them) "} c["+(13-19)% to Chaos Resistance"]={nil,"+(13-19)% to Chaos Resistance "} c["+(20-30)% to Cold Resistance"]={nil,"+(20-30)% to Cold Resistance "} c["+(20-30)% to Fire Resistance"]={nil,"+(20-30)% to Fire Resistance "} @@ -85,7 +84,6 @@ c["+(8-10)% to all Elemental Resistances"]={nil,"+(8-10)% to all Elemental Resis c["+(9-14)% to Cold Resistance"]={nil,"+(9-14)% to Cold Resistance "} c["+(9-14)% to Fire Resistance"]={nil,"+(9-14)% to Fire Resistance "} c["+(9-14)% to Lightning Resistance"]={nil,"+(9-14)% to Lightning Resistance "} -c["+0 metres to Melee Strike Range while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0},[2]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0}},nil} c["+0 metres to Melee Strike Range with Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0},[2]={flags=16777220,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0}},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["+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} @@ -106,12 +104,12 @@ c["+0.15% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shi c["+0.2 metres to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.2},[2]={flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.2}},nil} c["+0.2 metres to Melee Strike Range per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.2},[2]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.2}},nil} c["+0.2 metres to Melee Strike Range while Holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.2},[2]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.2}},nil} +c["+0.2 metres to Weapon Range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRangeMetre",type="BASE",value=0.2}},nil} c["+0.2% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={skillType=1,type="SkillType"},[3]={div=10,stat="EnergyShieldOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.2}},nil} c["+0.3 metres to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.3},[2]={flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.3}},nil} c["+0.3 metres to Melee Strike Range with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.3},[2]={flags=4194308,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.3}},nil} 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["+0.4 metres to Melee Strike Range"]={{[1]={flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.4},[2]={flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.4}},nil} -c["+0.4 metres to Melee Strike Range while Unarmed"]={{[1]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.4},[2]={[1]={type="Condition",var="Unarmed"},flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.4}},nil} c["+0.4 metres to Melee Strike Range while at least 5 Enemies are Nearby"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="NearbyEnemies"},flags=0,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.4},[2]={[1]={threshold=5,type="MultiplierThreshold",var="NearbyEnemies"},flags=0,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.4}},nil} c["+0.4 metres to Melee Strike Range with Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.4},[2]={flags=16777220,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.4}},nil} c["+0.7 metres to Melee Strike Range with Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=0.7},[2]={flags=16777220,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=0.7}},nil} @@ -120,14 +118,16 @@ c["+1 Armour per 10 Unreserved Maximum Mana"]={{[1]={[1]={div=10,stat="ManaUnres c["+1 Armour per 2 Strength"]={{[1]={[1]={div=2,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="Armour",type="BASE",value=1}},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["+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["+1 Maximum Energy Shield per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil} +c["+1 Maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil} +c["+1 Maximum Mana per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}},nil} c["+1 Prefix Modifier allowed"]={{},nil} c["+1 Ring Slot"]={{[1]={flags=0,keywordFlags=0,name="AdditionalRingSlot",type="FLAG",value=true}},nil} c["+1 Suffix Modifier allowed"]={{},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["+1 metres to Melee Strike Range with Unarmed Attacks"]={{[1]={flags=16777220,keywordFlags=0,name="MeleeWeaponRangeMetre",type="BASE",value=1},[2]={flags=16777220,keywordFlags=0,name="UnarmedRangeMetre",type="BASE",value=1}},nil} +c["+1 metres to Weapon Range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRangeMetre",type="BASE",value=1}},nil} c["+1 second to Summon Skeleton Cooldown"]={{}," second to Summon Cooldown "} -c["+1 to Level of Socketed Active 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["+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="grants_active_skill",value=1}}},nil} 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["+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["+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} @@ -138,6 +138,8 @@ c["+1 to Level of Socketed Fire Gems"]={{[1]={[1]={slotName="{SlotName}",type="S 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["+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["+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["+1 to Level of Socketed Skill Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="skill",value=1}}},nil} +c["+1 to Level of Socketed 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="grants_active_skill",value=1}}},nil} 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["+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["+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} @@ -165,19 +167,15 @@ c["+1 to Level of all Strength Skill Gems"]={{[1]={flags=0,keywordFlags=0,name=" c["+1 to Level of all Vaal Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="vaal",[2]="skill"},value=1}}},nil} c["+1 to Level of all non-Exceptional Support Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="non-exceptional",[2]="support"},value=1}}},nil} c["+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped"]={{[1]={[1]={threshold=6,type="MultiplierThreshold",var="ShaperItem"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="non-exceptional",value=1}}},nil} -c["+1 to Maximum Endurance Charge"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil} c["+1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil} c["+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped"]={{[1]={[1]={threshold=6,type="MultiplierThreshold",var="WarlordItem"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil} c["+1 to Maximum Endurance Charges while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},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["+1 to Maximum Fortification per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=1}},nil} -c["+1 to Maximum Frenzy Charge"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil} c["+1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil} c["+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped"]={{[1]={[1]={threshold=6,type="MultiplierThreshold",var="RedeemerItem"},flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},nil} c["+1 to Maximum Frenzy Charges while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=1}},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["+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["+1 to Maximum Power Charge"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil} c["+1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil} c["+1 to Maximum Power Charges and Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=1}},nil} c["+1 to Maximum Power Charges if 6 Crusader Items are Equipped"]={{[1]={[1]={threshold=6,type="MultiplierThreshold",var="CrusaderItem"},flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=1}},nil} @@ -185,7 +183,6 @@ c["+1 to Maximum Power Charges while affected by Discipline"]={{[1]={[1]={type=" c["+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped"]={{[1]={[1]={type="Multiplier",var="ShaperOrElderItem"},flags=0,keywordFlags=0,name="SiphoningChargesMax",type="BASE",value=1}},nil} c["+1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewel"},flags=0,keywordFlags=0,name="SpiritChargesMax",type="BASE",value=1}},nil} c["+1 to Maximum number of Raised Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil} -c["+1 to Maximum number of Sacred Wisps"]={{[1]={flags=0,keywordFlags=0,name="SacredWispsMaxCount",type="BASE",value=1}},nil} c["+1 to Maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=1}},nil} c["+1 to Maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}},nil} c["+1 to Minimum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMin",type="BASE",value=1}},nil} @@ -199,19 +196,17 @@ c["+1 to Minimum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerCharge c["+1 to Minimum Power Charges per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="PowerChargesMin",type="BASE",value=1}},nil} c["+1 to Minimum Power Charges while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="PowerChargesMin",type="BASE",value=1}},nil} c["+1 to maximum Energy Shield per 8 Evasion Rating on Equipped Body Armour"]={{[1]={[1]={div=8,stat="EvasionOnBody Armour",type="PerStat"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=1}},nil} -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["+1 to maximum Fortification"]={{[1]={flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=1}},nil} -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["+1 to maximum Fortification per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=1}},nil} c["+1 to maximum Mana per 2 Intelligence"]={{[1]={[1]={div=2,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}},nil} -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["+1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=1}},nil} +c["+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}}," per Socketed Ghastly Eye Jewel "} +c["+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel +1000 to Spectre maximum Life"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}}}}," per Socketed Ghastly Eye Jewel +1000 to maximum Life "} c["+1 to maximum number of Raised Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil} c["+1 to maximum number of Raised Zombies per 300 Strength"]={{[1]={[1]={div=300,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil} c["+1 to maximum number of Raised Zombies per 500 Strength"]={{[1]={[1]={div=500,stat="Str",type="PerStat"},flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=1}},nil} +c["+1 to maximum number of Sacred Wisps"]={{[1]={flags=0,keywordFlags=0,name="SacredWispsMaxCount",type="BASE",value=1}},nil} c["+1 to maximum number of Skeletons"]={{[1]={flags=0,keywordFlags=0,name="ActiveSkeletonLimit",type="BASE",value=1}},nil} c["+1 to maximum number of Spectres"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}},nil} -c["+1 to maximum number of Spectres per Socketed Ghastly Eye Jewel"]={{[1]={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}}," per Socketed Ghastly Eye Jewel "} -c["+1 to maximum number of Spectres per Socketed Ghastly Eye Jewel You cannot have Non-Spectre Minions"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ActiveSpectreLimit",type="BASE",value=1}}}}," per Socketed Ghastly Eye Jewel You cannot have Non- Minions "} c["+1 to maximum number of Summoned Golems"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=1}},nil} 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["+1 to maximum number of Summoned Holy Relics"]={{[1]={flags=0,keywordFlags=0,name="ActiveHolyRelicLimit",type="BASE",value=1}},nil} @@ -225,16 +220,14 @@ c["+1% Chance to Block Attack Damage per Summoned Skeleton"]={{[1]={[1]={stat="A c["+1% Chance to Block Spell Damage per 5% Chance to Block Attack Damage"]={{[1]={[1]={div=5,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=1}},nil} c["+1% Chance to Suppress Spell Damage per 15 Dexterity"]={{[1]={[1]={div=15,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=1}},nil} c["+1% 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=1}},nil} -c["+1% to All Elemental Resistances per 15 Omniscience"]={{[1]={[1]={div=15,stat="Omni",type="PerStat"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=1}},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["+1% to Cold Damage over Time Multiplier for each 4% Overcapped Cold Resistance"]={{[1]={[1]={div="4",stat="ColdResistOverCap",type="PerStat"},flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=1}},nil} -c["+1% to Critical Strike Chance against Excommunicated Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Excommunicated"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil} c["+1% to Critical Strike Chance of Herald Skills"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil} 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["+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["+1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=1}},nil} c["+1% to Critical Strike Multiplier per 10 Maximum Energy Shield on Shield"]={{[1]={[1]={div=10,stat="EnergyShieldOnWeapon 2",type="PerStat"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=1}},nil} c["+1% to Off Hand Critical Strike Chance while Dual Wielding"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={skillType=1,type="SkillType"},[3]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil} +c["+1% to all Elemental Resistances per 15 Omniscience"]={{[1]={[1]={div=15,stat="Omni",type="PerStat"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=1}},nil} c["+1% to all maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=1}},nil} c["+1% to all maximum Elemental Resistances if Equipped Helmet, Body Armour, Gloves, and Boots all have Armour"]={{[1]={[1]={stat="ArmourOnHelmet",threshold=1,type="StatThreshold"},[2]={stat="ArmourOnBody Armour",threshold=1,type="StatThreshold"},[3]={stat="ArmourOnGloves",threshold=1,type="StatThreshold"},[4]={stat="ArmourOnBoots",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=1}},nil} c["+1% to all maximum Elemental Resistances if you have Killed a Cursed Enemy Recently"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=1}},nil} @@ -248,32 +241,30 @@ c["+1% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResi 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["+1% to maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=1}},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["+1.2% to Critical Strike Chance against Excommunicated Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Excommunicated"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1.2}},nil} c["+1.5% to Spell Critical Strike Chance if 4 Shaper Items are Equipped"]={{[1]={[1]={threshold=4,type="MultiplierThreshold",var="ShaperItem"},flags=2,keywordFlags=0,name="CritChance",type="BASE",value=1.5}},nil} -c["+1.6% to Critical Strike Chance against Excommunicated Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Excommunicated"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=1.6}},nil} 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["+10 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=10}},nil} c["+10 to Devotion"]={{[1]={flags=0,keywordFlags=0,name="Devotion",type="BASE",value=10}},nil} c["+10 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=10}},nil} 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},[3]={flags=0,keywordFlags=0,name="DexInt",type="BASE",value=10}},nil} c["+10 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=10}},nil} -c["+10 to Maximum Fortification"]={{[1]={flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=10}},nil} c["+10 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=10}},nil} c["+10 to Maximum Rage while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=10}},nil} c["+10 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=10}},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},[3]={flags=0,keywordFlags=0,name="StrDex",type="BASE",value=10}},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},[3]={flags=0,keywordFlags=0,name="StrInt",type="BASE",value=10}},nil} -c["+10 to Weapon Range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=10}},nil} 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},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=10}},nil} c["+10 to maximum Divine Charges"]={{}," maximum Divine Charges "} -c["+10 to maximum Divine Charges You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={{}," maximum Divine Charges You gain Divinity on reaching maximum Divine Charges "} +c["+10 to maximum Divine Charges Gain a Divine Charge on Hit"]={{}," maximum Divine Charges Gain a Divine Charge "} c["+10 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}},nil} +c["+10 to maximum Fortification"]={{[1]={flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=10}},nil} c["+10 to maximum Fortification while Focused"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=10}},nil} c["+10 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=10}},nil} c["+10 to maximum Valour"]={{[1]={flags=0,keywordFlags=0,name="MaximumValour",type="BASE",value=10}},nil} c["+10 to maximum number of Eaten Souls"]={{[1]={flags=0,keywordFlags=0,name="SoulEaterMax",type="BASE",value=10}},nil} c["+10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} c["+10% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} +c["+10% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} c["+10% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} c["+10% Chance to Block Attack Damage while Dual Wielding Claws"]={{[1]={[1]={type="Condition",var="DualWieldingClaws"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} c["+10% 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=10}},nil} @@ -281,6 +272,7 @@ c["+10% Chance to Block Attack Damage while at Maximum Endurance Charges"]={{[1] c["+10% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} c["+10% Chance to Block Attack Damage while not Cursed"]={{[1]={[1]={neg=true,type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} 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["+10% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil} c["+10% 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=10}},nil} c["+10% Chance to Block Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil} c["+10% chance to Block Spell Damage while holding a Staff or Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingStaff",[2]="UsingShield"}},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil} @@ -319,6 +311,7 @@ c["+10% to Global Critical Strike Multiplier while wielding a Staff"]={{[1]={[1] c["+10% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=10}},nil} c["+10% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} c["+10% to Off Hand Critical Strike Chance"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=10}},nil} +c["+10% to Off Hand Critical Strike Multiplier per"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}}," per "} c["+10% to Off Hand Critical Strike Multiplier per Murderous Eye Jewel affecting you, up to a maximum of +100%"]={{[1]={[1]={globalLimit=100,globalLimitKey="TecrodGazeOffHand",type="Multiplier",var="MurderousEyeJewel"},[2]={type="Condition",var="OffHandAttack"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}},nil} c["+10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10}},nil} c["+10% to all Elemental Resistances and maximum Elemental Resistances while affected by a Non-Vaal Guard Skill"]={{[1]={[1]={type="Condition",var="AffectedByNonVaalGuardSkill"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=10},[2]={[1]={type="Condition",var="AffectedByNonVaalGuardSkill"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=10}},nil} @@ -330,9 +323,7 @@ c["+100 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="B c["+100 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=100}},nil} c["+100 to Evasion Rating while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=100}},nil} c["+100 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=100}},nil} -c["+100 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=100}},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["+100 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},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["+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["+100 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=100}},nil} @@ -341,7 +332,7 @@ c["+100 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShi c["+100 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=100}},nil} c["+100 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=100}},nil} c["+100% Chance to Block Attack Damage if you have Blocked Spell Damage Recently"]={{[1]={[1]={type="Condition",var="BlockedSpellRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=100}},nil} -c["+100% Chance to Block Spell Damage if you have Blocked Attack Damage Recently"]={{[1]={[1]={type="Condition",var="BlockedAttackRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=100}},nil} +c["+100% chance to Block Spell Damage if you have Blocked Attack Damage Recently"]={{[1]={[1]={type="Condition",var="BlockedAttackRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=100}},nil} c["+100% to Cold Resistance when Socketed with a Green Gem"]={{[1]={[1]={keyword="dexterity",slotName="{SlotName}",sockets={[1]=1},type="SocketedIn"},flags=0,keywordFlags=0,name="SocketProperty",type="LIST",value={value={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=100}}}},nil} c["+100% to Critical Strike Multiplier against Enemies that are not on Low Life"]={{[1]={[1]={actor="enemy",neg=true,type="ActorCondition",var="LowLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil} c["+100% to Critical Strike Multiplier against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=100}},nil} @@ -361,10 +352,11 @@ c["+1000 to Evasion Rating while in Sand Stance"]={{[1]={[1]={type="Condition",v c["+1000 to Evasion Rating while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=1000}},nil} c["+1000 to Spectre maximum Life"]={{[1]={[1]={includeTransfigured=true,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["+1000 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}},nil} -c["+1000 to maximum Life if there are no Life Modifiers on other Equipped items"]={{[1]={[1]={allSlots=true,excludeSelf=true,itemSlot="{SlotName}",neg=true,searchCond="life",type="ItemCondition"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}},nil} +c["+1000 to maximum Life if there are no Life Modifiers on other Equipped Items"]={{[1]={[1]={allSlots=true,excludeSelf=true,itemSlot="{SlotName}",neg=true,searchCond="life",type="ItemCondition"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1000}},nil} c["+105 Energy Shield gained on Killing a Shocked Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="EnergyShieldOnKill",type="BASE",value=105}},nil} c["+107 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=107}},nil} c["+11% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=11}},nil} +c["+11% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=11}},nil} c["+11% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=11}},nil} c["+11% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=11}},nil} c["+110 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=110}},nil} @@ -378,11 +370,11 @@ c["+114% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby"]={{[ c["+116 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=116}},nil} c["+116 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=116}},nil} c["+12 to Level of Socketed Skill Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="skill",value=12}}},nil} -c["+12 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=12}},nil} c["+12 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=12}},nil} c["+12 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=12}},nil} c["+12% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil} c["+12% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil} +c["+12% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil} c["+12% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil} c["+12% 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=12}},nil} c["+12% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil} @@ -448,7 +440,7 @@ c["+137 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE", c["+14 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=14}},nil} c["+14 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=14}},nil} c["+14 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=14}},nil} -c["+14% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=14}},nil} +c["+14% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=14}},nil} c["+14% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=14}},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["+14% to Critical Strike Multiplier with Daggers"]={{[1]={flags=524292,keywordFlags=0,name="CritMultiplier",type="BASE",value=14}},nil} @@ -464,9 +456,9 @@ c["+145 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShi c["+15 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=15}},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},[3]={flags=0,keywordFlags=0,name="DexInt",type="BASE",value=15}},nil} c["+15 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=15}},nil} +c["+15 to Maximum Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=15}},nil} c["+15 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=15}},nil} 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},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=15}},nil} -c["+15 to maximum Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=15}},nil} c["+15 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=15}},nil} c["+15 to maximum Fortification while affected by Glorious Madness"]={{[1]={[1]={type="Condition",var="AffectedByGloriousMadness"},flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=15}},nil} c["+15 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=15}},nil} @@ -474,6 +466,7 @@ c["+15% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type= c["+15% Chance to Block Attack Damage if you have not Blocked Recently"]={{[1]={[1]={neg=true,type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil} c["+15% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil} c["+15% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil} +c["+15% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil} c["+15% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=15}},nil} c["+15% chance to Avoid Elemental Damage from Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=15},[2]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=15},[3]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=15}},nil} c["+15% chance to Avoid Physical Damage from Hits while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidPhysicalDamageChance",type="BASE",value=15}},nil} @@ -527,6 +520,7 @@ c["+16 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE", c["+16 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=16}},nil} c["+16 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=16}},nil} c["+16 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=16}},nil} +c["+16% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=16}},nil} c["+16% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=16}},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["+16% to Critical Strike Multiplier with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="CritMultiplier",type="BASE",value=16}},nil} @@ -543,13 +537,13 @@ c["+165 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShi 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},[3]={flags=0,keywordFlags=0,name="DexInt",type="BASE",value=17}},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},[3]={flags=0,keywordFlags=0,name="StrDex",type="BASE",value=17}},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},[3]={flags=0,keywordFlags=0,name="StrInt",type="BASE",value=17}},nil} +c["+17% chance to Suppress Spell Damage while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=17}},nil} c["+17% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=17}},nil} c["+170 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=170}},nil} c["+170 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=170}},nil} c["+175 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=175}},nil} c["+175 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=175}},nil} c["+175 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=175}},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},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=18}},nil} c["+18 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=18}},nil} c["+18 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=18}},nil} c["+18 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=18}},nil} @@ -584,10 +578,13 @@ c["+190 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="B c["+190 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=190}},nil} 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["+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["+2 Maximum Energy Shield per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=2}},nil} +c["+2 Maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Life",type="BASE",value=2}},nil} +c["+2 Maximum Mana per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=2}},nil} 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["+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["+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["+2 to Level of All Spell Skill Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keywordList={[1]="spell",[2]="skill"},value=2}}},nil} +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["+2 to Level of Socketed AoE Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyword="aoe",value=2}}},nil} 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["+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} @@ -628,10 +625,6 @@ c["+2 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerCharge c["+2 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=2}},nil} c["+2 to Ward per 10 Armour on Equipped Helmet"]={{[1]={[1]={div=10,stat="Armour",type="PerStat"},flags=0,keywordFlags=0,name="Ward",type="BASE",value=2}}," on Equipped Helmet "} c["+2 to Weapon Range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=2}},nil} -c["+2 to Weapon range"]={{[1]={flags=0,keywordFlags=0,name="WeaponRange",type="BASE",value=2}},nil} -c["+2 to maximum Energy Shield per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=2}},nil} -c["+2 to maximum Life per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Life",type="BASE",value=2}},nil} -c["+2 to maximum Mana per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=2}},nil} c["+2 to maximum Snipe Stages"]={{[1]={[1]={effectType="Buff",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="Multiplier:SnipeStagesMax",type="BASE",value=2}},nil} c["+2 to maximum number of Raised Zombies"]={{[1]={flags=0,keywordFlags=0,name="ActiveZombieLimit",type="BASE",value=2}},nil} c["+2 to maximum number of Sacred Wisps"]={{[1]={flags=0,keywordFlags=0,name="SacredWispsMaxCount",type="BASE",value=2}},nil} @@ -648,8 +641,8 @@ c["+2% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type=" c["+2% Chance to Block Spell Damage for each 1% Overcapped Chance to Block Attack Damage"]={{[1]={[1]={div=1,stat="BlockChanceOverCap",type="PerStat"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil} c["+2% Chance to Block Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil} c["+2% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=2}},nil} +c["+2% chance to Suppress Spell Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=2}},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["+2% to Critical Strike Chance against Excommunicated Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Excommunicated"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=2}},nil} c["+2% to Critical Strike Chance while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=2}},nil} c["+2% to Spell Critical Strike Chance if 4 Shaper Items are Equipped"]={{[1]={[1]={threshold=4,type="MultiplierThreshold",var="ShaperItem"},flags=2,keywordFlags=0,name="CritChance",type="BASE",value=2}},nil} c["+2% to all Elemental Resistances per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=2}},nil} @@ -663,36 +656,36 @@ c["+2% to maximum Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosRe c["+2% to maximum Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResistMax",type="BASE",value=2}},nil} c["+2% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=2}},nil} c["+2% to maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=2}},nil} -c["+2.00 seconds to Cat's Agility Duration"]={{[1]={[1]={skillName="Aspect of the Cat",type="SkillName"},flags=0,keywordFlags=0,name="SecondaryDuration",type="BASE",value=2}},nil} -c["+2.00 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["+20 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=20}},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},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=20}},nil} c["+20 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=20}},nil} c["+20 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=20}},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},[3]={flags=0,keywordFlags=0,name="DexInt",type="BASE",value=20}},nil} c["+20 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=20}},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["+20 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=20}},nil} +c["+20 to Maximum Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=20}},nil} c["+20 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=20}},nil} c["+20 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=20}},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},[3]={flags=0,keywordFlags=0,name="StrDex",type="BASE",value=20}},nil} 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},[3]={flags=0,keywordFlags=0,name="StrInt",type="BASE",value=20}},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},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=20}},nil} -c["+20 to maximum Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=20}},nil} c["+20 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=20}},nil} c["+20 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=20}},nil} c["+20 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=20}},nil} +c["+20% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil} +c["+20% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil} c["+20% Chance to Block Attack Damage from Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil} c["+20% Chance to Block Attack Damage if you have Blocked Spell Damage Recently"]={{[1]={[1]={type="Condition",var="BlockedSpellRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil} c["+20% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},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["+20% Chance to Block Spell Damage if you have Blocked Attack Damage Recently"]={{[1]={[1]={type="Condition",var="BlockedAttackRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} +c["+20% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} c["+20% Chance to Block Spell Damage while Cursed"]={{[1]={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} c["+20% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} c["+20% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} -c["+20% chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},nil} +c["+20% chance to Block Spell Damage if you have Blocked Attack Damage Recently"]={{[1]={[1]={type="Condition",var="BlockedAttackRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} c["+20% chance to Ignite, Freeze, Shock, and Poison Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=20},[2]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=20},[3]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=20},[4]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil} c["+20% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=20}},nil} +c["+20% chance to Suppress Spell Damage while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=20}},nil} c["+20% chance to be Shocked"]={{}," to be Shocked "} c["+20% chance to be Shocked 30% of Lightning Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenFromManaBeforeLife",type="BASE",value=20}}," to be Shocked 30% of "} c["+20% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=20}},nil} @@ -712,6 +705,7 @@ c["+20% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningR c["+20% to Lightning and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=20},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=20}},nil} c["+20% to Melee Critical Strike Multiplier"]={{[1]={flags=256,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil} c["+20% to Off Hand Critical Strike Chance"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=20}},nil} +c["+20% to Off Hand Critical Strike Multiplier per"]={{[1]={[1]={type="Condition",var="OffHandAttack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}}," per "} c["+20% to Off Hand Critical Strike Multiplier per Murderous Eye Jewel affecting you, up to a maximum of +100%"]={{[1]={[1]={globalLimit=100,globalLimitKey="TecrodGazeOffHand",type="Multiplier",var="MurderousEyeJewel"},[2]={type="Condition",var="OffHandAttack"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}},nil} c["+20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=20}},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} @@ -757,9 +751,9 @@ c["+23 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShie c["+23 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=23}},nil} c["+23 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=23}},nil} c["+23% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=23}},nil} -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["+23% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=23}},nil} c["+23% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}},nil} +c["+23% to Chaos Resistance when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=23}},nil} c["+23% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=23}},nil} 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["+23% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=23}},nil} @@ -778,6 +772,7 @@ c["+24 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type 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},[3]={flags=0,keywordFlags=0,name="StrInt",type="BASE",value=24}},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},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=24}},nil} c["+24 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=24}},nil} +c["+24% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=24}},nil} c["+24% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=24}},nil} c["+24% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=24}},nil} c["+24% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=24}},nil} @@ -787,33 +782,33 @@ c["+240 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE", c["+240% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=240}},nil} c["+25 Mana gained on Killing a Frozen Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=25}},nil} c["+25 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=25}},nil} -c["+25 maximum Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=25}},nil} c["+25 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=25}},nil} c["+25 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=25}},nil} c["+25 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25}},nil} c["+25 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="DexInt",type="BASE",value=25}},nil} c["+25 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=25}},nil} +c["+25 to Maximum Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=25}},nil} c["+25 to Maximum Rage while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=25}},nil} c["+25 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=25}},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},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=25}},nil} -c["+25 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=25}},nil} c["+25 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=25}},nil} c["+25 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=25}},nil} c["+25 to maximum Life per Allocated Journey Tattoo of the Body"]={{[1]={[1]={type="Multiplier",var="JourneyTattooBody"},flags=0,keywordFlags=0,name="Life",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="Multiplier:JourneyTattooBody",type="BASE",value=1}},nil} c["+25 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=25}},nil} c["+25% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=25}},nil} c["+25% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=25}},nil} -c["+25% Chance to Block Projectile Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="ProjectileBlockChance",type="BASE",value=25}},nil} c["+25% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=25}},nil} c["+25% Chance to Block Spell Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=25}},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["+25% chance to Block Projectile Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="ProjectileBlockChance",type="BASE",value=25}},nil} c["+25% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=25}},nil} +c["+25% chance to Suppress Spell Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=25}},nil} c["+25% chance to be Ignited"]={{}," to be Ignited "} c["+25% chance to be Ignited All Damage Taken from Hits can Ignite you"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenWhenHit",type="BASE",value=25}}," to be Ignited All can Ignite you "} c["+25% chance to be Ignited Regenerate 125 Life per second while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=0,keywordFlags=0,name="Life",type="BASE",value=25}}," to be Ignited Regenerate 125 per second "} c["+25% chance to be Poisoned"]={{}," to be Poisoned "} 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["+25% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=25}},nil} +c["+25% to Chaos Resistance when on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=25}},nil} c["+25% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=25}},nil} 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["+25% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=25}},nil} @@ -846,6 +841,7 @@ c["+250 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShi c["+250 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=250}},nil} c["+257 Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="BASE",value=257}},nil} c["+26 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=26}},nil} +c["+26% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=26}},nil} c["+26% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=26}},nil} c["+26% to Physical Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDotMultiplier",type="BASE",value=26}},nil} c["+27 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=27},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=27},[3]={flags=0,keywordFlags=0,name="DexInt",type="BASE",value=27}},nil} @@ -1186,7 +1182,7 @@ c["+3 to Level of all Wrath Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProper c["+3 to Level of all Zealotry Gems"]={{[1]={flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="zealotry",value=3}}},nil} c["+3 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=3}},nil} c["+3 to maximum Fortification"]={{[1]={flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=3}},nil} -c["+3 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=3}},nil} +c["+3 to maximum number of Summoned Golems"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=3}},nil} c["+3 to maximum number of Summoned Phantasms"]={{[1]={flags=0,keywordFlags=0,name="ActivePhantasmLimit",type="BASE",value=3}},nil} c["+3 to maximum number of Summoned Totems"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=3}},nil} c["+3% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=3}},nil} @@ -1235,13 +1231,13 @@ c["+30 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",va c["+30 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=30}},nil} 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},[3]={flags=0,keywordFlags=0,name="StrInt",type="BASE",value=30}},nil} 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},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=30}},nil} -c["+30 to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=30}},nil} c["+30 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=30}},nil} 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["+30 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=30}},nil} c["+30 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}},nil} c["+30 to maximum Mana per Allocated Journey Tattoo of the Mind"]={{[1]={[1]={type="Multiplier",var="JourneyTattooMind"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="Multiplier:JourneyTattooMind",type="BASE",value=1}},nil} c["+30 to maximum Valour"]={{[1]={flags=0,keywordFlags=0,name="MaximumValour",type="BASE",value=30}},nil} +c["+30% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=30}},nil} c["+30% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=30}},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% Chaos Resistance against Damage Over Time"]={{[1]={flags=8,keywordFlags=0,name="ChaosResist",type="BASE",value=30}},nil} @@ -1294,7 +1290,6 @@ c["+32% to Physical Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0, c["+320 to Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=320}},nil} c["+325 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=325}},nil} c["+325 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=325}},nil} -c["+33 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=33}},nil} c["+33 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=33},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=33},[3]={flags=0,keywordFlags=0,name="StrDex",type="BASE",value=33}},nil} c["+33 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=33}},nil} c["+33 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=33}},nil} @@ -1315,6 +1310,7 @@ c["+35 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",t c["+35 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=35}},nil} c["+35 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=35}},nil} c["+35 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=35}},nil} +c["+35% chance to Suppress Spell Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=35}},nil} c["+35% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=35}},nil} c["+35% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=35}},nil} c["+35% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=35}},nil} @@ -1396,7 +1392,6 @@ c["+40 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value c["+40 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=40}},nil} c["+40 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=40}},nil} c["+40 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=40}},nil} -c["+40 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}},nil} c["+40 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40}},nil} 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},[3]={flags=0,keywordFlags=0,name="StrDex",type="BASE",value=40}},nil} c["+40 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=40},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=40},[3]={flags=0,keywordFlags=0,name="StrInt",type="BASE",value=40}},nil} @@ -1407,7 +1402,10 @@ c["+40 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",v c["+40 to maximum Life for each Empty Red Socket on any Equipped Item"]={{[1]={[1]={type="Multiplier",var="EmptyRedSocketsInAnySlot"},flags=0,keywordFlags=0,name="Life",type="BASE",value=40}},nil} c["+40 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=40}},nil} c["+40 to maximum Mana for each Empty Blue Socket on any Equipped Item"]={{[1]={[1]={type="Multiplier",var="EmptyBlueSocketsInAnySlot"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=40}},nil} +c["+40% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=40}},nil} c["+40% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="NearbyRareOrUniqueEnemy",[2]="RareOrUnique"}},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil} +c["+40% Global Critical Strike Multiplier while you have a Frenzy Charge"]={{[1]={[1]={type="Global"},[2]={stat="FrenzyCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil} +c["+40% chance to Suppress Spell Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=40}},nil} c["+40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=40}},nil} c["+40% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},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} @@ -1419,7 +1417,6 @@ c["+40% to Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="Dot c["+40% to Damage over Time Multiplier for Bleeding from Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=4194304,name="DotMultiplier",type="BASE",value=40}},nil} c["+40% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=40}},nil} c["+40% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil} -c["+40% to Global Critical Strike Multiplier while you have a Frenzy Charge"]={{[1]={[1]={type="Global"},[2]={stat="FrenzyCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=40}},nil} c["+40% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=40}},nil} c["+40% to Maximum Effect of Shock"]={{[1]={flags=0,keywordFlags=0,name="ShockMax",type="BASE",value=40}},nil} c["+40% to Quality of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyword="all",value=40}}},nil} @@ -1437,6 +1434,7 @@ c["+425 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type= c["+425 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=425}},nil} c["+425 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=425}},nil} c["+43 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=43}},nil} +c["+43 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=43}},nil} c["+43% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=43}},nil} c["+43% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=43}},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} @@ -1444,12 +1442,11 @@ c["+43% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",typ c["+435 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=435}},nil} c["+44 to Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="BASE",value=44}},nil} c["+44 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=44}},nil} -c["+44% to Critical Strike Multiplier with Unarmed Melee Attack"]={{[1]={flags=16777472,keywordFlags=0,name="CritMultiplier",type="BASE",value=44}},nil} +c["+44% to Critical Strike Multiplier with Unarmed Melee Attacks"]={{[1]={flags=16777472,keywordFlags=0,name="CritMultiplier",type="BASE",value=44}},nil} c["+44% to Damage over Time Multiplier while affected by Malevolence"]={{[1]={[1]={type="Condition",var="AffectedByMalevolence"},flags=0,keywordFlags=0,name="DotMultiplier",type="BASE",value=44}},nil} c["+45 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=45}},nil} c["+45 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=45}},nil} c["+45 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=45}},nil} -c["+45 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=45}},nil} c["+45 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=45}},nil} 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},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=45}},nil} c["+45 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=45}},nil} @@ -1465,7 +1462,6 @@ c["+45% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags= c["+45% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=45}},nil} c["+450 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=450}},nil} c["+450 to 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["+450 to Accuracy against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="BASE",value=450}},nil} c["+450 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=450}},nil} c["+450 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=450}},nil} c["+460 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=460}},nil} @@ -1502,9 +1498,11 @@ c["+5% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="Block c["+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil} c["+5% Chance to Block Attack Damage while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},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["+5% Chance to Block Attack Damage while on Consecrated Ground"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},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["+5% Chance to Block Attack Damage 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["+5% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil} +c["+5% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil} c["+5% Chance to Block Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil} c["+5% Chance to Block Spell Damage while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil} c["+5% Elemental Resistances while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}},nil} @@ -1516,7 +1514,6 @@ c["+5% to Critical Strike Multiplier per Power Charge"]={{[1]={[1]={type="Multip c["+5% to Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="DotMultiplier",type="BASE",value=5}},nil} c["+5% to Damage over Time Multiplier for Poison per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=1075838976,name="DotMultiplier",type="BASE",value=5}},nil} c["+5% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=5}},nil} -c["+5% to Maximum Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResistMax",type="BASE",value=5}},nil} c["+5% to Physical Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDotMultiplier",type="BASE",value=5}},nil} c["+5% to Physical Damage over Time Multiplier while wielding an Axe or Sword"]={{[1]={[1]={type="Condition",varList={[1]="UsingAxe",[2]="UsingSword"}},flags=0,keywordFlags=0,name="PhysicalDotMultiplier",type="BASE",value=5}},nil} c["+5% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=5}},nil} @@ -1531,7 +1528,6 @@ c["+50 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value c["+50 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=50}},nil} c["+50 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=50}},nil} c["+50 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=50}},nil} -c["+50 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=50}},nil} c["+50 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50}},nil} 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},[3]={flags=0,keywordFlags=0,name="StrDex",type="BASE",value=50}},nil} c["+50 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=50},[3]={flags=0,keywordFlags=0,name="StrInt",type="BASE",value=50}},nil} @@ -1541,6 +1537,7 @@ c["+50 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShie c["+50 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=50}},nil} c["+50 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=50}},nil} c["+50% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=50}},nil} +c["+50% Global Critical Strike Multiplier while you have a Frenzy Charge"]={{[1]={[1]={type="Global"},[2]={stat="FrenzyCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil} 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["+50% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=50}},nil} c["+50% chance to be Shocked"]={{}," to be Shocked "} @@ -1558,13 +1555,11 @@ c["+50% to Elemental Resistances during Effect"]={{[1]={[1]={type="Condition",va c["+50% to Fire Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="FireDotMultiplier",type="BASE",value=50}},nil} c["+50% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=50}},nil} c["+50% to Global Critical Strike Multiplier"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil} -c["+50% to Global Critical Strike Multiplier while you have a Frenzy Charge"]={{[1]={[1]={type="Global"},[2]={stat="FrenzyCharges",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=50}},nil} c["+50% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=50}},nil} c["+50% to Quality of Socketed Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyword="all",value=50}}},nil} c["+50% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=50}},nil} c["+500 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=500}},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["+500 to Accuracy against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="BASE",value=500}},nil} c["+500 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=500}},nil} 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["+500 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=500}},nil} @@ -1576,13 +1571,12 @@ c["+51 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",v c["+51 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=51}},nil} c["+52% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=52}},nil} c["+53 to Dexterity and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=53},[3]={flags=0,keywordFlags=0,name="DexInt",type="BASE",value=53}},nil} -c["+53 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=53}},nil} c["+53 to Strength and Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=53},[3]={flags=0,keywordFlags=0,name="StrDex",type="BASE",value=53}},nil} c["+53 to Strength and Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=53},[2]={flags=0,keywordFlags=0,name="Int",type="BASE",value=53},[3]={flags=0,keywordFlags=0,name="StrInt",type="BASE",value=53}},nil} +c["+53 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=53}},nil} c["+53% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=53}},nil} c["+55 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=55}},nil} c["+55 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=55}},nil} -c["+55 to Maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=55}},nil} c["+55 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=55}},nil} c["+55 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=55}},nil} c["+55 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=55}},nil} @@ -1593,8 +1587,8 @@ c["+55% to Fire Resistance while affected by Herald of Ash"]={{[1]={[1]={type="C 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["+58 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=58}},nil} c["+6 to Armour and Evasion Rating per 1% Chance to Block Attack Damage"]={{[1]={[1]={div=1,stat="BlockChance",type="PerStat"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="BASE",value=6}},nil} -c["+6 to Maximum Fortification"]={{[1]={flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=6}},nil} 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["+6 to maximum Fortification"]={{[1]={flags=0,keywordFlags=0,name="MaximumFortification",type="BASE",value=6}},nil} c["+6 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=6}},nil} c["+6 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=6}},nil} c["+6 to maximum number of Raging Spirits"]={{[1]={flags=0,keywordFlags=0,name="ActiveRagingSpiritLimit",type="BASE",value=6}},nil} @@ -1603,10 +1597,11 @@ c["+6% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="Block c["+6% Chance to Block Attack Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil} c["+6% 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=6}},nil} c["+6% Chance to Block Attack Damage while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},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["+6% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil} +c["+6% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil} c["+6% Chance to Block Spell Damage while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil} c["+6% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=6}},nil} -c["+6% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil} c["+6% to Chaos Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ChaosDotMultiplier",type="BASE",value=6}},nil} c["+6% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=6}},nil} c["+6% to Cold Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0,name="ColdDotMultiplier",type="BASE",value=6}},nil} @@ -1629,12 +1624,10 @@ c["+6% to Physical Damage over Time Multiplier if you've Spent Life Recently"]={ c["+6% to Physical Damage over Time Multiplier if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="PhysicalDotMultiplier",type="BASE",value=6}},nil} c["+6% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=6}},nil} c["+6% to all maximum Elemental Resistances during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=6}},nil} -c["+60 maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil} c["+60 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=60}},nil} c["+60 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=60}},nil} c["+60 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=60}},nil} c["+60 to Maximum Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=60}},nil} -c["+60 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=60}},nil} c["+60 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=60}},nil} c["+60 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=60},[3]={flags=0,keywordFlags=0,name="Int",type="BASE",value=60},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=60}},nil} c["+60 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=60}},nil} @@ -1665,7 +1658,6 @@ c["+63% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",typ c["+63% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=63}},nil} c["+63% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=63}},nil} c["+65 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=65}},nil} -c["+65 to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=65}},nil} c["+65 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=65}},nil} c["+65 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=65}},nil} c["+65 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=65}},nil} @@ -1677,16 +1669,13 @@ c["+68 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",v c["+69 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=69}},nil} c["+7 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=7}}},nil} c["+7 to Maximum Rage"]={{[1]={flags=0,keywordFlags=0,name="MaximumRage",type="BASE",value=7}},nil} -c["+7% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=7}},nil} c["+7% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=7}},nil} c["+7% to Quality of Socketed Support Gems"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="quality",keyword="support",value=7}}},nil} c["+7% to Unarmed Melee Attack Critical Strike Chance"]={{[1]={flags=16777477,keywordFlags=0,name="CritChance",type="BASE",value=7}},nil} +c["+7% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=7}},nil} c["+7% to all Elemental Resistances per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=7}},nil} c["+70 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=70}},nil} -c["+70 to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=70}},nil} c["+70 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=70}},nil} -c["+70 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=70}},nil} -c["+70 to Maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=70}},nil} c["+70 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=70}},nil} c["+70 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=70}},nil} c["+70 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=70}},nil} @@ -1702,12 +1691,11 @@ c["+75 to all Attributes"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE", c["+75 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=75}},nil} c["+75 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=75}},nil} c["+75 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=75}},nil} -c["+75% Chance to Block Spell Damage if you have not Blocked Recently"]={{[1]={[1]={neg=true,type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=75}},nil} c["+75% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=75}},nil} c["+75% to 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["+75% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=75}},nil} c["+75% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=75}},nil} -c["+77% to Critical Strike Multiplier with Unarmed Melee Attack"]={{[1]={flags=16777472,keywordFlags=0,name="CritMultiplier",type="BASE",value=77}},nil} +c["+77% to Critical Strike Multiplier with Unarmed Melee Attacks"]={{[1]={flags=16777472,keywordFlags=0,name="CritMultiplier",type="BASE",value=77}},nil} c["+78 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=78}},nil} c["+78 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=78}},nil} c["+8 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=8}},nil} @@ -1751,8 +1739,6 @@ c["+80 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type=" c["+80 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=80}},nil} c["+80 to Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="BASE",value=80}},nil} c["+80 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="BASE",value=80}},nil} -c["+80 to Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=80}},nil} -c["+80 to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=80}},nil} c["+80 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=80}},nil} c["+80 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=80}},nil} c["+80 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=80}},nil} @@ -1769,7 +1755,7 @@ c["+81% to Physical Damage over Time Multiplier"]={{[1]={flags=0,keywordFlags=0, c["+84 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=84}},nil} c["+85 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=85}},nil} c["+850 to Evasion Rating while in Sand Stance"]={{[1]={[1]={type="Condition",var="SandStance"},flags=0,keywordFlags=0,name="Evasion",type="BASE",value=850}},nil} -c["+850 to maximum Life if there are no Life Modifiers on other Equipped items"]={{[1]={[1]={allSlots=true,excludeSelf=true,itemSlot="{SlotName}",neg=true,searchCond="life",type="ItemCondition"},flags=0,keywordFlags=0,name="Life",type="BASE",value=850}},nil} +c["+850 to maximum Life if there are no Life Modifiers on other Equipped Items"]={{[1]={[1]={allSlots=true,excludeSelf=true,itemSlot="{SlotName}",neg=true,searchCond="life",type="ItemCondition"},flags=0,keywordFlags=0,name="Life",type="BASE",value=850}},nil} c["+88 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=88}},nil} c["+88 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=88}},nil} c["+88% to Cold Resistance when Socketed with a Green Gem"]={{[1]={[1]={keyword="dexterity",slotName="{SlotName}",sockets={[1]=1},type="SocketedIn"},flags=0,keywordFlags=0,name="SocketProperty",type="LIST",value={value={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=88}}}},nil} @@ -1779,13 +1765,12 @@ c["+9 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShiel c["+9% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=9}},nil} c["+9% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=9}},nil} c["+9% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=9}},nil} -c["+90 maximum Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=90}},nil} c["+90 to Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=90}},nil} c["+90 to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="BASE",value=90}},nil} c["+90 to Evasion Rating and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="BASE",value=90}},nil} +c["+90 to Maximum Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=90}},nil} c["+90 to Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="BASE",value=90}},nil} 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},[4]={flags=0,keywordFlags=0,name="All",type="BASE",value=90}},nil} -c["+90 to maximum Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskCharges",type="BASE",value=90}},nil} c["+90 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=90}},nil} c["+90 to maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=90}},nil} c["+90 to maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=90}},nil} @@ -1807,14 +1792,16 @@ c["-1 Suffix Modifier allowed"]={{},nil} c["-1 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-1}},nil} c["-1 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=-1}},nil} c["-1 to Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=-1}},nil} -c["-1 to maximum number of Golems"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=-1}},nil} +c["-1 to maximum number of Summoned Golems"]={{[1]={flags=0,keywordFlags=0,name="ActiveGolemLimit",type="BASE",value=-1}},nil} c["-1 to maximum number of Summoned Totems"]={{[1]={flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=-1}},nil} c["-1% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=-1}}," for every 200 Fire Damage taken from Hits Recently "} c["-1% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently 20% of Cold Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=-1}}," for every 200 Fire Damage taken from Hits Recently 20% of Cold Damage taken as Fire Damage "} c["-10 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-10}},nil} +c["-10 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-10}},nil} c["-10 Physical Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenWhenHit",type="BASE",value=-10}},nil} c["-10 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromProjectileAttacks",type="BASE",value=-10}},nil} c["-10% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=-10}},nil} +c["-10% to All Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-10},[2]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-10}},nil} c["-10% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-10}},nil} c["-10% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="BASE",value=-10}},nil} c["-10% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-10}},nil} @@ -1824,9 +1811,10 @@ c["-10% to all maximum Resistances"]={{[1]={flags=0,keywordFlags=0,name="Element c["-10% to amount of Suppressed Spell Damage Prevented"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionEffect",type="BASE",value=-10}},nil} c["-10% to maximum Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChanceMax",type="BASE",value=-10}},nil} c["-10% to maximum Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChanceMax",type="BASE",value=-10}},nil} +c["-100 Fire Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenWhenHit",type="BASE",value=-100}},nil} c["-100 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-100}},nil} -c["-13 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-13}},nil} -c["-15 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-15}},nil} +c["-13 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-13}},nil} +c["-14 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-14}},nil} c["-15% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=-15}},nil} c["-15% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-15}},nil} c["-15% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-15}},nil} @@ -1834,17 +1822,15 @@ c["-15% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="Eleme c["-15% to all maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=-15}},nil} c["-150 Fire Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenWhenHit",type="BASE",value=-150}},nil} c["-16 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-16}},nil} -c["-18 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-18}},nil} c["-2 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-2}},nil} -c["-2 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-2}},nil} c["-2 Prefix Modifiers allowed"]={{},nil} c["-2 Suffix Modifiers allowed"]={{},nil} c["-2 to Accuracy Rating per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-2}},nil} -c["-2 to Level of Socketed Skill Gems per Socketed Gem"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={type="Multiplier",var="SocketedGemsIn{SlotName}"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="grants_active_skill",value=-2}}},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["-2 to Maximum Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesMax",type="BASE",value=-2}},nil} c["-2 to Maximum Frenzy Charges"]={{[1]={flags=0,keywordFlags=0,name="FrenzyChargesMax",type="BASE",value=-2}},nil} 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["-2 to level of Socketed Skill Gems per Socketed Gem"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={type="Multiplier",var="SocketedGemsIn{SlotName}"},flags=0,keywordFlags=0,name="GemProperty",type="LIST",value={key="level",keyOfScaledMod="value",keyword="grants_active_skill",value=-2}}},nil} c["-2% chance to Suppress Spell Damage per Hit Suppressed Recently"]={{[1]={[1]={type="Multiplier",var="HitsSuppressedRecently"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=-2}},nil} c["-2% to all Resistances per Minion from your Non-Vaal Skills"]={{[1]={[1]={type="Multiplier",var="NonVaalSummonedMinion"},flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-2},[2]={[1]={type="Multiplier",var="NonVaalSummonedMinion"},flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=-2}},nil} c["-20 Fire Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenWhenHit",type="BASE",value=-20}},nil} @@ -1852,7 +1838,6 @@ c["-20% to Critical Strike Multiplier with Swords"]={{[1]={flags=4194308,keyword c["-20% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-20}},nil} c["-20% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-20}},nil} c["-20% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-20}},nil} -c["-200 Fire Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTakenWhenHit",type="BASE",value=-200}},nil} c["-25 Damage taken of each Damage Type from Spell Hits per Bark"]={{[1]={[1]={type="Multiplier",var="BarkskinStacks"},flags=2,keywordFlags=0,name="DamageTaken",type="BASE",value=-25}}," of each Damage Type from Hits "} c["-25 Damage taken of each Damage Type from Spell Hits per Bark Prevent +3% of Suppressed Spell Damage per Bark below maximum"]={{[1]={[1]={type="Multiplier",var="BarkskinStacks"},[2]={type="Multiplier",var="MissingBarkskinStacks"},flags=2,keywordFlags=0,name="DamageTaken",type="BASE",value=-25}}," of each Damage Type from Hits Prevent +3% of Suppressed Spell Damage "} c["-25 Damage taken of each Damage Type from Spell Hits per Bark Prevent +3% of Suppressed Spell Damage per Bark below maximum Lose 1 Bark when Hit by Enemy Spell Damage"]={{[1]={[1]={type="Multiplier",var="BarkskinStacks"},[2]={type="Multiplier",var="MissingBarkskinStacks"},flags=2,keywordFlags=0,name="DamageTaken",type="BASE",value=-25}}," of each Damage Type from Hits Prevent +3% of Suppressed Spell Damage Lose 1 Bark when Hit by Enemy Spell Damage "} @@ -1864,8 +1849,10 @@ c["-30% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",typ c["-30% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-30}},nil} c["-30% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-30}},nil} c["-35 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-35}},nil} -c["-4 Physical Damage taken from Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-4}},nil} +c["-4 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-4}},nil} +c["-4 to Total Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-4}},nil} c["-4% to all Resistances for each Corrupted Item Equipped"]={{[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["-4% to all maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=-4}},nil} c["-40 Chaos Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTaken",type="BASE",value=-40}},nil} c["-40 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-40}},nil} c["-40 Physical Damage taken from Hits by Animals"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenWhenHit",type="BASE",value=-40}}," by Animals "} @@ -1880,38 +1867,34 @@ c["-5% to all Resistances for each Corrupted Item Equipped"]={{[1]={[1]={type="M c["-5% to all maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=-5}},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["-5% to maximum Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=-5}},nil} +c["-50 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromProjectileAttacks",type="BASE",value=-50}},nil} c["-50% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=-50}},nil} c["-50% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-50}},nil} c["-500 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-500}},nil} c["-5000 to Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=-5000}},nil} c["-6 to Total Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-6}},nil} -c["-6% to all maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=-6}},nil} c["-60 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-60}},nil} c["-60% to Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="BASE",value=-60}},nil} c["-65 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromProjectileAttacks",type="BASE",value=-65}},nil} c["-7 Physical Damage taken from Attack Hits"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromAttacks",type="BASE",value=-7}},nil} -c["-70% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-70}},nil} -c["-75% to All Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-75}},nil} -c["-8 to Total Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="BASE",value=-8}},nil} +c["-70% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-70}},nil} +c["-75% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-75}},nil} c["-8% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=-8}},nil} -c["-80 Physical Damage taken from Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenFromProjectileAttacks",type="BASE",value=-80}},nil} -c["0% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=0}},nil} -c["0% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=0}},nil} -c["0% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=0}},nil} -c["0% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=0}},nil} c["0% increased Mana Burn rate"]={{[1]={flags=0,keywordFlags=0,name="TinctureManaBurnRate",type="INC",value=0}},nil} -c["0% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=0}},nil} -c["0% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=0}},nil} -c["0% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=0}},nil} -c["0% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=0}},nil} c["0% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0}},nil} c["0% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0}},nil} c["0% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=0}},nil} +c["0% reduced Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=-0}},nil} +c["0% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-0}},nil} c["0% reduced Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-0}},nil} +c["0% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-0}},nil} +c["0% reduced Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=-0}},nil} +c["0% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-0}},nil} +c["0% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-0}},nil} +c["0% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-0}},nil} 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["0.2% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=0.2}},nil} c["0.2% of Cold Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageLifeLeech",type="BASE",value=0.2}},nil} -c["0.2% of Damage Leeched as Life against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.2}},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["0.2% of Elemental Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageLifeLeech",type="BASE",value=0.2}},nil} c["0.2% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=0.2}},nil} @@ -1947,7 +1930,7 @@ c["0.5% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags= 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["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["0.6% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.6}},nil} -c["0.6% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.6}},nil} +c["0.6% of Attack Damage Leeched as Life against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=0.6}},nil} c["0.6% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=0.6}},nil} c["0.6% of Cold Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageLifeLeech",type="BASE",value=0.6}},nil} c["0.6% of Fire Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="FireDamageLifeLeech",type="BASE",value=0.6}},nil} @@ -2266,12 +2249,11 @@ c["1 to 4 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFl c["1 to 42 Spell Lightning Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=42}},nil} c["1 to 53 Spell Lightning Damage per 10 Intelligence"]={{[1]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=1},[2]={[1]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=53}},nil} c["1 to 6 Added Attack Lightning Damage per 200 Accuracy Rating"]={{[1]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={div=200,stat="Accuracy",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=6}},nil} -c["1% Increased Attack Speed per Fortification"]={{[1]={[1]={stat="FortificationStacks",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil} c["1% additional Elemental Damage Reduction per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ElementalDamageReduction",type="BASE",value=1}},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["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["1% additional Physical Damage Reduction per Minion, up to 10%"]={{[1]={[1]={limit=10,limitTotal=true,type="Multiplier",var="SummonedMinion"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=1}},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["1% increased Area of Effect per 20 Intelligence"]={{[1]={[1]={div=20,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=1}},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["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["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} @@ -2282,7 +2264,8 @@ c["1% increased Attack Damage per 450 Evasion Rating"]={{[1]={[1]={div=450,stat= 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 Attack Speed per 150 Accuracy Rating"]={{[1]={[1]={div=150,stat="Accuracy",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil} c["1% increased Attack Speed per 25 Dexterity"]={{[1]={[1]={div=25,stat="Dex",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil} -c["1% increased 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["1% increased Attack Speed per Fortification"]={{[1]={[1]={stat="FortificationStacks",type="PerStat"},flags=1,keywordFlags=0,name="Speed",type="INC",value=1}},nil} +c["1% increased Bleeding Duration per 12 Intelligence"]={{[1]={[1]={div=12,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=1}},nil} 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["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["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} @@ -2305,6 +2288,7 @@ c["1% increased Mana Regeneration Rate per 1% Chance to Block Spell Damage"]={{[ 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["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["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% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius"]={{[1]={[1]={div=3,stat="Dex",type="PerStat"},flags=16777476,keywordFlags=0,name="PhysicalDamage",type="INC",value=1}}," Allocated in Radius "} c["1% increased Minion Attack and Cast Speed per 10 Devotion"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="Speed",type="INC",value=1}}}},nil} c["1% increased Movement Speed per 5 Rage"]={{[1]={[1]={div=5,type="Multiplier",var="Rage"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},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} @@ -2320,30 +2304,27 @@ c["1% increased effect of Non-Curse Auras per 10 Devotion"]={{[1]={[1]={neg=true c["1% less Damage taken per Grasping Vine"]={{[1]={[1]={type="Multiplier",var="GraspingVinesCount"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-1}},nil} c["1% less Elemental Damage taken per Raised Zombie"]={{[1]={[1]={stat="ActiveZombieLimit",type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="MORE",value=-1}},nil} c["1% of Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} -c["1% of Attack Damage Leeched as Life against Chilled enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} +c["1% of Attack Damage Leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} +c["1% of Attack Damage Leeched as Life against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} 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["1% of Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="DamageManaLeech",type="BASE",value=1}},nil} -c["1% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} c["1% of Chaos Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=1}},nil} c["1% of Cold Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageLifeLeech",type="BASE",value=1}},nil} c["1% of Damage Dealt by your Minions is Leeched to you as Life"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="BASE",value=1}}}}," Dealt by your s is Leeched to you as Life "} c["1% of Damage Dealt by your Minions is Leeched to you as Life Minions gain 40% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageGainAsEnergyShield",type="BASE",value=1}}}}," Dealt by your s is Leeched to you as Life Minions gain 40% of Maximum Life "} c["1% of Damage Leeched as Energy Shield against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=1}},nil} +c["1% of Damage Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} c["1% of Damage Leeched as Life against Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} -c["1% of Damage Leeched as Life against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} c["1% of Damage Leeched as Life against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},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["1% of Damage Leeched as Mana against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="DamageManaLeech",type="BASE",value=1}},nil} -c["1% of Damage Leeched as Mana against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="DamageManaLeech",type="BASE",value=1}},nil} c["1% of Damage against Frozen Enemies Leeched as Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} c["1% of Damage dealt by your Mines is Leeched to you as Life"]={{[1]={flags=0,keywordFlags=8192,name="DamageLifeLeechToPlayer",type="BASE",value=1}},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["1% of Damage leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=1}},nil} c["1% 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}},nil} c["1% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1}},nil} c["1% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=1}},nil} c["1% of Physical Attack Damage dealt by your Totems is Leeched to you as Life"]={{[1]={flags=1,keywordFlags=16384,name="PhysicalDamage",type="BASE",value=1}}," dealt by your s is Leeched to you as Life "} -c["1% of Physical Attack Damage leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=1}},nil} c["1% of Spell Damage Leeched as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=1}},nil} c["1% reduced Elemental Damage taken from Hits per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="ElementalDamageTakenWhenHit",type="INC",value=-1}},nil} c["1% reduced Mana Cost of Skills per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-1}},nil} @@ -2361,27 +2342,23 @@ c["1.5% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags= c["1.5% of Physical Damage prevented from Hits in the past"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=1.5}}," prevented from Hits in the past "} c["1.5% of Physical Damage prevented from Hits in the past 10 seconds is Regenerated as Life per second"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageMitigatedLifePseudoRecoup",type="BASE",value=15},[2]={flags=0,keywordFlags=0,name="PhysicalDamageMitigatedLifePseudoRecoupDuration",type="BASE",value="10"}},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["10 to 16 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}},nil} c["10 to 24 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil} c["10 to 25 Added Attack Chaos Damage per 100 Maximum Mana"]={{[1]={[1]={div=100,stat="Mana",type="PerStat"},flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=10},[2]={[1]={div=100,stat="Mana",type="PerStat"},flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=25}},nil} c["10% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "} c["10% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} -c["10% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=10}},nil} c["10% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil} -c["10% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil} c["10% Chance to Cause Monster to Flee on Block"]={{}," to Cause Monster to Flee on Block "} 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=0,name="Damage",type="BASE",value=10}}," to Cause Monster to Flee on Block 1% of Leeched as Life "} c["10% Chance to Cause Monster to Flee on Block 100% Chance to Cause Monster to Flee on Block"]={{}," to Cause Monster to Flee on Block 100% Chance to Cause Monster to Flee on Block "} -c["10% Chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "} -c["10% Chance to Cause Monsters to Flee Drops Shocked Ground while moving, lasting 2 seconds"]={{}," to Cause Monsters to Flee Drops Shocked Ground , lasting 2 seconds "} c["10% Chance to Inflict Cold Exposure on Hit with Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdExposureChance",type="BASE",value=10}},nil} -c["10% Chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=10}},nil} c["10% Global chance to Blind Enemies on hit"]={{},"% chance to Blind Enemies on hit "} -c["10% Global chance to Blind Enemies on hit Blind does not affect your Chance to Hit"]={{},"% chance to Blind Enemies on hit Blind does not affect your Chance to Hit "} +c["10% Global chance to Blind Enemies on hit Gain 1 Mana on Kill per Level"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="KilledRecently"},[3]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=10}},"% chance to Blind Enemies on hit Gain 1 "} 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["10% chance for Energy Shield Recharge to start when you Link to a target"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you Link to a target "} c["10% chance for Energy Shield Recharge to start when you Link to a target Link Skills have 20% increased Buff Effect if you have Linked to a target Recently"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you Link to a target have 20% increased Buff Effect if you have Linked to a target Recently "} 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["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["10% chance for Energy Shield Recharge to start when you use a Skill +15% to Fire and Chaos Resistances"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=10}}," for Recharge to start when you use a Skill +15% to Fire and Chaos Resistances "} c["10% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit"]={{[1]={flags=0,keywordFlags=0,name="ImpaleAdditionalDurationChance",type="BASE",value=10}},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["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 "} @@ -2401,6 +2378,7 @@ c["10% chance to Block Attack Damage if you've used a Retaliation Skill Recently c["10% chance to Block Spell Damage if you've used a Retaliation Skill Recently"]={{[1]={[1]={type="Condition",var="UsedRetaliationRecently"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=10}},nil} c["10% chance to Cause Monsters to Flee"]={{}," to Cause Monsters to Flee "} c["10% chance to Cause Monsters to Flee Damage Penetrates 20% Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}," to Cause Monsters to Flee Penetrates 20% Lightning Resistance "} +c["10% chance to Cause Monsters to Flee Drops Shocked Ground while moving, lasting 2 seconds"]={{}," to Cause Monsters to Flee Drops Shocked Ground , lasting 2 seconds "} c["10% chance to Cause Monsters to Flee Melee Attacks cause Bleeding"]={{}," to Cause Monsters to Flee Attacks cause Bleeding "} c["10% chance to Cover Enemies in Ash on Hit"]={{}," to Cover Enemies in Ash "} c["10% chance to Curse Non-Cursed Enemies with Enfeeble on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="Enfeeble",triggered=true}}},nil} @@ -2427,11 +2405,10 @@ c["10% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",t c["10% chance to Shock during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}},nil} c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit"]={{}," to Steal Power, Frenzy, and Endurance Charges "} c["10% chance to Steal Power, Frenzy, and Endurance Charges on Hit 30% reduced Endurance, Frenzy and Power Charge Duration"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=4,keywordFlags=0,name="PowerChargesDuration",type="BASE",value=10}}," to Steal Power, Frenzy, and Endurance Charges 30% reduced Endurance,and "} -c["10% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=10}},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["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",triggerChance=10,triggered=true}}},nil} +c["10% chance to Trigger Level 10 Summon Raging Spirit on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="SummonRagingSpirit",triggerChance=10,triggered=true}}},nil} c["10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=18,skillId="AnimateGuardiansWeapon",triggerChance=10,triggered=true}}},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",triggerChance=10,triggered=true}}},nil} c["10% chance to Trigger Summon Spirit of Akoya on Kill"]={{}," to Trigger Summon Spirit of Akoya "} c["10% chance to Trigger Summon Spirit of Akoya on Kill +20 to all Attributes"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Str",type="BASE",value=10},[2]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Dex",type="BASE",value=10},[3]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Int",type="BASE",value=10},[4]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="All",type="BASE",value=10}}," to Trigger Summon Spirit of Akoya +20 to "} c["10% chance to avoid Projectiles"]={{[1]={flags=0,keywordFlags=0,name="AvoidProjectilesChance",type="BASE",value=10}},nil} @@ -2447,14 +2424,15 @@ c["10% chance to create a Smoke Cloud when Hit 25% chance to create a Smoke Clou c["10% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds"]={{[1]={[1]={type="Condition",var="SelfCastVulnerability"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=10}},nil} c["10% chance to deal Double Damage while you have at least 200 Strength"]={{[1]={[1]={stat="Str",threshold=200,type="StatThreshold"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=10}},nil} c["10% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="DoubleEnemyStunDurationChance",type="BASE",value=10}},nil} +c["10% chance to gain Adrenaline for 2 Seconds when Leech is"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when Leech is "} c["10% chance to gain Adrenaline for 2 Seconds when Leech is removed by Filling Unreserved Life"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when Leech is removed by Filling Unreserved "} -c["10% chance to gain Adrenaline for 2 Seconds when Leech is removed by Filling Unreserved Life 10% chance to gain Onslaught for 4 Seconds when Leech is removed by Filling Unreserved Life"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when Leech is removed by Filling Unreserved 10% chance to gain Onslaught when Leech is removed by Filling Unreserved Life "} c["10% chance to gain Arcane Surge when you Hit a Unique enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil} c["10% chance to gain Arcane Surge when you Kill an Enemy"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil} c["10% chance to gain Chaotic Might for 10 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:ChaoticMight",type="FLAG",value=true}},nil} c["10% chance to gain Elusive on Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanBeElusive",type="FLAG",value=true}},nil} c["10% chance to gain Elusive on Kill"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanBeElusive",type="FLAG",value=true}},nil} c["10% chance to gain Onslaught for 10 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} +c["10% chance to gain Onslaught for 4 Seconds when Leech is"]={{[1]={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," when Leech is "} c["10% chance to gain Onslaught for 4 Seconds when Leech is removed by Filling Unreserved Life"]={{[1]={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," when Leech is removed by Filling Unreserved "} c["10% chance to gain Onslaught for 4 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} c["10% chance to gain Phasing for 4 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil} @@ -2485,7 +2463,8 @@ c["10% chance to gain an Endurance Charge on Kill while holding a Shield"]={nil, c["10% chance to gain an Endurance Charge on Melee Critical Strike"]={nil,"an Endurance Charge on Melee Critical Strike "} c["10% chance to gain an Endurance Charge when you Block"]={nil,"an Endurance Charge when you Block "} c["10% chance to gain an Endurance Charge when you Block 20% chance to gain an Endurance Charge when you Block"]={nil,"an Endurance Charge when you Block 20% chance to gain an Endurance Charge when you Block "} -c["10% chance to gain an Endurance, Frenzy or Power Charge when any of your Traps is Triggered by an Enemy"]={nil,"an Endurance, Frenzy or Power Charge when any of your Traps is Triggered by an Enemy "} +c["10% chance to gain an Endurance, Frenzy or Power Charge when any"]={nil,"an Endurance, Frenzy or Power Charge when any "} +c["10% chance to gain an Endurance, Frenzy or Power Charge when any of your Traps are Triggered by an Enemy"]={nil,"an Endurance, Frenzy or Power Charge when any of your Traps are Triggered by an Enemy "} c["10% chance to grant a Frenzy Charge to nearby Allies on Kill"]={{}," to grant aCharge to nearby Allies "} c["10% chance to grant a Power Charge to nearby Allies on Kill"]={{}," to grant a Power Charge to nearby Allies "} 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 5% chance to grant aCharge to nearby Allies "} @@ -2504,7 +2483,6 @@ c["10% increased Accuracy Rating with Maces or Sceptres"]={{[1]={flags=1048580,k c["10% increased Action Speed while affected by Haste"]={{[1]={[1]={type="Condition",var="AffectedByHaste"},flags=0,keywordFlags=0,name="ActionSpeed",type="INC",value=10}},nil} c["10% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} -c["10% increased Area of Effect of Area Skills"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} c["10% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} c["10% increased Area of Effect per second you've been stationary, up to a maximum of 50%"]={{[1]={[1]={globalLimit=50,globalLimitKey="ExpansiveMight",limitTotal=true,type="Multiplier",var="StationarySeconds"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=10}},nil} c["10% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=10}},nil} @@ -2540,17 +2518,16 @@ c["10% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",t c["10% increased Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=10}},nil} c["10% increased Cooldown Recovery Rate for Stance Skills"]={{[1]={[1]={skillType=104,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=10}},nil} c["10% increased Cooldown Recovery Rate for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=10}},nil} -c["10% increased Cooldown Recovery of Travel Skills per Frenzy Charge"]={{[1]={[1]={skillType=90,type="SkillType"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=10}},nil} +c["10% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge"]={{[1]={[1]={skillType=90,type="SkillType"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=10}},nil} c["10% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=10}},nil} c["10% increased Critical Strike Chance for each Mine Detonated"]={{[1]={flags=0,keywordFlags=8192,name="CritChance",type="INC",value=10}}," for each Detonated "} c["10% 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=10}},nil} c["10% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=1024,name="Damage",type="INC",value=10}},nil} -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["10% increased Damage for each type of Abyss Jewel affecting you"]={{[1]={[1]={type="Multiplier",var="AbyssJewelType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage for each unlinked Socket in Equipped Two Handed Weapon"]={{[1]={[1]={type="Multiplier",var="UnlinkedSocketInWeapon 1"},[2]={type="Condition",var="UsingTwoHandedWeapon"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} -c["10% increased Damage per Freeze, Shock and Ignite on Enemy"]={{[1]={[1]={type="Multiplier",var="FreezeShockIgniteOnEnemy"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Damage per Summoned Golem"]={{[1]={[1]={stat="ActiveGolemLimit",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=10}},nil} @@ -2589,17 +2566,19 @@ c["10% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="Elementa c["10% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%"]={{[1]={[1]={div=1,statList={[1]="FireResistOver75",[2]="ColdResistOver75",[3]="LightningResistOver75"},type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil} 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["10% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=10}},nil} +c["10% increased Elemental Damage with Hits and Ailments for"]={{[1]={flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=10}}," for "} +c["10% increased Elemental Damage with Hits and Ailments for each type of Elemental Ailment on Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=10},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=10},[3]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=10},[4]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=10},[5]={[1]={actor="enemy",type="ActorCondition",var="Scorched"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=10},[6]={[1]={actor="enemy",type="ActorCondition",var="Brittle"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=10},[7]={[1]={actor="enemy",type="ActorCondition",var="Sapped"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=10}},nil} c["10% increased Elemental Damage with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil} c["10% increased Elemental Damage with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="ElementalDamage",type="INC",value=10}},nil} c["10% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="ElusiveEffect",type="INC",value=10}},nil} c["10% increased Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=10}},nil} c["10% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil} c["10% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=10}},nil} +c["10% increased Evasion Rating per 500 Maximum Mana"]={{[1]={[1]={div=500,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil} c["10% increased Evasion Rating per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil} c["10% increased Evasion Rating per Green Socket on Main Hand Weapon"]={{[1]={[1]={type="Multiplier",var="GreenSocketInWeapon 1"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil} -c["10% increased Evasion per 500 Maximum Mana"]={{[1]={[1]={div=500,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=10}},nil} -c["10% increased Experience Gain of Corrupted Gems"]={{}," Experience Gain of Corrupted Gems "} -c["10% increased Experience Gain of Corrupted Gems Corrupted"]={{}," Experience Gain of Corrupted Gems Corrupted "} +c["10% increased Experience Gain for Corrupted Gems"]={{}," Experience Gain for Corrupted Gems "} +c["10% increased Experience Gain for Corrupted Gems Corrupted"]={{}," Experience Gain for Corrupted Gems Corrupted "} c["10% increased Experience Gain of Gems"]={{}," Experience Gain of Gems "} c["10% increased Experience Gain of Gems 20% increased Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=10}}," Experience Gain of Gems 20% increased "} c["10% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=10}},nil} @@ -2618,13 +2597,14 @@ c["10% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaC c["10% increased Mana Cost of Skills during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=10}},nil} c["10% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=10}},nil} c["10% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=10}},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["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["10% increased Mana Reservation Efficiency of Curse Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=2,name="ManaReservationEfficiency",type="INC",value=10}},nil} c["10% increased Mana Reservation Efficiency of Herald Skills"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=10}},nil} c["10% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=10}},nil} c["10% increased Mana Reservation Efficiency of Skills that throw Mines"]={{[1]={flags=0,keywordFlags=8192,name="ManaReservationEfficiency",type="INC",value=10}},nil} c["10% increased Mana Reservation Efficiency of Stance Skills"]={{[1]={[1]={skillType=104,type="SkillType"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=10}},nil} 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["10% increased Maximum Recovery per Life Leech for each 5% of Life Reserved"]={{[1]={[1]={div=5,stat="LifeReservedPercent",type="PerStat"},flags=0,keywordFlags=0,name="MaxLifeLeechInstance",type="INC",value=10}},nil} c["10% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Melee Damage for each second you've been affected by a Warcry Buff, up to a maximum of 60%"]={{[1]={[1]={limit=60,limitTotal=true,type="Multiplier",var="AffectedByWarcryBuffDuration"},flags=256,keywordFlags=0,name="Damage",type="INC",value=10}},nil} c["10% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=10}},nil} @@ -2660,7 +2640,7 @@ c["10% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="Loo c["10% increased Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=10}},nil} c["10% increased Scorching Ray beam length"]={{},"beam length "} c["10% increased Skeleton Attack Speed"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil} -c["10% increased Skeleton Cast speed"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil} +c["10% increased Skeleton Cast Speed"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil} c["10% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=10}},nil} c["10% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=10}},nil} c["10% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=10}},nil} @@ -2686,7 +2666,6 @@ c["10% increased effect of Non-Curse Auras from your Skills on your Minions"]={{ c["10% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=10}},nil} c["10% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=10}},nil} c["10% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=10}},nil} -c["10% increased maximum Recovery per Life Leech for each 5% of Life Reserved"]={{[1]={[1]={div=5,stat="LifeReservedPercent",type="PerStat"},flags=0,keywordFlags=0,name="MaxLifeLeechInstance",type="INC",value=10}},nil} c["10% less Damage Taken from Damage over Time"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenOverTime",type="MORE",value=-10}},nil} c["10% less Physical Damage Taken while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="MORE",value=-10}},nil} c["10% less Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="MORE",value=-10}},nil} @@ -2701,12 +2680,12 @@ c["10% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",v c["10% more Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="MORE",value=10}},nil} c["10% more chance to Evade Attacks if you have been Hit by an Attack Recently"]={{[1]={[1]={type="Condition",var="BeenHitByAttackRecently"},flags=0,keywordFlags=0,name="EvadeChance",type="MORE",value=10}},nil} c["10% more maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="MORE",value=10}},nil} -c["10% of Damage from Hits is taken from your Spectres' Life before you"]={{[1]={flags=0,keywordFlags=0,name="takenFromSpectresBeforeYou",type="BASE",value=10}},nil} +c["10% of Damage from Hits is taken from your Raised Spectres' Life before you"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}}}," from Hits is taken from your s' Life before you "} c["10% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=10}},nil} c["10% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=10}},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["10% of Damage taken from Stunning Hits is Recovered as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=10}}," from Stunning Hits is Recovered as Life "} -c["10% of Damage you Reflect to Enemies when Hit is gained as Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=10}}," you Reflect to Enemies when Hit is gained as Life "} +c["10% of Damage you Reflect to Enemies when Hit is leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=10}}," you Reflect to Enemies when Hit "} c["10% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped"]={{[1]={[1]={threshold=4,type="MultiplierThreshold",var="HunterItem"},flags=0,keywordFlags=0,name="ElementalDamageTakenAsChaos",type="BASE",value=10}},nil} c["10% of Fire Damage from Hits taken as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageFromHitsTakenAsPhysical",type="BASE",value=10}},nil} c["10% of Life Leech is Instant per Equipped Claw"]={{[1]={[1]={type="Multiplier",var="ClawItem"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=10}},nil} @@ -2740,36 +2719,30 @@ c["10% reduced Enemy Stun Threshold with this Weapon"]={{}," Enemy Stun Thresh " c["10% reduced Enemy Stun Threshold with this Weapon Enemies Taunted by your Warcries Explode on death, dealing 8% of their maximum Life as Chaos Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="Life",type="INC",value=-10}}," Enemy Stun Thresh Enemies Taunted by your Warcries Explode on death, dealing 8% of their as Chaos Damage "} c["10% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-10}},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["10% reduced Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=-10}},nil} c["10% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=-10}},nil} c["10% reduced Mana Cost of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="ManaCost",type="INC",value=-10}},nil} c["10% reduced Mana Cost of Link Skills"]={{[1]={[1]={skillType=118,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-10}},nil} c["10% reduced Mana Cost of Mark Skills"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-10}},nil} c["10% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-10}},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% reduced Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-10}},nil} c["10% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-10}},nil} -c["10% reduced Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=-10}},nil} c["10% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-10}},nil} c["10% reduced Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=-10}},nil} c["10% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-10}},nil} c["10% reduced Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=-10}},nil} c["10% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-10}},nil} c["10% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-10}},nil} -c["10% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-10}},nil} c["10% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-10}},nil} c["100% Chance to Cause Monster to Flee on Block"]={{}," to Cause Monster to Flee on Block "} -c["100% Chance to Cause Monster to Flee on Block +20% Chance to Block Attack Damage from Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=100}}," to Cause Monster to Flee on Block +20% Attack Damage "} -c["100% Increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=100}},nil} -c["100% Increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=100}},nil} -c["100% Increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil} -c["100% Increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=100}},nil} -c["100% Increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=100}},nil} -c["100% Increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=100}},nil} -c["100% More Damage with Arrow Hits at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=4,keywordFlags=2048,name="Damage",type="MORE",value=100}},nil} +c["100% 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=0,name="Damage",type="BASE",value=100}}," to Cause Monster to Flee on Block 1% of Leeched as Life "} c["100% chance to Avoid Blind"]={{[1]={flags=0,keywordFlags=0,name="AvoidBlind",type="BASE",value=100}},nil} c["100% chance to Avoid being Chilled during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=100}},nil} +c["100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=100}}," or Frozen "} +c["100% chance to Avoid being Ignited while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}},nil} c["100% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}}," , Chilled or Frozen with Her Blessing "} c["100% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing 20% increased Attack and Movement Speed with Her Blessing"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=100}}," , Chilled or Frozen with Her Blessing 20% increased Attack and Movement Speed with Her Blessing "} +c["100% chance to Avoid being Shocked while Chilled"]={{[1]={[1]={type="Condition",var="Chilled"},flags=0,keywordFlags=0,name="AvoidShock",type="BASE",value=100}},nil} c["100% chance to Defend with 200% of Armour"]={{[1]={[1]={type="Condition",var="ArmourMax"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Max Calc",type="MAX",value=100},[2]={[1]={type="Condition",var="ArmourAvg"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Average Calc",type="MAX",value=100},[3]={[1]={neg=true,type="Condition",var="ArmourMax"},[2]={neg=true,type="Condition",var="ArmourAvg"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Min Calc",type="MAX",value=100}},nil} c["100% chance to Trigger Level 1 Raise Spiders on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="RaiseSpiders",triggerChance=100,triggered=true}}},nil} c["100% chance to create Consecrated Ground when you Block"]={{}," to create Consecrated Ground when you Block "} @@ -2792,17 +2765,13 @@ c["100% increased Charge Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskCha c["100% increased Charges gained by Other Flasks during Effect"]={{}," Charges gained by Other Flasks "} c["100% increased Charges gained by Other Flasks during Effect 100% increased Charges gained by Other Flasks during Effect"]={{}," Charges gained by Other Flasks 100% increased Charges gained by Other Flasks "} c["100% increased Charges gained by Other Flasks during Effect Gains no Charges during Effect of any Overflowing Chalice Flask"]={{}," Charges gained by Other Flasks Gains no Charges of any Overflowing Chalice Flask "} -c["100% increased Charges per Use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=100}},nil} c["100% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=100}},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["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["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["100% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} -c["100% increased Critical Strike Chance against Enemies on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} c["100% increased Critical Strike Chance against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} c["100% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} -c["100% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} -c["100% increased Critical Strike Chance for Spells per Raised Spectre"]={{[1]={[1]={stat="ActiveSpectreLimit",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} c["100% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently"]={{[1]={[1]={neg=true,type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} c["100% increased Critical Strike Chance while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} c["100% increased Critical Strike Chance with Bows"]={{[1]={flags=131076,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} @@ -2819,10 +2788,10 @@ c["100% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type= c["100% increased Duration of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=100}}," of Curses on you "} 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["100% increased Duration of Lightning Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=100},[2]={flags=0,keywordFlags=0,name="EnemySapDuration",type="INC",value=100}},nil} -c["100% increased Effect of Buffs your Ancestor Totems grant while Active"]={{[1]={[1]={skillNameList={[1]="Ancestral Warchief",[2]="Ancestral Protector",[3]="Earthbreaker"},type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil} -c["100% increased Effect of Chill you inflict while Leeching Mana"]={{[1]={[1]={type="Condition",var="LeechingMana"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=100}},nil} +c["100% increased Effect of Chills you inflict while Leeching Mana"]={{[1]={[1]={type="Condition",var="LeechingMana"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=100}},nil} c["100% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="corruptedMagicJewelIncEffect",value=100}}},nil} c["100% increased Effect of Lightning Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=100},[2]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=100}},nil} +c["100% increased Effect of Onslaught on you"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=100}},nil} c["100% increased Effect of Shocks you inflict while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=100}},nil} c["100% increased Effect of Socketed Abyss Jewels"]={{[1]={flags=0,keywordFlags=0,name="SocketedJewelEffect",type="INC",value=100}},nil} c["100% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=100}},nil} @@ -2834,21 +2803,21 @@ c["100% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShie c["100% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=100}},nil} c["100% increased Energy Shield from Equipped Helmet"]={{[1]={[1]={slotName="Helmet",type="SlotName"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=100}},nil} c["100% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil} +c["100% increased Evasion Rating during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil} c["100% increased Evasion Rating from Equipped Body Armour"]={{[1]={[1]={slotName="Body Armour",type="SlotName"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil} c["100% increased Evasion Rating if Energy Shield Recharge has started in the past 2 seconds"]={{[1]={[1]={type="Condition",var="EnergyShieldRechargePastTwoSec"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil} c["100% increased Evasion Rating if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=100}},nil} -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["100% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=100}},nil} c["100% increased Explicit Modifier magnitudes"]={{}," Explicit Modifier magnitudes "} c["100% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=100}},nil} -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["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["100% increased Freeze Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeDuration",type="INC",value=100}},nil} c["100% increased Global Armour while you have no Energy Shield"]={{[1]={[1]={type="Global"},[2]={neg=true,type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="Armour",type="INC",value=100}},nil} c["100% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} c["100% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=100}},nil} c["100% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil} -c["100% increased Ignite Duration on You"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=100}},nil} +c["100% increased Global Physical Damage while Frozen"]={{[1]={[1]={type="Global"},[2]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil} +c["100% increased Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=100}},nil} c["100% increased Knockback Distance"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=100}},nil} c["100% increased Life Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=100}},nil} c["100% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=100}},nil} @@ -2859,9 +2828,7 @@ c["100% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="M c["100% increased Maximum Recovery per Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechInstance",type="INC",value=100}},nil} c["100% increased Melee Physical Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=256,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},nil} c["100% increased Mirage Archer Duration"]={{[1]={flags=0,keywordFlags=0,name="MirageArcherDuration",type="INC",value=100}},nil} -c["100% increased Onslaught Effect"]={{[1]={flags=0,keywordFlags=0,name="OnslaughtEffect",type="INC",value=100}},nil} c["100% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},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["100% increased Physical Damage while you have Resolute Technique"]={{[1]={[1]={type="Condition",var="HaveResoluteTechnique"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=100}},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["100% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=100}},nil} @@ -2870,9 +2837,11 @@ c["100% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="Project c["100% increased Quantity of Items Dropped by Slain Normal Enemies"]={{[1]={flags=0,keywordFlags=0,name="LootQuantityNormalEnemies",type="INC",value=100}},nil} c["100% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=100}},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["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["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["100% increased Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=100}},nil} c["100% increased Shock Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockDuration",type="INC",value=100}},nil} +c["100% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} +c["100% increased Spell Critical Strike Chance per Raised Spectre"]={{[1]={[1]={stat="ActiveSpectreLimit",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=100}},nil} c["100% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=100}},nil} c["100% increased Spell Damage taken when on Low Mana"]={{[1]={[1]={type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="SpellDamageTaken",type="INC",value=100}},nil} c["100% increased Stun Duration against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=100}},nil} @@ -2887,6 +2856,7 @@ c["100% increased total Recovery per second from Life, Mana, or Energy Shield Le c["100% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=100}},nil} c["100% more Critical Strike Chance against Enemies that are not on Low Life"]={{[1]={[1]={actor="enemy",neg=true,type="ActorCondition",var="LowLife"},flags=0,keywordFlags=0,name="CritChance",type="MORE",value=100}},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=0,name="CritChance",type="MORE",value=100}},nil} +c["100% more Damage with Arrow Hits at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=4,keywordFlags=2048,name="Damage",type="MORE",value=100}},nil} c["100% more Damage with Hits from Herald Skills"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=262144,name="Damage",type="MORE",value=100}},nil} c["100% more Duration of Ailments on you"]={{[1]={flags=0,keywordFlags=0,name="SelfAilmentDuration",type="MORE",value=100}},nil} c["100% more Elemental Damage while Unbound"]={{[1]={[1]={type="Condition",var="Unbound"},flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=100}},nil} @@ -2912,17 +2882,16 @@ c["100% of Suppressed Spell Damage taken Recouped as Energy Shield +30 to Dexter c["100% of Suppressed Spell Damage taken bypasses Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="SpellDamageTaken",type="BASE",value=100}}," Suppressed bypasses Energy Shield "} c["100% of Suppressed Spell Damage taken bypasses Energy Shield 100% of Suppressed Spell Damage taken Recouped as Energy Shield"]={{[1]={flags=2,keywordFlags=0,name="SpellDamageTaken",type="BASE",value=100}}," Suppressed bypasses Energy Shield 100% of Suppressed Damage taken Recouped as Energy Shield "} c["100% reduced Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-100}},nil} +c["100% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-100}},nil} c["1000% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=1000}},nil} c["1000% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=1000}},nil} c["1000% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=1000}},nil} c["1000% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=1000}},nil} c["1000% more Physical Damage with Unarmed Melee Attacks"]={{[1]={flags=16777472,keywordFlags=0,name="PhysicalDamage",type="MORE",value=1000}},nil} -c["1000% more Unarmed Physical Damage"]={{[1]={flags=16777220,keywordFlags=0,name="PhysicalDamage",type="MORE",value=1000}},nil} c["1000% of Melee Physical Damage taken reflected to Attacker"]={{[1]={flags=256,keywordFlags=0,name="PhysicalDamage",type="BASE",value=1000}}," taken reflected to Attacker "} c["105% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=105}},nil} c["105% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=105}},nil} c["105% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=105}},nil} -c["11% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=11}},nil} c["11% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=11}},nil} c["11% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=11}},nil} c["11% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=11}},nil} @@ -2941,10 +2910,10 @@ c["113% increased Physical Damage with Ranged Weapons"]={{[1]={flags=134217732,k c["115% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=115}},nil} c["115% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=115}},nil} c["115% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=115}},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["12 to 14 Added 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["12 to 22 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},nil} c["12% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "} c["12% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil} -c["12% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=12}},nil} c["12% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=12}},nil} c["12% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=12}},nil} c["12% chance for Energy Shield Recharge to start when you Suppress Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="EnergyShield",type="BASE",value=12}}," for Recharge to start when you Suppress Damage "} @@ -2952,7 +2921,6 @@ c["12% chance for Energy Shield Recharge to start when you Suppress Spell Damage c["12% chance to Avoid Elemental Ailments per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=12}},nil} c["12% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention"]={{[1]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=12},[2]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=12},[3]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=12}},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["12% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=12}},nil} c["12% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=12}},nil} c["12% chance to deal Double Damage while using Pride"]={{[1]={[1]={type="Condition",var="AffectedByPride"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=12}},nil} c["12% chance to deal Double Damage with Attacks if Attack Time is longer than 1 second"]={{[1]={[1]={type="Condition",var="OneSecondAttackTime"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=12}},nil} @@ -3024,7 +2992,7 @@ c["12% increased Melee Physical Damage"]={{[1]={flags=256,keywordFlags=0,name="P c["12% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=12}},nil} c["12% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=12}},nil} c["12% increased Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=12}},nil} -c["12% increased Minion Damage per Spectre you own"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",stat="ActiveSpectreLimit",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}},nil} +c["12% increased Minion Damage per Raised Spectre"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={stat="ActiveSpectreLimit",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=12}}}},nil} c["12% increased Minion Duration"]={{[1]={[1]={skillType=88,type="SkillType"},[2]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=12}},nil} c["12% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil} c["12% increased Movement Speed during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=12}},nil} @@ -3056,9 +3024,8 @@ c["12% increased effect of Non-Curse Auras from your skills while your Ward is B c["12% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=12}},nil} c["12% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=12}},nil} c["12% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=12}},nil} -c["12% of Damage Taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=12}},nil} -c["12% of Damage Taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=12}},nil} c["12% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=12}},nil} +c["12% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=12}},nil} c["12% of Overkill Damage is Leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=12}}," Overkill "} c["12% of Overkill Damage is Leeched as Life Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=12}}," Overkill Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds "} c["12% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsCold",type="BASE",value=12}},nil} @@ -3066,9 +3033,6 @@ c["12% of Physical Damage from Hits taken as Fire Damage while affected by Purit c["12% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements"]={{[1]={[1]={type="Condition",var="AffectedByPurityofElements"},flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsLightning",type="BASE",value=12}},nil} c["12% reduced Enemy Stun Threshold with Maces or Sceptres"]={{[1]={flags=1048580,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-12}},nil} c["12% reduced Mana Cost of Attacks"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-12}},nil} -c["12% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-12}},nil} -c["120% Increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=120}},nil} -c["120% Increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=120}},nil} c["120% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=120}},nil} c["120% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=120}},nil} c["120% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=120}},nil} @@ -3076,7 +3040,6 @@ c["120% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockReco c["120% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=120}},nil} c["120% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnConsecratedGround"},[2]={type="Condition",var="AffectedByZealotry"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}},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["120% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=120}},nil} c["120% increased Critical Strike Chance while you have Avatar of Fire"]={{[1]={[1]={type="Condition",var="HaveAvatarOfFire"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}},nil} c["120% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",type="INC",value=120}},nil} c["120% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=120}},nil} @@ -3092,14 +3055,16 @@ c["120% increased Implicit Modifier magnitudes"]={{}," Implicit Modifier magnitu c["120% increased Implicit Modifier magnitudes 20% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=120}}," Implicit Modifier magnitudes 20% increased "} c["120% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=120}},nil} c["120% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=120}},nil} +c["120% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=120}},nil} c["120% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=120}},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["120% 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=120}},nil} c["120% increased Vaal Skill Critical Strike Chance"]={{[1]={flags=0,keywordFlags=512,name="CritChance",type="INC",value=120}},nil} c["122% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=122}},nil} +c["125 to 180 Added Cold Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=125},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=180}},nil} c["125% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=125}},nil} c["125% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=125}},nil} c["125% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=125}},nil} -c["125% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=125}},nil} c["125% increased Critical Strike Chance against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=125}},nil} c["125% increased 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="INC",value=125}},nil} c["125% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=125}},nil} @@ -3110,6 +3075,7 @@ c["125% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="Physical c["125% increased Rarity of Items Dropped by Slain Magic Enemies"]={{[1]={flags=0,keywordFlags=0,name="LootRarityMagicEnemies",type="INC",value=125}},nil} c["125% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=125}},nil} c["129% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=129}},nil} +c["13 to 24 Added Cold Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=13},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=24}},nil} c["13% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=13}},nil} c["13% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=13}},nil} c["13% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=13}},nil} @@ -3140,7 +3106,7 @@ c["13% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius" c["13% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=13}},nil} c["13% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=13}},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["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["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["13% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=13}},nil} c["13% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=13}},nil} c["13% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=13}},nil} @@ -3169,11 +3135,10 @@ c["135% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name c["135% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=135}},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["138% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=138}},nil} -c["138% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=138}},nil} c["138% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=138}},nil} +c["138% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=138}},nil} c["139% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=139}},nil} -c["14 to 26 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=26}},nil} -c["14% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=14}},nil} +c["14 to 24 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=14},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=24}},nil} c["14% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=14}},nil} c["14% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=14}},nil} c["14% increased Accuracy Rating with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="Accuracy",type="INC",value=14}},nil} @@ -3208,22 +3173,21 @@ c["140% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC c["140% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=140}},nil} c["140% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=140}},nil} c["140% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=140}},nil} -c["140% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=140}},nil} c["140% increased Duration of Ailments you inflict while Focused"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=140}},nil} c["140% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=140}},nil} c["140% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=140}},nil} c["140% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=140}},nil} c["140% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=140}},nil} c["140% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=140}},nil} +c["140% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=140}},nil} c["140% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=140}},nil} +c["145 to 200 Added Cold Damage with 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["145% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=145}},nil} c["145% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=145}},nil} c["146% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=146}},nil} c["15 to 289 Added Lightning Damage with Wand Attacks"]={{[1]={flags=8388612,keywordFlags=0,name="LightningMin",type="BASE",value=15},[2]={flags=8388612,keywordFlags=0,name="LightningMax",type="BASE",value=289}},nil} c["15% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil} -c["15% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=15}},nil} c["15% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil} -c["15% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=15}},nil} c["15% Global chance to Blind Enemies on hit"]={{},"% chance to Blind Enemies on hit "} c["15% Global chance to Blind Enemies on hit Attack Hits against Bleeding Enemies have 30% chance to Blind"]={{},"% chance to Blind Enemies on hit Attack Hits have 30% chance to Blind "} c["15% additional Physical Damage Reduction while Focused"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=15}},nil} @@ -3320,7 +3284,6 @@ c["15% increased Cast Speed during Effect"]={{[1]={[1]={type="Condition",var="Us c["15% increased Cast Speed while Chilled"]={{[1]={[1]={type="Condition",var="Chilled"},flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil} c["15% increased Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil} c["15% increased Cast Speed while affected by Zealotry"]={{[1]={[1]={type="Condition",var="AffectedByZealotry"},flags=16,keywordFlags=0,name="Speed",type="INC",value=15}},nil} -c["15% increased Cast Speed with Curse Skills"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=15}},nil} c["15% increased Chaining range"]={{}," Chaining range "} c["15% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=15}},nil} c["15% increased Character Size"]={{}," Character Size "} @@ -3336,7 +3299,6 @@ c["15% increased Critical Strike Chance with Mines"]={{[1]={flags=0,keywordFlags c["15% increased Curse Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=15}},nil} c["15% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Damage Over Time with Bow Skills"]={{[1]={flags=8,keywordFlags=1024,name="Damage",type="INC",value=15}},nil} -c["15% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Damage for each Herald affecting you"]={{[1]={[1]={type="Multiplier",var="Herald"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Damage for each Poison on you up to a maximum of 75%"]={{[1]={[1]={limit=75,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Damage for each time you've Warcried Recently"]={{[1]={[1]={type="Multiplier",var="WarcryUsedRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=15}},nil} @@ -3348,6 +3310,7 @@ c["15% increased Damage taken while on Full Energy Shield"]={{[1]={[1]={type="Co c["15% increased Damage with Bleeding"]={{[1]={flags=0,keywordFlags=4194304,name="Damage",type="INC",value=15}},nil} c["15% increased Damage with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Damage",type="INC",value=15}},nil} c["15% increased Damage with Hits against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=15}},nil} +c["15% increased Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=15}},nil} c["15% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=15}},nil} c["15% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil} c["15% increased Dexterity if 2 Redeemer Items are Equipped"]={{[1]={[1]={threshold=2,type="MultiplierThreshold",var="RedeemerItem"},flags=0,keywordFlags=0,name="Dex",type="INC",value=15}},nil} @@ -3360,6 +3323,7 @@ c["15% increased Effect of Onslaught on you"]={{[1]={flags=0,keywordFlags=0,name c["15% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=15}},nil} c["15% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil} c["15% increased Elemental Damage if you've Chilled an Enemy Recently"]={{[1]={[1]={type="Condition",var="ChilledEnemyRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil} +c["15% increased Elemental Damage per 1% Missing"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}}," per 1% Missing "} c["15% increased Elemental Damage per 1% Missing Fire, Cold, or Lightning Resistance, up to a maximum of 450%"]={{[1]={[1]={div=1,globalLimit=450,globalLimitKey="ReplicaNebulisCold",statList={[1]="MissingFireResist",[2]="MissingColdResist",[3]="MissingLightningResist"},type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil} c["15% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=15}},nil} c["15% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=15}},nil} @@ -3403,7 +3367,7 @@ c["15% increased Movement Speed during any Flask Effect"]={{[1]={[1]={type="Cond c["15% increased Movement Speed for 9 seconds on Throwing a Trap"]={{[1]={[1]={type="Condition",var="TrapOrMineThrownRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil} c["15% increased Movement Speed if 4 Hunter Items are Equipped"]={{[1]={[1]={threshold=4,type="MultiplierThreshold",var="HunterItem"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil} 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["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["15% increased Movement Speed if you've Warcried Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},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["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["15% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=15}},nil} @@ -3420,7 +3384,7 @@ c["15% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="Pow c["15% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=15}},nil} c["15% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},nil} c["15% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=15}},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["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["15% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=15}},nil} c["15% increased Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=15}},nil} c["15% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=15}},nil} @@ -3460,69 +3424,65 @@ c["15% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="Li c["15% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=15}},nil} c["15% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=15}},nil} c["15% of Lightning Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=15}},nil} +c["15% of Maximum Life taken as Chaos Damage per second"]={{[1]={[1]={percent=15,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=1}},nil} c["15% of Physical Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToChaos",type="BASE",value=15}},nil} c["15% of Physical Damage Converted to Cold Damage while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=15}},nil} c["15% of Physical Damage Converted to Fire Damage while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=15}},nil} c["15% of Physical Damage Converted to Lightning Damage while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=15}},nil} c["15% of Physical Damage from Hits taken as Cold Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsCold",type="BASE",value=15}},nil} c["15% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=15}},nil} -c["15% of maximum Life taken as Chaos Damage per second"]={{[1]={[1]={percent=15,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=1}},nil} -c["15% reduced Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-15}},nil} c["15% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-15}},nil} c["15% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-15}},nil} c["15% reduced Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil} c["15% reduced Damage taken from Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=-15}},nil} -c["15% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil} c["15% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-15}},nil} c["15% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-15}},nil} c["15% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-15}},nil} +c["15% reduced Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-15}},nil} c["15% reduced Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=-15}},nil} -c["15% reduced Mana Burn rate"]={{[1]={flags=0,keywordFlags=0,name="TinctureManaBurnRate",type="INC",value=-15}},nil} c["15% reduced Mana Cost of Attacks"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil} 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["15% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-15}},nil} -c["15% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-15}},nil} +c["15% reduced Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=-15}},nil} +c["15% reduced Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=-15}},nil} c["15% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-15}},nil} c["15% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-15}},nil} c["15% reduced Skeleton Duration"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil} c["15% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil} c["15% reduced Spark Duration"]={{[1]={[1]={includeTransfigured=true,skillName="Spark",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-15}},nil} -c["15% reduced maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=-15}},nil} -c["15% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-15}},nil} c["15% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-15}},nil} -c["150% Increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=150}},nil} c["150% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=150}},nil} c["150% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=150}},nil} c["150% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=150}},nil} c["150% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=150}},nil} +c["150% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=150}},nil} c["150% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=150}},nil} c["150% increased Cold Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=150}},nil} c["150% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=150}},nil} c["150% increased Critical Strike Chance against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=150}},nil} c["150% increased 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="INC",value=150}},nil} c["150% increased Critical Strike Chance against Enemies that are on Full Life"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="FullLife"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=150}},nil} -c["150% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=150}},nil} c["150% increased Damage with Poison"]={{[1]={flags=0,keywordFlags=2097152,name="Damage",type="INC",value=150}},nil} c["150% increased Effect of Auras from Mines"]={{[1]={flags=0,keywordFlags=8192,name="AuraEffect",type="INC",value=150}},nil} c["150% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="corruptedMagicJewelIncEffect",value=150}}},nil} +c["150% increased Elemental Damage if you've Warcried Recently"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=150}},nil} c["150% increased Elemental Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=150}},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["150% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=150},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=150},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=150}},nil} c["150% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=150}},nil} c["150% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=150}},nil} c["150% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=150}},nil} +c["150% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=150}},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["150% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=150}},nil} c["150% increased Physical Damage with Ranged Weapons"]={{[1]={flags=134217732,keywordFlags=0,name="PhysicalDamage",type="INC",value=150}},nil} c["150% increased Rarity of Items Dropped by Slain Magic Enemies"]={{[1]={flags=0,keywordFlags=0,name="LootRarityMagicEnemies",type="INC",value=150}},nil} +c["150% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=150}},nil} c["150% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=150}},nil} 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["150% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=150}},nil} c["152% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=152}},nil} c["155% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=155}},nil} -c["16 to 27 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=16},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=27}},nil} c["16% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=16}},nil} -c["16% Chance to Block Attack Damage while wielding a Staff"]={{[1]={[1]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=16}},nil} 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["16% increased Accuracy Rating with Bows"]={{[1]={flags=131076,keywordFlags=0,name="Accuracy",type="INC",value=16}},nil} c["16% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=16}},nil} @@ -3566,6 +3526,7 @@ c["16% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",ty c["16% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=16}},nil} c["16% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=16}},nil} c["16% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=16}},nil} +c["16% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-16}},nil} c["160% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=160}},nil} c["160% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=160}},nil} c["160% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=160}},nil} @@ -3583,15 +3544,13 @@ c["165% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShie c["165% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=165}},nil} c["165% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=165}},nil} c["166% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=166}},nil} -c["17 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlock",type="BASE",value=17}},nil} -c["17% chance to Suppress Spell Damage while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=17}},nil} c["17% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=17}},nil} c["17% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=17}},nil} c["17% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=17}},nil} c["17% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=17}},nil} c["17% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",type="INC",value=17}},nil} c["17% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=17}},nil} -c["17% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=17}},nil} +c["17% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-17}},nil} c["170% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=170}},nil} c["170% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=170}},nil} c["170% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=170}},nil} @@ -3614,7 +3573,6 @@ c["175% increased Skeleton Duration"]={{[1]={[1]={includeTransfigured=true,skill c["175% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=175}},nil} c["175% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=175}},nil} c["18 to 347 Added Lightning Damage with Wand Attacks"]={{[1]={flags=8388612,keywordFlags=0,name="LightningMin",type="BASE",value=18},[2]={flags=8388612,keywordFlags=0,name="LightningMax",type="BASE",value=347}},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["18% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=18}},nil} c["18% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=18},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=18},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=18}},nil} c["18% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=18}},nil} @@ -3639,7 +3597,6 @@ c["18% increased Effect of Cold Ailments"]={{[1]={flags=0,keywordFlags=0,name="E c["18% increased Effect of Non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=18},[2]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=18},[3]={flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=18},[4]={flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=18},[5]={flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=18},[6]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=18}},nil} c["18% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=18}},nil} c["18% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=18}},nil} -c["18% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=18}},nil} c["18% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=18}},nil} c["18% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=18}},nil} c["18% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=18}},nil} @@ -3647,7 +3604,6 @@ c["18% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,key c["18% increased Golem Damage for each Type of Golem you have Summoned"]={{[1]={[1]={skillType=61,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=61,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=61,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=61,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=61,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}}},[6]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="HaveCarrionGolem"},flags=0,keywordFlags=0,name="Damage",type="INC",value=18}}}},nil} c["18% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=18}},nil} c["18% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=18}},nil} -c["18% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=18}},nil} c["18% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=18}},nil} c["18% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=18}},nil} c["18% increased Lightning Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=18}},nil} @@ -3662,7 +3618,6 @@ c["18% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="Loo c["18% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=18}},nil} c["18% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=18}},nil} c["18% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=18}},nil} -c["18% increased Vaal Skill Effect Duration"]={{[1]={flags=0,keywordFlags=512,name="Duration",type="INC",value=18}},nil} c["18% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=18}},nil} c["18% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=18}},nil} c["18% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=18}},nil} @@ -3682,6 +3637,7 @@ c["180% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name c["180% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=180}},nil} c["185% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=185}},nil} c["185% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=185}},nil} +c["188 to 262 Added Cold Damage with 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["188% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=188}},nil} c["188% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=188}},nil} c["188% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=188}},nil} @@ -3696,17 +3652,15 @@ c["190% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="Physical c["195% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=195}},nil} c["2 Enemy Writhing Worms escape the Flask when used"]={{}," Enemy Writhing Worms escape the Flask when used "} c["2 Enemy Writhing Worms escape the Flask when used Writhing Worms are destroyed when Hit"]={{}," Enemy Writhing Worms escape the Flask when used Writhing Worms are destroyed when Hit "} -c["2 additional Arrows"]={{[1]={flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=2}},nil} c["2 to 38 Lightning Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=38}},nil} c["2 to 40 Lightning Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=2},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=40}},nil} c["2% Chance to Block Attack Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil} c["2% Chance to Block Attack Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil} c["2% Chance to Block Attack Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=2}},nil} c["2% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=2}},nil} -c["2% Reduced Flask Effect Duration per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-2}},nil} c["2% additional Physical Damage Reduction for every 3% Life Recovery per second from Leech"]={{[1]={[1]={div=3,stat="MaxLifeLeechRatePercent",type="PerStat"},[2]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=2}},nil} c["2% additional Physical Damage Reduction per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=2}},nil} -c["2% chance to Avoid Elemental Damage when Hit per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=2},[2]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=2},[3]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=2}},nil} +c["2% chance to Avoid Elemental Damage from Hits per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=2},[2]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=2},[3]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=2}},nil} c["2% chance to Defend with 150% of Armour per 5% missing Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=2}}," to Defend with 150% of per 5% missing Energy Shield "} c["2% chance to Freeze"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=2}},nil} c["2% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=2}},nil} @@ -3727,11 +3681,10 @@ c["2% increased Attack and Cast Speed per Power Charge"]={{[1]={[1]={type="Multi c["2% increased Attack and Cast Speed per Summoned Raging Spirit"]={{[1]={[1]={stat="ActiveRagingSpiritLimit",type="PerStat"},flags=0,keywordFlags=0,name="Speed",type="INC",value=2}},nil} 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["2% increased Chaos Damage per 100 maximum Mana, up to a maximum of 80%"]={{[1]={[1]={div=100,globalLimit=80,globalLimitKey="DarkIdeation",stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=2}},nil} -c["2% increased Critical Strike Chance for Spells per 100 Player Maximum Life"]={{[1]={[1]={actor="parent",div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=2}},nil} c["2% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=2}},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["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["2% increased Evasion per 500 Maximum Mana"]={{[1]={[1]={div=500,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=2}},nil} +c["2% increased Evasion Rating per 500 Maximum Mana"]={{[1]={[1]={div=500,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=2}},nil} c["2% increased Experience gain"]={{}," Experience gain "} 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["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} @@ -3739,14 +3692,15 @@ c["2% increased Mana Reservation Efficiency of Skills per 250 total Attributes"] 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["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["2% increased Minion Attack and Cast Speed per Skeleton you own"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",stat="ActiveSkeletonLimit",type="PerStat"},flags=0,keywordFlags=0,name="Speed",type="INC",value=2}}}},nil} -c["2% increased Minion Duration per Zombie you own"]={{[1]={[1]={skillType=88,type="SkillType"},[2]={skillType=9,type="SkillType"},[3]={actor="parent",stat="ActiveZombieLimit",type="PerStat"},flags=0,keywordFlags=0,name="Duration",type="INC",value=2}},nil} +c["2% increased Minion Duration per Raised Zombie"]={{[1]={[1]={skillType=88,type="SkillType"},[2]={skillType=9,type="SkillType"},[3]={stat="ActiveZombieLimit",type="PerStat"},flags=0,keywordFlags=0,name="Duration",type="INC",value=2}},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["2% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},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["2% increased Movement Speed per Summoned Phantasm"]={{[1]={[1]={stat="ActivePhantasmLimit",type="PerStat"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=2}},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["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["2% increased Recovery Rate of Life, Mana and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=2},[2]={flags=0,keywordFlags=0,name="ManaRecoveryRate",type="INC",value=2},[3]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=2}},nil} c["2% increased Skeleton Attack Speed"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=2}}}},nil} +c["2% increased Spell Critical Strike Chance per 100 Player Maximum Life"]={{[1]={[1]={actor="parent",div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=2}},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["2% increased Spell Damage per 100 Player Maximum Life"]={{[1]={[1]={actor="parent",div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=2}},nil} c["2% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=2}},nil} @@ -3757,6 +3711,7 @@ c["2% of Attack Damage Leeched as Life against Taunted Enemies"]={{[1]={[1]={act 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["2% of Chaos Damage Leeched as Life during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDamageLifeLeech",type="BASE",value=2}},nil} c["2% of Damage Leeched as Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="DamageEnergyShieldLeech",type="BASE",value=2}},nil} +c["2% of Damage Leeched as Life against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=2}},nil} c["2% of Damage leeched as Life while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=2}},nil} 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["2% 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=2}},nil} @@ -3767,16 +3722,14 @@ c["2% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0, c["2% of Physical Attack Damage Leeched as Mana"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageManaLeech",type="BASE",value=2}},nil} c["2% reduced Duration of Ailments inflicted on you per Fortification"]={{[1]={[1]={stat="FortificationStacks",type="PerStat"},flags=0,keywordFlags=0,name="SelfAilmentDuration",type="INC",value=-2}},nil} c["2% reduced Duration of Elemental Ailments on you per 15 Intelligence"]={{[1]={[1]={div=15,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=-2}},nil} +c["2% reduced Flask Effect Duration per Level"]={{[1]={[1]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-2}},nil} c["2.25% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2.25}},nil} c["2.5% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds"]={{[1]={[1]={type="Condition",var="CritInPast8Sec"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2.5}},nil} c["2.5% of Physical Attack Damage Leeched as Life"]={{[1]={flags=1,keywordFlags=0,name="PhysicalDamageLifeLeech",type="BASE",value=2.5}},nil} c["20 Life gained on Kill per Frenzy Charge"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Life",type="BASE",value=20}}," gained "} c["20 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=20}},nil} c["20 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlock",type="BASE",value=20}},nil} -c["20% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=20}},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["20% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} -c["20% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=20}},nil} c["20% additional Physical Damage Reduction while affected by a Non-Vaal Guard Skill"]={{[1]={[1]={type="Condition",var="AffectedByNonVaalGuardSkill"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=20}},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["20% chance for Energy Shield Recharge to start when you Block 35% 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 35% chance for Energy Shield Recharge to start when you Block "} @@ -3805,7 +3758,7 @@ c["20% chance to Avoid being Shocked"]={{[1]={flags=0,keywordFlags=0,name="Avoid c["20% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=20}},nil} c["20% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies with Attacks "} c["20% chance to Blind Enemies on Hit with Attacks 20% increased Blind Effect"]={{[1]={flags=4,keywordFlags=0,name="LocalEffect",type="BASE",value=20}}," to Blind Enemies with Attacks 20% increased Blind "} -c["20% chance to Blind Enemies on Hit with Attacks 40% increased Damage with Hits and Ailments against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=4,keywordFlags=0,name="Damage",type="BASE",value=20}}," to Blind Enemies with Attacks 40% increased with Hits and Ailments "} +c["20% chance to Blind Enemies on Hit with Attacks Blind does not affect your Light Radius"]={{[1]={flags=4,keywordFlags=0,name="LightRadius",type="BASE",value=20}}," to Blind Enemies with Attacks Blind does not affect your "} c["20% chance to Blind Enemies with Off Hand Hits"]={{}," to Blind Enemies Hits "} c["20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit"]={{}," to Cover Rare or Unique Enemies in Ash "} c["20% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit +6% Chance to Block Attack Damage"]={{[1]={flags=4,keywordFlags=0,name="BlockChance",type="BASE",value=20}}," to Cover Rare or Unique Enemies in Ash +6% Attack Damage "} @@ -3830,8 +3783,6 @@ c["20% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChanc c["20% chance to Poison on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PoisonChance",type="BASE",value=20}},nil} c["20% chance to Poison on Hit with Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="PoisonChance",type="BASE",value=20}},nil} c["20% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=20}},nil} -c["20% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=20}},nil} -c["20% chance to Suppress Spell Damage while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=20}},nil} c["20% chance to Trigger Level 16 Molten Burst on Melee Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=16,skillId="TriggeredMoltenStrike",triggerChance=20,triggered=true}}},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",triggerChance=20,triggered=true}}},nil} c["20% chance to Trigger Level 20 Summon Spectral Wolf on Critical Strike with this Weapon"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonSpectralWolf",triggerChance=20,triggered=true}},[2]={[1]={skillId="SummonSpectralWolf",type="SkillId"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="triggerOnCrit",value=true}}}}},nil} @@ -3844,8 +3795,6 @@ c["20% chance to deal Double Damage while affected by Glorious Madness"]={{[1]={ c["20% chance to double Stun Duration"]={{[1]={flags=0,keywordFlags=0,name="DoubleEnemyStunDurationChance",type="BASE",value=20}},nil} c["20% chance to gain Elusive when you Block while Dual Wielding"]={{[1]={[1]={type="Condition",var="DualWielding"},flags=0,keywordFlags=0,name="Condition:CanBeElusive",type="FLAG",value=true}},nil} c["20% chance to gain Onslaught for 4 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} -c["20% chance to gain a Endurance Charge on Kill"]={nil,"a Endurance Charge "} -c["20% chance to gain a Endurance Charge on Kill Regenerate 4% of Life per second"]={nil,"a Endurance Charge Regenerate 4% of Life per second "} c["20% chance to gain a Frenzy Charge on Hit while Blinded"]={nil,"a Frenzy Charge on Hit "} c["20% chance to gain a Frenzy Charge on Kill"]={nil,"a Frenzy Charge "} c["20% chance to gain a Frenzy Charge on Kill 20% chance to gain a Power Charge on Kill"]={nil,"a Frenzy Charge 20% chance to gain a Power Charge "} @@ -3857,7 +3806,7 @@ c["20% chance to gain a Power Charge on Critical Strike You have Mind over Matte c["20% chance to gain a Power Charge on Hit"]={nil,"a Power Charge on Hit "} c["20% chance to gain a Power Charge on Hit 6% increased Spell Damage per Power Charge"]={nil,"a Power Charge on Hit 6% increased Spell Damage "} c["20% chance to gain a Power Charge on Kill"]={nil,"a Power Charge "} -c["20% chance to gain a Power Charge on Kill 20% chance to gain a Endurance Charge on Kill"]={nil,"a Power Charge 20% chance to gain a Endurance Charge "} +c["20% chance to gain a Power Charge on Kill 12% chance to Freeze, Shock and Ignite"]={nil,"a Power Charge 12% chance to Freeze, Shock and Ignite "} c["20% chance to gain a Power Charge when you Block"]={nil,"a Power Charge when you Block "} c["20% chance to gain a Power Charge when you Block +10% Chance to Block Spell Damage while at Maximum Power Charges"]={nil,"a Power Charge when you Block +10% Chance to Block Spell Damage "} c["20% chance to gain a Power Charge when you Block +8% Chance to Block Attack Damage while wielding a Staff"]={nil,"a Power Charge when you Block +8% Chance to Block Attack Damage "} @@ -3866,6 +3815,8 @@ c["20% chance to gain a Power Charge when you Cast a Curse Spell"]={nil,"a Power c["20% chance to gain a Power Charge when you Cast a Curse Spell Your Curse Limit is equal to your maximum Power Charges"]={nil,"a Power Charge when you Cast a Curse Spell Your Curse Limit is equal to your maximum Power Charges "} c["20% chance to gain a Spirit Charge on Kill"]={nil,"a Spirit Charge "} c["20% chance to gain a Spirit Charge on Kill Gain a Spirit Charge on Kill"]={nil,"a Spirit Charge Gain a Spirit Charge "} +c["20% chance to gain an Endurance Charge on Kill"]={nil,"an Endurance Charge "} +c["20% chance to gain an Endurance Charge on Kill 20% chance to gain a Frenzy Charge on Kill"]={nil,"an Endurance Charge 20% chance to gain a Frenzy Charge "} c["20% chance to gain an Endurance Charge when you Block"]={nil,"an Endurance Charge when you Block "} c["20% chance to gain an Endurance Charge when you Block +10% Chance to Block Attack Damage while at Maximum Endurance Charges"]={nil,"an Endurance Charge when you Block +10% Chance to Block Attack Damage "} c["20% chance to gain an Endurance Charge when you Block +6% Chance to Block Attack Damage"]={nil,"an Endurance Charge when you Block +6% Chance to Block Attack Damage "} @@ -3900,7 +3851,7 @@ c["20% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Spe c["20% increased Attack and Cast Speed if you've Consumed a Corpse Recently"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil} c["20% increased Attack and Cast Speed while at maximum Fortification"]={{[1]={[1]={type="Condition",var="HaveMaximumFortification"},flags=0,keywordFlags=0,name="Speed",type="INC",value=20}},nil} c["20% increased Attack and Movement Speed while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}," Attack and "} -c["20% increased Attack and Movement Speed while you have a Bestial Minion Adds 19-29 Chaos Damage to Attacks while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},[2]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}," Attack and Adds 19-29 Chaos Damage to Attacks "} +c["20% increased Attack and Movement Speed while you have a Bestial Minion Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion"]={{[1]={[1]={type="Condition",var="HaveBestialMinion"},[2]={type="Condition",var="HaveBestialMinion"},flags=4,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}," Attack and Projectiles from Attacks have 20% chance to Maim "} c["20% increased Attack and Movement Speed with Her Blessing"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}}," Attack and with Her Blessing "} c["20% increased Bleeding Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=20}},nil} c["20% increased Blind Effect"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlindEffect",type="INC",value=20}}}},nil} @@ -3910,7 +3861,6 @@ c["20% increased Buff Effect of your Links for which 50% of Link Duration has Ex c["20% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},nil} c["20% increased Cast Speed while Chilled"]={{[1]={[1]={type="Condition",var="Chilled"},flags=16,keywordFlags=0,name="Speed",type="INC",value=20}},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["20% increased Cast Speed with Curse Skills"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=20}},nil} c["20% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=20}},nil} c["20% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=20}},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} @@ -3948,7 +3898,6 @@ c["20% increased Damage with Hits and Ailments against Cursed Enemies"]={{[1]={[ c["20% increased Damage with Hits and Ailments against Enemies affected by Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited",[5]="Scorched",[6]="Brittle",[7]="Sapped",[8]="Poisoned",[9]="Bleeding"}},flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}},nil} c["20% increased Damage with Hits and Ailments against Marked Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Marked"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}},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["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["20% increased Damage with Movement Skills"]={{[1]={flags=0,keywordFlags=8,name="Damage",type="INC",value=20}},nil} c["20% increased Damage with One Handed Weapons"]={{[1]={flags=268435460,keywordFlags=0,name="Damage",type="INC",value=20}},nil} c["20% increased Damage with Poison per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=2097152,name="Damage",type="INC",value=20}},nil} @@ -3962,6 +3911,7 @@ c["20% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType= c["20% increased Effect of Chill"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20}},nil} c["20% increased Effect of Cold Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=20}},nil} c["20% increased Effect of Consecrated Ground you create"]={{[1]={flags=0,keywordFlags=0,name="ConsecratedGroundEffect",type="INC",value=20}},nil} +c["20% increased Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=20}},nil} c["20% increased Effect of Herald Buffs on you"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=20}},nil} c["20% increased Effect of Impales you inflict on non-Impaled Enemies"]={{[1]={flags=0,keywordFlags=0,name="ImpaleEffect",type="INC",value=20}}," on non-Impaled Enemies "} c["20% increased Effect of Lightning Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=20}},nil} @@ -3975,13 +3925,15 @@ c["20% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillTyp c["20% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=20}},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["20% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=20}},nil} +c["20% increased Elemental Damage with Hits and Ailments for"]={{[1]={flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=20}}," for "} +c["20% increased Elemental Damage with Hits and Ailments for each type of Elemental Ailment on Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=20},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=20},[3]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=20},[4]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=20},[5]={[1]={actor="enemy",type="ActorCondition",var="Scorched"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=20},[6]={[1]={actor="enemy",type="ActorCondition",var="Brittle"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=20},[7]={[1]={actor="enemy",type="ActorCondition",var="Sapped"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=20}},nil} c["20% increased Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="INC",value=20}},nil} c["20% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="ElusiveEffect",type="INC",value=20}},nil} c["20% increased Endurance Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=20}},nil} c["20% increased Energy Shield Recovery Rate if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=20}},nil} c["20% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=20}},nil} c["20% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil} -c["20% increased Evasion per 500 Maximum Mana"]={{[1]={[1]={div=500,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil} +c["20% increased Evasion Rating per 500 Maximum Mana"]={{[1]={[1]={div=500,stat="Mana",type="PerStat"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=20}},nil} c["20% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=20}},nil} c["20% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%"]={{[1]={[1]={div=1,globalLimit=300,globalLimitKey="ReplicaNebulisFire",stat="MissingFireResist",type="PerStat"},flags=0,keywordFlags=0,name="FireDamage",type="INC",value=20}},nil} c["20% increased Fire Damage taken"]={{[1]={flags=0,keywordFlags=0,name="FireDamageTaken",type="INC",value=20}},nil} @@ -4008,8 +3960,8 @@ c["20% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius" c["20% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=20}},nil} 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["20% increased Lightning Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=20}},nil} +c["20% increased Main Hand Critical Strike Chance per"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}}," per "} c["20% increased Main Hand Critical Strike Chance per Murderous Eye Jewel affecting you, up to a maximum of 200%"]={{[1]={[1]={globalLimit=200,globalLimitKey="TecrodGazeMainHand",type="Multiplier",var="MurderousEyeJewel"},[2]={type="Condition",var="MainHandAttack"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} -c["20% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=20}},nil} c["20% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=20}},nil} c["20% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=20}},nil} c["20% increased Mana Reservation Efficiency of Curse Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=2,name="ManaReservationEfficiency",type="INC",value=20}},nil} @@ -4024,12 +3976,12 @@ c["20% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",ty c["20% increased Minion Duration"]={{[1]={[1]={skillType=88,type="SkillType"},[2]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} c["20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil} c["20% increased Movement Speed on Shocked Ground"]={{[1]={[1]={type="Condition",var="OnShockedGround"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil} -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["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["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["20% increased Movement Speed while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},nil} c["20% increased Movement Speed while Chilled"]={{[1]={[1]={type="Condition",var="Chilled"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},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["20% increased Movement Speed while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=20}},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["20% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=20}},nil} c["20% increased Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="INC",value=20}},nil} @@ -4043,13 +3995,12 @@ c["20% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Dama c["20% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=20}},nil} c["20% increased Quantity of Fish Caught"]={{}," Quantity of Fish Caught "} c["20% increased Quantity of Fish Caught Glows while in an Area containing a Unique Fish"]={{}," Quantity of Fish Caught Glows while in an containing a Unique Fish "} -c["20% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=20}},nil} c["20% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=20}},nil} c["20% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=20}},nil} c["20% increased Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=20}},nil} c["20% increased Recovery rate of Life and Energy Shield while affected by Malevolence"]={{[1]={[1]={type="Condition",var="AffectedByMalevolence"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=20},[2]={[1]={type="Condition",var="AffectedByMalevolence"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=20}},nil} c["20% increased Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=20}},nil} -c["20% increased Reservation Efficiency while affected by a Unique Abyss Jewel"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="UniqueAbyssJewels"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=20}},nil} +c["20% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="UniqueAbyssJewels"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=20}},nil} c["20% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},nil} c["20% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=20}},nil} c["20% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=20}},nil} @@ -4068,7 +4019,6 @@ c["20% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="Tot c["20% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=20}},nil} c["20% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=20}},nil} c["20% increased Trap and Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=20}},nil} -c["20% increased Vaal Skill Effect Duration"]={{[1]={flags=0,keywordFlags=512,name="Duration",type="INC",value=20}},nil} c["20% increased Valour gained"]={{}," Valour gained "} c["20% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=20}},nil} c["20% increased Warcry Speed"]={{[1]={flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=20}},nil} @@ -4088,7 +4038,7 @@ c["20% less Attack Damage taken if you haven't been Hit by an Attack Recently"]= c["20% less Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="MORE",value=-20}},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["20% less Effect of Curses from Socketed Hex Skills"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="MORE",value=-20}}," of Curses from Socketed Hex Skills "} -c["20% less Effect of Curses from Socketed Hex Skills 20% less Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="MORE",value=-20}}," of Curses from Socketed Hex Skills 20% less Effect of your Curses "} +c["20% less Effect of Curses from Socketed Hex Skills +40 to Intelligence"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="MORE",value=-20}}," of Curses from Socketed Hex Skills +40 to Intelligence "} c["20% less Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="MORE",value=-20}},nil} c["20% less Minimum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MinPhysicalDamage",type="MORE",value=-20}},nil} c["20% more Area of Effect while wielding a Mace or Sceptre"]={{[1]={[1]={type="Condition",var="UsingMace"},flags=0,keywordFlags=0,name="AreaOfEffect",type="MORE",value=20}},nil} @@ -4127,7 +4077,7 @@ c["20% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,n c["20% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-20}},nil} c["20% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-20}},nil} c["20% reduced Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-20}},nil} -c["20% reduced Chill Duration on You"]={{[1]={flags=0,keywordFlags=0,name="SelfChillDuration",type="INC",value=-20}},nil} +c["20% reduced Chill Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillDuration",type="INC",value=-20}},nil} c["20% reduced Cost of Attacks while you have at least 20 Rage"]={{[1]={[1]={skillType=1,type="SkillType"},[2]={threshold=20,type="MultiplierThreshold",var="Rage"},flags=0,keywordFlags=0,name="Cost",type="INC",value=-20}},nil} c["20% reduced Duration of Ailments on You"]={{[1]={flags=0,keywordFlags=0,name="SelfAilmentDuration",type="INC",value=-20}},nil} c["20% reduced Duration of Elemental Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyElementalAilmentDuration",type="INC",value=-20}},nil} @@ -4144,16 +4094,13 @@ c["20% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="Self c["20% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-20}},nil} c["20% reduced Mana Burn rate"]={{[1]={flags=0,keywordFlags=0,name="TinctureManaBurnRate",type="INC",value=-20}},nil} c["20% reduced Mana Cost of Curse Skills"]={{[1]={flags=0,keywordFlags=2,name="ManaCost",type="INC",value=-20}},nil} -c["20% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},nil} c["20% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-20}},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["20% reduced Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=-20}},nil} -c["20% reduced Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=-20}},nil} c["20% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-20}},nil} c["20% reduced Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=-20}},nil} c["20% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-20}},nil} -c["20% reduced Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=-20}},nil} -c["20% reduced Reservation Efficiency"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=-20}},nil} +c["20% reduced Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=-20}},nil} c["20% reduced Skeleton Duration"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-20}},nil} c["20% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-20}},nil} c["20% reduced Soul Gain Prevention Duration"]={{[1]={flags=0,keywordFlags=0,name="SoulGainPreventionDuration",type="INC",value=-20}},nil} @@ -4163,11 +4110,12 @@ c["20% reduced bonuses gained from Equipped Boots"]={{[1]={flags=0,keywordFlags= c["20% reduced maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=-20}},nil} 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["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["200 Lightning Damage taken per second per Power Charge if"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="LightningDegen",type="BASE",value=200}}," if "} 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["200% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=200}},nil} c["200% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}},nil} c["200% increased Armour against Projectiles"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}}," against Projectiles "} -c["200% increased Armour against Projectiles +25% Chance to Block Projectile Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}}," against Projectiles +25% Chance to Block Projectile Attack Damage "} +c["200% increased Armour against Projectiles +25% chance to Block Projectile Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=200}}," against Projectiles +25% chance to Block Projectile Attack Damage "} c["200% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=200}},nil} c["200% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=200}},nil} c["200% increased Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="ChargeDuration",type="INC",value=200}},nil} @@ -4189,14 +4137,15 @@ c["200% increased Spell Damage if you've dealt a Critical Strike in the past 8 s c["200% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=200}},nil} c["200% increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=200}},nil} c["200% increased bonuses gained from Equipped Quiver"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromQuiver",type="INC",value=200}},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["200% of Life Leech applies to enemies as Chaos Damage 15% increased Movement Speed during any Flask Effect"]={{[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["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["200% of Life Leech applies to Enemies as Chaos Damage 15% increased Movement Speed during any Flask Effect"]={{[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["205% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=205}},nil} c["205% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=205}},nil} c["207% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=207}},nil} c["207% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=207}},nil} c["207% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=207}},nil} c["207% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=207}},nil} +c["21 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlock",type="BASE",value=21}},nil} c["21% chance to gain Phasing for 4 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil} c["21% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=21}},nil} c["21% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=21}},nil} @@ -4253,10 +4202,8 @@ c["23% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name=" c["23% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=23}},nil} c["23% chance to Impale Enemies on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ImpaleChance",type="BASE",value=23}},nil} c["23% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=23}},nil} -c["23% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=23}},nil} c["23% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=5.75}},nil} c["23% chance to inflict Withered for 2 seconds on Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}},nil} -c["23% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=23}},nil} c["23% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=23}},nil} c["23% increased Attack Speed if you haven't gained a Frenzy Charge Recently"]={{[1]={[1]={neg=true,type="Condition",var="GainedFrenzyChargeRecently"},flags=1,keywordFlags=0,name="Speed",type="INC",value=23}},nil} c["23% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=23}},nil} @@ -4265,6 +4212,7 @@ c["23% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="Cr 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["23% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=23}},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["23% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=23}},nil} c["23% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=23}},nil} c["23% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=23}},nil} c["23% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=23}},nil} @@ -4288,7 +4236,6 @@ c["24 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlo c["24 to 39 Cold Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=24},[2]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=39}},nil} c["24% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=24}},nil} c["24% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=24}},nil} -c["24% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=24}},nil} c["24% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=24}},nil} c["24% increased Critical Strike Chance for Attacks"]={{[1]={flags=1,keywordFlags=0,name="CritChance",type="INC",value=24}},nil} c["24% increased Critical Strike Chance with Traps"]={{[1]={flags=0,keywordFlags=4096,name="CritChance",type="INC",value=24}},nil} @@ -4307,7 +4254,7 @@ c["24% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="Lightnin c["24% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=24}},nil} c["24% increased Minion Duration"]={{[1]={[1]={skillType=88,type="SkillType"},[2]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="Duration",type="INC",value=24}},nil} c["24% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=24}},nil} -c["24% increased Reservation Efficiency while affected by a Unique Abyss Jewel"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="UniqueAbyssJewels"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=24}},nil} +c["24% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="UniqueAbyssJewels"},flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=24}},nil} c["24% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=24}},nil} c["24% increased Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=24}},nil} c["24% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=24}},nil} @@ -4346,7 +4293,6 @@ c["25% chance to Blind Enemies on Hit with Melee Weapons 35% increased Effect of c["25% chance to Blind Enemies on hit"]={{}," to Blind Enemies "} c["25% chance to Blind Enemies on hit 139% increased Physical Damage"]={{[1]={flags=4,keywordFlags=0,name="PhysicalDamage",type="BASE",value=25}}," to Blind Enemies 139% increased "} c["25% chance to Blind with Hits against Bleeding Enemies"]={{}," to Blind "} -c["25% chance to Curse Enemies with Vulnerability on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="Vulnerability",triggered=true}}},nil} c["25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="Enfeeble",triggered=true}}},nil} c["25% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=25}},nil} c["25% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=25}},nil} @@ -4368,9 +4314,8 @@ c["25% chance to Scorch Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyScorc c["25% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=25}},nil} c["25% chance to Shock during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=25}},nil} c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit"]={{}," to Steal Power, Frenzy, and Endurance Charges "} -c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit 0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges"]={{[1]={[1]={threshold=5,type="MultiplierThreshold",var="TotalCharges"},flags=4,keywordFlags=0,name="Damage",type="BASE",value=25}}," to Steal Power, Frenzy, and Endurance Charges 0.5% of Leeched as Life "} +c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit Steal Power, Frenzy, and Endurance Charges on Hit"]={{}," to Steal Power, Frenzy, and Endurance Charges Steal Power, Frenzy, and Endurance Charges on Hit "} c["25% chance to Steal Power, Frenzy, and Endurance Charges on Hit with Claws"]={{}," to Steal Power, Frenzy, and Endurance Charges with Claws "} -c["25% chance to Suppress Spell Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=25}},nil} c["25% chance to Trigger Level 10 Summon Raging Spirit on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="SummonRagingSpirit",triggerChance=25,triggered=true}}},nil} 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",triggerChance=25,triggered=true}}},nil} c["25% chance to Trigger Level 20 Summon Elemental Relic when you or a nearby Ally Kill an Enemy, or Hit a Rare or Unique Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonElementalRelic",triggerChance=25,triggered=true}}},nil} @@ -4418,14 +4363,13 @@ c["25% chance to inflict Corrosion on Hit with Attacks"]={{[1]={flags=0,keywordF c["25% chance to inflict Fire Exposure on Hit"]={{[1]={flags=0,keywordFlags=0,name="FireExposureChance",type="BASE",value=25}},nil} c["25% chance to inflict Withered for 2 seconds on Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}},nil} c["25% chance to lose a Frenzy Charge when you use a Travel Skill"]={{}," to lose aCharge when you use a Travel Skill "} -c["25% chance to lose a Frenzy Charge when you use a Travel Skill 10% increased Cooldown Recovery of Travel Skills per Frenzy Charge"]={{[1]={[1]={skillType=90,type="SkillType"},[2]={type="Multiplier",var="FrenzyCharge"},[3]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="BASE",value=25}}," to lose aCharge when you use a Travel Skill 10% increased "} c["25% chance to lose a Frenzy Charge when you use a Travel Skill 25% chance to lose a Power Charge when you gain Elusive"]={{}," to lose aCharge when you use a Travel Skill 25% chance to lose a Power Charge when you "} +c["25% chance to lose a Frenzy Charge when you use a Travel Skill 25% chance to lose an Endurance Charge when you gain Fortification"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="MinimumFortification",type="BASE",value=25}}," to lose aCharge when you use a Travel Skill 25% chance to lose an Endurance Charge when you gain "} c["25% chance to lose a Power Charge when you gain Elusive"]={{}," to lose a Power Charge when you "} -c["25% chance to lose a Power Charge when you gain Elusive Your Maximum Frenzy Charges is equal to your Maximum Power Charges"]={{[1]={[1]={type="Condition",varList={[1]="CanBeElusive",[2]="Elusive"}},[2]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=25}}," to lose a Power Charge when you Your MaximumCharges is equal to your "} c["25% chance to lose an Endurance Charge when you gain Fortification"]={{[1]={flags=0,keywordFlags=0,name="MinimumFortification",type="BASE",value=25}}," to lose an Endurance Charge when you gain "} c["25% chance to open nearby Chests when you Cast a Spell"]={{}," to open nearby Chests when you Cast a "} c["25% chance to refresh Ignite Duration on Melee Weapon Hit"]={{[1]={flags=67108864,keywordFlags=0,name="EnemyIgniteDuration",type="BASE",value=25}}," to refresh on Hit "} -c["25% chance to refresh Ignite Duration on Melee Weapon Hit Cover Full Life Enemies in Ash for 10 seconds on Melee Weapon hit"]={{[1]={flags=67108864,keywordFlags=0,name="EnemyIgniteDuration",type="BASE",value=25}}," to refresh on Hit Cover Full Life Enemies in Ash on Melee Weapon hit "} +c["25% chance to refresh Ignite Duration on Melee Weapon Hit Cover Full Life Enemies in Ash for 10 seconds on Melee Weapon Hit"]={{[1]={flags=67108864,keywordFlags=0,name="EnemyIgniteDuration",type="BASE",value=25}}," to refresh on Hit Cover Full Life Enemies in Ash on Melee Weapon Hit "} c["25% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable"]={{}," when you use a Retaliation Skill for a different Retaliation Skill to become Usable "} c["25% chance when you use a Retaliation Skill for a different Retaliation Skill to become Usable Retaliation Skills become Usable for 30% longer"]={{}," when you use a Retaliation Skill for a different Retaliation Skill to become Usable Retaliation Skills become Usable for 30% longer "} c["25% increased Arctic Armour Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Arctic Armour",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=25}},nil} @@ -4502,7 +4446,6 @@ c["25% increased Global Physical Damage with Weapons per Red Socket"]={{[1]={[1] c["25% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=25}},nil} c["25% increased Knockback Distance"]={{[1]={flags=0,keywordFlags=0,name="EnemyKnockbackDistance",type="INC",value=25}},nil} c["25% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=25}},nil} -c["25% increased Life Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=25}},nil} c["25% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=25}},nil} c["25% increased Life Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="LifeReservationEfficiency",type="INC",value=25}},nil} c["25% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=25}},nil} @@ -4527,7 +4470,7 @@ c["25% increased Poison Duration if you have at least 150 Intelligence"]={{[1]={ c["25% increased Prefix Modifier magnitudes"]={{}," Prefix Modifier magnitudes "} c["25% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=25}},nil} c["25% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=25}},nil} -c["25% increased Quantity of Items Dropped by Slain Frozen enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil} +c["25% increased Quantity of Items Dropped by Slain Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil} c["25% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil} c["25% increased Quantity of Items found during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=25}},nil} c["25% increased Raised Zombie Size"]={{}," Size "} @@ -4570,7 +4513,6 @@ c["25% less Damage over Time taken during Effect of any Life Flask"]={{[1]={[1]= c["25% less Damage taken from other Enemies near your Marked Enemy"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-25}}," from other Enemies near your Marked Enemy "} c["25% less Damage taken from other Enemies near your Marked Enemy Your Mark Transfers to another Enemy when Marked Enemy dies"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-25}}," from other Enemies near your Marked Enemy Your Mark Transfers to another Enemy when Marked Enemy dies "} c["25% less Evasion Rating against Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="MeleeEvasion",type="MORE",value=-25}},nil} -c["25% less Physical and Chaos Damage Taken while Sane"]={{[1]={[1]={neg=true,type="Condition",var="Insane"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="MORE",value=-25},[2]={[1]={neg=true,type="Condition",var="Insane"},flags=0,keywordFlags=0,name="ChaosDamageTaken",type="MORE",value=-25}},nil} c["25% more Accuracy Rating while wielding a Sword"]={{[1]={[1]={type="Condition",var="UsingSword"},flags=0,keywordFlags=0,name="Accuracy",type="MORE",value=25}},nil} c["25% more Critical Strike chance while affected by Precision"]={{[1]={[1]={type="Condition",var="AffectedByPrecision"},flags=0,keywordFlags=0,name="CritChance",type="MORE",value=25}},nil} c["25% more Damage while there is at most one Rare or Unique Enemy nearby"]={{[1]={[1]={type="Condition",var="AtMostOneNearbyRareOrUniqueEnemy"},flags=0,keywordFlags=0,name="Damage",type="MORE",value=25}},nil} @@ -4578,6 +4520,7 @@ c["25% more Damage with Hits against Enemies that cannot have Life Leeched from c["25% more Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="MORE",value=25}},nil} c["25% more Melee Critical Strike Chance while Blinded"]={{[1]={[1]={type="Condition",var="Blinded"},[2]={neg=true,type="Condition",var="CannotBeBlinded"},flags=256,keywordFlags=0,name="CritChance",type="MORE",value=25}},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["25% more Physical and Chaos Damage Taken while Sane"]={{[1]={[1]={neg=true,type="Condition",var="Insane"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="MORE",value=25},[2]={[1]={neg=true,type="Condition",var="Insane"},flags=0,keywordFlags=0,name="ChaosDamageTaken",type="MORE",value=25}},nil} c["25% more Spell Damage if you've been Stunned while Casting Recently"]={{[1]={[1]={type="Condition",var="StunnedWhileCastingRecently"},flags=2,keywordFlags=0,name="Damage",type="MORE",value=25}},nil} c["25% of Damage taken Recouped as Life if Leech was removed by Filling Unreserved Life Recently"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=25}}," if Leech was removed by Filling Unreserved Life Recently "} c["25% of Damage taken Recouped as Life, Mana and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="EnergyShieldRecoup",type="BASE",value=25},[3]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=25}},nil} @@ -4591,24 +4534,25 @@ c["25% of Physical Damage Converted to Lightning Damage"]={{[1]={flags=0,keyword c["25% of Physical Damage from Hits taken as Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsChaos",type="BASE",value=25}},nil} c["25% of Wand Physical Damage converted to Lightning Damage"]={{[1]={flags=8388612,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=25}},nil} c["25% reduced Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=-25}},nil} -c["25% reduced Bleed duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=-25}},nil} +c["25% reduced Bleeding Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyBleedDuration",type="INC",value=-25}},nil} c["25% reduced Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=-25}},nil} c["25% reduced Chaos Damage taken over time"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTakenOverTime",type="INC",value=-25}},nil} c["25% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}},nil} c["25% reduced Effect of Chill and Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-25},[2]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-25}},nil} -c["25% reduced Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=-25}},nil} c["25% reduced Elemental Ailment Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=-25}},nil} c["25% reduced Elemental Ailment Duration on you while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=-25}},nil} c["25% reduced Enemy Stun Threshold"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil} c["25% reduced Enemy Stun Threshold during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-25}},nil} c["25% reduced Enemy Stun Threshold with this Weapon"]={{}," Enemy Stun Thresh "} +c["25% reduced Enemy Stun Threshold with this Weapon 60% chance to Poison on Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="PoisonChance",type="INC",value=-25}}," Enemy Stun Thresh 60% chance "} c["25% reduced Enemy Stun Threshold with this Weapon Cannot Knock Enemies Back"]={{}," Enemy Stun Thresh Cannot Knock Enemies Back "} c["25% reduced Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-25}},nil} c["25% reduced Golem Size"]={{}," Size "} -c["25% reduced Golem Size Golems Deal 45% less Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}}}}," Size Golems Deal 45% less "} +c["25% reduced Golem Size Golems Deal 35% less Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=-25}}}}," Size Golems Deal 35% less "} c["25% reduced Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=-25}},nil} c["25% reduced Impale Duration"]={{[1]={flags=0,keywordFlags=0,name="ImpaleDuration",type="INC",value=-25}},nil} c["25% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-25}},nil} +c["25% reduced Mana Burn rate"]={{[1]={flags=0,keywordFlags=0,name="TinctureManaBurnRate",type="INC",value=-25}},nil} c["25% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-25}},nil} c["25% reduced Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=-25}},nil} c["25% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-25}},nil} @@ -4628,7 +4572,6 @@ c["250% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion", c["250% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=250}},nil} c["250% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=250}},nil} c["250% increased bonuses gained from Equipped Quiver"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromQuiver",type="INC",value=250}},nil} -c["26% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=26}},nil} c["26% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=26}},nil} c["26% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=26}},nil} c["26% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=26}},nil} @@ -4674,11 +4617,10 @@ c["280% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name c["285% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=285}},nil} c["29% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=29}},nil} c["3% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=3}},nil} -c["3% additional chance for Slain monsters to drop Scrolls of Wisdom"]={{}," for Slain monsters to drop Scrolls of Wisdom "} c["3% chance for Hits to deal 300% of Physical Damage as Extra Damage of a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsRandom",type="BASE",value=9}},nil} +c["3% chance for Slain monsters to drop an additional Scroll of Wisdom"]={{}," for Slain monsters to drop an additional Scroll of Wisdom "} c["3% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=3}},nil} c["3% chance to Recover all Life when you Kill an Enemy"]={{[1]={[1]={percent=3,stat="Life",type="PercentStat"},[2]={type="Condition",var="AverageResourceGain"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1},[2]={[1]={percent=100,stat="Life",type="PercentStat"},[2]={type="Condition",var="MaxResourceGain"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil} -c["3% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=3}},nil} c["3% chance to deal Triple Damage"]={{[1]={flags=0,keywordFlags=0,name="TripleDamageChance",type="BASE",value=3}},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["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} @@ -4697,9 +4639,6 @@ c["3% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="I 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["3% increased Character Size"]={{}," Character Size "} c["3% increased Character Size 5% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=3}}," Character Size 5% increased "} -c["3% increased Character Size 6% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=3}}," Character Size 6% increased "} -c["3% increased Character Size 6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=3}}," Character Size 6% increased "} -c["3% increased Character Size 6% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=3}}," Character Size 6% increased "} 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["3% increased Damage per Endurance, Frenzy or Power Charge"]={{[1]={[1]={stat="TotalCharges",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=3}},nil} c["3% 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=3}},nil} @@ -4708,7 +4647,7 @@ c["3% increased Defences from Equipped Shield per 10 Devotion"]={{[1]={[1]={slot c["3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=3},[2]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=3},[3]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=3},[4]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=3},[5]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=3},[6]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=3}},nil} c["3% increased Experience gain"]={{}," Experience gain "} c["3% increased Experience gain 2% increased Experience gain"]={{}," Experience gain 2% increased Experience gain "} -c["3% increased Experience gain 60% increased Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=3}}," Experience gain 60% increased "} +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["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["3% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=3}},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} @@ -4725,14 +4664,13 @@ c["3% increased Poison Duration per Power Charge"]={{[1]={[1]={type="Multiplier" c["3% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=3}},nil} c["3% increased Rarity of Items found per Mana Burn, up to a maximum of 100%"]={{[1]={[1]={limit=100,limitTotal=true,type="Multiplier",var="ManaBurnStacks"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=3}},nil} c["3% increased effect of Non-Curse Auras from your Skills"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil} -c["3% increased effect of Non-Curse Auras you Cast"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=3}},nil} c["3% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=3}},nil} c["3% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=3}},nil} c["3% increased maximum Life per Red Socket on equipped Staff"]={{[1]={[1]={type="Multiplier",var="RedSocketInWeapon 1"},[2]={type="Condition",var="UsingStaff"},flags=0,keywordFlags=0,name="Life",type="INC",value=3}},nil} c["3% more Armour and Evasion Rating per Fortification above 20"]={{[1]={[1]={stat="FortificationStacksOver20",type="PerStat"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="MORE",value=3}},nil} c["3% more Spell Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=2,keywordFlags=0,name="Damage",type="MORE",value=3}},nil} c["3% of Armour applies to Fire, Cold and Lightning Damage taken from Hits"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=3},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=3},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=3}},nil} -c["3% of Attack Damage leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=3}},nil} +c["3% of Attack Damage Leeched as Life against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=1,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=3}},nil} c["3% of Damage from Hits is taken from your nearest Totem's Life before you"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="takenFromTotemsBeforeYou",type="BASE",value=3}},nil} c["3% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=3}},nil} c["3% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped"]={{[1]={[1]={threshold=2,type="MultiplierThreshold",var="ShaperItem"},flags=0,keywordFlags=0,name="ElementalDamageEnergyShieldLeech",type="BASE",value=3}},nil} @@ -4745,13 +4683,10 @@ c["3% reduced Attack and Cast Speed per Frenzy Charge"]={{[1]={[1]={type="Multip c["3% reduced Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="Cost",type="INC",value=-3}},nil} c["3% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-3}},nil} c["3% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=-3}},nil} -c["30% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=30}},nil} c["30% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=30}},nil} c["30% Chance to cause Bleeding Enemies to Flee on hit"]={{[1]={flags=4,keywordFlags=0,name="BleedChance",type="BASE",value=30}}," Enemies to Flee "} -c["30% Chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil} -c["30% Chance to gain Unholy Might on Block for 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}," on Block "} -c["30% Chance to gain Unholy Might on Block for 3 seconds Gain Unholy Might on Block for 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}," on Block Gain on Block "} c["30% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit"]={{}," for the Strongest Impale on target to last for 1 additional Hit "} +c["30% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit 50% less Impale Duration"]={{[1]={flags=260,keywordFlags=0,name="ImpaleDuration",type="BASE",value=30}}," for the Strongest Impale on target to last for 1 additional Hit 50% less "} c["30% chance to Avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=30}},nil} c["30% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=30}},nil} c["30% chance to Avoid Elemental Ailments while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=30}},nil} @@ -4766,7 +4701,6 @@ c["30% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="Avoid c["30% chance to Avoid being Stunned while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=30}},nil} c["30% chance to Blind Enemies on Critical Strike"]={{}," to Blind Enemies "} c["30% chance to Blind Enemies on Critical Strike 50% chance to cause Bleeding on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}}," to Blind Enemies 50% chance "} -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,skillId="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil} c["30% chance to Curse non-Cursed Enemies with a random Hex on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,triggered=true}}},nil} c["30% chance to Freeze Enemies which are Chilled"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=30}},nil} c["30% chance to Freeze during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=30}},nil} @@ -4776,24 +4710,27 @@ c["30% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance" c["30% chance to Ignite during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=30}},nil} c["30% chance to Ignore Stuns while Casting"]={{[1]={flags=0,keywordFlags=0,name="AvoidInterruptStun",type="BASE",value=30}},nil} c["30% chance to Impale Enemies on Hit with Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ImpaleChance",type="BASE",value=30}},nil} -c["30% chance to Poison on Melee Hit"]={{[1]={flags=260,keywordFlags=0,name="PoisonChance",type="BASE",value=30}},nil} c["30% chance to Sap Enemies in Chilling Areas"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="InChillingArea"},flags=0,keywordFlags=0,name="EnemySapChance",type="BASE",value=30}},nil} c["30% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=30}},nil} c["30% chance to Shock during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=30}},nil} -c["30% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=30}},nil} c["30% chance to Taunt on Hit"]={{}," to Taunt "} c["30% chance to Taunt on Hit Recoup 12% of Damage Taken by your Totems as Life"]={{[1]={flags=4,keywordFlags=0,name="DamageTaken",type="BASE",value=30}}," to Taunt Recoup 12% of by your Totems as Life "} +c["30% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an"]={{[1]={flags=2,keywordFlags=0,name="Mana",type="BASE",value=30}}," to Trigger Socketed s when you Spend at least 100 on an "} c["30% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown"]={{[1]={flags=0,keywordFlags=0,name="KitavaTriggerChance",source="Kitava's Thirst",type="BASE",value=30},[2]={flags=0,keywordFlags=0,name="KitavaRequiredManaCost",source="Kitava's Thirst",type="BASE",value=100},[3]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportCastOnManaSpent"}}},nil} +c["30% chance to Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown"]={{}," to Trigger a Socketed Lightning on Hit, with a 0.25 second Cooldown "} +c["30% chance to Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown Socketed Lightning Spells have no Cost if Triggered"]={{}," to Trigger a Socketed Lightning on Hit, with a 0.25 second Cooldown Socketed Lightning Spells have no Cost if Triggered "} c["30% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=30}},nil} c["30% 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["30% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds 12% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="CooldownRecovery",type="BASE",value=30}}," to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds 12% increased "} c["30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy"]={{[1]={[1]={type="Condition",var="TriggeredTrapsRecently"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil} +c["30% chance to gain Unholy Might on Block for 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}," on Block "} +c["30% chance to gain Unholy Might on Block for 3 seconds Gain Unholy Might on Block for 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}," on Block Gain on Block "} c["30% chance to gain a Frenzy Charge on Critical Strike at Close Range"]={nil,"a Frenzy Charge "} c["30% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating"]={nil,"a Frenzy Charge on Hitting an Enemy with no Evasion Rating "} c["30% chance to gain a Frenzy Charge on Kill"]={nil,"a Frenzy Charge "} -c["30% chance to gain a Frenzy Charge on Kill Gore Footprints"]={nil,"a Frenzy Charge Gore Footprints "} -c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons"]={nil,"a Frenzy Charge ing an Enemy affected by 5 or more Poisons "} -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"]={nil,"a Frenzy Charge ing an Enemy affected by 5 or more Poisons 15% chance to gain a Power Charge ing an Enemy affected by fewer than 5 Poisons "} +c["30% chance to gain a Frenzy Charge on Kill 3% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"]={nil,"a Frenzy Charge 3% increased Damage with Hits against Enemies on Low Life "} +c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons"]={nil,"a Frenzy Charge ing an Enemy affected by at least 5 Poisons "} +c["30% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons 15% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons"]={nil,"a Frenzy Charge ing an Enemy affected by at least 5 Poisons 15% chance to gain a Power Charge ing an Enemy affected by fewer than 5 Poisons "} c["30% chance to gain a Power Charge on Non-Critical Strike"]={nil,"a Power Charge on Non-Critical Strike "} c["30% chance to gain a Power Charge on Non-Critical Strike +1 to Maximum Power Charges"]={nil,"a Power Charge on Non-Critical Strike +1 to Maximum Power Charges "} c["30% chance to gain a Power Charge when you Stun"]={nil,"a Power Charge when you Stun "} @@ -4822,7 +4759,6 @@ c["30% chance when you pay a Skill's Cost to gain that much Mana"]={{[1]={flags= c["30% chance when you pay a Skill's Cost to gain that much Mana +35 to maximum Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=30}}," when you pay a Skill's Cost to gain that much +35 to maximum Energy Shield "} c["30% faster Restoration of Ward"]={{[1]={flags=0,keywordFlags=0,name="WardRechargeFaster",type="INC",value=30}},nil} c["30% faster Restoration of Ward per Enemy Hit taken Recently"]={{[1]={flags=0,keywordFlags=0,name="WardRechargeFaster",type="INC",value=30}}," per Enemy Hit taken Recently "} -c["30% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil} c["30% increased Accuracy Rating with Wands"]={{[1]={flags=8388612,keywordFlags=0,name="Accuracy",type="INC",value=30}},nil} c["30% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=30}},nil} c["30% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} @@ -4929,10 +4865,10 @@ c["30% increased Energy Shield from Equipped Shield"]={{[1]={[1]={slotName="Weap c["30% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil} c["30% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=30}},nil} c["30% increased Evasion Rating if you haven't been Hit Recently"]={{[1]={[1]={neg=true,type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil} +c["30% increased Evasion Rating while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil} c["30% increased Evasion Rating while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil} c["30% increased Evasion Rating while you have Unbroken Ward"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}}," while you have Unbroken Ward "} c["30% increased Evasion Rating while you have an active Tincture"]={{[1]={[1]={type="Condition",var="UsingTincture"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil} -c["30% increased Evasion while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=30}},nil} c["30% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=30}},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["30% increased Fire Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="FireDamage",type="INC",value=30}},nil} @@ -4981,11 +4917,10 @@ c["30% increased Physical Damage with Maces or Sceptres"]={{[1]={flags=1048580,k c["30% increased Physical Damage with Two Handed Melee Weapons"]={{[1]={flags=603979780,keywordFlags=0,name="PhysicalDamage",type="INC",value=30}},nil} c["30% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=30}},nil} c["30% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=30}},nil} -c["30% increased Quantity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=30}},nil} +c["30% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=30}},nil} c["30% increased Rarity of Fish Caught"]={{}," Rarity of Fish Caught "} -c["30% increased Rarity of Items Dropped by Slain Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil} +c["30% increased Rarity of Items Dropped by Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil} c["30% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil} -c["30% increased Rarity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil} c["30% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil} c["30% increased Rarity of Items found during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=30}},nil} c["30% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil} @@ -4999,8 +4934,6 @@ c["30% increased Totem Life"]={{[1]={flags=0,keywordFlags=0,name="TotemLife",typ c["30% increased Totem Placement speed"]={{[1]={flags=0,keywordFlags=0,name="TotemPlacementSpeed",type="INC",value=30}},nil} c["30% increased Trap Damage"]={{[1]={flags=0,keywordFlags=4096,name="Damage",type="INC",value=30}},nil} c["30% increased Trap Trigger Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="TrapTriggerAreaOfEffect",type="INC",value=30}},nil} -c["30% increased Trap Trigger Radius"]={{[1]={flags=0,keywordFlags=4096,name="AreaOfEffect",type="INC",value=30}}," Trigger "} -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["30% increased Warcry Buff Effect"]={{[1]={flags=0,keywordFlags=4,name="BuffEffect",type="INC",value=30}},nil} c["30% increased Warcry Speed"]={{[1]={flags=0,keywordFlags=4,name="WarcrySpeed",type="INC",value=30}},nil} c["30% increased Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="INC",value=30}},nil} @@ -5021,9 +4954,9 @@ c["30% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",v 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["30% of Chaos Damage taken does not bypass Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ChaosEnergyShieldBypass",type="BASE",value=-30}},nil} c["30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire"]={{[1]={[1]={type="Condition",var="AffectedByPurityofFire"},flags=0,keywordFlags=0,name="ColdDamageTakenAsFire",type="BASE",value=30},[2]={[1]={type="Condition",var="AffectedByPurityofFire"},flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=30}},nil} -c["30% of Damage Taken from Stunning Hits is Recovered as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=30}}," from Stunning Hits is Recovered as Life "} -c["30% of Damage you Reflect to Enemies when Hit is gained as Life"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}," you Reflect to Enemies when Hit is gained as Life "} -c["30% of Damage you Reflect to Enemies when Hit is gained as Life 100% of Damage you Reflect to Enemies when Hit is leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=30}}," you Reflect to Enemies when Hit is gained as Life 100% of Damage you Reflect to Enemies when Hit "} +c["30% of Damage taken from Stunning Hits is Recovered as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=30}}," from Stunning Hits is Recovered as Life "} +c["30% of Damage you Reflect to Enemies when Hit is leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=30}}," you Reflect to Enemies when Hit "} +c["30% of Damage you Reflect to Enemies when Hit is leeched as Life 100% of Damage you Reflect to Enemies when Hit is leeched as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageLifeLeech",type="BASE",value=30}}," you Reflect to Enemies when Hit 100% of Damage you Reflect to Enemies when Hit is leeched as Life "} c["30% of Elemental Damage from Hits taken as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageFromHitsTakenAsPhysical",type="BASE",value=30}},nil} c["30% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=30}},nil} c["30% of Fire Damage from Hits taken as Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageFromHitsTakenAsCold",type="BASE",value=30}},nil} @@ -5046,6 +4979,7 @@ c["30% reduced Bleed Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfB c["30% reduced Chance to Block Attack and Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="SpellBlockChance",type="INC",value=-30}},nil} c["30% reduced Cooldown Recovery Rate for throwing Traps"]={{[1]={flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=-30}},nil} c["30% reduced Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=-30}},nil} +c["30% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-30}},nil} c["30% reduced Duration of Ailments on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=-30}},nil} c["30% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-30}},nil} c["30% reduced Effect of Shock on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-30}},nil} @@ -5057,12 +4991,13 @@ c["30% reduced Flask Charges gained during any Flask Effect"]={{[1]={[1]={type=" c["30% reduced Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=-30}},nil} c["30% reduced Freeze Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfFreezeDuration",type="INC",value=-30}},nil} c["30% reduced Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=-30}},nil} +c["30% reduced Mana Cost of Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-30}},nil} c["30% reduced Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=-30}},nil} +c["30% reduced Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=-30}},nil} c["30% reduced Recovery rate of Life and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=-30},[2]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=-30}},nil} c["30% reduced Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=-30}},nil} c["30% reduced Spell Damage taken from Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="SpellDamageTaken",type="INC",value=-30}},nil} c["30% reduced Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=-30}},nil} -c["30% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-30}},nil} c["30% reduced Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=-30}},nil} c["30% reduced maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=-30}},nil} c["30% slower start of Energy Shield Recharge during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=-30}},nil} @@ -5091,8 +5026,8 @@ c["32% increased Movement Speed while affected by a Magic Abyss Jewel"]={{[1]={[ c["320% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=320}},nil} c["320% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=320}},nil} c["320% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=320}},nil} -c["325% Increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=325}},nil} c["325% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=325}},nil} +c["325% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=325}},nil} c["33% chance to Blind nearby Enemies when gaining Her Blessing"]={{}," to Blind nearby Enemies when gaining Her Blessing "} c["33% chance to Blind nearby Enemies when gaining Her Blessing 100% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing"]={{[1]={flags=0,keywordFlags=0,name="AvoidIgnite",type="BASE",value=33}}," to Blind nearby Enemies when gaining Her Blessing 100% chance , Chilled or Frozen with Her Blessing "} c["33% chance to gain a Frenzy Charge on Kill"]={nil,"a Frenzy Charge "} @@ -5102,7 +5037,7 @@ c["33% increased Attack Speed while Ignited"]={{[1]={[1]={type="Condition",var=" c["33% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=33}},nil} c["33% increased Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,keywordFlags=0,name="Speed",type="INC",value=33}},nil} c["33% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=33}},nil} -c["33% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=33}},nil} +c["33% increased Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=33}},nil} c["33% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=33}},nil} c["33% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=33}},nil} c["33% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=33}},nil} @@ -5112,21 +5047,19 @@ c["33% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",ty c["33% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=33}},nil} c["33% of Chaos Damage taken does not bypass Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ChaosEnergyShieldBypass",type="BASE",value=-33}},nil} c["33% of Non-Chaos Damage taken bypasses Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="PhysicalEnergyShieldBypass",type="BASE",value=33},[2]={flags=0,keywordFlags=0,name="LightningEnergyShieldBypass",type="BASE",value=33},[3]={flags=0,keywordFlags=0,name="ColdEnergyShieldBypass",type="BASE",value=33},[4]={flags=0,keywordFlags=0,name="FireEnergyShieldBypass",type="BASE",value=33}},nil} +c["33% reduced Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=-33}},nil} c["330% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=330}},nil} c["333% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=333}},nil} c["34% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=34}},nil} c["340% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=340}},nil} c["340% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=340}},nil} -c["35% Increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=35}},nil} c["35% chance for Energy Shield Recharge to start when you Block"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=35}}," for Recharge to start when you Block "} c["35% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=35}},nil} c["35% chance to Avoid being Stunned"]={{[1]={flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=35}},nil} c["35% chance to Ignore Stuns while Casting"]={{[1]={flags=0,keywordFlags=0,name="AvoidInterruptStun",type="BASE",value=35}},nil} c["35% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,keywordFlags=0,name="ShockBase",type="BASE",value=15}},nil} -c["35% chance to Suppress Spell Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=35}},nil} c["35% chance to avoid being Stunned for each Herald Buff affecting you"]={{[1]={[1]={type="Multiplier",var="Herald"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=35}},nil} c["35% chance to gain a Power Charge on Kill"]={nil,"a Power Charge "} -c["35% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=35}},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["35% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=35}},nil} c["35% increased Attack Speed with Swords"]={{[1]={flags=4194309,keywordFlags=0,name="Speed",type="INC",value=35}},nil} @@ -5143,7 +5076,6 @@ c["35% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage", c["35% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=35}},nil} c["35% increased Damage with Bleeding you inflict on Maimed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Maimed"},flags=0,keywordFlags=4194304,name="Damage",type="INC",value=35}},nil} 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["35% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=35}},nil} c["35% increased Effect of Blind from Melee Weapons"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="BlindEffect",type="INC",value=35}}}},nil} c["35% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=35}},nil} c["35% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=35}},nil} @@ -5151,6 +5083,7 @@ c["35% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="Elementa c["35% increased Elemental Damage with Hits and Ailments for each type of Elemental Ailment on Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[3]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[4]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[5]={[1]={actor="enemy",type="ActorCondition",var="Scorched"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[6]={[1]={actor="enemy",type="ActorCondition",var="Brittle"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35},[7]={[1]={actor="enemy",type="ActorCondition",var="Sapped"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=35}},nil} c["35% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=35}},nil} c["35% increased Fortification Duration"]={{[1]={flags=0,keywordFlags=0,name="FortifyDuration",type="INC",value=35}},nil} +c["35% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=35}},nil} c["35% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=35}},nil} c["35% increased Global maximum Energy Shield and reduced Lightning Resistance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=35},[2]={flags=0,keywordFlags=0,name="LightningResist",type="INC",value=-35}},nil} c["35% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=35}},nil} @@ -5182,21 +5115,20 @@ c["35% less Minimum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="Skill c["35% less Physical and Chaos Damage Taken while Sane"]={{[1]={[1]={neg=true,type="Condition",var="Insane"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="MORE",value=-35},[2]={[1]={neg=true,type="Condition",var="Insane"},flags=0,keywordFlags=0,name="ChaosDamageTaken",type="MORE",value=-35}},nil} c["35% more Maximum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MaxPhysicalDamage",type="MORE",value=35}},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["35% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-35}},nil} c["35% reduced Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=-35}},nil} c["35% reduced Mana Burn rate"]={{[1]={flags=0,keywordFlags=0,name="TinctureManaBurnRate",type="INC",value=-35}},nil} -c["35% reduced Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecoveryRate",type="INC",value=-35}},nil} c["35% reduced Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=-35}},nil} c["35% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-35}},nil} c["350 Physical Damage taken on Minion Death"]={{[1]={flags=0,keywordFlags=0,name="HeartboundLoopSelfDamage",type="LIST",value={baseDamage=350,damageType="physical"}}},nil} -c["350% Increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=350}},nil} c["350% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=350}},nil} c["350% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=350}},nil} c["350% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=350}},nil} -c["350% increased Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=350}},nil} c["350% increased Armour, Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="Defences",type="INC",value=350}},nil} c["350% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=350}},nil} c["350% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=350}},nil} c["350% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=350}},nil} +c["350% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=350}},nil} c["36% chance to deal Double Damage while Focused"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=36}},nil} 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["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} @@ -5210,6 +5142,7 @@ c["375% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name c["38% chance to Sap Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemySapChance",type="BASE",value=38}},nil} c["38% chance to Scorch Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyScorchChance",type="BASE",value=38}},nil} c["38% chance to inflict Brittle"]={{[1]={flags=0,keywordFlags=0,name="EnemyBrittleChance",type="BASE",value=38}},nil} +c["38% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=38}},nil} c["38% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=38}},nil} c["38% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=38}},nil} c["38% reduced Area of Effect of Hex Skills"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-38}},nil} @@ -5217,7 +5150,6 @@ c["380% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion", c["39% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=39}},nil} c["4 Warlord Items are Equipped"]={{}," Warlord Items are Equipped "} c["4 Warlord Items are Equipped +3% to maximum Fire Resistance if 4 Warlord Items are Equipped"]={{[1]={[1]={threshold=4,type="MultiplierThreshold",var="WarlordItem"},flags=0,keywordFlags=0,name="FireResistMax",type="BASE",value=4}}," Warlord Items are Equipped +3% to "} -c["4 additional Arrows"]={{[1]={flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=4}},nil} c["4 to 8 Added Fire Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="FireMin",type="BASE",value=4},[2]={flags=131076,keywordFlags=0,name="FireMax",type="BASE",value=8}},nil} c["4 to 8 added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower"]={{[1]={[1]={div=100,stat="LowestOfMaximumLifeAndMaximumMana",type="PerStat"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=4},[2]={[1]={div=100,stat="LowestOfMaximumLifeAndMaximumMana",type="PerStat"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=8}},nil} c["4% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4}},nil} @@ -5228,9 +5160,9 @@ c["4% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="E 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["4% chance to gain a Endurance Charge on Kill"]={nil,"a Endurance Charge "} c["4% chance to gain a Frenzy Charge on Kill"]={nil,"a Frenzy Charge "} -c["4% chance to gain a Frenzy Charge on Kill +1 to Minimum Power Charges"]={nil,"a Frenzy Charge +1 to Minimum Power Charges "} +c["4% chance to gain a Frenzy Charge on Kill 4% chance to gain a Power Charge on Kill"]={nil,"a Frenzy Charge 4% chance to gain a Power Charge "} c["4% chance to gain a Power Charge on Kill"]={nil,"a Power Charge "} -c["4% chance to gain a Power Charge on Kill +1 to Minimum Endurance Charges"]={nil,"a Power Charge +1 to Minimum Endurance Charges "} +c["4% chance to gain a Power Charge on Kill Regenerate 15 Life per second for each Uncorrupted Item Equipped"]={nil,"a Power Charge Regenerate 15 Life per second "} c["4% increased Area Damage per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=512,keywordFlags=0,name="Damage",type="INC",value=4}},nil} c["4% increased Area of Effect per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=4}},nil} c["4% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=4}},nil} @@ -5254,7 +5186,7 @@ c["4% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="Curs c["4% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=4}},nil} c["4% increased Elemental Damage per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=4}},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}},nil} -c["4% increased Elemental Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=4}},nil} +c["4% increased Elemental Damage per Power charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=4}},nil} c["4% increased Energy Shield per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=4}},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["4% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=4}},nil} @@ -5278,37 +5210,31 @@ c["4% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="I c["4% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=4}},nil} c["4% less Damage taken per Gale Force"]={{[1]={[1]={type="Multiplier",var="GaleForce"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-4}},nil} c["4% more Attack Speed with Unarmed Melee Attacks"]={{[1]={flags=16777473,keywordFlags=0,name="Speed",type="MORE",value=4}},nil} -c["4% of Damage from hits is taken from your nearest Totem's Life before you"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="takenFromTotemsBeforeYou",type="BASE",value=4}},nil} +c["4% of Damage from Hits is taken from your nearest Totem's Life before you"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="takenFromTotemsBeforeYou",type="BASE",value=4}},nil} c["4% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=4}},nil} c["4% reduced Attack and Cast Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Speed",type="INC",value=-4}},nil} c["4% reduced Duration of Curses on you per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-4}}," of Curses on you "} -c["4% reduced Duration of Curses on you per 10 Devotion 1% increased Minion Attack and Cast Speed per 10 Devotion"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},[2]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-4}}}}," of Curses on you 1% increased Attack and Cast Speed "} +c["4% reduced Duration of Curses on you per 10 Devotion 4% reduced Elemental Ailment Duration on you per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},[2]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="Duration",type="INC",value=-4}}," of Curses on you 4% reduced Elemental Ailment Duration on you "} c["4% reduced Elemental Ailment Duration on you per 10 Devotion"]={{[1]={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=-4}},nil} c["4% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-4}},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["40 Life gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=40}},nil} c["40 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlock",type="BASE",value=40}},nil} -c["40% Chance to Block Attack Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=40}},nil} -c["40% Increased Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=40}},nil} c["40% chance for Elemental Ailments inflicted on you to"]={{}," for Elemental Ailments inflicted on you to "} c["40% chance for Elemental Ailments inflicted on you to be inflicted on a nearby Minion instead"]={{}," for Elemental Ailments inflicted on you to be inflicted on a nearby instead "} c["40% chance for Elemental Ailments inflicted on you to be inflicted on a nearby Minion instead Limited to 1 Runegraft of Loyalty"]={{}," for Elemental Ailments inflicted on you to be inflicted on a nearby instead Limited to 1 Runegraft of Loyalty "} c["40% chance for Elemental Resistances to count as being 90% against Enemy Hits"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=40}}," for to count as being 90% against Enemy Hits "} c["40% chance to Chill Attackers for 4 seconds on Block"]={{}," to Chill Attackers on Block "} 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 on Block 40% chance Attackers on Block "} -c["40% chance to Poison on Melee Hit"]={{[1]={flags=260,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil} c["40% chance to Shock Attackers for 4 seconds on Block"]={{[1]={flags=0,keywordFlags=0,name="ShockBase",type="BASE",value=15}},nil} -c["40% chance to Suppress Spell Damage while your Off Hand is empty"]={{[1]={[1]={type="Condition",var="OffHandIsEmpty"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=40}},nil} -c["40% chance to cause Bleeding on Melee Hit"]={{[1]={flags=260,keywordFlags=0,name="BleedChance",type="BASE",value=40}},nil} c["40% chance to deal Double Damage while Focused"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=40}},nil} -c["40% chance to gain a Frenzy Charge for each enemy you hit with a Critical Strike"]={nil,"a Frenzy Charge for each enemy you hit with a Critical Strike "} +c["40% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike"]={nil,"a Frenzy Charge for each Enemy you hit with a Critical Strike "} c["40% chance to inflict an additional Poison on the same Target when you inflict Poison"]={{[1]={flags=0,keywordFlags=0,name="AdditionalPoisonChance",type="BASE",value=40}},nil} +c["40% chance when you Kill a Scorched Enemy to Burn Each surrounding"]={{}," when you Kill a Scorched Enemy to Burn Each surrounding "} c["40% chance when you Kill a Scorched Enemy to Burn Each surrounding Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second"]={{[1]={flags=0,keywordFlags=0,name="Life",type="BASE",value=40}}," when you Kill a Scorched Enemy to Burn Each surrounding Enemy , dealing 8% of the Killed Enemy's as Fire Damage per second "} c["40% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=40}},nil} 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["40% increased Accuracy Rating"]={{[1]={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=40}},nil} c["40% increased Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=40}},nil} -c["40% increased Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}},nil} c["40% increased Area of Effect of Aura Skills"]={{[1]={[1]={skillType=43,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}},nil} c["40% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=40}},nil} c["40% increased Armour and Evasion Rating while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=40}},nil} @@ -5330,7 +5256,6 @@ c["40% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type=" c["40% increased Cast Speed while Ignited"]={{[1]={[1]={type="Condition",var="Ignited"},flags=16,keywordFlags=0,name="Speed",type="INC",value=40}},nil} c["40% increased Cast Speed with Minion Skills"]={{[1]={[1]={skillType=9,type="SkillType"},flags=16,keywordFlags=0,name="Speed",type="INC",value=40}},nil} c["40% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=40}},nil} -c["40% increased Chaos Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=40}},nil} c["40% increased Charge Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargeRecovery",type="INC",value=40}},nil} c["40% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=40}},nil} c["40% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=40}},nil} @@ -5340,12 +5265,10 @@ c["40% increased Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="Co c["40% increased Cooldown Recovery Rate of Travel Skills"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}},nil} c["40% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Critical Strike Chance against Taunted Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Taunted"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} -c["40% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Critical Strike Chance with Staves"]={{[1]={flags=2097156,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Critical Strike Chance with Two Handed Melee Weapons"]={{[1]={flags=603979780,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil} c["40% increased Damage Over Time during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=8,keywordFlags=0,name="Damage",type="INC",value=40}},nil} -c["40% increased Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil} 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["40% increased Damage over Time"]={{[1]={flags=8,keywordFlags=0,name="Damage",type="INC",value=40}},nil} c["40% increased Damage while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}},nil} @@ -5354,6 +5277,7 @@ c["40% increased Damage with Hits against Frozen Enemies"]={{[1]={[1]={actor="en c["40% increased Damage with Hits against Rare and Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=262144,name="Damage",type="INC",value=40}},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["40% 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=40}},nil} +c["40% increased Damage with Hits and Ailments against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=40}},nil} c["40% increased Damage with Hits and Ailments against Marked Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Marked"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=40}},nil} 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["40% increased Damage with Ignite inflicted on Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=8388608,name="Damage",type="INC",value=40}},nil} @@ -5364,6 +5288,8 @@ c["40% increased Duration of Ailments you inflict while Focused"]={{[1]={[1]={ty c["40% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=40}},nil} c["40% increased Effect of Chilled Ground"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=40}}," ed Ground "} c["40% increased Effect of Chilled Ground 50% increased Effect of Chilled Ground"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=40}}," ed Ground 50% increased Effect of Chilled Ground "} +c["40% increased Effect of Consecrated Ground you create"]={{[1]={flags=0,keywordFlags=0,name="ConsecratedGroundEffect",type="INC",value=40}},nil} +c["40% increased Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=40}},nil} c["40% increased Effect of Impales inflicted with Spells"]={{[1]={flags=0,keywordFlags=131072,name="ImpaleEffect",type="INC",value=40}},nil} c["40% increased Effect of Lightning Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=40},[2]={flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=40}},nil} c["40% increased Effect of Non-Curse Auras from your Skills on Enemies"]={{[1]={[1]={skillType=43,type="SkillType"},[2]={neg=true,skillType=79,type="SkillType"},flags=0,keywordFlags=0,name="DebuffEffect",type="INC",value=40},[2]={[1]={skillName="Death Aura",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=40}},nil} @@ -5376,15 +5302,16 @@ c["40% increased Effect of Shocks you inflict during Effect"]={{[1]={[1]={type=" c["40% increased Effect of non-Damaging Ailments you inflict with Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=40},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=40},[3]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=40},[4]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=40},[5]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=40},[6]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=40}},nil} c["40% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=40}},nil} c["40% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=40}},nil} +c["40% increased Elemental Damage with Hits and Ailments for"]={{[1]={flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=40}}," for "} c["40% increased Elemental Damage with Hits and Ailments for each type of Elemental Ailment on Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=40},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=40},[3]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=40},[4]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=40},[5]={[1]={actor="enemy",type="ActorCondition",var="Scorched"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=40},[6]={[1]={actor="enemy",type="ActorCondition",var="Brittle"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=40},[7]={[1]={actor="enemy",type="ActorCondition",var="Sapped"},flags=0,keywordFlags=786432,name="ElementalDamage",type="INC",value=40}},nil} c["40% increased Elusive Effect"]={{[1]={flags=0,keywordFlags=0,name="ElusiveEffect",type="INC",value=40}},nil} c["40% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=40}},nil} c["40% increased Energy Shield Recharge Rate if Equipped Amulet has an Explicit Evasion Modifier"]={{[1]={[1]={itemSlot="amulet",searchCond="explicit evasion",type="ItemCondition"},flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=40}},nil} -c["40% increased Energy Shield Recovery Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=40}},nil} +c["40% increased Energy Shield Recovery rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=40}},nil} c["40% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil} +c["40% increased Evasion Rating during Onslaught"]={{[1]={[1]={type="Condition",var="Onslaught"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil} c["40% increased Evasion Rating if you have been Hit Recently"]={{[1]={[1]={type="Condition",var="BeenHitRecently"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil} c["40% increased Evasion Rating while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=40}},nil} -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["40% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=40}},nil} c["40% 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=40}},nil} c["40% increased Fortification Duration"]={{[1]={flags=0,keywordFlags=0,name="FortifyDuration",type="INC",value=40}},nil} @@ -5398,7 +5325,7 @@ c["40% increased Global maximum Energy Shield and reduced Lightning Resistance"] c["40% increased Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="INC",value=40}},nil} c["40% increased Life Regeneration rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=40}},nil} c["40% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=40}},nil} -c["40% increased Lightning Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="LightningDamage",type="INC",value=40}},nil} +c["40% increased Main Hand Critical Strike Chance per"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}}," per "} c["40% increased Main Hand Critical Strike Chance per Murderous Eye Jewel affecting you, up to a maximum of 200%"]={{[1]={[1]={globalLimit=200,globalLimitKey="TecrodGazeMainHand",type="Multiplier",var="MurderousEyeJewel"},[2]={type="Condition",var="MainHandAttack"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=40}},nil} c["40% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=40}},nil} @@ -5407,7 +5334,6 @@ c["40% increased Mana Regeneration if you've used a Movement Skill Recently"]={{ c["40% increased Maximum total Energy Shield Recovery per second from Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="INC",value=40}},nil} c["40% increased Maximum total Life Recovery per second from Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=40}},nil} c["40% increased Maximum total Mana Recovery per second from Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxManaLeechRate",type="INC",value=40}},nil} -c["40% increased Maximum total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="INC",value=40}},nil} c["40% increased Melee Critical Strike Chance"]={{[1]={flags=256,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Melee Damage"]={{[1]={flags=256,keywordFlags=0,name="Damage",type="INC",value=40}},nil} c["40% increased Melee Damage with Hits at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=256,keywordFlags=262144,name="Damage",type="INC",value=40}},nil} @@ -5420,10 +5346,10 @@ c["40% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="Projecti c["40% increased Quantity of Fish Caught"]={{}," Quantity of Fish Caught "} c["40% increased Quantity of Fish Caught 20% increased Quantity of Fish Caught"]={{}," Quantity of Fish Caught 20% increased Quantity of Fish Caught "} c["40% increased Rarity of Items Dropped by Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=40}},nil} -c["40% increased Rarity of Items Found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=40}},nil} c["40% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=40}},nil} c["40% increased Rarity of Items found during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=40}},nil} c["40% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=40}},nil} +c["40% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=40}},nil} c["40% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=40}},nil} c["40% increased Strength Requirement"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=40}},nil} c["40% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=40}},nil} @@ -5443,13 +5369,10 @@ c["40% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keyw c["40% less Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="MORE",value=-40}},nil} c["40% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-40}},nil} c["40% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-40}},nil} -c["40% less Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="MORE",value=-40}},nil} c["40% less Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="MORE",value=-40}},nil} -c["40% less Impale Duration"]={{[1]={flags=0,keywordFlags=0,name="ImpaleDuration",type="MORE",value=-40}},nil} c["40% less Minimum Physical Attack Damage"]={{[1]={[1]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="MinPhysicalDamage",type="MORE",value=-40}},nil} c["40% less Physical and Chaos Damage Taken while Sane"]={{[1]={[1]={neg=true,type="Condition",var="Insane"},flags=0,keywordFlags=0,name="PhysicalDamageTaken",type="MORE",value=-40},[2]={[1]={neg=true,type="Condition",var="Insane"},flags=0,keywordFlags=0,name="ChaosDamageTaken",type="MORE",value=-40}},nil} c["40% less Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="MORE",value=-40}},nil} -c["40% less duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="MORE",value=-40}},nil} c["40% more Accuracy Rating against Unique Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="MORE",value=40}},nil} c["40% more Attack Damage if Accuracy Rating is higher than Maximum Life"]={{[1]={[1]={type="Condition",var="MainHandAccRatingHigherThanMaxLife"},[2]={type="Condition",var="MainHandAttack"},flags=1,keywordFlags=0,name="Damage",source="Damage",type="MORE",value=40},[2]={[1]={type="Condition",var="OffHandAccRatingHigherThanMaxLife"},[2]={type="Condition",var="OffHandAttack"},flags=1,keywordFlags=0,name="Damage",source="Damage",type="MORE",value=40}},nil} c["40% more Attack Speed with Melee Skills while you are Unencumbered"]={{[1]={[1]={skillType=24,type="SkillType"},[2]={type="Condition",var="Unencumbered"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=40}},nil} @@ -5477,10 +5400,10 @@ c["40% of Physical Damage Converted to Lightning Damage while affected by Wrath" c["40% of Physical Damage from Hits taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageFromHitsTakenAsLightning",type="BASE",value=40}},nil} c["40% of Physical Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="PhysicalLifeRecoup",type="BASE",value=40}},nil} c["40% of Physical Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageTakenAsFire",type="BASE",value=40}},nil} +c["40% reduced Area of Effect for Attacks"]={{[1]={flags=1,keywordFlags=0,name="AreaOfEffect",type="INC",value=-40}},nil} c["40% reduced Area of Effect of Hex Skills"]={{[1]={[1]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=-40}},nil} c["40% reduced Cost of Retaliation Skills"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="Cost",type="INC",value=-40}},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["40% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-40}},nil} c["40% reduced Effect of Curses on you during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingManaFlask"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-40}},nil} c["40% reduced Effect of Non-Damaging Ailments on you during Effect of any Life Flask"]={{[1]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfShockEffect",type="INC",value=-40},[2]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-40},[3]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfFreezeEffect",type="INC",value=-40},[4]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfScorchEffect",type="INC",value=-40},[5]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfBrittleEffect",type="INC",value=-40},[6]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="SelfSapEffect",type="INC",value=-40}},nil} c["40% reduced Enemy Stun Threshold with Melee Weapons"]={{[1]={flags=67108864,keywordFlags=0,name="EnemyStunThreshold",type="INC",value=-40}},nil} @@ -5489,18 +5412,17 @@ c["40% reduced Frenzy Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="Fren c["40% reduced Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=-40}},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["40% reduced Quantity of Fish Caught"]={{}," Quantity of Fish Caught "} -c["40% reduced Quantity of Fish Caught 60% increased Rarity of Fish Caught"]={{}," Quantity of Fish Caught 60% increased Rarity of Fish Caught "} c["40% reduced Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=-40}},nil} +c["40% reduced Stun and Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="StunRecovery",type="INC",value=-40}},nil} c["40% reduced Totem Damage"]={{[1]={flags=0,keywordFlags=16384,name="Damage",type="INC",value=-40}},nil} -c["40% reduced duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-40}},nil} c["40% slower Restoration of Ward"]={{[1]={flags=0,keywordFlags=0,name="WardRechargeFaster",type="INC",value=-40}},nil} 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["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["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["400 Lightning Damage taken per second per Power Charge if"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="LightningDegen",type="BASE",value=400}}," if "} +c["400 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=400}},nil} c["400% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=400}},nil} c["400% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=400}},nil} c["400% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=400}},nil} -c["400% increased Armour and Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=400}},nil} c["400% increased Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="StrRequirement",type="INC",value=400},[2]={flags=0,keywordFlags=0,name="DexRequirement",type="INC",value=400},[3]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=400}},nil} c["400% increased Endurance, Frenzy and Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=400},[2]={flags=0,keywordFlags=0,name="FrenzyChargesDuration",type="INC",value=400},[3]={flags=0,keywordFlags=0,name="EnduranceChargesDuration",type="INC",value=400}},nil} c["400% increased Energy Shield Recharge Rate during any Flask Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=400}},nil} @@ -5512,7 +5434,6 @@ c["42% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type c["420% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=420}},nil} c["420% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=420}},nil} c["425% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=425}},nil} -c["43% chance for Hits to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal"]={{[1]={[2]={type="Condition",var="SacrificialZeal"},flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=43}},nil} c["43% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=43}},nil} c["43% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=43}},nil} c["43% increased Chill Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillDuration",type="INC",value=43}},nil} @@ -5525,7 +5446,7 @@ c["45% chance that if you would gain Endurance Charges, you instead gain up to y c["45% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges"]={{}," that if you would gainCharges, you instead gain up to your maximum number of Frenzy Charges "} c["45% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges +1 to Maximum Power Charges"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="PowerChargesMax",type="BASE",value=45}}," that if you would gainCharges, you instead gain up to your maximum number of Frenzy Charges +1 to "} c["45% 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["45% chance to avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=45}},nil} +c["45% chance to Avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=45}},nil} c["45% increased Area Damage"]={{[1]={flags=512,keywordFlags=0,name="Damage",type="INC",value=45}},nil} c["45% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=45}},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} @@ -5534,9 +5455,9 @@ c["45% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChar c["45% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=45}},nil} c["45% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=45}},nil} c["45% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",type="INC",value=45}},nil} -c["45% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=45}},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["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["45% increased Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=45}},nil} c["45% increased Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=45}},nil} c["45% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=45}},nil} c["45% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=45}},nil} @@ -5554,7 +5475,6 @@ c["45% less Impale Duration"]={{[1]={flags=0,keywordFlags=0,name="ImpaleDuration c["45% of Chaos Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTakenAsFire",type="BASE",value=45}},nil} c["45% of Chaos Damage taken as Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTakenAsLightning",type="BASE",value=45}},nil} c["45% of Fire Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamageConvertToChaos",type="BASE",value=45}},nil} -c["45% reduced Effect of Chill on You"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-45}},nil} c["45% reduced Mana Cost of Raise Spectre"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-45}},nil} c["450% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=450}},nil} c["450% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=450}},nil} @@ -5571,20 +5491,16 @@ c["48% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFla c["48% increased Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="INC",value=48}},nil} c["49% increased Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="INC",value=49}},nil} c["5 Maximum Void Charges"]={{}," Maximum Void Charges "} +c["5 Maximum Void Charges Gain a Void Charge every 0.5 seconds"]={{}," Maximum Void Charges Gain a Void Charge every 0.5 seconds "} c["5 Maximum Void Charges Gain a Void Charge every second"]={{}," Maximum Void Charges Gain a Void Charge every second "} c["5 to 10 Added Fire Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="FireMin",type="BASE",value=5},[2]={flags=131076,keywordFlags=0,name="FireMax",type="BASE",value=10}},nil} -c["5% Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil} c["5% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},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["5% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil} -c["5% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=5}},nil} -c["5% Chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5}},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["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["5% additional Physical Damage Reduction while you have at least 150 Devotion"]={{[1]={[1]={stat="Devotion",threshold=150,type="StatThreshold"},flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=5}},nil} +c["5% chance to Avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=5}},nil} c["5% chance to Blind Enemies on Hit"]={{}," to Blind Enemies "} c["5% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies with Attacks "} -c["5% chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=5}},nil} c["5% chance to Cover Enemies in Ash on Hit while you are Burning"]={{}," to Cover Enemies in Ash while you are Burning "} c["5% chance to Defend with 200% of Armour for each"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="BASE",value=5}}," to Defend with 200% of for each "} c["5% chance to Defend with 200% of Armour for each time you've been Hit by an Enemy Recently, up to 30%"]={{[1]={[1]={type="Condition",var="ArmourMax"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Max Calc",type="MAX",value=100},[2]={[1]={type="Condition",var="ArmourAvg"},[2]={limit=6,type="Multiplier",var="BeenHitRecently"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Average Calc",type="MAX",value=5},[3]={[1]={neg=true,type="Condition",var="ArmourMax"},[2]={neg=true,type="Condition",var="ArmourAvg"},[3]={limit=6,type="Multiplier",var="BeenHitRecently"},flags=0,keywordFlags=0,name="ArmourDefense",source="Armour Mastery: Min Calc",type="MAX",value=0}},nil} @@ -5597,19 +5513,18 @@ c["5% chance to Impale Enemies on Hit with Attacks"]={{[1]={flags=0,keywordFlags c["5% chance to Poison on Hit"]={{[1]={flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=5}},nil} c["5% chance to Restore your Ward on Hit"]={{[1]={flags=4,keywordFlags=0,name="Ward",type="BASE",value=5}}," to Restore your "} c["5% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=5}},nil} -c["5% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=5}},nil} -c["5% chance to avoid Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="AvoidElementalAilments",type="BASE",value=5}},nil} c["5% chance to create Shocked Ground when Hit"]={{}," to create Shocked Ground when Hit "} +c["5% chance to create Shocked Ground when Hit 10% chance to Curse non-Cursed Enemies with a random Hex on Hit"]={{}," to create Shocked Ground when Hit 10% chance to Curse non-Cursed Enemies with a random Hex "} c["5% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=5}},nil} c["5% chance to deal Double Damage if you've dealt a Critical Strike with a Two Handed Melee Weapon Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=603979776,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=5}},nil} c["5% chance to deal Triple Damage while you have at least 400 Strength"]={{[1]={[1]={stat="Str",threshold=400,type="StatThreshold"},flags=0,keywordFlags=0,name="TripleDamageChance",type="BASE",value=5}},nil} c["5% chance to gain Chaotic Might for 10 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:ChaoticMight",type="FLAG",value=true}},nil} c["5% chance to gain Onslaught for 10 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} c["5% chance to gain a Frenzy Charge on Kill while Dual Wielding"]={nil,"a Frenzy Charge "} +c["5% chance to grant Chaotic Might to nearby Enemies on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:ChaoticMight",type="BASE",value=5}}," to grant to nearby Enemies "} +c["5% chance to grant Chaotic Might to nearby Enemies on Kill 5% chance to gain Onslaught for 10 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:ChaoticMight",type="BASE",value=5}}," to grant to nearby Enemies 5% chance to gain Onslaught on Kill "} c["5% chance to grant Onslaught to nearby Enemies on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="BASE",value=5}}," to grant to nearby Enemies "} -c["5% chance to grant Onslaught to nearby Enemies on Kill 5% chance to gain Chaotic Might for 10 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="BASE",value=5}}," to grant to nearby Enemies 5% chance to gain Chaotic Might on Kill "} -c["5% chance to grant Unholy Might to nearby Enemies on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="BASE",value=5},[2]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:CanWither",type="BASE",value=5}}," to grant to nearby Enemies "} -c["5% chance to grant Unholy Might to nearby Enemies on Kill 5% chance to grant Onslaught to nearby Enemies on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="BASE",value=5},[2]={[1]={type="Condition",var="KilledRecently"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:CanWither",type="BASE",value=5}}," to grant to nearby Enemies 5% chance to grant Onslaught to nearby Enemies "} +c["5% chance to grant Onslaught to nearby Enemies on Kill 5% chance to grant Chaotic Might to nearby Enemies on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="BASE",value=5}}," to grant to nearby Enemies 5% chance to grant Chaotic Might to nearby Enemies "} c["5% chance to grant a Frenzy Charge to nearby Allies on Hit"]={{}," to grant aCharge to nearby Allies "} c["5% chance to grant an Endurance Charge to nearby Allies on Hit"]={{}," to grant an Endurance Charge to nearby Allies "} c["5% chance to grant an Endurance Charge to nearby Allies on Hit 10% chance to grant a Frenzy Charge to nearby Allies on Kill"]={{}," to grant an Endurance Charge to nearby Allies 10% chance to grant aCharge to nearby Allies "} @@ -5639,7 +5554,6 @@ c["5% increased Cast Speed with Lightning Skills"]={{[1]={flags=16,keywordFlags= c["5% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=5}},nil} c["5% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=5}},nil} c["5% increased Cooldown Recovery Rate for throwing Traps per Mine Detonated Recently"]={{[1]={[1]={type="Multiplier",var="MineDetonatedRecently"},flags=0,keywordFlags=4096,name="CooldownRecovery",type="INC",value=5}},nil} -c["5% increased Critical Strike Chance for Spells per 100 Player Maximum Life"]={{[1]={[1]={actor="parent",div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=5}},nil} c["5% increased Critical Strike Chance per 25 Intelligence"]={{[1]={[1]={div=25,stat="Int",type="PerStat"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=5}},nil} c["5% increased Damage for each Herald affecting you"]={{[1]={[1]={type="Multiplier",var="Herald"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil} c["5% increased Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}},nil} @@ -5649,10 +5563,10 @@ c["5% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC", c["5% increased Effect of Herald Buffs on you"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=5}},nil} c["5% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=5}},nil} c["5% increased Elemental Damage per Grand Spectrum"]={{[1]={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5}},nil} -c["5% increased Elemental Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5}},nil} +c["5% increased Elemental Damage per Power charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=5}},nil} 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["5% increased Experience gain"]={{}," Experience gain "} -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["5% increased Experience gain +10% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="INC",value=5}}," Experience gain +10% to "} c["5% increased Experience gain 3% increased Experience gain"]={{}," Experience gain 3% increased Experience gain "} c["5% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",type="INC",value=5}},nil} c["5% increased Flask Charges gained"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=5}},nil} @@ -5685,6 +5599,7 @@ c["5% increased Rarity of Items found per Mana Burn, up to a maximum of 100%"]={ c["5% increased Recovery rate of Life and Energy Shield per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="LifeRecoveryRate",type="INC",value=5},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="EnergyShieldRecoveryRate",type="INC",value=5}},nil} c["5% increased Skeleton Movement Speed"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=5}}}},nil} c["5% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=5}},nil} +c["5% increased Spell Critical Strike Chance per 100 Player Maximum Life"]={{[1]={[1]={actor="parent",div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=5}},nil} c["5% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil} c["5% increased Spell Damage per 100 Player Maximum Life"]={{[1]={[1]={actor="parent",div=100,stat="Life",type="PerStat"},flags=2,keywordFlags=0,name="Damage",type="INC",value=5}},nil} c["5% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=5}},nil} @@ -5703,7 +5618,6 @@ c["5% more Damage per Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="P c["5% more chance to Evade Melee Attacks"]={{[1]={flags=0,keywordFlags=0,name="MeleeEvadeChance",type="MORE",value=5}},nil} c["5% of Damage from Hits is taken from Void Spawns' Life before you per Void Spawn"]={{[1]={[1]={stat="ActiveVoidSpawnLimit",type="PerStat"},flags=0,keywordFlags=0,name="takenFromVoidSpawnBeforeYou",type="BASE",value=5}},nil} c["5% of Damage from Hits is taken from your nearest Totem's Life before you"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="takenFromTotemsBeforeYou",type="BASE",value=5}},nil} -c["5% of Damage from hits is taken from your nearest Totem's Life before you"]={{[1]={[1]={type="Condition",var="HaveTotem"},flags=0,keywordFlags=0,name="takenFromTotemsBeforeYou",type="BASE",value=5}},nil} c["5% of Leech from Hits with this Weapon is Instant per Enemy Power"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={type="Multiplier",var="EnemyPower"},flags=4,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=5},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={type="Multiplier",var="EnemyPower"},flags=4,keywordFlags=0,name="InstantManaLeech",type="BASE",value=5},[3]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={type="Multiplier",var="EnemyPower"},flags=4,keywordFlags=0,name="InstantEnergyShieldLeech",type="BASE",value=5}},nil} c["5% of Leech is Instant"]={{[1]={flags=0,keywordFlags=0,name="InstantEnergyShieldLeech",type="BASE",value=5},[2]={flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=5},[3]={flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=5}},nil} c["5% reduced Cold Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="INC",value=-5}},nil} @@ -5717,22 +5631,21 @@ c["5% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed c["5% reduced Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-5}},nil} c["50 Mana gained when you Block"]={{[1]={flags=0,keywordFlags=0,name="ManaOnBlock",type="BASE",value=50}},nil} c["50% Chance to avoid being Stunned during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=50}},nil} -c["50% More Damage with Arrow Hits at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=4,keywordFlags=2048,name="Damage",type="MORE",value=50}},nil} c["50% chance for Energy Shield Recharge to start when you Suppress Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="EnergyShield",type="BASE",value=50}}," for Recharge to start when you Suppress Damage "} c["50% chance for Flasks you use to not consume Charges"]={{[1]={flags=0,keywordFlags=0,name="FlaskChanceNotConsumeCharges",type="BASE",value=50}},nil} -c["50% chance for Hits to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal"]={{[1]={[2]={type="Condition",var="SacrificialZeal"},flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=50}},nil} c["50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=50}}," for Impales you Kill to Reflect to surrounding Enemies "} c["50% chance for Spell Hits against you to inflict Poison"]={{}," for Hits to inflict Poison "} +c["50% chance for Spell Hits against you to inflict Poison 15% increased Movement Speed while Poisoned"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={actor="enemy",type="Condition",var="Poisoned"},flags=2,keywordFlags=0,name="MovementSpeed",type="BASE",value=50}}}}," for Hits to inflict Poison 15% increased "} c["50% chance for used Retaliation Skills to remain Usable and not consume a Cooldown Use"]={{[1]={flags=0,keywordFlags=0,name="AdditionalCooldownUses",type="BASE",value=50}}," for used Retaliation Skills to remain Usable and not consume a "} c["50% chance to Aggravate Bleeding on targets you Stun with Attacks Hits"]={{}," to Aggravate Bleeding on targets you Stun Hits "} +c["50% chance to Avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=50}},nil} c["50% chance to Avoid being Chilled"]={{[1]={flags=0,keywordFlags=0,name="AvoidChill",type="BASE",value=50}},nil} c["50% chance to Avoid being Frozen"]={{[1]={flags=0,keywordFlags=0,name="AvoidFreeze",type="BASE",value=50}},nil} c["50% chance to Avoid being Stunned while Channelling"]={{[1]={[1]={type="Condition",var="Channelling"},flags=0,keywordFlags=0,name="AvoidStun",type="BASE",value=50}},nil} c["50% chance to Blind Enemies on Critical Strike"]={{}," to Blind Enemies "} -c["50% chance to Blind Enemies on Critical Strike Blind does not affect your Light Radius"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="LightRadius",type="BASE",value=50}}," to Blind Enemies Blind does not affect your "} +c["50% chance to Blind Enemies on Critical Strike 20% chance to Blind Enemies on Hit with Attacks"]={{}," to Blind Enemies 20% chance to Blind Enemies with Attacks "} c["50% chance to Blind Enemies which Hit you while affected by Grace"]={{}," to Blind Enemies which Hit you "} c["50% chance to Blind Enemies which Hit you while affected by Grace +15% chance to Suppress Spell Damage while affected by Grace"]={{[1]={[1]={type="Condition",var="AffectedByGrace"},flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=50}}," to Blind Enemies which Hit you +15% chance while affected by Grace "} -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,skillId="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},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["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["50% chance to Maim Enemies on Critical Strike with Attacks"]={{}," to Maim Enemies "} @@ -5741,13 +5654,14 @@ c["50% chance to Sap Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemySapChanc c["50% chance to Scorch Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyScorchChance",type="BASE",value=50}},nil} c["50% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=50}},nil} c["50% chance to Shock Chilled Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=50}}," Chilled Enemies "} +c["50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an"]={{[1]={flags=2,keywordFlags=0,name="Mana",type="BASE",value=50}}," to Trigger Socketed s when you Spend at least 100 on an "} c["50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown"]={{[1]={flags=0,keywordFlags=0,name="KitavaTriggerChance",source="Kitava's Thirst",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="KitavaRequiredManaCost",source="Kitava's Thirst",type="BASE",value=100},[3]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportCastOnManaSpent"}}},nil} -c["50% chance to avoid Bleeding"]={{[1]={flags=0,keywordFlags=0,name="AvoidBleed",type="BASE",value=50}},nil} +c["50% chance to Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown"]={{}," to Trigger a Socketed Lightning on Hit, with a 0.25 second Cooldown "} +c["50% chance to Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown Socketed Lightning Spells have no Cost if Triggered"]={{}," to Trigger a Socketed Lightning on Hit, with a 0.25 second Cooldown Socketed Lightning Spells have no Cost if Triggered "} c["50% chance to be inflicted with Bleeding when Hit by an Attack"]={{}," to be inflicted when Hit by an Attack "} 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["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["50% chance to cause Bleeding on Hit"]={{[1]={flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil} -c["50% chance to cause Bleeding on Melee Hit"]={{[1]={flags=260,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil} c["50% chance to create Consecrated Ground when you Block"]={{}," to create Consecrated Ground when you Block "} c["50% chance to create Consecrated Ground when you Block 100% chance to create Consecrated Ground when you Block"]={{}," to create Consecrated Ground when you Block 100% chance to create Consecrated Ground when you Block "} c["50% chance to create Desecrated Ground when you Block"]={{}," to create Desecrated Ground when you Block "} @@ -5791,11 +5705,9 @@ c["50% increased Cooldown Recovery Rate of Movement Skills used while affected b c["50% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} c["50% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} c["50% increased Critical Strike Chance against Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} -c["50% increased Critical Strike Chance for Spells per Raised Spectre"]={{[1]={[1]={stat="ActiveSpectreLimit",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",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["50% increased Critical Strike Chance with Swords"]={{[1]={flags=4194308,keywordFlags=0,name="CritChance",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["50% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},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["50% increased Damage on Burning Ground"]={{[1]={[1]={type="Condition",var="OnBurningGround"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}},nil} 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} @@ -5816,8 +5728,8 @@ c["50% increased Duration of Shrine Effects on you"]={{[1]={flags=0,keywordFlags c["50% increased Effect of Auras from Mines"]={{[1]={flags=0,keywordFlags=8192,name="AuraEffect",type="INC",value=50}},nil} c["50% increased Effect of Auras from your Vaal Skills"]={{[1]={flags=0,keywordFlags=512,name="AuraEffect",type="INC",value=50}},nil} c["50% increased Effect of Chilled Ground"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=50}}," ed Ground "} -c["50% increased Effect of Chilled Ground 50% increased Effect of Consecrated Ground"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=50}}," ed Ground 50% increased Effect of Consecrated Ground "} -c["50% increased Effect of Consecrated Ground"]={{[1]={flags=0,keywordFlags=0,name="LocalEffect",type="INC",value=50}}," of Consecrated Ground "} +c["50% increased Effect of Chilled Ground 50% increased Effect of Consecrated Ground you create"]={{[1]={flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=50}}," ed Ground 50% increased Effect of Consecrated Ground you create "} +c["50% increased Effect of Consecrated Ground you create"]={{[1]={flags=0,keywordFlags=0,name="ConsecratedGroundEffect",type="INC",value=50}},nil} c["50% increased Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=50}},nil} c["50% increased Effect of Impales inflicted with Spells"]={{[1]={flags=0,keywordFlags=131072,name="ImpaleEffect",type="INC",value=50}},nil} c["50% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="corruptedMagicJewelIncEffect",value=50}}},nil} @@ -5827,7 +5739,6 @@ c["50% increased Effect of Socketed Abyss Jewels"]={{[1]={flags=0,keywordFlags=0 c["50% increased Effect of Withered"]={{[1]={flags=0,keywordFlags=0,name="WitherEffect",type="INC",value=50}},nil} c["50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=50},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=50},[3]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyFreezeEffect",type="INC",value=50},[4]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=50},[5]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=50},[6]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=50}},nil} c["50% increased Effect of your Marks while Elusive"]={{[1]={[1]={skillType=109,type="SkillType"},[2]={type="Condition",var="Elusive"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=50}},nil} -c["50% increased Elemental Ailment Duration on You"]={{[1]={flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=50}},nil} c["50% increased Elemental Ailment Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=50}},nil} c["50% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=50}},nil} c["50% increased Elemental Damage taken"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="INC",value=50}},nil} @@ -5854,7 +5765,6 @@ c["50% increased Herald of Ice Damage"]={{[1]={[1]={includeTransfigured=true,ski c["50% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=50}},nil} c["50% increased Ignite Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfIgniteDuration",type="INC",value=50}},nil} c["50% increased Impale Duration"]={{[1]={flags=0,keywordFlags=0,name="ImpaleDuration",type="INC",value=50}},nil} -c["50% increased Life Leeched per second"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=50}},nil} c["50% increased Life Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=50}},nil} c["50% increased Light Radius"]={{[1]={flags=0,keywordFlags=0,name="LightRadius",type="INC",value=50}},nil} c["50% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=50}},nil} @@ -5879,12 +5789,13 @@ c["50% increased Projectile Speed while wielding a Dagger"]={{[1]={[1]={type="Co c["50% increased Quantity of Items Dropped by Slain Normal Enemies"]={{[1]={flags=0,keywordFlags=0,name="LootQuantityNormalEnemies",type="INC",value=50}},nil} c["50% increased Rage Effect"]={{[1]={flags=0,keywordFlags=0,name="RageEffect",type="INC",value=50}},nil} c["50% increased Rarity of Items Dropped by Enemies killed with a Critical Strike"]={{[1]={[1]={type="Condition",var="CritRecently"},[2]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil} -c["50% increased Rarity of Items Dropped by Slain Shocked enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil} +c["50% increased Rarity of Items Dropped by Slain Shocked Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil} c["50% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil} c["50% increased Rarity of Items found during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=50}},nil} c["50% increased Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=50}},nil} -c["50% increased Shock Duration on You"]={{[1]={flags=0,keywordFlags=0,name="SelfShockDuration",type="INC",value=50}},nil} +c["50% increased Shock Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfShockDuration",type="INC",value=50}},nil} c["50% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} +c["50% increased Spell Critical Strike Chance per Raised Spectre"]={{[1]={[1]={stat="ActiveSpectreLimit",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=50}},nil} c["50% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=50}},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["50% increased Stealth if you've Hit With a Claw Recently"]={{}," Stealth if you've Hit With a Claw Recently "} @@ -5906,6 +5817,7 @@ c["50% increased Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="INC",val c["50% increased effect of Offerings"]={{[1]={[1]={skillNameList={[1]="Bone Offering",[2]="Flesh Offering",[3]="Spirit Offering",[4]="Blood Offering"},type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil} c["50% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=50}},nil} c["50% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=50}},nil} +c["50% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=50}},nil} c["50% less Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="MORE",value=-50}},nil} c["50% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-50}},nil} c["50% less Damage"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-50}},nil} @@ -5915,16 +5827,17 @@ c["50% less Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="MORE" c["50% less Duration of Ignites you inflict"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="MORE",value=-50}},nil} c["50% less Energy Shield Recharge Rate"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="MORE",value=-50}},nil} c["50% less Ignite Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="MORE",value=-50}},nil} +c["50% less Impale Duration"]={{[1]={flags=0,keywordFlags=0,name="ImpaleDuration",type="MORE",value=-50}},nil} c["50% less Life Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskLifeRecovery",type="MORE",value=-50}},nil} c["50% less Life Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="MORE",value=-50}},nil} c["50% less Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="LightningResist",type="MORE",value=-50}},nil} c["50% less Poison Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="MORE",value=-50}},nil} -c["50% less duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="MORE",value=-50}},nil} c["50% less maximum Total Life Recovery per Second from Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechRate",type="MORE",value=-50}},nil} c["50% more Accuracy Rating against Marked Enemy"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Marked"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="MORE",value=50}},nil} c["50% more Accuracy Rating at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=0,keywordFlags=0,name="AccuracyVsEnemy",type="MORE",value=50}},nil} c["50% more Critical Strike Chance while Insane"]={{[1]={[1]={type="Condition",var="Insane"},flags=0,keywordFlags=0,name="CritChance",type="MORE",value=50}},nil} c["50% more Damage Over Time with Herald Skills"]={{[1]={[1]={skillType=62,type="SkillType"},flags=8,keywordFlags=0,name="Damage",type="MORE",value=50}},nil} +c["50% more Damage with Arrow Hits at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=4,keywordFlags=2048,name="Damage",type="MORE",value=50}},nil} c["50% more Effect of Herald Buffs on you"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="BuffEffect",type="MORE",value=50}},nil} c["50% of Cold and Lightning Damage taken as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTakenAsFire",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="LightningDamageTakenAsFire",type="BASE",value=50}},nil} c["50% of Damage from your Hits cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=50}}," from your Hits cannot be Reflected "} @@ -5949,7 +5862,6 @@ c["50% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="IN c["50% reduced Duration of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Curses on you "} c["50% reduced Duration of Curses on you Hex Reflection"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-50}}," of Curses on you Hex Reflection "} c["50% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="RareAbyssJewels"},flags=0,keywordFlags=0,name="SelfElementalAilmentDuration",type="INC",value=-50}},nil} -c["50% reduced Effect of Curses on You"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-50}},nil} c["50% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-50}},nil} c["50% reduced Effect of Exposure on you"]={{[1]={flags=0,keywordFlags=0,name="ExposureEffectOnSelf",type="INC",value=-50}},nil} c["50% reduced Enemy Chance to Block Sword Attacks"]={{[1]={flags=4194304,keywordFlags=0,name="reduceEnemyBlock",type="BASE",value=50}},nil} @@ -5981,9 +5893,9 @@ c["500% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion", c["500% increased Evasion and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EvasionAndEnergyShield",type="INC",value=500}},nil} c["500% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=500}},nil} c["500% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=500}},nil} -c["51% Increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=51}},nil} -c["51% Increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=51}},nil} c["51% increased Duration of Lightning Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockDuration",type="INC",value=51},[2]={flags=0,keywordFlags=0,name="EnemySapDuration",type="INC",value=51}},nil} +c["51% increased Mana Recovery from Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskManaRecovery",type="INC",value=51}},nil} +c["51% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=51}},nil} c["52% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=52}},nil} c["53% reduced Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="ColdResist",type="INC",value=-53}},nil} c["53% reduced Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="INC",value=-53}},nil} @@ -6008,13 +5920,11 @@ c["57% increased Attack Speed while a Rare or Unique Enemy is Nearby"]={{[1]={[1 c["58% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=58}},nil} c["58% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=58}},nil} c["58% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=58}},nil} +c["6 to 10 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil} c["6 to 12 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=6},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=12}},nil} c["6 to 60 Lightning Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=6},[2]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=60}},nil} c["6% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},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["6% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil} -c["6% Chance to Block Spell Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=6}},nil} -c["6% chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=6}},nil} c["6% chance to avoid Projectiles"]={{[1]={flags=0,keywordFlags=0,name="AvoidProjectilesChance",type="BASE",value=6}},nil} c["6% chance to throw up to 4 additional Traps"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowCount",type="BASE",value=0.24}},nil} 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} @@ -6050,18 +5960,16 @@ c["6% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplie c["6% increased Energy Shield Recharge Rate for each different type of Mastery you have Allocated"]={{[1]={[1]={type="Multiplier",var="AllocatedMasteryType"},flags=0,keywordFlags=0,name="EnergyShieldRecharge",type="INC",value=6}},nil} c["6% increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=6}},nil} c["6% increased Evasion Rating and Armour"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=6}},nil} -c["6% increased Evasion while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=6}},nil} +c["6% increased Evasion Rating while Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="Evasion",type="INC",value=6}},nil} c["6% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=6}},nil} c["6% increased Global Accuracy Rating"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Accuracy",type="INC",value=6}},nil} c["6% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=6}},nil} c["6% increased Impale Effect"]={{[1]={flags=0,keywordFlags=0,name="ImpaleEffect",type="INC",value=6}},nil} c["6% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=6}},nil} c["6% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=6}},nil} -c["6% increased Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=6}},nil} c["6% increased Maximum Life for each Corrupted Item Equipped"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="Life",type="INC",value=6}},nil} c["6% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil} c["6% increased Movement Speed per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=6}},nil} -c["6% increased Physical Damage per 10 Rage"]={{[1]={[1]={div=10,type="Multiplier",var="Rage"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=6}},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["6% increased Quantity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootQuantity",type="INC",value=6}},nil} c["6% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=6}},nil} @@ -6078,6 +5986,7 @@ c["6% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="Lif c["6% reduced Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="Cost",type="INC",value=-6}},nil} c["6% reduced Effect of Curses on you"]={{[1]={flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="INC",value=-6}},nil} c["6% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-6}},nil} +c["60 to 80 Added Cold Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=60},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=80}},nil} c["60% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit"]={{}," for the Strongest Impale on target to last for 1 additional Hit "} c["60% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit 30% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit"]={{}," for the Strongest Impale on target to last for 1 additional Hit 30% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit "} c["60% chance to Impale on Spell Hit"]={{[1]={flags=2,keywordFlags=0,name="ImpaleChance",type="BASE",value=60}},nil} @@ -6097,7 +6006,7 @@ c["60% increased Attack Damage with Main Hand while Dual Wielding"]={{[1]={[1]={ c["60% increased Block Recovery"]={{[1]={flags=0,keywordFlags=0,name="BlockRecovery",type="INC",value=60}},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["60% increased Charge Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargeRecovery",type="INC",value=60}},nil} -c["60% increased Charges per Use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=60}},nil} +c["60% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=60}},nil} c["60% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=60}},nil} c["60% increased Cold Damage while affected by Hatred"]={{[1]={[1]={type="Condition",var="AffectedByHatred"},flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=60}},nil} 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} @@ -6106,7 +6015,6 @@ c["60% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="Cr c["60% increased Critical Strike Chance against Blinded Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance against enemies with Lightning Exposure"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="HasLightningExposure"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} -c["60% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance if you haven't Blocked Recently"]={{[1]={[1]={neg=true,type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Critical Strike Chance while Physical Aegis is depleted"]={{[1]={[1]={type="Condition",var="PhysicalAegisDepleted"},flags=0,keywordFlags=0,name="CritChance",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} @@ -6143,6 +6051,7 @@ c["60% increased Global Critical Strike Chance while wielding a Staff"]={{[1]={[ c["60% increased Global Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Damage",type="INC",value=60}},nil} c["60% increased Global Physical Damage"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil} c["60% increased Intelligence Requirement"]={{[1]={flags=0,keywordFlags=0,name="IntRequirement",type="INC",value=60}},nil} +c["60% increased Item Rarity per White Socket"]={{}," Item Rarity "} c["60% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=60}},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["60% increased Lightning Damage while affected by Wrath"]={{[1]={[1]={type="Condition",var="AffectedByWrath"},flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=60}},nil} @@ -6151,7 +6060,7 @@ c["60% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="Ma 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["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["60% increased Mine Duration"]={{[1]={flags=0,keywordFlags=0,name="MineDuration",type="INC",value=60}},nil} -c["60% increased Mine Laying Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=60}},nil} +c["60% increased Mine Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="MineLayingSpeed",type="INC",value=60}},nil} c["60% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},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["60% increased Physical Damage while using Pride"]={{[1]={[1]={type="Condition",var="AffectedByPride"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=60}},nil} @@ -6160,7 +6069,6 @@ c["60% increased Rarity of Fish Caught"]={{}," Rarity of Fish Caught "} c["60% increased Rarity of Fish Caught You can catch Exotic Fish"]={{}," Rarity of Fish Caught You can catch Exotic Fish "} c["60% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil} c["60% increased Rarity of Items found during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil} -c["60% increased Rarity of Items found per White Socket"]={{[1]={[1]={type="Multiplier",var="WhiteSocketIn{SlotName}"},flags=0,keywordFlags=0,name="LootRarity",type="INC",value=60}},nil} c["60% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=60}},nil} c["60% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=60}},nil} c["60% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%"]={{[1]={[1]={div=200,limit=2000,limitTotal=true,type="Multiplier",var="ManaSpentRecently"},flags=2,keywordFlags=0,name="Damage",type="INC",value=60}},nil} @@ -6171,9 +6079,10 @@ c["60% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type=" c["60% increased total Recovery per second from Life Leech"]={{[1]={flags=0,keywordFlags=0,name="LifeLeechRate",type="INC",value=60}},nil} c["60% increased total Recovery per second from Mana Leech"]={{[1]={flags=0,keywordFlags=0,name="ManaLeechRate",type="INC",value=60}},nil} c["60% less Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="MORE",value=-60}},nil} +c["60% less Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="MORE",value=-60}},nil} c["60% more Critical Strike Chance while Insane"]={{[1]={[1]={type="Condition",var="Insane"},flags=0,keywordFlags=0,name="CritChance",type="MORE",value=60}},nil} -c["60% of Damage Taken from Stunning Hits is Recovered as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=60}}," from Stunning Hits is Recovered as Life "} -c["60% of Damage Taken from Stunning Hits is Recovered as Life 30% of Damage Taken from Stunning Hits is Recovered as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=60}}," from Stunning Hits is Recovered as Life 30% of Damage Taken from Stunning Hits is Recovered as Life "} +c["60% of Damage taken from Stunning Hits is Recovered as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=60}}," from Stunning Hits is Recovered as Life "} +c["60% of Damage taken from Stunning Hits is Recovered as Life 30% of Damage taken from Stunning Hits is Recovered as Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="BASE",value=60}}," from Stunning Hits is Recovered as Life 30% of Damage taken from Stunning Hits is Recovered as Life "} c["60% of Elemental Damage from your Hits cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="BASE",value=60}}," from your Hits cannot be Reflected "} c["60% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageConvertToChaos",type="BASE",value=60}},nil} c["60% of Physical Damage Converted to Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=60}},nil} @@ -6200,13 +6109,13 @@ c["63% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalD c["63% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-63}},nil} c["65% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=65}},nil} c["65% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=65}},nil} +c["65% increased Cooldown Recovery Rate of Travel Skills"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=65}},nil} c["65% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=65}},nil} c["65% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=65}},nil} c["65% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=65}},nil} c["65% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=65}},nil} c["65% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=65}},nil} c["65% increased Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="INC",value=65}},nil} -c["65% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-65}},nil} c["65% reduced Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="ElementalResist",type="INC",value=-65}},nil} c["650% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=650}},nil} c["66% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=66}},nil} @@ -6220,6 +6129,7 @@ c["67% of Lightning Damage Converted to Chaos Damage"]={{[1]={flags=0,keywordFla c["68% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=68}},nil} c["69% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=69}},nil} c["69% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=69}},nil} +c["7 to 10 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=7},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=10}},nil} c["7% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=7}},nil} c["7% Global chance to Blind Enemies on hit"]={{},"% chance to Blind Enemies on hit "} c["7% Global chance to Blind Enemies on hit 10% Global chance to Blind Enemies on hit"]={{},"% chance to Blind Enemies on hit 10% Global chance to Blind Enemies on hit "} @@ -6235,7 +6145,6 @@ c["7% increased Elemental Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplie c["7% increased Flask Effect Duration"]={{[1]={flags=0,keywordFlags=0,name="FlaskDuration",type="INC",value=7}},nil} c["7% increased Global Defences"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="Defences",type="INC",value=7}},nil} c["7% increased Intelligence"]={{[1]={flags=0,keywordFlags=0,name="Int",type="INC",value=7}},nil} -c["7% increased Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=7}},nil} c["7% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=7}},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["7% increased Physical Damage per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=7}},nil} @@ -6244,7 +6153,6 @@ c["7% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type= 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["7% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=7}},nil} c["7% more Attack Speed with Unarmed Melee Attacks"]={{[1]={flags=16777473,keywordFlags=0,name="Speed",type="MORE",value=7}},nil} -c["7% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-7}},nil} c["7% reduced Mana Cost of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaCost",type="INC",value=-7}},nil} c["7% reduced Soul Gain Prevention Duration"]={{[1]={flags=0,keywordFlags=0,name="SoulGainPreventionDuration",type="INC",value=-7}},nil} c["70% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=70}},nil} @@ -6253,7 +6161,6 @@ c["70% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="Armour 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["70% increased Attack Damage if your opposite Ring is a Shaper Item"]={{[1]={[1]={itemSlot="Ring {OtherSlotNum}",shaperCond=true,type="ItemCondition"},flags=1,keywordFlags=0,name="Damage",type="INC",value=70}},nil} c["70% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=70}},nil} -c["70% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=70}},nil} c["70% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=70}},nil} c["70% increased Critical Strike Chance for Spells"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=70}},nil} c["70% increased Critical Strike Chance if you haven't gained a Power Charge Recently"]={{[1]={[1]={neg=true,type="Condition",var="GainedPowerChargeRecently"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=70}},nil} @@ -6275,6 +6182,7 @@ c["70% increased Life Recovery from Flasks while affected by Vitality"]={{[1]={[ c["70% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=70}},nil} c["70% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=70}},nil} c["70% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=70}},nil} +c["70% increased Spell Critical Strike Chance"]={{[1]={flags=2,keywordFlags=0,name="CritChance",type="INC",value=70}},nil} c["70% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=70}},nil} c["70% increased Spell Damage if your opposite Ring is an Elder Item"]={{[1]={[1]={elderCond=true,itemSlot="Ring {OtherSlotNum}",type="ItemCondition"},flags=2,keywordFlags=0,name="Damage",type="INC",value=70}},nil} c["70% increased Stun Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDuration",type="INC",value=70}},nil} @@ -6299,7 +6207,6 @@ c["75% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC" c["75% increased Armour and Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEnergyShield",type="INC",value=75}},nil} c["75% increased Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdDamage",type="INC",value=75}},nil} c["75% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=75}},nil} -c["75% increased Critical Strike Chance for Spells per Raised Spectre"]={{[1]={[1]={stat="ActiveSpectreLimit",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=75}},nil} c["75% increased Damage with Ignite from Melee Weapons"]={{[1]={flags=67108864,keywordFlags=8388608,name="Damage",type="INC",value=75}},nil} c["75% increased Duration of Poisons you inflict during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="EnemyPoisonDuration",type="INC",value=75}},nil} c["75% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots"]={{[1]={flags=0,keywordFlags=0,name="SkitterbotAilmentEffect",type="INC",value=75}},nil} @@ -6311,6 +6218,7 @@ c["75% increased Global Critical Strike Chance"]={{[1]={[1]={type="Global"},flag c["75% increased Ignite Duration on Enemies"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteDuration",type="INC",value=75}},nil} c["75% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=75}},nil} c["75% increased Projectile Speed"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeed",type="INC",value=75}},nil} +c["75% increased Spell Critical Strike Chance per Raised Spectre"]={{[1]={[1]={stat="ActiveSpectreLimit",type="PerStat"},flags=2,keywordFlags=0,name="CritChance",type="INC",value=75}},nil} c["75% increased bonuses gained from Equipped Quiver"]={{[1]={flags=0,keywordFlags=0,name="EffectOfBonusesFromQuiver",type="INC",value=75}},nil} c["75% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=75}},nil} c["75% more Main Hand attack speed"]={{[1]={[1]={type="Condition",var="MainHandAttack"},[2]={skillType=1,type="SkillType"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=75}},nil} @@ -6320,7 +6228,8 @@ c["75% of Elemental Damage from your Hits cannot be Reflected while affected by c["75% of Physical Damage converted to a random Element"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageConvertToRandom",type="BASE",value=75}},nil} c["75% of Physical Damage from your Hits cannot be Reflected while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=75}}," from your Hits cannot be Reflected "} c["75% of Physical Damage from your Hits cannot be Reflected while affected by Determination Unaffected by Vulnerability while affected by Determination"]={{[1]={[1]={type="Condition",var="AffectedByDetermination"},flags=0,keywordFlags=0,name="PhysicalDamage",type="BASE",value=75}}," from your Hits cannot be Reflected Unaffected by Vulnerability while affected by Determination "} -c["75% reduced Effect of Chill on You"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-75}},nil} +c["75% reduced Amount Recovered"]={{[1]={flags=0,keywordFlags=0,name="FlaskRecovery",type="INC",value=-75}},nil} +c["75% reduced Effect of Chill on you"]={{[1]={flags=0,keywordFlags=0,name="SelfChillEffect",type="INC",value=-75}},nil} c["75% reduced Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="FireResist",type="INC",value=-75}},nil} c["75% reduced Maximum number of Summoned Raging Spirits"]={{[1]={flags=0,keywordFlags=0,name="ActiveRagingSpiritLimit",type="INC",value=-75}},nil} c["75% reduced Trap Duration"]={{[1]={flags=0,keywordFlags=0,name="TrapDuration",type="INC",value=-75}},nil} @@ -6339,7 +6248,6 @@ c["79% increased Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireDamage",t c["79% increased Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningDamage",type="INC",value=79}},nil} c["79% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=79}},nil} c["8 Grasping Vines during Effect of any Life Flask"]={{}," Grasping Vines "} -c["8 to 15 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil} c["8 to 18 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=8},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=18}},nil} c["8 to 23 Added Attack Chaos Damage per 100 Maximum Mana"]={{[1]={[1]={div=100,stat="Mana",type="PerStat"},flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=8},[2]={[1]={div=100,stat="Mana",type="PerStat"},flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=23}},nil} c["8% Chance for Traps to Trigger an additional time"]={{}," to Trigger an additional time "} @@ -6355,7 +6263,6 @@ c["8% chance to Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance", c["8% chance to Knock Enemies Back on Hit with Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=8}},nil} 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["8% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=8}},nil} -c["8% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=8}},nil} c["8% chance to gain Phasing for 4 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Phasing",type="FLAG",value=true}},nil} c["8% chance to gain a Frenzy Charge on Hit"]={nil,"a Frenzy Charge on Hit "} c["8% chance to gain a Frenzy Charge on Hit Gain Adrenaline for 4 seconds when you reach Low Life"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=4,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}},"aCharge Gain when you reach Low "} @@ -6398,8 +6305,9 @@ c["8% increased Damage per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="Fr c["8% increased Damage per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil} c["8% increased Damage per Raised Zombie"]={{[1]={[1]={stat="ActiveZombieLimit",type="PerStat"},flags=0,keywordFlags=0,name="Damage",type="INC",value=8}},nil} c["8% increased Dexterity"]={{[1]={flags=0,keywordFlags=0,name="Dex",type="INC",value=8}},nil} +c["8% increased Effect of Arcane Surge on you per"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=8}}," per "} c["8% increased Effect of Arcane Surge on you per Hypnotic Eye Jewel affecting you, up to a maximum of 40%"]={{[1]={[1]={globalLimit=40,globalLimitKey="KurgalGaze",type="Multiplier",var="HypnoticEyeJewel"},flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=8}},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="EnemyFreezeEffect",type="INC",value=8},[4]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=8},[5]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=8},[6]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=8}},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="EnemyFreezeEffect",type="INC",value=8},[4]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyScorchEffect",type="INC",value=8},[5]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemyBrittleEffect",type="INC",value=8},[6]={[1]={type="Multiplier",var="ElderItem"},flags=0,keywordFlags=0,name="EnemySapEffect",type="INC",value=8}},nil} c["8% increased Effect of your Curses"]={{[1]={flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=8}},nil} c["8% increased Effect of your Marks"]={{[1]={[1]={skillType=109,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=8}},nil} c["8% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=8}},nil} @@ -6417,6 +6325,7 @@ c["8% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="Man 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["8% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=8}},nil} c["8% increased Maximum Energy Shield for each Corrupted Item Equipped"]={{[1]={[1]={type="Multiplier",var="CorruptedItem"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=8}},nil} +c["8% increased Maximum Recovery per Life Leech for each 5% of Life Reserved"]={{[1]={[1]={div=5,stat="LifeReservedPercent",type="PerStat"},flags=0,keywordFlags=0,name="MaxLifeLeechInstance",type="INC",value=8}},nil} c["8% increased Mine Damage"]={{[1]={flags=0,keywordFlags=8192,name="Damage",type="INC",value=8}},nil} c["8% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=8}},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} @@ -6431,13 +6340,12 @@ c["8% increased Spell Damage per 5% Chance to Block Attack Damage"]={{[1]={[1]={ c["8% increased Spell Damage while holding a Shield"]={{[1]={[1]={type="Condition",varList={[1]="UsingShield"}},flags=2,keywordFlags=0,name="Damage",type="INC",value=8}},nil} c["8% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=8}},nil} c["8% increased Warcry Cooldown Recovery Rate"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="INC",value=8}},nil} -c["8% increased effect of Flasks"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil} c["8% increased maximum Energy Shield"]={{[1]={[1]={type="Global"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=8}},nil} c["8% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=8}},nil} c["8% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=8}},nil} -c["8% increased maximum Recovery per Life Leech for each 5% of Life Reserved"]={{[1]={[1]={div=5,stat="LifeReservedPercent",type="PerStat"},flags=0,keywordFlags=0,name="MaxLifeLeechInstance",type="INC",value=8}},nil} c["8% more Damage with Hits and Ailments against Enemies affected by at least 5 Poisons"]={{[1]={[1]={actor="enemy",threshold=5,type="MultiplierThreshold",var="PoisonStack"},flags=0,keywordFlags=786432,name="Damage",type="MORE",value=8}},nil} c["8% of Damage from Hits is taken from Marked Target's Life before you"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=8}}," from Hits is taken from Marked Target's Life before you "} +c["8% of Damage from Hits is taken from Marked Target's Life before you Your Mark Transfers to another Enemy when Marked Enemy dies"]={{[1]={flags=0,keywordFlags=0,name="Damage",type="BASE",value=8}}," from Hits is taken from Marked Target's Life before you Your Mark Transfers to another Enemy when Marked Enemy dies "} c["8% of Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="DamageTakenFromManaBeforeLife",type="BASE",value=8}},nil} c["8% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=8}},nil} c["8% of Leech is Instant"]={{[1]={flags=0,keywordFlags=0,name="InstantEnergyShieldLeech",type="BASE",value=8},[2]={flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=8},[3]={flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=8}},nil} @@ -6459,8 +6367,8 @@ c["80% increased Armour while stationary"]={{[1]={[1]={type="Condition",var="Sta c["80% increased Attack Damage if your opposite Ring is a Shaper Item"]={{[1]={[1]={itemSlot="Ring {OtherSlotNum}",shaperCond=true,type="ItemCondition"},flags=1,keywordFlags=0,name="Damage",type="INC",value=80}},nil} c["80% increased Burning Damage"]={{[1]={flags=0,keywordFlags=134217728,name="FireDamage",type="INC",value=80}},nil} c["80% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=80}},nil} -c["80% increased Charges per use"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=80}},nil} c["80% increased Cold Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ColdDamage",type="INC",value=80}},nil} +c["80% increased Cooldown Recovery Rate of Travel Skills"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=80}},nil} c["80% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil} c["80% increased Critical Strike Chance against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil} c["80% increased Critical Strike Chance during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=80}},nil} @@ -6474,7 +6382,7 @@ c["80% increased Damage with Vaal Skills during effect"]={{[1]={[1]={type="Condi c["80% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=80}},nil} c["80% increased Duration of Ailments inflicted by Retaliation Skills"]={{[1]={[1]={skillType=132,type="SkillType"},flags=0,keywordFlags=0,name="EnemyAilmentDuration",type="INC",value=80}},nil} c["80% increased Effect of Arcane Surge on you while affected by Clarity"]={{[1]={[1]={type="Condition",var="AffectedByClarity"},flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=80}},nil} -c["80% increased Effect of Chill you inflict while Leeching Mana"]={{[1]={[1]={type="Condition",var="LeechingMana"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=80}},nil} +c["80% increased Effect of Chills you inflict while Leeching Mana"]={{[1]={[1]={type="Condition",var="LeechingMana"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=80}},nil} c["80% increased Effect of Shocks you inflict while Leeching Energy Shield"]={{[1]={[1]={type="Condition",var="LeechingEnergyShield"},flags=0,keywordFlags=0,name="EnemyShockEffect",type="INC",value=80}},nil} c["80% increased Elemental Damage with Attack Skills"]={{[1]={flags=0,keywordFlags=65536,name="ElementalDamage",type="INC",value=80}},nil} c["80% increased Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=80}},nil} @@ -6503,6 +6411,7 @@ c["80% increased Ward"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="INC",val c["80% increased total Recovery per second from Energy Shield Leech"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldLeechRate",type="INC",value=80}},nil} c["80% less Flask Charges gained from Kills"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesGained",source="from Kills",type="MORE",value=-80}},nil} c["80% of Maximum Mana is Converted to twice that much Armour"]={{[1]={flags=0,keywordFlags=0,name="ManaConvertToArmour",type="BASE",value=80}},nil} +c["80% reduced Duration"]={{[1]={flags=0,keywordFlags=0,name="Duration",type="INC",value=-80}},nil} c["80% reduced Freeze Duration on you"]={{[1]={flags=0,keywordFlags=0,name="SelfFreezeDuration",type="INC",value=-80}},nil} c["80% reduced Maximum Recovery per Life Leech"]={{[1]={flags=0,keywordFlags=0,name="MaxLifeLeechInstance",type="INC",value=-80}},nil} c["80% reduced Reflected Damage taken during Effect"]={{[1]={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="ReflectedDamageTaken",type="INC",value=-80}},nil} @@ -6515,13 +6424,13 @@ c["800% more Physical Damage with Unarmed Melee Attacks"]={{[1]={flags=16777472, c["83% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=83}},nil} c["84% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=84}},nil} c["85% increased Elemental Damage with Melee Weapons"]={{[1]={flags=67108864,keywordFlags=0,name="ElementalDamage",type="INC",value=85}},nil} +c["85% 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=85}},nil} +c["85% 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=85}},nil} c["85% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=85}},nil} c["85% less Ward during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Ward",type="MORE",value=-85}},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=2097152,name="Damage",type="INC",value=88}},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["88% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=88}},nil} -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["9 to 16 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=16}},nil} +c["9 to 15 Added Physical Damage with Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="PhysicalMin",type="BASE",value=9},[2]={flags=131076,keywordFlags=0,name="PhysicalMax",type="BASE",value=15}},nil} c["9% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=9}},nil} c["9% Chance to Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=9}},nil} c["9% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention"]={{[1]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidFireDamageChance",type="BASE",value=9},[2]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidColdDamageChance",type="BASE",value=9},[3]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="AvoidLightningDamageChance",type="BASE",value=9}},nil} @@ -6530,7 +6439,7 @@ c["9% chance to Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",ty c["9% increased Attack Speed"]={{[1]={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}},nil} c["9% increased Attack and Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="Speed",type="INC",value=9}},nil} c["9% increased Cast Speed"]={{[1]={flags=16,keywordFlags=0,name="Speed",type="INC",value=9}},nil} -c["9% increased Cooldown Recovery of Travel Skills per Frenzy Charge"]={{[1]={[1]={skillType=90,type="SkillType"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=9}},nil} +c["9% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge"]={{[1]={[1]={skillType=90,type="SkillType"},[2]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=9}},nil} c["9% increased Effect of Elusive on you per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="ElusiveEffect",type="INC",value=9}},nil} c["9% increased Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=9}},nil} c["9% increased Energy Shield per Power Charge"]={{[1]={[1]={type="Multiplier",var="PowerCharge"},flags=0,keywordFlags=0,name="EnergyShield",type="INC",value=9}},nil} @@ -6539,16 +6448,15 @@ c["9% increased Mana Reservation Efficiency of Skills"]={{[1]={flags=0,keywordFl c["9% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=9}},nil} c["9% increased Projectile Damage"]={{[1]={flags=1024,keywordFlags=0,name="Damage",type="INC",value=9}},nil} c["9% increased Skeleton Attack Speed"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=9}}}},nil} -c["9% increased Skeleton Cast speed"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=9}}}},nil} +c["9% increased Skeleton Cast Speed"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Skeletons",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=9}}}},nil} c["9% increased Strength"]={{[1]={flags=0,keywordFlags=0,name="Str",type="INC",value=9}},nil} c["9% increased Trap Throwing Speed"]={{[1]={flags=0,keywordFlags=0,name="TrapThrowingSpeed",type="INC",value=9}},nil} c["9% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name="Life",type="INC",value=9}},nil} c["9% increased maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="INC",value=9}},nil} c["9% more Melee Physical Damage during effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=256,keywordFlags=0,name="PhysicalDamage",type="MORE",value=9}},nil} -c["9% of Damage Taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=9}},nil} -c["9% of Damage Taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=9}},nil} +c["9% of Damage taken Recouped as Life"]={{[1]={flags=0,keywordFlags=0,name="LifeRecoup",type="BASE",value=9}},nil} +c["9% of Damage taken Recouped as Mana"]={{[1]={flags=0,keywordFlags=0,name="ManaRecoup",type="BASE",value=9}},nil} c["9% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-9}},nil} -c["90% Increased Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="Evasion",type="INC",value=90}},nil} c["90% increased Armour"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="INC",value=90}},nil} c["90% increased Armour and Evasion"]={{[1]={flags=0,keywordFlags=0,name="ArmourAndEvasion",type="INC",value=90}},nil} c["90% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=90}},nil} @@ -6565,7 +6473,7 @@ c["90% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="Ma c["90% increased Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamage",type="INC",value=90}},nil} c["90% increased Power Charge Duration"]={{[1]={flags=0,keywordFlags=0,name="PowerChargesDuration",type="INC",value=90}},nil} c["90% increased Rarity of Items found"]={{[1]={flags=0,keywordFlags=0,name="LootRarity",type="INC",value=90}},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["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["90% increased Spell Damage"]={{[1]={flags=2,keywordFlags=0,name="Damage",type="INC",value=90}},nil} c["90% increased Unveiled Modifier magnitudes"]={{}," Unveiled Modifier magnitudes "} c["90% increased Unveiled Modifier magnitudes 188% increased Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamage",type="INC",value=90}}," Unveiled Modifier magnitudes 188% increased "} @@ -6615,8 +6523,8 @@ c["Adds 1 to 3 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name= c["Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=1},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={div=10,stat="Int",type="PerStat"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=3}},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["Adds 1 to 3 Physical Damage to Attacks per 25 Strength"]={{[1]={[1]={div=25,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=1},[2]={[1]={div=25,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=3}},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["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["Adds 1 to 30 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=30}},nil} +c["Adds 1 to 30 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=1},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=30}},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["Adds 1 to 30 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=30}},nil} 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} @@ -6665,14 +6573,12 @@ c["Adds 10 to 12 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalM 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["Adds 10 to 13 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=13}},nil} c["Adds 10 to 130 Lightning Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=130}},nil} -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["Adds 10 to 14 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=10},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=14}},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 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 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 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["Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=10},[2]={[1]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=15}},nil} -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["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["Adds 10 to 17 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=10},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=17}},nil} c["Adds 10 to 18 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=10},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=18}},nil} @@ -6695,7 +6601,6 @@ c["Adds 10 to 36 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536, 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["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["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["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["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 100 to 200 Chaos Damage in Off Hand"]={{[1]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=100},[2]={[1]={num=2,type="InSlot"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=200}},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} @@ -6729,7 +6634,6 @@ c["Adds 12 to 213 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="Lightni c["Adds 12 to 22 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=12},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=22}},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["Adds 12 to 22 Physical Damage if you've dealt a Critical Strike Recently"]={{[1]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=12},[2]={[1]={type="Condition",var="CritRecently"},flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=22}},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["Adds 12 to 24 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=12},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=24}},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["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} @@ -6741,7 +6645,6 @@ c["Adds 12 to 30 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type 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["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["Adds 120 to 165 Physical Damage against Bleeding Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=120},[2]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=165}},nil} -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["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["Adds 127 to 191 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=127},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=191}},nil} 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} @@ -6750,7 +6653,6 @@ c["Adds 13 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalM c["Adds 13 to 23 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=13},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=23}},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["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["Adds 13 to 24 Cold Damage to Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=13},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=24}},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["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["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} @@ -6770,8 +6672,8 @@ c["Adds 14 to 21 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalM 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["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["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["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["Adds 14 to 26 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=26}},nil} +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["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["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["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} @@ -6782,7 +6684,6 @@ c["Adds 140 to 170 Cold Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,na 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["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["Adds 145 to 175 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=145},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=175}},nil} -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["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["Adds 148 to 223 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=148},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=223}},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} @@ -6794,10 +6695,11 @@ c["Adds 15 to 25 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type c["Adds 15 to 25 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=25}},nil} 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["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["Adds 15 to 25 Fire Damage against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=15},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=25}},nil} +c["Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=15},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=25}},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["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["Adds 15 to 27 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=27}},nil} +c["Adds 15 to 27 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=27}},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["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["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} @@ -6814,7 +6716,6 @@ c["Adds 15 to 40 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type 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["Adds 15 to 65 Lightning Damage to Attacks during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=15},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=65}},nil} c["Adds 15 to 65 Lightning Damage to Spells during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=131072,name="LightningMin",type="BASE",value=15},[2]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=131072,name="LightningMax",type="BASE",value=65}},nil} -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["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["Adds 151 to 203 Fire Damage to Hits with this Weapon against Blinded Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=151},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={actor="enemy",type="ActorCondition",var="Blinded"},flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=203}},nil} c["Adds 155 to 235 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=155},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=235}},nil} @@ -6824,6 +6725,7 @@ c["Adds 16 to 22 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type c["Adds 16 to 22 Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="LightningMin",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=22}},nil} 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["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["Adds 16 to 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["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["Adds 16 to 29 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=29}},nil} c["Adds 16 to 29 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=16},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=29}},nil} @@ -6831,7 +6733,6 @@ c["Adds 16 to 32 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name c["Adds 16 to 32 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=16},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=32}},nil} 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["Adds 16 to 60 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=16},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=60}},nil} -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["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["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["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} @@ -6852,16 +6753,15 @@ c["Adds 18 to 56 Lightning Damage to Spells"]={{[1]={flags=0,keywordFlags=131072 c["Adds 181 to 267 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=181},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=267}},nil} c["Adds 184 to 275 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=184},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=275}},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["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["Adds 188 to 563 Lightning Damage to Unarmed Melee Hits"]={{[1]={flags=16777476,keywordFlags=0,name="LightningMin",type="BASE",value=188},[2]={flags=16777476,keywordFlags=0,name="LightningMax",type="BASE",value=563}},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["Adds 19 to 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["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["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["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["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["Adds 19 to 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["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["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["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["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["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["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} @@ -6877,7 +6777,7 @@ c["Adds 2 to 3 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=1 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["Adds 2 to 4 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=2},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=4}},nil} c["Adds 2 to 4 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=4}},nil} -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["Adds 2 to 4 Fire Damage to Attacks with this Weapon per 10 Strength"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=2},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={div=10,stat="Str",type="PerStat"},flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=4}},nil} c["Adds 2 to 4 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=4}},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["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} @@ -6908,6 +6808,7 @@ c["Adds 204 to 300 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",ty c["Adds 205 to 335 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=205},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=335}},nil} 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["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["Adds 21 to 33 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=21},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=33}},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["Adds 21 to 36 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=21},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=36}},nil} 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} @@ -6945,11 +6846,11 @@ c["Adds 24 to 35 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type c["Adds 24 to 35 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=35}},nil} 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["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["Adds 24 to 36 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=24},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=36}},nil} c["Adds 24 to 40 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=24},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=40}},nil} c["Adds 24 to 46 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=46}},nil} c["Adds 24 to 46 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=24},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=46}},nil} c["Adds 24 to 47 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=24},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=47}},nil} -c["Adds 24-36 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=24},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=36}},nil} c["Adds 240 to 300 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=240},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=300}},nil} c["Adds 245 to 350 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=245},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=350}},nil} c["Adds 25 to 30 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=25},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=30}},nil} @@ -6966,16 +6867,12 @@ c["Adds 25 to 50 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalM 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["Adds 25 to 90 Lightning Damage to Spells during 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["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["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["Adds 250 to 300 Cold Damage to Counterattacks Adds 250 to 300 Cold Damage to Retaliation Skills"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=250},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}}," to Counterattacks Adds 250 to 300 to Retaliation Skills "} c["Adds 250 to 300 Cold Damage to Retaliation Skills"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=250},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=300}}," to Retaliation Skills "} -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["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["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["Adds 265 to 385 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=265},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=385}},nil} 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["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["Adds 27-42 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=27},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=42}},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["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["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} @@ -7007,10 +6904,10 @@ c["Adds 3 to 7 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name=" c["Adds 3 to 7 Cold Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="ColdMin",type="BASE",value=3},[2]={flags=0,keywordFlags=196608,name="ColdMax",type="BASE",value=7}},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 3 to 7 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=3},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=7}},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["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["Adds 3 to 70 Lightning Damage to Hits against Ignited Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=196608,name="LightningMin",type="BASE",value=3},[2]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=196608,name="LightningMax",type="BASE",value=70}},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["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["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["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["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 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} @@ -7025,14 +6922,14 @@ c["Adds 30 to 92 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalM 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["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["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 31-47 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=31},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=47}},nil} +c["Adds 31 to 47 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=31},[2]={[1]={type="Condition",var="HaveBestialMinion"},flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=47}},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["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["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 320 to 380 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=320},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=380}},nil} c["Adds 330 to 390 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=330},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=390}},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["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["Adds 335 to 900 Lightning Damage to Unarmed Melee Hits"]={{[1]={flags=16777476,keywordFlags=0,name="LightningMin",type="BASE",value=335},[2]={flags=16777476,keywordFlags=0,name="LightningMax",type="BASE",value=900}},nil} c["Adds 338 to 495 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=338},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=495}},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["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} @@ -7060,7 +6957,7 @@ c["Adds 38 to 70 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type 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["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["Adds 4 Passive Skills"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="clusterJewelNodeCount",value=4}}},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["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["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["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["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} @@ -7091,11 +6988,9 @@ c["Adds 40 to 73 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalM c["Adds 40 to 75 Fire Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="FireMin",type="BASE",value=40},[2]={flags=0,keywordFlags=65536,name="FireMax",type="BASE",value=75}},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["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["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["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["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["Adds 413 to 518 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=413},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=518}},nil} -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["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["Adds 440 to 545 Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=440},[2]={flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=545}},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} @@ -7114,7 +7009,7 @@ c["Adds 5 to 10 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name= 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["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["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["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["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["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["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 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} @@ -7141,7 +7036,6 @@ c["Adds 56 to 400 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="Physical 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["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["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["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["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["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["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} @@ -7161,7 +7055,6 @@ c["Adds 60 to 140 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="Physical 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["Adds 60 to 80 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=60},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=80}},nil} c["Adds 60 to 80 Cold Damage against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="ColdMin",type="BASE",value=60},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="ColdMax",type="BASE",value=80}},nil} -c["Adds 60 to 80 Cold Damage to Bow Attacks"]={{[1]={flags=131076,keywordFlags=0,name="ColdMin",type="BASE",value=60},[2]={flags=131076,keywordFlags=0,name="ColdMax",type="BASE",value=80}},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["Adds 625 to 775 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=625},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=775}},nil} c["Adds 63 to 113 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=63},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=113}},nil} @@ -7179,7 +7072,6 @@ c["Adds 66 to 94 Cold Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name c["Adds 67 to 89 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=67},[2]={flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=89}},nil} 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["Adds 7 Small Passive Skills which grant nothing"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="clusterJewelNothingnessCount",value=7}}},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["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["Adds 7 to 12 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=12}},nil} c["Adds 7 to 14 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=14}},nil} @@ -7211,6 +7103,7 @@ c["Adds 78 to 114 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="Physical c["Adds 8 to 12 Fire Damage to Spells and Attacks"]={{[1]={flags=0,keywordFlags=196608,name="FireMin",type="BASE",value=8},[2]={flags=0,keywordFlags=196608,name="FireMax",type="BASE",value=12}},nil} 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["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["Adds 8 to 15 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=15}},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["Adds 8 to 16 Fire Damage to Spells"]={{[1]={flags=0,keywordFlags=131072,name="FireMin",type="BASE",value=8},[2]={flags=0,keywordFlags=131072,name="FireMax",type="BASE",value=16}},nil} c["Adds 8 to 16 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=16}},nil} @@ -7234,7 +7127,7 @@ c["Adds 87 to 169 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",typ c["Adds 88 to 230 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=88},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=230}},nil} 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["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["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["Adds 9 to 16 Physical Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=9},[2]={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=16}},nil} c["Adds 9 to 17 Chaos Damage to Attacks"]={{[1]={flags=0,keywordFlags=65536,name="ChaosMin",type="BASE",value=9},[2]={flags=0,keywordFlags=65536,name="ChaosMax",type="BASE",value=17}},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["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} @@ -7253,6 +7146,7 @@ c["Adds 98 to 140 Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ChaosMin",t 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["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 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["Adds 98 to 143 Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=143}},nil} c["Adds 98 to 176 Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="FireMin",type="BASE",value=98},[2]={flags=0,keywordFlags=0,name="FireMax",type="BASE",value=176}},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["Adds Disciple of Kitava"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="clusterJewelKeystone",value="Disciple of Kitava"}}},nil} @@ -7263,7 +7157,6 @@ c["Adds Lone Messenger"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LI c["Adds Nature's Patience"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="clusterJewelKeystone",value="Nature's Patience"}}},nil} c["Adds Secrets of Suffering"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="clusterJewelKeystone",value="Secrets of Suffering"}}},nil} c["Adds Veteran's Awareness"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="clusterJewelKeystone",value="Veteran's Awareness"}}},nil} -c["Adds an additional Arrow"]={{[1]={flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=1}},nil} 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["Ailments never count as being from Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="AilmentsAreNeverFromCrit",type="FLAG",value=true}},nil} c["All Attack Damage Chills when you Stun"]={nil,"All Attack Damage Chills when you Stun "} @@ -7630,10 +7523,10 @@ c["Anger has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTran c["Anger has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Anger",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} c["Anger has no Reservation"]={{[1]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Anger",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Animated Guardian deals 5% increased Damage per Animated Weapon"]={{[1]={[1]={includeTransfigured=true,skillName="Animate Guardian",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="Multiplier",var="AnimatedWeapon"},flags=0,keywordFlags=0,name="Damage",type="INC",value=5}}}},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["Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets You cannot have Non-Animated, Non-Manifested Minions"]={nil,"Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets You cannot have Non-Animated, Non-Manifested Minions "} -c["Animated Minions' Melee Attacks deal Splash Damage to surrounding targets"]={nil,"Animated Minions' Melee Attacks deal Splash Damage to surrounding targets "} -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["Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage"]={nil,"Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage "} +c["Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage You cannot have Non-Animated, Non-Manifested Minions"]={nil,"Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage You cannot have Non-Animated, Non-Manifested Minions "} +c["Animated and Manifested Minions' Melee Strikes deal Splash"]={nil,"Animated and Manifested Minions' Melee Strikes deal Splash "} +c["Animated and Manifested Minions' Melee Strikes deal Splash Damage to surrounding targets"]={nil,"Animated and Manifested Minions' Melee Strikes deal Splash Damage to surrounding targets "} c["Arcane Surge also grants 10% more Spell Damage to you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeDamage",type="MAX",value=10}},nil} c["Arcane Surge also grants 15% increased Life Regeneration Rate to you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeAlsoLifeRegen",type="BASE",value=15}},nil} c["Arcane Surge also grants 20% more Spell Damage to you"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeDamage",type="MAX",value=20}},nil} @@ -7644,11 +7537,10 @@ c["Armour also applies to Lightning Damage taken from Hits"]={{[1]={flags=0,keyw c["Armour applies to Fire, Cold and Lightning Damage taken from Hits instead of Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToFireDamageTaken",type="BASE",value=100},[2]={flags=0,keywordFlags=0,name="ArmourAppliesToColdDamageTaken",type="BASE",value=100},[3]={flags=0,keywordFlags=0,name="ArmourAppliesToLightningDamageTaken",type="BASE",value=100},[4]={flags=0,keywordFlags=0,name="ArmourDoesNotApplyToPhysicalDamageTaken",type="FLAG",value=true}},nil} c["Armour from Equipped Body Armour is doubled"]={{[1]={[1]={slotName="Body Armour",type="SlotName"},[2]={globalLimit=100,globalLimitKey="ArmourDoubledLimit",type="Multiplier",var="ArmourDoubled"},flags=0,keywordFlags=0,name="Armour",type="MORE",value=100},[2]={[1]={slotName="Body Armour",type="SlotName"},flags=0,keywordFlags=0,name="Multiplier:ArmourDoubled",type="OVERRIDE",value=1}},nil} c["Armour from Equipped Shield is doubled"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={globalLimit=100,globalLimitKey="ArmourDoubledLimit",type="Multiplier",var="ArmourDoubled"},flags=0,keywordFlags=0,name="Armour",type="MORE",value=100},[2]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Multiplier:ArmourDoubled",type="OVERRIDE",value=1}},nil} -c["Armour from equipped shield is doubled"]={{[1]={[1]={slotName="Weapon 2",type="SlotName"},[2]={globalLimit=100,globalLimitKey="ArmourDoubledLimit",type="Multiplier",var="ArmourDoubled"},flags=0,keywordFlags=0,name="Armour",type="MORE",value=100},[2]={[1]={slotName="Weapon 2",type="SlotName"},flags=0,keywordFlags=0,name="Multiplier:ArmourDoubled",type="OVERRIDE",value=1}},nil} c["Armour is increased by Overcapped Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="ArmourIncreasedByOvercappedFireRes",type="FLAG",value=true}},nil} -c["Armour is increased by Uncapped Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="ArmourIncreasedByUncappedFireRes",type="FLAG",value=true}},nil} c["Arrow Dancing"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Arrow Dancing"}},nil} c["Arrows Fork"]={nil,"Arrows Fork "} +c["Arrows Fork Projectiles Fork"]={nil,"Arrows Fork Projectiles Fork "} c["Arrows Pierce 2 additional Targets"]={{[1]={flags=0,keywordFlags=2048,name="PierceCount",type="BASE",value=2}},nil} c["Arrows Pierce all Targets"]={{[1]={flags=0,keywordFlags=2048,name="PierceAllTargets",type="FLAG",value=true}},nil} c["Arrows Pierce all Targets after Chaining"]={nil,"Arrows Pierce all Targets after Chaining "} @@ -7667,7 +7559,7 @@ c["Arrows fired from the third firing points Return to you Arrows fired from the c["Arrows gain Critical Strike Chance as they travel farther, up to 100% increased Critical Strike Chance"]={{[1]={[1]={ramp={[1]={[1]=35,[2]=0},[2]={[1]=70,[2]=1}},type="DistanceRamp"},flags=0,keywordFlags=2048,name="CritChance",type="INC",value=100}},nil} c["Arrows 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=4,keywordFlags=2048,name="Damage",type="INC",value=50}},nil} c["Arrows that Pierce have +50% to Critical Strike Multiplier"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=0,keywordFlags=2048,name="CritMultiplier",type="BASE",value=50}},nil} -c["Arrows that Pierce have 50% chance to cause Bleeding"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1024,keywordFlags=2048,name="BleedChance",type="BASE",value=50}},nil} +c["Arrows that Pierce have 50% chance to inflict Bleeding"]={{[1]={[1]={stat="PierceCount",threshold=1,type="StatThreshold"},flags=1024,keywordFlags=2048,name="BleedChance",type="BASE",value=50}},nil} c["Arsenal of Vengeance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Arsenal of Vengeance"}},nil} c["Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies"]={{[1]={[1]={skillName="Aspect of the Avian",type="SkillName"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="BuffAppliesToAllies",type="FLAG",value=true}}}},nil} c["Aspect of the Cat has no Reservation"]={{[1]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="AspectOfTheCat",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} @@ -7705,14 +7597,14 @@ c["Attack Skills deal 8% increased Damage while holding a Shield"]={{[1]={[1]={t c["Attack Skills fire an additional Projectile while wielding a Claw or Dagger"]={{[1]={[1]={modFlags=786432,type="ModFlagOr"},flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} c["Attack Skills gain 5% of Physical Damage as Extra Fire Damage per Socketed Red Gem"]={{[1]={[1]={keyword="strength",slotName="{SlotName}",sockets={[1]=1,[2]=2,[3]=3,[4]=4,[5]=5,[6]=6},type="SocketedIn"},flags=0,keywordFlags=0,name="SocketProperty",type="LIST",value={value={flags=1,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=5}}}},nil} c["Attack Skills have +1 to maximum number of Summoned Ballista Totems"]={{[1]={[1]={skillType=125,type="SkillType"},flags=0,keywordFlags=65536,name="ActiveBallistaLimit",type="BASE",value=1}},nil} -c["Attack Skills have added Lightning Damage equal to 6% of maximum Mana"]={{[1]={[1]={percent=6,stat="Mana",type="PercentStat"},flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={[1]={percent=6,stat="Mana",type="PercentStat"},flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} +c["Attack Skills have Added Lightning Damage equal to 6% of maximum Mana"]={{[1]={[1]={percent=6,stat="Mana",type="PercentStat"},flags=1,keywordFlags=0,name="LightningMin",type="BASE",value=1},[2]={[1]={percent=6,stat="Mana",type="PercentStat"},flags=1,keywordFlags=0,name="LightningMax",type="BASE",value=1}},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["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["Attacks Cost Life instead of Mana"]={{[1]={flags=1,keywordFlags=0,name="CostLifeInsteadOfMana",type="FLAG",value=true}},nil} c["Attacks against you always Hit"]={{[1]={flags=0,keywordFlags=0,name="CannotEvade",type="FLAG",value=true}},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["Attacks cannot Hit you"]={{[1]={flags=0,keywordFlags=0,name="AlwaysEvade",type="FLAG",value=true}},nil} -c["Attacks fire 2 additional Projectiles when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil} +c["Attacks fire 2 additional Projectile when in Off Hand"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}},nil} c["Attacks fire an additional Projectile"]={{[1]={flags=1,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} c["Attacks fire 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["Attacks have +1.5% to Critical Strike Chance if 4 Elder Items are Equipped"]={{[1]={[1]={threshold=4,type="MultiplierThreshold",var="ElderItem"},flags=1,keywordFlags=0,name="CritChance",type="BASE",value=1.5}},nil} @@ -7723,7 +7615,6 @@ c["Attacks have 10% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,nam c["Attacks have 15% chance to Ignite"]={{[1]={flags=1,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=15}},nil} c["Attacks have 15% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=15}},nil} c["Attacks have 25% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil} -c["Attacks have 25% chance to inflict Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil} c["Attacks have 25% chance to inflict 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["Attacks have 5% chance to Maim on Hit"]={{}," to Maim "} c["Attacks have 5% chance to cause Bleeding"]={{[1]={flags=1,keywordFlags=0,name="BleedChance",type="BASE",value=5}},nil} @@ -7733,7 +7624,7 @@ c["Attacks have 60% increased Area of Effect when in Main Hand"]={{[1]={[1]={num c["Attacks inflict Unnerve on Critical Strike for 4 seconds"]={nil,"Attacks inflict Unnerve on Critical Strike for 4 seconds "} c["Attacks inflict Unnerve on Critical Strike for 4 seconds Spells inflict Intimidate on Critical Strike for 4 seconds"]={nil,"Attacks inflict Unnerve on Critical Strike for 4 seconds Spells inflict Intimidate on Critical Strike for 4 seconds "} c["Attacks that Fire Projectiles Consume up to 1 additional Steel Shard"]={nil,"Attacks that Fire Projectiles Consume up to 1 additional Steel Shard "} -c["Attacks that Fire Projectiles Consume up to 1 additional Steel Shard Skills Fire 3 additional Projectiles for 4 seconds after you consume a total of 12 Steel Shards"]={nil,"Attacks that Fire Projectiles Consume up to 1 additional Steel Shard Skills Fire 3 additional Projectiles for 4 seconds after you consume a total of 12 Steel Shards "} +c["Attacks that Fire Projectiles Consume up to 1 additional Steel Shard Skills Fire 3 additional Projectiles for 4 seconds after"]={nil,"Attacks that Fire Projectiles Consume up to 1 additional Steel Shard Skills Fire 3 additional Projectiles for 4 seconds after "} c["Attacks used by Totems have 10% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=10}},nil} c["Attacks used by Totems have 5% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=5}},nil} c["Attacks used by Totems have 6% increased Attack Speed"]={{[1]={flags=1,keywordFlags=16384,name="Speed",type="INC",value=6}},nil} @@ -7763,21 +7654,19 @@ c["Attacks with this Weapon Penetrate 30% Chaos Resistance"]={{[1]={[1]={type="C c["Attacks with this Weapon Penetrate 30% Elemental Resistances"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=30}},nil} c["Attacks with this Weapon deal 100 to 200 added Fire Damage to Bleeding Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=100},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=200}},nil} c["Attacks with this Weapon deal 100 to 200 added Physical Damage to Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="PhysicalMin",type="BASE",value=100},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="PhysicalMax",type="BASE",value=200}},nil} -c["Attacks with this Weapon deal 80-120 added Chaos Damage against"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}}," against "} -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]={skillType=1,type="SkillType"},[3]={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]={skillType=1,type="SkillType"},[3]={actor="enemy",threshold=5,type="MultiplierThreshold",var="PoisonStack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}},nil} +c["Attacks with this Weapon deal 80 to 120 added Chaos Damage against"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=80},[2]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}}," against "} +c["Attacks with this Weapon deal 80 to 120 added Chaos Damage against Enemies affected by at least 5 Poisons"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={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]={skillType=1,type="SkillType"},[3]={actor="enemy",threshold=5,type="MultiplierThreshold",var="PoisonStack"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=120}},nil} c["Attacks with this Weapon deal Double Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=100}},nil} c["Attacks with this Weapon deal Double Damage to Chilled Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=100}},nil} -c["Attacks with this Weapon deal double Damage to Chilled Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=100}},nil} c["Attacks with this Weapon have 108% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=108}},nil} c["Attacks with this Weapon have 115% increased Elemental Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="ElementalDamage",type="INC",value=115}},nil} c["Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},[3]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="BleedChance",type="BASE",value=25}},nil} c["Attacks with this Weapon have Added Fire Damage equal to 10% of Player's Maximum Life"]={{[1]={[1]={actor="parent",percent=10,stat="Life",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=1},[2]={[1]={actor="parent",percent=10,stat="Life",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=1}},nil} c["Attacks with this Weapon have Added Fire Damage equal to 12% of Player's Maximum Life"]={{[1]={[1]={actor="parent",percent=12,stat="Life",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="FireMin",type="BASE",value=1},[2]={[1]={actor="parent",percent=12,stat="Life",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="FireMax",type="BASE",value=1}},nil} -c["Attacks with this Weapon have Added Maximum Lightning Damage equal to 13% of player Maximum Energy Shield"]={{[1]={[1]={actor="parent",percent=13,stat="EnergyShield",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} -c["Attacks with this Weapon have Added Maximum Lightning Damage equal to 15% of player Maximum Energy Shield"]={{[1]={[1]={actor="parent",percent=15,stat="EnergyShield",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} -c["Attacks with this Weapon have Added Maximum Lightning Damage equal to 20% of player Maximum Energy Shield"]={{[1]={[1]={actor="parent",percent=20,stat="EnergyShield",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} -c["Attacks with this Weapon have Added Maximum Lightning Damage equal to 20% of your Maximum Energy Shield"]={{[1]={[1]={percent=20,stat="EnergyShield",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} -c["Attacks with this Weapon inflict Hallowing Flame on Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanInflictHallowingFlame",type="FLAG",value=true}},nil} +c["Attacks with this Weapon have Added Maximum Lightning Damage equal to 13% of Player's Maximum Energy Shield"]={{[1]={[1]={actor="parent",percent=13,stat="EnergyShield",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} +c["Attacks with this Weapon have Added Maximum Lightning Damage equal to 15% of Player's Maximum Energy Shield"]={{[1]={[1]={actor="parent",percent=15,stat="EnergyShield",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} +c["Attacks with this Weapon have Added Maximum Lightning Damage equal to 20% of Player's Maximum Energy Shield"]={{[1]={[1]={actor="parent",percent=20,stat="EnergyShield",type="PercentStat"},[2]={type="Condition",var="{Hand}Attack"},[3]={skillType=1,type="SkillType"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} +c["Attacks with this weapon inflict Hallowing Flame on Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanInflictHallowingFlame",type="FLAG",value=true}},nil} c["Attacks you use yourself Repeat an additional time"]={{[1]={[1]={neg=true,skillTypeList={[1]=30,[2]=40,[3]=36,[4]=41},type="SkillType"},[2]={neg=true,type="Condition",var="usedByMirage"},[3]={type="Condition",varList={[1]="averageRepeat",[2]="alwaysFinalRepeat"}},flags=1,keywordFlags=0,name="RepeatCount",type="BASE",value=1}},nil} c["Attacks you use yourself have 50% more Attack Speed"]={{[1]={[1]={neg=true,skillTypeList={[1]=30,[2]=40,[3]=36,[4]=41},type="SkillType"},[2]={neg=true,type="Condition",var="usedByMirage"},flags=1,keywordFlags=0,name="Speed",type="MORE",value=50}},nil} c["Attribute Requirements can be satisfied by 20% of Omniscience"]={{[1]={flags=0,keywordFlags=0,name="OmniAttributeRequirements",type="INC",value=20},[2]={flags=0,keywordFlags=0,name="OmniscienceRequirements",type="FLAG",value=true}},nil} @@ -7851,7 +7740,7 @@ c["Bleeding cannot be inflicted on you"]={{[1]={flags=0,keywordFlags=0,name="Ble c["Bleeding enemies cannot inflict Bleeding on you"]={nil,"Bleeding enemies cannot inflict Bleeding on you "} c["Bleeding enemies cannot inflict Bleeding on you Ignited enemies cannot Ignite you"]={nil,"Bleeding enemies cannot inflict Bleeding on you Ignited enemies cannot Ignite you "} c["Bleeding on you expires 75% slower while Moving"]={nil,"Bleeding on you expires 75% slower while Moving "} -c["Bleeding on you expires 75% slower while Moving Cannot be Stunned while Bleeding"]={nil,"Bleeding on you expires 75% slower while Moving Cannot be Stunned while Bleeding "} +c["Bleeding on you expires 75% slower while Moving Cannot be Poisoned while Bleeding"]={nil,"Bleeding on you expires 75% slower while Moving Cannot be Poisoned while Bleeding "} c["Bleeding you inflict deals Damage 10% faster"]={{[1]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=10}},nil} c["Bleeding you inflict deals Damage 15% faster"]={{[1]={flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=15}},nil} c["Bleeding you inflict deals Damage 4% faster per Frenzy Charge"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="BleedFaster",type="INC",value=4}},nil} @@ -7864,7 +7753,6 @@ c["Blight has 30% increased Hinder Duration You cannot be Hindered"]={{[1]={[1]= c["Blind Chilled Enemies on Hit"]={nil,"Blind Chilled Enemies on Hit "} c["Blind Chilled Enemies on Hit Damage Penetrates 20% Cold Resistance against Chilled Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=4,keywordFlags=0,name="ColdPenetration",type="BASE",value=20}},"Blind Chilled Enemies "} c["Blind Enemies on Hit"]={nil,"Blind Enemies on Hit "} -c["Blind does not affect your Chance to Hit"]={{[1]={flags=0,keywordFlags=0,name="IgnoreBlindHitChance",type="FLAG",value=true}},nil} c["Blind does not affect your Light Radius"]={nil,"Blind does not affect your Light Radius "} c["Blind does not affect your Light Radius 25% more Melee Critical Strike Chance while Blinded"]={nil,"Blind does not affect your Light Radius 25% more Melee Critical Strike Chance while Blinded "} c["Blind does not affect your Light Radius Blind you inflict is Reflected to you"]={nil,"Blind does not affect your Light Radius Blind you inflict is Reflected to you "} @@ -7877,6 +7765,7 @@ c["Bow Attacks Sacrifice a random Damageable Minion to fire 2 additional Arrow"] c["Bow Attacks Sacrifice a random Damageable Minion to fire 3 additional Arrow"]={{[1]={[1]={type="Condition",var="SacrificeMinionOnAttack"},[2]={type="Condition",var="HaveDamageableMinion"},[3]={neg=true,skillType=41,type="SkillType"},[4]={neg=true,skillType=30,type="SkillType"},flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=3}},nil} c["Bow Attacks fire 2 additional Arrows"]={{[1]={flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=2}},nil} c["Bow Attacks fire 2 additional Arrows if you haven't Cast Dash recently"]={{[1]={[1]={neg=true,type="Condition",var="CastDashRecently"},flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=2}},nil} +c["Bow Attacks fire 4 additional Arrows"]={{[1]={flags=0,keywordFlags=2048,name="ProjectileCount",type="BASE",value=4}},nil} c["Bow Attacks fire an additional Arrow"]={{[1]={flags=131072,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} c["Bow Attacks have Culling Strike"]={{[1]={flags=131073,keywordFlags=0,name="CullPercent",type="MAX",value=10}},nil} c["Bow Knockback at Close Range"]={{[1]={[1]={type="Condition",var="AtCloseRange"},flags=131072,keywordFlags=0,name="EnemyKnockbackChance",type="BASE",value=100}},nil} @@ -7901,8 +7790,6 @@ c["Brands Attach to a new Enemy each time they Activate, no more than once every c["Brands have 100% more Activation Frequency if 75% of Attached Duration expired"]={{[1]={[1]={type="Condition",var="BrandLastQuarter"},flags=0,keywordFlags=0,name="BrandActivationFrequency",type="MORE",value=100}},nil} c["Brands have 25% increased Area of Effect if 50% of Attached Duration expired"]={{[1]={[1]={type="Condition",var="BrandLastHalf"},[2]={skillType=75,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=25}},nil} c["Brands have 30% increased Area of Effect if 50% of Attached Duration expired"]={{[1]={[1]={type="Condition",var="BrandLastHalf"},[2]={skillType=75,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=30}},nil} -c["Buffs from Active Ancestor Totems Linger for 4 seconds"]={nil,"Buffs from Active Ancestor Totems Linger for 4 seconds "} -c["Buffs from Active Ancestor Totems Linger for 4 seconds Maximum 1 Buff from an Active Ancestor Totem at a time"]={nil,"Buffs from Active Ancestor Totems Linger for 4 seconds Maximum 1 Buff from an Active Ancestor Totem at a time "} c["Buffs on you expire 30% slower"]={nil,"Buffs on you expire 30% slower "} c["Buffs on you expire 30% slower Debuffs on you expire 30% faster"]={nil,"Buffs on you expire 30% slower Debuffs on you expire 30% faster "} c["Buffs on you expire 30% slower Debuffs on you expire 30% faster Limited to 1 Runegraft of the Warp"]={nil,"Buffs on you expire 30% slower Debuffs on you expire 30% faster Limited to 1 Runegraft of the Warp "} @@ -7928,15 +7815,15 @@ c["Can Allocate Passives from the Ranger's starting point"]={{},nil} c["Can Allocate Passives from the Shadow's starting point"]={{},nil} c["Can Allocate Passives from the Templar's starting point"]={{},nil} c["Can Allocate Passives from the Witch's starting point"]={{},nil} -c["Can Consume 4 Support Gems"]={nil,"Can Consume 4 Support Gems "} -c["Can Consume 4 Support Gems Has not Consumed any Gems"]={nil,"Can Consume 4 Support Gems Has not Consumed any Gems "} +c["Can Consume 4 Uncorrupted Support Gems"]={nil,"Can Consume 4 Uncorrupted Support Gems "} +c["Can Consume 4 Uncorrupted Support Gems Has not Consumed any Gems"]={nil,"Can Consume 4 Uncorrupted Support Gems Has not Consumed any Gems "} c["Can be Enchanted by a Kalguuran Runesmith"]={nil,"Can be Enchanted by a Kalguuran Runesmith "} +c["Can be Enchanted by a Kalguuran Runesmith Can have 2 additional Runesmithing Enchantments"]={nil,"Can be Enchanted by a Kalguuran Runesmith Can have 2 additional Runesmithing Enchantments "} +c["Can be Runesmithed as though it were all One Handed Melee Weapon Types"]={nil,"Can be Runesmithed as though it were all One Handed Melee Weapon Types "} c["Can be modified while Corrupted"]={nil,"Can be modified while Corrupted "} -c["Can be modified while Corrupted 40% increased maximum Life and reduced Fire Resistance"]={nil,"Can be modified while Corrupted 40% increased maximum Life and reduced Fire Resistance "} 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["Can have 1 additional Siege Ballista Totem per 200 Dexterity"]={{[1]={[1]={includeTransfigured=true,skillName="Siege Ballista",type="SkillName"},[2]={div=200,stat="Dex",type="PerStat"},flags=0,keywordFlags=0,name="ActiveBallistaLimit",type="BASE",value=1}},nil} c["Can have 2 additional Runesmithing Enchantments"]={nil,"Can have 2 additional Runesmithing Enchantments "} -c["Can have 2 additional Runesmithing Enchantments Can be Enchanted by a Kalguuran Runesmith"]={nil,"Can have 2 additional Runesmithing Enchantments Can be Enchanted by a Kalguuran Runesmith "} +c["Can have 2 additional Runesmithing Enchantments Can be Runesmithed as though it were all One Handed Melee Weapon Types"]={nil,"Can have 2 additional Runesmithing Enchantments Can be Runesmithed as though it were all One Handed Melee Weapon Types "} c["Can have 3 additional Enchantment Modifiers"]={{},nil} c["Can have 5 fewer Traps placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTrapLimit",type="BASE",value=-5}},nil} c["Can have a second Enchantment Modifier"]={{},nil} @@ -7946,6 +7833,7 @@ c["Can have up to 2 additional Traps placed at a time"]={{[1]={flags=0,keywordFl c["Can have up to 3 additional Remote Mines placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveMineLimit",type="BASE",value=3}},nil} c["Can have up to 4 additional Traps placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTrapLimit",type="BASE",value=4}},nil} 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["Can have up to 5 Implicit Modifiers while Item has this Modifier +2 to Level of Socketed Gems"]={nil,"Can have up to 5 Implicit Modifiers while Item has this Modifier +2 to Level of Socketed Gems "} 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["Can have up to 5 additional Traps placed at a time"]={{[1]={flags=0,keywordFlags=0,name="ActiveTrapLimit",type="BASE",value=5}},nil} c["Can't use Amulets"]={{[1]={[1]={slotName="Amulet",type="DisablesItem"},flags=0,keywordFlags=0,name="CanNotUseItem",type="Flag",value=1}},nil} @@ -7958,7 +7846,6 @@ c["Can't use Life Flasks +70 to maximum Mana"]={nil,"Can't use Life Flasks +70 t c["Can't use Mana Flasks"]={nil,"Can't use Mana Flasks "} c["Can't use Mana Flasks On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50%"]={nil,"Can't use Mana Flasks On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50% "} c["Can't use other Rings"]={{[1]={[1]={slotName="Ring 2",type="DisablesItem"},[2]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="CanNotUseItem",type="Flag",value=1},[2]={[1]={slotName="Ring 1",type="DisablesItem"},[2]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="CanNotUseItem",type="Flag",value=1}},nil} -c["Cannot Be Slowed to Below Base Speed"]={{[1]={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="MinimumActionSpeed",type="MAX",value=100}},nil} c["Cannot Be Stunned while you have Energy Shield"]={{[1]={[1]={type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="StunImmune",type="FLAG",value=true}},nil} 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["Cannot Block Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="CannotBlockAttacks",type="FLAG",value=true}},nil} @@ -7991,26 +7878,21 @@ c["Cannot be Chilled while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyC c["Cannot be Frozen"]={{[1]={flags=0,keywordFlags=0,name="FreezeImmune",type="FLAG",value=true}},nil} c["Cannot be Frozen if 6 Redeemer Items are Equipped"]={{[1]={[1]={threshold=6,type="MultiplierThreshold",var="RedeemerItem"},flags=0,keywordFlags=0,name="FreezeImmune",type="FLAG",value=true}},nil} c["Cannot be Frozen if Dexterity is higher than Intelligence"]={{[1]={[1]={type="Condition",var="DexHigherThanInt"},flags=0,keywordFlags=0,name="FreezeImmune",type="FLAG",value=true}},nil} -c["Cannot be Frozen or Chilled if you've used a Fire Skill Recently"]={{[1]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,keywordFlags=0,name="FreezeImmune",type="FLAG",value=true},[2]={[1]={type="Condition",var="UsedFireSkillRecently"},flags=0,keywordFlags=0,name="ChillImmune",type="FLAG",value=true}},nil} c["Cannot be Ignited"]={{[1]={flags=0,keywordFlags=0,name="IgniteImmune",type="FLAG",value=true}},nil} c["Cannot be Ignited if Strength is higher than Dexterity"]={{[1]={[1]={type="Condition",var="StrHigherThanDex"},flags=0,keywordFlags=0,name="IgniteImmune",type="FLAG",value=true}},nil} c["Cannot be Ignited while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},[2]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="IgniteImmune",type="FLAG",value=true}},nil} -c["Cannot be Ignited while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="IgniteImmune",type="FLAG",value=true}},nil} c["Cannot be Knocked Back"]={{[1]={flags=0,keywordFlags=0,name="KnockbackImmune",type="FLAG",value=true}},nil} c["Cannot be Poisoned"]={{[1]={flags=0,keywordFlags=0,name="PoisonImmune",type="FLAG",value=true}},nil} c["Cannot be Poisoned while Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="PoisonImmune",type="FLAG",value=true}},nil} c["Cannot be Shocked"]={{[1]={flags=0,keywordFlags=0,name="ShockImmune",type="FLAG",value=true}},nil} c["Cannot be Shocked if Intelligence is higher than Strength"]={{[1]={[1]={type="Condition",var="IntHigherThanStr"},flags=0,keywordFlags=0,name="ShockImmune",type="FLAG",value=true}},nil} -c["Cannot be Shocked while Chilled"]={{[1]={[1]={type="Condition",var="Chilled"},flags=0,keywordFlags=0,name="ShockImmune",type="FLAG",value=true}},nil} c["Cannot be Shocked while at maximum Power Charges"]={{[1]={[1]={stat="PowerCharges",thresholdStat="PowerChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="ShockImmune",type="FLAG",value=true}},nil} c["Cannot be Stunned"]={{[1]={flags=0,keywordFlags=0,name="StunImmune",type="FLAG",value=true}},nil} c["Cannot be Stunned by Attacks if your opposite Ring is an Elder Item"]={nil,"Cannot be Stunned by Attacks if your opposite Ring is an Elder Item "} -c["Cannot be Stunned by Attacks if your opposite Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill"]={nil,"Cannot be Stunned by Attacks if your opposite Ring is an Elder Item 20% chance to Trigger Level 20 Tentacle Whip on Kill "} c["Cannot be Stunned by Hits that deal only Physical Damage"]={nil,"Cannot be Stunned by Hits that deal only Physical Damage "} c["Cannot be Stunned by Hits you Block"]={nil,"Cannot be Stunned by Hits you Block "} c["Cannot be Stunned by Hits you Block Cannot be Stunned while Fortified"]={nil,"Cannot be Stunned by Hits you Block Cannot be Stunned while Fortified "} c["Cannot be Stunned by Spells if your opposite Ring is a Shaper Item"]={nil,"Cannot be Stunned by Spells if your opposite Ring is a Shaper Item "} -c["Cannot be Stunned by Spells if your opposite Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill"]={nil,"Cannot be Stunned by Spells if your opposite Ring is a Shaper Item 20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill "} c["Cannot be Stunned by Suppressed Spell Damage"]={nil,"Cannot be Stunned by Suppressed Spell Damage "} c["Cannot be Stunned by Suppressed Spell Damage Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage"]={nil,"Cannot be Stunned by Suppressed Spell Damage Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage "} c["Cannot be Stunned if 6 Elder Items are Equipped"]={{[1]={[1]={threshold=6,type="MultiplierThreshold",var="ElderItem"},flags=0,keywordFlags=0,name="StunImmune",type="FLAG",value=true}},nil} @@ -8023,7 +7905,7 @@ c["Cannot be Stunned while Fortified"]={{[1]={[1]={type="Condition",var="Fortifi c["Cannot be Stunned while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="StunImmune",type="FLAG",value=true}},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="StunImmune",type="FLAG",value=true}},nil} c["Cannot be used with Chaos Inoculation"]={nil,"Cannot be used with Chaos Inoculation "} -c["Cannot be used with Chaos Inoculation +20 to Intelligence"]={nil,"Cannot be used with Chaos Inoculation +20 to Intelligence "} +c["Cannot be used with Chaos Inoculation Reserves 30% of Life"]={nil,"Cannot be used with Chaos Inoculation Reserves 30% of Life "} c["Cannot deal Critical Strikes with Attacks"]={{[1]={flags=1,keywordFlags=0,name="NeverCrit",type="FLAG",value=true},[2]={flags=1,keywordFlags=0,name="Condition:NeverCrit",type="FLAG",value=true}},nil} c["Cannot deal non-Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",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},[4]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true}},nil} c["Cannot gain Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="CannotGainEnergyShield",type="FLAG",value=true}},nil} @@ -8084,7 +7966,6 @@ c["Carved to glorify 10000 new faithful converted by High Templar Dominus"]={{[1 c["Carved to glorify 10000 new faithful converted by High Templar Maxarius"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id="1_v2",type="templar"},id=10000}}}},nil} c["Carved to glorify 10000 new faithful converted by High Templar Venarius"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=1,type="templar"},id=10000}}}},nil} c["Carved to glorify 6000 new faithful converted by High Templar Avarius"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=3,type="templar"},id=6000}}}},nil} -c["Cast Socketed Minion Spells on Kill with this Weapon"]={nil,"Cast Socketed Minion Spells on Kill with this Weapon "} c["Celestial Footprints"]={nil,"Celestial Footprints "} c["Chance to Block Attack Damage is doubled"]={{[1]={flags=0,keywordFlags=0,name="BlockChance",type="MORE",value=100}},nil} c["Chance to Block Attack or Spell Damage is Lucky if you've Blocked Recently"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="BlockChanceIsLucky",type="FLAG",value=true},[2]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="ProjectileBlockChanceIsLucky",type="FLAG",value=true},[3]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="SpellBlockChanceIsLucky",type="FLAG",value=true},[4]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="SpellProjectileBlockChanceIsLucky",type="FLAG",value=true}},nil} @@ -8103,17 +7984,17 @@ c["Channelling Skills deal 60% increased Damage"]={{[1]={[1]={skillType=57,type= c["Channelling Skills deal 70% increased Damage"]={{[1]={[1]={skillType=57,type="SkillType"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}},nil} c["Channelling Skills have 8% increased Attack and Cast Speed"]={{[1]={[1]={skillType=57,type="SkillType"},flags=0,keywordFlags=0,name="Speed",type="INC",value=8}},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["Chaos Damage does not bypass Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ChaosNotBypassEnergyShield",type="FLAG",value=true}},nil} -c["Chaos Damage does not bypass Energy Shield while not on Low Life"]={{[1]={[1]={neg=true,type="Condition",varList={[1]="LowLife"}},flags=0,keywordFlags=0,name="ChaosNotBypassEnergyShield",type="FLAG",value=true}},nil} c["Chaos Damage is taken from Mana before Life"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageTakenFromManaBeforeLife",type="BASE",value=100}},nil} c["Chaos Damage taken does not bypass Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="ChaosNotBypassEnergyShield",type="FLAG",value=true}},nil} c["Chaos Damage taken does not bypass Energy Shield during effect"]={{[1]={flags=0,keywordFlags=0,name="ChaosNotBypassEnergyShield",type="FLAG",value=true}},nil} +c["Chaos Damage taken does not bypass Energy Shield while not on Low Life"]={{[1]={[1]={neg=true,type="Condition",varList={[1]="LowLife"}},flags=0,keywordFlags=0,name="ChaosNotBypassEnergyShield",type="FLAG",value=true}},nil} c["Chaos Damage taken does not bypass Minions' Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosNotBypassEnergyShield",type="FLAG",value=true}}}},nil} c["Chaos Resistance is Zero"]={{[1]={flags=0,keywordFlags=0,name="ChaosResist",type="OVERRIDE",value=0}},nil} c["Chaos Resistance is doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="ChaosResistDoubledLimit",type="Multiplier",var="ChaosResistDoubled"},flags=0,keywordFlags=0,name="ChaosResist",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:ChaosResistDoubled",type="OVERRIDE",value=1}},nil} c["Chaos Skills have 14% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=14}},nil} c["Chaos Skills have 15% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=15}},nil} c["Chaos Skills have 20% chance to Ignite"]={{[1]={flags=0,keywordFlags=256,name="EnemyIgniteChance",type="BASE",value=20}},nil} +c["Chaos Skills have 40% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=40}},nil} c["Chaos Skills have 49% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=49}},nil} c["Chaos Skills have 57% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=256,name="Duration",type="INC",value=57}},nil} c["Chaos Skills ignore interruption from Stuns"]={nil,"Chaos Skills ignore interruption from Stuns "} @@ -8130,8 +8011,8 @@ c["Chill Effect and Freeze Duration on you are based on 65% of Energy Shield Chi c["Chill Enemies as though dealing 100% more Damage"]={{[1]={flags=0,keywordFlags=0,name="ChillAsThoughDealing",type="MORE",value=100}},nil} c["Chill Enemies as though dealing 80% more Damage"]={{[1]={flags=0,keywordFlags=0,name="ChillAsThoughDealing",type="MORE",value=80}},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["Chill Enemy for 1 second when Hit"]={nil,"Chill Enemy for 1 second when Hit "} -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["Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%"]={nil,"Chill Enemy for 1 second when Hit, reducing their Action Speed by 30% "} +c["Chill Enemy for 1 second when Hit, reducing their Action Speed by 30% Blind Chilled Enemies on Hit"]={nil,"Chill Enemy for 1 second when Hit, reducing their Action Speed by 30% Blind Chilled Enemies on Hit "} 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["Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Rate"]={nil,"Chill nearby Enemies when you Focus, causing 30% reduced Action Speed Focus has 25% increased Cooldown Recovery Rate "} c["Chills from your Hits always reduce Action Speed by at least 10%"]={{[1]={flags=0,keywordFlags=0,name="ChillBase",type="BASE",value=10}},nil} @@ -8177,11 +8058,11 @@ c["Consecrated Ground you create grants 30% increased Accuracy Rating to you and c["Consecrated Ground you create grants 30% increased Mana Regeneration"]={{[1]={[1]={type="Condition",var="OnConsecratedGround"},flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=30}},nil} c["Consecrated Ground you create while affected by Zealotry causes enemies to take 10% increased Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnConsecratedGround"},[2]={type="Condition",var="AffectedByZealotry"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTakenConsecratedGround",type="INC",value=10}}}},nil} c["Consumes Frenzy Charges on use"]={nil,"Consumes Frenzy Charges on use "} -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["Consumes Frenzy Charges on use Gain Onslaught for 1 second per Frenzy Charge consumed on use"]={nil,"Consumes Frenzy Charges on use Gain Onslaught for 1 second per Frenzy Charge consumed on use "} c["Consumes Maximum Charges to use"]={nil,"Consumes Maximum Charges to use "} c["Consumes Maximum Charges to use Gain Vaal Souls equal to Charges Consumed when used"]={nil,"Consumes Maximum Charges to use Gain Vaal Souls equal to Charges Consumed when used "} -c["Consumes Socketed Support Gems when they reach Maximum Level"]={nil,"Consumes Socketed Support Gems when they reach Maximum Level "} -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["Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level"]={nil,"Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level "} +c["Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level Can Consume 4 Uncorrupted Support Gems"]={nil,"Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level Can Consume 4 Uncorrupted Support Gems "} c["Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="VoidShot",triggered=true}}},nil} c["Converts all Evasion Rating to Armour. Dexterity provides no bonus to Evasion Rating"]={{[1]={flags=0,keywordFlags=0,name="NoDexBonusToEvasion",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="IronReflexes",type="FLAG",value=true}},nil} c["Convocation has 40% increased Cooldown Recovery Rate"]={{[1]={[1]={includeTransfigured=true,skillName="Convocation",type="SkillName"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=40}},nil} @@ -8199,7 +8080,7 @@ c["Counts as all One Handed Melee Weapon Types"]={{[1]={flags=0,keywordFlags=0,n c["Cover Enemies in Ash when they Hit you"]={nil,"Cover Enemies in Ash when they Hit you "} 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["Cover Enemies in Ash when they Hit you Nearby Enemies are Covered in Ash"]={nil,"Cover Enemies in Ash when they Hit you Nearby Enemies are Covered in Ash "} -c["Cover Full Life Enemies in Ash for 10 seconds on Melee Weapon hit"]={nil,"Cover Full Life Enemies in Ash for 10 seconds on Melee Weapon hit "} +c["Cover Full Life Enemies in Ash for 10 seconds on Melee Weapon Hit"]={nil,"Cover Full Life Enemies in Ash for 10 seconds on Melee Weapon Hit "} c["Create Consecrated Ground when you Shatter an Enemy"]={nil,"Create Consecrated Ground when you Shatter an Enemy "} 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["Create Fungal Ground instead of Consecrated Ground"]={{[1]={flags=0,keywordFlags=0,name="Condition:CreateFungalGround",type="FLAG",value=true}},nil} @@ -8216,15 +8097,15 @@ c["Crimson Dance"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",val c["Critical Strike Chance is 30% for Hits with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="CritChance",type="OVERRIDE",value=30}},nil} c["Critical Strike Chance is 35% for Hits with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="CritChance",type="OVERRIDE",value=35}},nil} c["Critical Strike Chance is 40% for Hits with this Weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=4,keywordFlags=0,name="CritChance",type="OVERRIDE",value=40}},nil} -c["Critical Strike Chance is increased by Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="CritChanceIncreasedByLightningRes",type="FLAG",value=true}},nil} c["Critical Strike Chance is increased by Overcapped Lightning Resistance"]={{[1]={flags=0,keywordFlags=0,name="CritChanceIncreasedByOvercappedLightningRes",type="FLAG",value=true}},nil} c["Critical Strikes Penetrate 10% of Enemy Elemental Resistances while affected by Zealotry"]={{[1]={[1]={type="Condition",var="CriticalStrike"},[2]={type="Condition",var="AffectedByZealotry"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=10}},nil} c["Critical Strikes against you do not inherently inflict Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="CritsOnYouDontAlwaysApplyElementalAilments",type="FLAG",value=true}},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["Critical Strikes do not always Freeze"]={{[1]={flags=0,keywordFlags=0,name="CritsDontAlwaysFreeze",type="FLAG",value=true}},nil} c["Critical Strikes do not deal extra Damage"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil} +c["Critical Strikes do not inherently Freeze"]={{[1]={flags=0,keywordFlags=0,name="CritsDontAlwaysFreeze",type="FLAG",value=true}},nil} c["Critical Strikes do not inherently Ignite"]={{[1]={flags=0,keywordFlags=0,name="CritsDontAlwaysIgnite",type="FLAG",value=true}},nil} -c["Critical Strikes do not inherently apply non-Damaging Ailments"]={{[1]={flags=0,keywordFlags=0,name="CritsDontAlwaysChill",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="CritsDontAlwaysFreeze",type="FLAG",value=true},[3]={flags=0,keywordFlags=0,name="CritsDontAlwaysShock",type="FLAG",value=true}},nil} +c["Critical Strikes do not inherently inflict non-Damaging Ailments"]={nil,"Critical Strikes do not inherently inflict non-Damaging Ailments "} +c["Critical Strikes do not inherently inflict non-Damaging Ailments Inflict non-Damaging Ailments as though dealing 200% more Damage"]={nil,"Critical Strikes do not inherently inflict non-Damaging Ailments Inflict non-Damaging Ailments as though dealing 200% more Damage "} 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["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["Critical Strikes have Culling Strike"]={{[1]={flags=0,keywordFlags=0,name="CriticalCullPercent",type="MAX",value=10}},nil} @@ -8249,7 +8130,6 @@ c["Culling Strike during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"} c["Curse Auras from Socketed Skills also affect you"]={nil,"Curse Auras from Socketed Skills also affect you "} c["Curse Auras from Socketed Skills also affect you Socketed Curse Gems have 50% increased Reservation Efficiency"]={nil,"Curse Auras from Socketed Skills also affect you Socketed Curse Gems have 50% increased Reservation Efficiency "} c["Curse Enemies which Hit you with a random Hex, ignoring Curse Limit"]={nil,"Curse Enemies which Hit you with a random Hex, ignoring Curse Limit "} -c["Curse Enemies which Hit you with a random Hex, ignoring Curse Limit 5% chance to create Shocked Ground when Hit"]={nil,"Curse Enemies which Hit you with a random Hex, ignoring Curse Limit 5% chance to create Shocked Ground when Hit "} c["Curse Enemies with Conductivity on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="Conductivity",triggered=true}}},nil} c["Curse Enemies with Elemental Weakness on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,noSupports=true,skillId="ElementalWeakness",triggered=true}}},nil} c["Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit"]={nil,"Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit "} @@ -8268,6 +8148,7 @@ c["Curse Skills have 10% increased Cast Speed"]={{[1]={flags=16,keywordFlags=2,n c["Curse Skills have 100% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=100}},nil} c["Curse Skills have 12% increased Cast Speed"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=12}},nil} c["Curse Skills have 15% increased Cast Speed"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=15}},nil} +c["Curse Skills have 20% increased Cast Speed"]={{[1]={flags=16,keywordFlags=2,name="Speed",type="INC",value=20}},nil} c["Curse Skills have 20% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=20}},nil} c["Curse Skills have 25% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=25}},nil} c["Curse Skills have 40% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=2,name="Duration",type="INC",value=40}},nil} @@ -8318,12 +8199,12 @@ c["Damage Penetrates 8% of Enemy Elemental Resistances"]={{[1]={flags=0,keywordF c["Damage Penetrates 9% Elemental Resistances while you are Chilled"]={{[1]={[1]={type="Condition",var="Chilled"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=9}},nil} c["Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200%"]={{[1]={[1]={limit=200,limitTotal=true,stat="FireResistOverCap",type="PerStat"},flags=0,keywordFlags=0,name="FirePenetration",type="BASE",value=1}},nil} c["Damage cannot be Reflected"]={{[1]={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="ReflectedDamageTaken",type="MORE",value=-100}},nil} -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["Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You count as on Full Life while you are Cursed with Vulnerability"]={nil,"Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You count as on Full Life while you are Cursed with Vulnerability "} c["Damage from your Critical Strikes cannot be Reflected"]={nil,"Damage from your Critical Strikes cannot be Reflected "} c["Damage from your Critical Strikes cannot be Reflected +5% to Critical Strike Multiplier per Power Charge"]={nil,"Damage from your Critical Strikes cannot be Reflected +5% to Critical Strike Multiplier per Power Charge "} c["Damage of Enemies Hitting you is Unlucky"]={nil,"Damage of Enemies Hitting you is Unlucky "} c["Damage of Enemies Hitting you is Unlucky Damage with Hits is Unlucky"]={nil,"Damage of Enemies Hitting you is Unlucky Damage with Hits is Unlucky "} +c["Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability"]={nil,"Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability "} +c["Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You count as on Full Life while you are Cursed with Vulnerability"]={nil,"Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability You count as on Full Life while you are Cursed with Vulnerability "} c["Damage of Enemies Hitting you is Unlucky while you are on Full Life"]={nil,"Damage of Enemies Hitting you is Unlucky while you are on Full Life "} c["Damage of Enemies Hitting you is Unlucky while you are on Low Life"]={nil,"Damage of Enemies Hitting you is Unlucky while you are on Low Life "} c["Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped"]={nil,"Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped "} @@ -8335,6 +8216,8 @@ c["Damage taken bypasses Unbroken Ward if the Hit deals less Damage than 15% of c["Damage taken from Blocked Hits cannot bypass Energy Shield"]={{[1]={[1]={neg=true,type="Condition",var="EVBypass"},flags=0,keywordFlags=0,name="BlockedDamageDoesntBypassES",type="FLAG",value=true}},nil} c["Damage taken from Unblocked hits always bypasses Energy Shield"]={{[1]={[1]={neg=true,type="Condition",var="EVBypass"},flags=0,keywordFlags=0,name="UnblockedDamageDoesBypassES",type="FLAG",value=true}},nil} c["Damage to Surrounding Targets"]={nil,"Damage to Surrounding Targets "} +c["Damage to surrounding targets"]={nil,"Damage to surrounding targets "} +c["Damage to surrounding targets Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage"]={nil,"Damage to surrounding targets Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage "} c["Damage with Hits from Socketed Vaal Skills is Lucky"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="LuckyHits",type="FLAG",value=true}}}},nil} c["Damage with Hits is Unlucky"]={{[1]={flags=0,keywordFlags=0,name="UnluckyHits",type="FLAG",value=true}},nil} c["Damage with Weapons Penetrates 2% Elemental Resistances"]={{[1]={flags=8192,keywordFlags=0,name="ElementalPenetration",type="BASE",value=2}},nil} @@ -8374,13 +8257,10 @@ c["Deal no Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical" c["Deal no Physical or Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="DealNoPhysical",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},[4]={flags=0,keywordFlags=0,name="DealNoLightning",type="FLAG",value=true}},nil} c["Deal up to 15% more Melee Damage to Enemies, based on proximity"]={{[1]={[1]={ramp={[1]=1,[2]=0},type="MeleeProximity"},flags=257,keywordFlags=0,name="Damage",type="MORE",value=15}},nil} c["Deals 450 Chaos Damage per second to nearby Enemies"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies "} -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["Deals 450 Chaos Damage per second to nearby Enemies You take 450 Chaos Damage per second for 0 seconds on Kill"]={nil,"Deals 450 Chaos Damage per second to nearby Enemies You take 450 Chaos Damage per second for 0 seconds on Kill "} c["Deals 50 Chaos Damage per second to nearby Enemies"]={nil,"Deals 50 Chaos Damage per second to nearby Enemies "} c["Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="DebilitateChance",type="BASE",value=100}},nil} c["Debilitate nearby Enemies for 2 Seconds when Effect ends"]={{[1]={flags=0,keywordFlags=0,name="DebilitateChance",type="BASE",value=100}},nil} -c["Debuffs on you Expire 100% Faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=100}},nil} -c["Debuffs on you Expire 100% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=100}},nil} -c["Debuffs on you Expire 90% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=90}},nil} c["Debuffs on you expire 10% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=10}},nil} c["Debuffs on you expire 100% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=100}},nil} c["Debuffs on you expire 15% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=15}},nil} @@ -8389,12 +8269,11 @@ c["Debuffs on you expire 20% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDe c["Debuffs on you expire 20% faster while affected by Haste"]={nil,"Debuffs on you expire 20% faster while affected by Haste "} c["Debuffs on you expire 20% faster while affected by Haste You gain Onslaught for 4 seconds on Kill while affected by Haste"]={nil,"Debuffs on you expire 20% faster while affected by Haste You gain Onslaught for 4 seconds on Kill while affected by Haste "} c["Debuffs on you expire 30% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=30}},nil} +c["Debuffs on you expire 90% faster"]={{[1]={flags=0,keywordFlags=0,name="SelfDebuffExpirationRate",type="BASE",value=90}},nil} c["Defences are Zero"]={{[1]={flags=0,keywordFlags=0,name="Armour",type="MORE",value=-100},[2]={flags=0,keywordFlags=0,name="EnergyShield",type="MORE",value=-100},[3]={flags=0,keywordFlags=0,name="Evasion",type="MORE",value=-100},[4]={flags=0,keywordFlags=0,name="Ward",type="MORE",value=-100}},nil} c["Defend with 120% of Armour against Projectile Attacks"]={nil,"Defend with 120% of Armour against Projectile Attacks "} c["Defend with 120% of Armour against Projectile Attacks 5% more chance to Evade Melee Attacks"]={nil,"Defend with 120% of Armour against Projectile Attacks 5% more chance to Evade Melee Attacks "} -c["Denoted service of 4250 dekhara in the akhara of Balbala"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id="1_v2",type="maraketh"},id=4250}}}},nil} c["Denoted service of 8000 dekhara in the akhara of Asenath"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=2,type="maraketh"},id=8000}}}},nil} -c["Denoted service of 8000 dekhara in the akhara of Balbala"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id="1_v2",type="maraketh"},id=8000}}}},nil} c["Denoted service of 8000 dekhara in the akhara of Deshret"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=1,type="maraketh"},id=8000}}}},nil} c["Denoted service of 8000 dekhara in the akhara of Nasima"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="conqueredBy",value={conqueror={id=3,type="maraketh"},id=8000}}}},nil} c["Desecrate and Unearth have +2 to Maximum number of corpses allowed"]={nil,"and Unearth have +2 to Maximum number of corpses allowed "} @@ -8412,11 +8291,11 @@ c["Discipline has 50% increased Aura Effect while at Minimum Power Charges"]={{[ c["Discipline has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} c["Discipline has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Discipline",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} c["Discipline has no Reservation"]={{[1]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Discipline",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} -c["Dispels Elemental Ailments on Rampage"]={nil,"Dispels Elemental Ailments on Rampage "} -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["Divine Flesh"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Divine Flesh"}},nil} c["Divine Shield"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Divine Shield"}},nil} c["Does not delay Inherent Loss of Rage"]={nil,"Does not delay Inherent Loss of Rage "} +c["Does not delay Inherent Loss of Rage Regenerate 1 Rage per second for every 200 Life Recovery per second from Regeneration"]={nil,"Does not delay Inherent Loss of Rage Regenerate 1 Rage per second for every 200 Life Recovery per second from Regeneration "} +c["Does not delay Inherent Loss of Rage Regenerate 1 Rage per second for every 300 Life Recovery per second from Regeneration"]={nil,"Does not delay Inherent Loss of Rage Regenerate 1 Rage per second for every 300 Life Recovery per second from Regeneration "} c["Does not delay Inherent Loss of Rage Skills Cost +3 Rage"]={{[1]={flags=0,keywordFlags=0,name="RageCostNoMult",type="BASE",value=3}},"Does not delay Inherent Loss of Rage "} c["Does not inflict Mana Burn over time"]={nil,"Does not inflict Mana Burn over time "} c["Does not inflict Mana Burn over time Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon"]={nil,"Does not inflict Mana Burn over time Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon "} @@ -8440,8 +8319,8 @@ c["Each Summoned Phantasm grants you Phantasmal Might"]={{[1]={flags=0,keywordFl c["Each Totem applies 1% increased Damage taken to Enemies near it"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Multiplier",var="TotemsSummoned"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=1}}}},nil} c["Eat 3 Souls when you Kill a Rare or Unique Enemy with this Weapon"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanHaveSoulEater",type="FLAG",value=true}},nil} c["Eat 4 Souls when you Kill a Rare or Unique Enemy with this Weapon"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanHaveSoulEater",type="FLAG",value=true}},nil} +c["Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanHaveSoulEater",type="FLAG",value=true}},nil} c["Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.5 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanHaveSoulEater",type="FLAG",value=true}},nil} -c["Eat a Soul when you Hit a Unique Enemy, no more than once every second"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanHaveSoulEater",type="FLAG",value=true}},nil} c["Effect is removed when Ward Breaks"]={nil,"Effect is removed when Ward Breaks "} c["Effect is removed when Ward Breaks Culling Strike during Effect"]={nil,"Effect is removed when Ward Breaks Culling Strike during Effect "} c["Effects of Consecrated Ground you create Linger for 2 seconds"]={nil,"Effects of Consecrated Ground you create Linger for 2 seconds "} @@ -8476,21 +8355,20 @@ c["Elusive on you reduces in effect 50% slower"]={nil,"Elusive on you reduces in c["Elusive on you reduces in effect 50% slower Elusive is removed from you at 20% effect"]={nil,"Elusive on you reduces in effect 50% slower Elusive is removed from you at 20% effect "} c["Elusive's Effect on you is increased instead for the first 2 seconds"]={nil,"Elusive's Effect on you is increased instead for the first 2 seconds "} c["Elusive's Effect on you is increased instead for the first 2 seconds Limited to 1 Runegraft of the Agile"]={nil,"Elusive's Effect on you is increased instead for the first 2 seconds Limited to 1 Runegraft of the Agile "} +c["Endurance, Frenzy and Power Charges as you"]={nil,"Endurance, Frenzy and Power Charges as you "} c["Enemies Become Chilled as they Unfreeze, causing 30% reduced Action Speed"]={nil,"Enemies Become Chilled as they Unfreeze, causing 30% reduced Action Speed "} c["Enemies Become Chilled as they Unfreeze, causing 30% reduced Action Speed 30% chance to Freeze Enemies which are Chilled"]={nil,"Enemies Become Chilled as they Unfreeze, causing 30% reduced Action Speed 30% chance to Freeze Enemies which are Chilled "} c["Enemies Blinded by you cannot inflict Damaging Ailments"]={nil,"you cannot inflict Damaging Ailments "} c["Enemies Blinded by you cannot inflict Damaging Ailments Grants Level 20 Blazing Glare"]={nil,"you cannot inflict Damaging Ailments Grants Level 20 Blazing Glare "} c["Enemies Blinded by you have Malediction"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Blinded"},flags=0,keywordFlags=0,name="HasMalediction",type="FLAG",value=true}}}},nil} -c["Enemies Cannot Leech Life From You"]={nil,"Enemies Cannot Leech Life From You "} c["Enemies Cannot Leech Life From you"]={nil,"Enemies Cannot Leech Life From you "} -c["Enemies Cannot Leech Mana From You"]={nil,"Enemies Cannot Leech Mana From You "} -c["Enemies Cannot Leech Mana From You 10% of Damage taken Recouped as Mana"]={nil,"Enemies Cannot Leech Mana From You 10% of Damage taken Recouped as Mana "} +c["Enemies Cannot Leech Mana From you"]={nil,"Enemies Cannot Leech Mana From you "} +c["Enemies Cannot Leech Mana From you 10% of Damage taken Recouped as Mana"]={nil,"Enemies Cannot Leech Mana From you 10% of Damage taken Recouped as Mana "} c["Enemies Chilled by your Hits can be Shattered as though Frozen"]={nil,"your Hits can be Shattered as though Frozen "} c["Enemies Chilled by your Hits can be Shattered as though Frozen Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect"]={nil,"your Hits can be Shattered as though Frozen Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect "} c["Enemies Chilled by your Hits have Damage taken increased by Chill Effect"]={{[1]={flags=0,keywordFlags=0,name="ChillEffectIncDamageTaken",type="FLAG",value=true}},nil} c["Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect"]={{[1]={flags=0,keywordFlags=0,name="ChillEffectLessDamageDealt",type="FLAG",value=true}},nil} c["Enemies Cursed by you are Hindered if 25% of Curse Duration expired"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={threshold=25,type="MultiplierThreshold",var="CurseExpired"},[2]={type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="Condition:Hindered",type="FLAG",value=true}}}},nil} -c["Enemies Cursed by you are Hindered with 25% reduced Movement Speed if 25% of Curse Duration expired"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},[2]={actor="enemy",threshold=25,type="MultiplierThreshold",var="CurseExpired"},flags=0,keywordFlags=0,name="Condition:Hindered",type="FLAG",value=true}}}},nil} c["Enemies Cursed by you have 50% reduced Life Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="LifeRegen",type="INC",value=-50}}}},nil} c["Enemies Cursed by you have Malediction if 33% of Curse Duration expired"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={threshold=33,type="MultiplierThreshold",var="CurseExpired"},[2]={type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="HasMalediction",type="FLAG",value=true}}}},nil} c["Enemies Cursed by you take 25% increased Damage if 75% of Curse Duration expired"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},[2]={actor="enemy",threshold=75,type="MultiplierThreshold",var="CurseExpired"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=25}}}},nil} @@ -8511,10 +8389,12 @@ c["Enemies Ignited or Chilled by you have -5% to Elemental Resistances"]={{[1]={ c["Enemies Killed by Zombies' Hits Explode, dealing 20% of their Life as Fire Damage"]={nil,"Zombies' Hits Explode, dealing 20% of their Life as Fire Damage "} c["Enemies Killed by Zombies' Hits Explode, dealing 20% of their Life as Fire Damage Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage"]={nil,"Zombies' Hits Explode, dealing 20% of their Life as Fire Damage Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage "} c["Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage"]={nil,"Zombies' Hits Explode, dealing 50% of their Life as Fire Damage "} -c["Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage Raised Zombies deal 100% increased Physical Damage"]={nil,"Zombies' Hits Explode, dealing 50% of their Life as Fire Damage Raised Zombies deal 100% increased Physical Damage "} +c["Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage Raised Zombies deal 100% more Physical Damage"]={nil,"Zombies' Hits Explode, dealing 50% of their Life as Fire Damage Raised Zombies deal 100% more Physical Damage "} c["Enemies Killed by your Hits are destroyed"]={nil,"your Hits are destroyed "} c["Enemies Killed by your Hits are destroyed while Insane"]={nil,"your Hits are destroyed while Insane "} -c["Enemies Killed by your Hits are destroyed while Insane 25% less Physical and Chaos Damage Taken while Sane"]={nil,"your Hits are destroyed while Insane 25% less Physical and Chaos Damage Taken while Sane "} +c["Enemies Killed by your Hits are destroyed while Insane 25% more Physical and Chaos Damage Taken while Sane"]={nil,"your Hits are destroyed while Insane 25% more Physical and Chaos Damage Taken while Sane "} +c["Enemies Killed near corpses affected by your Curses explode, dealing"]={nil,"Enemies Killed near corpses affected by your Curses explode, dealing "} +c["Enemies Killed near corpses affected by your Curses explode, dealing 3% of their Life as Physical Damage"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyCorpse"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=3,chance=1,keyOfScaledMod="chance",type="Physical"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} c["Enemies Killed near your Banner have 20% chance to Explode, dealing a tenth of their Life as Physical Damage"]={nil,"Enemies Killed near your Banner have 20% chance to Explode, dealing a tenth of their Life as Physical Damage "} c["Enemies Killed near your Banner have 20% chance to Explode, dealing a tenth of their Life as Physical Damage Banner Skills have 20% increased Area of Effect"]={nil,"Enemies Killed near your Banner have 20% chance to Explode, dealing a tenth of their Life as Physical Damage Banner Skills have 20% increased Area of Effect "} c["Enemies Killed with Attack Hits have a 15% chance to Explode, dealing a tenth of their Life as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ExplodeMod",source="physical",type="LIST",value={amount=15,chance=0.15,keyOfScaledMod="chance",type="Tenth"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} @@ -8536,27 +8416,22 @@ c["Enemies Taunted by your Warcries are Intimidated"]={{[1]={[1]={type="Conditio c["Enemies Taunted by your Warcries take 8% increased Damage"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Taunted"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=8}}}},nil} c["Enemies affected by your Spider's Webs deal 10% reduced Damage"]={{[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="Damage",type="INC",value=-10}}}},nil} 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["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["Enemies cannot Leech Mana from You"]={nil,"Enemies cannot Leech Mana from You "} -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["Enemies display their Monster Category"]={nil,"Enemies display their Monster Category "} c["Enemies display their Monster Category +23% to Chaos Resistance"]={nil,"Enemies display their Monster Category +23% to Chaos Resistance "} c["Enemies display their Monster Category +23% to Chaos Resistance 20% increased Movement Speed"]={nil,"Enemies display their Monster Category +23% to Chaos Resistance 20% increased Movement Speed "} +c["Enemies display their Monster Category 120% increased Evasion and Energy Shield"]={nil,"Enemies display their Monster Category 120% increased Evasion and Energy Shield "} c["Enemies in your Chilling Areas take 30% increased Lightning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="InChillingArea"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=30}}}},nil} c["Enemies in your Chilling Areas take 35% increased Lightning Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="InChillingArea"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LightningDamageTaken",type="INC",value=35}}}},nil} c["Enemies in your Link Beams cannot apply Elemental Ailments"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="BetweenYouAndLinkedTarget"},flags=0,keywordFlags=0,name="ElementalAilmentImmune",type="FLAG",value=true}},nil} c["Enemies inflict Elemental Ailments on you instead of nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalAilmentImmune",type="FLAG",value=true},onlyAllies=true}}},nil} c["Enemies killed explode dealing 10% of their Life as Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=10,chance=1,keyOfScaledMod="chance",type="Fire"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} -c["Enemies killed near Corpses affected by your Curses explode, dealing"]={nil,"Enemies killed near Corpses affected by your Curses explode, dealing "} -c["Enemies killed near Corpses affected by your Curses explode, dealing 3% of their Life as Physical Damage"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyCorpse"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=3,chance=1,keyOfScaledMod="chance",type="Physical"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} -c["Enemies near Corpses affected by your Curses are Blinded"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyCorpse"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Blinded",type="FLAG",value=true}}}},nil} +c["Enemies near corpses affected by your Curses are Blinded"]={{[1]={[1]={threshold=1,type="MultiplierThreshold",var="NearbyCorpse"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Blinded",type="FLAG",value=true}}}},nil} c["Enemies near corpses you Spawned Recently are Chilled and Shocked"]={{[1]={[1]={type="Condition",var="SpawnedCorpseRecently"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Chilled",type="FLAG",value=true}}},[2]={[1]={type="Condition",var="SpawnedCorpseRecently"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Shocked",type="FLAG",value=true}}},[3]={[1]={type="Condition",var="SpawnedCorpseRecently"},flags=0,keywordFlags=0,name="ChillBase",type="BASE",value=10},[4]={[1]={type="Condition",var="SpawnedCorpseRecently"},flags=0,keywordFlags=0,name="ShockBase",type="BASE",value=15}},nil} c["Enemies near your Banner are Maimed"]={nil,"Enemies near your Banner are Maimed "} c["Enemies near your Banner take 8% increased Damage"]={nil,"Enemies near your Banner take 8% increased Damage "} c["Enemies near your Linked targets have Fire, Cold and Lightning Exposure"]={{[1]={[1]={type="Condition",var="Effective"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="NearLinkedTarget"},flags=0,keywordFlags=0,name="FireExposure",type="BASE",value=-10}}},[2]={[1]={type="Condition",var="Effective"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="NearLinkedTarget"},flags=0,keywordFlags=0,name="ColdExposure",type="BASE",value=-10}}},[3]={[1]={type="Condition",var="Effective"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="NearLinkedTarget"},flags=0,keywordFlags=0,name="LightningExposure",type="BASE",value=-10}}}},nil} c["Enemies near your Marked Enemy are Blinded"]={nil,"Enemies near your Marked Enemy are Blinded "} c["Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnFungalGround"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=10,chance=1,keyOfScaledMod="chance",type="Chaos"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} -c["Enemies on Fungal Ground you Kill Explode, dealing 5% of their Life as Chaos Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="OnFungalGround"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=5,chance=1,keyOfScaledMod="chance",type="Chaos"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} c["Enemies permanently take 1% increased Damage for each second they've ever been Chilled by you, up to a maximum of 10%"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="ChilledByYou"},[2]={limit=10,type="Multiplier",var="ChilledByYouSeconds"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=1}}}},nil} c["Enemies permanently take 5% increased Damage for each second they've ever been Frozen by you, up to a maximum of 50%"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="FrozenByYou"},[2]={limit=10,type="Multiplier",var="FrozenByYouSeconds"},flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}}},nil} c["Enemies take 10% 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=10}}},[2]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[3]={[1]={actor="enemy",type="ActorCondition",var="Ignited"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[4]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[5]={[1]={actor="enemy",type="ActorCondition",var="Scorched"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[6]={[1]={actor="enemy",type="ActorCondition",var="Brittle"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[7]={[1]={actor="enemy",type="ActorCondition",var="Sapped"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[8]={[1]={actor="enemy",type="ActorCondition",var="Bleeding"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}},[9]={[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=10}}}},nil} @@ -8567,7 +8442,7 @@ c["Enemies take 5% increased Damage for each of your Brands Attached to them"]={ 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="Scorched"},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="Brittle"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[7]={[1]={actor="enemy",type="ActorCondition",var="Sapped"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=5}}},[8]={[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}}},[9]={[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["Enemies take 8% 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=8}}},[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=8}}},[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=8}}},[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=8}}},[5]={[1]={actor="enemy",type="ActorCondition",var="Scorched"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=8}}},[6]={[1]={actor="enemy",type="ActorCondition",var="Brittle"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=8}}},[7]={[1]={actor="enemy",type="ActorCondition",var="Sapped"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=8}}},[8]={[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=8}}},[9]={[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=8}}}},nil} c["Enemies you Attack Reflect 100 Physical Damage to you"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you "} -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["Enemies you Attack Reflect 100 Physical Damage to you +0.2 metres to Weapon Range"]={nil,"Enemies you Attack Reflect 100 Physical Damage to you +0.2 metres to Weapon Range "} c["Enemies you Curse are Hindered, with 15% reduced Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="Condition:Hindered",type="FLAG",value=true}}}},nil} c["Enemies you Curse are Unnerved"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",var="Cursed"},flags=0,keywordFlags=0,name="Condition:Unnerved",type="FLAG",value=true}}}},nil} c["Enemies you Curse cannot Recharge Energy Shield"]={nil,"cannot Recharge Energy Shield "} @@ -8597,6 +8472,7 @@ c["Enemies' Damage with Critical Strikes against you is Lucky"]={nil,"Enemies' D c["Enemy Hits inflict Temporal Chains on you"]={nil,"Enemy Hits inflict Temporal Chains on you "} c["Enemy Hits inflict Temporal Chains on you When you lose Temporal Chains you gain maximum Rage"]={nil,"Enemy Hits inflict Temporal Chains on you When you lose Temporal Chains you gain maximum Rage "} c["Enemy Projectiles Pierce you"]={nil,"Enemy Projectiles Pierce you "} +c["Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second"]={nil,"Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second "} c["Enemy with a Melee Weapon, no more than once every second"]={nil,"Enemy with a Melee Weapon, no more than once every second "} c["Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="CanLeechEnergyShieldOnFullEnergyShield",type="FLAG",value=true}},nil} c["Energy Shield Leech effects are not removed when Energy Shield is Filled"]={{[1]={flags=0,keywordFlags=0,name="CanLeechEnergyShieldOnFullEnergyShield",type="FLAG",value=true}},nil} @@ -8616,7 +8492,6 @@ c["Envy has no Reservation"]={{[1]={[1]={skillId="Envy",type="SkillId"},[2]={neg c["Eternal Youth"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Eternal Youth"}},nil} c["Evasion Rating is Doubled against Projectile Attacks"]={{[1]={flags=0,keywordFlags=0,name="ProjectileEvasion",type="MORE",value=100}},nil} c["Evasion Rating is increased by Overcapped Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="EvasionRatingIncreasedByOvercappedColdRes",type="FLAG",value=true}},nil} -c["Evasion Rating is increased by Uncapped Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="EvasionRatingIncreasedByUncappedColdRes",type="FLAG",value=true}},nil} c["Everlasting Sacrifice"]={{[1]={flags=0,keywordFlags=0,name="Condition:EverlastingSacrifice",type="FLAG",value=true}},nil} c["Every 10 seconds, gain 30% of Physical Damage"]={nil,"Every 10 seconds, gain 30% of Physical Damage "} c["Every 10 seconds, gain 30% of Physical Damage as Extra Fire Damage for 4 seconds"]={{[1]={[1]={type="Condition",var="NgamahuFlamesAdvance"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=30}},nil} @@ -8665,7 +8540,6 @@ c["Exposure you inflict applies an extra -20% to the affected Resistance"]={{[1] c["Exposure you inflict applies an extra -25% to the affected Resistance"]={{[1]={flags=0,keywordFlags=0,name="ExtraExposure",type="BASE",value=-25}},nil} c["Exposure you inflict applies an extra -6% to the affected Resistance"]={{[1]={flags=0,keywordFlags=0,name="ExtraExposure",type="BASE",value=-6}},nil} c["Exposure you inflict applies at least -18% to the affected Resistance"]={{[1]={flags=0,keywordFlags=0,name="ExposureMin",type="OVERRIDE",value=-18}},nil} -c["Extra Gore"]={{},nil} c["Extra gore"]={{},nil} c["Far Shot"]={{[1]={flags=0,keywordFlags=0,name="FarShot",type="FLAG",value=true}},nil} c["Final Repeat of Attack Skills deals 60% more Damage"]={{[1]={flags=1,keywordFlags=0,name="RepeatFinalDamage",type="MORE",value=60}},nil} @@ -8683,13 +8557,13 @@ c["Flasks adjacent to active Tinctures gain 2 charges when you Hit an"]={nil,"Fl c["Flasks adjacent to active Tinctures gain 2 charges when you Hit an Enemy with a Melee Weapon, no more than once every second"]={nil,"Flasks adjacent to active Tinctures gain 2 charges when you Hit an Enemy with a Melee Weapon, no more than once every second "} c["Flasks adjacent to applied Tincture have 10% increased Effect when"]={nil,"Flasks adjacent to applied Tincture have 10% increased Effect when "} c["Flasks adjacent to applied Tincture have 10% increased Effect when used if you've Hit an enemy with a Weapon Recently"]={nil,"Flasks adjacent to applied Tincture have 10% increased Effect when used if you've Hit an enemy with a Weapon Recently "} -c["Flasks applied to you have 1% Increased Effect per Level"]={{[1]={[1]={actor="player",type="ActorCondition"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=1}},nil} +c["Flasks applied to you have 1% increased Effect per Level"]={{[1]={[1]={actor="player",type="ActorCondition"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=1}},nil} c["Flasks applied to you have 10% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=10}},nil} c["Flasks applied to you have 20% reduced Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-20}},nil} -c["Flasks applied to you have 25% Increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=25}},nil} +c["Flasks applied to you have 25% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=25}},nil} c["Flasks applied to you have 30% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=30}},nil} c["Flasks applied to you have 5% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=5}},nil} -c["Flasks applied to you have 60% Reduced Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-60}},nil} +c["Flasks applied to you have 60% reduced Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=-60}},nil} c["Flasks applied to you have 8% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="FlaskEffect",type="INC",value=8}},nil} c["Flasks do not apply to you"]={{[1]={flags=0,keywordFlags=0,name="FlasksDoNotApplyToPlayer",type="FLAG",value=true}},nil} c["Flasks gain 1 Charge per second if you've Hit a Unique Enemy Recently"]={{[1]={[1]={type="Condition",var="HitRecently"},[2]={actor="enemy",type="ActorCondition",var="RareOrUnique"},flags=0,keywordFlags=0,name="FlaskChargesGenerated",type="BASE",value=1}},nil} @@ -8710,7 +8584,7 @@ c["For 5 seconds after you Impale Enemies, they cannot be Impaled again, and Imp c["For 5 seconds after you Impale Enemies, they cannot be Impaled again, and Impales cannot be Called from them Limited to 1 Keystone Tattoo"]={nil,"For 5 seconds after you Impale Enemies, they cannot be Impaled again, and Impales cannot be Called from them Limited to 1 Keystone Tattoo "} c["For each nearby corpse, 1% increased Movement Speed"]={{[1]={[1]={type="Multiplier",var="NearbyCorpse"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=1}},nil} c["For each nearby corpse, Regenerate 0.25% Life per second, up to 3%"]={{[1]={[1]={limit=3,limitTotal=true,type="Multiplier",var="NearbyCorpse"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.25}},nil} -c["For each nearby corpse, Regenerate 8.00 Life per Second"]={{[1]={[1]={type="Multiplier",var="NearbyCorpse"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=8}},nil} +c["For each nearby corpse, Regenerate 8 Life per second"]={{[1]={[1]={type="Multiplier",var="NearbyCorpse"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=8}},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["For each nearby corpse, you and nearby Allies Regenerate 5 Mana"]={nil,"you and nearby Allies Regenerate 5 Mana "} 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} @@ -8739,7 +8613,7 @@ c["Gain 1 Endurance Charge every second if you've been Hit Recently +1 to Maximu c["Gain 1 Endurance Charge every second if you've been Hit Recently and"]={{}," Endurance Charge every second and "} c["Gain 1 Endurance Charge every second if you've been Hit Recently and 4 Warlord Items are Equipped"]={{}," Endurance Charge every second and 4 Warlord Items are Equipped "} c["Gain 1 Endurance Charge on use"]={{}," Endurance Charge on use "} -c["Gain 1 Endurance Charge on use Gain 1 Frenzy Charge on use"]={{}," Endurance Charge on use Gain 1Charge on use "} +c["Gain 1 Endurance Charge on use Gain 3 Endurance Charge on use"]={{}," Endurance Charge on use Gain 3 Endurance Charge on use "} c["Gain 1 Endurance Charge on use Petrified during Effect"]={{}," Endurance Charge on use Petrified "} c["Gain 1 Endurance Charge per Second during Effect"]={{}," Endurance Charge per Second "} c["Gain 1 Endurance Charge when Ward Breaks"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="BASE",value=1}}," Endurance Charge when Breaks "} @@ -8751,16 +8625,17 @@ c["Gain 1 Fortification per 5 Valour consumed to place a Banner"]={{[1]={flags=0 c["Gain 1 Fortification per 5 Valour consumed to place a Banner Limited to 1 Runegraft of Rallying"]={{[1]={flags=0,keywordFlags=0,name="MinimumFortification",type="BASE",value=1}}," per 5 Valour consumed to place a Banner Limited to 1 Runegraft of Rallying "} c["Gain 1 Fragile Regrowth each second"]={{}," Fragile Regrowth each second "} c["Gain 1 Frenzy Charge on use"]={{},"Charge on use "} -c["Gain 1 Frenzy Charge on use Gain 1 Power Charge on use"]={{},"Charge on use Gain 1 Power Charge on use "} +c["Gain 1 Frenzy Charge on use Gain 3 Frenzy Charge on use"]={{},"Charge on use Gain 3 Frenzy Charge on use "} c["Gain 1 Frenzy Charge when Ward Breaks"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Ward",type="BASE",value=1}},"Charge when Breaks "} c["Gain 1 Gale Force when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainGaleForce",type="FLAG",value=true}},nil} c["Gain 1 Life on Kill per Level"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Life",type="BASE",value=1}},nil} c["Gain 1 Mana on Kill per Level"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="Level"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=1}},nil} c["Gain 1 Power Charge on use"]={{}," Power Charge on use "} -c["Gain 1 Power Charge on use Gain 3 Endurance Charge on use"]={{}," Power Charge on use Gain 3 Endurance Charge on use "} +c["Gain 1 Power Charge on use Gain 3 Power Charge on use"]={{}," Power Charge on use Gain 3 Power Charge on use "} c["Gain 1 Power Charge when Ward Breaks"]={{[1]={flags=0,keywordFlags=0,name="Ward",type="BASE",value=1}}," Power Charge when Breaks "} c["Gain 1 Rage on Attack Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} -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}},nil} +c["Gain 1 Rage on Critical Strike with Attacks"]={{}," Rage "} +c["Gain 1 Rage on Critical Strike with Attacks Every Rage also grants 1% of Physical Damage as Extra Fire Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=65536,name="PhysicalDamageGainAsFire",type="BASE",value=1}}," Rage Every Rage also grants 1% of "} c["Gain 1 Rage on Hit with Axes"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 1 Rage on Melee Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 1 Remembrance when you spend a total of 200 Energy"]={{}," Remembrance when you spend a total of 200 Energy "} @@ -8844,8 +8719,7 @@ c["Gain 2 Endurance, Frenzy or Power Charges every 6 seconds 84% increased Spell c["Gain 2 Endurance, Frenzy or Power Charges every 6 seconds Adds 70 to 130 Fire Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="FireDamage",type="BASE",value=2}}," Endurance,or Power Charges every 6 seconds Adds 70 to 130 "} c["Gain 2 Grasping Vines each second while stationary"]={{[1]={[1]={limit=10,limitTotal=true,type="Multiplier",var="StationarySeconds"},[2]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="Multiplier:GraspingVinesCount",type="BASE",value=2}},nil} c["Gain 2 Mana per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="ManaOnHit",type="BASE",value=2}},nil} -c["Gain 2 Power Charges on Using a Warcry"]={{}," Power Charges on Using a "} -c["Gain 2 Power Charges on Using a Warcry Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=4,name="Condition:ArcaneSurge",type="BASE",value=2}}}}," Power Charges on Using a Warcries grant , with 10% increased effect per 5 power, up to 50% "} +c["Gain 2 Power Charges when you Warcry"]={{}," Power Charges "} c["Gain 2 Rage on Attack Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 2 Rage on Hit with Axes"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 2 Rage on Hit with Axes or Swords"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} @@ -8896,17 +8770,17 @@ c["Gain 28 Life per Cursed Enemy Hit with Attacks"]={{[1]={[1]={actor="enemy",ty c["Gain 28% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=28}},nil} c["Gain 3 Charges when you are Hit by an Enemy"]={{}," Charges when you are Hit by an Enemy "} c["Gain 3 Endurance Charge on use"]={{}," Endurance Charge on use "} -c["Gain 3 Endurance Charge on use Gain 3 Frenzy Charge on use"]={{}," Endurance Charge on use Gain 3Charge on use "} +c["Gain 3 Endurance Charge on use Gain 1 Frenzy Charge on use"]={{}," Endurance Charge on use Gain 1Charge on use "} c["Gain 3 Endurance Charges when you consume maximum Valour to place a Banner"]={{[1]={flags=0,keywordFlags=0,name="MaximumValour",type="BASE",value=3}}," Endurance Charges when you consume to place a Banner "} c["Gain 3 Endurance Charges when you consume maximum Valour to place a Banner Gain 3 Frenzy Charges when you consume maximum Valour to place a Banner"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="MaximumValour",type="BASE",value=3}}," Endurance Charges when you consume to place a Banner Gain 3Charges when you consume maximum Valour to place a Banner "} c["Gain 3 Frenzy Charge on use"]={{},"Charge on use "} -c["Gain 3 Frenzy Charge on use Gain 3 Power Charge on use"]={{},"Charge on use Gain 3 Power Charge on use "} +c["Gain 3 Frenzy Charge on use Gain 1 Power Charge on use"]={{},"Charge on use Gain 1 Power Charge on use "} c["Gain 3 Frenzy Charges when you consume maximum Valour to place a Banner"]={{[1]={[1]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="MaximumValour",type="BASE",value=3}},"Charges when you consume to place a Banner "} c["Gain 3 Life per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="LifeOnHit",type="BASE",value=3}},nil} c["Gain 3 Life per Enemy Hit with Spells"]={{[1]={flags=4,keywordFlags=131072,name="LifeOnHit",type="BASE",value=3}},nil} c["Gain 3 Mana per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="ManaOnHit",type="BASE",value=3}},nil} c["Gain 3 Mana per Taunted Enemy Hit"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=3}}," per Taunted Enemy Hit "} -c["Gain 3 Mana per Taunted Enemy Hit Gain 2 Power Charges on Using a Warcry"]={{[1]={flags=0,keywordFlags=4,name="Mana",type="BASE",value=3}}," per Taunted Enemy Hit Gain 2 Power Charges on Using a "} +c["Gain 3 Mana per Taunted Enemy Hit Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Mana",type="BASE",value=3}}}}," per Taunted Enemy Hit Warcries grant Arcane Surge , with 10% increased effect per 5 power, up to 50% "} c["Gain 3 Power Charge on use"]={{}," Power Charge on use "} c["Gain 3 Rage on Melee Weapon Hit"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Gain 3 Rage when Hit by an Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} @@ -8978,7 +8852,7 @@ c["Gain 50% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFla c["Gain 50% of Physical Damage as Extra Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsCold",type="BASE",value=50}},nil} c["Gain 50% of Physical Damage as Extra Fire Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsFire",type="BASE",value=50}},nil} c["Gain 50% of Physical Damage as Extra Lightning Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsLightning",type="BASE",value=50}},nil} -c["Gain 50% of Weapon Physical Damage as Extra Damage of a Random Element"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsRandom",type="BASE",value=50}},nil} +c["Gain 50% of Weapon Physical Damage as Extra Damage of a random Element"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsRandom",type="BASE",value=50}},nil} c["Gain 51 Mana per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=51}},nil} c["Gain 58% of Physical Damage as Extra Chaos Damage if you've used an Amethyst Flask Recently"]={{[1]={[1]={type="Condition",var="UsedAmethystFlaskRecently"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=58}},nil} c["Gain 6 Life per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="LifeOnHit",type="BASE",value=6}},nil} @@ -8987,7 +8861,7 @@ c["Gain 6% of Maximum Life as Extra Maximum Energy Shield"]={{[1]={flags=0,keywo c["Gain 6% of Non-Chaos Damage as Extra Chaos Damage per Summoned Void Spawn"]={{[1]={[1]={stat="ActiveVoidSpawnLimit",type="PerStat"},flags=0,keywordFlags=0,name="NonChaosDamageGainAsChaos",type="BASE",value=6}},nil} c["Gain 60 Life per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="LifeOnHit",type="BASE",value=60}},nil} c["Gain 60% of Physical Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=60}},nil} -c["Gain 60% of Weapon Physical Damage as Extra Damage of a Random Element"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsRandom",type="BASE",value=60}},nil} +c["Gain 60% of Weapon Physical Damage as Extra Damage of a random Element"]={{[1]={flags=8192,keywordFlags=0,name="PhysicalDamageGainAsRandom",type="BASE",value=60}},nil} c["Gain 7 Life per Enemy Hit with Attacks"]={{[1]={flags=4,keywordFlags=65536,name="LifeOnHit",type="BASE",value=7}},nil} c["Gain 7 Life per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=7}},nil} c["Gain 7% of Elemental Damage as Extra Chaos Damage"]={{[1]={flags=0,keywordFlags=0,name="ElementalDamageGainAsChaos",type="BASE",value=7}},nil} @@ -9021,7 +8895,7 @@ c["Gain Added Chaos Damage equal to 25% of Ward"]={{[1]={[1]={percent=25,stat="W c["Gain Adrenaline for 20 seconds when you reach Low Life"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when you reach Low "} c["Gain Adrenaline for 20 seconds when you reach Low Life Recover 25% of Life when you gain Adrenaline"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when you reach Low Recover 25% of Life when you gain Adrenaline "} c["Gain Adrenaline for 20 seconds when you reach Low Life Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when you reach Low Recover 25% of Life when you gain Adrenaline Remove all Ailments and Burning when you gain Adrenaline "} -c["Gain Adrenaline for 3 seconds on kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}},nil} +c["Gain Adrenaline for 3 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}},nil} c["Gain Adrenaline for 3 seconds when Ward Breaks"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when Breaks "} c["Gain Adrenaline for 4 seconds when you reach Low Life"]={{[1]={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}," when you reach Low "} c["Gain Adrenaline for 4 seconds when you reach Low Life 35% increased Effect of Buffs granted by your Golems"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Adrenaline",type="FLAG",value=true}}}}," when you reach Low 35% increased Effect of Buffs granted by your s "} @@ -9040,7 +8914,6 @@ c["Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell"]={{[1]={ c["Gain Arcane Surge when you use a Movement Skill"]={{[1]={[1]={type="Condition",var="UsedMovementSkillRecently"},flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil} c["Gain Arcane Surge when your Mine is Detonated targeting an Enemy"]={{[1]={[1]={type="Condition",var="DetonatedMinesRecently"},flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil} c["Gain Arcane Surge when your Trap is Triggered by an Enemy"]={{[1]={[1]={type="Condition",var="TriggeredTrapsRecently"},flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil} -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["Gain Brutal Charges instead of Endurance Charges"]={{[1]={flags=0,keywordFlags=0,name="EnduranceChargesConvertToBrutalCharges",type="FLAG",value=true}},nil} c["Gain Convergence when you Hit a Unique Enemy, no more than once every 8 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainConvergence",type="FLAG",value=true}},nil} c["Gain Defiance for 10 seconds on losing Life to an Enemy Hit, no"]={nil,"Defiance on losing Life to an Enemy Hit, no "} @@ -9057,13 +8930,13 @@ c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={{[1]={flags=0, c["Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage"]={{[1]={flags=0,keywordFlags=0,name="Condition:Rampage",type="FLAG",value=true}},"Immunity to for 1.5 seconds on Rampage "} c["Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy"]={{[1]={[1]={type="Condition",var="KilledUniqueEnemy"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="HasMaddeningPresence",type="FLAG",value=true}}}},nil} c["Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items"]={{[1]={flags=0,keywordFlags=0,name="ConvertArmourESToLife",type="FLAG",value=true}},nil} -c["Gain Onslaught for 1 second per Frenzy Charge on use"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," for 1 second on use "} -c["Gain Onslaught for 1 second per Frenzy Charge on use Gain Onslaught for 2 seconds per Frenzy Charge on use"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," for 1 second on use Gain perCharge on use "} +c["Gain Onslaught for 1 second per Frenzy Charge consumed on use"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," for 1 second consumed on use "} +c["Gain Onslaught for 1 second per Frenzy Charge consumed on use Gain Onslaught for 2 seconds per Frenzy Charge consumed on use"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," for 1 second consumed on use Gain perCharge consumed on use "} c["Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill"]={{[1]={[1]={type="Condition",var="SummonedGolemInPast10Sec"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} -c["Gain Onslaught for 2 seconds per Frenzy Charge on use"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," on use "} -c["Gain Onslaught for 2 seconds per Frenzy Charge on use Gain Onslaught for 3 seconds per Frenzy Charge on use"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," on use Gain for 3 seconds perCharge on use "} -c["Gain Onslaught for 3 seconds per Frenzy Charge on use"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," on use "} -c["Gain Onslaught for 3 seconds per Frenzy Charge on use 30% increased Movement Speed during Effect"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," on use 30% increased during Effect "} +c["Gain Onslaught for 2 seconds per Frenzy Charge consumed on use"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," consumed on use "} +c["Gain Onslaught for 2 seconds per Frenzy Charge consumed on use Gain Onslaught for 3 seconds per Frenzy Charge consumed on use"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},[2]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," consumed on use Gain for 3 seconds perCharge consumed on use "} +c["Gain Onslaught for 3 seconds per Frenzy Charge consumed on use"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," consumed on use "} +c["Gain Onslaught for 3 seconds per Frenzy Charge consumed on use 30% increased Movement Speed during Effect"]={{[1]={[1]={type="Multiplier",var="FrenzyCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," consumed on use 30% increased during Effect "} c["Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},[2]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="Onslaught",type="FLAG",value=true}},nil} c["Gain Onslaught for 4 seconds when you Warcry"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} c["Gain Power Charges instead of Frenzy Charges"]={nil,"Power Charges instead of Frenzy Charges "} @@ -9077,12 +8950,13 @@ c["Gain Unholy Might for 3 seconds on Rampage"]={{[1]={flags=0,keywordFlags=0,na c["Gain Unholy Might for 3 seconds on Rampage Rampage"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}," on Rampage "} c["Gain Unholy Might for 4 seconds on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}},nil} c["Gain Unholy Might on Block for 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}," on Block "} -c["Gain Unholy Might on Block for 10 seconds You have Unholy Might while you have no Energy Shield"]={{[1]={[1]={neg=true,type="Condition",var="HaveEnergyShield"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}," on Block You have "} +c["Gain Unholy Might on Block for 10 seconds Create Profane Ground instead of Consecrated Ground"]={{[1]={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}," on Block Create Profane Ground instead of Consecrated Ground "} c["Gain Unholy Might on Block for 3 seconds"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true},[2]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}},nil} c["Gain Vaal Souls equal to Charges Consumed when used"]={nil,"Vaal Souls equal to Charges Consumed when used "} -c["Gain Ward Instead of 50% of Armour and Evasion Rating From Equipped Body Armour"]={{[1]={flags=0,keywordFlags=0,name="ConvertBodyArmourArmourEvasionToWard",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="BodyArmourArmourEvasionToWardPercent",type="BASE",value=50}},nil} +c["Gain Vaal Souls equal to Charges Consumed when used Vaal Skills deal 40% more Damage during Effect"]={nil,"Vaal Souls equal to Charges Consumed when used Vaal Skills deal 40% more Damage "} +c["Gain Ward instead of 50% of Armour and Evasion Rating from Equipped Body Armour"]={{[1]={flags=0,keywordFlags=0,name="ConvertBodyArmourArmourEvasionToWard",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="BodyArmourArmourEvasionToWardPercent",type="BASE",value=50}},nil} c["Gain a Divine Charge on Hit"]={nil,"a Divine Charge on Hit "} -c["Gain a Divine Charge on Hit +10 to maximum Divine Charges"]={nil,"a Divine Charge on Hit +10 to maximum Divine Charges "} +c["Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges"]={nil,"a Divine Charge on Hit You gain Divinity on reaching maximum Divine Charges "} c["Gain a Flask Charge when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="FlaskChargeOnCritChance",type="BASE",value=100}},nil} c["Gain a Flask Charge when you deal a Critical Strike while affected by Precision"]={{[1]={[1]={type="Condition",var="AffectedByPrecision"},flags=0,keywordFlags=0,name="FlaskChargeOnCritChance",type="BASE",value=100}},nil} c["Gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="FlaskChargeOnCritChance",type="BASE",value=100}},nil} @@ -9115,39 +8989,38 @@ c["Gain a Power Charge on Hit while Poisoned +30% to Chaos Resistance while stat c["Gain a Power Charge on Killing a Frozen Enemy"]={nil,"a Power Charge ing a Frozen Enemy "} c["Gain a Power Charge on Killing a Frozen Enemy Adds 10 to 20 Cold Damage to Spells per Power Charge"]={nil,"a Power Charge ing a Frozen Enemy Adds 10 to 20 Cold Damage to Spells "} c["Gain a Power Charge on Killing a Frozen Enemy Adds 15 to 25 Cold Damage to Spells per Power Charge"]={nil,"a Power Charge ing a Frozen Enemy Adds 15 to 25 Cold Damage to Spells "} -c["Gain a Power Charge on non-Critical Strike"]={nil,"a Power Charge on non-Critical Strike "} -c["Gain a Power Charge on non-Critical Strike Lose all Power Charges on Critical Strike"]={nil,"a Power Charge on non-Critical Strike Lose all Power Charges "} +c["Gain a Power Charge on Non-Critical Strike"]={nil,"a Power Charge on Non-Critical Strike "} +c["Gain a Power Charge on Non-Critical Strike Lose all Power Charges on Critical Strike"]={nil,"a Power Charge on Non-Critical Strike Lose all Power Charges "} c["Gain a Power Charge when you use a Vaal Skill"]={nil,"a Power Charge "} c["Gain a Power Charge when you use a Vaal Skill Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently"]={nil,"a Power Charge Gain 10 Life per Enemy Hit "} c["Gain a Spirit Charge every second"]={nil,"a Spirit Charge every second "} c["Gain a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit"]={nil,"a Spirit Charge every second You lose all Spirit Charges when taking a Savage Hit "} c["Gain a Spirit Charge on Kill"]={nil,"a Spirit Charge "} -c["Gain a Spirit Charge on Kill Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge"]={nil,"a Spirit Charge Gain 5% of Physical Damage as Extra Damage of each Element "} +c["Gain a Spirit Charge on Kill Recover 5% of Life when you lose a Spirit Charge"]={nil,"a Spirit Charge Recover 5% of Life when you lose a Spirit Charge "} c["Gain a Void Charge every 0.5 seconds"]={nil,"a Void Charge every 0.5 seconds "} c["Gain a Void Charge every second"]={nil,"a Void Charge every second "} -c["Gain a Void Charge every second Gain a Void Charge every 0.5 seconds"]={nil,"a Void Charge every second Gain a Void Charge every 0.5 seconds "} +c["Gain a Void Charge every second 5 Maximum Void Charges"]={nil,"a Void Charge every second 5 Maximum Void Charges "} c["Gain a random Shrine Buff for 30 seconds when you Kill a Rare or Unique Enemy"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanHaveRegularShrines",type="FLAG",value=true}},nil} c["Gain a random Shrine buff every 10 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanHaveRegularShrines",type="FLAG",value=true}},nil} c["Gain additional Elemental Damage Reduction equal to half your Chaos Resistance"]={{[1]={[1]={div=2,stat="ChaosResist",type="PerStat"},flags=0,keywordFlags=0,name="ElementalDamageReduction",type="BASE",value=1}},nil} c["Gain an Endurance Charge every second if you've been Hit Recently"]={nil,"an Endurance Charge every second "} c["Gain an Endurance Charge every second if you've been Hit Recently Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges"]={nil,"an Endurance Charge every second Intimidate Enemies on Hit with Attacks while at maximum Endurance Charges "} c["Gain an Endurance Charge if an Attack Freezes an Enemy"]={nil,"an Endurance Charge if an Attack Freezes an Enemy "} -c["Gain an Endurance Charge if an Attack Freezes an Enemy Culling Strike against Frozen Enemies"]={nil,"an Endurance Charge if an Attack Freezes an Enemy Culling Strike "} -c["Gain an Endurance Charge when a Power Charge expires or is consumed"]={nil,"an Endurance Charge when a Power Charge expires or is consumed "} c["Gain an Endurance Charge when you are Hit"]={nil,"an Endurance Charge when you are Hit "} c["Gain an Endurance Charge when you are Hit Lose 2% of Life per second if you have been Hit Recently"]={nil,"an Endurance Charge when you are Hit Lose 2% of Life per second "} +c["Gain an Endurance Charge when you lose a Power Charge"]={nil,"an Endurance Charge when you lose a Power Charge "} c["Gain an Endurance Charge when you take a Critical Strike"]={nil,"an Endurance Charge when you take a Critical Strike "} -c["Gain an Endurance Charge when you take a Critical Strike Gain up to maximum Endurance Charges when you take a Critical Strike"]={nil,"an Endurance Charge when you take a Critical Strike Gain up to maximum Endurance Charges when you take a Critical Strike "} +c["Gain an Endurance Charge when you take a Critical Strike Regenerate 2% of Life per second while on Low Life"]={nil,"an Endurance Charge when you take a Critical Strike Regenerate 2% of Life per second "} c["Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill"]={nil,"an Endurance Charge, Frenzy Charge, and Power Charge "} c["Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill Shepherd of Souls"]={nil,"an Endurance Charge, Frenzy Charge, and Power Charge Shepherd of Souls "} c["Gain no Armour from Equipped Body Armour"]={{[1]={flags=0,keywordFlags=0,name="GainNoArmourFromBody Armour",type="FLAG",value=true}},nil} -c["Gain no armour from equipped body armour"]={{[1]={flags=0,keywordFlags=0,name="GainNoArmourFromBody Armour",type="FLAG",value=true}},nil} c["Gain no inherent bonuses from Attributes"]={{[1]={flags=0,keywordFlags=0,name="NoAttributeBonuses",type="FLAG",value=true}},nil} c["Gain up to maximum Endurance Charges when you take a Critical Strike"]={nil,"up to maximum Endurance Charges when you take a Critical Strike "} -c["Gain up to maximum Endurance Charges when you take a Critical Strike Regenerate 2% of Life per Second while on Low Life"]={nil,"up to maximum Endurance Charges when you take a Critical Strike Regenerate 2% of Life per Second "} +c["Gain up to maximum Endurance Charges when you take a Critical Strike Regenerate 2% of Life per second if you have been Hit Recently"]={nil,"up to maximum Endurance Charges when you take a Critical Strike Regenerate 2% of Life per second "} c["Gain up to maximum Fragile Regrowth when Hit"]={nil,"up to maximum Fragile Regrowth when Hit "} c["Gain up to maximum Fragile Regrowth when Hit Lose 1 Fragile Regrowth each second"]={nil,"up to maximum Fragile Regrowth when Hit Lose 1 Fragile Regrowth each second "} c["Gain up to maximum Power Charges when you use a Vaal Skill"]={nil,"up to maximum Power Charges "} +c["Gain up to maximum Power Charges when you use a Vaal Skill Gain a Power Charge when you use a Vaal Skill"]={nil,"up to maximum Power Charges Gain a Power Charge "} c["Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility"]={nil,"up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility "} c["Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility You have Onslaught while you have Cat's Agility"]={{[1]={[1]={type="Condition",var="AffectedByCat'sAgility"},[2]={includeTransfigured=true,skillName="Frenzy",type="SkillName"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},"up to your maximum number ofand Endurance Charges when you gain Cat's Agility You have "} c["Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth"]={nil,"up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth "} @@ -9158,7 +9031,6 @@ c["Gains no Charges during Effect Creates a Smoke Cloud on Use"]={nil,"Gains no c["Gains no Charges during Effect Taunts nearby Enemies on use"]={nil,"Gains no Charges during Effect Taunts nearby Enemies on use "} c["Gains no Charges during Effect of any Overflowing Chalice Flask"]={nil,"Gains no Charges during Effect of any Overflowing Chalice Flask "} c["Gains no Charges during Effect of any Soul Ripper Flask"]={nil,"Gains no Charges during Effect of any Soul Ripper Flask "} -c["Gains no Charges during Effect of any Soul Ripper Flask +90 maximum Charges"]={nil,"Gains no Charges during Effect of any Soul Ripper Flask +90 maximum Charges "} c["Gems Socketed in Blue Sockets gain 100% increased Experience"]={nil,"Gems Socketed in Blue Sockets gain 100% increased Experience "} c["Gems Socketed in Blue Sockets gain 100% increased Experience Has no Attribute Requirements"]={nil,"Gems Socketed in Blue Sockets gain 100% increased Experience Has no Attribute Requirements "} c["Gems Socketed in Blue Sockets gain 25% increased Experience"]={nil,"Gems Socketed in Blue Sockets gain 25% increased Experience "} @@ -9177,7 +9049,6 @@ c["Golem Skills have 25% increased Cooldown Recovery Rate"]={{[1]={[1]={skillTyp c["Golem Skills have 30% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=30}},nil} c["Golems Deal 30% less Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-30}}}},nil} c["Golems Deal 35% less Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-35}}}},nil} -c["Golems Deal 45% less Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=-45}}}},nil} c["Golems Summoned in the past 8 seconds deal 113% increased Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="SummonedGolemInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=113}}}},nil} c["Golems Summoned in the past 8 seconds deal 125% increased Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="SummonedGolemInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=125}}}},nil} c["Golems Summoned in the past 8 seconds deal 40% increased Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="SummonedGolemInPast8Sec"},flags=0,keywordFlags=0,name="Damage",type="INC",value=40}}}},nil} @@ -9195,10 +9066,8 @@ c["Golems have 22% increased Maximum Life"]={{[1]={[1]={skillType=61,type="Skill c["Golems have 25% increased Maximum Life"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="INC",value=25}}}},nil} c["Golems have 30% less Life"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-30}}}},nil} c["Golems have 35% less Life"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-35}}}},nil} -c["Golems have 45% less Life"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Life",type="MORE",value=-45}}}},nil} c["Golems have 90% increased Movement Speed"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=90}}}},nil} c["Gore Footprints"]={nil,"Gore Footprints "} -c["Gore Footprints 3% increased Damage per Frenzy Charge with Hits against Enemies on Low Life"]={nil,"Gore Footprints 3% increased Damage per Frenzy Charge with Hits against Enemies on Low Life "} c["Grace has 50% increased Aura Effect while at Minimum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMin",type="StatThreshold",upper=true},[2]={includeTransfigured=true,skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=50}},nil} c["Grace has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} c["Grace has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Grace",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} @@ -9212,11 +9081,13 @@ c["Grants 14 Mana per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack c["Grants 15 Life per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="LifeOnHit",type="BASE",value=15}},nil} c["Grants 19 Life per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="LifeOnHit",type="BASE",value=19}},nil} c["Grants 2 Life per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="LifeOnHit",type="BASE",value=2}},nil} +c["Grants 2 Mana per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="ManaOnHit",type="BASE",value=2}},nil} c["Grants 2 Passive Skill Points"]={{[1]={flags=0,keywordFlags=0,name="ExtraPoints",type="BASE",value=2}},nil} c["Grants 20 Life per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="LifeOnHit",type="BASE",value=20}},nil} c["Grants 21 Life per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="LifeOnHit",type="BASE",value=21}},nil} c["Grants 25 Life per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="LifeOnHit",type="BASE",value=25}},nil} c["Grants 3 Life per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="LifeOnHit",type="BASE",value=3}},nil} +c["Grants 3 Mana per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="ManaOnHit",type="BASE",value=3}},nil} c["Grants 31 Life per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="LifeOnHit",type="BASE",value=31}},nil} c["Grants 38 Life per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="LifeOnHit",type="BASE",value=38}},nil} c["Grants 40 Life per Enemy Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=4,keywordFlags=0,name="LifeOnHit",type="BASE",value=40}},nil} @@ -9247,7 +9118,6 @@ c["Grants Level 10 Purity of Elements Skill"]={{[1]={flags=0,keywordFlags=0,name c["Grants Level 12 Summon Stone Golem Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=12,skillId="SummonStoneGolem"}}},nil} c["Grants Level 15 Blood Offering Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="BloodOffering"}}},nil} c["Grants Level 15 Envy Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=15,skillId="Envy"}}},nil} -c["Grants Level 20 Affliction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Affliction"}}},nil} c["Grants Level 20 Approaching Flames Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ApproachingFlames"}}},nil} c["Grants Level 20 Aspect of the Avian Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AspectOfTheAvian"}}},nil} c["Grants Level 20 Aspect of the Cat Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AspectOfTheCat"}}},nil} @@ -9263,8 +9133,6 @@ c["Grants Level 20 Doryani's Touch Skill"]={{[1]={flags=0,keywordFlags=0,name="E c["Grants Level 20 Hatred Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Hatred"}}},nil} c["Grants Level 20 Illusory Warp Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="IllusoryWarp"}}},nil} c["Grants Level 20 Misty Reflection Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="MistyReflection"}}},nil} -c["Grants Level 20 Pacify"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Pacify"}}},nil} -c["Grants Level 20 Penance Mark"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="PenanceMark"}}},nil} c["Grants Level 20 Queen's Demand Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="QueensDemand"}}},nil} c["Grants Level 20 Ravenous Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Ravenous"}}},nil} c["Grants Level 20 Shaper's Despair, which will be used by Shaper Memory"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="ShaperApparitionProjectiles"}}},nil} @@ -9287,7 +9155,7 @@ c["Grants Level 21 Vulnerability Curse Aura during Effect"]={{[1]={[1]={type="Co c["Grants Level 22 Blight Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="Blight"}}},nil} c["Grants Level 22 Hatred Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="Hatred"}}},nil} c["Grants Level 22 Precision Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="Precision"}}},nil} -c["Grants Level 22 Wintertide Brand"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="WintertideBrand"}}},nil} +c["Grants Level 22 Wintertide Brand Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=22,skillId="WintertideBrand"}}},nil} c["Grants Level 25 Bear Trap Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="BearTrap"}}},nil} c["Grants Level 25 Blight Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="Blight"}}},nil} c["Grants Level 25 Envy Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="Envy"}}},nil} @@ -9295,7 +9163,7 @@ c["Grants Level 25 Purity of Fire Skill"]={{[1]={flags=0,keywordFlags=0,name="Ex c["Grants Level 25 Purity of Ice Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="PurityOfIce"}}},nil} c["Grants Level 25 Purity of Lightning Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="PurityOfLightning"}}},nil} c["Grants Level 25 Scorching Ray Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="ScorchingRay"}}},nil} -c["Grants Level 25 Wintertide Brand"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="WintertideBrand"}}},nil} +c["Grants Level 25 Wintertide Brand Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="WintertideBrand"}}},nil} c["Grants Level 30 Crushing Fist Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="CrushingFist"}}},nil} c["Grants Level 30 Dash Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="Dash"}}},nil} c["Grants Level 30 Herald of the Hive Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="HeraldOfTheBreach"}}},nil} @@ -9320,7 +9188,10 @@ c["Grants Summon Harbinger of Focus Skill"]={{[1]={flags=0,keywordFlags=0,name=" c["Grants Summon Harbinger of Storms Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfStorms"}}},nil} c["Grants Summon Harbinger of Time Skill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="SummonHarbingerOfTime"}}},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["Grants a random Divination buff for 20 seconds when used"]={nil,"Grants a random Divination buff for 20 seconds when used "} +c["Grants a random Divination Buff for 20 seconds when Used"]={nil,"Grants a random Divination Buff for 20 seconds when Used "} +c["Grants level 20 Affliction"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Affliction"}}},nil} +c["Grants level 20 Pacify"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Pacify"}}},nil} +c["Grants level 20 Penance Mark"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="PenanceMark"}}},nil} 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["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["Guard Skills have 20% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=89,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=20}},nil} @@ -9353,7 +9224,6 @@ c["Haste has no Reservation"]={{[1]={[1]={skillId="Haste",type="SkillId"},[2]={n c["Hatred has 100% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=100}},nil} c["Hatred has 50% increased Aura Effect while at maximum Frenzy Charges"]={{[1]={[1]={stat="FrenzyCharges",thresholdStat="FrenzyChargesMax",type="StatThreshold"},[2]={includeTransfigured=true,skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=50}},nil} c["Hatred has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} -c["Hatred has 50% less Reservation"]={{[1]={[1]={includeTransfigured=true,skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="Reserved",type="MORE",value=-50}},nil} c["Hatred has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Hatred",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} c["Hatred has no Reservation"]={{[1]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Hatred",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Having a placed Banner does not prevent you gaining Valour"]={nil,"Having a placed Banner does not prevent you gaining Valour "} @@ -9368,54 +9238,57 @@ c["Herald Skills have 25% increased Area of Effect"]={{[1]={[1]={skillType=62,ty c["Herald of Agony has 100% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil} c["Herald of Agony has 40% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=40}},nil} c["Herald of Agony has 60% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=60}},nil} -c["Herald of Agony has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} +c["Herald of Agony has 80% reduced Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Agony",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=-80}},nil} c["Herald of Ash has 100% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Ash",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil} c["Herald of Ash has 40% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Ash",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=40}},nil} c["Herald of Ash has 60% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Ash",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=60}},nil} -c["Herald of Ash has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Ash",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} +c["Herald of Ash has 80% reduced Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Ash",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=-80}},nil} c["Herald of Ice has 100% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil} c["Herald of Ice has 40% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=40}},nil} c["Herald of Ice has 60% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=60}},nil} -c["Herald of Ice has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} +c["Herald of Ice has 80% reduced Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Ice",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=-80}},nil} c["Herald of Purity has 100% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil} c["Herald of Purity has 40% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=40}},nil} c["Herald of Purity has 60% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=60}},nil} -c["Herald of Purity has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} +c["Herald of Purity has 80% reduced Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Purity",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=-80}},nil} c["Herald of Thunder also creates a storm when you Shock an Enemy"]={nil,"also creates a storm when you Shock an Enemy "} -c["Herald of Thunder also creates a storm when you Shock an Enemy Storms Hit Enemies with 50% increased Frequency"]={nil,"also creates a storm when you Shock an Enemy Storms Hit Enemies with 50% increased Frequency "} +c["Herald of Thunder also creates a storm when you Shock an Enemy Herald of Thunder's Storms Hit Enemies with 50% increased Frequency"]={nil,"also creates a storm when you Shock an Enemy Herald of Thunder's Storms Hit Enemies with 50% increased Frequency "} c["Herald of Thunder has 100% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=100}},nil} c["Herald of Thunder has 35% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=35}},nil} c["Herald of Thunder has 40% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=40}},nil} c["Herald of Thunder has 50% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=50}},nil} c["Herald of Thunder has 60% increased Buff Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="BuffEffect",type="INC",value=60}},nil} -c["Herald of Thunder has 80% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=80}},nil} +c["Herald of Thunder has 80% reduced Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Herald of Thunder",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=-80}},nil} +c["Herald of Thunder's Storms Hit Enemies with 40% increased Frequency"]={{[1]={flags=0,keywordFlags=0,name="HeraldStormFrequency",type="INC",value=40}},nil} +c["Herald of Thunder's Storms Hit Enemies with 50% increased Frequency"]={{[1]={flags=0,keywordFlags=0,name="HeraldStormFrequency",type="INC",value=50}},nil} c["Hex Master"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Hex Master"}},nil} c["Hex Reflection"]={nil,"Hex Reflection "} c["Hex Reflection +10% Chance to Block Attack Damage while not Cursed"]={nil,"Hex Reflection +10% Chance to Block Attack Damage while not Cursed "} c["Hex Reflection Unaffected by Curses"]={nil,"Hex Reflection Unaffected by Curses "} +c["Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies"]={nil,"Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies "} c["Hexes applied by Socketed Curse Skills are Reflected back to you"]={nil,"Hexes applied by Socketed Curse Skills are Reflected back to you "} -c["Hexes applied by Socketed Curse Skills are Reflected back to you You cannot be Chilled for 3 seconds after being Chilled"]={nil,"Hexes applied by Socketed Curse Skills are Reflected back to you You cannot be Chilled for 3 seconds after being Chilled "} +c["Hexes applied by Socketed Curse Skills are Reflected back to you 60% increased Stun and Block Recovery"]={nil,"Hexes applied by Socketed Curse Skills are Reflected back to you 60% increased Stun and Block Recovery "} c["Hexes from Socketed Skills can apply 5 additional Curses"]={{[1]={flags=0,keywordFlags=0,name="SocketedCursesHexLimitValue",type="BASE",value=5},[2]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="SocketedCursesAdditionalLimit",type="FLAG",value=true}},nil} -c["Hexes on Slain Enemies are transferred to a nearby Enemy"]={nil,"Hexes on Slain Enemies are transferred to a nearby Enemy "} c["Historic"]={{},nil} c["Hit Damage with your Off Hand treats Enemy Monster"]={nil,"Hit Damage with your Off Hand treats Enemy Monster "} c["Hit Damage with your Off Hand treats Enemy Monster Elemental Resistance values as inverted"]={nil,"Hit Damage with your Off Hand treats Enemy Monster Elemental Resistance values as inverted "} c["Hit Damage with your Off Hand treats Enemy Monster Elemental Resistance values as inverted Limited to 1 Runegraft of the Gauche"]={nil,"Hit Damage with your Off Hand treats Enemy Monster Elemental Resistance values as inverted Limited to 1 Runegraft of the Gauche "} -c["Hits Overwhelm 15% of Physical Damage Reduction while you have Sacrificial Zeal"]={{[1]={[2]={type="Condition",var="SacrificialZeal"},flags=0,keywordFlags=0,name="EnemyPhysicalDamageReduction",type="BASE",value=-15}},nil} c["Hits Stun as though dealing 50% more Melee Fire Damage"]={nil,"Hits Stun as though dealing 50% more Melee Fire Damage "} c["Hits Stun as though dealing 50% more Melee Fire Damage Ignites from Stunning Melee Hits deal 20% more Damage"]={nil,"Hits Stun as though dealing 50% more Melee Fire Damage Ignites from Stunning Melee Hits deal 20% more Damage "} c["Hits against Nearby Enemies have 50% increased Critical Strike Chance"]={nil,"Hits against Nearby Enemies have 50% increased Critical Strike Chance "} -c["Hits against Nearby Enemies have 50% increased Critical Strike Chance 20% increased Global Defences"]={nil,"Hits against Nearby Enemies have 50% increased Critical Strike Chance 20% increased Global Defences "} +c["Hits against Nearby Enemies have 50% increased Critical Strike Chance Nearby Enemies grant 25% increased Flask Charges"]={nil,"Hits against Nearby Enemies have 50% increased Critical Strike Chance Nearby Enemies grant 25% increased Flask Charges "} c["Hits against you Cannot be Critical Strikes if you've been Stunned Recently"]={{[1]={[1]={type="Condition",var="StunnedRecently"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="NeverCrit",type="FLAG",value=true}}},[2]={[1]={type="Condition",var="StunnedRecently"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:NeverCrit",type="FLAG",value=true}}}},nil} c["Hits against you are always Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AlwaysCrit",type="FLAG",value=true}}},[2]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:AlwaysCrit",type="FLAG",value=true}}}},nil} c["Hits always Ignite"]={{[1]={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100}},nil} c["Hits always Shock"]={{[1]={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=100}},nil} 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["Hits from Socketed Vaal Skills ignore Enemy Monster Physical Damage Reduction"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="IgnoreEnemyPhysicalDamageReduction",type="FLAG",value=true}}}},nil} c["Hits from Socketed Vaal Skills ignore Enemy Monster Resistances"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="IgnoreElementalResistances",type="FLAG",value=true}}},[2]={[1]={slotName="{SlotName}",type="SocketedIn"},[2]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="IgnoreChaosResistance",type="FLAG",value=true}}}},nil} +c["Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction"]={nil,"Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction "} +c["Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction Hits from Socketed Vaal Skills ignore Enemy Monster Resistances"]={nil,"Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction Hits from Socketed Vaal Skills ignore Enemy Monster Resistances "} c["Hits have 10% chance to deal 50% more Area Damage"]={{[1]={flags=516,keywordFlags=0,name="Damage",type="MORE",value=5}},nil} c["Hits have 10% chance to ignore Enemy Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=10}},nil} c["Hits have 15% chance to ignore Enemy Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=15}},nil} +c["Hits have 15% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal"]={{[1]={[2]={type="Condition",var="SacrificialZeal"},flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=15}},nil} c["Hits have 15% chance to treat Enemy Monster Elemental Resistance values as inverted"]={{[1]={flags=0,keywordFlags=0,name="HitsInvertEleResChance",type="CHANCE",value=0.15}},nil} c["Hits have 170% increased Critical Strike Chance against you"]={{[1]={flags=0,keywordFlags=0,name="EnemyCritChance",type="INC",value=170}},nil} c["Hits have 20% chance to deal 50% more Area Damage"]={{[1]={flags=516,keywordFlags=0,name="Damage",type="MORE",value=10}},nil} @@ -9423,7 +9296,9 @@ c["Hits have 200% increased Critical Strike Chance against you"]={{[1]={flags=0, c["Hits have 30% chance to deal 50% more Area Damage"]={{[1]={flags=516,keywordFlags=0,name="Damage",type="MORE",value=15}},nil} c["Hits have 30% chance to ignore Enemy Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=30}},nil} c["Hits have 35% chance to ignore Enemy Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=35}},nil} +c["Hits have 43% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal"]={{[1]={[2]={type="Condition",var="SacrificialZeal"},flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=43}},nil} c["Hits have 50% chance to ignore Enemy Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=50}},nil} +c["Hits have 50% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal"]={{[1]={[2]={type="Condition",var="SacrificialZeal"},flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=50}},nil} c["Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items"]={{[1]={[1]={threshold=0,type="MultiplierThreshold",upper=true,var="NonElderItem"},flags=0,keywordFlags=0,name="IgnoreChaosResistance",type="FLAG",value=true}},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["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} @@ -9457,7 +9332,7 @@ c["Hollow Palm Technique"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="L c["If Amethyst Flask Charges are consumed, 37% of Physical Damage as Extra Chaos Damage"]={{[1]={[1]={neg=true,skillType=41,type="SkillType"},[2]={neg=true,skillType=57,type="SkillType"},[3]={type="Condition",var="HaveAmethystFlask"},flags=0,keywordFlags=0,name="PhysicalDamageGainAsChaos",type="BASE",value=37}},nil} c["If Bismuth Flask Charges are consumed, Penetrate 25% Elemental Resistances"]={{[1]={[1]={neg=true,skillType=41,type="SkillType"},[2]={neg=true,skillType=57,type="SkillType"},[3]={type="Condition",var="HaveBismuthFlask"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=25}},nil} c["If Diamond Flask Charges are consumed, 250% increased Critical Strike Chance"]={{[1]={[1]={neg=true,skillType=41,type="SkillType"},[2]={neg=true,skillType=57,type="SkillType"},[3]={type="Condition",var="HaveDiamondFlask"},flags=0,keywordFlags=0,name="CritChance",type="INC",value=250}},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["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["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["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["If you've Attacked Recently, you and nearby Allies have +25% 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=25}}}},nil} @@ -9469,15 +9344,11 @@ c["If you've Consumed a corpse Recently, you and your Minions have 30% increased c["If you've Impaled an Enemy Recently, you"]={nil,"If you've Impaled an Enemy Recently, you "} c["If you've Impaled an Enemy Recently, you and nearby Allies have +1000 to Armour"]={{[1]={[1]={type="Condition",var="ImpaledRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Armour",type="BASE",value=1000}}}},nil} c["If you've Warcried Recently, you and nearby allies have 20% 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=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["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 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["Ignited Enemies Burn 50% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=50}},nil} c["Ignited Enemies Burn 65% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=65}},nil} c["Ignited Enemies Burn 80% slower"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnSlower",type="INC",value=80}},nil} c["Ignited Enemies Killed by your Hits are destroyed"]={nil,"Ignited Enemies Killed by your Hits are destroyed "} -c["Ignited Enemies you hit are destroyed on Kill"]={nil,"Ignited Enemies you hit are destroyed on Kill "} c["Ignited enemies cannot Ignite you"]={nil,"Ignited enemies cannot Ignite you "} -c["Ignites all nearby Enemies on Killing an Ignited Enemy"]={nil,"Ignites all nearby Enemies on Killing an Ignited Enemy "} c["Ignites from Stunning Melee Hits deal 20% more Damage"]={nil,"Ignites from Stunning Melee Hits deal 20% more Damage "} c["Ignites inflicted with this Weapon deal 63% more Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=8388608,name="Damage",type="MORE",value=63}},nil} c["Ignites inflicted with this Weapon deal 75% more Damage"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},[2]={skillType=1,type="SkillType"},flags=0,keywordFlags=8388608,name="Damage",type="MORE",value=75}},nil} @@ -9491,15 +9362,15 @@ c["Ignites you inflict deal Damage 50% faster"]={{[1]={flags=0,keywordFlags=0,na c["Ignites you inflict deal Damage 8% faster"]={{[1]={flags=0,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=8}},nil} c["Ignites you inflict during Effect spread to other Enemies within 1.5 metres"]={nil,"Ignites you inflict during Effect spread to other Enemies within 1.5 metres "} c["Ignites you inflict during Effect spread to other Enemies within 1.5 metres Leech 1.5% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect"]={nil,"Ignites you inflict during Effect spread to other Enemies within 1.5 metres Leech 1.5% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect "} +c["Ignites you inflict spread to other Enemies within 1.2 metres"]={nil,"Ignites you inflict spread to other Enemies within 1.2 metres "} +c["Ignites you inflict spread to other Enemies within 1.2 metres Ignites you inflict spread to other Enemies within 1.5 metres"]={nil,"Ignites you inflict spread to other Enemies within 1.2 metres Ignites you inflict spread to other Enemies within 1.5 metres "} +c["Ignites you inflict spread to other Enemies within 1.5 metres"]={nil,"Ignites you inflict spread to other Enemies within 1.5 metres "} +c["Ignites you inflict spread to other Enemies within 1.5 metres Recover 60 Life when you Ignite an Enemy"]={nil,"Ignites you inflict spread to other Enemies within 1.5 metres Recover 60 Life when you Ignite an Enemy "} c["Ignites you inflict spread to other Enemies within a Radius of 1.5 metres"]={nil,"Ignites you inflict spread to other Enemies within a Radius of 1.5 metres "} c["Ignites you inflict with Attacks deal Damage 20% faster"]={{[1]={flags=1,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=20}},nil} c["Ignites you inflict with Attacks deal Damage 35% faster"]={{[1]={flags=1,keywordFlags=0,name="IgniteBurnFaster",type="INC",value=35}},nil} c["Ignites you inflict with this weapon spread to other Enemies within 2.8 metres"]={nil,"Ignites you inflict with this weapon spread to other Enemies within 2.8 metres "} c["Ignites you inflict with this weapon spread to other Enemies within 2.8 metres Unaffected by Ignite"]={nil,"Ignites you inflict with this weapon spread to other Enemies within 2.8 metres Unaffected by Ignite "} -c["Ignites your Skills cause spread to other Enemies within 1.2 metres"]={nil,"Ignites your Skills cause spread to other Enemies within 1.2 metres "} -c["Ignites your Skills cause spread to other Enemies within 1.2 metres Ignites your Skills cause spread to other Enemies within 1.5 metres"]={nil,"Ignites your Skills cause spread to other Enemies within 1.2 metres Ignites your Skills cause spread to other Enemies within 1.5 metres "} -c["Ignites your Skills cause spread to other Enemies within 1.5 metres"]={nil,"Ignites your Skills cause spread to other Enemies within 1.5 metres "} -c["Ignites your Skills cause spread to other Enemies within 1.5 metres Recover 60 Life when you Ignite an Enemy"]={nil,"Ignites your Skills cause spread to other Enemies within 1.5 metres Recover 60 Life when you Ignite an Enemy "} c["Ignore Attribute Requirements"]={{[1]={flags=0,keywordFlags=0,name="IgnoreAttributeRequirements",type="FLAG",value=true}},nil} c["Ignore Stuns while Casting"]={nil,"Ignore Stuns while Casting "} c["Ignore Stuns while Casting Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon"]={nil,"Ignore Stuns while Casting Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon "} @@ -9537,22 +9408,25 @@ c["Implicit Modifier magnitudes are doubled"]={{},"Implicit Modifier magnitudes c["Implicit Modifier magnitudes are tripled"]={nil,"Implicit Modifier magnitudes are tripled "} c["Implicit Modifier magnitudes are tripled Corrupted"]={nil,"Implicit Modifier magnitudes are tripled Corrupted "} c["Implicit Modifiers Cannot Be Changed"]={{},nil} -c["Increase to Cast Speed from Arcane Surge also applies to Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="ArcaneSurgeCastSpeedToMovementSpeed",type="FLAG",value=true}},nil} c["Increases and Reductions to Armour also apply to Energy"]={nil,"Increases and Reductions to Armour also apply to Energy "} c["Increases and Reductions to Armour also apply to Energy Shield Recharge Rate at 20% of their value"]={{[1]={flags=0,keywordFlags=0,name="ArmourAppliesToEnergyShieldRecharge",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedArmourAppliesToEnergyShieldRecharge",type="MAX",value=20}},nil} 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["Increases and Reductions to Cast Speed apply to Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="CastSpeedAppliesToAttacks",type="FLAG",value=true}},nil} +c["Increases and Reductions to Chaos Damage also apply to Effect of"]={nil,"Increases and Reductions to Chaos Damage also apply to Effect of "} c["Increases and Reductions to Chaos Damage also apply to Effect of Auras from Chaos Skills at 13% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageAppliesToChaosAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedChaosDamageAppliesToChaosAuraEffect",type="BASE",value=13},[3]={flags=0,keywordFlags=0,name="ChaosDamageAppliesToChaosAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Chaos Damage also apply to Effect of Auras from Chaos Skills at 15% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="ChaosDamageAppliesToChaosAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedChaosDamageAppliesToChaosAuraEffect",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="ChaosDamageAppliesToChaosAuraEffectLimit",type="MAX",value=150}},nil} +c["Increases and Reductions to Cold Damage also apply to Effect of"]={nil,"Increases and Reductions to Cold Damage also apply to Effect of "} c["Increases and Reductions to Cold Damage also apply to Effect of Auras from Cold Skills at 13% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageAppliesToColdAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedColdDamageAppliesToColdAuraEffect",type="BASE",value=13},[3]={flags=0,keywordFlags=0,name="ColdDamageAppliesToColdAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Cold Damage also apply to Effect of Auras from Cold Skills at 15% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageAppliesToColdAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedColdDamageAppliesToColdAuraEffect",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="ColdDamageAppliesToColdAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Effect of Flasks applied to you also applies to Effect of Arcane Surge on you at 225% of their value"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffectToArcaneSurgeEffect",type="BASE",value=225}},nil} c["Increases and Reductions to Effect of Flasks applied to you also applies to Effect of Arcane Surge on you at 250% of their value"]={{[1]={flags=0,keywordFlags=0,name="FlaskEffectToArcaneSurgeEffect",type="BASE",value=250}},nil} +c["Increases and Reductions to Fire Damage also apply to Effect of"]={nil,"Increases and Reductions to Fire Damage also apply to Effect of "} c["Increases and Reductions to Fire Damage also apply to Effect of Auras from Fire Skills at 13% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="FireDamageAppliesToFireAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedFireDamageAppliesToFireAuraEffect",type="BASE",value=13},[3]={flags=0,keywordFlags=0,name="FireDamageAppliesToFireAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Fire Damage also apply to Effect of Auras from Fire Skills at 15% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="FireDamageAppliesToFireAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedFireDamageAppliesToFireAuraEffect",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="FireDamageAppliesToFireAuraEffectLimit",type="MAX",value=150}},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["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["Increases and Reductions to Light Radius also apply to Damage"]={{[1]={flags=0,keywordFlags=0,name="LightRadiusAppliesToDamage",type="FLAG",value=true}},nil} +c["Increases and Reductions to Lightning Damage also apply to Effect of"]={nil,"Increases and Reductions to Lightning Damage also apply to Effect of "} c["Increases and Reductions to Lightning Damage also apply to Effect of Auras from Lightning Skills at 13% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageAppliesToLightningAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedLightningDamageAppliesToLightningAuraEffect",type="BASE",value=13},[3]={flags=0,keywordFlags=0,name="LightningDamageAppliesToLightningAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Lightning Damage also apply to Effect of Auras from Lightning Skills at 15% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="LightningDamageAppliesToLightningAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedLightningDamageAppliesToLightningAuraEffect",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="LightningDamageAppliesToLightningAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Maximum Energy Shield instead apply to Ward"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldToWard",type="FLAG",value=true}},nil} @@ -9561,12 +9435,14 @@ c["Increases and Reductions to Minion Cast Speed also affect you"]={{[1]={flags= c["Increases and Reductions to Minion Damage also affect you"]={{[1]={flags=0,keywordFlags=0,name="MinionDamageAppliesToPlayer",type="FLAG",value=true}},nil} c["Increases and Reductions to Minion Damage also affect you at 150% of their value"]={{[1]={flags=0,keywordFlags=0,name="MinionDamageAppliesToPlayer",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedMinionDamageAppliesToPlayer",type="MAX",value=150}},nil} c["Increases and Reductions to Minion Maximum Life also apply to you at 15% of their value"]={{[1]={flags=0,keywordFlags=0,name="MinionLifeAppliesToPlayer",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedMinionLifeAppliesToPlayer",type="MAX",value=15}},nil} +c["Increases and Reductions to Physical Damage also apply to Effect of"]={nil,"Increases and Reductions to Physical Damage also apply to Effect of "} c["Increases and Reductions to Physical Damage also apply to Effect of Auras from Physical Skills at 13% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageAppliesToPhysicalAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedPhysicalDamageAppliesToPhysicalAuraEffect",type="BASE",value=13},[3]={flags=0,keywordFlags=0,name="PhysicalDamageAppliesToPhysicalAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Physical Damage also apply to Effect of Auras from Physical Skills at 15% of their value, up to a maximum of 150%"]={{[1]={flags=0,keywordFlags=0,name="PhysicalDamageAppliesToPhysicalAuraEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedPhysicalDamageAppliesToPhysicalAuraEffect",type="BASE",value=15},[3]={flags=0,keywordFlags=0,name="PhysicalDamageAppliesToPhysicalAuraEffectLimit",type="MAX",value=150}},nil} c["Increases and Reductions to Projectile Speed also apply to Damage with Bows"]={{[1]={flags=0,keywordFlags=0,name="ProjectileSpeedAppliesToBowDamage",type="FLAG",value=true}},nil} c["Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value"]={{[1]={flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedSpellDamageAppliesToAttacks",type="MAX",value=150}},nil} c["Increases and Reductions to Spell Damage also apply to Attacks while wielding a Wand"]={{[1]={[1]={type="Condition",var="UsingWand"},flags=0,keywordFlags=0,name="SpellDamageAppliesToAttacks",type="FLAG",value=true}},nil} c["Increases and reductions to Maximum Mana also apply to Shock Effect at 30% of their value"]={{[1]={flags=0,keywordFlags=0,name="ManaAppliesToShockEffect",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ImprovedManaAppliesToShockEffect",type="MAX",value=30}},nil} +c["Increases to Cast Speed from Arcane Surge also applies to Movement Speed"]={nil,"Increases to Cast Speed from Arcane Surge also applies to Movement Speed "} c["Inflict 3 additional Poisons on the same Target"]={nil,"Inflict 3 additional Poisons on the same Target "} c["Inflict 3 additional Poisons on the same Target when you inflict Poison with this weapon"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="AdditionalPoisonStacks",type="BASE",value=3}},nil} c["Inflict 5 additional Impales on Enemies you Impale"]={nil,"Inflict 5 additional Impales on Enemies you Impale "} @@ -9602,8 +9478,8 @@ c["Inherent loss of Rage is 8% slower"]={{[1]={flags=0,keywordFlags=0,name="Inhe c["Inner Conviction"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Inner Conviction"}},nil} c["Instant Recovery"]={{[1]={flags=0,keywordFlags=0,name="FlaskInstantRecovery",type="BASE",value=100}},nil} c["Insufficient Mana doesn't prevent your Melee Attacks"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks "} +c["Insufficient Mana doesn't prevent your Melee Attacks Eat 4 Souls when you Kill a Rare or Unique Enemy with this Weapon"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Eat 4 Souls when you Kill a Rare or Unique Enemy with this Weapon "} c["Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have +50% to Critical Strike Multiplier"]={nil,"Insufficient Mana doesn't prevent your Melee Attacks Nearby Allies have +50% to Critical Strike Multiplier "} -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["Intelligence is added to Accuracy Rating with Wands"]={{[1]={[1]={stat="Int",type="PerStat"},flags=8388608,keywordFlags=0,name="Accuracy",type="BASE",value=1}},nil} c["Intelligence provides no inherent bonus to Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="NoIntBonusToES",type="FLAG",value=true}},nil} c["Intelligence provides no inherent bonus to Maximum Mana"]={{[1]={flags=0,keywordFlags=0,name="NoIntBonusToMana",type="FLAG",value=true}},nil} @@ -9638,11 +9514,14 @@ c["Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them"]={{[ 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["Left ring slot: +250 to maximum Energy Shield"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShield",type="BASE",value=250}},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["Left ring slot: 100% of Elemental Hit Damage from you and"]={{[1]={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=100}}," from you and "} c["Left ring slot: 100% of Elemental Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=100}}}}," from you and your s cannot be Reflected "} -c["Left ring slot: 100% of Elemental Hit Damage from you and your Minions cannot be Reflected Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=100}}}}," from you and your s cannot be Reflected Right ring slot: 30% reduced Reflected Physical Damage taken "} -c["Left ring slot: 30% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalReflectedDamageTaken",type="INC",value=-30}},nil} -c["Left ring slot: 40% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalReflectedDamageTaken",type="INC",value=-40}},nil} -c["Left ring slot: 80% reduced Reflected Elemental Damage taken"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ElementalReflectedDamageTaken",type="INC",value=-80}},nil} +c["Left ring slot: 30% of Elemental Hit Damage from you and"]={{[1]={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}," from you and "} +c["Left ring slot: 30% of Elemental Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}}}," from you and your s cannot be Reflected "} +c["Left ring slot: 40% of Elemental Hit Damage from you and"]={{[1]={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=40}}," from you and "} +c["Left ring slot: 40% of Elemental Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=40}}}}," from you and your s cannot be Reflected "} +c["Left ring slot: 80% of Elemental Hit Damage from you and"]={{[1]={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=80}}," from you and "} +c["Left ring slot: 80% of Elemental Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=1,type="SlotNumber"},[2]={includeTransfigured=true,skillName="Elemental Hit",type="SkillName"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=80}}}}," from you and your s cannot be Reflected "} c["Left ring slot: Projectiles from Spells Fork"]={{[1]={[1]={num=1,type="SlotNumber"},flags=1026,keywordFlags=0,name="ForkOnce",type="FLAG",value=true},[2]={[1]={num=1,type="SlotNumber"},flags=1026,keywordFlags=0,name="ForkCountMax",type="BASE",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["Left ring slot: Regenerate 40 Mana per Second"]={{[1]={[1]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=40}},nil} @@ -9667,9 +9546,8 @@ c["Life Flask Effects do not Queue"]={nil,"Life Flask Effects do not Queue "} c["Life Flask Effects do not Queue 50% less Life Recovery from Flasks"]={nil,"Life Flask Effects do not Queue 50% less Life Recovery from Flasks "} c["Life Flasks gain 1 Charge every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=0.33333333333333}},nil} c["Life Flasks gain 2 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=0.66666666666667}},nil} -c["Life Flasks gain 2 charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=0.66666666666667}},nil} +c["Life Flasks gain 3 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=1}},nil} c["Life Flasks gain 3 Charges when you Suppress Spell Damage"]={nil,"Life Flasks gain 3 Charges when you Suppress Spell Damage "} -c["Life Flasks gain 3 charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=1}},nil} c["Life Flasks gain a Charge when you hit an Enemy, no more than once each second"]={nil,"Life Flasks gain a Charge when you hit an Enemy, no more than once each second "} c["Life Flasks used while on Low Life apply Recovery Instantly"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeFlaskInstantRecovery",type="BASE",value=100}},nil} c["Life Leech effects Recover Energy Shield instead while on Full Life"]={{[1]={[1]={type="Condition",var="FullLife"},[2]={type="Condition",var="LeechingLife"},flags=0,keywordFlags=0,name="ImmortalAmbition",type="FLAG",value=true}},nil} @@ -9688,8 +9566,8 @@ c["Life and Mana Leech are instant during effect"]={{[1]={[1]={type="Condition", c["Life and Mana Leech from Critical Strikes are instant"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantLifeLeech",type="BASE",value=100},[2]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="InstantManaLeech",type="BASE",value=100}},nil} c["Life that would be lost by taking Damage is instead Reserved"]={{[1]={flags=0,keywordFlags=0,name="DamageInsteadReservesLife",type="FLAG",value=true}},nil} c["Light Radius is based on Energy Shield instead of Life"]={nil,"Light Radius is based on Energy Shield instead of Life "} -c["Lightning Damage from Enemies Hitting you is Lucky"]={nil,"Lightning Damage from Enemies Hitting you is Lucky "} -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["Lightning Damage of Enemies Hitting you is Lucky"]={nil,"Lightning Damage of Enemies Hitting you is Lucky "} +c["Lightning Damage of Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky"]={nil,"Lightning Damage of Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky "} c["Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky"]={nil,"Lightning Damage of Enemies Hitting you while you're Shocked is Unlucky "} c["Lightning Damage with Non-Critical Strikes is Lucky"]={{[1]={flags=0,keywordFlags=0,name="LightningNoCritLucky",type="FLAG",value=true}},nil} c["Lightning Resistance does not affect Lightning Damage taken"]={{[1]={flags=0,keywordFlags=0,name="SelfIgnoreLightningResistance",type="FLAG",value=true}},nil} @@ -9773,11 +9651,9 @@ c["Lose 40 Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegen",type c["Lose 40 Mana when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=-40}}," when you use a Skill "} c["Lose 5% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldDegenPercent",type="BASE",value=5}},nil} c["Lose 500 Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeDegen",type="BASE",value=500}},nil} -c["Lose 7% of maximum Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegenPercent",type="BASE",value=7}},nil} +c["Lose 7% of Mana per Second"]={{[1]={flags=0,keywordFlags=0,name="ManaDegenPercent",type="BASE",value=7}},nil} c["Lose 80 Mana when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=-80}}," when you use a Skill "} -c["Lose 80 Mana when you use a Skill Gain 20 Energy Shield per Enemy Killed"]={{[1]={flags=0,keywordFlags=0,name="Mana",type="BASE",value=-80}}," when you use a Skill Gain 20 Energy Shield per Enemy Killed "} c["Lose Adrenaline when you cease to be Flame-Touched"]={{},nil} -c["Lose Souls gained from Soul Eater when you use a Flask"]={nil,"Lose Souls gained from Soul Eater when you use a Flask "} c["Lose a Frenzy Charge each second"]={nil,"Lose a Frenzy Charge each second "} c["Lose a Frenzy Charge each second Corrupted"]={nil,"Lose a Frenzy Charge each second Corrupted "} c["Lose a Power Charge each second"]={nil,"Lose a Power Charge each second "} @@ -9786,7 +9662,7 @@ c["Lose a Power Charge each second if you have not Detonated Mines Recently"]={n c["Lose all Defiance when you reach 10 Defiance"]={nil,"Lose all Defiance when you reach 10 Defiance "} c["Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance"]={nil,"Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance "} c["Lose all Divine Charges when you gain Divinity"]={nil,"Lose all Divine Charges when you gain Divinity "} -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["Lose all Eaten Souls when you use a Flask"]={nil,"Lose all Eaten Souls when you use a Flask "} c["Lose all Endurance Charges on use"]={nil,"Lose all Endurance Charges on use "} c["Lose all Endurance Charges on use Gain 1 Endurance Charge per Second during Effect"]={nil,"Lose all Endurance Charges on use Gain 1 Endurance Charge per Second during Effect "} c["Lose all Endurance Charges when Rampage ends"]={nil,"Lose all Endurance Charges when Rampage ends "} @@ -9795,9 +9671,8 @@ c["Lose all Fanatic Charges on reaching Maximum Fanatic Charges +4 to Maximum Fa c["Lose all Fragile Regrowth when Hit"]={nil,"Lose all Fragile Regrowth when Hit "} c["Lose all Fragile Regrowth when Hit Gain 1 Fragile Regrowth each second"]={nil,"Lose all Fragile Regrowth when Hit Gain 1 Fragile Regrowth each second "} c["Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows"]={nil,"Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows "} -c["Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows +50% to Global Critical Strike Multiplier while you have a Frenzy Charge"]={nil,"Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows +50% to Global Critical Strike Multiplier while you have a Frenzy Charge "} +c["Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows +50% Global Critical Strike Multiplier while you have a Frenzy Charge"]={nil,"Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows +50% Global Critical Strike Multiplier while you have a Frenzy Charge "} c["Lose all Frenzy, Endurance, and Power Charges when you Move"]={nil,"Lose all Frenzy, Endurance, and Power Charges when you Move "} -c["Lose all Frenzy, Endurance, and Power Charges when you Move Minimum Endurance Charges equal to Maximum while stationary"]={nil,"Lose all Frenzy, Endurance, and Power Charges when you Move Minimum Endurance Charges equal to Maximum while stationary "} c["Lose all Gale Force when Hit"]={nil,"Lose all Gale Force when Hit "} c["Lose all Power Charges on Critical Strike"]={nil,"Lose all Power Charges on Critical Strike "} c["Lose all Power Charges on reaching Maximum Power Charges"]={nil,"Lose all Power Charges on reaching Maximum Power Charges "} @@ -9827,10 +9702,10 @@ c["Mace, Sceptre or Staff Attacks deal 20% increased Damage with Hits and Ailmen 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["Magebane"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Magebane"}},nil} c["Magic Utility Flask Effects cannot be removed"]={nil,"Magic Utility Flask Effects cannot be removed "} -c["Magic Utility Flask cannot be Used"]={nil,"Magic Utility Flask cannot be Used "} -c["Magic Utility Flask cannot be Used Leftmost 4 Magic Utility Flasks constantly apply their Flask Effects to you"]={nil,"Magic Utility Flask cannot be Used Leftmost 4 Magic Utility Flasks constantly apply their Flask Effects to you "} c["Magic Utility Flasks applied to you have 15% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="MagicUtilityFlaskEffect",type="INC",value=15}},nil} c["Magic Utility Flasks applied to you have 30% increased Effect"]={{[1]={[1]={actor="player",type="ActorCondition"},flags=0,keywordFlags=0,name="MagicUtilityFlaskEffect",type="INC",value=30}},nil} +c["Magic Utility Flasks cannot be Used"]={nil,"Magic Utility Flasks cannot be Used "} +c["Magic Utility Flasks cannot be Used Leftmost 4 Magic Utility Flasks constantly apply their Flask Effects to you"]={nil,"Magic Utility Flasks cannot be Used Leftmost 4 Magic Utility Flasks constantly apply their Flask Effects to you "} c["Malevolence has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Malevolence",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} c["Malevolence has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Malevolence",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} c["Malevolence has no Reservation"]={{[1]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Malevolence",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} @@ -9838,13 +9713,10 @@ c["Mana Flask Effects are not removed when Unreserved Mana is Filled"]={{[1]={fl c["Mana Flask Effects do not Queue"]={nil,"Mana Flask Effects do not Queue "} c["Mana Flasks gain 1 Charge every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGenerated",type="BASE",value=0.33333333333333}},nil} c["Mana Flasks gain 2 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGenerated",type="BASE",value=0.66666666666667}},nil} -c["Mana Flasks gain 2 charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGenerated",type="BASE",value=0.66666666666667}},nil} -c["Mana Flasks gain 3 charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGenerated",type="BASE",value=1}},nil} +c["Mana Flasks gain 3 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskChargesGenerated",type="BASE",value=1}},nil} c["Mana Flasks used while on Low Mana apply Recovery Instantly"]={{[1]={[1]={type="Condition",var="LowMana"},flags=0,keywordFlags=0,name="ManaFlaskInstantRecovery",type="BASE",value=100}},nil} c["Mana Recovery from Regeneration is not applied"]={{[1]={flags=0,keywordFlags=0,name="UnaffectedByManaRegen",type="FLAG",value=true}},nil} c["Mana Reservation of Herald Skills is always 45%"]={{[1]={[1]={skillType=62,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ManaReservationPercentForced",value=45}}},nil} -c["Manifested Dancing Dervish dies when Rampage ends"]={{},nil} -c["Manifested Dancing Dervish disables both weapon slots"]={{},nil} c["Manifested Dancing Dervishes die when Rampage ends"]={{},nil} c["Manifested Dancing Dervishes disables both weapon slots"]={{},nil} c["Marauder: 1% of Life Regenerated per second"]={{[1]={[1]={type="Condition",var="ConnectedToMarauderStart"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil} @@ -9862,8 +9734,6 @@ c["Marked Enemy cannot deal Critical Strikes"]={{[1]={flags=0,keywordFlags=0,nam c["Marked Enemy grants 20% increased Flask Charges to you"]={nil,"Marked Enemy grants 20% increased Flask Charges to you "} c["Marked Enemy has 10% reduced Accuracy Rating"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Marked"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=-10}}}},nil} c["Marked Enemy takes 10% increased Damage"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Marked"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DamageTaken",type="INC",value=10}}}},nil} -c["Maximum 1 Buff from an Active Ancestor Totem at a time"]={nil,"Maximum 1 Buff from an Active Ancestor Totem at a time "} -c["Maximum 1 Buff from an Active Ancestor Totem at a time Socketed Slam Gems are Supported by Level 25 Earthbreaker"]={nil,"Maximum 1 Buff from an Active Ancestor Totem at a time Socketed Slam Gems are Supported by Level 25 Earthbreaker "} c["Maximum 10 Fragile Regrowth"]={nil,"Maximum 10 Fragile Regrowth "} c["Maximum 10 Fragile Regrowth 0.7% of Life Regenerated per second per Fragile Regrowth"]={nil,"Maximum 10 Fragile Regrowth 0.7% of Life Regenerated per second per Fragile Regrowth "} c["Maximum 10 Remembrance"]={nil,"Maximum 10 Remembrance "} @@ -9908,6 +9778,14 @@ c["Maximum number of Summoned Spectral Wolves is Doubled"]={{[1]={[1]={globalLim c["Maximum total Energy Shield Recovery per second from Leech is doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="MaxEnergyShieldLeechRateDoubledLimit",type="Multiplier",var="MaxEnergyShieldLeechRateDoubled"},flags=0,keywordFlags=0,name="MaxEnergyShieldLeechRate",type="MORE",value=100},[2]={flags=0,keywordFlags=0,name="Multiplier:MaxEnergyShieldLeechRateDoubled",type="OVERRIDE",value=1}},nil} c["Melee Attacks Poison on Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil} c["Melee Attacks cause Bleeding"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=100}},nil} +c["Melee Attacks have +1% to Critical Strike Chance against Excommunicated Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Excommunicated"},flags=256,keywordFlags=0,name="CritChance",type="BASE",value=1}},nil} +c["Melee Attacks have +1.2% to Critical Strike Chance against Excommunicated Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Excommunicated"},flags=256,keywordFlags=0,name="CritChance",type="BASE",value=1.2}},nil} +c["Melee Attacks have +1.6% to Critical Strike Chance against Excommunicated Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Excommunicated"},flags=256,keywordFlags=0,name="CritChance",type="BASE",value=1.6}},nil} +c["Melee Attacks have +2% to Critical Strike Chance against Excommunicated Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Excommunicated"},flags=256,keywordFlags=0,name="CritChance",type="BASE",value=2}},nil} +c["Melee Attacks have 30% chance to Poison on Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=30}},nil} +c["Melee Attacks have 40% chance to Poison on Hit"]={{[1]={flags=256,keywordFlags=0,name="PoisonChance",type="BASE",value=40}},nil} +c["Melee Attacks have 40% chance to cause Bleeding"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=40}},nil} +c["Melee Attacks have 50% chance to cause Bleeding"]={{[1]={flags=256,keywordFlags=0,name="BleedChance",type="BASE",value=50}},nil} 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["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["Melee Hits Fortify"]={nil,"Melee Hits Fortify "} @@ -9937,12 +9815,12 @@ c["Melee Skills have 10% increased Area of Effect"]={{[1]={[1]={skillType=24,typ c["Melee Skills have 12% increased Area of Effect"]={{[1]={[1]={skillType=24,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=12}},nil} c["Melee Skills have 20% increased Area of Effect"]={{[1]={[1]={skillType=24,type="SkillType"},flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=20}},nil} c["Melee Strike Skills deal Splash Damage to surrounding targets"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets "} -c["Melee Strike Skills deal Splash Damage to surrounding targets 10% increased Global Physical Damage"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets 10% increased Global Physical Damage "} -c["Melee Strike Skills deal Splash Damage to surrounding targets 15% reduced Mana Burn rate"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets 15% reduced Mana Burn rate "} +c["Melee Strike Skills deal Splash Damage to surrounding targets +100 to Strength"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets +100 to Strength "} +c["Melee Strike Skills deal Splash Damage to surrounding targets 25% reduced Mana Burn rate"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets 25% reduced Mana Burn rate "} c["Melee Strike Skills deal Splash Damage to surrounding targets Recover 5% of Life on Kill"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets Recover 5% of Life on Kill "} c["Melee Strike Skills deal Splash Damage to surrounding targets Recover 5% of Life on Kill Enemies Killed by your Hits are destroyed"]={nil,"Melee Strike Skills deal Splash Damage to surrounding targets Recover 5% of Life on Kill Enemies Killed by your Hits are destroyed "} c["Melee Weapon Attacks have Culling Strike"]={{[1]={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=67108865,keywordFlags=0,name="CullPercent",type="MAX",value=10}},nil} -c["Melee Weapon Damage Penetrates 1% Elemental Resistance per Mana Burn, up to a maximum of 200%"]={{[1]={[1]={limit=200,limitTotal=true,type="Multiplier",var="ManaBurnStacks"},flags=67108864,keywordFlags=0,name="ElementalPenetration",type="BASE",value=1}},nil} +c["Melee Weapon Damage Penetrates 1% Elemental Resistances per Mana Burn, up to a maximum of 200%"]={{[1]={[1]={limit=200,limitTotal=true,type="Multiplier",var="ManaBurnStacks"},flags=67108864,keywordFlags=0,name="ElementalPenetration",type="BASE",value=1}},nil} c["Melee Weapon Hits Inflict 3 Withered Debuffs for 2 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}},nil} c["Mercury Footprints"]={nil,"Mercury Footprints "} c["Mind Over Matter"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Mind Over Matter"}},nil} @@ -9958,13 +9836,11 @@ c["Mines have 50% increased Detonation Speed"]={nil,"Mines have 50% increased De c["Mines have 50% increased Detonation Speed Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity"]={nil,"Mines have 50% increased Detonation Speed Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity "} c["Mines have a 10% chance to be Detonated an Additional Time"]={nil,"Mines have a 10% chance to be Detonated an Additional Time "} c["Mines have a 15% chance to be Detonated an Additional Time"]={nil,"Mines have a 15% chance to be Detonated an Additional Time "} -c["Minimum Endurance Charges equal to Maximum while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="MinimumEnduranceChargesIsMaximumEnduranceCharges",type="FLAG",value=true}},nil} -c["Minimum Frenzy Charges equal to Maximum while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="MinimumFrenzyChargesIsMaximumFrenzyCharges",type="FLAG",value=true}},nil} -c["Minimum Power Charges equal to Maximum while stationary"]={{[1]={[1]={type="Condition",var="Stationary"},flags=0,keywordFlags=0,name="MinimumPowerChargesIsMaximumPowerCharges",type="FLAG",value=true}},nil} c["Minion Instability"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Minion Instability"}},nil} c["Minion Life is increased by their Overcapped Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={div=1,stat="FireResistOverCap",type="PerStat"},flags=0,keywordFlags=0,name="Life",type="INC",value=1}}}},nil} +c["Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses"]={nil,"Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses "} +c["Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses +212 Intelligence Requirement"]={nil,"Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses +212 Intelligence Requirement "} c["Minions Convert 2% of their Maximum Life to Maximum Energy Shield per 1% Chaos Resistance they have"]={nil,"Convert 2% of their Maximum Life to Maximum Energy Shield per 1% Chaos Resistance they have "} -c["Minions Convert 2% of their Maximum Life to Maximum Energy Shield per 1% Chaos Resistance they have Chaos Damage taken does not bypass Minions' Energy Shield"]={nil,"Convert 2% of their Maximum Life to Maximum Energy Shield per 1% Chaos Resistance they have Chaos Damage taken does not bypass Minions' Energy Shield "} 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["Minions Hits have 50% chance to ignore Enemy Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChanceToIgnoreEnemyPhysicalDamageReduction",type="BASE",value=50}}}},nil} 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} @@ -9975,16 +9851,14 @@ c["Minions Poison Enemies on Hit"]={{[1]={flags=0,keywordFlags=0,name="MinionMod c["Minions Recover 10% of Life on Killing a Poisoned Enemy"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={percent=10,stat="Life",type="PercentStat"},[2]={actor="enemy",threshold=1,type="MultiplierThreshold",var="PoisonStack"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}}}},nil} c["Minions Recover 10% of their Life when they Block"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={percent=10,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=1}}}},nil} c["Minions Recover 2% of their Life when they Block"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={percent=2,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeOnBlock",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["Minions Recover 20% of Life on Killing a Poisoned Enemy"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={percent=20,stat="Life",type="PercentStat"},[2]={actor="enemy",threshold=1,type="MultiplierThreshold",var="PoisonStack"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}}}},nil} c["Minions Recover 4% of Life on Minion Death"]={nil,"Recover 4% of Life on Minion Death "} c["Minions Recover 5% of Life on Minion Death"]={nil,"Recover 5% of Life on Minion Death "} -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["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["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["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["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["Minions Regenerate 3% Life per Second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}}}},nil} +c["Minions Regenerate 2% of 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["Minions Regenerate 2.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=2.5}}}},nil} +c["Minions Regenerate 3% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}}}},nil} c["Minions are Aggressive"]={nil,"Aggressive "} c["Minions are Aggressive +400 to Armour and Evasion Rating"]={nil,"Aggressive +400 to Armour and Evasion Rating "} c["Minions can hear the whispers for 5 seconds after they deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={[1]={effectType="Global",type="GlobalEffect",unscalable=true},[2]={neg=true,type="Condition",var="NeverCrit"},flags=0,keywordFlags=0,name="Speed",type="INC",value=50}}},[2]={flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={[1]={effectType="Global",type="GlobalEffect",unscalable=true},[2]={neg=true,type="Condition",var="NeverCrit"},flags=0,keywordFlags=0,name="Damage",type="INC",value=50}}},[3]={flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={[1]={percent=20,stat="Life",type="PercentStat"},[2]={effectType="Global",type="GlobalEffect",unscalable=true},[3]={neg=true,type="Condition",var="NeverCrit"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=1}}}},nil} @@ -9996,6 +9870,7 @@ c["Minions convert 25% of Physical Damage to Cold Damage per Green Socket"]={{[1 c["Minions convert 25% of Physical Damage to Fire Damage per Red Socket"]={{[1]={[1]={type="Multiplier",var="RedSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=25}}}},nil} c["Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket"]={{[1]={[1]={type="Multiplier",var="BlueSocketIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageConvertToLightning",type="BASE",value=25}}}},nil} c["Minions convert 50% of Physical Damage to Cold Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageConvertToCold",type="BASE",value=50}}}},nil} +c["Minions count as having the same number of"]={nil,"count as having the same number of "} c["Minions count as having the same number of Endurance, Frenzy and Power Charges as you"]={nil,"count as having the same number of Endurance, Frenzy and Power Charges as you "} c["Minions created Recently cannot be Damaged"]={nil,"created Recently cannot be Damaged "} c["Minions created Recently have 10% increased Attack and Cast Speed"]={{[1]={[1]={type="Condition",var="MinionsCreatedRecently"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Speed",type="INC",value=10}}}},nil} @@ -10041,7 +9916,8 @@ c["Minions deal 62% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="Minio 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 deal 70% increased Damage if you've Hit Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="HitRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=70}}}},nil} c["Minions deal 77% increased Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=77}}}},nil} -c["Minions deal 8 to 16 Added Attack Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="PhysicalMin",type="BASE",value=8}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=65536,name="PhysicalMax",type="BASE",value=16}}}},nil} +c["Minions deal 8 to 16 additional Attack Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalDamage",type="BASE",value=8}}}}," to 16 additional "} +c["Minions deal 8 to 16 additional Attack Physical Damage Golems have 120 to 160 Added Attack Physical Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="PhysicalDamage",type="BASE",value=8}}}}," to 16 additional s have 120 to 160 Added Attack Physical Damage "} 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["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["Minions deal 80% increased Damage if you have Warcried Recently"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",type="ActorCondition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="Damage",type="INC",value=80}}}},nil} @@ -10065,6 +9941,8 @@ c["Minions gain added Resistances equal to 50% of your Resistances"]={{[1]={flag c["Minions have (15-20)% increased maximum Life"]={nil,"(15-20)% increased maximum Life "} c["Minions have (15-20)% increased maximum Life Minions deal (25-35)% increased Damage"]={nil,"(15-20)% increased maximum Life Minions deal (25-35)% increased Damage "} 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["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["Minions have +10% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=10}}}},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["Minions have +10% to Critical Strike Multiplier per Grand Spectrum"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Multiplier",var="GrandSpectrum"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=10}}}},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} @@ -10074,12 +9952,16 @@ c["Minions have +12% Chance to Block Attack Damage"]={{[1]={flags=0,keywordFlags c["Minions have +12% 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=12}}}},nil} c["Minions have +13% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=13}}}},nil} c["Minions have +13% to all Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResist",type="BASE",value=13}}}},nil} +c["Minions have +14% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=14}}}},nil} +c["Minions have +15% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=15}}}},nil} c["Minions have +15% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=15}}}},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["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["Minions have +18% 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=18}}}},nil} c["Minions have +18% 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=18}}}},nil} c["Minions have +20% to Critical Strike Multiplier"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=20}}}},nil} +c["Minions have +22% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=22}}}},nil} +c["Minions have +24% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=24}}}},nil} c["Minions have +25% 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=25}}}},nil} c["Minions have +25% 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=25}}}},nil} c["Minions have +27% to Chaos Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResist",type="BASE",value=27}}}},nil} @@ -10090,16 +9972,15 @@ c["Minions have +40% to Cold Resistance"]={{[1]={flags=0,keywordFlags=0,name="Mi c["Minions have +40% to Fire Resistance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FireResist",type="BASE",value=40}}}},nil} c["Minions have +5% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=5}}}},nil} c["Minions have +5% to Critical Strike Multiplier per Withered Debuff on Enemy"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="enemy",limit=15,type="Multiplier",var="WitheredStack"},flags=0,keywordFlags=0,name="CritMultiplier",type="BASE",value=5}}}},nil} +c["Minions have +6% to Damage over Time Multiplier per"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="DotMultiplier",type="BASE",value=6}}}}," per "} c["Minions have +6% to Damage over Time Multiplier per Ghastly Eye Jewel affecting you, up to a maximum of +30%"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",globalLimit=30,globalLimitKey="AmanamuGaze",type="Multiplier",var="GhastlyEyeJewel"},flags=0,keywordFlags=0,name="DotMultiplier",type="BASE",value=6}}}},nil} c["Minions have +60 to Accuracy Rating per 10 Devotion"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",div=10,stat="Devotion",type="PerStat"},flags=0,keywordFlags=0,name="Accuracy",type="BASE",value=60}}}},nil} 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["Minions have +8% to all maximum Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=8}}}},nil} c["Minions have 1% chance to deal Double Damage per Fortification on you"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",stat="FortificationStacks",type="PerStat"},flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=1}}}},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["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["Minions have 10% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=10}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=10}}},[3]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=10}}}},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["Minions have 10% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=10}}}},nil} 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["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["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} @@ -10116,13 +9997,11 @@ c["Minions have 12% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name= 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["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["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 14% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=14}}}},nil} c["Minions have 14% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=14}}}},nil} c["Minions have 14% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=14}}}},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["Minions have 15% chance to Blind Enemies on hit"]={{}," to Blind Enemies "} c["Minions have 15% chance to Blind Enemies on hit Found Magic Items drop Identified"]={{}," to Blind Enemies Found Magic Items drop Identified "} -c["Minions have 15% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=15}}}},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["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 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} @@ -10138,13 +10017,10 @@ c["Minions have 20% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,nam 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["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["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["Minions have 22% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=22}}}},nil} -c["Minions have 24% chance to Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="SpellSuppressionChance",type="BASE",value=24}}}},nil} c["Minions have 25% chance to gain Unholy Might for 4 seconds on Kill"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}}},nil} c["Minions have 25% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=25}}}},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["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 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["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["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["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} @@ -10164,6 +10040,7 @@ c["Minions have 38% increased maximum Life"]={{[1]={flags=0,keywordFlags=0,name= 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["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["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["Minions have 40% reduced Flask Charges used"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="FlaskChargesUsed",type="INC",value=-40}}}},nil} c["Minions have 40% reduced 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["Minions have 45% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=45}}}},nil} c["Minions have 5% chance to Maim Enemies on Hit with Attacks"]={{}," to Maim Enemies with Attacks "} @@ -10178,14 +10055,14 @@ c["Minions have 60% chance to Poison Enemies on Hit"]={{[1]={flags=0,keywordFlag c["Minions have 60% chance to inflict Withered on Hit"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}}}},nil} c["Minions have 60% increased Critical Strike Chance"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=60}}}},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["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["Minions have 7% increased Area of Effect"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=7}}}},nil} c["Minions have 72% increased Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Speed",type="INC",value=72}}}},nil} c["Minions have 72% increased Cast Speed"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=16,keywordFlags=0,name="Speed",type="INC",value=72}}}},nil} c["Minions have 75% faster start of Energy Shield Recharge"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnergyShieldRechargeFaster",type="INC",value=75}}}},nil} c["Minions have 8% additional Physical Damage Reduction"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageReduction",type="BASE",value=8}}}},nil} c["Minions have 8% chance to Freeze, Shock and Ignite"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=8}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=8}}},[3]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=8}}}},nil} c["Minions have 8% 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=8}}}},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["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["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["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["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} @@ -10198,14 +10075,14 @@ c["Minions have 90% increased Movement Speed"]={{[1]={flags=0,keywordFlags=0,nam c["Minions have Unholy Might"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:CanWither",type="FLAG",value=true}}}},nil} c["Minions have a 12% chance to Impale on Hit with Attacks"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ImpaleChance",type="BASE",value=12}}}},nil} c["Minions have the same maximum number of Endurance, Frenzy and Power Charges as you"]={nil,"the same maximum number of Endurance, Frenzy and Power Charges as you "} -c["Minions have the same maximum number of Endurance, Frenzy and Power Charges as you Minions count as having the same number of Endurance, Frenzy and Power Charges as you"]={nil,"the same maximum number of Endurance, Frenzy and Power Charges as you Minions count as having the same number of Endurance, Frenzy and Power Charges as you "} +c["Minions have the same maximum number of Endurance, Frenzy and Power Charges as you Minions count as having the same number of"]={nil,"the same maximum number of Endurance, Frenzy and Power Charges as you Minions count as having the same number of "} c["Minions' Base Attack Critical Strike Chance is equal to the Critical"]={nil,"Minions' Base Attack Critical Strike Chance is equal to the Critical "} c["Minions' Base Attack Critical Strike Chance is equal to the Critical Strike Chance of your Main Hand Weapon"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="AttackCritIsEqualToParentMainHand",type="FLAG",value=true}}}},nil} c["Minions' Hits can only Kill Ignited Enemies"]={nil,"Minions' Hits can only Kill Ignited Enemies "} c["Mirage Archers are not attached to you"]={nil,"Mirage Archers are not attached to you "} c["Mirage Archers are not attached to you +2 to maximum number of Summoned Mirage Archers"]={nil,"Mirage Archers are not attached to you +2 to maximum number of Summoned Mirage Archers "} c["Mirage Archers are not attached to you +2 to maximum number of Summoned Mirage Archers Cannot Summon Mirage Archers while near your Mirage Archers"]={nil,"Mirage Archers are not attached to you +2 to maximum number of Summoned Mirage Archers Cannot Summon Mirage Archers while near your Mirage Archers "} -c["Modifiers to Attributes instead Apply to Omniscience"]={{[1]={flags=0,keywordFlags=0,name="Omniscience",type="FLAG",value=true}},nil} +c["Modifiers to Attributes instead apply to Omniscience"]={{[1]={flags=0,keywordFlags=0,name="Omniscience",type="FLAG",value=true}},nil} c["Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="ShockAvoidAppliesToElementalAilments",type="FLAG",value=true}},nil} c["Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at 50% of their Value"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionAppliesToAilmentAvoidancePercent",type="BASE",value=50},[2]={flags=0,keywordFlags=0,name="SpellSuppressionAppliesToAilmentAvoidance",type="FLAG",value=true}},nil} c["Modifiers to Chance to Suppress Spell Damage instead apply to Chance to Dodge Spell Hits at 50% of their value"]={{[1]={flags=0,keywordFlags=0,name="ConvertSpellSuppressionToSpellDodge",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="SpellSuppressionChance",source="Acrobatics",type="OVERRIDE",value=0}},nil} @@ -10218,20 +10095,20 @@ c["Modifiers to Maximum Fire Resistance also apply to Maximum Cold and Lightning c["Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges"]={{[1]={flags=0,keywordFlags=0,name="MinimumEnduranceChargesEqualsMinimumBrutalCharges",type="FLAG",value=true}},nil} c["Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges"]={{[1]={flags=0,keywordFlags=0,name="MinimumFrenzyChargesEqualsMinimumAfflictionCharges",type="FLAG",value=true}},nil} c["Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges"]={{[1]={flags=0,keywordFlags=0,name="MinimumPowerChargesEqualsMinimumAbsorptionCharges",type="FLAG",value=true}},nil} +c["Modifiers to number of Projectiles instead apply"]={nil,"Modifiers to number of Projectiles instead apply "} c["Modifiers to number of Projectiles instead apply to the number of targets Projectiles Split towards"]={{[1]={flags=0,keywordFlags=0,name="NoAdditionalProjectiles",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="AdditionalProjectilesAddSplitsInstead",type="FLAG",value=true}},nil} c["Monsters cannot Block your Attacks"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CannotBlockAttacks",type="FLAG",value=true}}}},nil} -c["Mortal Conviction"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Mortal Conviction"}},nil} c["Movement Speed cannot be modified to below Base Value"]={{[1]={flags=0,keywordFlags=0,name="MovementSpeedCannotBeBelowBase",type="FLAG",value=true}},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["Moving while Bleeding doesn't cause you to take extra Damage"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage "} -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["Moving while Bleeding doesn't cause you to take extra Damage Bleeding on you expires 75% slower while Moving"]={nil,"Moving while Bleeding doesn't cause you to take extra Damage Bleeding on you expires 75% slower while Moving "} c["Nearby Allies and Enemies Share Charges with you"]={nil,"Nearby Allies and Enemies Share Charges with you "} c["Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, "]={nil,"Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, "} c["Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, Frenzy or Power Charge"]={nil,"Nearby Allies and Enemies Share Charges with you Enemies Hitting you have 10% chance to gain an Endurance, Frenzy or Power Charge "} c["Nearby Allies count as having Fortification equal to yours"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="YourFortifyEqualToParent",type="FLAG",value=true},onlyAllies=true}}},nil} -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["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["Nearby Allies gain 4% 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=4},onlyAllies=true}}},nil} +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["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["Nearby Allies gain 4% 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=4},onlyAllies=true}}},nil} 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["Nearby Allies gain 80% increased Mana Regeneration Rate"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaRegen",type="INC",value=80},onlyAllies=true}}},nil} c["Nearby Allies have +1 Fortification"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="MinimumFortification",type="BASE",value=1},onlyAllies=true}}},nil} @@ -10246,7 +10123,7 @@ c["Nearby Allies have 30% increased Item Rarity Nearby Allies have Culling Strik 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["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["Nearby Allies have Culling Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CullPercent",type="MAX",value=10},onlyAllies=true}}},nil} -c["Nearby Allies' Action Speed cannot be modified to below base value"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="MinimumActionSpeed",type="MAX",value=100},onlyAllies=true}}},nil} +c["Nearby Allies' Action Speed cannot be modified to below Base Value"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="MinimumActionSpeed",type="MAX",value=100},onlyAllies=true}}},nil} c["Nearby Allies' Damage with Hits is Lucky"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LuckyHits",type="FLAG",value=true},onlyAllies=true}}},nil} c["Nearby Chilled Enemies deal 10% reduced Damage with Hits"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Chilled"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=-10}}}},nil} c["Nearby Enemies Convert 25% of their Physical Damage to Fire"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamageConvertToFire",type="BASE",value=25}}}},nil} @@ -10270,7 +10147,7 @@ c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges"]={nil,"cannot c["Nearby Enemies cannot gain Power, Frenzy or Endurance Charges Projectile Barrages have no spread"]={nil,"cannot gain Power, Frenzy or Endurance Charges Projectile Barrages have no spread "} c["Nearby Enemies deal 8% less Elemental Damage"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamage",type="MORE",value=-8}}}},nil} c["Nearby Enemies grant 25% increased Flask Charges"]={nil,"grant 25% increased Flask Charges "} -c["Nearby Enemies grant 25% increased Flask Charges Nearby Enemies have 10% reduced Stun and Block Recovery"]={nil,"grant 25% increased Flask Charges Nearby Enemies have 10% reduced Stun and Block Recovery "} +c["Nearby Enemies grant 25% increased Flask Charges Anger has no Reservation"]={nil,"grant 25% increased Flask Charges Anger has no Reservation "} 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["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["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} @@ -10311,7 +10188,7 @@ c["Never deal Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="NeverCrit", c["No Chance to Block"]={{[1]={flags=0,keywordFlags=0,name="ArmourData",type="LIST",value={key="BlockChance",value=0}}},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["Non-Aura Curses you inflict are not removed from Dying Enemies"]={nil,"Non-Aura Curses you inflict are not removed from Dying Enemies "} -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["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["Non-Aura Hexes expire upon reaching 200% of base Effect Non-Aura Hexes gain 20% increased Effect per second"]={{[1]={[1]={actor="enemy",limit=200,limitTotal=true,type="Multiplier",var="CurseDurationExpired"},[2]={neg=true,skillType=43,type="SkillType"},[3]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil} c["Non-Aura Hexes expire upon reaching 220% of base Effect"]={nil,"Non-Aura Hexes expire upon reaching 220% of base Effect "} c["Non-Aura Hexes expire upon reaching 220% of base Effect Non-Aura Hexes gain 20% increased Effect per second"]={{[1]={[1]={actor="enemy",limit=220,limitTotal=true,type="Multiplier",var="CurseDurationExpired"},[2]={neg=true,skillType=43,type="SkillType"},[3]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil} @@ -10337,16 +10214,14 @@ c["Non-Damaging Elemental Ailments you inflict have 100% more Effect"]={{[1]={fl c["Non-Damaging Elemental Ailments you inflict spread to nearby enemies within 2 metres"]={nil,"Non-Damaging Elemental Ailments you inflict spread to nearby enemies within 2 metres "} c["Non-Damaging Elemental Ailments you inflict spread to nearby enemies within 2 metres Non-Damaging Elemental Ailments you inflict have 100% more Effect"]={nil,"Non-Damaging Elemental Ailments you inflict spread to nearby enemies within 2 metres Non-Damaging Elemental Ailments you inflict have 100% more Effect "} c["Non-Exerted Attacks deal no Damage"]={nil,"Non-Exerted Attacks deal no Damage "} +c["Non-Instant Warcries ignore their Cooldown when Used"]={{[1]={[1]={neg=true,skillType=74,type="SkillType"},flags=0,keywordFlags=4,name="CooldownRecovery",type="OVERRIDE",value=0}},nil} c["Non-Travel Attack Skills Repeat an additional Time"]={{[1]={[1]={type="Condition",varList={[1]="averageRepeat",[2]="alwaysFinalRepeat"}},flags=1,keywordFlags=0,name="RepeatCount",type="BASE",value=1}},nil} c["Non-Unique Jewels cause Small and Notable Passive Skills in a Large Radius to"]={nil,"Non-Unique Jewels cause Small and Notable Passive Skills in a Large Radius to "} c["Non-Unique Utility Flasks you Use apply to Linked Targets"]={{[1]={flags=0,keywordFlags=0,name="ExtraLinkEffect",type="LIST",value={mod={[1]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="ParentNonUniqueFlasksAppliedToYou",type="FLAG",value=true}}}},nil} c["Non-Vaal Strike Skills target 1 additional nearby Enemy"]={{[1]={[1]={skillType=25,type="SkillType"},[2]={neg=true,skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="AdditionalStrikeTarget",type="BASE",value=1}},nil} -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["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["Non-critical strikes deal 80% less Damage"]={{[1]={[1]={neg=true,type="Condition",var="CriticalStrike"},flags=4,keywordFlags=0,name="Damage",type="MORE",value=-80}},nil} c["Non-instant Mana Recovery from Flasks is also Recovered as Life"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskAppliesToLife",type="FLAG",value=true}},nil} -c["Non-instant Mana recovery from Flasks is also recovered as Life"]={{[1]={flags=0,keywordFlags=0,name="ManaFlaskAppliesToLife",type="FLAG",value=true}},nil} -c["Non-instant Warcries ignore their Cooldown when used"]={{[1]={[1]={neg=true,skillType=74,type="SkillType"},flags=0,keywordFlags=4,name="CooldownRecovery",type="OVERRIDE",value=0}},nil} +c["Notable Passive Skills in Radius are Transformed to"]={nil,"Notable Passive Skills in Radius are Transformed to "} c["Nova Spells Cast at a Marked target instead of around you if possible"]={nil,"Nova Spells Cast at a Marked target instead of around you if possible "} c["Nova Spells Cast at a Marked target instead of around you if possible Limited to 1 Runegraft of the Novamark"]={nil,"Nova Spells Cast at a Marked target instead of around you if possible Limited to 1 Runegraft of the Novamark "} c["Nova Spells Cast at the targeted location instead of around you"]={nil,"Nova Spells Cast at the targeted location instead of around you "} @@ -10370,6 +10245,8 @@ c["Only affects Passives in Very Large Ring"]={{[1]={flags=0,keywordFlags=0,name c["Onslaught"]={{[1]={flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} c["Other Aegis Skills are Disabled"]={{[1]={[1]={skillType=110,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillId="Primal Aegis",type="SkillName"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} c["Pain Attunement"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Pain Attunement"}},nil} +c["Passage"]={nil,"Passage "} +c["Passage Only affects Passives in Medium Ring"]={nil,"Passage Only affects Passives in Medium Ring "} c["Passive Skills in Radius can be Allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="intuitiveLeapLike",value=true}}},nil} c["Passive Skills in radius of Acrobatics can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="acrobatics"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="acrobatics",value=true}}},nil} c["Passive Skills in radius of Ancestral Bond can be allocated without being connected to your tree"]={{[1]={flags=0,keywordFlags=0,name="JewelData",type="LIST",value={key="impossibleEscapeKeystone",value="ancestral bond"}},[2]={flags=0,keywordFlags=0,name="ImpossibleEscapeKeystones",type="LIST",value={key="ancestral bond",value=true}}},nil} @@ -10440,9 +10317,10 @@ c["Physical Damage of Enemies Hitting you is Unlucky"]={nil,"Physical Damage of c["Physical Damage taken bypasses Energy Shield"]={{[1]={flags=0,keywordFlags=0,name="PhysicalEnergyShieldBypass",type="BASE",value=100}},nil} c["Plague Bearer has 20% increased Maximum Plague Value"]={{}," Maximum Plague Value "} c["Point Blank"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Point Blank"}},nil} -c["Poison you inflict is Reflected to you"]={nil,"Poison you inflict is Reflected to you "} -c["Poison you inflict is Reflected to you Corrupted"]={nil,"Poison you inflict is Reflected to you Corrupted "} +c["Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you"]={nil,"Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you "} +c["Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you Corrupted"]={nil,"Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you Corrupted "} c["Poison you inflict with Critical Strikes deals 20% more Damage"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=2097152,name="Damage",type="MORE",value=20}},nil} +c["Poison you inflict with Travel Skills is Reflected to you if you"]={nil,"Poison you inflict with Travel Skills is Reflected to you if you "} c["Poison you inflict with Travel Skills is Reflected to you if you have fewer than 5 Poisons on you"]={nil,"Poison you inflict with Travel Skills is Reflected to you if you have fewer than 5 Poisons on you "} c["Poisoned Enemies you Kill with Hits Shatter"]={nil,"Poisoned Enemies you Kill with Hits Shatter "} c["Poisonous Hit"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="PoisonChance",type="BASE",value=100}},nil} @@ -10454,7 +10332,6 @@ c["Poisons you inflict during any Flask Effect have 20% chance to deal 100% more c["Poisons you inflict on non-Poisoned Enemies deal 300% increased Damage"]={{[1]={[1]={type="Condition",var="NonPoisonedOnly"},flags=0,keywordFlags=2097152,name="Damage",type="INC",value=300}},nil} c["Precise Technique"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Precise Technique"}},nil} c["Precision has 100% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Precision",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=100}},nil} -c["Precision has 50% less Reservation"]={{[1]={[1]={includeTransfigured=true,skillName="Precision",type="SkillName"},flags=0,keywordFlags=0,name="Reserved",type="MORE",value=-50}},nil} c["Prevent +1% of Suppressed Spell Damage per Hit Suppressed Recently"]={{[1]={[1]={type="Multiplier",var="HitsSuppressedRecently"},flags=0,keywordFlags=0,name="SpellSuppressionEffect",type="BASE",value=1}},nil} c["Prevent +15% of Suppressed Spell Damage while on Full Energy Shield"]={{[1]={[1]={type="Condition",var="FullEnergyShield"},flags=0,keywordFlags=0,name="SpellSuppressionEffect",type="BASE",value=15}},nil} c["Prevent +3% of Suppressed Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="SpellSuppressionEffect",type="BASE",value=3}},nil} @@ -10483,18 +10360,18 @@ c["Projectiles Chain an additional time"]={{[1]={flags=1024,keywordFlags=0,name= c["Projectiles Fork"]={{[1]={flags=1024,keywordFlags=0,name="ForkOnce",type="FLAG",value=true},[2]={flags=1024,keywordFlags=0,name="ForkCountMax",type="BASE",value=1}},nil} c["Projectiles Pierce 2 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=2}},nil} c["Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped"]={{[1]={[1]={threshold=2,type="MultiplierThreshold",var="HunterItem"},flags=0,keywordFlags=0,name="PierceCount",type="BASE",value="2"}},nil} +c["Projectiles Pierce 4 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=4}},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["Projectiles Pierce 6 additional Targets"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=6}},nil} c["Projectiles Pierce all Burning Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Burning"},flags=0,keywordFlags=0,name="PierceAllTargets",type="FLAG",value=true}},nil} c["Projectiles Pierce all Targets while you have Phasing"]={{[1]={[1]={type="Condition",var="Phasing"},flags=0,keywordFlags=0,name="PierceAllTargets",type="FLAG",value=true}},nil} c["Projectiles Pierce an additional Target"]={{[1]={flags=0,keywordFlags=0,name="PierceCount",type="BASE",value=1}},nil} -c["Projectiles Return to you at end of flight"]={nil,"Return to you at end of flight "} -c["Projectiles Return to you at end of flight Projectiles are fired in random directions"]={nil,"Return to you at end of flight Projectiles are fired in random directions "} +c["Projectiles Return to you"]={nil,"Return to you "} +c["Projectiles Return to you Projectiles are fired in random directions"]={nil,"Return to you Projectiles are fired in random directions "} c["Projectiles Return to you from final target"]={nil,"Return to you from final target "} c["Projectiles are fired in random directions"]={nil,"fired in random directions "} c["Projectiles cannot Pierce, Fork or Chain"]={{[1]={flags=1024,keywordFlags=0,name="CannotPierce",type="FLAG",value=true},[2]={flags=1024,keywordFlags=0,name="CannotChain",type="FLAG",value=true},[3]={flags=1024,keywordFlags=0,name="CannotFork",type="FLAG",value=true}},nil} -c["Projectiles cannot collide with Enemies at Close Range"]={nil,"cannot collide with Enemies at Close Range "} -c["Projectiles cannot collide with Enemies at Close Range Far Shot"]={nil,"cannot collide with Enemies at Close Range Far Shot "} +c["Projectiles cannot collide with Enemies in Close Range"]={nil,"cannot collide with Enemies in Close Range "} +c["Projectiles cannot collide with Enemies in Close Range Far Shot"]={nil,"cannot collide with Enemies in Close Range Far Shot "} c["Projectiles cannot continue after colliding with targets"]={{[1]={flags=1024,keywordFlags=0,name="CannotPierce",type="FLAG",value=true},[2]={flags=1024,keywordFlags=0,name="CannotChain",type="FLAG",value=true},[3]={flags=1024,keywordFlags=0,name="CannotFork",type="FLAG",value=true},[4]={flags=1024,keywordFlags=0,name="CannotSplit",type="FLAG",value=true}},nil} c["Projectiles deal 20% increased Damage with Hits and Ailments for"]={{[1]={flags=1024,keywordFlags=786432,name="Damage",type="INC",value=20}}," for "} c["Projectiles deal 20% increased Damage with Hits and Ailments for each Enemy Pierced"]={{[1]={[1]={stat="PiercedCount",type="PerStat"},[2]={skillType=3,type="SkillType"},flags=0,keywordFlags=786432,name="Damage",type="INC",value=20}},nil} @@ -10522,6 +10399,7 @@ c["Projectiles have 20% chance to be able to Chain when colliding with terrain"] c["Projectiles have 20% chance to be able to Chain when colliding with terrain Projectiles gain Damage as they travel farther, dealing up"]={{[1]={flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=20}}," to be able to when colliding with terrain Projectiles gain Damage as they travel farther, dealing up "} c["Projectiles have 25% chance for an additional Projectile when Forking"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=25}}," for an additional when Forking "} c["Projectiles have 30% chance to be able to Chain when colliding with terrain"]={{[1]={flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=30}}," to be able to when colliding with terrain "} +c["Projectiles have 4% chance to be able to Chain when colliding with terrain per"]={{[1]={flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=4}}," to be able to when colliding with terrain per "} c["Projectiles have 4% chance to be able to Chain when colliding with terrain per Searching Eye Jewel affecting you, up to a maximum of 20%"]={{[1]={[1]={limit=20,limitTotal=true,type="Multiplier",var="SearchingEyeJewel"},flags=1024,keywordFlags=0,name="ChainCountMax",type="BASE",value=4}}," to be able to when colliding with terrain "} c["Projectiles have 50% chance for an additional Projectile when Forking"]={{[1]={flags=1024,keywordFlags=0,name="ProjectileCount",type="BASE",value=50}}," for an additional when Forking "} c["Projectiles have 50% chance to Return to you"]={{}," to Return to you "} @@ -10540,10 +10418,9 @@ c["Purity of Lightning has no Reservation"]={{[1]={[1]={skillId="PurityOfLightni c["Queen's Demand can Trigger Level 20 Flames of Judgement"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AtziriUniqueStaffFlameblast",source="queen's demand",triggered=true}}},nil} c["Queen's Demand can Trigger Level 20 Storm of Judgement"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AtziriUniqueStaffStormCall",source="queen's demand",triggered=true}}},nil} c["Quicksilver Flasks you Use also apply to nearby Allies"]={{[1]={flags=0,keywordFlags=0,name="QuickSilverAppliesToAllies",type="FLAG",value=true}},nil} -c["Rage grants Cast Speed instead of Attack Speed"]={{[1]={flags=0,keywordFlags=0,name="Condition:RageCastSpeed",type="FLAG",value=true}},nil} c["Rage grants Spell Damage instead of Attack Damage"]={{[1]={flags=0,keywordFlags=0,name="Condition:RageSpellDamage",type="FLAG",value=true}},nil} -c["Raise Zombie does not require a Corpse"]={nil,"does not require a Corpse "} -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["Raise Zombie does not require a corpse"]={nil,"does not require a corpse "} +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["Raised Beast Spectres have 3 additional modifiers randomly chosen in each Area"]={nil,"Raised Beast Spectres have 3 additional modifiers randomly chosen in each Area "} c["Raised Beast Spectres have Farrul's Farric Presence"]={{[1]={[1]={type="Condition",var="HaveBeastSpectre"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Accuracy",type="INC",value=80}}},[2]={[1]={type="Condition",var="HaveBeastSpectre"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="INC",value=120}}},[3]={[1]={type="Condition",var="HaveBeastSpectre"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=100}}}},nil} c["Raised Beast Spectres have Farrul's Fertile Presence"]={{[1]={[1]={type="Condition",var="HaveBeastSpectre"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="INC",value=100}}},[2]={[1]={type="Condition",var="HaveBeastSpectre"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}}},[3]={[1]={type="Condition",var="HaveBeastSpectre"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="StunImmune",type="FLAG",value=true}}}},nil} @@ -10551,11 +10428,16 @@ c["Raised Beast Spectres have Farrul's Wild Presence"]={{[1]={[1]={type="Conditi c["Raised Spectres fire 2 additional Projectiles"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=2}}}},nil} c["Raised Spectres have +10% to all maximum Resistances"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalResistMax",type="BASE",value=10}}},[2]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ChaosResistMax",type="BASE",value=10}}}},nil} c["Raised Spectres have +5% to Critical Strike Chance"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CritChance",type="BASE",value=5}}}},nil} +c["Raised Spectres have 100% increased maximum Life"]={{[1]={[1]={includeTransfigured=true,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["Raised Spectres have 1000% increased Critical Strike Chance"]={{[1]={[1]={includeTransfigured=true,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["Raised Spectres have 40% increased Area of Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=40}}}},nil} c["Raised Spectres have 50% increased Area of Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=50}}}},nil} +c["Raised Spectres have 75% increased maximum Life"]={{[1]={[1]={includeTransfigured=true,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["Raised Spectres have 900% increased Critical Strike Chance"]={{[1]={[1]={includeTransfigured=true,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["Raised Spectres have a Base Duration of 20 seconds"]={nil,"a Base Duration of 20 seconds "} +c["Raised Spectres have a Base Duration of 20 seconds Spectres do not travel between Areas"]={nil,"a Base Duration of 20 seconds Spectres do not travel between Areas "} c["Raised Zombies Cover Enemies in Ash on Hit"]={nil,"Raised Zombies Cover Enemies in Ash on Hit "} c["Raised Zombies Cover Enemies in Ash on Hit Raised Zombies take 30% of their Maximum Life per second as Fire Damage"]={nil,"Raised Zombies Cover Enemies in Ash on Hit Raised Zombies take 30% of their Maximum Life per second as Fire Damage "} -c["Raised Zombies deal 100% increased Physical Damage"]={{[1]={[1]={includeTransfigured=true,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["Raised Zombies deal 100% more Physical Damage"]={{[1]={[1]={includeTransfigured=true,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["Raised Zombies deal 113% more Physical Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=113}}}},nil} c["Raised Zombies deal 125% more Physical Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="PhysicalDamage",type="MORE",value=125}}}},nil} @@ -10568,18 +10450,18 @@ c["Raised Zombies have 100% increased maximum Life"]={{[1]={[1]={includeTransfig c["Raised Zombies have 5% chance to Taunt Enemies on Hit"]={{}," to Taunt Enemies "} c["Raised Zombies have 90% increased maximum Life"]={{[1]={[1]={includeTransfigured=true,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["Raised Zombies have Avatar of Fire"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Zombie",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["Raised Zombies take 22.5% of their Maximum Life per second as Fire Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={percent=22.5,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=1}}}},nil} c["Raised Zombies take 23% of their Maximum Life per second as Fire Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={percent=23,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=1}}}},nil} c["Raised Zombies take 30% of their Maximum Life per second as Fire Damage"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Zombie",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={percent=30,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=1}}}},nil} c["Rampage"]={{[1]={flags=0,keywordFlags=0,name="Condition:Rampage",type="FLAG",value=true}},nil} c["Ranger: 20% increased Flask Charges gained"]={{[1]={[1]={type="Condition",var="ConnectedToRangerStart"},flags=0,keywordFlags=0,name="FlaskChargesGained",type="INC",value=20}},nil} c["Ranger: 7% increased Movement Speed"]={{[1]={[1]={type="Condition",var="ConnectedToRangerStart"},flags=0,keywordFlags=0,name="MovementSpeed",type="INC",value=7}},nil} +c["Rarity of Items dropped by Enemies Shattered by Glacial Hammer"]={nil,"Rarity of Items dropped by Enemies Shattered by Glacial Hammer "} c["Rate to you and Allies"]={nil,"Rate to you and Allies "} c["Rate to you and Allies Limited to 1 Runegraft of Consecration"]={nil,"Rate to you and Allies Limited to 1 Runegraft of Consecration "} c["Recharges 1 Charge when you Consume an Ignited corpse"]={nil,"Recharges 1 Charge when you Consume an Ignited corpse "} c["Recharges 1 Charge when you Consume an Ignited corpse Recharges 5 Charges when you Consume an Ignited corpse"]={nil,"Recharges 1 Charge when you Consume an Ignited corpse Recharges 5 Charges when you Consume an Ignited corpse "} c["Recharges 5 Charges when you Consume an Ignited corpse"]={nil,"Recharges 5 Charges when you Consume an Ignited corpse "} -c["Recharges 5 Charges when you Consume an Ignited corpse Enemies Ignited by you during Effect take 10% increased Damage"]={nil,"Recharges 5 Charges when you Consume an Ignited corpse Enemies Ignited by you during Effect take 10% increased Damage "} +c["Recharges 5 Charges when you Consume an Ignited corpse 200% increased Charges per use"]={nil,"Recharges 5 Charges when you Consume an Ignited corpse 200% increased Charges per use "} c["Recoup 12% of Damage Taken by your Totems as Life"]={nil,"Recoup 12% of Damage Taken by your Totems as Life "} c["Recoup 12% of Damage Taken by your Totems as Life Totems Taunt Enemies around them for 2 seconds when Summoned"]={nil,"Recoup 12% of Damage Taken by your Totems as Life Totems Taunt Enemies around them for 2 seconds when Summoned "} c["Recoup Effects instead occur over 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="3SecondRecoup",type="FLAG",value=true}},nil} @@ -10599,15 +10481,15 @@ c["Recover 1% of Mana on Kill for each different type of Mastery you have Alloca c["Recover 1% of Mana on Kill while you have a Tincture active"]={{[1]={[1]={percent=1,stat="Mana",type="PercentStat"},[2]={type="Condition",var="UsingTincture"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil} c["Recover 1% of Mana when you Curse a Non-Cursed Enemy"]={nil,"Recover 1% of Mana when you Curse a Non-Cursed Enemy "} c["Recover 1% of Mana when you Kill a Cursed Enemy"]={{[1]={[1]={percent=1,stat="Mana",type="PercentStat"},[2]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil} +c["Recover 10% of Life when you use a Mana Flask"]={nil,"Recover 10% of Life when you use a Mana Flask "} +c["Recover 10% of Life when you use a Mana Flask Non-instant Mana Recovery from Flasks is also Recovered as Life"]={nil,"Recover 10% of Life when you use a Mana Flask Non-instant Mana Recovery from Flasks is also Recovered as Life "} c["Recover 10% of Mana over 1 second when you use a Guard Skill"]={nil,"Recover 10% of Mana over 1 second when you use a Guard Skill "} c["Recover 10% of Mana when a Brand expires while Attached"]={nil,"Recover 10% of Mana when a Brand expires while Attached "} -c["Recover 10% of maximum Life when you use a Mana Flask"]={nil,"Recover 10% of maximum Life when you use a Mana Flask "} -c["Recover 10% of maximum Life when you use a Mana Flask Non-instant Mana recovery from Flasks is also recovered as Life"]={nil,"Recover 10% of maximum Life when you use a Mana Flask Non-instant Mana recovery from Flasks is also recovered as Life "} c["Recover 100 Life for each Fortification lost"]={nil,"Recover 100 Life for each Fortification lost "} 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["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["Recover 100% of Life on use"]={nil,"Recover 100% of Life on use "} -c["Recover 100% of Life on use 15% of maximum Life taken as Chaos Damage per second"]={nil,"Recover 100% of Life on use 15% of maximum Life taken as Chaos Damage per second "} +c["Recover 100% of Life on use 15% of Maximum Life taken as Chaos Damage per second"]={nil,"Recover 100% of Life on use 15% of Maximum Life taken as Chaos Damage per second "} c["Recover 15% of Life when you use a Warcry"]={nil,"Recover 15% of Life when you use a Warcry "} c["Recover 15% of Mana when you activate a Tincture"]={nil,"Recover 15% of Mana when you activate a Tincture "} c["Recover 150 Life when you Suppress Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="LifeOnSuppress",type="BASE",value=150}},nil} @@ -10638,8 +10520,8 @@ c["Recover 3% of Life when you lose a Spirit Charge"]={nil,"Recover 3% of Life w 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["Recover 3% of Mana on Kill"]={{[1]={[1]={percent=3,stat="Mana",type="PercentStat"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil} c["Recover 3% of Mana when you Kill an Enemy during Effect"]={{[1]={[1]={percent=3,stat="Mana",type="PercentStat"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaOnKill",type="BASE",value=1}},nil} -c["Recover 3% of Maximum Mana when you Shock an Enemy"]={nil,"Recover 3% of Maximum Mana when you Shock an Enemy "} -c["Recover 3% of Maximum Mana when you Shock an Enemy Attack Skills have added Lightning Damage equal to 6% of maximum Mana"]={nil,"Recover 3% of Maximum Mana when you Shock an Enemy Attack Skills have added Lightning Damage equal to 6% of maximum Mana "} +c["Recover 3% of Mana when you Shock an Enemy"]={nil,"Recover 3% of Mana when you Shock an Enemy "} +c["Recover 3% of Mana when you Shock an Enemy Attack Skills have Added Lightning Damage equal to 6% of maximum Mana"]={nil,"Recover 3% of Mana when you Shock an Enemy Attack Skills have Added Lightning Damage equal to 6% of maximum Mana "} c["Recover 30 Life when you Block"]={{[1]={flags=0,keywordFlags=0,name="LifeOnBlock",type="BASE",value=30}},nil} c["Recover 30 Life when you Ignite an Enemy"]={nil,"Recover 30 Life when you Ignite an Enemy "} c["Recover 30 Life when your Trap is triggered by an Enemy"]={nil,"Recover 30 Life when your Trap is triggered by an Enemy "} @@ -10655,8 +10537,8 @@ c["Recover 40% of Mana and Energy Shield when you Focus +35 to Strength"]={nil," c["Recover 5% of Energy Shield on Kill"]={{[1]={[1]={percent=5,stat="EnergyShield",type="PercentStat"},flags=0,keywordFlags=0,name="EnergyShieldOnKill",type="BASE",value=1}},nil} c["Recover 5% of Energy Shield over 1 second when you take Physical Damage from an Enemy Hit"]={nil,"Recover 5% of Energy Shield over 1 second when you take Physical Damage from an Enemy Hit "} c["Recover 5% of Life on Kill"]={{[1]={[1]={percent=5,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeOnKill",type="BASE",value=1}},nil} -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["Recover 5% of Life when a Spirit Charge expires or is consumed +1 to Maximum Spirit Charges per Abyss Jewel affecting you"]={nil,"Recover 5% of Life when a Spirit Charge expires or is consumed +1 to Maximum Spirit Charges per Abyss Jewel affecting you "} +c["Recover 5% of Life when you lose a Spirit Charge"]={nil,"Recover 5% of Life when you lose a Spirit Charge "} +c["Recover 5% of Life when you lose a Spirit Charge Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge"]={nil,"Recover 5% of Life when you lose a Spirit Charge Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge "} c["Recover 5% of Life when you use a Flask"]={nil,"Recover 5% of Life when you use a Flask "} c["Recover 5% of Life when you use a Flask Regenerate 5% of Energy Shield over 2 seconds when you Consume a corpse"]={nil,"Recover 5% of Life when you use a Flask Regenerate 5% of Energy Shield over 2 seconds when you Consume a corpse "} c["Recover 50 Energy Shield when you Block Spell Damage"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldOnSpellBlock",type="BASE",value=50}},nil} @@ -10682,7 +10564,7 @@ c["Reflects 1 to 220 Lightning Damage to Attackers on Block"]={nil,"Reflects 1 t 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["Reflects 1 to 220 Lightning Damage to Attackers on Block Defences are Zero"]={nil,"Reflects 1 to 220 Lightning Damage to Attackers on Block Defences are Zero "} c["Reflects 1 to 250 Lightning Damage to Melee Attackers"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers "} -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["Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage taken does not bypass Energy Shield"]={nil,"Reflects 1 to 250 Lightning Damage to Melee Attackers Chaos Damage taken does not bypass Energy Shield "} c["Reflects 10 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers "} c["Reflects 10 Cold Damage to Melee Attackers Reflects 100 Cold Damage to Melee Attackers"]={nil,"Reflects 10 Cold Damage to Melee Attackers Reflects 100 Cold Damage to Melee Attackers "} 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 "} @@ -10695,9 +10577,9 @@ c["Reflects 100 Fire Damage to Melee Attackers Reflects 100 Lightning Damage to c["Reflects 100 Lightning Damage to Melee Attackers"]={nil,"Reflects 100 Lightning Damage to Melee Attackers "} c["Reflects 100 Lightning Damage to Melee Attackers When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds"]={nil,"Reflects 100 Lightning Damage to Melee Attackers When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds "} c["Reflects 100 to 150 Physical Damage to Melee Attackers"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers "} -c["Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to Enemies when Hit is gained as Life"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to Enemies when Hit is gained as Life "} +c["Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to Enemies when Hit is leeched as Life"]={nil,"Reflects 100 to 150 Physical Damage to Melee Attackers 30% of Damage you Reflect to Enemies when Hit is leeched as Life "} c["Reflects 1000 to 10000 Physical Damage to Attackers on Block"]={nil,"Reflects 1000 to 10000 Physical Damage to Attackers on Block "} -c["Reflects 1000 to 10000 Physical Damage to Attackers on Block 10% of Damage you Reflect to Enemies when Hit is gained as Life"]={nil,"Reflects 1000 to 10000 Physical Damage to Attackers on Block 10% of Damage you Reflect to Enemies when Hit is gained as Life "} +c["Reflects 1000 to 10000 Physical Damage to Attackers on Block 10% of Damage you Reflect to Enemies when Hit is leeched as Life"]={nil,"Reflects 1000 to 10000 Physical Damage to Attackers on Block 10% of Damage you Reflect to Enemies when Hit is leeched as Life "} c["Reflects 125 Physical Damage to Melee Attackers"]={{},nil} c["Reflects 15 Fire Damage to Melee Attackers"]={nil,"Reflects 15 Fire Damage to Melee Attackers "} c["Reflects 15 Fire Damage to Melee Attackers Reflects 100 Fire Damage to Melee Attackers"]={nil,"Reflects 15 Fire Damage to Melee Attackers Reflects 100 Fire Damage to Melee Attackers "} @@ -10727,7 +10609,8 @@ c["Reflects 8 to 14 Physical Damage to Attackers on Block"]={nil,"Reflects 8 to c["Reflects 8 to 14 Physical Damage to Attackers on Block +2 to Weapon Range"]={nil,"Reflects 8 to 14 Physical Damage to Attackers on Block +2 to Weapon Range "} c["Reflects 81 Physical Damage to Melee Attackers"]={{},nil} c["Reflects 90 Physical Damage to Melee Attackers"]={{},nil} -c["Reflects your opposite Ring"]={{},nil} +c["Reflects opposite Ring"]={nil,"Reflects opposite Ring "} +c["Reflects opposite Ring Mirrored"]={nil,"Reflects opposite Ring Mirrored "} c["Refresh Duration of Chill and Shock on Enemies you Curse"]={nil,"Refresh Duration of Chill and Shock on Enemies you Curse "} c["Refresh Duration of Chill and Shock on Enemies you Curse Remove Elemental Ailments when you Cast a Curse Spell"]={nil,"Refresh Duration of Chill and Shock on Enemies you Curse Remove Elemental Ailments when you Cast a Curse Spell "} c["Regenerate (0.7-1.2)% of Life per second"]={nil,"Regenerate (0.7-1.2)% of Life per second "} @@ -10758,7 +10641,6 @@ c["Regenerate 1 Rage per second for every 200 Life Recovery per second from Rege c["Regenerate 1 Rage per second for every 300 Life Recovery per second from Regeneration"]={{[1]={[1]={percent=0.33333333333333,stat="LifeRegen",type="PercentStat"},flags=0,keywordFlags=0,name="RageRegen",type="BASE",value=1},[2]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Regenerate 1% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil} c["Regenerate 1% of Energy Shield per second if you've Cursed an Enemy Recently"]={{[1]={[1]={type="Condition",var="CursedEnemyRecently"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=1}},nil} -c["Regenerate 1% of Life per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil} c["Regenerate 1% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil} c["Regenerate 1% of Life per second if you have Stunned an Enemy Recently"]={{[1]={[1]={type="Condition",var="StunnedEnemyRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=1}},nil} c["Regenerate 1% of Life 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} @@ -10814,7 +10696,6 @@ c["Regenerate 2% of Energy Shield per second if you've Killed an Enemy Recently" c["Regenerate 2% of Energy Shield per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2}},nil} c["Regenerate 2% 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=2}},nil} c["Regenerate 2% of Life per Second if you've used a Life Flask in the past 10 seconds"]={{[1]={[1]={type="Condition",var="UsingLifeFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil} -c["Regenerate 2% of Life per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil} c["Regenerate 2% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},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["Regenerate 2% 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=2}},nil} @@ -10824,6 +10705,7 @@ c["Regenerate 2% of Life per second if you have been Hit Recently"]={{[1]={[1]={ c["Regenerate 2% of Life per second if you've Consumed a corpse Recently"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil} c["Regenerate 2% of Life per second on Chilled Ground"]={{[1]={[1]={type="Condition",var="OnChilledGround"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil} c["Regenerate 2% of Life per second while affected by Vitality"]={{[1]={[1]={type="Condition",var="AffectedByVitality"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},nil} +c["Regenerate 2% of Life per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}},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["Regenerate 2% of Life 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["Regenerate 2% of Mana per second if you've Consumed a corpse Recently"]={{[1]={[1]={type="Condition",var="ConsumedCorpseRecently"},flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",value=2}},nil} @@ -10846,10 +10728,9 @@ c["Regenerate 3 Life per second per Level"]={{[1]={[1]={type="Multiplier",var="L c["Regenerate 3 Mana per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=3}},nil} c["Regenerate 3% of Energy Shield per Second while affected by Discipline"]={{[1]={[1]={type="Condition",var="AffectedByDiscipline"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=3}},nil} c["Regenerate 3% of Energy Shield per second"]={{[1]={flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=3}},nil} -c["Regenerate 3% of Life per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil} -c["Regenerate 3% of Life per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil} c["Regenerate 3% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil} c["Regenerate 3% of Life per second during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil} +c["Regenerate 3% of Life per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=3}},nil} 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["Regenerate 3.5 Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=3.5}},nil} c["Regenerate 30 Life per second per Endurance Charge"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=30}},nil} @@ -10862,7 +10743,6 @@ c["Regenerate 4% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRe c["Regenerate 4% of Life per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=4}},nil} c["Regenerate 4% of Mana over 2 seconds when you Consume a corpse"]={{[1]={[1]={percent=2,stat="Mana",type="PercentStat"},[2]={type="Condition",var="ConsumedCorpseInPast2Sec"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=1}},nil} c["Regenerate 4.5 Mana per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=4.5}},nil} -c["Regenerate 40 Life per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=40}},nil} c["Regenerate 40 Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=40}},nil} c["Regenerate 400 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=400}},nil} c["Regenerate 400 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=400}},nil} @@ -10872,17 +10752,16 @@ c["Regenerate 5% of Energy Shield over 1 second when Stunned Regenerate 5% of Li c["Regenerate 5% of Energy Shield over 2 seconds when you Consume a corpse"]={{[1]={[1]={type="Condition",var="ConsumedCorpseInPast2Sec"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=2.5}},nil} c["Regenerate 5% of Energy Shield per second while Shocked"]={{[1]={[1]={type="Condition",var="Shocked"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=5}},nil} c["Regenerate 5% of Life over 1 second when Stunned"]={nil,"Regenerate 5% of Life over 1 second when Stunned "} -c["Regenerate 5% of Life per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil} c["Regenerate 5% of Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil} +c["Regenerate 5% of Life per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=5}},nil} c["Regenerate 5% of Mana over 2 seconds when you Consume a corpse"]={{[1]={[1]={percent=2.5,stat="Mana",type="PercentStat"},[2]={type="Condition",var="ConsumedCorpseInPast2Sec"},flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=1}},nil} c["Regenerate 5.3 Mana per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=5.3}},nil} c["Regenerate 50 Energy Shield per Second per Poison on you, up to 400 per second"]={{[1]={[1]={limit=400,limitTotal=true,type="Multiplier",var="PoisonStack"},flags=0,keywordFlags=0,name="EnergyShieldRegen",type="BASE",value=50}},nil} -c["Regenerate 50 Life per Second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50}},nil} c["Regenerate 50 Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=50}},nil} c["Regenerate 50 Life 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["Regenerate 6 Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=6}},nil} c["Regenerate 6 Mana per second"]={{[1]={flags=0,keywordFlags=0,name="ManaRegen",type="BASE",value=6}},nil} -c["Regenerate 6% of Life per Second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=6}},nil} +c["Regenerate 6% of Life per second while on Low Life"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=6}},nil} c["Regenerate 6.3 Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=6.3}},nil} c["Regenerate 60 Life per second"]={{[1]={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=60}},nil} c["Regenerate 7 Life over 1 second for each Spell you Cast"]={{[1]={[1]={type="Condition",var="CastLast1Seconds"},flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=7}},nil} @@ -10929,6 +10808,8 @@ c["Removes Bleeding when you use a Flask"]={nil,"Removes Bleeding when you use a c["Removes Bleeding when you use a Flask Every 4 seconds, remove Curses and Ailments from you"]={nil,"Removes Bleeding when you use a Flask Every 4 seconds, remove Curses and Ailments from you "} c["Removes Bleeding when you use a Flask Flasks gain 3 Charges every 3 seconds"]={nil,"Removes Bleeding when you use a Flask Flasks gain 3 Charges every 3 seconds "} c["Removes Bleeding when you use a Flask Flasks gain 3 Charges every 3 seconds 25% chance for Flasks you use to not consume Charges"]={nil,"Removes Bleeding when you use a Flask Flasks gain 3 Charges every 3 seconds 25% chance for Flasks you use to not consume Charges "} +c["Removes Elemental Ailments on Rampage"]={nil,"Removes Elemental Ailments on Rampage "} +c["Removes Elemental Ailments on Rampage Gain Immunity to Physical Damage for 1.5 seconds on Rampage"]={nil,"Removes Elemental Ailments on Rampage Gain Immunity to Physical Damage for 1.5 seconds on Rampage "} c["Removes Elemental Ailments when you use a Flask"]={nil,"Removes Elemental Ailments when you use a Flask "} c["Removes Elemental Ailments when you use a Flask 50% chance for Flasks you use to not consume Charges"]={nil,"Removes Elemental Ailments when you use a Flask 50% chance for Flasks you use to not consume Charges "} c["Removes all Burning when used"]={{},nil} @@ -11283,6 +11164,7 @@ c["Requires Level 45, 35 Dex, 35 Int +40 to Dexterity"]={nil,"Requires Level 45, c["Requires Level 55, 52 Dex, 52 Int"]={nil,"Requires Level 55, 52 Dex, 52 Int "} c["Requires Level 55, 52 Dex, 52 Int +60 to maximum Mana"]={nil,"Requires Level 55, 52 Dex, 52 Int +60 to maximum Mana "} c["Reserves 30% of Life"]={{[1]={flags=0,keywordFlags=0,name="ExtraLifeReserved",type="BASE",value=30}},nil} +c["Reserves 8% of Life"]={{[1]={flags=0,keywordFlags=0,name="ExtraLifeReserved",type="BASE",value=8}},nil} c["Resolute Technique"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Resolute Technique"}},nil} c["Restores Ward on use"]={nil,"Restores Ward on use "} c["Restores Ward on use 10% reduced Charges per use"]={nil,"Restores Ward on use 10% reduced Charges per use "} @@ -11318,10 +11200,14 @@ c["Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse i c["Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them"]={{[1]={[1]={num=2,type="SlotNumber"},[2]={actor="enemy",type="ActorCondition",var="Frozen"},flags=0,keywordFlags=0,name="CoveredInFrostEffect",type="BASE",value=20}},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["Right ring slot: +250 to maximum Mana"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Mana",type="BASE",value=250}},nil} +c["Right ring slot: 100% of Physical Hit Damage from you and"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=100}}," Physical Hit from you and "} c["Right ring slot: 100% of Physical Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=100}}}}," Physical Hit from you and your s cannot be Reflected "} -c["Right ring slot: 30% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalReflectedDamageTaken",type="INC",value=-30}},nil} -c["Right ring slot: 40% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalReflectedDamageTaken",type="INC",value=-40}},nil} -c["Right ring slot: 80% reduced Reflected Physical Damage taken"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="PhysicalReflectedDamageTaken",type="INC",value=-80}},nil} +c["Right ring slot: 30% of Physical Hit Damage from you and"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}," Physical Hit from you and "} +c["Right ring slot: 30% of Physical Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=30}}}}," Physical Hit from you and your s cannot be Reflected "} +c["Right ring slot: 40% of Physical Hit Damage from you and"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=40}}," Physical Hit from you and "} +c["Right ring slot: 40% of Physical Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=40}}}}," Physical Hit from you and your s cannot be Reflected "} +c["Right ring slot: 80% of Physical Hit Damage from you and"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=80}}," Physical Hit from you and "} +c["Right ring slot: 80% of Physical Hit Damage from you and your Minions cannot be Reflected"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="Damage",type="BASE",value=80}}}}," Physical Hit from you and your s cannot be Reflected "} 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["Right ring slot: Projectiles from Spells cannot Fork"]={{[1]={[1]={num=2,type="SlotNumber"},flags=1026,keywordFlags=0,name="CannotFork",type="FLAG",value=true}},nil} c["Right ring slot: Regenerate 3% of Energy Shield per second"]={{[1]={[1]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="EnergyShieldRegenPercent",type="BASE",value=3}},nil} @@ -11331,7 +11217,7 @@ c["Right ring slot: You cannot Regenerate Mana"]={{[1]={[1]={num=2,type="SlotNum c["Runebinder"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Runebinder"}},nil} c["Ruthless Hits Intimidate Enemies for 4 seconds"]={nil,"Ruthless Hits Intimidate Enemies for 4 seconds "} c["Sacrifice 10% of your Life when you Use or Trigger a Spell Skill"]={nil,"Sacrifice 10% of your Life when you Use or Trigger a Spell Skill "} -c["Sacrifice 10% of your Life when you Use or Trigger a Spell Skill 2% increased Critical Strike Chance for Spells per 100 Player Maximum Life"]={nil,"Sacrifice 10% of your Life when you Use or Trigger a Spell Skill 2% increased Critical Strike Chance for Spells per 100 Player Maximum Life "} +c["Sacrifice 10% of your Life when you Use or Trigger a Spell Skill 2% increased Spell Critical Strike Chance per 100 Player Maximum Life"]={nil,"Sacrifice 10% of your Life when you Use or Trigger a Spell Skill 2% increased Spell Critical Strike Chance per 100 Player Maximum Life "} c["Sacrifice 25% of Life to gain that much Energy Shield when you Cast a Spell"]={nil,"Sacrifice 25% of Life to gain that much Energy Shield when you Cast a Spell "} 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["Sacrifice 4% of your Life when you Use or Trigger a Spell Skill Sacrifice 10% 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 Sacrifice 10% of your Life when you Use or Trigger a Spell Skill "} @@ -11344,13 +11230,14 @@ c["Scion: 30% increased Damage"]={{[1]={[1]={type="Condition",var="ConnectedToSc c["Scorch Enemies in Close Range when you Block"]={{[1]={flags=0,keywordFlags=0,name="EnemyScorchChance",type="BASE",value=100}},nil} c["Scorch Enemies when you Block their Damage"]={nil,"Scorch Enemies when you Block their Damage "} c["Scorch Enemies when you Block their Damage 67% increased Chance to Block"]={nil,"Scorch Enemies when you Block their Damage 67% increased Chance to Block "} +c["Searching Eye Jewel affecting you, up to a maximum of 20%"]={nil,"Searching Eye Jewel affecting you, up to a maximum of 20% "} c["Secrets of Suffering"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Secrets of Suffering"}},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["Shadow: +0.5% to Critical Strike Chance"]={{[1]={[1]={type="Condition",var="ConnectedToShadowStart"},flags=0,keywordFlags=0,name="CritChance",type="BASE",value=0.5}},nil} c["Shadow: 12% increased Attack and Cast Speed"]={{[1]={[1]={type="Condition",var="ConnectedToShadowStart"},flags=0,keywordFlags=0,name="Speed",type="INC",value=12}},nil} c["Share Endurance Charges with nearby party members"]={nil,"Share Endurance Charges with nearby party members "} c["Share Endurance Charges with nearby party members Gain an Endurance Charge when you are Hit"]={nil,"Share Endurance Charges with nearby party members Gain an Endurance Charge when you are Hit "} -c["Share Endurance Charges with nearby party members Your nearby party members maximum Endurance Charges is equal to yours"]={nil,"Share Endurance Charges with nearby party members Your nearby party members maximum Endurance Charges is equal to yours "} +c["Share Endurance Charges with nearby party members Gain up to maximum Endurance Charges when you take a Critical Strike"]={nil,"Share Endurance Charges with nearby party members Gain up to maximum Endurance Charges when you take a Critical Strike "} c["Share Endurance, Frenzy and Power Charges with nearby party members"]={nil,"Share Endurance, Frenzy and Power Charges with nearby party members "} c["Share Endurance, Frenzy and Power Charges with nearby party members Limited to 1 Keystone Tattoo"]={nil,"Share Endurance, Frenzy and Power Charges with nearby party members Limited to 1 Keystone Tattoo "} c["Shared Suffering"]={nil,"Shared Suffering "} @@ -11359,29 +11246,26 @@ c["Shield with no Shaper Memory Summoned"]={nil,"Shield with no Shaper Memory Su c["Shield with no Shaper Memory Summoned Maximum 10 Remembrance"]={nil,"Shield with no Shaper Memory Summoned Maximum 10 Remembrance "} c["Shock Attackers for 4 seconds on Block"]={{[1]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="ShockBase",type="BASE",value=15},[2]={[1]={type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Shocked",type="FLAG",value=true}}}},nil} c["Shock Reflection"]={nil,"Shock Reflection "} -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["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["Shock nearby Enemies for 4 Seconds when you Focus"]={{[1]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="ShockBase",type="BASE",value=15},[2]={[1]={type="Condition",var="Focused"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Shocked",type="FLAG",value=true}}}},nil} c["Shocked Enemies you Kill Explode, dealing 10% of"]={nil,"Shocked Enemies you Kill Explode, dealing 10% of "} -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["Shocked Enemies you Kill Explode, dealing 10% of their Life as Lightning Damage which cannot Shock"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=10,chance=1,keyOfScaledMod="chance",type="Lightning"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} c["Shocked Enemies you Kill Explode, dealing 5% of"]={nil,"Shocked Enemies you Kill Explode, dealing 5% of "} c["Shocked Enemies you Kill Explode, dealing 5% of their Life as Lightning Damage which cannot Shock"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Shocked"},flags=0,keywordFlags=0,name="ExplodeMod",type="LIST",value={amount=5,chance=1,keyOfScaledMod="chance",type="Lightning"}},[2]={flags=0,keywordFlags=0,name="CanExplode",type="FLAG",value=true}},nil} -c["Shocks all nearby Enemies on Killing a Shocked Enemy"]={nil,"Shocks all nearby Enemies on Killing a Shocked Enemy "} -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["Shocks from your Hits always increase Damage taken by at least 10%"]={{[1]={flags=0,keywordFlags=0,name="ShockMinimum",type="BASE",value=10}},nil} c["Shocks from your Hits always increase Damage taken by at least 25%"]={{[1]={flags=0,keywordFlags=0,name="ShockMinimum",type="BASE",value=25}},nil} c["Shocks nearby Enemies during Effect, causing 10% increased Damage taken"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ShockOverride",type="BASE",value=10}},nil} c["Shocks you cause are reflected back to you"]={nil,"Shocks you cause are reflected back to you "} 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["Shocks you inflict during Effect spread to other Enemies within 2 metres"]={nil,"Shocks you inflict during Effect spread to other Enemies within 2 metres "} -c["Shocks you inflict during Effect spread to other Enemies within 2 metres 30% of Lightning Damage Leeched as Life during Effect"]={nil,"Shocks you inflict during Effect spread to other Enemies within 2 metres 30% of Lightning Damage Leeched as Life during Effect "} +c["Shocks you inflict during Effect spread to other Enemies within 2 metres Adds 35 to 130 Lightning Damage to Attacks during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="LightningMin",type="BASE",value=35},[2]={[1]={type="Condition",var="UsingFlask"},[2]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=65536,name="LightningMax",type="BASE",value=130}},"Shocks you inflict spread to other Enemies within 2 metres "} c["Shocks you inflict spread to other Enemies within 1 metre"]={nil,"Shocks you inflict spread to other Enemies within 1 metre "} c["Shocks you inflict spread to other Enemies within 1.5 metres"]={nil,"Shocks you inflict spread to other Enemies within 1.5 metres "} c["Shocks you inflict spread to other Enemies within 1.5 metres 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}},"Shocks you inflict spread to other Enemies within 1.5 metres "} c["Shocks you when you reach Maximum Power Charges"]={nil,"Shocks you when you reach Maximum Power Charges "} c["Shrapnel Ballista has +1 to maximum number of Summoned Totems per 200 Strength"]={{[1]={[1]={div=200,stat="Str",type="PerStat"},[2]={includeTransfigured=true,skillName="Shrapnel Ballista",type="SkillName"},flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil} +c["Siege Ballista has +1 to maximum number of Summoned Totems per 200 Dexterity"]={{[1]={[1]={div=200,stat="Dex",type="PerStat"},[2]={includeTransfigured=true,skillName="Siege Ballista",type="SkillName"},flags=0,keywordFlags=0,name="ActiveTotemLimit",type="BASE",value=1}},nil} c["Siren Worm Bait"]={nil,"Siren Worm Bait "} -c["Siren Worm Bait 40% reduced Quantity of Fish Caught"]={nil,"Siren Worm Bait 40% reduced Quantity of Fish Caught "} +c["Siren Worm Bait 60% increased Rarity of Fish Caught"]={nil,"Siren Worm Bait 60% increased Rarity of Fish Caught "} c["Skeletons gain Added Chaos Damage equal to 25% of Maximum Energy Shield on your Equipped Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=25,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=25,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}}}},nil} c["Skeletons gain Added Chaos Damage equal to 30% of Maximum Energy Shield on your Equipped Shield"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=30,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1}}},[2]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={actor="parent",percent=30,stat="EnergyShieldOnWeapon 2",type="PercentStat"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}}}},nil} c["Skills Chain +1 times"]={{[1]={flags=0,keywordFlags=0,name="ChainCountMax",type="BASE",value=1}},nil} @@ -11393,7 +11277,7 @@ c["Skills Cost Life instead of 15% of Mana Cost"]={{[1]={flags=0,keywordFlags=0, c["Skills Cost Life instead of 50% of Mana Cost"]={{[1]={flags=0,keywordFlags=0,name="HybridManaAndLifeCost_Life",type="BASE",value=50}},nil} c["Skills Cost Life instead of Mana"]={{[1]={flags=0,keywordFlags=0,name="CostLifeInsteadOfMana",type="FLAG",value=true}},nil} c["Skills Cost no Mana during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ManaCost",type="MORE",value=-100}},nil} -c["Skills Fire 3 additional Projectiles for 4 seconds after you consume a total of 12 Steel Shards"]={{[1]={[1]={type="Condition",var="Consumed12SteelShardsRecently"},flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=3}},nil} +c["Skills Fire 3 additional Projectiles for 4 seconds after"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=3}}," after "} c["Skills Fire 3 additional Projectiles for 4 seconds after you consume a total of 8 Steel Shards"]={{[1]={flags=0,keywordFlags=0,name="ProjectileCount",type="BASE",value=3}}," after you consume a total of 8 Steel Shards "} c["Skills Reserve Life instead of Mana"]={{[1]={flags=0,keywordFlags=0,name="BloodMagicReserved",type="FLAG",value=true}},nil} c["Skills Supported by Nightblade have 40% increased Effect of Elusive"]={{[1]={flags=0,keywordFlags=0,name="NightbladeSupportedElusiveEffect",type="INC",value=40}},nil} @@ -11437,12 +11321,10 @@ c["Skills which create Brands have 35% chance to create an additional Brand"]={n c["Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity"]={{[1]={[1]={stat="Dex",threshold=800,type="StatThreshold"},flags=0,keywordFlags=8192,name="MineThrowCount",type="BASE",value=1}},nil} c["Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence"]={{[1]={[1]={stat="Int",threshold=800,type="StatThreshold"},flags=0,keywordFlags=8192,name="MineThrowCount",type="BASE",value=1}},nil} c["Skills which throw Traps Cost Life instead of Mana"]={{[1]={[1]={skillType=36,type="SkillType"},flags=0,keywordFlags=0,name="CostLifeInsteadOfMana",type="FLAG",value=true}},nil} -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["Socketed Curse Gems have 30% increased Reservation Efficiency"]={{[1]={[1]={keyword="curse",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=30}}}},nil} c["Socketed Curse Gems have 50% increased Reservation Efficiency"]={{[1]={[1]={keyword="curse",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=50}}}},nil} c["Socketed Curse Gems have 80% increased Reservation Efficiency"]={{[1]={[1]={keyword="curse",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=80}}}},nil} c["Socketed Gems Cost and Reserve Life instead of Mana"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportBloodMagicUniquePrismGuardian"}}},nil} -c["Socketed Gems Have no Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="Reserved",type="MORE",value=-100}},nil} c["Socketed Gems are Supported by Level 1 Arrow Nova"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportArrowNova"}}},nil} c["Socketed Gems are Supported by Level 1 Elemental Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportElementalPenetration"}}},nil} 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} @@ -11614,8 +11496,6 @@ c["Socketed Gems are Supported by Level 10 Prismatic Burst"]={{[1]={[1]={slotNam c["Socketed Gems are Supported by Level 10 Pulverise"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportPulverise"}}},nil} c["Socketed Gems are Supported by Level 10 Pyre"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportPyre"}},[2]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredSupportPyre"}}},nil} c["Socketed Gems are Supported by Level 10 Rage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportRage"}}},nil} -c["Socketed Gems are Supported by Level 10 Remote Mine"]={nil,nil} -c["Socketed Gems are Supported by Level 10 Remote Mine Socketed Gems are Supported by Level 10 Blastchain Mine"]={nil,nil} c["Socketed Gems are Supported by Level 10 Returning Projectiles"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportReturningProjectiles"}}},nil} c["Socketed Gems are Supported by Level 10 Rupture"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportRupture"}}},nil} c["Socketed Gems are Supported by Level 10 Ruthless"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=10,skillId="SupportRuthless"}}},nil} @@ -11657,8 +11537,7 @@ c["Socketed Gems are Supported by Level 11 Trap"]={{[1]={[1]={slotName="{SlotNam c["Socketed Gems are Supported by Level 12 Cast when Damage Taken"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportCastWhenDamageTaken"}}},nil} 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="SupportFasterAttacks"}}},nil} 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["Socketed Gems are Supported by Level 12 Lesser Multiple Projectiles"]={nil,nil} -c["Socketed Gems are Supported by Level 12 Lesser Multiple Projectiles Socketed Golem Skills have 25% chance to Taunt on Hit"]={nil,nil} +c["Socketed Gems are Supported by Level 12 Multiple Projectiles"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=12,skillId="SupportLesserMultipleProjectiles"}}},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="SupportFasterAttacks"}}},nil} 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["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} @@ -11671,21 +11550,20 @@ c["Socketed Gems are Supported by Level 15 Faster Attacks"]={{[1]={[1]={slotName c["Socketed Gems are Supported by Level 15 Hypothermia"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportHypothermia"}}},nil} c["Socketed Gems are Supported by Level 15 Ice Bite"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportIceBite"}}},nil} c["Socketed Gems are Supported by Level 15 Immolate"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportImmolate"}}},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["Socketed Gems are Supported by Level 15 Innervate"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportInnervate"}}},nil} c["Socketed Gems are Supported by Level 15 Inspiration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportInspiration"}}},nil} +c["Socketed Gems are Supported by Level 15 Minion Life"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportMinionLife"}}},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["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 15 Trap"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportTrap"}}},nil} c["Socketed Gems are Supported by Level 15 Unbound Ailments"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=15,skillId="SupportUnboundAilments"}}},nil} c["Socketed Gems are Supported by Level 16 Cluster Trap"]={nil,nil} -c["Socketed Gems are Supported by Level 16 Cluster Trap Socketed Gems are Supported by Level 16 Trap and Mine Damage"]={nil,nil} -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["Socketed Gems are Supported by Level 16 Cluster Trap Socketed Gems are Supported by Level 16 Trap And Mine Damage"]={nil,nil} +c["Socketed Gems are Supported by Level 16 Minion Speed"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=16,skillId="SupportMinionSpeed"}}},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["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["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["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["Socketed Gems are Supported by Level 17 Minion Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=17,skillId="SupportMinionDamage"}}},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["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["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="SupportFasterAttacks"}}},nil} 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="SupportFasterCasting"}}},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="SupportIceBite"}}},nil} @@ -11702,16 +11580,16 @@ c["Socketed Gems are Supported by Level 20 Ignite Proliferation"]={{[1]={[1]={sl 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["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["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="SupportVileToxins"}}},nil} +c["Socketed 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["Socketed Gems are Supported by Level 25 Divine Blessing"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=25,skillId="SupportDivineBlessing"}}},nil} c["Socketed Gems are Supported by Level 25 Elemental Penetration"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=25,skillId="SupportElementalPenetration"}}},nil} c["Socketed Gems are Supported by Level 29 Added Chaos Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=29,skillId="SupportAddedChaosDamage"}}},nil} c["Socketed Gems are Supported by Level 29 Added Cold Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=29,skillId="SupportAddedColdDamage"}}},nil} c["Socketed Gems are Supported by Level 30 Added Lightning Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportAddedLightningDamage"}}},nil} -c["Socketed Gems are Supported by Level 30 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportBlind"}}},nil} 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["Socketed Gems are Supported by Level 30 Faster Attacks"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportFasterAttacks"}}},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["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="SupportGreaterSpellEcho"}}},nil} +c["Socketed Gems are Supported by Level 30 Infernal Legion"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportInfernalLegion"}}},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["Socketed Gems are Supported by Level 30 Melee Physical Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportMeleePhysicalDamage"}}},nil} c["Socketed Gems are Supported by Level 30 Rage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportRage"}}},nil} @@ -11920,21 +11798,24 @@ c["Socketed Gems are Supported by Level 35 Withering Touch"]={{[1]={[1]={slotNam c["Socketed Gems are Supported by Level 5 Cold to Fire"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=5,skillId="SupportColdToFire"}}},nil} c["Socketed Gems are Supported by Level 5 Concentrated Effect"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=5,skillId="SupportConcentratedEffect"}}},nil} 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["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["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["Socketed Gems are supported by Level 1 Chance to Bleed"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportChanceToBleed"}}},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["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["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="SupportCastWhenStunned"}}},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["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["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["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["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["Socketed Gems are supported by Level 30 Blind"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportBlind"}}},nil} c["Socketed Gems are supported by Level 30 Melee Splash"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportMeleeSplash"}}},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["Socketed Gems are supported by level 30 Infernal Legion"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=30,skillId="SupportInfernalLegion"}}},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["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["Socketed Gems deal 63 to 94 Added 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["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["Socketed Gems fire Projectiles in a Nova"]={nil,"fire Projectiles in a Nova "} -c["Socketed Gems fire Projectiles in a Nova +20 to All Attributes"]={nil,"fire Projectiles in a Nova +20 to All Attributes "} +c["Socketed Gems fire Projectiles in a circle"]={nil,"fire Projectiles in a circle "} +c["Socketed Gems fire Projectiles in a circle +20 to all Attributes"]={nil,"fire Projectiles in a circle +20 to all Attributes "} 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["Socketed Gems have 10% chance to cause Enemies to Flee on Hit"]={{}," to cause Enemies to Flee "} c["Socketed Gems have 10% chance to cause Enemies to Flee on Hit Trigger Level 1 Intimidating Cry on Hit"]={{}," to cause Enemies to Flee Trigger Level 1on Hit "} @@ -11942,18 +11823,23 @@ c["Socketed Gems have 20% reduced Mana Reservation Efficiency"]={{[1]={[1]={slot c["Socketed Gems have 20% reduced Reservation Efficiency"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=-20}}}},nil} c["Socketed Gems have 25% increased Reservation Efficiency"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=25}}}},nil} c["Socketed Gems have 30% increased Reservation Efficiency"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=30}}}},nil} -c["Socketed Gems have 40% increased Mana Reservation Efficiency"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=40}}}},nil} +c["Socketed Gems have 40% reduced Reservation Efficiency"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=-40}}}},nil} c["Socketed Gems have 45% increased Reservation Efficiency"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="ReservationEfficiency",type="INC",value=45}}}},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["Socketed Gems have Elemental Equilibrium"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Elemental Equilibrium"}},nil} c["Socketed Gems have Secrets of Suffering"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="CannotIgnite",type="FLAG",value=true},[2]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="CannotChill",type="FLAG",value=true},[3]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="CannotFreeze",type="FLAG",value=true},[4]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="CannotShock",type="FLAG",value=true},[5]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="CritAlwaysAltAilments",type="FLAG",value=true}},nil} +c["Socketed Gems have no Reservation"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="Reserved",type="MORE",value=-100}},nil} 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["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["Socketed Golem Skills have 25% chance to Taunt on Hit"]={{}," to Taunt "} -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=4,keywordFlags=0,name="Damage",type="BASE",value=25}}}}," to Taunt Socketed Gems are Supported by Level 17 Increased Minion "} -c["Socketed Golem Skills have Minions Regenerate 5% Life 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["Socketed Golem Skills have 25% chance to Taunt on Hit Socketed Golem Skills have Minions Regenerate 5% of Life per second"]={{[1]={[1]={keyword="golem",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=4,keywordFlags=0,name="Life",type="BASE",value=25}}}}," to Taunt Socketed Golem Skills have Minions Regenerate 5% of per second "} +c["Socketed Golem Skills have Minions Regenerate 5% of Life 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["Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=20,skillId="SupportCursePillarTriggerCurses"}}},nil} c["Socketed Lightning Spells deal 100% increased Spell Damage if Triggered"]={{},nil} +c["Socketed Lightning Spells have no Cost if Triggered"]={nil,"Socketed Lightning Spells have no Cost if Triggered "} +c["Socketed Lightning Spells have no Cost if Triggered +300 Intelligence Requirement"]={nil,"Socketed Lightning Spells have no Cost if Triggered +300 Intelligence Requirement "} +c["Socketed Lightning Spells have no Cost if Triggered 30% chance to Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown"]={nil,"Socketed Lightning Spells have no Cost if Triggered 30% chance to Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown "} +c["Socketed Lightning Spells have no Cost if Triggered Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown"]={nil,"Socketed Lightning Spells have no Cost if Triggered Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown "} 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["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["Socketed Non-Channelling Bow Skills are Triggered by Snipe"]={{},nil} @@ -11967,14 +11853,15 @@ c["Socketed Red Gems get 10% Physical Damage as Extra Fire Damage"]={{[1]={[1]={ c["Socketed Skill Gems get a 80% Cost & Reservation Multiplier"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SupportManaMultiplier",type="MORE",value=-20}}}},nil} c["Socketed Skills deal Double Damage"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="DoubleDamageChance",type="BASE",value=100}}}},nil} c["Socketed Slam Gems are Supported by Level 25 Earthbreaker"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=25,skillId="SupportEarthbreaker"}}},nil} -c["Socketed Support Gems can also Support Skills from your Body Armour"]={{[1]={flags=0,keywordFlags=0,name="LinkedSupport",type="LIST",value={targetSlotName="Body Armour"}}},nil} +c["Socketed Support Gems can also Support Skills from Equipped Body Armour"]={{[1]={flags=0,keywordFlags=0,name="LinkedSupport",type="LIST",value={targetSlotName="Body Armour"}}},nil} c["Socketed Support Gems can also Support Skills from your Main Hand"]={{[1]={flags=0,keywordFlags=0,name="LinkedSupport",type="LIST",value={targetSlotName="Weapon 1"}}},nil} c["Socketed Travel Skills deal 80% more Damage"]={{[1]={[1]={keyword="travel",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=80}}}},nil} -c["Socketed Vaal Skills can store Souls for 1 additional Use"]={nil,"Socketed Vaal Skills can store Souls for 1 additional Use "} -c["Socketed Vaal Skills can store Souls for 1 additional Use Hits from Socketed Vaal Skills ignore Enemy Monster Resistances"]={nil,"Socketed Vaal Skills can store Souls for 1 additional Use Hits from Socketed Vaal Skills ignore Enemy Monster Resistances "} +c["Socketed Triggered Bow Skills gain a 0.05 second Cooldown"]={nil,"Socketed Triggered Bow Skills gain a 0.05 second Cooldown "} +c["Socketed Triggered Bow Skills gain a 0.05 second Cooldown +500 to Accuracy Rating"]={nil,"Socketed Triggered Bow Skills gain a 0.05 second Cooldown +500 to Accuracy Rating "} c["Socketed Vaal Skills deal 150% more Damage"]={{[1]={[1]={keyword="vaal",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="Damage",type="MORE",value=150}}}},nil} c["Socketed Vaal Skills grant Elusive when Used"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanBeElusive",type="FLAG",value=true}},nil} c["Socketed Vaal Skills have 20% chance to regain consumed Souls when used"]={{}," to regain consumed Souls when used "} +c["Socketed Vaal Skills have 20% chance to regain consumed Souls when used You have Tailwind if you've used a Socketed Vaal Skill Recently"]={{}," to regain consumed Souls when used You have Tailwind "} c["Socketed Vaal Skills have 30% reduced Soul Gain Prevention Duration"]={{[1]={[1]={keyword="vaal",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SoulGainPreventionDuration",type="INC",value=-30}}}},nil} c["Socketed Vaal Skills have 50% increased Aura Effect"]={{[1]={[1]={keyword="vaal",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=50}}}},nil} c["Socketed Vaal Skills have 60% increased Area of Effect"]={{[1]={[1]={keyword="vaal",slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="AreaOfEffect",type="INC",value=60}}}},nil} @@ -11988,12 +11875,6 @@ c["Sockets cannot be modified +2 to Level of Socketed Gems"]={nil,"Sockets canno c["Solipsism"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Solipsism"}},nil} c["Spectres do not travel between Areas"]={nil,"Spectres do not travel between Areas "} c["Spectres do not travel between Areas Corrupted"]={nil,"Spectres do not travel between Areas Corrupted "} -c["Spectres have 100% increased maximum Life"]={{[1]={[1]={includeTransfigured=true,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["Spectres have 1000% increased Critical Strike Chance"]={{[1]={[1]={includeTransfigured=true,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["Spectres have 75% increased maximum Life"]={{[1]={[1]={includeTransfigured=true,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["Spectres have 900% increased Critical Strike Chance"]={{[1]={[1]={includeTransfigured=true,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["Spectres have a Base Duration of 20 seconds"]={{[1]={[1]={includeTransfigured=true,skillName="Raise Spectre",type="SkillName"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="duration",value=6}}},nil} -c["Speed per second"]={nil,"Speed per second "} c["Spell Skills always deal Critical Strikes on final Repeat"]={{[1]={flags=2,keywordFlags=0,name="SpellSkillsAlwaysDealCriticalStrikesOnFinalRepeat",type="FLAG",value=true}},nil} c["Spell Skills cannot deal Critical Strikes except on final Repeat"]={{[1]={flags=2,keywordFlags=0,name="SpellSkillsCannotDealCriticalStrikesExceptOnFinalRepeat",type="FLAG",value=true},[2]={[1]={type="Condition",var="alwaysFinalRepeat"},flags=0,keywordFlags=0,name="",type="FLAG",value=true}},nil} c["Spell Skills deal no Damage"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="DealNoDamage",type="FLAG",value=true}},nil} @@ -12009,7 +11890,6 @@ c["Spells Cost +8% of Life"]={{[1]={[1]={floor=true,percent=8,stat="Life",type=" c["Spells Triggered this way have 150% more Cost"]={nil,"Spells Triggered this way have 150% more Cost "} c["Spells Triggered this way have 150% more Cost +28% to Fire Damage over Time Multiplier"]={{},"Spells Triggered this way have 150% more % to Fire Damage over Time Multiplier "} c["Spells cast by Totems deal 25% increased Damage"]={{[1]={flags=2,keywordFlags=16384,name="Damage",type="INC",value=25}},nil} -c["Spells cause you to gain Energy Shield equal to their Upfront Cost every fifth time you Pay it"]={nil,"Spells cause you to gain Energy Shield equal to their Upfront Cost every fifth time you Pay it "} c["Spells deal added Chaos Damage equal to 18% of your maximum Life"]={{[1]={[1]={percent=18,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={[1]={percent=18,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}},nil} c["Spells deal added Chaos Damage equal to 2% of your maximum Life"]={{[1]={[1]={percent=2,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={[1]={percent=2,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}},nil} c["Spells deal added Chaos Damage equal to 20% of your maximum Life"]={{[1]={[1]={percent=20,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMin",type="BASE",value=1},[2]={[1]={percent=20,stat="Life",type="PercentStat"},[2]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="ChaosMax",type="BASE",value=1}},nil} @@ -12026,7 +11906,7 @@ c["Spells have a 20% chance to deal Double Damage"]={{[1]={flags=2,keywordFlags= c["Spells inflict Intimidate on Critical Strike for 4 seconds"]={nil,"Spells inflict Intimidate on Critical Strike for 4 seconds "} c["Spells which can gain Intensity have +1 to maximum Intensity"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:IntensityLimit",type="BASE",value=1}},nil} c["Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds"]={nil,"Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds "} -c["Spells which have gained Intensity Recently lose 1 Intensity every 0.50 Seconds"]={nil,"Spells which have gained Intensity Recently lose 1 Intensity every 0.50 Seconds "} +c["Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds"]={nil,"Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds "} c["Spend Energy Shield before Mana for Costs of Socketed Skills"]={nil,"Spend Energy Shield before Mana for Costs of Socketed Skills "} c["Spend Energy Shield before Mana for Costs of Socketed Skills +165 to maximum Energy Shield"]={nil,"Spend Energy Shield before Mana for Costs of Socketed Skills +165 to maximum Energy Shield "} c["Spend Energy Shield before Mana for Skill Mana Costs"]={{},nil} @@ -12043,23 +11923,21 @@ c["Stance Skills have +6 seconds to Cooldown"]={{[1]={[1]={skillType=104,type="S c["Starts Energy Shield Recharge when Used"]={nil,"Starts Energy Shield Recharge when Used "} c["Starts Energy Shield Recharge when Used Energy Shield Recharge is not delayed by Damage during Effect"]={nil,"Starts Energy Shield Recharge when Used Energy Shield Recharge is not delayed by Damage during Effect "} c["Steal Power, Frenzy, and Endurance Charges on Hit"]={nil,"Steal Power, Frenzy, and Endurance Charges on Hit "} -c["Steal Power, Frenzy, and Endurance Charges on Hit Total Recovery per second from Life Leech is Doubled"]={{[1]={[1]={globalLimit=100,globalLimitKey="LifeLeechRateDoubledLimit",type="Multiplier",var="LifeLeechRateDoubled"},flags=4,keywordFlags=0,name="LifeLeechRate",type="MORE",value=100},[2]={flags=4,keywordFlags=0,name="Multiplier:LifeLeechRateDoubled",type="OVERRIDE",value=1}},"Steal Power, Frenzy, and Endurance Charges "} -c["Storms Hit Enemies with 40% increased Frequency"]={{[1]={flags=0,keywordFlags=0,name="HeraldStormFrequency",type="INC",value=40}},nil} -c["Storms Hit Enemies with 50% increased Frequency"]={{[1]={flags=0,keywordFlags=0,name="HeraldStormFrequency",type="INC",value=50}},nil} +c["Steal Power, Frenzy, and Endurance Charges on Hit 0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges"]={nil,"Steal Power, Frenzy, and Endurance Charges on Hit 0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges "} c["Strength provides no bonus to Maximum Life"]={{[1]={flags=0,keywordFlags=0,name="NoStrBonusToLife",type="FLAG",value=true}},nil} +c["Strength's Damage Bonus instead grants 3% increased Melee"]={nil,"Strength's Damage Bonus instead grants 3% increased Melee "} 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["Strength's Damage bonus applies to Projectile Attack Damage as well as Melee Damage"]={{[1]={flags=0,keywordFlags=0,name="IronGrip",type="FLAG",value=true}},nil} c["Strength's Damage bonus applies to all Spell Damage as well"]={{[1]={flags=0,keywordFlags=0,name="IronWill",type="FLAG",value=true}},nil} -c["Strike Skills also target the previous location they were Used"]={nil,"Strike Skills also target the previous location they were Used "} c["Strike Skills also target the previous location they were used"]={nil,"Strike Skills also target the previous location they were used "} c["Strike Skills which target additional Enemies can do so from 40% further away"]={nil,"Strike Skills which target additional Enemies can do so from 40% further away "} c["Stun Threshold is based on 500% of your Mana instead of Life"]={{[1]={flags=0,keywordFlags=0,name="StunThresholdBasedOnManaInsteadOfLife",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="StunThresholdManaPercent",type="BASE",value=500}},nil} c["Stun Threshold is based on Energy Shield instead of Life"]={{[1]={flags=0,keywordFlags=0,name="StunThresholdBasedOnEnergyShieldInsteadOfLife",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="StunThresholdEnergyShieldPercent",type="BASE",value=100}},nil} c["Stuns from Critical Strikes have 100% increased Duration"]={{[1]={flags=0,keywordFlags=0,name="EnemyStunDurationOnCrit",type="INC",value=100}},nil} -c["Summon 2 additional Skeleton Warriors with Summon Skeleton"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton "} -c["Summon 2 additional Skeleton Warriors with Summon Skeleton Summon 4 additional Skeleton Warriors with Summon Skeleton"]={nil,"Summon 2 additional Skeleton Warriors with Summon Skeleton Summon 4 additional Skeleton Warriors with Summon Skeleton "} -c["Summon 4 additional Skeleton Warriors with Summon Skeleton"]={nil,"Summon 4 additional Skeleton Warriors with Summon Skeleton "} -c["Summon 4 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown"]={nil,"Summon 4 additional Skeleton Warriors with Summon Skeleton +1 second to Summon Skeleton Cooldown "} +c["Summon 2 additional Skeletons with Summon Skeletons"]={nil,"Summon 2 additional Skeletons with Summon Skeletons "} +c["Summon 2 additional Skeletons with Summon Skeletons Summon 4 additional Skeletons with Summon Skeletons"]={nil,"Summon 2 additional Skeletons with Summon Skeletons Summon 4 additional Skeletons with Summon Skeletons "} +c["Summon 4 additional Skeletons with Summon Skeletons"]={nil,"Summon 4 additional Skeletons with Summon Skeletons "} +c["Summon 4 additional Skeletons with Summon Skeletons +1 second to Summon Skeleton Cooldown"]={nil,"Summon 4 additional Skeletons with Summon Skeletons +1 second to Summon Skeleton Cooldown "} c["Summon Raging Spirit has 25% increased Duration"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=25}},nil} c["Summon Raging Spirit has 30% increased Duration"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="Duration",type="INC",value=30}},nil} c["Summon Skeletons cannot Summon more than 1 Skeleton Warrior"]={nil,"cannot Summon more than 1 Skeleton Warrior "} @@ -12099,19 +11977,16 @@ c["Summoned Arbalists' Projectiles Split into 3"]={nil,"Summoned Arbalists' Proj c["Summoned Arbalists' Projectiles Split into 3 Summoned Arbalists gain 40% of Physical Damage as Extra Cold Damage"]={nil,"Summoned Arbalists' Projectiles Split into 3 Summoned Arbalists gain 40% of Physical Damage as Extra Cold Damage "} c["Summoned Golems Regenerate 2% of their Life per second"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=2}}}},nil} c["Summoned Golems are Aggressive"]={nil,"Summoned Golems are Aggressive "} -c["Summoned Golems are Aggressive Primordial"]={nil,"Summoned Golems are Aggressive Primordial "} c["Summoned Golems are Immune to Elemental Damage"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Elemancer",type="FLAG",value=true}}},[2]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="ElementalDamageTaken",type="MORE",value=-100}}}},nil} c["Summoned Golems are Resummoned 4 seconds after being Killed"]={nil,"Summoned Golems are Resummoned 4 seconds after being Killed "} c["Summoned Golems are Resummoned 4 seconds after being Killed +2 to maximum number of Summoned Golems"]={nil,"Summoned Golems are Resummoned 4 seconds after being Killed +2 to maximum number of Summoned Golems "} c["Summoned Golems have 15% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=15}}}},nil} c["Summoned Golems have 38% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=38}}}},nil} c["Summoned Golems have 45% increased Cooldown Recovery Rate"]={{[1]={[1]={skillType=61,type="SkillType"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=45}}}},nil} -c["Summoned Holy Relics have 23% reduced Cooldown Recovery Speed"]={{[1]={[1]={includeTransfigured=true,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["Summoned Holy Relics have 25% reduced Cooldown Recovery Speed"]={{[1]={[1]={includeTransfigured=true,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["Summoned Holy Relics have 23% reduced Cooldown Recovery Rate"]={{[1]={[1]={includeTransfigured=true,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["Summoned Holy Relics have 25% reduced Cooldown Recovery Rate"]={{[1]={[1]={includeTransfigured=true,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["Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy"]={nil,"Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy "} -c["Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Unique Enemy"]={nil,"Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Unique Enemy "} -c["Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Unique Enemy"]={nil,"Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Unique Enemy "} -c["Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Unique Enemy Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy"]={nil,"Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Unique Enemy Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy "} +c["Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy"]={nil,"Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy "} c["Summoned Raging Spirits deal 150% increased Damage"]={{[1]={[1]={includeTransfigured=true,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["Summoned Raging Spirits deal 213% increased Damage"]={{[1]={[1]={includeTransfigured=true,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=213}}}},nil} c["Summoned Raging Spirits deal 250% increased Damage"]={{[1]={[1]={includeTransfigured=true,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=250}}}},nil} @@ -12119,8 +11994,6 @@ c["Summoned Raging Spirits deal 33% increased Damage"]={{[1]={[1]={includeTransf c["Summoned Raging Spirits deal 40% increased Damage"]={{[1]={[1]={includeTransfigured=true,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=40}}}},nil} c["Summoned Raging Spirits deal 80% increased Damage"]={{[1]={[1]={includeTransfigured=true,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["Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Duration",type="BASE",value=10}}}}," to refresh their when they Hit a Rare or Unique Enemy "} -c["Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Unique Enemy"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Duration",type="BASE",value=10}}}}," to refresh their when they Hit a Unique Enemy "} -c["Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Unique Enemy Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy"]={{[1]={[1]={includeTransfigured=true,skillName="Summon Raging Spirit",type="SkillName"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Duration",type="BASE",value=10}}}}," to refresh their when they Hit a Unique Enemy Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy "} c["Summoned Raging Spirits have 100% increased maximum Life"]={{[1]={[1]={includeTransfigured=true,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["Summoned Raging Spirits have 33% increased maximum Life"]={{[1]={[1]={includeTransfigured=true,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=33}}}},nil} c["Summoned Raging Spirits have 40% increased maximum Life"]={{[1]={[1]={includeTransfigured=true,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=40}}}},nil} @@ -12166,20 +12039,17 @@ c["Take 25% less Damage"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type= c["Take 250 Chaos Damage per Second during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=250}},nil} c["Take 250 Lightning Damage when Herald of Thunder Hits an Enemy"]={{[1]={flags=0,keywordFlags=0,name="StormSecretSelfDamage",type="LIST",value={baseDamage=250,damageType="lightning"}}},nil} c["Take 30 Chaos Damage per Second during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=30}},nil} -c["Take 300 Chaos Damage per Second during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=300}},nil} c["Take 40% less Damage from Hits"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-40}}," from Hits "} c["Take 40% less Damage from Hits Four seconds after each Hit you take, lose Life equal to 40% of the Damage taken from that Hit"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-40}}," from Hits Four seconds after each Hit you take, lose Life equal to 40% of the Damage taken from that Hit "} c["Take 40% less Damage from Hits Four seconds after each Hit you take, lose Life equal to 40% of the Damage taken from that Hit Non-Cluster, Non-Passage Jewels Socketed in your Passive Skill Tree have no effect"]={{[1]={flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-40}}," from Hits Four seconds after each Hit you take, lose Life equal to 40% of the Damage taken from that Hit Non-Cluster, Non-Passage Jewels Socketed in your Passive Skill Tree have no effect "} -c["Take 400 Fire Damage when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="EnmitysEmbraceSelfDamage",type="LIST",value={baseDamage=400,damageType="fire"}}},nil} -c["Take 5 Physical Damage when hit by Attacks"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalDamageTaken",type="BASE",value=5}}," when hit "} -c["Take 5 Physical Damage when hit by Attacks Pain Attunement"]={{[1]={flags=0,keywordFlags=65536,name="PhysicalDamageTaken",type="BASE",value=5}}," when hit Pain Attunement "} +c["Take 400 Fire Damage when you Use a Skill"]={{[1]={flags=0,keywordFlags=0,name="EnmitysEmbraceSelfDamage",type="LIST",value={baseDamage=400,damageType="fire"}}},nil} c["Take 50% less Damage from Hits for 5 seconds"]={{[1]={[1]={type="Condition",var="HeartstopperHIT"},flags=0,keywordFlags=0,name="DamageTakenWhenHit",type="MORE",value=-50},[2]={[1]={type="Condition",var="HeartstopperAVERAGE"},flags=0,keywordFlags=0,name="DamageTakenWhenHit",type="MORE",value=-25}},nil} c["Take 50% less Damage over Time for 5 seconds"]={{[1]={[1]={type="Condition",var="HeartstopperDOT"},flags=0,keywordFlags=0,name="DamageTakenOverTime",type="MORE",value=-50},[2]={[1]={type="Condition",var="HeartstopperAVERAGE"},flags=0,keywordFlags=0,name="DamageTakenOverTime",type="MORE",value=-25}},nil} c["Take 50% less Damage over Time if you've started taking Damage over Time in the past second"]={{[1]={flags=8,keywordFlags=0,name="DamageTaken",type="MORE",value=-50}}," if you've started taking Damage over Time in the past second "} c["Take 50% less Damage over Time if you've started taking Damage over Time in the past second 100% more Duration of Ailments on you"]={{[1]={flags=8,keywordFlags=0,name="DamageTaken",type="MORE",value=-50}}," if you've started taking Damage over Time in the past second 100% more Duration of Ailments on you "} c["Take 50% less Damage over Time if you've started taking Damage over Time in the past second 100% more Duration of Ailments on you Limited to 1 Keystone Tattoo"]={{[1]={flags=8,keywordFlags=0,name="DamageTaken",type="MORE",value=-50}}," if you've started taking Damage over Time in the past second 100% more Duration of Ailments on you Limited to 1 Keystone Tattoo "} c["Take 500 Cold Damage on reaching Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="ColdDamageTaken",type="BASE",value=500}}," on reaching Maximum Power Charges "} -c["Take 500 Fire Damage when you use a Skill"]={{[1]={flags=0,keywordFlags=0,name="EnmitysEmbraceSelfDamage",type="LIST",value={baseDamage=500,damageType="fire"}}},nil} +c["Take 500 Fire Damage when you Use a Skill"]={{[1]={flags=0,keywordFlags=0,name="EnmitysEmbraceSelfDamage",type="LIST",value={baseDamage=500,damageType="fire"}}},nil} c["Take 6000 Fire Damage per Second while Flame-Touched"]={{[1]={[1]={type="Condition",var="AffectedByApproachingFlames"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=6000}},nil} c["Take no Burning Damage if you've stopped taking Burning Damage Recently"]={nil,"no Burning Damage if you've stopped taking Burning Damage Recently "} c["Take no Burning Damage if you've stopped taking Burning Damage Recently Nearby Enemies Convert 25% of their Physical Damage to Fire"]={nil,"no Burning Damage if you've stopped taking Burning Damage Recently Nearby Enemies Convert 25% of their Physical Damage to Fire "} @@ -12202,8 +12072,8 @@ c["Taunts nearby Enemies on use Gain 3 Charges when you are Hit by an Enemy"]={n c["Templar: +4% Chance to Block Attack and Spell Damage"]={{[1]={[1]={type="Condition",var="ConnectedToTemplarStart"},flags=0,keywordFlags=0,name="BlockChance",type="BASE",value=4},[2]={[1]={type="Condition",var="ConnectedToTemplarStart"},flags=0,keywordFlags=0,name="SpellBlockChance",type="BASE",value=4}},nil} c["Templar: Damage Penetrates 5% Elemental Resistances"]={{[1]={[1]={type="Condition",var="ConnectedToTemplarStart"},flags=0,keywordFlags=0,name="ElementalPenetration",type="BASE",value=5}},nil} c["Temporal Chains can affect Hexproof Enemies"]={{[1]={[1]={skillId="TemporalChains",type="SkillId"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="ignoreHexproof",value=true}}},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["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["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["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["Temporal Chains has no Reservation if Cast as an Aura"]={{[1]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="TemporalChains",type="SkillId"},[2]={skillType=43,type="SkillType"},[3]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Temporal Rift has no Reservation"]={{[1]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="TemporalRift",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Thaumaturgical Lure"]={nil,"Thaumaturgical Lure "} @@ -12267,8 +12137,6 @@ c["Traps cannot be triggered by Enemies Traps from Skills are thrown randomly ar c["Traps from Skills are thrown randomly around targeted location"]={nil,"Traps from Skills are thrown randomly around targeted location "} c["Traps from Socketed Skills create a Smoke Cloud when triggered"]={nil,"Traps from Socketed Skills create a Smoke Cloud when triggered "} c["Traps from Socketed Skills create a Smoke Cloud when triggered Trigger Level 20 Fog of War when your Trap is triggered"]={nil,"Traps from Socketed Skills create a Smoke Cloud when triggered Trigger Level 20 Fog of War when your Trap is triggered "} -c["Travel Skills have 65% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=65}},nil} -c["Travel Skills have 80% increased Cooldown Recovery Speed"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="CooldownRecovery",type="INC",value=80}},nil} c["Travel Skills other than Dash are Disabled"]={{[1]={[1]={skillType=90,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={[1]={skillId="Dash",type="SkillId"},flags=0,keywordFlags=0,name="EnableSkill",type="FLAG",value=true}},nil} c["Treats Enemy Monster Chaos Resistance values as inverted"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="HitsInvertChaosResChance",type="CHANCE",value=100}},nil} c["Treats Enemy Monster Elemental Resistance values as inverted"]={{[1]={[1]={type="Condition",var="{Hand}Attack"},flags=0,keywordFlags=0,name="HitsInvertEleResChance",type="CHANCE",value=100}},nil} @@ -12277,7 +12145,7 @@ c["Trigger Level 1 Create Lesser Shrine when you Kill an Enemy"]={{[1]={flags=0, c["Trigger Level 1 Gore Shockwave on Melee Hit if you have at least 150 Strength"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="GoreShockwave",triggered=true}}},nil} c["Trigger Level 1 Intimidating Cry on Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="IntimidatingCry",triggered=true}}},nil} c["Trigger Level 1 Stalking Pustule on Kill"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=1,skillId="StalkingPustule",triggered=true}}},nil} -c["Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="AssassinsMark",triggered=true}}},nil} +c["Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="AssassinsMark",triggered=true}}},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",triggered=true}}},nil} c["Trigger Level 10 Contaminate when you Kill an Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="CreateFungalGroundOnKill",triggered=true}}},nil} c["Trigger Level 10 Shock Ground when Hit"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=10,skillId="TriggeredShockedGround",triggered=true}}},nil} @@ -12304,29 +12172,33 @@ c["Trigger Level 20 Shield Shatter when you Block"]={{[1]={flags=0,keywordFlags= 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",triggered=true}}},nil} c["Trigger Level 20 Starfall on Melee Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="TriggeredStarfall",triggered=true}},[2]={[1]={skillId="TriggeredStarfall",type="SkillId"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="triggerOnCrit",value=true}}}}},nil} c["Trigger Level 20 Storm Cascade when you Attack"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="StormCascadeTriggered",triggered=true}}},nil} -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="TriggeredSummonGhostOnKill",triggered=true}}},nil} +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="TriggeredSummonGhostOnKill",triggered=true}}},nil} c["Trigger Level 20 Summon Spectral Tiger on Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonSpectralTiger",triggered=true}},[2]={[1]={skillId="SummonSpectralTiger",type="SkillId"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="triggerOnCrit",value=true}}}}},nil} c["Trigger Level 20 Summon Void Spawn every 4 seconds"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonVoidSpawn",triggered=true}}},nil} +c["Trigger Level 20 Tawhoa's Chosen when you Attack with"]={nil,"Trigger Level 20 Tawhoa's Chosen when you Attack with "} c["Trigger Level 20 Tawhoa's Chosen when you Attack with a Non-Vaal Slam or Strike Skill near an Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="SummonMirageChieftain",triggered=true}}},nil} c["Trigger Level 20 Tears of Rot when Equipped"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="AnimosityUniqueSkill",triggered=true}}},nil} c["Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="Twister",triggered=true}}},nil} c["Trigger Level 20 Unseen Strike every 0.5 seconds while Phasing"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="UnseenStrike",triggered=true}}},nil} c["Trigger Level 20 Ward Shatter when your Ward Breaks"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=20,skillId="WardShatter",triggered=true}}},nil} -c["Trigger Level 25 Summon Phantasm Skill when you Consume a Corpse"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="TriggeredSummonGhostOnKill",triggered=true}}},nil} +c["Trigger Level 25 Summon Phantasm Skill when you Consume a corpse"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=25,skillId="TriggeredSummonGhostOnKill",triggered=true}}},nil} c["Trigger Level 30 Assassin's Mark on Attack Critical Strike against"]={nil,"Trigger Level 30 Assassin's Mark on Attack Critical Strike against "} c["Trigger Level 30 Assassin's Mark on Attack Critical Strike against a Rare or Unique Enemy and you have no Mark"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="AssassinsMark",triggered=true}},[2]={[1]={skillId="AssassinsMark",type="SkillId"},flags=0,keywordFlags=0,name="ExtraSkillMod",type="LIST",value={mod={flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="triggerOnCrit",value=true}}}}},nil} c["Trigger Level 30 Flame Dash when you use a Socketed Skill"]={nil,"Trigger Level 30 Flame Dash when you use a Socketed Skill "} c["Trigger Level 30 Flame Dash when you use a Socketed Skill 40% increased Cooldown Recovery Rate of Travel Skills"]={nil,"Trigger Level 30 Flame Dash when you use a Socketed Skill 40% increased Cooldown Recovery Rate of Travel Skills "} c["Trigger Level 30 Lightning Bolt when you deal a Critical Strike"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="LightningBolt",triggered=true}}},nil} -c["Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="PoachersMark",triggered=true}}},nil} +c["Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=30,skillId="PoachersMark",triggered=true}}},nil} c["Trigger Level 5 Gore Shockwave on Melee Hit if you have at least 150 Strength"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,skillId="GoreShockwave",triggered=true}}},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",triggered=true}}},nil} c["Trigger Level 5 Toxic Rain when you Attack with a Bow"]={{[1]={flags=0,keywordFlags=0,name="ExtraSkill",type="LIST",value={level=5,skillId="ToxicRain",triggered=true}}},nil} c["Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportUniqueCastCurseOnCurse"}}},nil} +c["Trigger Socketed Minion Spells on Kill with this Weapon"]={nil,"Trigger Socketed Minion Spells on Kill with this Weapon "} +c["Trigger Socketed Minion Spells on Kill with this Weapon Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses"]={nil,"Trigger Socketed Minion Spells on Kill with this Weapon Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses "} c["Trigger Socketed Spells when you Focus"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportTriggerSpellFromHelmet"}}},nil} c["Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportTriggerSpellFromHelmet"}}},nil} c["Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportTriggerBowSkillOnBowAttack"}}},nil} -c["Trigger a Socketed Bow Skill when you Cast a Spell while wielding a Bow"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportTriggerBowSkillOnBowAttack"}}},nil} +c["Trigger a Socketed Bow Skill when you Cast a Spell while"]={nil,"Trigger a Socketed Bow Skill when you Cast a Spell while "} +c["Trigger a Socketed Bow Skill when you Cast a Spell while wielding a Bow, with a 1 second Cooldown"]={nil,"Trigger a Socketed Bow Skill when you Cast a Spell while wielding a Bow, with a 1 second Cooldown "} c["Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportUniqueCosprisMaliceColdSpellsCastOnMeleeCriticalStrike"}}},nil} c["Trigger a Socketed Elemental Spell on Block, with a 0.25 second Cooldown"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportTriggerElementalSpellOnBlock"}}},nil} c["Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown"]={{[1]={[1]={slotName="{SlotName}",type="SocketedIn"},flags=0,keywordFlags=0,name="ExtraSupport",type="LIST",value={level=1,skillId="SupportUniqueMjolnerLightningSpellsCastOnHit"}}},nil} @@ -12432,15 +12304,17 @@ c["Used when Charges reach full Gain 3 Charges when you are Hit by an Enemy"]={n c["Used when Charges reach full Taunts nearby Enemies on use"]={nil,"Used when Charges reach full Taunts nearby Enemies on use "} c["Uses both hand slots"]={{[1]={[1]={slotName="Weapon 2",type="DisablesItem"},[2]={num=1,type="SlotNumber"},flags=0,keywordFlags=0,name="CanNotUseItem",type="Flag",value=1},[2]={[1]={slotName="Weapon 1",type="DisablesItem"},[2]={num=2,type="SlotNumber"},flags=0,keywordFlags=0,name="CanNotUseItem",type="Flag",value=1}},nil} c["Utility Flasks are Disabled"]={{[1]={flags=0,keywordFlags=0,name="UtilityFlasksDoNotApplyToPlayer",type="FLAG",value=true}},nil} -c["Utility Flasks gain 2 charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="UtilityFlaskChargesGenerated",type="BASE",value=0.66666666666667}},nil} -c["Utility Flasks gain 3 charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="UtilityFlaskChargesGenerated",type="BASE",value=1}},nil} -c["Vaal Attack Skills Cost Rage instead of requiring Souls to Use"]={{[1]={[1]={skillType=42,type="SkillType"},flags=1,keywordFlags=0,name="CostRageInsteadOfSouls",type="FLAG",value=true}},nil} +c["Utility Flasks gain 2 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="UtilityFlaskChargesGenerated",type="BASE",value=0.66666666666667}},nil} +c["Utility Flasks gain 3 Charges every 3 seconds"]={{[1]={flags=0,keywordFlags=0,name="UtilityFlaskChargesGenerated",type="BASE",value=1}},nil} +c["Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls"]={{[1]={[1]={skillType=42,type="SkillType"},flags=1,keywordFlags=0,name="CostRageInsteadOfSouls",type="FLAG",value=true}},nil} c["Vaal Pact"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Vaal Pact"}},nil} c["Vaal Skills can store +1 Use"]={{[1]={[1]={skillType=42,type="SkillType"},flags=0,keywordFlags=0,name="AdditionalUses",type="BASE",value=1}},nil} c["Vaal Skills deal 1% more Damage per Soul Required"]={{[1]={[1]={stat="SoulCost",type="PerStat"},flags=0,keywordFlags=512,name="Damage",type="MORE",value=1}},nil} c["Vaal Skills deal 40% more Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=512,name="Damage",type="MORE",value=40}},nil} +c["Vaal Skills have 18% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=512,name="Duration",type="INC",value=18}},nil} c["Vaal Skills have 20% chance to regain consumed Souls when used"]={{}," to regain consumed Souls when used "} c["Vaal Skills have 20% chance to regain consumed Souls when used Corrupted"]={{}," to regain consumed Souls when used Corrupted "} +c["Vaal Skills have 20% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=512,name="Duration",type="INC",value=20}},nil} c["Vaal Skills have 50% increased Area of Effect"]={{[1]={flags=0,keywordFlags=512,name="AreaOfEffect",type="INC",value=50}},nil} c["Vaal Skills have 50% increased Skill Effect Duration"]={{[1]={flags=0,keywordFlags=512,name="Duration",type="INC",value=50}},nil} c["Vaal Skills require 30% less Souls per Use"]={{[1]={flags=0,keywordFlags=512,name="SoulCost",type="MORE",value=-30}},nil} @@ -12457,13 +12331,13 @@ c["Wand Attacks deal 12% increased Damage with Ailments"]={{[1]={flags=8390656,k c["Wand Attacks deal 12% increased Damage with Hits and Ailments"]={{[1]={flags=8388608,keywordFlags=786432,name="Damage",type="INC",value=12}},nil} c["Wand Attacks deal 16% increased Damage with Hits and Ailments"]={{[1]={flags=8388608,keywordFlags=786432,name="Damage",type="INC",value=16}},nil} c["Wand Attacks fire an additional Projectile"]={{[1]={flags=8388608,keywordFlags=0,name="ProjectileCount",type="BASE",value=1}},nil} +c["Warcries Cost +15% of Life"]={{[1]={[1]={floor=true,percent=15,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeCostBase",type="BASE",value=1}},nil} c["Warcries Debilitate Enemies for 1 second"]={{[1]={flags=0,keywordFlags=0,name="DebilitateChance",type="BASE",value=100}},nil} c["Warcries Exert 1 additional Attack"]={{[1]={flags=0,keywordFlags=0,name="ExtraExertedAttacks",type="BASE",value=1}},nil} c["Warcries Exert 2 additional Attacks"]={{[1]={flags=0,keywordFlags=0,name="ExtraExertedAttacks",type="BASE",value=2}},nil} c["Warcries Exert twice as many Attacks"]={{[1]={flags=0,keywordFlags=0,name="ExtraExertedAttacks",type="MORE",value=100}},nil} c["Warcries Knock Back and Interrupt Enemies in a smaller Area"]={nil,"Warcries Knock Back and Interrupt Enemies in a smaller Area "} c["Warcries cannot Exert Travel Skills"]={nil,"Warcries cannot Exert Travel Skills "} -c["Warcries cost +15% of Life"]={{[1]={[1]={floor=true,percent=15,stat="Life",type="PercentStat"},flags=0,keywordFlags=0,name="LifeCostBase",type="BASE",value=1}},nil} c["Warcries grant 1 Rage per 5 Enemy Power, up to 5"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Warcries grant 5 Rage per 5 Power if you have less than 25 Rage"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} c["Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%"]={{[1]={[1]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}}},[2]={[1]={div=5,globalLimit=50,globalLimitKey="Brinerot Flag",stat="WarcryPower",type="PerStat"},[2]={type="Condition",var="UsedWarcryRecently"},flags=0,keywordFlags=0,name="ArcaneSurgeEffect",type="INC",value=10}},nil} @@ -12480,24 +12354,24 @@ c["Warcry Skills have 40% increased Area of Effect"]={{[1]={[1]={skillType=73,ty c["Warcry Skills' Cooldown Time is 4 seconds"]={{[1]={flags=0,keywordFlags=4,name="CooldownRecovery",type="OVERRIDE",value=4}},nil} c["Ward does not Break during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="WardNotBreak",type="FLAG",value=true}},nil} c["Ward has a 60% chance to not Break"]={nil,"Ward has a 60% chance to not Break "} -c["Warlord's Call"]={nil,"Warlord's Call "} -c["Warlord's Call Call to Arms"]={nil,"Warlord's Call Call to Arms "} c["Weapons you Animate create an additional copy"]={nil,"Weapons you Animate create an additional copy "} c["When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanHaveSoulEater",type="FLAG",value=true}},nil} c["When Hit during effect, 25% of Life loss from Damage taken occurs over 4 seconds instead"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="LifeLossPrevented",type="BASE",value=25}},nil} -c["When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased until Hit again"]={{[1]={flags=0,keywordFlags=0,name="Condition:HaveGamblesprint",type="FLAG",value=true}},nil} +c["When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again"]={nil,"a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again "} c["When Hit, lose a Ghost Shroud to Recover Energy Shield equal to 3% of your Evasion Rating"]={nil,"lose a Ghost Shroud to Recover Energy Shield equal to 3% of your Evasion Rating "} c["When Hit, lose a Ghost Shroud to Recover Energy Shield equal to 3% of your Evasion Rating Limited to 1 Keystone Tattoo"]={nil,"lose a Ghost Shroud to Recover Energy Shield equal to 3% of your Evasion Rating Limited to 1 Keystone Tattoo "} c["When a nearby Minion dies, gain Rotten Bulwark equal to 9% of its maximum Life"]={nil,"When a nearby Minion dies, gain Rotten Bulwark equal to 9% of its maximum Life "} c["When a nearby Minion dies, gain Rotten Bulwark equal to 9% of its maximum Life Minions gain 83% of Physical Damage as Extra Chaos Damage"]={nil,"When a nearby Minion dies, gain Rotten Bulwark equal to 9% of its maximum Life Minions gain 83% of Physical Damage as Extra Chaos Damage "} c["When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:HaveTrickstersSmile",type="FLAG",value=true}},nil} c["When you Attack, take 18% of Life as Physical Damage for each Warcry Exerting the Attack"]={{[1]={flags=0,keywordFlags=0,name="EchoesOfCreationSelfDamage",type="LIST",value={damageType="physical",dmgMult=18}}},nil} +c["When you Attack, take 20% of Life as Physical Damage for"]={nil,"When you Attack, take 20% of Life as Physical Damage for "} c["When you Attack, take 20% of Life as Physical Damage for each Warcry Exerting the Attack"]={{[1]={flags=0,keywordFlags=0,name="EchoesOfCreationSelfDamage",type="LIST",value={damageType="physical",dmgMult=20}}},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["When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage equal to 25% of Sacrificed Mana for 4 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:HaveManaStorm",type="FLAG",value=true},[2]={[1]={percent=25,stat="ManaUnreserved",type="PercentStat"},[2]={type="Condition",var="SacrificeManaForLightning"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} c["When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage equal to 50% of Sacrificed Mana for 4 seconds"]={{[1]={flags=0,keywordFlags=0,name="Condition:HaveManaStorm",type="FLAG",value=true},[2]={[1]={percent=50,stat="ManaUnreserved",type="PercentStat"},[2]={type="Condition",var="SacrificeManaForLightning"},flags=0,keywordFlags=0,name="LightningMax",type="BASE",value=1}},nil} c["When you Kill a Rare monster, you gain its Modifiers for 60 seconds"]={nil,"When you Kill a Rare monster, you gain its Modifiers for 60 seconds "} c["When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy"]={nil,"When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy "} +c["When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy"]={nil,"When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy "} c["When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to"]={nil,"When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to "} c["When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to Curses for remaining Hex Duration"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanBeCurseImmune",type="FLAG",value=true}},nil} c["When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy"]={nil,"When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy "} @@ -12517,7 +12391,7 @@ c["When your Hits Impale Enemies, also Impale other Enemies near them Inflict 5 c["When your Traps Trigger, your nearby Traps also Trigger"]={nil,"When your Traps Trigger, your nearby Traps also Trigger "} c["While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={stat="EnergyShield",threshold=1,type="StatThreshold"},flags=0,keywordFlags=0,name="IgnoreElementalResistances",type="FLAG",value=true}}}},nil} c["While affected by Glorious Madness, inflict Mania on nearby Enemies every second"]={{[1]={[1]={type="Condition",var="AffectedByGloriousMadness"},flags=0,keywordFlags=0,name="Condition:CanInflictMania",type="FLAG",value=true},[2]={[1]={type="Condition",var="AffectedByGloriousMadness"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:AfflictedByMania",type="FLAG",value=true}}}},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["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["While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level"]={{[1]={[1]={percent=0.5,stat="Life",type="PercentStat"},[2]={type="Multiplier",var="Level"},[3]={type="Condition",var="HerEmbrace"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=1},[2]={[1]={percent=0.5,stat="EnergyShield",type="PercentStat"},[2]={type="Multiplier",var="Level"},[3]={type="Condition",var="HerEmbrace"},flags=0,keywordFlags=0,name="FireDegen",type="BASE",value=1}},nil} c["While not on Full Life, Sacrifice 20% of Mana per Second to Recover that much Life"]={{[1]={[1]={neg=true,type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="ManaDegenPercent",type="BASE",value=20},[2]={[1]={percent=20,stat="Mana",type="PercentStat"},[2]={neg=true,type="Condition",var="FullLife"},flags=0,keywordFlags=0,name="LifeRecovery",type="BASE",value=1}},nil} c["While on Low Life, Life Flasks gain 5 Charges every 3 seconds"]={{[1]={[1]={type="Condition",var="LowLife"},flags=0,keywordFlags=0,name="LifeFlaskChargesGenerated",type="BASE",value=1.6666666666667}},nil} @@ -12531,30 +12405,30 @@ c["Wintertide Brand has 25% increased Chill Effect"]={{[1]={[1]={includeTransfig c["Wintertide Brand has 30% increased Chill Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Wintertide Brand",type="SkillName"},flags=0,keywordFlags=0,name="EnemyChillEffect",type="INC",value=30}},nil} c["Witch: 0.5% of Mana Regenerated per second"]={{[1]={[1]={type="Condition",var="ConnectedToWitchStart"},flags=0,keywordFlags=0,name="ManaRegenPercent",type="BASE",value=0.5}},nil} c["Witch: 20% increased Skill Effect Duration"]={{[1]={[1]={type="Condition",var="ConnectedToWitchStart"},flags=0,keywordFlags=0,name="Duration",type="INC",value=20}},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["With 1000 or more Strength 2% of Damage dealt by your Zombies is Leeched to you as Life 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 With 1000 or more Strength 2% of Damage dealt by your Zombies is Leeched to you as Life "} c["With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds"]={nil,"With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds "} 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["With 40 Intelligence in Radius, Glacial Cascade has an additional Burst"]={nil,"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst "} -c["With 40 total Dexterity and Strength in Radius, Prismatic Skills Strike cannot choose Lightning"]={nil,"With 40 total Dexterity and Strength in Radius, Prismatic Skills Strike cannot choose Lightning "} -c["With 40 total Dexterity and Strength in Radius, Prismatic Skills Strike cannot choose Lightning With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage"]={nil,"With 40 total Dexterity and Strength in Radius, Prismatic Skills Strike cannot choose Lightning With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage "} +c["With 40 Intelligence in Radius, Glacial Cascade has an additional Burst With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage"]={nil,"With 40 Intelligence in Radius, Glacial Cascade has an additional Burst With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage "} +c["With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning"]={nil,"With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning "} c["With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire"]={nil,"With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire "} -c["With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage"]={nil,"With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage "} c["With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold"]={nil,"With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold "} -c["With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage"]={nil,"With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage "} -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["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["With 5 Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield"]={nil,"With 5 Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield "} +c["With 5 Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield Corrupted"]={nil,"With 5 Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield Corrupted "} 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["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["With a Ghastly Eye Jewel Socketed, Minions have 25% chance to gain Unholy Might on Hit with Spells"]={{[1]={[1]={type="Condition",var="HaveGhastlyEyeJewelIn{SlotName}"},flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="HitSpellRecently"},flags=0,keywordFlags=0,name="Condition:UnholyMight",type="FLAG",value=true}}}},nil} c["With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells"]={{[1]={[1]={type="Condition",var="HitSpellRecently"},[2]={type="Condition",var="HaveHypnoticEyeJewelIn{SlotName}"},flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil} c["With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"]={{[1]={[1]={type="Condition",var="HaveMurderousEyeJewelIn{SlotName}"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=0,keywordFlags=0,name="Condition:Intimidated",type="FLAG",value=true}}}},nil} -c["With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second"]={{[1]={[1]={type="Condition",var="HaveMurderousEyeJewelIn{SlotName}"},flags=0,keywordFlags=0,name="Condition:CanGainRage",type="FLAG",value=true}},nil} +c["With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit"]={nil,"With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit "} +c["With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify"]={nil,"With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify "} c["With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify"]={nil,"With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify "} -c["With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second"]={nil,"With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second "} c["With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill"]={nil,"With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill "} +c["With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks"]={nil,"With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks "} c["With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks"]={{[1]={[1]={type="Condition",var="HaveSearchingEyeJewelIn{SlotName}"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Condition:Blinded",type="FLAG",value=true}}}},nil} c["With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks"]={{[1]={[1]={type="Condition",var="HaveSearchingEyeJewelIn{SlotName}"},flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={flags=1,keywordFlags=0,name="Condition:Maimed",type="FLAG",value=true}}}},nil} +c["With at least 1000 Strength, 2% of Damage dealt by your Raised Zombies is Leeched to you as Life"]={nil,"With at least 1000 Strength, 2% of Damage dealt by your Raised Zombies is Leeched to you as Life "} +c["With at least 1000 Strength, 20% of Damage dealt by your Raised Zombies is Leeched to you as Life"]={nil,"With at least 1000 Strength, 20% of Damage dealt by your Raised Zombies is Leeched to you as Life "} +c["With at least 1000 Strength, 20% of Damage dealt by your Raised Zombies is Leeched to you as Life With at least 1000 Strength, 2% of Damage dealt by your Raised Zombies is Leeched to you as Life"]={nil,"With at least 1000 Strength, 20% of Damage dealt by your Raised Zombies is Leeched to you as Life With at least 1000 Strength, 2% of Damage dealt by your Raised Zombies is Leeched to you as Life "} c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 12 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 12 Ranged Weapons "} c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 12 Ranged Weapons With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 12 Ranged Weapons With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons "} c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons"]={nil,"With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons "} @@ -12563,68 +12437,60 @@ c["With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 4 Rang 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["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["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["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["With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy Ignited Enemies Killed by your Hits are destroyed"]={nil,"With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy Ignited Enemies Killed by your Hits are destroyed "} -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["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["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["With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for"]={nil,"With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for "} -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["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["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["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["With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage "} c["With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage to surrounding targets while wielding a Mace"]={nil,"With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage to surrounding targets while wielding a Mace "} c["With at least 40 Dexterity in Radius, Dual Strike has +30% to Critical Strike"]={nil,"With at least 40 Dexterity in Radius, Dual Strike has +30% to Critical Strike "} c["With at least 40 Dexterity in Radius, Dual Strike has 15% increased Attack"]={nil,"With at least 40 Dexterity in Radius, Dual Strike has 15% increased Attack "} c["With at least 40 Dexterity in Radius, Dual Strike has 30% increased"]={nil,"With at least 40 Dexterity in Radius, Dual Strike has 30% increased "} 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["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["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["With at least 40 Dexterity in Radius, Galvanic Arrow deals"]={nil,"With at least 40 Dexterity in Radius, Galvanic Arrow deals "} -c["With at least 40 Dexterity in Radius, Galvanic Arrow has"]={nil,"With at least 40 Dexterity in Radius, Galvanic Arrow has "} +c["With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle"]={nil,"With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle "} +c["With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle 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 circle With at least 40 Dexterity in Radius, Ethereal Knives fires 10 additional Projectiles "} c["With at least 40 Dexterity in Radius, Melee Damage"]={nil,"With at least 40 Dexterity in Radius, Melee Damage "} -c["With at least 40 Dexterity in Radius, Shrapnel Shot's"]={nil,"With at least 40 Dexterity in Radius, Shrapnel Shot's "} 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["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["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["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["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["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["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["With at least 40 Intelligence in Radius, 2 additional Spark Projectiles"]={nil,"With at least 40 Intelligence in Radius, 2 additional Spark Projectiles "} +c["With at least 40 Intelligence in Radius, 2 additional Spark Projectiles With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle"]={nil,"With at least 40 Intelligence in Radius, 2 additional Spark Projectiles With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle "} 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, 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["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["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["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["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["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["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["With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area"]={nil,"With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area "} +c["With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area With at least 40 Intelligence in Radius, Cold Snap's 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 its Area With at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges "} +c["With at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges"]={nil,"With at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges "} c["With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect"]={nil,"With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect "} -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["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["With at least 40 Intelligence in Radius, Raised"]={nil,"With at least 40 Intelligence in Radius, Raised "} c["With at least 40 Intelligence in Radius, Raised Zombies' Slam"]={nil,"With at least 40 Intelligence in Radius, Raised Zombies' Slam "} +c["With at least 40 Intelligence in Radius, Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Rate"]={nil,"With at least 40 Intelligence in Radius, Raised Zombies' Slam Attack has 100% increased Cooldown Recovery Rate "} c["With at least 40 Intelligence in Radius, Rolling Magma"]={nil,"With at least 40 Intelligence in Radius, Rolling Magma "} -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["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["With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons "} -c["With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons Skeletons gain Added Chaos Damage equal to 30% of Maximum Energy Shield on your Equipped Shield"]={nil,"With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons Skeletons gain Added Chaos Damage equal to 30% of Maximum Energy Shield on your Equipped Shield "} -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["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["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["With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons"]={nil,"With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons "} +c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle "} +c["With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle 15% reduced Spark Duration"]={nil,"With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle 15% reduced Spark Duration "} +c["With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages"]={nil,"With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages "} +c["With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages Skeletons gain Added Chaos Damage equal to 30% of Maximum Energy Shield on your Equipped Shield"]={nil,"With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages Skeletons gain Added Chaos Damage equal to 30% of Maximum Energy Shield on your Equipped Shield "} +c["With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 3 Skeleton Mages"]={nil,"With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 3 Skeleton Mages "} +c["With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 3 Skeleton Mages With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 5 Skeleton Mages"]={nil,"With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 3 Skeleton Mages With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 5 Skeleton Mages "} +c["With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 5 Skeleton Mages"]={nil,"With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 5 Skeleton Mages "} +c["With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 5 Skeleton Mages With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages"]={nil,"With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 5 Skeleton Mages With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages "} +c["With at least 40 Strength in Radius, 20% increased"]={nil,"With at least 40 Strength in Radius, 20% increased "} 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["With at least 40 Strength in Radius, 25% of Glacial"]={nil,"With at least 40 Strength in Radius, 25% of Glacial "} c["With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal 60% more Damage with Ignite"]={nil,"With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal 60% more Damage with Ignite "} +c["With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby"]={nil,"With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby "} c["With at least 40 Strength in Radius, Combust is Disabled"]={nil,"With at least 40 Strength in Radius, Combust is Disabled "} c["With at least 40 Strength in Radius, Combust is Disabled With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal 60% more Damage with Ignite"]={nil,"With at least 40 Strength in Radius, Combust is Disabled With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal 60% more Damage with Ignite "} c["With at least 40 Strength in Radius, Glacial Hammer deals"]={nil,"With at least 40 Strength in Radius, Glacial Hammer deals "} 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["With at least 40 Strength in Radius, Ground Slam"]={nil,"With at least 40 Strength in Radius, Ground Slam "} 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["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["With at least 40 Strength in Radius, Ground Slam has a 25% chance"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 25% chance "} 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["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["With at least 40 Strength in Radius, Ground Slam has a 35% chance"]={nil,"With at least 40 Strength in Radius, Ground Slam has a 35% chance "} 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["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["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 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 at least 40 Strength in Radius, Heavy Strike has a"]={nil,"With at least 40 Strength in Radius, Heavy Strike has a "} c["With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 12 seconds"]={nil,"With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 12 seconds "} c["With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 12 seconds With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 8 seconds"]={nil,"With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 12 seconds With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 8 seconds "} c["With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 3 seconds"]={nil,"With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 3 seconds "} @@ -12643,8 +12509,6 @@ c["Wrath has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTran c["Wrath has 60% increased Aura Effect"]={{[1]={[1]={includeTransfigured=true,skillName="Wrath",type="SkillName"},flags=0,keywordFlags=0,name="AuraEffect",type="INC",value=60}},nil} c["Wrath has no Reservation"]={{[1]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Wrath",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} c["Writhing Worms are destroyed when Hit"]={nil,"Writhing Worms are destroyed when Hit "} -c["You Cannot Be Shocked While Chilled"]={{[1]={[1]={type="Condition",var="Chilled"},flags=0,keywordFlags=0,name="ShockImmune",type="FLAG",value=true}},nil} -c["You Cannot Be Shocked While Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="ShockImmune",type="FLAG",value=true}},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["You and Allies near your Banner Regenerate 0.1% of Life per second for each Valour consumed for that Banner"]={{[1]={flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={[1]={type="Condition",var="AffectedByPlacedBanner"},[2]={type="Multiplier",var="BannerValour"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.1}}}},nil} c["You and Enemies in your Presence count as moving while affected by Elemental Ailments"]={{[1]={flags=0,keywordFlags=0,name="EnemyModifier",type="LIST",value={mod={[1]={type="Condition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited",[5]="Scorched",[6]="Brittle",[7]="Sapped"}},flags=0,keywordFlags=0,name="Condition:Moving",type="FLAG",value=true}}},[2]={[1]={type="Condition",varList={[1]="Frozen",[2]="Chilled",[3]="Shocked",[4]="Ignited",[5]="Scorched",[6]="Brittle",[7]="Sapped"}},flags=0,keywordFlags=0,name="Condition:Moving",type="FLAG",value=true}},nil} @@ -12665,13 +12529,13 @@ c["You and nearby allies gain 50% increased Damage"]={{[1]={flags=0,keywordFlags c["You and your Totems Regenerate 0.5% of Life per second for each Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",type="PerStat"},flags=0,keywordFlags=0,name="LifeRegenPercent",type="BASE",value=0.5},[2]={flags=0,keywordFlags=16384,name="LifeRegenPercent",type="BASE",value=0.5}},nil} c["You and your Totems Regenerate 1% of Life per second for each Summoned Totem"]={{[1]={[1]={stat="TotemsSummoned",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["You are Blind"]={{[1]={[1]={neg=true,type="Condition",var="CannotBeBlinded"},flags=0,keywordFlags=0,name="Condition:Blinded",type="FLAG",value=true}},nil} +c["You are Chilled when you are Poisoned"]={{[1]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="Condition:Chilled",type="FLAG",value=true}},nil} c["You are Chilled while you are Bleeding"]={{[1]={[1]={type="Condition",var="Bleeding"},flags=0,keywordFlags=0,name="Condition:Chilled",type="FLAG",value=true}},nil} -c["You are Chilled while you are Poisoned"]={{[1]={[1]={type="Condition",var="Poisoned"},flags=0,keywordFlags=0,name="Condition:Chilled",type="FLAG",value=true}},nil} c["You are Crushed"]={{[1]={flags=0,keywordFlags=0,name="Condition:Crushed",type="FLAG",value=true}},nil} c["You are Cursed with Vulnerability"]={{[1]={flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={applyToPlayer=true,level=1,skillId="Vulnerability"}}},nil} c["You are Hexproof if you have a Magic Ring in right slot"]={{[1]={[1]={type="Condition",var="MagicItemInRing 2"},flags=0,keywordFlags=0,name="CurseEffectOnSelf",type="MORE",value=-100}},nil} c["You are Shocked during Effect, causing 50% increased Damage taken"]={nil,"Shocked , causing 50% increased Damage taken "} -c["You are Shocked during Effect, causing 50% increased Damage taken Damage Penetrates 10% Lightning Resistance during Effect"]={nil,"Shocked , causing 50% increased Damage taken Damage Penetrates 10% Lightning Resistance "} +c["You are Shocked during Effect, causing 50% increased Damage taken 20% of Physical Damage Converted to Lightning during Effect"]={nil,"Shocked , causing 50% increased Damage taken 20% of Physical Damage Converted to Lightning "} c["You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds"]={{[1]={[1]={type="Condition",var="SelfCastVulnerability"},[2]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="SelfBleedingEffect",type="MORE",value=-100}},nil} c["You are Unaffected by Bleeding while Leeching"]={{[1]={[1]={type="Condition",var="Leeching"},flags=0,keywordFlags=0,name="SelfBleedEffect",type="MORE",value=-100}},nil} c["You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds"]={{[1]={[1]={type="Condition",var="SelfCastFrostbite"},[2]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="SelfFreezeEffect",type="MORE",value=-100}},nil} @@ -12679,7 +12543,6 @@ c["You are Unaffected by Ignite if you've cast Flammability in the past 10 secon c["You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds"]={{[1]={[1]={type="Condition",var="SelfCastConductivity"},[2]={effectType="Global",type="GlobalEffect",unscalable=true},flags=0,keywordFlags=0,name="SelfShockEffect",type="MORE",value=-100}},nil} c["You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently"]={{[1]={[1]={neg=true,type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="MaxBlockIfNotBlockedRecently",type="FLAG",value=true}},nil} c["You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently"]={{[1]={[1]={neg=true,type="Condition",var="BlockedRecently"},flags=0,keywordFlags=0,name="MaxSpellBlockIfNotBlockedRecently",type="FLAG",value=true}},nil} -c["You are cursed with Vulnerability"]={{[1]={flags=0,keywordFlags=0,name="ExtraCurse",type="LIST",value={applyToPlayer=true,level=1,skillId="Vulnerability"}}},nil} c["You can Cast 2 additional Brands"]={{[1]={flags=0,keywordFlags=0,name="ActiveBrandLimit",type="BASE",value=2}},nil} c["You can Cast an additional Brand"]={{[1]={flags=0,keywordFlags=0,name="ActiveBrandLimit",type="BASE",value=1}},nil} c["You can apply an additional Curse"]={{[1]={flags=0,keywordFlags=0,name="EnemyCurseLimit",type="BASE",value=1}},nil} @@ -12691,6 +12554,7 @@ c["You can apply one fewer Curse"]={{[1]={flags=0,keywordFlags=0,name="EnemyCurs c["You can apply up to 50 Shocks to each Enemy"]={{[1]={flags=0,keywordFlags=0,name="ShockCanStack",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ShockStacksMax",type="OVERRIDE",value=50}},nil} c["You can be Touched by Tormented Spirits"]={nil,"You can be Touched by Tormented Spirits "} c["You can catch Exotic Fish"]={nil,"You can catch Exotic Fish "} +c["You can catch Exotic Fish 40% reduced Quantity of Fish Caught"]={nil,"You can catch Exotic Fish 40% reduced Quantity of Fish Caught "} c["You can have an Offering of each type"]={nil,"You can have an Offering of each type "} 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["You can have an additional Brand Attached to an Enemy"]={{[1]={flags=0,keywordFlags=0,name="BrandsAttachedLimit",type="BASE",value=1}},nil} @@ -12699,7 +12563,7 @@ c["You can have two Offerings of different types"]={nil,"You can have two Offeri c["You can have two Offerings of different types 35% chance to Avoid Elemental Ailments"]={nil,"You can have two Offerings of different types 35% chance to Avoid Elemental Ailments "} c["You can inflict +1 Hallowing Flame on Enemies"]={{[1]={flags=0,keywordFlags=0,name="Multiplier:HallowingFlameMax",type="BASE",value=1}},nil} c["You can inflict Bleeding on an Enemy up to 8 times"]={{[1]={flags=0,keywordFlags=0,name="BleedStacksMax",type="OVERRIDE",value=8},[2]={flags=0,keywordFlags=0,name="Condition:HaveCrimsonDance",type="FLAG",value=true}},nil} -c["You can inflict an additional Ignite on an Enemy"]={{[1]={flags=0,keywordFlags=0,name="IgniteCanStack",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="IgniteStacks",type="BASE",value=1}},nil} +c["You can inflict an additional Ignite on each Enemy"]={{[1]={flags=0,keywordFlags=0,name="IgniteCanStack",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="IgniteStacks",type="BASE",value=1}},nil} c["You can inflict an additional Scorch on each Enemy"]={{[1]={flags=0,keywordFlags=0,name="ScorchCanStack",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ScorchStacksMax",type="BASE",value=1}},nil} c["You can only Socket Corrupted Gems in this item"]={nil,"You can only Socket Corrupted Gems in this item "} c["You can only Socket Corrupted Gems in this item Acrobatics"]={nil,"You can only Socket Corrupted Gems in this item Acrobatics "} @@ -12734,6 +12598,7 @@ c["You cannot be Shocked for 3 seconds after being Shocked You grant 6 Frenzy Ch c["You cannot be Shocked if you've been Shocked Recently"]={nil,"You cannot be Shocked if you've been Shocked Recently "} c["You cannot be Shocked if you've been Shocked Recently 30% reduced Effect of Shock on you"]={nil,"You cannot be Shocked if you've been Shocked Recently 30% reduced Effect of Shock on you "} c["You cannot be Shocked if you've been Shocked Recently 30% reduced Effect of Shock on you Unaffected by Shocked Ground"]={nil,"You cannot be Shocked if you've been Shocked Recently 30% reduced Effect of Shock on you Unaffected by Shocked Ground "} +c["You cannot be Shocked while Frozen"]={{[1]={[1]={type="Condition",var="Frozen"},flags=0,keywordFlags=0,name="ShockImmune",type="FLAG",value=true}},nil} c["You cannot be Shocked while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="ShockImmune",type="FLAG",value=true}},nil} c["You cannot be Stunned while at maximum Endurance Charges"]={{[1]={[1]={stat="EnduranceCharges",thresholdStat="EnduranceChargesMax",type="StatThreshold"},flags=0,keywordFlags=0,name="StunImmune",type="FLAG",value=true}},nil} c["You cannot gain Rage during Soul Gain Prevention"]={{[1]={[1]={type="Condition",var="SoulGainPrevention"},flags=0,keywordFlags=0,name="RageRegen",type="MORE",value=-100}},nil} @@ -12754,9 +12619,9 @@ c["You gain 3 Grasping Vines when you take a Critical Strike Nearby stationary E c["You gain Added Cold Damage instead of Added Damage of other types if Dexterity exceeds both other Attributes"]={{[1]={[1]={type="Condition",var="DexSingleHighestAttribute"},flags=0,keywordFlags=0,name="AllAddedDamageAsCold",type="FLAG",value=true}},nil} c["You gain Added Lighting Damage instead of Added Damage of other types if Intelligence exceeds both other Attributes"]={{[1]={[1]={type="Condition",var="IntSingleHighestAttribute"},flags=0,keywordFlags=0,name="AllAddedDamageAsLightning",type="FLAG",value=true}},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=75},[2]={[1]={type="Condition",var="Divinity"},flags=0,keywordFlags=0,name="ElementalDamageTaken",type="MORE",value=-25}},nil} +c["You gain Onslaught for 1 second per Endurance Charge when Hit"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," for 1 second when Hit "} +c["You gain Onslaught for 1 second per Endurance Charge when Hit You gain Onslaught for 2 seconds per Endurance Charge when Hit"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," for 1 second when Hit You gain per Endurance Charge when Hit "} c["You gain Onslaught for 1 seconds on Killing Taunted Enemies"]={{[1]={[1]={type="Condition",var="KilledTauntedEnemyRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} -c["You gain Onslaught for 1 seconds per Endurance Charge when Hit"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," when Hit "} -c["You gain Onslaught for 1 seconds per Endurance Charge when Hit You gain Onslaught for 2 seconds per Endurance Charge when Hit"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," when Hit You gain for 2 seconds per Endurance Charge when Hit "} c["You gain Onslaught for 2 seconds on Critical Strike"]={{[1]={[1]={type="Condition",var="CriticalStrike"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} c["You gain Onslaught for 2 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} c["You gain Onslaught for 2 seconds on Killing Taunted Enemies"]={{[1]={[1]={type="Condition",var="KilledTauntedEnemyRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},nil} @@ -12772,12 +12637,12 @@ c["You gain Onslaught for 4 seconds on Kill while affected by Haste"]={{[1]={[1] c["You gain Onslaught for 5 seconds on using a Vaal Skill"]={{[1]={flags=0,keywordFlags=512,name="Condition:Onslaught",type="FLAG",value=true}}," on using a "} c["You gain Onslaught for 5 seconds on using a Vaal Skill You gain Onslaught for 20 seconds on using a Vaal Skill"]={{[1]={flags=0,keywordFlags=512,name="Condition:Onslaught",type="FLAG",value=true}}," on using a You gain on using a Vaal Skill "} c["You gain Onslaught for 5 seconds per Endurance Charge when Hit"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," when Hit "} -c["You gain Onslaught for 5 seconds per Endurance Charge when Hit 100% increased Onslaught Effect"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," when Hit 100% increased "} +c["You gain Onslaught for 5 seconds per Endurance Charge when Hit 100% increased Effect of Onslaught on you"]={{[1]={[1]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}}," when Hit 100% increased "} c["You gain Phasing for 10 seconds on using a Vaal Skill"]={{[1]={flags=0,keywordFlags=512,name="Condition:Phasing",type="FLAG",value=true}}," on using a "} c["You gain Phasing for 3 seconds on using a Vaal Skill"]={{[1]={flags=0,keywordFlags=512,name="Condition:Phasing",type="FLAG",value=true}}," on using a "} c["You gain Phasing for 3 seconds on using a Vaal Skill You gain Phasing for 10 seconds on using a Vaal Skill"]={{[1]={flags=0,keywordFlags=512,name="Condition:Phasing",type="FLAG",value=true}}," on using a You gain on using a Vaal Skill "} c["You gain an Endurance Charge on Kill"]={nil,"an Endurance Charge "} -c["You gain an Endurance Charge on Kill You gain Onslaught for 1 seconds per Endurance Charge when Hit"]={{[1]={[1]={type="Condition",var="KilledRecently"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},"an Endurance Charge You gain per Endurance Charge when Hit "} +c["You gain an Endurance Charge on Kill You gain Onslaught for 1 second per Endurance Charge when Hit"]={{[1]={[1]={type="Condition",var="KilledRecently"},[2]={type="Multiplier",var="EnduranceCharge"},flags=0,keywordFlags=0,name="Condition:Onslaught",type="FLAG",value=true}},"an Endurance Charge You gain for 1 second when Hit "} c["You grant 6 Frenzy Charges to allies on Death"]={nil,"You grant 6 Frenzy Charges to allies on Death "} c["You have Acceleration Shrine Buff while affected by no Flasks"]={{[1]={[1]={neg=true,type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="Condition:AccelerationShrine",type="FLAG",value=true}},nil} c["You have Arcane Surge during Effect of any Mana Flask"]={{[1]={[1]={type="Condition",var="UsingManaFlask"},flags=0,keywordFlags=0,name="Condition:ArcaneSurge",type="FLAG",value=true}},nil} @@ -12854,8 +12719,8 @@ c["You take 20% reduced Extra Damage from Critical Strikes"]={{[1]={flags=0,keyw c["You take 30% reduced Extra Damage from Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=30}},nil} c["You take 40% reduced Extra Damage from Critical Strikes by Cursed Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Cursed"},flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=40}},nil} c["You take 40% reduced Extra Damage from Critical Strikes by Poisoned Enemies"]={{[1]={[1]={actor="enemy",type="ActorCondition",var="Poisoned"},flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=40}},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["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["You take 450 Chaos Damage per second for 0 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 0 seconds on Kill "} +c["You take 450 Chaos Damage per second for 0 seconds on Kill You take 450 Chaos Damage per second for 3 seconds on Kill"]={nil,"You take 450 Chaos Damage per second for 0 seconds on Kill You take 450 Chaos Damage per second for 3 seconds on Kill "} c["You take 450 Chaos Damage per second for 3 seconds on Kill"]={{[1]={[1]={type="Condition",var="KilledLast3Seconds"},flags=0,keywordFlags=0,name="ChaosDegen",type="BASE",value=450}},nil} c["You take 5% reduced Extra Damage from Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="ReduceCritExtraDamage",type="BASE",value=5}},nil} c["You take 50% of your maximum Life as Chaos Damage on use"]={nil,"You take 50% of your maximum Life as Chaos Damage on use "} @@ -12893,7 +12758,6 @@ c["Your Critical Strikes Knock Back Shocked Enemies"]={nil,"Your Critical Strike 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["Your Critical Strikes do not deal extra Damage"]={{[1]={flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil} c["Your Critical Strikes do not deal extra Damage during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="NoCritMultiplier",type="FLAG",value=true}},nil} -c["Your Critical Strikes have Culling Strike"]={{[1]={flags=0,keywordFlags=0,name="CriticalCullPercent",type="MAX",value=10}},nil} c["Your Critical Strikes have a 5% chance to deal Double Damage"]={{[1]={flags=0,keywordFlags=0,name="DoubleDamageChanceOnCrit",type="BASE",value=5}},nil} c["Your Curse Limit is equal to your maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="CurseLimitIsMaximumPowerCharges",type="FLAG",value=true}},nil} c["Your Curses have 20% increased Effect if 50% of Curse Duration expired"]={{[1]={[1]={actor="enemy",threshold=50,type="MultiplierThreshold",var="CurseExpired"},[2]={skillType=108,type="SkillType"},flags=0,keywordFlags=0,name="CurseEffect",type="INC",value=20}},nil} @@ -12911,7 +12775,8 @@ c["Your Hits Intimidate Enemies for 4 seconds while you are using Pride"]={nil," c["Your Hits Intimidate Enemies for 4 seconds while you are using Pride +50% to Chaos Resistance while affected by Purity of Elements"]={nil,"Your Hits Intimidate Enemies for 4 seconds while you are using Pride +50% to Chaos Resistance while affected by Purity of Elements "} c["Your Hits always inflict Freeze, Shock and Ignite while Unbound"]={{[1]={[1]={type="Condition",var="Unbound"},flags=0,keywordFlags=0,name="EnemyFreezeChance",type="BASE",value=100},[2]={[1]={type="Condition",var="Unbound"},flags=0,keywordFlags=0,name="EnemyShockChance",type="BASE",value=100},[3]={[1]={type="Condition",var="Unbound"},flags=0,keywordFlags=0,name="EnemyIgniteChance",type="BASE",value=100}},nil} c["Your Hits are always Critical Strikes"]={{[1]={flags=0,keywordFlags=0,name="CritChance",type="OVERRIDE",value=100}},nil} -c["Your Hits can only Kill Frozen enemies"]={nil,"Your Hits can only Kill Frozen enemies "} +c["Your Hits can only Kill Frozen Enemies"]={nil,"Your Hits can only Kill Frozen Enemies "} +c["Your Hits can only Kill Frozen Enemies 50% increased Herald of Ice Damage"]={nil,"Your Hits can only Kill Frozen Enemies 50% increased Herald of Ice Damage "} 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["Your Hits cannot Penetrate or ignore Elemental Resistances"]={{[1]={flags=0,keywordFlags=0,name="CannotElePenIgnore",type="FLAG",value=true}},nil} c["Your Hits ignore Enemy Monster Cold Resistances if all Equipped Rings are Cryonic Rings"]={{[1]={[1]={threshold=2,type="MultiplierThreshold",var="CryonicRingEquipped"},flags=0,keywordFlags=0,name="IgnoreColdResistance",type="FLAG",value=true}},nil} @@ -12921,14 +12786,12 @@ c["Your Hits treat Cold Resistance as 10% higher than actual value"]={{[1]={flag 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["Your Lightning Damage can Ignite"]={{[1]={flags=0,keywordFlags=0,name="LightningCanIgnite",type="FLAG",value=true}},nil} c["Your Lightning Damage can Poison"]={{[1]={flags=0,keywordFlags=0,name="LightningCanPoison",type="FLAG",value=true}},nil} -c["Your Linked Minions take 65% less Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="AffectedByLink"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-65}}}},nil} c["Your Linked Minions take 70% less Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="AffectedByLink"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-70}}}},nil} +c["Your Linked Minions take 75% less Damage"]={{[1]={flags=0,keywordFlags=0,name="MinionModifier",type="LIST",value={mod={[1]={type="Condition",var="AffectedByLink"},flags=0,keywordFlags=0,name="DamageTaken",type="MORE",value=-75}}}},nil} c["Your Lucky or Unlucky effects are instead Unexciting"]={{[1]={flags=0,keywordFlags=0,name="Unexciting",type="FLAG",value=true}},nil} c["Your Lucky or Unlucky effects use the best or"]={nil,"Your Lucky or Unlucky effects use the best or "} c["Your Lucky or Unlucky effects use the best or worst from three rolls instead of two"]={{[1]={flags=0,keywordFlags=0,name="ExtremeLuck",type="FLAG",value=true}},nil} c["Your Mark Transfers to another Enemy when Marked Enemy dies"]={nil,"Your Mark Transfers to another Enemy when Marked Enemy dies "} -c["Your Mark transfers to another Enemy when Marked Enemy dies"]={nil,"Your Mark transfers to another Enemy when Marked Enemy dies "} -c["Your Mark transfers to another Enemy when Marked Enemy dies 8% of Damage from Hits is taken from Marked Target's Life before you"]={nil,"Your Mark transfers to another Enemy when Marked Enemy dies 8% of Damage from Hits is taken from Marked Target's Life before you "} 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["Your Maximum Frenzy Charges is equal to your Maximum Power Charges"]={{[1]={flags=0,keywordFlags=0,name="MaximumFrenzyChargesIsMaximumPowerCharges",type="FLAG",value=true}},nil} c["Your Maximum Resistances are 71%"]={{[1]={flags=0,keywordFlags=0,name="FireResistMax",type="OVERRIDE",value=71},[2]={flags=0,keywordFlags=0,name="ColdResistMax",type="OVERRIDE",value=71},[3]={flags=0,keywordFlags=0,name="LightningResistMax",type="OVERRIDE",value=71},[4]={flags=0,keywordFlags=0,name="ChaosResistMax",type="OVERRIDE",value=71}},nil} @@ -12950,8 +12813,8 @@ c["Your Physical Damage can Freeze"]={{[1]={flags=0,keywordFlags=0,name="Physica c["Your Physical Damage can Ignite during Effect"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanIgnite",type="FLAG",value=true}},nil} c["Your Physical Damage can Shock"]={{[1]={flags=0,keywordFlags=0,name="PhysicalCanShock",type="FLAG",value=true}},nil} c["Your Raised Spectres also gain Arcane Surge when you do"]={nil,"Your Raised Spectres also gain Arcane Surge when you do "} -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["Your Raised Zombies count as Corpses"]={nil,"Your Raised Zombies count as Corpses "} +c["Your Raised Spectres also gain Arcane Surge when you do 50% increased Spell Critical Strike Chance per Raised Spectre"]={nil,"Your Raised Spectres also gain Arcane Surge when you do 50% increased Spell Critical Strike Chance per Raised Spectre "} +c["Your Raised Zombies count as corpses"]={nil,"Your Raised Zombies count as corpses "} c["Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage"]={{[1]={flags=0,keywordFlags=0,name="ScoldsBridleSelfDamage",type="LIST",value={damageType="physical",dmgMult=400}}},nil} c["Your Spells are disabled"]={{[1]={[1]={skillType=2,type="SkillType"},flags=0,keywordFlags=0,name="DisableSkill",type="FLAG",value=true},[2]={flags=0,keywordFlags=0,name="ForceEnableCurseApplication",type="FLAG",value=true}},nil} c["Your Spells have Culling Strike"]={{[1]={flags=2,keywordFlags=0,name="CullPercent",type="MAX",value=10}},nil} @@ -12959,14 +12822,17 @@ c["Your Warcries do not grant Buffs or Charges to You"]={{[1]={flags=0,keywordFl c["Your Warcries inflict Hallowing Flame"]={{[1]={flags=0,keywordFlags=0,name="Condition:CanInflictHallowingFlame",type="FLAG",value=true}},nil} c["Your hits can't be Evaded"]={{[1]={flags=0,keywordFlags=0,name="CannotBeEvaded",type="FLAG",value=true}},nil} c["Your nearby party members maximum Endurance Charges is equal to yours"]={{[1]={flags=0,keywordFlags=0,name="PartyMemberMaximumEnduranceChargesEqualToYours",type="FLAG",value=true}},nil} -c["Your spells have 100% chance to Shock against Frozen enemies"]={nil,"Your spells have 100% chance to Shock against Frozen enemies "} +c["Your spells have 100% chance to Shock against Frozen Enemies"]={nil,"Your spells have 100% chance to Shock against Frozen Enemies "} c["Zealot's Oath"]={{[1]={flags=0,keywordFlags=0,name="Keystone",type="LIST",value="Zealot's Oath"}},nil} c["Zealot's Oath during Effect"]={{[1]={[1]={type="Condition",var="UsingFlask"},flags=0,keywordFlags=0,name="ZealotsOath",type="FLAG",value=true}},nil} c["Zealotry has 50% increased Mana Reservation Efficiency"]={{[1]={[1]={includeTransfigured=true,skillName="Zealotry",type="SkillName"},flags=0,keywordFlags=0,name="ManaReservationEfficiency",type="INC",value=50}},nil} c["Zealotry has no Reservation"]={{[1]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationFlat",value=0}},[2]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationFlat",value=0}},[3]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="manaReservationPercent",value=0}},[4]={[1]={skillId="Zealotry",type="SkillId"},[2]={neg=true,skillType=119,type="SkillType"},flags=0,keywordFlags=0,name="SkillData",type="LIST",value={key="lifeReservationPercent",value=0}}},nil} +c["Zombies' Slam Attack has 100% increased Cooldown Recovery Rate"]={nil,"Zombies' Slam Attack has 100% increased Cooldown Recovery Rate "} +c["Zombies' Slam Attack has 100% increased Cooldown Recovery Rate With at least 40 Intelligence in Radius, Raised Zombies' Slam"]={nil,"Zombies' Slam Attack has 100% increased Cooldown Recovery Rate With at least 40 Intelligence in Radius, Raised Zombies' Slam "} c["affected by Purity of Elements"]={nil,"affected by Purity of Elements "} c["affected by Purity of Elements 12% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements"]={nil,"affected by Purity of Elements 12% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements "} 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["also grant an equal chance to gain a Frenzy Charge on Kill Passives granting Cold Resistance or all Elemental Resistances in Radius"]={nil,"also grant an equal chance to gain a Frenzy Charge on Kill Passives granting Cold Resistance or all Elemental Resistances in Radius "} 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["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["and nearby Allies Regenerate 400 Life per second"]={{[1]={[1]={type="Condition",var="KilledPoisonedLast2Seconds"},flags=0,keywordFlags=0,name="ExtraAura",type="LIST",value={mod={flags=0,keywordFlags=0,name="LifeRegen",type="BASE",value=400}}}},nil} @@ -12977,21 +12843,44 @@ c["each remaining Chain, up to a maximum of 100%"]={nil,"each remaining Chain, u c["grant 100% increased Flask Charges"]={nil,"grant 100% increased Flask Charges "} c["grant 40% increased Flask Charges"]={nil,"grant 40% increased Flask Charges "} c["grant 40% increased Flask Charges Melee Hits have 20% chance to Fortify"]={nil,"grant 40% increased Flask Charges Melee Hits have 20% chance to Fortify "} +c["has a 20% increased angle"]={nil,"has a 20% increased angle "} +c["has a 20% increased angle With at least 40 Strength in Radius, Ground Slam"]={nil,"has a 20% increased angle With at least 40 Strength in Radius, Ground Slam "} +c["has a 35% increased angle"]={nil,"has a 35% increased angle "} +c["has a 35% increased angle With at least 40 Strength in Radius, Ground Slam"]={nil,"has a 35% increased angle With at least 40 Strength in Radius, Ground Slam "} +c["has a 50% increased angle"]={nil,"has a 50% increased angle "} +c["have fewer than 5 Poisons on you"]={nil,"fewer than 5 Poisons on you "} c["more than once every 0.3 seconds"]={nil,"more than once every 0.3 seconds "} c["more than once every 0.3 seconds Lose all Defiance when you reach 10 Defiance"]={nil,"more than once every 0.3 seconds Lose all Defiance when you reach 10 Defiance "} c["more than once every 0.3 seconds Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance"]={nil,"more than once every 0.3 seconds Lose all Defiance when you reach 10 Defiance Gain 3% of Missing Unreserved Life before being Hit by an Enemy Per Defiance "} +c["of your Traps are Triggered by an Enemy"]={nil,"of your Traps are Triggered by an Enemy "} +c["of your Traps are Triggered by an Enemy Skills which throw Traps Cost Life instead of Mana"]={nil,"of your Traps are Triggered by an Enemy Skills which throw Traps Cost Life instead of Mana "} c["per Tribe for which you have an allocated Tattoo"]={nil,"per Tribe for which you have an allocated Tattoo "} c["per Tribe for which you have an allocated Tattoo Limited to 1 Ancestral Tattoo"]={nil,"per Tribe for which you have an allocated Tattoo Limited to 1 Ancestral Tattoo "} +c["removed by Filling Unreserved Life"]={nil,"removed by Filling Unreserved Life "} +c["removed by Filling Unreserved Life 10% chance to gain Onslaught for 4 Seconds when Leech is"]={nil,"removed by Filling Unreserved Life 10% chance to gain Onslaught for 4 Seconds when Leech is "} c["second, up to a maximum of 100%"]={nil,"second, up to a maximum of 100% "} +c["to grant an Endurance Charge when you Stun an Enemy"]={nil,"to grant an Endurance Charge when you Stun an Enemy "} +c["to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam"]={nil,"to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam "} +c["to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam has a 35% chance"]={nil,"to grant an Endurance Charge when you Stun an Enemy With at least 40 Strength in Radius, Ground Slam has a 35% chance "} c["to surrounding targets"]={nil,"to surrounding targets "} -c["to surrounding targets 15% increased Attack Damage"]={nil,"to surrounding targets 15% increased Attack Damage "} +c["to surrounding targets With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage"]={nil,"to surrounding targets With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage "} c["to surrounding targets while wielding a Mace"]={nil,"to surrounding targets while wielding a Mace "} -c["to surrounding targets while wielding a Mace With at least 40 Dexterity in Radius, Dual Strike has 30% increased"]={nil,"to surrounding targets while wielding a Mace With at least 40 Dexterity in Radius, Dual Strike has 30% increased "} c["until you take no Damage to Life for 2 seconds"]={nil,"until you take no Damage to Life for 2 seconds "} c["until you take no Damage to Life for 2 seconds 30% more Maximum Life"]={nil,"until you take no Damage to Life for 2 seconds 30% more Maximum Life "} c["up to a maximum of 150%"]={nil,"up to a maximum of 150% "} c["up to a maximum of 150% Damageable Minions take 5% increased Damage for each second they have been alive,\nup to a maximum of 50%"]={nil,"up to a maximum of 150% Damageable Minions take 5% increased Damage for each second they have been alive,\nup to a maximum of 50% "} c["up to a maximum of 50%"]={nil,"up to a maximum of 50% "} c["used if you've Hit an enemy with a Weapon Recently"]={nil,"used if you've Hit an enemy with a Weapon Recently "} +c["wielding a Bow, with a 1 second Cooldown"]={nil,"wielding a Bow, with a 1 second Cooldown "} +c["wielding a Bow, with a 1 second Cooldown 12% increased Cast Speed"]={nil,"wielding a Bow, with a 1 second Cooldown 12% increased Cast Speed "} +c["you consume a total of 8 Steel Shards"]={nil,"you consume a total of 8 Steel Shards "} +c["your Minions cannot be Reflected"]={nil,"your Minions cannot be Reflected "} +c["your Minions cannot be Reflected Left ring slot: 100% of Elemental Hit Damage from you and"]={nil,"your Minions cannot be Reflected Left ring slot: 100% of Elemental Hit Damage from you and "} +c["your Minions cannot be Reflected Left ring slot: 40% of Elemental Hit Damage from you and"]={nil,"your Minions cannot be Reflected Left ring slot: 40% of Elemental Hit Damage from you and "} +c["your Minions cannot be Reflected Left ring slot: 80% of Elemental Hit Damage from you and"]={nil,"your Minions cannot be Reflected Left ring slot: 80% of Elemental Hit Damage from you and "} +c["your Minions cannot be Reflected Right ring slot: 100% of Physical Hit Damage from you and"]={nil,"your Minions cannot be Reflected Right ring slot: 100% of Physical Hit Damage from you and "} +c["your Minions cannot be Reflected Right ring slot: 30% of Physical Hit Damage from you and"]={nil,"your Minions cannot be Reflected Right ring slot: 30% of Physical Hit Damage from you and "} +c["your Minions cannot be Reflected Right ring slot: 40% of Physical Hit Damage from you and"]={nil,"your Minions cannot be Reflected Right ring slot: 40% of Physical Hit Damage from you and "} +c["your Minions cannot be Reflected Right ring slot: 80% of Physical Hit Damage from you and"]={nil,"your Minions cannot be Reflected Right ring slot: 80% of Physical Hit Damage from you and "} c["your maximum number of Crab Barriers"]={nil,"your maximum number of Crab Barriers "} c["your maximum number of Power Charges"]={nil,"your maximum number of Power Charges "} diff --git a/src/Data/ModFlask.lua b/src/Data/ModFlask.lua index 7962eec472..3f8635160b 100644 --- a/src/Data/ModFlask.lua +++ b/src/Data/ModFlask.lua @@ -2,250 +2,250 @@ -- Item data (c) Grinding Gear Games return { - ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Undiluted", "(41-46)% increased Recovery rate", statOrder = { 860 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Thickened", "(47-52)% increased Recovery rate", statOrder = { 860 }, level = 21, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Viscous", "(53-58)% increased Recovery rate", statOrder = { 860 }, level = 41, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Condensed", "(59-64)% increased Recovery rate", statOrder = { 860 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Catalysed", "(65-70)% increased Recovery rate", statOrder = { 860 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Substantial", "(41-46)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 859, 860 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Opaque", "(47-52)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 859, 860 }, level = 21, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(53-58)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 859, 860 }, level = 41, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Concentrated", "(59-64)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 859, 860 }, level = 61, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Saturated", "(65-70)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 859, 860 }, level = 81, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(101-106)% more Recovery if used while on Low Life", statOrder = { 864 }, level = 6, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(107-112)% more Recovery if used while on Low Life", statOrder = { 864 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(113-118)% more Recovery if used while on Low Life", statOrder = { 864 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(119-124)% more Recovery if used while on Low Life", statOrder = { 864 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(125-130)% more Recovery if used while on Low Life", statOrder = { 864 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskInstantRecoveryOnLowLife1"] = { type = "Prefix", affix = "Startled", "(27-30)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 859, 865 }, level = 9, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskInstantRecoveryOnLowLife2"] = { type = "Prefix", affix = "Frightened", "(23-26)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 859, 865 }, level = 27, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskInstantRecoveryOnLowLife3"] = { type = "Prefix", affix = "Alarmed", "(19-22)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 859, 865 }, level = 45, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskInstantRecoveryOnLowLife4"] = { type = "Prefix", affix = "Terrified", "(15-18)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 859, 865 }, level = 63, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskInstantRecoveryOnLowLife5__"] = { type = "Prefix", affix = "Panicked", "(11-14)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 859, 865 }, level = 81, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, - ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(52-55)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 859, 860, 866 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Ebullient", "(48-51)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 859, 860, 866 }, level = 22, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Effusive", "(44-47)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 859, 860, 866 }, level = 41, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskPartialInstantRecovery4"] = { type = "Prefix", affix = "Effervescent", "(40-43)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 859, 860, 866 }, level = 60, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskPartialInstantRecovery5_"] = { type = "Prefix", affix = "Bubbling", "(36-39)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 859, 860, 866 }, level = 79, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "66% reduced Amount Recovered", "Instant Recovery", statOrder = { 859, 871 }, level = 7, group = "FlaskFullInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask" }, }, - ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(41-46)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 858, 874 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(47-52)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 858, 874 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(53-58)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 858, 874 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(59-64)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 858, 874 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(65-70)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 858, 874 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(35-39)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 854, 876 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(40-44)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 854, 876 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(46-50)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 854, 876 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(51-55)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 854, 876 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(56-60)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 854, 876 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, - ["FlaskDispellsChill1"] = { type = "Suffix", affix = "of Heat", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 907, 907.1 }, level = 4, group = "FlaskDispellsChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "cold", "ailment" }, }, - ["FlaskDispellsBurning1"] = { type = "Suffix", affix = "of Dousing", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 909, 909.1 }, level = 6, group = "FlaskDispellsBurning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "fire", "ailment" }, }, - ["FlaskRemovesBleeding1"] = { type = "Suffix", affix = "of Staunching", "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood", statOrder = { 905, 905.1 }, level = 8, group = "FlaskRemovesBleeding", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "bleed", "physical", "attack", "ailment" }, }, - ["FlaskRemovesShock1"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for 4 seconds if used while Shocked", statOrder = { 915 }, level = 10, group = "FlaskRemovesShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, - ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Wide", "+(16-19) to Maximum Charges", statOrder = { 842 }, level = 2, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskExtraCharges2__"] = { type = "Prefix", affix = "Plentiful", "+(20-23) to Maximum Charges", statOrder = { 842 }, level = 22, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskExtraCharges3_"] = { type = "Prefix", affix = "Bountiful", "+(24-27) to Maximum Charges", statOrder = { 842 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskExtraCharges4__"] = { type = "Prefix", affix = "Abundant", "+(28-31) to Maximum Charges", statOrder = { 842 }, level = 62, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskExtraCharges5"] = { type = "Prefix", affix = "Ample", "+(32-35) to Maximum Charges", statOrder = { 842 }, level = 82, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesAddedIncreasePercent1"] = { type = "Prefix", affix = "Constant", "(16-20)% increased Charge Recovery", statOrder = { 850 }, level = 3, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesAddedIncreasePercent2_"] = { type = "Prefix", affix = "Continuous", "(21-25)% increased Charge Recovery", statOrder = { 850 }, level = 23, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesAddedIncreasePercent3_"] = { type = "Prefix", affix = "Endless", "(26-30)% increased Charge Recovery", statOrder = { 850 }, level = 43, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesAddedIncreasePercent4_"] = { type = "Prefix", affix = "Bottomless", "(31-45)% increased Charge Recovery", statOrder = { 850 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesAddedIncreasePercent5__"] = { type = "Prefix", affix = "Perpetual", "(46-50)% increased Charge Recovery", statOrder = { 850 }, level = 83, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryReducedEffect1_"] = { type = "Prefix", affix = "Doled", "(37-42)% increased Charge Recovery", "25% reduced effect", statOrder = { 850, 940 }, level = 20, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryReducedEffect2_"] = { type = "Prefix", affix = "Provisioned", "(43-48)% increased Charge Recovery", "25% reduced effect", statOrder = { 850, 940 }, level = 36, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryReducedEffect3____"] = { type = "Prefix", affix = "Measured", "(49-54)% increased Charge Recovery", "25% reduced effect", statOrder = { 850, 940 }, level = 52, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryReducedEffect4_"] = { type = "Prefix", affix = "Allocated", "(55-60)% increased Charge Recovery", "25% reduced effect", statOrder = { 850, 940 }, level = 68, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedRecoveryReducedEffect5"] = { type = "Prefix", affix = "Rationed", "(61-66)% increased Charge Recovery", "25% reduced effect", statOrder = { 850, 940 }, level = 84, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffArmourWhileHealing1"] = { type = "Suffix", affix = "of the Abalone", "(41-45)% increased Armour during Effect", statOrder = { 941 }, level = 6, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, - ["FlaskBuffArmourWhileHealing2"] = { type = "Suffix", affix = "of the Tortoise", "(46-50)% increased Armour during Effect", statOrder = { 941 }, level = 32, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, - ["FlaskBuffArmourWhileHealing3"] = { type = "Suffix", affix = "of the Pangolin", "(51-55)% increased Armour during Effect", statOrder = { 941 }, level = 58, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, - ["FlaskBuffArmourWhileHealing4"] = { type = "Suffix", affix = "of the Armadillo", "(56-60)% increased Armour during Effect", statOrder = { 941 }, level = 84, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, - ["FlaskBuffEvasionWhileHealing"] = { type = "Suffix", affix = "of the Gazelle", "(41-45)% increased Evasion Rating during Effect", statOrder = { 942 }, level = 6, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, - ["FlaskBuffEvasionWhileHealing2"] = { type = "Suffix", affix = "of the Antelope", "(46-50)% increased Evasion Rating during Effect", statOrder = { 942 }, level = 32, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, - ["FlaskBuffEvasionWhileHealing3_"] = { type = "Suffix", affix = "of the Ibex", "(51-55)% increased Evasion Rating during Effect", statOrder = { 942 }, level = 58, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, - ["FlaskBuffEvasionWhileHealing4"] = { type = "Suffix", affix = "of the Impala", "(56-60)% increased Evasion Rating during Effect", statOrder = { 942 }, level = 84, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, - ["FlaskBuffMovementSpeedWhileHealing"] = { type = "Suffix", affix = "of the Hare", "(6-8)% increased Movement Speed during Effect", statOrder = { 951 }, level = 5, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, - ["FlaskBuffMovementSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Lynx", "(9-11)% increased Movement Speed during Effect", statOrder = { 951 }, level = 65, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, - ["FlaskBuffMovementSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Cheetah", "(12-14)% increased Movement Speed during Effect", statOrder = { 951 }, level = 85, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, - ["FlaskBuffStunRecoveryWhileHealing"] = { type = "Suffix", affix = "of Stiffness", "(51-56)% increased Block and Stun Recovery during Effect", statOrder = { 952 }, level = 1, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffStunRecoveryWhileHealing2"] = { type = "Suffix", affix = "of Bracing", "(57-62)% increased Block and Stun Recovery during Effect", statOrder = { 952 }, level = 19, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffStunRecoveryWhileHealing3"] = { type = "Suffix", affix = "of Ballast", "(63-68)% increased Block and Stun Recovery during Effect", statOrder = { 952 }, level = 37, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffStunRecoveryWhileHealing4"] = { type = "Suffix", affix = "of Counterpoise", "(69-74)% increased Block and Stun Recovery during Effect", statOrder = { 952 }, level = 55, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffStunRecoveryWhileHealing5"] = { type = "Suffix", affix = "of Stabilisation", "(75-80)% increased Block and Stun Recovery during Effect", statOrder = { 952 }, level = 73, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffResistancesWhileHealing"] = { type = "Suffix", affix = "of the Crystal", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 953 }, level = 1, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, - ["FlaskBuffResistancesWhileHealing2"] = { type = "Suffix", affix = "of the Prism", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 953 }, level = 21, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, }, - ["FlaskBuffResistancesWhileHealing3"] = { type = "Suffix", affix = "of the Kaleidoscope", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 953 }, level = 41, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, - ["FlaskBuffResistancesWhileHealing4"] = { type = "Suffix", affix = "of Variegation", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 953 }, level = 61, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, }, - ["FlaskBuffResistancesWhileHealing5_"] = { type = "Suffix", affix = "of the Rainbow", "(18-20)% additional Elemental Resistances during Effect", statOrder = { 953 }, level = 81, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, - ["FlaskBuffLifeLeechWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "2% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 954 }, level = 10, group = "FlaskBuffLifeLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, }, - ["FlaskBuffLifeLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "0.4% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 957 }, level = 10, group = "FlaskBuffLifeLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, }, - ["FlaskBuffManaLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Craving", "0.4% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 959 }, level = 12, group = "FlaskBuffManaLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, }, - ["FlaskBuffKnockbackWhileHealing"] = { type = "Suffix", affix = "of Fending", "Adds Knockback to Melee Attacks during Effect", statOrder = { 960 }, level = 9, group = "FlaskBuffKnockbackWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack" }, }, - ["FlaskBuffWardWhileHealing1"] = { type = "Suffix", affix = "of Runegleaming", "(19-21)% increased Ward during Effect", statOrder = { 944 }, level = 12, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, - ["FlaskBuffWardWhileHealing2_"] = { type = "Suffix", affix = "of Runeshining", "(22-24)% increased Ward during Effect", statOrder = { 944 }, level = 26, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, - ["FlaskBuffWardWhileHealing3"] = { type = "Suffix", affix = "of Runeflaring", "(25-27)% increased Ward during Effect", statOrder = { 944 }, level = 52, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, - ["FlaskBuffWardWhileHealing4"] = { type = "Suffix", affix = "of Runeblazing", "(28-30)% increased Ward during Effect", statOrder = { 944 }, level = 78, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, - ["FlaskHealsMinions1"] = { type = "Suffix", affix = "of the Novice", "Grants (100-119)% of Life Recovery to Minions", statOrder = { 855 }, level = 10, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, - ["FlaskHealsMinions2"] = { type = "Suffix", affix = "of the Acolyte", "Grants (120-139)% of Life Recovery to Minions", statOrder = { 855 }, level = 28, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, - ["FlaskHealsMinions3"] = { type = "Suffix", affix = "of the Summoner", "Grants (140-159)% of Life Recovery to Minions", statOrder = { 855 }, level = 46, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, - ["FlaskHealsMinions4____"] = { type = "Suffix", affix = "of the Conjurer", "Grants (160-179)% of Life Recovery to Minions", statOrder = { 855 }, level = 64, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, - ["FlaskHealsMinions5"] = { type = "Suffix", affix = "of the Necromancer", "Grants (180-200)% of Life Recovery to Minions", statOrder = { 855 }, level = 82, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, - ["FlaskFullRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "Recharges 1 Charge when you deal a Critical Strike", statOrder = { 846 }, level = 8, group = "FlaskFullRechargeOnCrit", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskChanceRechargeOnCrit1"] = { type = "Prefix", affix = "Medic's", "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 847 }, level = 8, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, - ["FlaskChanceRechargeOnCrit2"] = { type = "Prefix", affix = "Physician's", "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 847 }, level = 26, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, - ["FlaskChanceRechargeOnCrit3___"] = { type = "Prefix", affix = "Doctor's", "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 847 }, level = 44, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, - ["FlaskChanceRechargeOnCrit4"] = { type = "Prefix", affix = "Specialist's", "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 847 }, level = 62, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, - ["FlaskChanceRechargeOnCrit5"] = { type = "Prefix", affix = "Surgeon's", "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 847 }, level = 80, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, - ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 5 Charges when you take a Critical Strike", statOrder = { 849 }, level = 12, group = "FlaskFullRechargeOnTakeCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "critical" }, }, - ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Grants Immunity to Poison for 4 seconds if used while Poisoned", statOrder = { 913 }, level = 16, group = "FlaskDispellsPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "poison", "chaos", "ailment" }, }, - ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Abecedarian's", "(33-38)% reduced Duration", "25% increased effect", statOrder = { 862, 940 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskEffectReducedDuration2"] = { type = "Prefix", affix = "Dabbler's", "(28-32)% reduced Duration", "25% increased effect", statOrder = { 862, 940 }, level = 50, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskEffectReducedDuration3"] = { type = "Prefix", affix = "Alchemist's", "(23-27)% reduced Duration", "25% increased effect", statOrder = { 862, 940 }, level = 80, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Apprentice's", "(14-16)% reduced Charges per use", statOrder = { 851 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesUsed2"] = { type = "Prefix", affix = "Scholar's", "(17-19)% reduced Charges per use", statOrder = { 851 }, level = 31, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesUsed3__"] = { type = "Prefix", affix = "Practitioner's", "(20-22)% reduced Charges per use", statOrder = { 851 }, level = 48, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesUsed4__"] = { type = "Prefix", affix = "Brewer's", "(23-25)% reduced Charges per use", statOrder = { 851 }, level = 65, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskChargesUsed5"] = { type = "Prefix", affix = "Chemist's", "(26-28)% reduced Charges per use", statOrder = { 851 }, level = 82, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 862 }, level = 20, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedDuration3_"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 862 }, level = 36, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedDuration4"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 862 }, level = 52, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedDuration5__"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 862 }, level = 68, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, - ["FlaskIncreasedDuration6"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 862 }, level = 84, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, - ["FlaskFullRechargeOnHit1"] = { type = "Prefix", affix = "Delinquent's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 845 }, level = 12, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, - ["FlaskFullRechargeOnHit2_"] = { type = "Prefix", affix = "Transgressor's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 845 }, level = 29, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskFullRechargeOnHit3_"] = { type = "Prefix", affix = "Sinner's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 845 }, level = 46, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, - ["FlaskFullRechargeOnHit4_"] = { type = "Prefix", affix = "Masochist's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 845 }, level = 63, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskFullRechargeOnHit5___"] = { type = "Prefix", affix = "Flagellant's", "Gain 3 Charges when you are Hit by an Enemy", statOrder = { 845 }, level = 80, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Nitrate", "(20-25)% increased Charges per use", "(21-26)% increased Amount Recovered", statOrder = { 851, 859 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedHealingCharges2"] = { type = "Prefix", affix = "Dolomite", "(20-25)% increased Charges per use", "(27-32)% increased Amount Recovered", statOrder = { 851, 859 }, level = 28, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedHealingCharges3"] = { type = "Prefix", affix = "Kieserite", "(20-25)% increased Charges per use", "(33-38)% increased Amount Recovered", statOrder = { 851, 859 }, level = 46, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedHealingCharges4____"] = { type = "Prefix", affix = "Kainite", "(20-25)% increased Charges per use", "(39-44)% increased Amount Recovered", statOrder = { 851, 859 }, level = 64, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskIncreasedHealingCharges5"] = { type = "Prefix", affix = "Gypsum", "(20-25)% increased Charges per use", "(45-50)% increased Amount Recovered", statOrder = { 851, 859 }, level = 82, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, - ["FlaskManaRecoveryAtEnd1_"] = { type = "Prefix", affix = "Foreboding", "66% increased Amount Recovered", "Mana Recovery occurs instantly at the end of Effect", statOrder = { 859, 870 }, level = 16, group = "FlaskManaRecoveryAtEnd", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "66% reduced Amount Recovered", "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue", statOrder = { 859, 869, 869.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullManaReducedRecovery", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffAttackLifeLeechWhileHealing1"] = { type = "Suffix", affix = "of Bloodshed", "0.4% of Attack Damage Leeched as Life during Effect", statOrder = { 956 }, level = 10, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, - ["FlaskBuffAttackLifeLeechWhileHealing2"] = { type = "Suffix", affix = "of Gore", "0.5% of Attack Damage Leeched as Life during Effect", statOrder = { 956 }, level = 20, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, - ["FlaskBuffAttackLifeLeechWhileHealing3"] = { type = "Suffix", affix = "of Carnage", "0.6% of Attack Damage Leeched as Life during Effect", statOrder = { 956 }, level = 40, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, - ["FlaskBuffAttackLifeLeechWhileHealing4"] = { type = "Suffix", affix = "of Butchery", "0.7% of Attack Damage Leeched as Life during Effect", statOrder = { 956 }, level = 60, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, - ["FlaskBuffAttackLifeLeechWhileHealing5"] = { type = "Suffix", affix = "of Bloodletting", "0.8% of Attack Damage Leeched as Life during Effect", statOrder = { 956 }, level = 80, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing1"] = { type = "Suffix", affix = "of Diverting", "0.4% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 955 }, level = 10, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing2_"] = { type = "Suffix", affix = "of Depletion", "0.5% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 955 }, level = 20, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing3_____"] = { type = "Suffix", affix = "of Tapping", "0.6% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 955 }, level = 40, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing4"] = { type = "Suffix", affix = "of Siphoning", "0.7% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 955 }, level = 60, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, - ["FlaskBuffSpellEnergyShieldLeechWhileHealing5"] = { type = "Suffix", affix = "of Draining", "0.8% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 955 }, level = 80, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, - ["FlaskBuffAttackSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Falcon", "(9-11)% increased Attack Speed during Effect", statOrder = { 949 }, level = 12, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, - ["FlaskBuffAttackSpeedWhileHealing2_____"] = { type = "Suffix", affix = "of the Eagle", "(12-14)% increased Attack Speed during Effect", statOrder = { 949 }, level = 62, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, - ["FlaskBuffAttackSpeedWhileHealing3_"] = { type = "Suffix", affix = "of the Dove", "(15-17)% increased Attack Speed during Effect", statOrder = { 949 }, level = 82, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, - ["FlaskBuffCastSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Albatross", "(9-11)% increased Cast Speed during Effect", statOrder = { 950 }, level = 12, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, - ["FlaskBuffCastSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Hummingbird", "(12-14)% increased Cast Speed during Effect", statOrder = { 950 }, level = 62, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, - ["FlaskBuffCastSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Horsefly", "(15-17)% increased Cast Speed during Effect", statOrder = { 950 }, level = 82, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, - ["FlaskBuffAccuracyWhileHealing1__"] = { type = "Suffix", affix = "of the Monkey", "(15-25)% increased Accuracy Rating during Effect", statOrder = { 948 }, level = 12, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, - ["FlaskBuffAccuracyWhileHealing2"] = { type = "Suffix", affix = "of the Raccoon", "(26-35)% increased Accuracy Rating during Effect", statOrder = { 948 }, level = 42, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, - ["FlaskBuffAccuracyWhileHealing3"] = { type = "Suffix", affix = "of the Crow", "(35-45)% increased Accuracy Rating during Effect", statOrder = { 948 }, level = 72, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, - ["FlaskBuffCriticalChanceWhileHealing1_"] = { type = "Suffix", affix = "of Stinging", "(26-31)% increased Critical Strike Chance during Effect", statOrder = { 981 }, level = 18, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskBuffCriticalChanceWhileHealing2_"] = { type = "Suffix", affix = "of Piercing", "(32-37)% increased Critical Strike Chance during Effect", statOrder = { 981 }, level = 34, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskBuffCriticalChanceWhileHealing3"] = { type = "Suffix", affix = "of Rupturing", "(38-43)% increased Critical Strike Chance during Effect", statOrder = { 981 }, level = 50, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskBuffCriticalChanceWhileHealing4__"] = { type = "Suffix", affix = "of Penetrating", "(44-49)% increased Critical Strike Chance during Effect", statOrder = { 981 }, level = 66, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskBuffCriticalChanceWhileHealing5"] = { type = "Suffix", affix = "of Incision", "(50-55)% increased Critical Strike Chance during Effect", statOrder = { 981 }, level = 82, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing1_"] = { type = "Suffix", affix = "of Foisting", "(19-22)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 979 }, level = 12, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing2____"] = { type = "Suffix", affix = "of Imposing", "(23-26)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 979 }, level = 32, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing3"] = { type = "Suffix", affix = "of Wreaking", "(27-30)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 979 }, level = 52, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["FlaskBuffFreezeShockIgniteChanceWhileHealing4_"] = { type = "Suffix", affix = "of Infliction", "(31-34)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 979 }, level = 72, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["FlaskBuffAvoidStunWhileHealing1_"] = { type = "Suffix", affix = "of Composure", "(31-35)% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 12, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidStunWhileHealing2"] = { type = "Suffix", affix = "of Surefootedness", "(36-40)% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 29, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidStunWhileHealing3"] = { type = "Suffix", affix = "of Persistence", "(41-45)% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 46, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidStunWhileHealing4"] = { type = "Suffix", affix = "of Relentlessness", "(46-50)% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 63, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidStunWhileHealing5"] = { type = "Suffix", affix = "of Tenaciousness", "(51-55)% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 80, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffReducedManaCostWhileHealing1_"] = { type = "Suffix", affix = "of the Pupil", "(11-14)% reduced Mana Cost of Skills during Effect", statOrder = { 1004 }, level = 12, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffReducedManaCostWhileHealing2__"] = { type = "Suffix", affix = "of the Initiate", "(15-18)% reduced Mana Cost of Skills during Effect", statOrder = { 1004 }, level = 29, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffReducedManaCostWhileHealing3"] = { type = "Suffix", affix = "of the Mage", "(19-21)% reduced Mana Cost of Skills during Effect", statOrder = { 1004 }, level = 46, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffReducedManaCostWhileHealing4"] = { type = "Suffix", affix = "of the Arcanist", "(22-25)% reduced Mana Cost of Skills during Effect", statOrder = { 1004 }, level = 63, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffReducedManaCostWhileHealing5"] = { type = "Suffix", affix = "of the Sorcerer", "(26-29)% reduced Mana Cost of Skills during Effect", statOrder = { 1004 }, level = 80, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["FlaskBuffChillFreezeDuration1"] = { type = "Suffix", affix = "of the Rabbit", "(36-41)% reduced Effect of Chill on you during Effect", "(36-41)% reduced Freeze Duration on you during Effect", statOrder = { 1009, 1011 }, level = 4, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffChillFreezeDuration2_"] = { type = "Suffix", affix = "of the Cat", "(42-47)% reduced Effect of Chill on you during Effect", "(42-47)% reduced Freeze Duration on you during Effect", statOrder = { 1009, 1011 }, level = 23, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffChillFreezeDuration3_"] = { type = "Suffix", affix = "of the Fox", "(48-52)% reduced Effect of Chill on you during Effect", "(48-52)% reduced Freeze Duration on you during Effect", statOrder = { 1009, 1011 }, level = 42, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffChillFreezeDuration4"] = { type = "Suffix", affix = "of the Sable", "(52-59)% reduced Effect of Chill on you during Effect", "(52-59)% reduced Freeze Duration on you during Effect", statOrder = { 1009, 1011 }, level = 61, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffChillFreezeDuration5"] = { type = "Suffix", affix = "of the Bear", "(60-65)% reduced Effect of Chill on you during Effect", "(60-65)% reduced Freeze Duration on you during Effect", statOrder = { 1009, 1011 }, level = 80, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffShockEffect1"] = { type = "Suffix", affix = "of the Plover", "(36-41)% reduced Effect of Shock on you during Effect", statOrder = { 1014 }, level = 6, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffShockEffect2"] = { type = "Suffix", affix = "of the Sandpiper", "(42-47)% reduced Effect of Shock on you during Effect", statOrder = { 1014 }, level = 25, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffShockEffect3___"] = { type = "Suffix", affix = "of the Cormorant", "(48-52)% reduced Effect of Shock on you during Effect", statOrder = { 1014 }, level = 44, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffShockEffect4"] = { type = "Suffix", affix = "of the Sanderling", "(52-59)% reduced Effect of Shock on you during Effect", statOrder = { 1014 }, level = 63, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffShockEffect5"] = { type = "Suffix", affix = "of the Heron", "(60-65)% reduced Effect of Shock on you during Effect", statOrder = { 1014 }, level = 82, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffCurseEffect1"] = { type = "Suffix", affix = "of the Petrel", "(36-41)% reduced Effect of Curses on you during Effect", statOrder = { 1010 }, level = 8, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffCurseEffect2"] = { type = "Suffix", affix = "of the Mockingbird", "(42-47)% reduced Effect of Curses on you during Effect", statOrder = { 1010 }, level = 27, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffCurseEffect3_"] = { type = "Suffix", affix = "of the Curlew", "(48-52)% reduced Effect of Curses on you during Effect", statOrder = { 1010 }, level = 46, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffCurseEffect4"] = { type = "Suffix", affix = "of the Kakapo", "(52-59)% reduced Effect of Curses on you during Effect", statOrder = { 1010 }, level = 65, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffCurseEffect5"] = { type = "Suffix", affix = "of the Owl", "(60-65)% reduced Effect of Curses on you during Effect", statOrder = { 1010 }, level = 84, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffBleedDuration1"] = { type = "Suffix", affix = "[UNUSED] Bleed duration 1", "(35-45)% reduced Bleeding Duration on you during Effect", statOrder = { 1008 }, level = 8, group = "FlaskBuffBleedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, - ["FlaskBuffPoisonDuration1"] = { type = "Suffix", affix = "[UNUSED] Poison duration 1", "(35-45)% reduced Poison Duration on you during Effect", statOrder = { 1013 }, level = 16, group = "FlaskBuffPoisonDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, - ["FlaskBuffIgniteDuration1_"] = { type = "Suffix", affix = "[UNUSED] Ignite duration 1", "(35-45)% reduced Ignite Duration on you during Effect", statOrder = { 1012 }, level = 6, group = "FlaskBuffIgniteDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidChillFreeze1_"] = { type = "Suffix", affix = "of the Orca", "(31-35)% chance to Avoid being Chilled during Effect", "(31-35)% chance to Avoid being Frozen during Effect", statOrder = { 968, 969 }, level = 4, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidChillFreeze2"] = { type = "Suffix", affix = "of the Sea Lion", "(36-40)% chance to Avoid being Chilled during Effect", "(36-40)% chance to Avoid being Frozen during Effect", statOrder = { 968, 969 }, level = 23, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidChillFreeze3"] = { type = "Suffix", affix = "of the Narwhal", "(41-45)% chance to Avoid being Chilled during Effect", "(41-45)% chance to Avoid being Frozen during Effect", statOrder = { 968, 969 }, level = 42, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidChillFreeze4"] = { type = "Suffix", affix = "of the Beluga", "(46-50)% chance to Avoid being Chilled during Effect", "(46-50)% chance to Avoid being Frozen during Effect", statOrder = { 968, 969 }, level = 61, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidChillFreeze5"] = { type = "Suffix", affix = "of the Seal", "(51-55)% chance to Avoid being Chilled during Effect", "(51-55)% chance to Avoid being Frozen during Effect", statOrder = { 968, 969 }, level = 80, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidIgnite1"] = { type = "Suffix", affix = "of the Guppy", "(31-35)% chance to Avoid being Ignited during Effect", statOrder = { 970 }, level = 6, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidIgnite2"] = { type = "Suffix", affix = "of the Goldfish", "(36-40)% chance to Avoid being Ignited during Effect", statOrder = { 970 }, level = 25, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidIgnite3"] = { type = "Suffix", affix = "of the Carp", "(41-45)% chance to Avoid being Ignited during Effect", statOrder = { 970 }, level = 44, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidIgnite4___"] = { type = "Suffix", affix = "of the Catfish", "(46-50)% chance to Avoid being Ignited during Effect", statOrder = { 970 }, level = 63, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidIgnite5_"] = { type = "Suffix", affix = "of the Sunfish", "(51-55)% chance to Avoid being Ignited during Effect", statOrder = { 970 }, level = 82, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidShock1"] = { type = "Suffix", affix = "of Tree Moss", "(31-35)% chance to Avoid being Shocked during Effect", statOrder = { 971 }, level = 6, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidShock2_"] = { type = "Suffix", affix = "of Turf Moss", "(36-40)% chance to Avoid being Shocked during Effect", statOrder = { 971 }, level = 25, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidShock3"] = { type = "Suffix", affix = "of Tooth Moss", "(41-45)% chance to Avoid being Shocked during Effect", statOrder = { 971 }, level = 44, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidShock4_____"] = { type = "Suffix", affix = "of Plume Moss", "(46-50)% chance to Avoid being Shocked during Effect", statOrder = { 971 }, level = 63, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBuffAvoidShock5"] = { type = "Suffix", affix = "of Bog Moss", "(51-55)% chance to Avoid being Shocked during Effect", statOrder = { 971 }, level = 82, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 902 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask", "caster", "curse" }, }, - ["LocalManaFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana", statOrder = { 918 }, level = 30, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalManaFlaskHinderNearbyEnemies2"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana", statOrder = { 918 }, level = 48, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalManaFlaskHinderNearbyEnemies3"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana", statOrder = { 918 }, level = 66, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalManaFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana", statOrder = { 918 }, level = 84, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalLifeFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life", statOrder = { 917 }, level = 30, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalLifeFlaskHinderNearbyEnemies2_"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life", statOrder = { 917 }, level = 48, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalLifeFlaskHinderNearbyEnemies3_"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life", statOrder = { 917 }, level = 66, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalLifeFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life", statOrder = { 917 }, level = 84, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, - ["LocalFlaskImmuneToMaimAndHinder1"] = { type = "Suffix", affix = "of Movement", "Grants Immunity to Hinder for (6-8) seconds if used while Hindered", "Grants Immunity to Maim for (6-8) seconds if used while Maimed", statOrder = { 911, 912 }, level = 16, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, - ["LocalFlaskImmuneToMaimAndHinder2"] = { type = "Suffix", affix = "of Motion", "Grants Immunity to Hinder for (9-11) seconds if used while Hindered", "Grants Immunity to Maim for (9-11) seconds if used while Maimed", statOrder = { 911, 912 }, level = 38, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, - ["LocalFlaskImmuneToMaimAndHinder3"] = { type = "Suffix", affix = "of Freedom", "Grants Immunity to Hinder for (12-14) seconds if used while Hindered", "Grants Immunity to Maim for (12-14) seconds if used while Maimed", statOrder = { 911, 912 }, level = 60, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, - ["LocalFlaskImmuneToMaimAndHinder4"] = { type = "Suffix", affix = "of Liberation", "Grants Immunity to Hinder for (15-17) seconds if used while Hindered", "Grants Immunity to Maim for (15-17) seconds if used while Maimed", statOrder = { 911, 912 }, level = 82, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, - ["LocalLifeFlaskAdditionalLifeRecovery1"] = { type = "Suffix", affix = "of Abundance", "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 904 }, level = 25, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["LocalLifeFlaskAdditionalLifeRecovery2__"] = { type = "Suffix", affix = "of Plenty", "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 904 }, level = 39, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["LocalLifeFlaskAdditionalLifeRecovery3"] = { type = "Suffix", affix = "of Bounty", "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 904 }, level = 53, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["LocalLifeFlaskAdditionalLifeRecovery4"] = { type = "Suffix", affix = "of Incessance", "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 904 }, level = 67, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["LocalLifeFlaskAdditionalLifeRecovery5_"] = { type = "Suffix", affix = "of Perenniality", "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 904 }, level = 81, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, - ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 906, 906.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskBleedCorruptingBloodImmunity2"] = { type = "Suffix", affix = "of Alleviation", "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood", statOrder = { 906, 906.1 }, level = 32, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskBleedCorruptingBloodImmunity3______"] = { type = "Suffix", affix = "of Allaying", "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood", statOrder = { 906, 906.1 }, level = 56, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskBleedCorruptingBloodImmunity4_"] = { type = "Suffix", affix = "of Assuaging", "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood", statOrder = { 906, 906.1 }, level = 80, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 916 }, level = 6, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskShockImmunity2"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for (9-11) seconds if used while Shocked", statOrder = { 916 }, level = 30, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskShockImmunity3"] = { type = "Suffix", affix = "of Insulation", "Grants Immunity to Shock for (12-14) seconds if used while Shocked", statOrder = { 916 }, level = 54, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskShockImmunity4_"] = { type = "Suffix", affix = "of the Dielectric", "Grants Immunity to Shock for (15-17) seconds if used while Shocked", statOrder = { 916 }, level = 78, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 908, 908.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskChillFreezeImmunity2"] = { type = "Suffix", affix = "of Thermodynamics", "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen", statOrder = { 908, 908.1 }, level = 28, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskChillFreezeImmunity3"] = { type = "Suffix", affix = "of Entropy", "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen", statOrder = { 908, 908.1 }, level = 52, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskChillFreezeImmunity4"] = { type = "Suffix", affix = "of Thawing", "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen", statOrder = { 908, 908.1 }, level = 76, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 910, 910.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunity2_"] = { type = "Suffix", affix = "of Quashing", "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 910, 910.1 }, level = 30, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunity3_"] = { type = "Suffix", affix = "of Quelling", "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 910, 910.1 }, level = 54, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunity4"] = { type = "Suffix", affix = "of Quenching", "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 910, 910.1 }, level = 78, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 914 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunity2"] = { type = "Suffix", affix = "of the Remedy", "Grants Immunity to Poison for (9-11) seconds if used while Poisoned", statOrder = { 914 }, level = 38, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunity3"] = { type = "Suffix", affix = "of the Cure", "Grants Immunity to Poison for (12-14) seconds if used while Poisoned", statOrder = { 914 }, level = 60, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunity4"] = { type = "Suffix", affix = "of the Antidote", "Grants Immunity to Poison for (15-17) seconds if used while Poisoned", statOrder = { 914 }, level = 82, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 863, 991 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Hedgehog", "(40-44)% less Duration", "Immunity to Poison during Effect", statOrder = { 863, 991 }, level = 46, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskPoisonImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Opossum", "(35-39)% less Duration", "Immunity to Poison during Effect", statOrder = { 863, 991 }, level = 76, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 863, 992 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskShockImmunityDuringEffect2___"] = { type = "Suffix", affix = "of the Moray", "(40-44)% less Duration", "Immunity to Shock during Effect", statOrder = { 863, 992 }, level = 40, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskShockImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Eel", "(35-39)% less Duration", "Immunity to Shock during Effect", statOrder = { 863, 992 }, level = 74, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 863, 990 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskFreezeAndChillImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Walrus", "(40-44)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 863, 990 }, level = 38, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskFreezeAndChillImmunityDuringEffect3__"] = { type = "Suffix", affix = "of the Penguin", "(35-39)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 863, 990 }, level = 72, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 863, 921, 921.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Mussel", "(40-44)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 863, 921, 921.1 }, level = 40, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskIgniteImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Starfish", "(35-39)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 863, 921, 921.1 }, level = 74, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 863, 988 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect2_"] = { type = "Suffix", affix = "of the Skink", "(40-44)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 863, 988 }, level = 42, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect3___"] = { type = "Suffix", affix = "of the Iguana", "(35-39)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 863, 988 }, level = 76, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoverySpeed1"] = { type = "Prefix", affix = "Undiluted", "(41-46)% increased Recovery rate", statOrder = { 855 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoverySpeed2"] = { type = "Prefix", affix = "Thickened", "(47-52)% increased Recovery rate", statOrder = { 855 }, level = 21, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoverySpeed3_"] = { type = "Prefix", affix = "Viscous", "(53-58)% increased Recovery rate", statOrder = { 855 }, level = 41, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoverySpeed4"] = { type = "Prefix", affix = "Condensed", "(59-64)% increased Recovery rate", statOrder = { 855 }, level = 61, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoverySpeed5"] = { type = "Prefix", affix = "Catalysed", "(65-70)% increased Recovery rate", statOrder = { 855 }, level = 81, group = "FlaskIncreasedRecoverySpeed", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmount1"] = { type = "Prefix", affix = "Substantial", "(41-46)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmount2_"] = { type = "Prefix", affix = "Opaque", "(47-52)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 21, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmount3"] = { type = "Prefix", affix = "Full-bodied", "(53-58)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 41, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmount4"] = { type = "Prefix", affix = "Concentrated", "(59-64)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 61, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmount5"] = { type = "Prefix", affix = "Saturated", "(65-70)% increased Amount Recovered", "33% reduced Recovery rate", statOrder = { 854, 855 }, level = 81, group = "FlaskIncreasedRecoveryAmount", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryOnLowLife1"] = { type = "Prefix", affix = "Prudent", "(101-106)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 6, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryOnLowLife2_"] = { type = "Prefix", affix = "Prepared", "(107-112)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 25, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryOnLowLife3"] = { type = "Prefix", affix = "Wary", "(113-118)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 44, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryOnLowLife4"] = { type = "Prefix", affix = "Careful", "(119-124)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 63, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryOnLowLife5"] = { type = "Prefix", affix = "Cautious", "(125-130)% more Recovery if used while on Low Life", statOrder = { 859 }, level = 82, group = "FlaskIncreasedRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskInstantRecoveryOnLowLife1"] = { type = "Prefix", affix = "Startled", "(27-30)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 9, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskInstantRecoveryOnLowLife2"] = { type = "Prefix", affix = "Frightened", "(23-26)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 27, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskInstantRecoveryOnLowLife3"] = { type = "Prefix", affix = "Alarmed", "(19-22)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 45, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskInstantRecoveryOnLowLife4"] = { type = "Prefix", affix = "Terrified", "(15-18)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 63, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskInstantRecoveryOnLowLife5__"] = { type = "Prefix", affix = "Panicked", "(11-14)% reduced Amount Recovered", "Instant Recovery when on Low Life", statOrder = { 854, 860 }, level = 81, group = "FlaskInstantRecoveryOnLowLife", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask" }, }, + ["FlaskPartialInstantRecovery1"] = { type = "Prefix", affix = "Simmering", "(52-55)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 3, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskPartialInstantRecovery2"] = { type = "Prefix", affix = "Ebullient", "(48-51)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 22, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskPartialInstantRecovery3"] = { type = "Prefix", affix = "Effusive", "(44-47)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 41, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskPartialInstantRecovery4"] = { type = "Prefix", affix = "Effervescent", "(40-43)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 60, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskPartialInstantRecovery5_"] = { type = "Prefix", affix = "Bubbling", "(36-39)% reduced Amount Recovered", "135% increased Recovery rate", "50% of Recovery applied Instantly", statOrder = { 854, 855, 861 }, level = 79, group = "FlaskPartialInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskFullInstantRecovery1"] = { type = "Prefix", affix = "Seething", "66% reduced Amount Recovered", "Instant Recovery", statOrder = { 854, 866 }, level = 7, group = "FlaskFullInstantRecovery", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask" }, }, + ["FlaskExtraManaCostsLife1"] = { type = "Prefix", affix = "Aged", "(41-46)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 13, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraManaCostsLife2"] = { type = "Prefix", affix = "Fermented", "(47-52)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 30, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraManaCostsLife3_"] = { type = "Prefix", affix = "Congealed", "(53-58)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 47, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraManaCostsLife4"] = { type = "Prefix", affix = "Turbid", "(59-64)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 64, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraManaCostsLife5_"] = { type = "Prefix", affix = "Caustic", "(65-70)% increased Mana Recovered", "Removes 15% of Mana Recovered from Life when used", statOrder = { 853, 869 }, level = 81, group = "FlaskExtraManaCostsLife", weightKey = { "utility_flask", "life_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraLifeCostsMana1"] = { type = "Prefix", affix = "Impairing", "(35-39)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 13, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraLifeCostsMana2"] = { type = "Prefix", affix = "Dizzying", "(40-44)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 30, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraLifeCostsMana3"] = { type = "Prefix", affix = "Depleting", "(46-50)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 47, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraLifeCostsMana4"] = { type = "Prefix", affix = "Vitiating", "(51-55)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 64, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskExtraLifeCostsMana5_"] = { type = "Prefix", affix = "Sapping", "(56-60)% increased Life Recovered", "Removes 10% of Life Recovered from Mana when used", statOrder = { 849, 871 }, level = 81, group = "FlaskExtraLifeCostsMana", weightKey = { "utility_flask", "mana_flask", "hybrid_flask", "default", }, weightVal = { 0, 0, 0, 600 }, modTags = { "flask", "resource", "life", "mana" }, }, + ["FlaskDispellsChill1"] = { type = "Suffix", affix = "of Heat", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 902, 902.1 }, level = 4, group = "FlaskDispellsChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "cold", "ailment" }, }, + ["FlaskDispellsBurning1"] = { type = "Suffix", affix = "of Dousing", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 904, 904.1 }, level = 6, group = "FlaskDispellsBurning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "fire", "ailment" }, }, + ["FlaskRemovesBleeding1"] = { type = "Suffix", affix = "of Staunching", "Grants Immunity to Bleeding for 4 seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for 4 seconds if used while affected by Corrupted Blood", statOrder = { 900, 900.1 }, level = 8, group = "FlaskRemovesBleeding", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "bleed", "physical", "attack", "ailment" }, }, + ["FlaskRemovesShock1"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for 4 seconds if used while Shocked", statOrder = { 910 }, level = 10, group = "FlaskRemovesShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, + ["FlaskExtraCharges1"] = { type = "Prefix", affix = "Wide", "+(16-19) to Maximum Charges", statOrder = { 837 }, level = 2, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskExtraCharges2__"] = { type = "Prefix", affix = "Plentiful", "+(20-23) to Maximum Charges", statOrder = { 837 }, level = 22, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskExtraCharges3_"] = { type = "Prefix", affix = "Bountiful", "+(24-27) to Maximum Charges", statOrder = { 837 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskExtraCharges4__"] = { type = "Prefix", affix = "Abundant", "+(28-31) to Maximum Charges", statOrder = { 837 }, level = 62, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskExtraCharges5"] = { type = "Prefix", affix = "Ample", "+(32-35) to Maximum Charges", statOrder = { 837 }, level = 82, group = "FlaskExtraMaxCharges", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercent1"] = { type = "Prefix", affix = "Constant", "(16-20)% increased Charge Recovery", statOrder = { 845 }, level = 3, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercent2_"] = { type = "Prefix", affix = "Continuous", "(21-25)% increased Charge Recovery", statOrder = { 845 }, level = 23, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercent3_"] = { type = "Prefix", affix = "Endless", "(26-30)% increased Charge Recovery", statOrder = { 845 }, level = 43, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercent4_"] = { type = "Prefix", affix = "Bottomless", "(31-45)% increased Charge Recovery", statOrder = { 845 }, level = 63, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercent5__"] = { type = "Prefix", affix = "Perpetual", "(46-50)% increased Charge Recovery", statOrder = { 845 }, level = 83, group = "FlaskIncreasedChargesAdded", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryReducedEffect1_"] = { type = "Prefix", affix = "Doled", "(37-42)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 20, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryReducedEffect2_"] = { type = "Prefix", affix = "Provisioned", "(43-48)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 36, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryReducedEffect3____"] = { type = "Prefix", affix = "Measured", "(49-54)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 52, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryReducedEffect4_"] = { type = "Prefix", affix = "Allocated", "(55-60)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 68, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryReducedEffect5"] = { type = "Prefix", affix = "Rationed", "(61-66)% increased Charge Recovery", "25% reduced effect", statOrder = { 845, 935 }, level = 84, group = "FlaskIncreasedRecoveryReducedEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffArmourWhileHealing1"] = { type = "Suffix", affix = "of the Abalone", "(41-45)% increased Armour during Effect", statOrder = { 936 }, level = 6, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, + ["FlaskBuffArmourWhileHealing2"] = { type = "Suffix", affix = "of the Tortoise", "(46-50)% increased Armour during Effect", statOrder = { 936 }, level = 32, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, + ["FlaskBuffArmourWhileHealing3"] = { type = "Suffix", affix = "of the Pangolin", "(51-55)% increased Armour during Effect", statOrder = { 936 }, level = 58, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, + ["FlaskBuffArmourWhileHealing4"] = { type = "Suffix", affix = "of the Armadillo", "(56-60)% increased Armour during Effect", statOrder = { 936 }, level = 84, group = "FlaskBuffArmourWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "armour" }, }, + ["FlaskBuffEvasionWhileHealing"] = { type = "Suffix", affix = "of the Gazelle", "(41-45)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 6, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, + ["FlaskBuffEvasionWhileHealing2"] = { type = "Suffix", affix = "of the Antelope", "(46-50)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 32, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, + ["FlaskBuffEvasionWhileHealing3_"] = { type = "Suffix", affix = "of the Ibex", "(51-55)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 58, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, + ["FlaskBuffEvasionWhileHealing4"] = { type = "Suffix", affix = "of the Impala", "(56-60)% increased Evasion Rating during Effect", statOrder = { 937 }, level = 84, group = "FlaskBuffEvasionWhileHealing", weightKey = { "expedition_flask", "utility_flask", "default", }, weightVal = { 0, 750, 0 }, modTags = { "flask", "defences", "evasion" }, }, + ["FlaskBuffMovementSpeedWhileHealing"] = { type = "Suffix", affix = "of the Hare", "(6-8)% increased Movement Speed during Effect", statOrder = { 946 }, level = 5, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, + ["FlaskBuffMovementSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Lynx", "(9-11)% increased Movement Speed during Effect", statOrder = { 946 }, level = 65, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, + ["FlaskBuffMovementSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Cheetah", "(12-14)% increased Movement Speed during Effect", statOrder = { 946 }, level = 85, group = "FlaskBuffMovementSpeedWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, + ["FlaskBuffStunRecoveryWhileHealing"] = { type = "Suffix", affix = "of Stiffness", "(51-56)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 1, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffStunRecoveryWhileHealing2"] = { type = "Suffix", affix = "of Bracing", "(57-62)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 19, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffStunRecoveryWhileHealing3"] = { type = "Suffix", affix = "of Ballast", "(63-68)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 37, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffStunRecoveryWhileHealing4"] = { type = "Suffix", affix = "of Counterpoise", "(69-74)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 55, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffStunRecoveryWhileHealing5"] = { type = "Suffix", affix = "of Stabilisation", "(75-80)% increased Block and Stun Recovery during Effect", statOrder = { 947 }, level = 73, group = "FlaskBuffStunRecoveryWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffResistancesWhileHealing"] = { type = "Suffix", affix = "of the Crystal", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 1, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, + ["FlaskBuffResistancesWhileHealing2"] = { type = "Suffix", affix = "of the Prism", "(12-14)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 21, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, }, + ["FlaskBuffResistancesWhileHealing3"] = { type = "Suffix", affix = "of the Kaleidoscope", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 41, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, + ["FlaskBuffResistancesWhileHealing4"] = { type = "Suffix", affix = "of Variegation", "(15-17)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 61, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "elemental", "resistance" }, }, + ["FlaskBuffResistancesWhileHealing5_"] = { type = "Suffix", affix = "of the Rainbow", "(18-20)% additional Elemental Resistances during Effect", statOrder = { 948 }, level = 81, group = "FlaskBuffResistancesWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "resistance" }, }, + ["FlaskBuffLifeLeechWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "2% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 949 }, level = 10, group = "FlaskBuffLifeLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, }, + ["FlaskBuffLifeLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Gluttony", "0.4% of Physical Attack Damage Leeched as Life during Effect", statOrder = { 952 }, level = 10, group = "FlaskBuffLifeLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life", "physical", "attack" }, }, + ["FlaskBuffManaLeechPermyriadWhileHealing"] = { type = "Suffix", affix = "of Craving", "0.4% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 954 }, level = 12, group = "FlaskBuffManaLeechPermyriadWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, }, + ["FlaskBuffKnockbackWhileHealing"] = { type = "Suffix", affix = "of Fending", "Adds Knockback to Melee Attacks during Effect", statOrder = { 955 }, level = 9, group = "FlaskBuffKnockbackWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack" }, }, + ["FlaskBuffWardWhileHealing1"] = { type = "Suffix", affix = "of Runegleaming", "(19-21)% increased Ward during Effect", statOrder = { 939 }, level = 12, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, + ["FlaskBuffWardWhileHealing2_"] = { type = "Suffix", affix = "of Runeshining", "(22-24)% increased Ward during Effect", statOrder = { 939 }, level = 26, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, + ["FlaskBuffWardWhileHealing3"] = { type = "Suffix", affix = "of Runeflaring", "(25-27)% increased Ward during Effect", statOrder = { 939 }, level = 52, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, + ["FlaskBuffWardWhileHealing4"] = { type = "Suffix", affix = "of Runeblazing", "(28-30)% increased Ward during Effect", statOrder = { 939 }, level = 78, group = "FlaskBuffWardWhileHealing", weightKey = { "expedition_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "defences" }, }, + ["FlaskHealsMinions1"] = { type = "Suffix", affix = "of the Novice", "Grants (100-119)% of Life Recovery to Minions", statOrder = { 850 }, level = 10, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, + ["FlaskHealsMinions2"] = { type = "Suffix", affix = "of the Acolyte", "Grants (120-139)% of Life Recovery to Minions", statOrder = { 850 }, level = 28, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, + ["FlaskHealsMinions3"] = { type = "Suffix", affix = "of the Summoner", "Grants (140-159)% of Life Recovery to Minions", statOrder = { 850 }, level = 46, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, + ["FlaskHealsMinions4____"] = { type = "Suffix", affix = "of the Conjurer", "Grants (160-179)% of Life Recovery to Minions", statOrder = { 850 }, level = 64, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, + ["FlaskHealsMinions5"] = { type = "Suffix", affix = "of the Necromancer", "Grants (180-200)% of Life Recovery to Minions", statOrder = { 850 }, level = 82, group = "FlaskHealsMinions", weightKey = { "utility_flask", "mana_flask", "default", }, weightVal = { 0, 0, 600 }, modTags = { "flask", "resource", "life", "minion" }, }, + ["FlaskFullRechargeOnCrit1"] = { type = "Prefix", affix = "Surgeon's", "Recharges 1 Charge when you deal a Critical Strike", statOrder = { 841 }, level = 8, group = "FlaskFullRechargeOnCrit", weightKey = { "critical_utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskChanceRechargeOnCrit1"] = { type = "Prefix", affix = "Medic's", "(11-15)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 8, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, + ["FlaskChanceRechargeOnCrit2"] = { type = "Prefix", affix = "Physician's", "(16-20)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 26, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, + ["FlaskChanceRechargeOnCrit3___"] = { type = "Prefix", affix = "Doctor's", "(21-25)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 44, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, + ["FlaskChanceRechargeOnCrit4"] = { type = "Prefix", affix = "Specialist's", "(26-30)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 62, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, + ["FlaskChanceRechargeOnCrit5"] = { type = "Prefix", affix = "Surgeon's", "(31-35)% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 80, group = "FlaskChanceRechargeOnCrit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask", "critical" }, }, + ["FlaskFullRechargeOnTakeCrit1"] = { type = "Prefix", affix = "Avenger's", "Recharges 5 Charges when you take a Critical Strike", statOrder = { 844 }, level = 12, group = "FlaskFullRechargeOnTakeCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "critical" }, }, + ["FlaskDispellsPoison1"] = { type = "Suffix", affix = "of Curing", "Grants Immunity to Poison for 4 seconds if used while Poisoned", statOrder = { 908 }, level = 16, group = "FlaskDispellsPoison", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "poison", "chaos", "ailment" }, }, + ["FlaskEffectReducedDuration1"] = { type = "Prefix", affix = "Abecedarian's", "(33-38)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskEffectReducedDuration2"] = { type = "Prefix", affix = "Dabbler's", "(28-32)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 50, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskEffectReducedDuration3"] = { type = "Prefix", affix = "Alchemist's", "(23-27)% reduced Duration", "25% increased effect", statOrder = { 857, 935 }, level = 80, group = "FlaskEffectReducedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskChargesUsed1"] = { type = "Prefix", affix = "Apprentice's", "(14-16)% reduced Charges per use", statOrder = { 846 }, level = 14, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesUsed2"] = { type = "Prefix", affix = "Scholar's", "(17-19)% reduced Charges per use", statOrder = { 846 }, level = 31, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesUsed3__"] = { type = "Prefix", affix = "Practitioner's", "(20-22)% reduced Charges per use", statOrder = { 846 }, level = 48, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesUsed4__"] = { type = "Prefix", affix = "Brewer's", "(23-25)% reduced Charges per use", statOrder = { 846 }, level = 65, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskChargesUsed5"] = { type = "Prefix", affix = "Chemist's", "(26-28)% reduced Charges per use", statOrder = { 846 }, level = 82, group = "FlaskChargesUsed", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedDuration2"] = { type = "Prefix", affix = "Investigator's", "(16-20)% increased Duration", statOrder = { 857 }, level = 20, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedDuration3_"] = { type = "Prefix", affix = "Analyst's", "(21-25)% increased Duration", statOrder = { 857 }, level = 36, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedDuration4"] = { type = "Prefix", affix = "Examiner's", "(26-30)% increased Duration", statOrder = { 857 }, level = 52, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedDuration5__"] = { type = "Prefix", affix = "Clinician's", "(31-35)% increased Duration", statOrder = { 857 }, level = 68, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, + ["FlaskIncreasedDuration6"] = { type = "Prefix", affix = "Experimenter's", "(36-40)% increased Duration", statOrder = { 857 }, level = 84, group = "FlaskUtilityIncreasedDuration", weightKey = { "utility_flask", "critical_utility_flask", "default", }, weightVal = { 600, 600, 0 }, modTags = { "flask" }, }, + ["FlaskFullRechargeOnHit1"] = { type = "Prefix", affix = "Delinquent's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 840 }, level = 12, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, + ["FlaskFullRechargeOnHit2_"] = { type = "Prefix", affix = "Transgressor's", "Gain 1 Charge when you are Hit by an Enemy", statOrder = { 840 }, level = 29, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskFullRechargeOnHit3_"] = { type = "Prefix", affix = "Sinner's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 46, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, + ["FlaskFullRechargeOnHit4_"] = { type = "Prefix", affix = "Masochist's", "Gain 2 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 63, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskFullRechargeOnHit5___"] = { type = "Prefix", affix = "Flagellant's", "Gain 3 Charges when you are Hit by an Enemy", statOrder = { 840 }, level = 80, group = "FlaskFullRechargeOnHit", weightKey = { "default", }, weightVal = { 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedHealingCharges1"] = { type = "Prefix", affix = "Nitrate", "(20-25)% increased Charges per use", "(21-26)% increased Amount Recovered", statOrder = { 846, 854 }, level = 10, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedHealingCharges2"] = { type = "Prefix", affix = "Dolomite", "(20-25)% increased Charges per use", "(27-32)% increased Amount Recovered", statOrder = { 846, 854 }, level = 28, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedHealingCharges3"] = { type = "Prefix", affix = "Kieserite", "(20-25)% increased Charges per use", "(33-38)% increased Amount Recovered", statOrder = { 846, 854 }, level = 46, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedHealingCharges4____"] = { type = "Prefix", affix = "Kainite", "(20-25)% increased Charges per use", "(39-44)% increased Amount Recovered", statOrder = { 846, 854 }, level = 64, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskIncreasedHealingCharges5"] = { type = "Prefix", affix = "Gypsum", "(20-25)% increased Charges per use", "(45-50)% increased Amount Recovered", statOrder = { 846, 854 }, level = 82, group = "FlaskIncreasedHealingCharges", weightKey = { "utility_flask", "default", }, weightVal = { 0, 600 }, modTags = { "flask" }, }, + ["FlaskManaRecoveryAtEnd1_"] = { type = "Prefix", affix = "Foreboding", "66% increased Amount Recovered", "Mana Recovery occurs instantly at the end of Effect", statOrder = { 854, 865 }, level = 16, group = "FlaskManaRecoveryAtEnd", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskEffectNotRemovedOnFullMana1"] = { type = "Prefix", affix = "Enduring", "66% reduced Amount Recovered", "Effect is not removed when Unreserved Mana is Filled", "Effect does not Queue", statOrder = { 854, 864, 864.1 }, level = 16, group = "FlaskEffectNotRemovedOnFullManaReducedRecovery", weightKey = { "utility_flask", "life_flask", "default", }, weightVal = { 0, 0, 3000 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffAttackLifeLeechWhileHealing1"] = { type = "Suffix", affix = "of Bloodshed", "0.4% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 10, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, + ["FlaskBuffAttackLifeLeechWhileHealing2"] = { type = "Suffix", affix = "of Gore", "0.5% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 20, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, + ["FlaskBuffAttackLifeLeechWhileHealing3"] = { type = "Suffix", affix = "of Carnage", "0.6% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 40, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, + ["FlaskBuffAttackLifeLeechWhileHealing4"] = { type = "Suffix", affix = "of Butchery", "0.7% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 60, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, + ["FlaskBuffAttackLifeLeechWhileHealing5"] = { type = "Suffix", affix = "of Bloodletting", "0.8% of Attack Damage Leeched as Life during Effect", statOrder = { 951 }, level = 80, group = "FlaskBuffAttackLifeLeechWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "resource", "life", "attack" }, }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing1"] = { type = "Suffix", affix = "of Diverting", "0.4% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 10, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing2_"] = { type = "Suffix", affix = "of Depletion", "0.5% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 20, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing3_____"] = { type = "Suffix", affix = "of Tapping", "0.6% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 40, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing4"] = { type = "Suffix", affix = "of Siphoning", "0.7% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 60, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, + ["FlaskBuffSpellEnergyShieldLeechWhileHealing5"] = { type = "Suffix", affix = "of Draining", "0.8% of Spell Damage Leeched as Energy Shield during Effect", statOrder = { 950 }, level = 80, group = "FlaskBuffSpellEnergyShieldLeechWhileHealing", weightKey = { "utility_flask", "expedition_flask", "default", }, weightVal = { 600, 0, 0 }, modTags = { "flask", "defences", "energy_shield", "caster" }, }, + ["FlaskBuffAttackSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Falcon", "(9-11)% increased Attack Speed during Effect", statOrder = { 944 }, level = 12, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, + ["FlaskBuffAttackSpeedWhileHealing2_____"] = { type = "Suffix", affix = "of the Eagle", "(12-14)% increased Attack Speed during Effect", statOrder = { 944 }, level = 62, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, + ["FlaskBuffAttackSpeedWhileHealing3_"] = { type = "Suffix", affix = "of the Dove", "(15-17)% increased Attack Speed during Effect", statOrder = { 944 }, level = 82, group = "FlaskBuffAttackSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "speed" }, }, + ["FlaskBuffCastSpeedWhileHealing1"] = { type = "Suffix", affix = "of the Albatross", "(9-11)% increased Cast Speed during Effect", statOrder = { 945 }, level = 12, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, + ["FlaskBuffCastSpeedWhileHealing2"] = { type = "Suffix", affix = "of the Hummingbird", "(12-14)% increased Cast Speed during Effect", statOrder = { 945 }, level = 62, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, + ["FlaskBuffCastSpeedWhileHealing3"] = { type = "Suffix", affix = "of the Horsefly", "(15-17)% increased Cast Speed during Effect", statOrder = { 945 }, level = 82, group = "FlaskBuffCastSpeedWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "caster", "speed" }, }, + ["FlaskBuffAccuracyWhileHealing1__"] = { type = "Suffix", affix = "of the Monkey", "(15-25)% increased Accuracy Rating during Effect", statOrder = { 943 }, level = 12, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, + ["FlaskBuffAccuracyWhileHealing2"] = { type = "Suffix", affix = "of the Raccoon", "(26-35)% increased Accuracy Rating during Effect", statOrder = { 943 }, level = 42, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, + ["FlaskBuffAccuracyWhileHealing3"] = { type = "Suffix", affix = "of the Crow", "(35-45)% increased Accuracy Rating during Effect", statOrder = { 943 }, level = 72, group = "FlaskBuffAccuracyWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "attack" }, }, + ["FlaskBuffCriticalChanceWhileHealing1_"] = { type = "Suffix", affix = "of Stinging", "(26-31)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 18, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskBuffCriticalChanceWhileHealing2_"] = { type = "Suffix", affix = "of Piercing", "(32-37)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 34, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskBuffCriticalChanceWhileHealing3"] = { type = "Suffix", affix = "of Rupturing", "(38-43)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 50, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskBuffCriticalChanceWhileHealing4__"] = { type = "Suffix", affix = "of Penetrating", "(44-49)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 66, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskBuffCriticalChanceWhileHealing5"] = { type = "Suffix", affix = "of Incision", "(50-55)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 82, group = "FlaskBuffCriticalWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask", "critical" }, }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing1_"] = { type = "Suffix", affix = "of Foisting", "(19-22)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 12, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing2____"] = { type = "Suffix", affix = "of Imposing", "(23-26)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 32, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing3"] = { type = "Suffix", affix = "of Wreaking", "(27-30)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 52, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["FlaskBuffFreezeShockIgniteChanceWhileHealing4_"] = { type = "Suffix", affix = "of Infliction", "(31-34)% chance to Freeze, Shock and Ignite during Effect", statOrder = { 974 }, level = 72, group = "FlaskBuffFreezeShockIgniteChanceWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 750, 0 }, modTags = { "flask", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["FlaskBuffAvoidStunWhileHealing1_"] = { type = "Suffix", affix = "of Composure", "(31-35)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 12, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidStunWhileHealing2"] = { type = "Suffix", affix = "of Surefootedness", "(36-40)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 29, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidStunWhileHealing3"] = { type = "Suffix", affix = "of Persistence", "(41-45)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 46, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidStunWhileHealing4"] = { type = "Suffix", affix = "of Relentlessness", "(46-50)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 63, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidStunWhileHealing5"] = { type = "Suffix", affix = "of Tenaciousness", "(51-55)% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 80, group = "FlaskBuffAvoidStunWhileHealing", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffReducedManaCostWhileHealing1_"] = { type = "Suffix", affix = "of the Pupil", "(11-14)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 12, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffReducedManaCostWhileHealing2__"] = { type = "Suffix", affix = "of the Initiate", "(15-18)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 29, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffReducedManaCostWhileHealing3"] = { type = "Suffix", affix = "of the Mage", "(19-21)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 46, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffReducedManaCostWhileHealing4"] = { type = "Suffix", affix = "of the Arcanist", "(22-25)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 63, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffReducedManaCostWhileHealing5"] = { type = "Suffix", affix = "of the Sorcerer", "(26-29)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 80, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffChillFreezeDuration1"] = { type = "Suffix", affix = "of the Rabbit", "(36-41)% reduced Effect of Chill on you during Effect", "(36-41)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 4, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffChillFreezeDuration2_"] = { type = "Suffix", affix = "of the Cat", "(42-47)% reduced Effect of Chill on you during Effect", "(42-47)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 23, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffChillFreezeDuration3_"] = { type = "Suffix", affix = "of the Fox", "(48-52)% reduced Effect of Chill on you during Effect", "(48-52)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 42, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffChillFreezeDuration4"] = { type = "Suffix", affix = "of the Sable", "(52-59)% reduced Effect of Chill on you during Effect", "(52-59)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 61, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffChillFreezeDuration5"] = { type = "Suffix", affix = "of the Bear", "(60-65)% reduced Effect of Chill on you during Effect", "(60-65)% reduced Freeze Duration on you during Effect", statOrder = { 1004, 1006 }, level = 80, group = "FlaskBuffChillFreezeDuration", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffShockEffect1"] = { type = "Suffix", affix = "of the Plover", "(36-41)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 6, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffShockEffect2"] = { type = "Suffix", affix = "of the Sandpiper", "(42-47)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 25, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffShockEffect3___"] = { type = "Suffix", affix = "of the Cormorant", "(48-52)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 44, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffShockEffect4"] = { type = "Suffix", affix = "of the Sanderling", "(52-59)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 63, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffShockEffect5"] = { type = "Suffix", affix = "of the Heron", "(60-65)% reduced Effect of Shock on you during Effect", statOrder = { 1009 }, level = 82, group = "FlaskBuffShockEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffCurseEffect1"] = { type = "Suffix", affix = "of the Petrel", "(36-41)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 8, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffCurseEffect2"] = { type = "Suffix", affix = "of the Mockingbird", "(42-47)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 27, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffCurseEffect3_"] = { type = "Suffix", affix = "of the Curlew", "(48-52)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 46, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffCurseEffect4"] = { type = "Suffix", affix = "of the Kakapo", "(52-59)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 65, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffCurseEffect5"] = { type = "Suffix", affix = "of the Owl", "(60-65)% reduced Effect of Curses on you during Effect", statOrder = { 1005 }, level = 84, group = "FlaskBuffCurseEffect", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffBleedDuration1"] = { type = "Suffix", affix = "[UNUSED] Bleed duration 1", "(35-45)% reduced Bleeding Duration on you during Effect", statOrder = { 1003 }, level = 8, group = "FlaskBuffBleedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, + ["FlaskBuffPoisonDuration1"] = { type = "Suffix", affix = "[UNUSED] Poison duration 1", "(35-45)% reduced Poison Duration on you during Effect", statOrder = { 1008 }, level = 16, group = "FlaskBuffPoisonDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, + ["FlaskBuffIgniteDuration1_"] = { type = "Suffix", affix = "[UNUSED] Ignite duration 1", "(35-45)% reduced Ignite Duration on you during Effect", statOrder = { 1007 }, level = 6, group = "FlaskBuffIgniteDuration", weightKey = { "utility_flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidChillFreeze1_"] = { type = "Suffix", affix = "of the Orca", "(31-35)% chance to Avoid being Chilled during Effect", "(31-35)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 4, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidChillFreeze2"] = { type = "Suffix", affix = "of the Sea Lion", "(36-40)% chance to Avoid being Chilled during Effect", "(36-40)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 23, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidChillFreeze3"] = { type = "Suffix", affix = "of the Narwhal", "(41-45)% chance to Avoid being Chilled during Effect", "(41-45)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 42, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidChillFreeze4"] = { type = "Suffix", affix = "of the Beluga", "(46-50)% chance to Avoid being Chilled during Effect", "(46-50)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 61, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidChillFreeze5"] = { type = "Suffix", affix = "of the Seal", "(51-55)% chance to Avoid being Chilled during Effect", "(51-55)% chance to Avoid being Frozen during Effect", statOrder = { 963, 964 }, level = 80, group = "FlaskBuffAvoidChillFreeze", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidIgnite1"] = { type = "Suffix", affix = "of the Guppy", "(31-35)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 6, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidIgnite2"] = { type = "Suffix", affix = "of the Goldfish", "(36-40)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 25, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidIgnite3"] = { type = "Suffix", affix = "of the Carp", "(41-45)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 44, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidIgnite4___"] = { type = "Suffix", affix = "of the Catfish", "(46-50)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 63, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidIgnite5_"] = { type = "Suffix", affix = "of the Sunfish", "(51-55)% chance to Avoid being Ignited during Effect", statOrder = { 965 }, level = 82, group = "FlaskBuffAvoidIgnite", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidShock1"] = { type = "Suffix", affix = "of Tree Moss", "(31-35)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 6, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidShock2_"] = { type = "Suffix", affix = "of Turf Moss", "(36-40)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 25, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidShock3"] = { type = "Suffix", affix = "of Tooth Moss", "(41-45)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 44, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidShock4_____"] = { type = "Suffix", affix = "of Plume Moss", "(46-50)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 63, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBuffAvoidShock5"] = { type = "Suffix", affix = "of Bog Moss", "(51-55)% chance to Avoid being Shocked during Effect", statOrder = { 966 }, level = 82, group = "FlaskBuffAvoidShock", weightKey = { "utility_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskCurseImmunity1"] = { type = "Suffix", affix = "of Warding", "Removes Curses on use", statOrder = { 897 }, level = 18, group = "FlaskCurseImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 3000 }, modTags = { "flask", "caster", "curse" }, }, + ["LocalManaFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 30, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalManaFlaskHinderNearbyEnemies2"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 48, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalManaFlaskHinderNearbyEnemies3"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 66, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalManaFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Mana", statOrder = { 913 }, level = 84, group = "LocalManaFlaskHinderNearbyEnemies", weightKey = { "life_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalLifeFlaskHinderNearbyEnemies1_"] = { type = "Suffix", affix = "of Interference", "Hinders nearby Enemies with (17-22)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 30, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalLifeFlaskHinderNearbyEnemies2_"] = { type = "Suffix", affix = "of Obstruction", "Hinders nearby Enemies with (23-28)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 48, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalLifeFlaskHinderNearbyEnemies3_"] = { type = "Suffix", affix = "of Occlusion", "Hinders nearby Enemies with (29-34)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 66, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalLifeFlaskHinderNearbyEnemies4"] = { type = "Suffix", affix = "of Restraint", "Hinders nearby Enemies with (35-40)% reduced Movement Speed if used while not on Full Life", statOrder = { 912 }, level = 84, group = "LocalLifeFlaskHinderNearbyEnemies", weightKey = { "mana_flask", "utility_flask", "default", }, weightVal = { 0, 0, 750 }, modTags = { "flask", "caster" }, }, + ["LocalFlaskImmuneToMaimAndHinder1"] = { type = "Suffix", affix = "of Movement", "Grants Immunity to Hinder for (6-8) seconds if used while Hindered", "Grants Immunity to Maim for (6-8) seconds if used while Maimed", statOrder = { 906, 907 }, level = 16, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, + ["LocalFlaskImmuneToMaimAndHinder2"] = { type = "Suffix", affix = "of Motion", "Grants Immunity to Hinder for (9-11) seconds if used while Hindered", "Grants Immunity to Maim for (9-11) seconds if used while Maimed", statOrder = { 906, 907 }, level = 38, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, + ["LocalFlaskImmuneToMaimAndHinder3"] = { type = "Suffix", affix = "of Freedom", "Grants Immunity to Hinder for (12-14) seconds if used while Hindered", "Grants Immunity to Maim for (12-14) seconds if used while Maimed", statOrder = { 906, 907 }, level = 60, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, + ["LocalFlaskImmuneToMaimAndHinder4"] = { type = "Suffix", affix = "of Liberation", "Grants Immunity to Hinder for (15-17) seconds if used while Hindered", "Grants Immunity to Maim for (15-17) seconds if used while Maimed", statOrder = { 906, 907 }, level = 82, group = "LocalFlaskImmuneToMaimAndHinder", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask", "attack", "caster" }, }, + ["LocalLifeFlaskAdditionalLifeRecovery1"] = { type = "Suffix", affix = "of Abundance", "Recover an additional (11-16)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 25, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["LocalLifeFlaskAdditionalLifeRecovery2__"] = { type = "Suffix", affix = "of Plenty", "Recover an additional (17-22)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 39, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["LocalLifeFlaskAdditionalLifeRecovery3"] = { type = "Suffix", affix = "of Bounty", "Recover an additional (23-28)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 53, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["LocalLifeFlaskAdditionalLifeRecovery4"] = { type = "Suffix", affix = "of Incessance", "Recover an additional (29-34)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 67, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["LocalLifeFlaskAdditionalLifeRecovery5_"] = { type = "Suffix", affix = "of Perenniality", "Recover an additional (35-40)% of Flask's Life Recovery Amount over 10 seconds if used while not on Full Life", statOrder = { 899 }, level = 81, group = "LocalLifeFlaskAdditionalLifeRecovery", weightKey = { "life_flask", "default", }, weightVal = { 600, 0 }, modTags = { "flask" }, }, + ["FlaskBleedCorruptingBloodImmunity1"] = { type = "Suffix", affix = "of Sealing", "Grants Immunity to Bleeding for (6-8) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (6-8) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 8, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskBleedCorruptingBloodImmunity2"] = { type = "Suffix", affix = "of Alleviation", "Grants Immunity to Bleeding for (9-11) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (9-11) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 32, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskBleedCorruptingBloodImmunity3______"] = { type = "Suffix", affix = "of Allaying", "Grants Immunity to Bleeding for (12-14) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (12-14) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 56, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskBleedCorruptingBloodImmunity4_"] = { type = "Suffix", affix = "of Assuaging", "Grants Immunity to Bleeding for (15-17) seconds if used while Bleeding", "Grants Immunity to Corrupted Blood for (15-17) seconds if used while affected by Corrupted Blood", statOrder = { 901, 901.1 }, level = 80, group = "FlaskBleedCorruptingBloodImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskShockImmunity1"] = { type = "Suffix", affix = "of Earthing", "Grants Immunity to Shock for (6-8) seconds if used while Shocked", statOrder = { 911 }, level = 6, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskShockImmunity2"] = { type = "Suffix", affix = "of Grounding", "Grants Immunity to Shock for (9-11) seconds if used while Shocked", statOrder = { 911 }, level = 30, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskShockImmunity3"] = { type = "Suffix", affix = "of Insulation", "Grants Immunity to Shock for (12-14) seconds if used while Shocked", statOrder = { 911 }, level = 54, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskShockImmunity4_"] = { type = "Suffix", affix = "of the Dielectric", "Grants Immunity to Shock for (15-17) seconds if used while Shocked", statOrder = { 911 }, level = 78, group = "FlaskShockImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskChillFreezeImmunity1"] = { type = "Suffix", affix = "of Convection", "Grants Immunity to Chill for (6-8) seconds if used while Chilled", "Grants Immunity to Freeze for (6-8) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 4, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskChillFreezeImmunity2"] = { type = "Suffix", affix = "of Thermodynamics", "Grants Immunity to Chill for (9-11) seconds if used while Chilled", "Grants Immunity to Freeze for (9-11) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 28, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskChillFreezeImmunity3"] = { type = "Suffix", affix = "of Entropy", "Grants Immunity to Chill for (12-14) seconds if used while Chilled", "Grants Immunity to Freeze for (12-14) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 52, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskChillFreezeImmunity4"] = { type = "Suffix", affix = "of Thawing", "Grants Immunity to Chill for (15-17) seconds if used while Chilled", "Grants Immunity to Freeze for (15-17) seconds if used while Frozen", statOrder = { 903, 903.1 }, level = 76, group = "FlaskChillFreezeImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunity1"] = { type = "Suffix", affix = "of Damping", "Grants Immunity to Ignite for (6-8) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 6, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunity2_"] = { type = "Suffix", affix = "of Quashing", "Grants Immunity to Ignite for (9-11) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 30, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunity3_"] = { type = "Suffix", affix = "of Quelling", "Grants Immunity to Ignite for (12-14) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 54, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunity4"] = { type = "Suffix", affix = "of Quenching", "Grants Immunity to Ignite for (15-17) seconds if used while Ignited", "Removes all Burning when used", statOrder = { 905, 905.1 }, level = 78, group = "FlaskIgniteImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunity1__"] = { type = "Suffix", affix = "of the Antitoxin", "Grants Immunity to Poison for (6-8) seconds if used while Poisoned", statOrder = { 909 }, level = 16, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunity2"] = { type = "Suffix", affix = "of the Remedy", "Grants Immunity to Poison for (9-11) seconds if used while Poisoned", statOrder = { 909 }, level = 38, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunity3"] = { type = "Suffix", affix = "of the Cure", "Grants Immunity to Poison for (12-14) seconds if used while Poisoned", statOrder = { 909 }, level = 60, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunity4"] = { type = "Suffix", affix = "of the Antidote", "Grants Immunity to Poison for (15-17) seconds if used while Poisoned", statOrder = { 909 }, level = 82, group = "FlaskPoisonImmunity", weightKey = { "utility_flask", "default", }, weightVal = { 0, 750 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunityDuringEffect"] = { type = "Suffix", affix = "of the Skunk", "(45-49)% less Duration", "Immunity to Poison during Effect", statOrder = { 858, 986 }, level = 16, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Hedgehog", "(40-44)% less Duration", "Immunity to Poison during Effect", statOrder = { 858, 986 }, level = 46, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskPoisonImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Opossum", "(35-39)% less Duration", "Immunity to Poison during Effect", statOrder = { 858, 986 }, level = 76, group = "FlaskPoisonImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskShockImmunityDuringEffect"] = { type = "Suffix", affix = "of the Conger", "(45-49)% less Duration", "Immunity to Shock during Effect", statOrder = { 858, 987 }, level = 6, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskShockImmunityDuringEffect2___"] = { type = "Suffix", affix = "of the Moray", "(40-44)% less Duration", "Immunity to Shock during Effect", statOrder = { 858, 987 }, level = 40, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskShockImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Eel", "(35-39)% less Duration", "Immunity to Shock during Effect", statOrder = { 858, 987 }, level = 74, group = "FlaskShockImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskFreezeAndChillImmunityDuringEffect"] = { type = "Suffix", affix = "of the Deer", "(45-49)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 858, 985 }, level = 4, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskFreezeAndChillImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Walrus", "(40-44)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 858, 985 }, level = 38, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskFreezeAndChillImmunityDuringEffect3__"] = { type = "Suffix", affix = "of the Penguin", "(35-39)% less Duration", "Immunity to Freeze and Chill during Effect", statOrder = { 858, 985 }, level = 72, group = "FlaskFreezeAndChillImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunityDuringEffect_"] = { type = "Suffix", affix = "of the Urchin", "(45-49)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 858, 916, 916.1 }, level = 6, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunityDuringEffect2"] = { type = "Suffix", affix = "of the Mussel", "(40-44)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 858, 916, 916.1 }, level = 40, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskIgniteImmunityDuringEffect3"] = { type = "Suffix", affix = "of the Starfish", "(35-39)% less Duration", "Immunity to Ignite during Effect", "Removes Burning on use", statOrder = { 858, 916, 916.1 }, level = 74, group = "FlaskIgniteImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect_1"] = { type = "Suffix", affix = "of the Lizard", "(45-49)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 858, 983 }, level = 8, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect2_"] = { type = "Suffix", affix = "of the Skink", "(40-44)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 858, 983 }, level = 42, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["FlaskBleedingAndCorruptedBloodImmunityDuringEffect3___"] = { type = "Suffix", affix = "of the Iguana", "(35-39)% less Duration", "Immunity to Bleeding and Corrupted Blood during Effect", statOrder = { 858, 983 }, level = 76, group = "FlaskBleedingAndCorruptedBloodImmunityDuringEffect", weightKey = { "utility_flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, } \ No newline at end of file diff --git a/src/Data/ModFoulborn.lua b/src/Data/ModFoulborn.lua index d31bcf884a..6ae4c84ee2 100644 --- a/src/Data/ModFoulborn.lua +++ b/src/Data/ModFoulborn.lua @@ -2,345 +2,345 @@ -- Item data (c) Grinding Gear Games return { - ["MutatedUniqueBow4BowAttacksUsableWithoutMana"] = { affix = "", "Insufficient Mana doesn't prevent your Bow Attacks", statOrder = { 5269 }, level = 1, group = "BowAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "attack" }, }, - ["MutatedUniqueBow4AreaOfEffect"] = { affix = "", "(40-60)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueHelmetDex3ChaosResistance"] = { affix = "", "+(50-75)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, }, - ["MutatedUniqueHelmetDex5LocalIncreaseSocketedMinionGemLevel"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, }, - ["MutatedUniqueHelmetDex5LifeReservationEfficiency"] = { affix = "", "32% increased Life Reservation Efficiency of Skills", statOrder = { 2231 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, - ["MutatedUniqueBow18FasterIgnite"] = { affix = "", "Ignites you inflict deal Damage (20-40)% faster", statOrder = { 2569 }, level = 1, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "ailment" }, }, - ["MutatedUniqueBow19SupportedByImmolate"] = { affix = "", "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 314 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueBow19AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4630 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, }, - ["MutatedUniqueHelmetStr4FireDamageTakenAsPhysical"] = { affix = "", "30% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2450 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, }, - ["MutatedUniqueHelmetStr4TotemLifeIncreasedByOvercappedFireResistance"] = { affix = "", "Totem Life is increased by their Overcapped Fire Resistance", statOrder = { 10395 }, level = 1, group = "TotemLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, }, - ["MutatedUniqueHelmetStr5SupportedByMinionLife"] = { affix = "", "Socketed Gems are Supported by Level 30 Minion Life", statOrder = { 509 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueAmulet37PhysicalDamageTakenAsFire"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, }, - ["MutatedUniqueAmulet37NearbyEnemiesDebilitated"] = { affix = "", "Nearby Enemies are Debilitated", statOrder = { 7912 }, level = 1, group = "NearbyEnemiesDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueAmulet38KeystoneElementalOverload"] = { affix = "", "Elemental Overload", statOrder = { 10781 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "critical" }, }, - ["MutatedUniqueWand15PowerChargeOnManaSpent"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7897 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, }, - ["MutatedUniqueWand15GlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "caster", "gem" }, }, - ["MutatedUniqueWand16ColdDamageOverTimeMultiplierPerPowerCharge"] = { affix = "", "+(15-20)% to Cold Damage over Time Multiplier per Power Charge", statOrder = { 5811 }, level = 1, group = "ColdDamageOverTimeMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold" }, }, - ["MutatedUniqueBodyDex10PurityOfIceNoReservation"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9772 }, level = 1, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, }, - ["MutatedUniqueBodyDex10EvasionRatingPer10PlayerLife"] = { affix = "", "+6 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6488 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, }, - ["MutatedUniqueBodyDex11GhostDance"] = { affix = "", "Ghost Dance", statOrder = { 10785 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "evasion", "energy_shield" }, }, - ["MutatedUniqueBodyDex11EvasionRatingPer10PlayerLife"] = { affix = "", "+8 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6488 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, }, - ["MutatedUniqueAmulet39PhysicalDamageTakenAsCold"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "cold" }, }, - ["MutatedUniqueAmulet39CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1843 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, }, - ["MutatedUniqueAmulet40CannotBeChilled"] = { affix = "", "Cannot be Chilled", statOrder = { 1842 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, - ["MutatedUniqueClaw16PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, - ["MutatedUniqueClaw16AccuracyRatingPercentPer25Intelligence"] = { affix = "", "3% increased Accuracy Rating per 25 Intelligence", statOrder = { 4515 }, level = 1, group = "AccuracyRatingPercentPer25Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueClaw17PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, - ["MutatedUniqueClaw17CriticalStrikeMultiplierPer25Dexterity"] = { affix = "", "+3% to Critical Strike Multiplier per 25 Dexterity", statOrder = { 5954 }, level = 1, group = "CriticalStrikeMultiplierPer25Dexterity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, }, - ["MutatedUniqueShieldInt8DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueShieldInt8AlwaysShockLowLifeEnemies"] = { affix = "", "Hits always Shock Enemies that are on Low Life", statOrder = { 4663 }, level = 1, group = "AlwaysShockLowLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, - ["MutatedUniqueShieldInt9DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueShieldInt9ChaosDamageDoesNotBypassESWhileNotLowMana"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Mana", statOrder = { 5735 }, level = 1, group = "ChaosDamageDoesNotBypassESWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield", "chaos" }, }, - ["MutatedUniqueAmulet41MaximumLightningResistance"] = { affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "resistance" }, }, - ["MutatedUniqueAmulet41EnemyExtraDamageRolls"] = { affix = "", "Damage of Enemies Hitting you is Unlucky", statOrder = { 5017 }, level = 1, group = "EnemyExtraDamageRolls", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueAmulet42ManaIncreasedPerOvercappedLightningResistUniqueAmulet42"] = { affix = "", "Mana is increased by 1% per 4% Overcapped Lightning Resistance", statOrder = { 8186 }, level = 1, group = "ManaIncreasedPerOvercappedLightningResistUniqueAmulet42", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "lightning" }, }, - ["MutatedUniqueBootsStr6IncreasedArmourWhileBleeding"] = { affix = "", "(50-100)% increased Armour while Bleeding", statOrder = { 4778 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, }, - ["MutatedUniqueBootsStr6ImmuneToElementalAilmentsWhileBleeding"] = { affix = "", "Immune to Elemental Ailments while Bleeding", statOrder = { 7228 }, level = 1, group = "ImmuneToElementalAilmentsWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, - ["MutatedUniqueBootsStr7GainEnduranceChargeEveryXSecondsWhileStationary"] = { affix = "", "Gain an Endurance Charge each second while Stationary", statOrder = { 6712 }, level = 1, group = "GainEnduranceChargePerXSecondsWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, }, - ["MutatedUniqueBottsStr7GainPowerChargeOnHitWhileBleeding"] = { affix = "", "Gain a Power Charge on Hit while Bleeding", statOrder = { 6811 }, level = 1, group = "GainPowerChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique", "ailment" }, }, - ["MutatedUniqueTwoHandAxe11WarcriesExertAnAdditionalAttack"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10569 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueTwoHandAxe11WarcryCooldownSpeed"] = { affix = "", "500% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueTwoHandAxe12PercentageIntelligence"] = { affix = "", "80% reduced Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, - ["MutatedUniqueTwoHandAxe12FasterBleedDamage"] = { affix = "", "Bleeding you inflict deals Damage (20-40)% faster", statOrder = { 6549 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, }, - ["MutatedUniqueShieldStr8MaximumBlockChance"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, }, - ["MutatedUniqueShieldStr8ArmourAppliesToElementalIfBlockedRecently"] = { affix = "", "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4754 }, level = 1, group = "ArmourAppliesToElementalIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences" }, }, - ["MutatedUniqueShieldStr9GainEnergyShieldOnBlock"] = { affix = "", "Gain (300-650) Energy Shield when you Block", statOrder = { 1764 }, level = 1, group = "GainEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences", "energy_shield" }, }, - ["MutatedUniqueOneHandSword22MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3384 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, }, - ["MutatedUniqueOneHandSword23MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3384 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, }, - ["MutatedUniqueOneHandSword22MinionBaseCriticalStrikeChance"] = { affix = "", "Minions have +5% to Critical Strike Chance", statOrder = { 9270 }, level = 1, group = "MinionBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "critical" }, }, - ["MutatedUniqueOneHandSword23MinionSkillGemQuality"] = { affix = "", "+(20-30)% to Quality of all Minion Skill Gems", statOrder = { 9334 }, level = 1, group = "MinionSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, }, - ["MutatedUniqueBodyInt13SocketedGemQuality"] = { affix = "", "+20% to Quality of Socketed Gems", statOrder = { 209 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, - ["MutatedUniqueBodyInt13IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4634 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, }, - ["MutatedUniqueBodyInt14aSocketedGemQuality"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 209 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, - ["MutatedUniqueBodyInt14IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4634 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, }, - ["MutatedUniqueBodyDexInt1DisplaySocketedGemsSupportedByIntensify"] = { affix = "", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 411 }, level = 1, group = "DisplaySocketedGemsSupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueBodyDexInt1AuraEffectOnEnemies"] = { affix = "", "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3572 }, level = 1, group = "AuraEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, }, - ["MutatedUniqueGlovesInt4DisplaySocketedGemsSupportedByFocusedChannelling"] = { affix = "", "Socketed Gems are Supported by Level 18 Focused Channelling", statOrder = { 508 }, level = 1, group = "DisplaySocketedGemsSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueBelt7CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2044 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyInt12HeraldOfDoom"] = { affix = "", "Lone Messenger", statOrder = { 10788 }, level = 1, group = "KeystoneHeraldOfDoom", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyInt12HeraldEffectOnSelf"] = { affix = "", "(80-100)% increased Effect of Herald Buffs on you", statOrder = { 7109 }, level = 1, group = "HeraldEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyInt16LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, - ["MutatedUniqueShieldStrDex7LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, - ["MutatedUniqueFishingRod1FishingMutatedFish"] = { affix = "", "You can catch Foulborn Fish", statOrder = { 5390 }, level = 1, group = "FishingMutatedFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueFishingRod1FishingLureType"] = { affix = "", "Wombgift Bait", statOrder = { 2851 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueFishingRod2AvoidInterruptionWhileCasting"] = { affix = "", "(30-40)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueFishingRod2FishingLureType"] = { affix = "", "Otherworldly Lure", statOrder = { 2851 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueRing9IncreasedAttackSpeedWhenOnLowLife"] = { affix = "", "(12-16)% increased Attack Speed when on Low Life", statOrder = { 1226 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, - ["MutatedUniqueBodyDex6DamageTaken"] = { affix = "", "25% increased Damage taken", statOrder = { 2243 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueWand2MaximumGolems"] = { affix = "", "+2 to maximum number of Summoned Golems", statOrder = { 3695 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, - ["MutatedUniqueShieldDex9TreatElementalResistanceAsInverted"] = { affix = "", "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10425 }, level = 1, group = "TreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental" }, }, - ["MutatedUniqueGlovesDex2ActionSpeedMinimum90"] = { affix = "", "Your Action Speed is at least 90% of base value", statOrder = { 176 }, level = 1, group = "ActionSpeedMinimum90", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, - ["MutatedUniqueGlovesDex2CriticalStrikesNonDamagingAilmentEffect"] = { affix = "", "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9502 }, level = 1, group = "CriticalStrikesNonDamagingAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, }, - ["MutatedUniqueOneHandMace3AreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueHelmetStrDex3WarcryBuffEffect"] = { affix = "", "(20-35)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 1, group = "WarcryBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueHelmetStrDex3WarcryCooldownSpeed"] = { affix = "", "(20-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueOneHandMace3LightningBoltOnHit"] = { affix = "", "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown", statOrder = { 778 }, level = 1, group = "LightningBoltOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "elemental", "lightning" }, }, - ["MutatedUniqueClaw13CrushOnHitChance"] = { affix = "", "25% chance to Crush on Hit", statOrder = { 5660 }, level = 1, group = "CrushOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, }, - ["MutatedUniqueRing18RecoupWhileFrozen"] = { affix = "", "25% of Damage taken while Frozen Recouped as Life", statOrder = { 6129 }, level = 1, group = "RecoupWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, - ["MutatedUniqueRing18ActionSpeedMinimumWhileIgnited"] = { affix = "", "Action Speed cannot be modified to below Base Value while Ignited", statOrder = { 4529 }, level = 1, group = "ActionSpeedMinimumWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "speed", "ailment" }, }, - ["MutatedUniqueTwoHandSword8RecoupedAsLifePerRedGem"] = { affix = "", "10% of Damage taken Recouped as Life per Socketed Red Gem", statOrder = { 6128 }, level = 1, group = "RecoupedAsLifePerRedGem", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "gem" }, }, - ["MutatedUniqueTwoHandSword8ImmortalAmbitionIfAllSocketsRed"] = { affix = "", "You have Immortal Ambition while all Socketed Gems are Red", statOrder = { 7940 }, level = 1, group = "ImmortalAmbitionIfAllSocketsRed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueHelmStrInt7MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems"] = { affix = "", "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted", statOrder = { 9148 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, }, - ["MutatedUniqueClaw13PhysicalSkillEffectDurationPerIntelligence"] = { affix = "", "Physical Skills have 1% increased Duration per 12 Intelligence", statOrder = { 3805 }, level = 1, group = "PhysicalSkillEffectDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attribute" }, }, - ["MutatedUniqueBelt14MaximumLifeOnChillPercent"] = { affix = "", "Recover 2% of Life when you Chill a non-Chilled Enemy", statOrder = { 9839 }, level = 1, group = "MaximumLifeOnChillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "cold", "ailment" }, }, - ["MutatedUniqueRing19FrozenMonstersTakePercentIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 10% increased Damage", statOrder = { 6695 }, level = 1, group = "FrozenMonstersTakePercentIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, }, - ["MutatedUniqueBodyInt16BlueSocketGemsIgnoreAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Gems Socketed in Blue Sockets", statOrder = { 7943 }, level = 1, group = "BlueSocketGemsIgnoreAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, - ["MutatedUniqueRing20IgnitedEnemiesExplode"] = { affix = "", "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite", statOrder = { 7212 }, level = 1, group = "IgnitedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, }, - ["MutatedUniqueShieldInt1DamageOverTimePer100PlayerMaxLife"] = { affix = "", "Deal 5% increased Damage Over Time per 100 Player Maximum Life", statOrder = { 6028 }, level = 1, group = "DamageOverTimePer100PlayerMaxLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, - ["MutatedUniqueRing9ExtraDamageRollsWhileLowLife"] = { affix = "", "Your Damage with Hits is Lucky while on Low Life", statOrder = { 4559 }, level = 1, group = "ExtraDamageRollsWhileLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, - ["MutatedUniqueBodyInt21ChaosDamageTakenRecoupedAsLifeActual"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5752 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, }, - ["MutatedUniqueBodyStrDex7WarcriesAreDisabled"] = { affix = "", "Your Warcries are disabled", statOrder = { 10699 }, level = 1, group = "WarcriesAreDisabled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueRing13LeftRingSlotEvasionRating"] = { affix = "", "Left ring slot: +1000 to Evasion Rating", statOrder = { 2677 }, level = 1, group = "LeftRingSlotEvasionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, - ["MutatedUniqueRing13RightRingSlotArmour"] = { affix = "", "Right ring slot: +1000 to Armour", statOrder = { 2656 }, level = 1, group = "RightRingSlotArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, - ["MutatedUniqueShieldStrDex8SpellBlockPercentage"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, }, - ["MutatedUniqueShieldStrDex8MonsterChanceToAvoid"] = { affix = "", "(10-15)% chance to Avoid All Damage from Hits", statOrder = { 4945 }, level = 1, group = "MonsterChanceToAvoid", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBelt14AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4630 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, }, - ["MutatedUniqueRing20ShockedEnemiesExplode"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10019, 10019.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning" }, }, - ["MutatedUniqueBodyDexInt2GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2180 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, - ["MutatedUniqueBodyDexInt2EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10779 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, - ["MutatedUniqueShieldDex9DegenDamageTaken"] = { affix = "", "(10-15)% reduced Damage taken from Damage Over Time", statOrder = { 2250 }, level = 1, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, }, - ["MutatedUniqueGlovesStr12RageLossDelay"] = { affix = "", "Inherent Rage Loss starts 2 seconds later", statOrder = { 9796 }, level = 1, group = "RageLossDelay", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyStrDex8AttackDamage"] = { affix = "", "100% increased Attack Damage", statOrder = { 1203 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "attack" }, }, - ["MutatedUniqueBodyInt2DamageWhileIgnited"] = { affix = "", "(50-100)% increased Damage while Ignited", statOrder = { 2807 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, }, - ["MutatedUniqueBodyInt2FireDamageLifeLeechPermyriad"] = { affix = "", "(5-7)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanShock"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2875 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "lightning", "chaos", "ailment" }, }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5006 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, }, - ["MutatedUniqueHelmetDexInt4ChaosDamageCanFreeze"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2874 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "cold", "chaos", "ailment" }, }, - ["MutatedUniqueQuiver7StartEnergyShieldRechargeOnSkillChance"] = { affix = "", "(10-15)% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6454 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, - ["MutatedUniqueQuiver7MaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 9165 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, }, - ["MutatedUniqueBow12DisplaySupportedBySummonPhantasm"] = { affix = "", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 413 }, level = 1, group = "DisplaySupportedBySummonPhantasm", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, - ["MutatedUniqueBow12SummonWrithingWormEveryXMs"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 625 }, level = 1, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique" }, }, - ["MutatedUniqueBow12MinionAddedChaosDamage"] = { affix = "", "Minions deal (25-35) to (50-65) additional Chaos Damage", statOrder = { 3774 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos", "minion" }, }, - ["MutatedUniqueTwoHandMace8IncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (50-70)% increased Damage if you've Hit Recently", statOrder = { 9299 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion" }, }, - ["MutatedUniqueTwoHandMace8DoubleAnimateWeaponLimit"] = { affix = "", "Maximum number of Animated Weapons is Doubled", statOrder = { 6267 }, level = 1, group = "DoubleAnimateWeaponLimit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, - ["MutatedUniqueHelmetStrDex2AttackSpeedWithMovementSkills"] = { affix = "", "20% increased Attack Speed with Movement Skills", statOrder = { 1437 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, - ["MutatedUniqueHelmetStrDex2ChanceToSuppressSpells"] = { affix = "", "+(10-20)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBow6ProjectilesPierceAllNearbyTargets"] = { affix = "", "Projectiles Pierce all nearby Targets", statOrder = { 9752 }, level = 1, group = "ProjectilesPierceAllNearbyTargets", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBelt21EverlastingSacrifice"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10784 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "resistance" }, }, - ["MutatedUniqueBelt21AnimalCharmLeechPercentIsInstant"] = { affix = "", "(8-12)% of Leech is Instant", statOrder = { 7343 }, level = 1, group = "AnimalCharmLeechPercentIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBelt13CurseEffectOnYou"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2175 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "curse" }, }, - ["MutatedUniqueBodyStr7PrismaticBulwark"] = { affix = "", "Transcendence", statOrder = { 10802 }, level = 1, group = "PrismaticBulwark", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyStr7GainNoInherentBonusFromStrength"] = { affix = "", "Gain no inherent bonuses from Strength", statOrder = { 2022 }, level = 1, group = "GainNoInherentBonusFromStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, - ["MutatedUniqueBelt19FlaskChargesUsed"] = { affix = "", "100% increased Flask Charges used", statOrder = { 2189 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, }, - ["MutatedUniqueBelt19AnimalCharmFlaskChargesEvery3Secondsage"] = { affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 1, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, }, - ["MutatedUniqueAmulet43ChaosDamageTakenRecoupedAsLife"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5752 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, }, - ["MutatedUniqueAmulet43RecoupEnergyShieldInsteadOfLife"] = { affix = "", "Recoup Energy Shield instead of Life", statOrder = { 7393 }, level = 1, group = "RecoupEnergyShieldInsteadOfLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, }, - ["MutatedUniqueBow18DisplaySupportedByReturningProjectiles"] = { affix = "", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 412 }, level = 1, group = "DisplaySupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueGlovesDexInt7PoisonSpread"] = { affix = "", "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned", statOrder = { 1046 }, level = 1, group = "PoisonSpread", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, }, - ["MutatedUniqueGlovesDexInt7FasterPoisonDamage"] = { affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6550 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "mutatedunique", "damage", "chaos", "ailment" }, }, - ["MutatedUniqueAmulet14GainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6815 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, }, - ["MutatedUniqueAmulet14LosePowerChargesOnMaxPowerCharges"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3608 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, }, - ["MutatedUniqueRing2WarcryMonsterPower"] = { affix = "", "(20-30)% increased total Power counted by Warcries", statOrder = { 10571 }, level = 1, group = "WarcryMonsterPower", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueHelmetDexInt1MinionDoubleDamage"] = { affix = "", "Minions have 20% chance to deal Double Damage", statOrder = { 9283 }, level = 1, group = "MinionDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, - ["MutatedUniqueRing4TemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2524 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, - ["MutatedUniqueRing4VulnerabilityOnHit"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2525 }, level = 1, group = "VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, - ["MutatedUniqueRing4EnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2518 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, - ["MutatedUniqueHelmetStrInt2HeraldOfPurityAdditionalMinion"] = { affix = "", "+(2-3) to maximum number of Sentinels of Purity", statOrder = { 5038 }, level = 1, group = "HeraldOfPurityAdditionalMinion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, - ["MutatedUniqueBootsStrDex1MovementVelocityOnFullLife"] = { affix = "", "40% increased Movement Speed when on Full Life", statOrder = { 1805 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, - ["MutatedUniqueGlovesInt1IncreasedGold"] = { affix = "", "(5-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBelt4PercentageStrength"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, - ["MutatedUniqueBodyStrInt2MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, }, - ["MutatedUniqueGlovesDexInt2UnarmedAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect while Unarmed", statOrder = { 3058 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBootsDex2IncreasedGold"] = { affix = "", "(20-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBootsDex3ActionSpeedReduction"] = { affix = "", "(6-12)% increased Action Speed", statOrder = { 4532 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, - ["MutatedUniqueBodyStr2LocalPhysicalDamageReductionRating"] = { affix = "", "+(500-800) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, }, - ["MutatedUniqueBodyDex3MeleeFireDamage"] = { affix = "", "(75-150)% increased Melee Fire Damage", statOrder = { 1987 }, level = 1, group = "MeleeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, }, - ["MutatedUniqueShieldInt2LocalIncreaseSocketedAuraLevel"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura", "gem" }, }, - ["MutatedUniqueRing6CriticalStrikeMultiplier"] = { affix = "", "+(10-30)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, }, - ["MutatedUniqueRing6AllDefences"] = { affix = "", "(10-30)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, - ["MutatedUniqueHelmetDex4IncreasedMana"] = { affix = "", "+(100-200) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, - ["MutatedUniqueShieldStrInt5FlatEnergyShieldRegenerationPerMinute"] = { affix = "", "Regenerate (100-200) Energy Shield per second", statOrder = { 2650 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, - ["MutatedUniqueShieldStrInt5CastSpeedOnLowLife"] = { affix = "", "(10-20)% increased Cast Speed when on Low Life", statOrder = { 2004 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "speed" }, }, - ["MutatedUniqueBodyDex5MovementSkillCooldown"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 9404 }, level = 1, group = "MovementSkillCooldown", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBootsStrDex2IncreasedAccuracyPerFrenzy"] = { affix = "", "(4-8)% increased Accuracy Rating per Frenzy Charge", statOrder = { 2055 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, - ["MutatedUniqueBodyInt7SupportedByFlamewood"] = { affix = "", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 285 }, level = 1, group = "SupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueGlovesInt6ChaosDamagePerCorruptedItem"] = { affix = "", "(10-15)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3104 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, }, - ["MutatedUniqueRing7NonDamagingAilmentEffectOnSelf"] = { affix = "", "50% reduced Effect of Non-Damaging Ailments on you", statOrder = { 9499 }, level = 1, group = "NonDamagingAilmentEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, - ["MutatedUniqueClaw6ChaosDamage"] = { affix = "", "(100-120)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, }, - ["MutatedUniqueRing11ConsecratedGroundEffect"] = { affix = "", "(25-40)% increased Effect of Consecrated Ground you create", statOrder = { 5852 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueTwoHandMace6KeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10770 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueTwoHandMace6LoseLifePercentOnCrit"] = { affix = "", "Lose 1% of Life when you deal a Critical Strike", statOrder = { 8146 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "critical" }, }, - ["MutatedUniqueRing17IncreasedMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, }, - ["MutatedUniqueBodyStr4ElementalDamageTakenAsChaos"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2458 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "chaos" }, }, - ["MutatedUniqueShieldDex4ChaosDamageOverTimeMultiplier"] = { affix = "", "+(23-37)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "mutatedunique", "damage", "chaos" }, }, - ["MutatedUniqueHelmetStrInt4MaximumLifeIncreasePercent"] = { affix = "", "50% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, - ["MutatedUniqueGlovesStrInt1SelfCurseDuration"] = { affix = "", "(-30-30)% reduced Duration of Curses on you", statOrder = { 2176 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, - ["MutatedUniqueGlovesDexInt5LocalEnergyShield"] = { affix = "", "+(100-130) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, - ["MutatedUniqueBootsStrInt2PercentageIntelligence"] = { affix = "", "(15-18)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, - ["MutatedUniqueQuiver3ImpaleEffect"] = { affix = "", "(20-30)% increased Impale Effect", statOrder = { 7247 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, }, - ["MutatedUniqueQuiver4BowStunThresholdReduction"] = { affix = "", "50% reduced Enemy Stun Threshold with Bows", statOrder = { 1524 }, level = 1, group = "BowStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyInt9MinionHasUnholyMight"] = { affix = "", "Minions have Unholy Might", statOrder = { 9312 }, level = 1, group = "MinionHasUnholyMight", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, }, - ["MutatedUniqueWand6WeaponTreeFishingWishEffectOfAncientFish"] = { affix = "", "(30-50)% increased effect of Wishes granted by Ancient Fish", statOrder = { 6619 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueRing24MaximumFireResist"] = { affix = "", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "resistance" }, }, - ["MutatedUniqueBodyStrDex4PhysicalDamageTakenAsChaos"] = { affix = "", "20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "chaos" }, }, - ["MutatedUniqueGlovesStrInt2LifeRegenerationRatePercentage"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1582 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, - ["MutatedUniqueGlovesStrDex5VaalSkillDuration"] = { affix = "", "Vaal Skills have (20-40)% increased Skill Effect Duration", statOrder = { 3110 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, }, - ["MutatedUniqueGlovesDexInt6BlindEffect"] = { affix = "", "(20-30)% increased Blind Effect", statOrder = { 5224 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueTwoHandAxe8SpellDamage"] = { affix = "", "(120-140)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "mutatedunique", "damage", "caster" }, }, - ["MutatedUniqueTwoHandSword7AccuracyRatingPerLevel"] = { affix = "", "+(6-8) to Accuracy Rating per Level", statOrder = { 4520 }, level = 1, group = "AccuracyRatingPerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueShieldDex6ImpaleChanceForJewel"] = { affix = "", "(20-40)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attack" }, }, - ["MutatedUniqueRing26ManaPerLevel"] = { affix = "", "+2 Maximum Mana per Level", statOrder = { 8190 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, - ["MutatedUniqueBelt12ConvertLightningDamageToChaos"] = { affix = "", "40% of Lightning Damage Converted to Chaos Damage", statOrder = { 1971 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "mutatedunique", "damage", "elemental", "lightning", "chaos" }, }, - ["MutatedUniqueRing27DebuffTimePassed"] = { affix = "", "Debuffs on you expire (-20-20)% slower", statOrder = { 6156 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyStr5ExperienceIncrease"] = { affix = "", "5% increased Experience gain", statOrder = { 1608 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueAmulet20CurseEffectTemporalChains"] = { affix = "", "(20-30)% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 1, group = "CurseEffectTemporalChains", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, - ["MutatedUniqueHelmetInt9WeaponTreeSupportImpendingDoom"] = { affix = "", "Socketed Gems are Supported by Level 30 Impending Doom", statOrder = { 316 }, level = 1, group = "WeaponTreeSupportImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueRing32EnergyShieldAndMana"] = { affix = "", "+(0-60) to maximum Energy Shield", "+(0-60) to maximum Mana", statOrder = { 1563, 1584 }, level = 1, group = "EnergyShieldAndMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield" }, }, - ["MutatedUniqueRing33MinionSkillManaCost"] = { affix = "", "(10-20)% reduced Mana Cost of Minion Skills", statOrder = { 9335 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "minion" }, }, - ["MutatedUniqueStaff10DisplaySocketedSkillsChain"] = { affix = "", "Socketed Gems Chain 2 additional times", statOrder = { 545 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "gem" }, }, - ["MutatedUniqueBodyDexInt4NonCurseAuraDuration"] = { affix = "", "Non-Curse Aura Skills have (40-80)% increased Duration", statOrder = { 10054 }, level = 1, group = "NonCurseAuraDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, - ["MutatedUniqueDagger10ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5006 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, }, - ["MutatedUniqueBodyStr6ChanceToAvoidProjectiles"] = { affix = "", "25% chance to avoid Projectiles", statOrder = { 4998 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueOneHandAxe8LocalIncreasedAttackSpeed"] = { affix = "", "(30-50)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, - ["MutatedUniqueHelmetDexInt6RetaliationSkillCooldownRecoveryRate"] = { affix = "", "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate", statOrder = { 5894 }, level = 1, group = "RetaliationSkillCooldownRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueAmluet24EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10779 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, - ["MutatedUniqueShieldInt6EnchantmentBlind"] = { affix = "", "Enemies Blinded by you have 100% reduced Critical Strike Chance", statOrder = { 6409 }, level = 1, group = "EnchantmentBlind", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, }, - ["MutatedUniqueGlovesStrDex7SupportedByManaforgedArrows"] = { affix = "", "Socketed Gems are Supported by Level 5 Manaforged Arrows", statOrder = { 337 }, level = 1, group = "SupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueTwoHandSword9LocalLightningDamage"] = { affix = "", "Adds 1 to 777 Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning", "attack" }, }, - ["MutatedUniqueSceptre13ColdDamageOverTimeMultiplier"] = { affix = "", "+(30-40)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "cold" }, }, - ["MutatedUniqueOneHandAxe9MeleeHitsCannotBeEvadedWhileWieldingSword"] = { affix = "", "Your Melee Hits can't be Evaded while wielding a Sword", statOrder = { 9196 }, level = 1, group = "MeleeHitsCannotBeEvadedWhileWieldingSword", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueOneHandSword15DualWieldingSpellBlockForJewel"] = { affix = "", "+10% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1149 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, }, - ["MutatedUniqueShieldInt7DodgeChancePerPowerCharge"] = { affix = "", "+4% chance to Suppress Spell Damage per Power Charge", statOrder = { 10172 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueOneHandMace10LocalCriticalStrikeChance"] = { affix = "", "(60-100)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, }, - ["MutatedUniqueWand14MinionPhysicalDamageAddedAsFire"] = { affix = "", "Minions gain (20-40)% of Physical Damage as Extra Fire Damage", statOrder = { 9329 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire", "minion" }, }, - ["MutatedUniqueHelmStrInt7LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems"] = { affix = "", "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted", statOrder = { 10632 }, level = 1, group = "LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, }, - ["MutatedUniqueGlovesInt4GainManaCostReductionOnManaSpent"] = { affix = "", "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana", statOrder = { 8171 }, level = 1, group = "GainManaCostReductionOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, - ["MutatedUniqueBelt7GainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds", statOrder = { 6828 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueShieldStrDex7LocalGemsSocketedHaveNoAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Socketed Gems", statOrder = { 7942 }, level = 1, group = "LocalGemsSocketedHaveNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, - ["MutatedUniqueRing19EnemiesShockedByHitsAreDebilitated"] = { affix = "", "Enemies Shocked by you are Debilitated", statOrder = { 6402 }, level = 25, group = "EnemiesShockedByHitsAreDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueShieldInt1NonDamagingAilmentWithCritsEffectPer100MaxLife"] = { affix = "", "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life", statOrder = { 9497 }, level = 1, group = "NonDamagingAilmentWithCritsEffectPer100MaxLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, }, - ["MutatedUniqueBodyInt21MaximumEnergyShieldIsEqualToPercentOfMaximumLife"] = { affix = "", "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life", statOrder = { 9139 }, level = 1, group = "MaximumEnergyShieldIsEqualToPercentOfMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, - ["MutatedUniqueBodyDex6ProjectileSpeedPercentPerEvasionRatingUpToCap"] = { affix = "", "1% increased Projectile Speed per 600 Evasion Rating, up to 75%", statOrder = { 9743 }, level = 1, group = "ProjectileSpeedPercentPerEvasionRatingUpToCap", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, - ["MutatedUniqueWand2LifeAndEnergyShieldDegenPerMinion"] = { affix = "", "Lose 0.5% Life and Energy Shield per Second per Minion", statOrder = { 7344 }, level = 1, group = "LifeAndEnergyShieldDegenPerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield", "minion" }, }, - ["MutatedUniqueBow6ChinsolDamageAgainstEnemiesOutsideCloseRange"] = { affix = "", "50% more Damage with Arrow Hits not at Close Range", statOrder = { 2448 }, level = 1, group = "ChinsolDamageAgainstEnemiesOutsideCloseRange", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, }, - ["MutatedUniqueJewel125GrantsAllBonusesOfUnallocatedNotablesInRadius"] = { affix = "", "Grants all bonuses of Unallocated Notable Passive Skills in Radius", statOrder = { 7961 }, level = 1, group = "GrantsAllBonusesOfUnallocatedNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueJewel125AllocatedNotablePassiveSkillsInRadiusDoNothing"] = { affix = "", "Allocated Notable Passive Skills in Radius grant nothing", statOrder = { 7959 }, level = 1, group = "AllocatedNotablePassiveSkillsInRadiusDoNothing", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueJewel6KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected"] = { affix = "", "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10714, 10714.1 }, level = 1, group = "KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueJewel177ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value", statOrder = { 10182 }, level = 1, group = "ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius"] = { affix = "", "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3062 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius"] = { affix = "", "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3063 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueJewel5EvasionModifiersInRadiusAreTransformedToArmour"] = { affix = "", "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour", statOrder = { 3071 }, level = 1, group = "EvasionModifiersInRadiusAreTransformedToArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, - ["MutatedUniqueBelt13NearbyEnemiesAreUnnerved"] = { affix = "", "Nearby Enemies are Unnerved", statOrder = { 9453 }, level = 1, group = "NearbyEnemiesAreUnnerved", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyDex8SuppressionPreventionIfYouHaventSuppressedRecently"] = { affix = "", "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently", statOrder = { 10139 }, level = 1, group = "SuppressionPreventionIfYouHaventSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyDex8ChanceToSuppressIfYouHaveSuppressedRecently"] = { affix = "", "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 10183 }, level = 1, group = "ChanceToSuppressIfYouHaveSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueHelmetStrInt6ChanceToCastOnManaSpent"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 760, 760.1 }, level = 1, group = "ChanceToCastOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "caster", "gem" }, }, - ["MutatedUniqueBootsInt7PowerChargeOnCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3287 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, }, - ["MutatedUniqueBodyInt3BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10771 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana" }, }, - ["MutatedUniqueRing16DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1610 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyStrInt1ChaosResistance"] = { affix = "", "-(17-13)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, }, - ["MutatedUniqueBow3ChaosDamageAsPortionOfDamage"] = { affix = "", "Gain (67-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, }, - ["MutatedUniqueStaff1SearingBondTotemsAllowed"] = { affix = "", "+(3-5) to maximum number of Summoned Searing Bond Totems", statOrder = { 9525 }, level = 1, group = "SearingBondTotemsAllowed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueRing5StunRecovery"] = { affix = "", "(200-300)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueHelmetDex2ConvertColdToFire"] = { affix = "", "50% of Cold Damage Converted to Fire Damage", statOrder = { 1973 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "cold" }, }, - ["MutatedUniqueBootsStr1CurseImmunity"] = { affix = "", "You are Immune to Curses", statOrder = { 7223 }, level = 1, group = "CurseImmunity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, - ["MutatedUniqueGlovesStrDex2IncreasedGold"] = { affix = "", "15% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueShieldStr1MaximumLifeAddedAsArmour"] = { affix = "", "Gain (20-25)% of Maximum Life as Extra Armour", statOrder = { 9163 }, level = 1, group = "MaximumLifeAddedAsArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, - ["MutatedUniqueShieldStrInt1EnergyShieldIncreasedByChaosResistance"] = { affix = "", "Maximum Energy Shield is increased by Chaos Resistance", statOrder = { 6439 }, level = 1, group = "EnergyShieldIncreasedByChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, - ["MutatedUniqueHelmetInt4SupportedByFrigidBond"] = { affix = "", "Socketed Gems are Supported by Level 25 Frigid Bond", statOrder = { 292 }, level = 1, group = "SupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueGlovesStr2StrengthRequirementAndTripleDamageChance"] = { affix = "", "+700 Strength Requirement", "(10-15)% chance to deal Triple Damage", statOrder = { 1090, 5005 }, level = 1, group = "StrengthRequirementAndTripleDamageChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyInt4GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2180 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, - ["MutatedUniqueHelmetDex5LifeReservationEfficiencyCopy"] = { affix = "", "30% increased Life Reservation Efficiency of Skills", statOrder = { 2231 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, - ["MutatedUniqueHelmetStr3BleedDotMultiplier"] = { affix = "", "+(50-75)% to Damage over Time Multiplier for Bleeding", statOrder = { 1253 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, }, - ["MutatedUniqueHelmetStrDex4SupportedBySadism"] = { affix = "", "Socketed Gems are Supported by Level 30 Sadism", statOrder = { 378 }, level = 1, group = "SupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueOneHandSword3TrapThrowSpeed"] = { affix = "", "(20-40)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, - ["MutatedUniqueBelt5IncreasedEnergyShieldPerPowerCharge"] = { affix = "", "(4-6)% increased Energy Shield per Power Charge", statOrder = { 6448 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, - ["MutatedUniqueSceptre3DamagePerZombie"] = { affix = "", "(40-60)% increased Damage per Raised Zombie", statOrder = { 6023 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, }, - ["MutatedUniqueRing15ColdDamageTakenAsFire"] = { affix = "", "40% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3183 }, level = 14, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "cold" }, }, - ["MutatedUniqueBodyStr3WitheredEffect"] = { affix = "", "(20-40)% increased Effect of Withered", statOrder = { 10624 }, level = 1, group = "WitheredEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, }, - ["MutatedUniqueBodyStrDex1MaximumRage"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9784 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyStrDex2ChaosDamageTakenAsLightning"] = { affix = "", "50% of Chaos Damage taken as Lightning Damage", statOrder = { 5758 }, level = 1, group = "ChaosDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueSceptre6ManaPerStrengthIfInMainHand"] = { affix = "", "1% increased maximum Mana per 18 Strength when in Main Hand", statOrder = { 9171 }, level = 1, group = "ManaPerStrengthIfInMainHand", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, - ["MutatedUniqueSceptre6EnergyShieldPerStrengthIfInOffHand"] = { affix = "", "1% increased maximum Energy Shield per 25 Strength when in Off Hand", statOrder = { 6431 }, level = 1, group = "EnergyShieldPerStrengthIfInOffHand", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, - ["MutatedUniqueGlovesStrDex4AdrenalineOnVaalSkillUse"] = { affix = "", "You gain Adrenaline for 3 seconds on using a Vaal Skill", statOrder = { 2924 }, level = 1, group = "AdrenalineOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyStrInt5LightRadiusAppliesToAccuracy"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7434 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, }, - ["MutatedUniqueBow11SupportedByPrismaticBurst"] = { affix = "", "Socketed Gems are Supported by Level 25 Prismatic Burst", statOrder = { 362 }, level = 1, group = "SupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueBootsStr2Strength"] = { affix = "", "+(150-200) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, - ["MutatedUniqueOneHandSword9AttackSpeedPer200Accuracy"] = { affix = "", "1% increased Attack Speed per 150 Accuracy Rating", statOrder = { 4243 }, level = 1, group = "AttackSpeedPer200Accuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, - ["MutatedUniqueWand7AddedChaosDamageFromManaCost"] = { affix = "", "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 4539 }, level = 1, group = "AddedChaosDamageFromManaCost", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, }, - ["MutatedUniqueWand8SupportedByAwakenedSpellCascade"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Cascade", statOrder = { 302 }, level = 1, group = "SupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueHelmetInt8ManaCostReduction"] = { affix = "", "(20-30)% increased Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, - ["MutatedUniqueStaff11AnimalCharmMineAuraEffect"] = { affix = "", "(60-100)% increased Effect of Auras from Mines", statOrder = { 9223 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueStaff12AreaOfEffectPer20Int"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2548 }, level = 1, group = "AreaOfEffectPer20Int", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueGlovesStrInt4PercentageIntelligence"] = { affix = "", "(12-16)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, - ["MutatedUniqueRing34GainPowerChargeOnKillingFrozenEnemy"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1829 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, }, - ["MutatedUniqueHelmetInt10AdditiveSpellModifiersApplyToRetaliationAttackDamage"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value", statOrder = { 2694 }, level = 1, group = "AdditiveSpellModifiersApplyToRetaliationAttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, }, - ["MutatedUniqueBelt18ManaRecoveryRate"] = { affix = "", "50% reduced Mana Recovery rate", statOrder = { 1591 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, - ["MutatedUniqueTwoHandAxe14AttackAdditionalProjectiles"] = { affix = "", "Attacks fire 3 additional Projectiles", statOrder = { 4201 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, }, - ["MutatedUniqueHelmetInt11PhysicalDamageRemovedFromManaBeforeLife"] = { affix = "", "30% of Physical Damage is taken from Mana before Life", statOrder = { 4174 }, level = 1, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana", "physical" }, }, - ["MutatedUniqueAmulet31LightRadius"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBodyDex9WitherOnHitChanceVsCursedEnemies"] = { affix = "", "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies", statOrder = { 10625 }, level = 1, group = "WitherOnHitChanceVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, }, - ["MutatedUniqueBodyDexInt5TrapSkillCooldownCount"] = { affix = "", "Skills which Throw Traps have +2 Cooldown Uses", statOrder = { 10416 }, level = 1, group = "TrapSkillCooldownCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueOneHandSword20LocalWeaponMoreIgniteDamage"] = { affix = "", "Ignites inflicted with this Weapon deal 100% more Damage", statOrder = { 7948 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "attack", "ailment" }, }, - ["MutatedUniqueRing44ProjectileSpeed"] = { affix = "", "(-10-10)% reduced Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, - ["MutatedUniqueTwoHandAxe1MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, }, - ["MutatedUniqueBodyDex1SpellDamageSuppressed"] = { affix = "", "Prevent +(8-10)% of Suppressed Spell Damage", statOrder = { 1146 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueHelmetInt2GlobalCooldownRecovery"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueAmulet8ChaosResistance"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, }, - ["MutatedUniqueBelt2FlaskEffect"] = { affix = "", "Flasks applied to you have (10-15)% increased Effect", statOrder = { 2747 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, }, - ["MutatedUniqueShieldStrInt2SocketedGemQuality"] = { affix = "", "+(20-30)% to Quality of Socketed Gems", statOrder = { 209 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, - ["MutatedUniqueBodyInt1SupportedByLivingLightning"] = { affix = "", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 332 }, level = 1, group = "SupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBow5UnholyMightOnCritChance"] = { affix = "", "25% chance to gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 5705 }, level = 1, group = "UnholyMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, }, - ["MutatedUniqueShieldStrInt4DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6026 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueGlovesDexInt3HeraldOfThunderBuffEffect"] = { affix = "", "Herald of Thunder has 100% increased Buff Effect", statOrder = { 7130 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueWand3AreaOfEffectPerPowerCharge"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2134 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueRing12AdditionalVaalSoulOnKill"] = { affix = "", "(20-40)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, }, - ["MutatedUniqueBelt6TrapAreaOfEffect"] = { affix = "", "Skills used by Traps have (40-60)% increased Area of Effect", statOrder = { 3484 }, level = 47, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueHelmetDexInt3MaximumLifeConvertedToEnergyShield"] = { affix = "", "(15-20)% of Maximum Life Converted to Energy Shield", statOrder = { 9165 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, }, - ["MutatedUniqueGlovesStr4SapChance"] = { affix = "", "30% chance to Sap Enemies", statOrder = { 2039 }, level = 1, group = "SapChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueQuiver10ChanceToAggravateBleed"] = { affix = "", "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 1, group = "ChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "mutatedunique", "physical", "attack", "ailment" }, }, - ["MutatedUniqueOneHandSword21IncreasedWeaponElementalDamagePercent"] = { affix = "", "(80-120)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "attack" }, }, - ["MutatedUniqueBodyDexInt6PurityOfLightningNoReservation"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9775 }, level = 1, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, }, - ["MutatedUniqueWand18SpellAddedPhysicalDamagePerLevel"] = { affix = "", "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels", statOrder = { 1275 }, level = 1, group = "SpellAddedPhysicalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "caster" }, }, - ["MutatedUniqueBodyStr9SpellBlockPer50Strength"] = { affix = "", "+1% Chance to Block Spell Damage per 50 Strength", statOrder = { 1158 }, level = 1, group = "SpellBlockPer50Strength", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, }, - ["MutatedUniqueBodyStr9AttackBlockLuck"] = { affix = "", "Chance to Block Attack Damage is Unlucky", statOrder = { 4996 }, level = 1, group = "AttackBlockLuck", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, }, - ["MutatedUniqueQuiver15SupportedByArrowNova"] = { affix = "", "Socketed Gems are Supported by Level 25 Arrow Nova", statOrder = { 366 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, - ["MutatedUniqueAmulet57MovementVelocityPerFrenzyCharge"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, - ["MutatedUniqueRing63MaximumLifeIncreasePercent"] = { affix = "", "(40-50)% reduced maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, - ["MutatedUniqueRing64GlobalEnergyShieldPercent"] = { affix = "", "(40-50)% reduced maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, - ["MutatedUniqueShieldStrInt13LocalMaximumQuality"] = { affix = "", "+20% to Maximum Quality", statOrder = { 8001 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueRing75CurseDuration"] = { affix = "", "Curse Skills have (-30-30)% reduced Skill Effect Duration", statOrder = { 6005 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, - ["MutatedUniqueBodyStrInt15NonChaosDamageBypassEnergyShieldPercent"] = { affix = "", "40% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 649 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueSceptre25MinionCriticalStrikeMultiplier"] = { affix = "", "Minions have +(20-40)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion", "critical" }, }, - ["MutatedUniqueBodyStr13MaximumEnergyShieldIfNoDefenceModifiersOnEquipment"] = { affix = "", "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items", statOrder = { 9136 }, level = 1, group = "MaximumEnergyShieldIfNoDefenceModifiersOnEquipment", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, - ["MutatedUniqueGlovesInt3PunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6007 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, - ["MutatedUniqueBodyInt20MinionLeechEnergyShieldFromElementalDamage"] = { affix = "", "Minions Leech 5% of Elemental Damage as Energy Shield", statOrder = { 9306 }, level = 1, group = "MinionLeechEnergyShieldFromElementalDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, }, - ["MutatedUniqueSceptre10PowerChargeOnStunUniqueSceptre10"] = { affix = "", "Gain Chaotic Might for 4 seconds on Critical Strike", statOrder = { 5689 }, level = 1, group = "ChaoticMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "critical" }, }, - ["MutatedUniqueGlovesStr7CannotBeIgnitedAtMaxEnduranceCharges"] = { affix = "", "Cannot be Ignited while at maximum Endurance Charges", statOrder = { 5410 }, level = 1, group = "CannotBeIgnitedAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire" }, }, - ["MutatedUniqueBootsDex5ActionSpeedReduction"] = { affix = "", "15% increased Action Speed", statOrder = { 4532 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, - ["MutatedUniqueAmulet76GainMissingManaPercentWhenHit"] = { affix = "", "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy", statOrder = { 9377 }, level = 62, group = "GainMissingManaPercentWhenHit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, - ["MutatedUniqueBootsStrInt3MovementVelocityWhileIgnited"] = { affix = "", "(25-50)% increased Movement Speed while Ignited", statOrder = { 2810 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, - ["MutatedUniqueClaw7RecoverEnergyShieldFromEvasionOnBlock"] = { affix = "", "Recover Energy Shield equal to 1% of Evasion Rating when you Block", statOrder = { 6428 }, level = 1, group = "RecoverEnergyShieldFromEvasionOnBlock", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, - ["MutatedUniqueBodyInt8ProfaneGroundInsteadOfConsecratedGround"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5913 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueBelt7RareAndUniqueEnemiesHaveIcons"] = { affix = "", "Rare and Unique Enemies within 120 metres have Minimap Icons", statOrder = { 10582 }, level = 1, group = "RareAndUniqueEnemiesHaveIcons", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueHelmetStr6ZombiesLeechEnergyShieldToYouAt1000Intelligence"] = { affix = "", "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield", statOrder = { 10752 }, level = 1, group = "ZombiesLeechEnergyShieldToYouAt1000Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, }, - ["MutatedUniqueHelmetStr6AdditionalZombiesPerXIntelligence"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Intelligence", statOrder = { 9538 }, level = 1, group = "AdditionalZombiesPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, - ["MutatedUniqueBelt43MagicUtilityFlasksAlwaysApplyRightmost"] = { affix = "", "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4427 }, level = 56, group = "MagicUtilityFlasksAlwaysApplyRightmost", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, }, - ["MutatedUniqueUniqueBelt52AvoidPoison"] = { affix = "", "(40-60)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, }, - ["MutatedUniqueUniqueBelt52ChaosDamage"] = { affix = "", "(30-50)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, }, - ["MutatedUniqueUniqueBelt55FireDamage"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, }, - ["MutatedUniqueUniqueBelt55IgniteDurationOnYou"] = { affix = "", "(40-60)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, }, - ["MutatedUniqueUniqueBow27ImpalesChanceToLastAdditionalHit"] = { affix = "", "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit", statOrder = { 7261 }, level = 1, group = "ChanceImpaleLastsAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, }, - ["MutatedUniqueUniqueBow27AttackSpeed"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, - ["MutatedUniqueUniqueBow26LocalCriticalStrikeChance"] = { affix = "", "(30-34)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, }, - ["MutatedUniqueUniqueBow26FireDamageOverTimeMultiplier"] = { affix = "", "+(28-35)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, }, - ["MutatedUniqueUniqueTwoHandSword18FasterDamagingAilments"] = { affix = "", "Damaging Ailments deal damage (20-40)% faster", statOrder = { 6132 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, - ["MutatedUniqueUniqueTwoHandSword18LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, - ["MutatedUniqueUniqueTwoHandSword19AilmentDuration"] = { affix = "", "(30-35)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, - ["MutatedUniqueUniqueTwoHandSword19LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, - ["MutatedUniqueUniqueTwoHandMace16LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, - ["MutatedUniqueUniqueTwoHandMace16ChaosResistance"] = { affix = "", "+(25-30)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, }, - ["MutatedUniqueUniqueTwoHandMace16PhysicalAddedAsChaos"] = { affix = "", "Gain (35-45)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 1, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, }, - ["MutatedUniqueUniqueTwoHandMace15LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsFire"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "fire" }, }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsCold"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "cold" }, }, - ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsLightning"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "lightning" }, }, - ["MutatedUniqueUniqueAmulet85PercentIncreasedLife"] = { affix = "", "(8-10)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, - ["MutatedUniqueUniqueAmulet85LifeFlaskChargesEvery3Seconds"] = { affix = "", "Life Flasks gain (1-3) Charge every 3 seconds", statOrder = { 7352 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueUniqueAmulet81PercentIncreasedMana"] = { affix = "", "(12-14)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, - ["MutatedUniqueUniqueAmulet81ManaFlaskChargesEvery3Seconds"] = { affix = "", "Mana Flasks gain (1-3) Charge every 3 seconds", statOrder = { 8180 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, - ["MutatedUniqueUniqueAmulet6ReducedMaximumMana"] = { affix = "", "20% reduced maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, - ["MutatedUniqueUniqueAmulet6IncreasedGoldFound"] = { affix = "", "20% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7308 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBow4BowAttacksUsableWithoutMana"] = { affix = "", "Insufficient Mana doesn't prevent your Bow Attacks", statOrder = { 5264 }, level = 1, group = "BowAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "attack" }, }, + ["MutatedUniqueBow4AreaOfEffect"] = { affix = "", "(40-60)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueHelmetDex3ChaosResistance"] = { affix = "", "+(50-75)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, }, + ["MutatedUniqueHelmetDex5LocalIncreaseSocketedMinionGemLevel"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, }, + ["MutatedUniqueHelmetDex5LifeReservationEfficiency"] = { affix = "", "32% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, + ["MutatedUniqueBow18FasterIgnite"] = { affix = "", "Ignites you inflict deal Damage (20-40)% faster", statOrder = { 2564 }, level = 1, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "ailment" }, }, + ["MutatedUniqueBow19SupportedByImmolate"] = { affix = "", "Socketed Gems are Supported by Level 30 Immolate", statOrder = { 309 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueBow19AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4625 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, }, + ["MutatedUniqueHelmetStr4FireDamageTakenAsPhysical"] = { affix = "", "30% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2445 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, }, + ["MutatedUniqueHelmetStr4TotemLifeIncreasedByOvercappedFireResistance"] = { affix = "", "Totem Life is increased by their Overcapped Fire Resistance", statOrder = { 10396 }, level = 1, group = "TotemLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, }, + ["MutatedUniqueHelmetStr5SupportedByMinionLife"] = { affix = "", "Socketed Gems are Supported by Level 30 Minion Life", statOrder = { 504 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueAmulet37PhysicalDamageTakenAsFire"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire" }, }, + ["MutatedUniqueAmulet37NearbyEnemiesDebilitated"] = { affix = "", "Nearby Enemies are Debilitated", statOrder = { 7907 }, level = 1, group = "NearbyEnemiesDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueAmulet38KeystoneElementalOverload"] = { affix = "", "Elemental Overload", statOrder = { 10782 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "critical" }, }, + ["MutatedUniqueWand15PowerChargeOnManaSpent"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7892 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, }, + ["MutatedUniqueWand15GlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+(2-3) to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "caster", "gem" }, }, + ["MutatedUniqueWand16ColdDamageOverTimeMultiplierPerPowerCharge"] = { affix = "", "+(15-20)% to Cold Damage over Time Multiplier per Power Charge", statOrder = { 5806 }, level = 1, group = "ColdDamageOverTimeMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold" }, }, + ["MutatedUniqueBodyDex10PurityOfIceNoReservation"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9773 }, level = 1, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, }, + ["MutatedUniqueBodyDex10EvasionRatingPer10PlayerLife"] = { affix = "", "+6 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6483 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, }, + ["MutatedUniqueBodyDex11GhostDance"] = { affix = "", "Ghost Dance", statOrder = { 10786 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "evasion", "energy_shield" }, }, + ["MutatedUniqueBodyDex11EvasionRatingPer10PlayerLife"] = { affix = "", "+8 to Evasion Rating per 10 Player Maximum Life", statOrder = { 6483 }, level = 1, group = "EvasionRatingPer10PlayerLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences" }, }, + ["MutatedUniqueAmulet39PhysicalDamageTakenAsCold"] = { affix = "", "(5-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "cold" }, }, + ["MutatedUniqueAmulet39CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, }, + ["MutatedUniqueAmulet40CannotBeChilled"] = { affix = "", "Cannot be Chilled", statOrder = { 1837 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, + ["MutatedUniqueClaw16PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, + ["MutatedUniqueClaw16AccuracyRatingPercentPer25Intelligence"] = { affix = "", "3% increased Accuracy Rating per 25 Intelligence", statOrder = { 4510 }, level = 1, group = "AccuracyRatingPercentPer25Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueClaw17PercentageStrength"] = { affix = "", "(8-12)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, + ["MutatedUniqueClaw17CriticalStrikeMultiplierPer25Dexterity"] = { affix = "", "+3% to Critical Strike Multiplier per 25 Dexterity", statOrder = { 5949 }, level = 1, group = "CriticalStrikeMultiplierPer25Dexterity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, }, + ["MutatedUniqueShieldInt8DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueShieldInt8AlwaysShockLowLifeEnemies"] = { affix = "", "Hits always Shock Enemies that are on Low Life", statOrder = { 4658 }, level = 1, group = "AlwaysShockLowLifeEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, + ["MutatedUniqueShieldInt9DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueShieldInt9ChaosDamageDoesNotBypassESWhileNotLowMana"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Mana", statOrder = { 5730 }, level = 1, group = "ChaosDamageDoesNotBypassESWhileNotLowMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield", "chaos" }, }, + ["MutatedUniqueAmulet41MaximumLightningResistance"] = { affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "lightning", "resistance" }, }, + ["MutatedUniqueAmulet41EnemyExtraDamageRolls"] = { affix = "", "Damage of Enemies Hitting you is Unlucky", statOrder = { 5012 }, level = 1, group = "EnemyExtraDamageRolls", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueAmulet42ManaIncreasedPerOvercappedLightningResistUniqueAmulet42"] = { affix = "", "Mana is increased by 1% per 4% Overcapped Lightning Resistance", statOrder = { 8181 }, level = 1, group = "ManaIncreasedPerOvercappedLightningResistUniqueAmulet42", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "elemental", "lightning" }, }, + ["MutatedUniqueBootsStr6IncreasedArmourWhileBleeding"] = { affix = "", "(50-100)% increased Armour while Bleeding", statOrder = { 4773 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, }, + ["MutatedUniqueBootsStr6ImmuneToElementalAilmentsWhileBleeding"] = { affix = "", "Immune to Elemental Ailments while Bleeding", statOrder = { 7223 }, level = 1, group = "ImmuneToElementalAilmentsWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, + ["MutatedUniqueBootsStr7GainEnduranceChargeEveryXSecondsWhileStationary"] = { affix = "", "Gain an Endurance Charge each second while Stationary", statOrder = { 6707 }, level = 1, group = "GainEnduranceChargePerXSecondsWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, }, + ["MutatedUniqueBottsStr7GainPowerChargeOnHitWhileBleeding"] = { affix = "", "Gain a Power Charge on Hit while Bleeding", statOrder = { 6806 }, level = 1, group = "GainPowerChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique", "ailment" }, }, + ["MutatedUniqueTwoHandAxe11WarcriesExertAnAdditionalAttack"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10570 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueTwoHandAxe11WarcryCooldownSpeed"] = { affix = "", "500% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueTwoHandAxe12PercentageIntelligence"] = { affix = "", "80% reduced Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, + ["MutatedUniqueTwoHandAxe12FasterBleedDamage"] = { affix = "", "Bleeding you inflict deals Damage (20-40)% faster", statOrder = { 6544 }, level = 1, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, }, + ["MutatedUniqueShieldStr8MaximumBlockChance"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, }, + ["MutatedUniqueShieldStr8ArmourAppliesToElementalIfBlockedRecently"] = { affix = "", "(8-12)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4749 }, level = 1, group = "ArmourAppliesToElementalIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences" }, }, + ["MutatedUniqueShieldStr9GainEnergyShieldOnBlock"] = { affix = "", "Gain (300-650) Energy Shield when you Block", statOrder = { 1759 }, level = 1, group = "GainEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique", "defences", "energy_shield" }, }, + ["MutatedUniqueOneHandSword22MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, }, + ["MutatedUniqueOneHandSword23MinionUnholyMightChance"] = { affix = "", "Minions have 25% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 1, group = "MinionUnholyMightChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, }, + ["MutatedUniqueOneHandSword22MinionBaseCriticalStrikeChance"] = { affix = "", "Minions have +5% to Critical Strike Chance", statOrder = { 9266 }, level = 1, group = "MinionBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "critical" }, }, + ["MutatedUniqueOneHandSword23MinionSkillGemQuality"] = { affix = "", "+(20-30)% to Quality of all Minion Skill Gems", statOrder = { 9330 }, level = 1, group = "MinionSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion", "gem" }, }, + ["MutatedUniqueBodyInt13SocketedGemQuality"] = { affix = "", "+20% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, + ["MutatedUniqueBodyInt13IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4629 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, }, + ["MutatedUniqueBodyInt14aSocketedGemQuality"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, + ["MutatedUniqueBodyInt14IncreasedAllResistances"] = { affix = "", "50% increased Elemental and Chaos Resistances", statOrder = { 4629 }, level = 1, group = "IncreasedAllResistances", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "resistance" }, }, + ["MutatedUniqueBodyDexInt1DisplaySocketedGemsSupportedByIntensify"] = { affix = "", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 406 }, level = 1, group = "DisplaySocketedGemsSupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueBodyDexInt1AuraEffectOnEnemies"] = { affix = "", "(15-30)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3567 }, level = 1, group = "AuraEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, }, + ["MutatedUniqueGlovesInt4DisplaySocketedGemsSupportedByFocusedChannelling"] = { affix = "", "Socketed Gems are Supported by Level 18 Focused Channelling", statOrder = { 503 }, level = 1, group = "DisplaySocketedGemsSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueBelt7CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyInt12HeraldOfDoom"] = { affix = "", "Lone Messenger", statOrder = { 10789 }, level = 1, group = "KeystoneHeraldOfDoom", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyInt12HeraldEffectOnSelf"] = { affix = "", "(80-100)% increased Effect of Herald Buffs on you", statOrder = { 7104 }, level = 1, group = "HeraldEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyInt16LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, + ["MutatedUniqueShieldStrDex7LocalIncreaseSocketedGemLevel"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, + ["MutatedUniqueFishingRod1FishingMutatedFish"] = { affix = "", "You can catch Foulborn Fish", statOrder = { 5385 }, level = 1, group = "FishingMutatedFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueFishingRod1FishingLureType"] = { affix = "", "Wombgift Bait", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueFishingRod2AvoidInterruptionWhileCasting"] = { affix = "", "(30-40)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueFishingRod2FishingLureType"] = { affix = "", "Otherworldly Lure", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueRing9IncreasedAttackSpeedWhenOnLowLife"] = { affix = "", "(12-16)% increased Attack Speed when on Low Life", statOrder = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, + ["MutatedUniqueBodyDex6DamageTaken"] = { affix = "", "25% increased Damage taken", statOrder = { 2238 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueWand2MaximumGolems"] = { affix = "", "+2 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, + ["MutatedUniqueShieldDex9TreatElementalResistanceAsInverted"] = { affix = "", "Hits have (20-25)% chance to treat Enemy Monster Elemental Resistance values as inverted", statOrder = { 10426 }, level = 1, group = "TreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental" }, }, + ["MutatedUniqueGlovesDex2ActionSpeedMinimum90"] = { affix = "", "Your Action Speed is at least 90% of base value", statOrder = { 171 }, level = 1, group = "ActionSpeedMinimum90", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, + ["MutatedUniqueGlovesDex2CriticalStrikesNonDamagingAilmentEffect"] = { affix = "", "50% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9503 }, level = 1, group = "CriticalStrikesNonDamagingAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, }, + ["MutatedUniqueOneHandMace3AreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueHelmetStrDex3WarcryBuffEffect"] = { affix = "", "(20-35)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 1, group = "WarcryBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueHelmetStrDex3WarcryCooldownSpeed"] = { affix = "", "(20-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueOneHandMace3LightningBoltOnHit"] = { affix = "", "Trigger Level 20 Lightning Bolt on Melee Hit with this Weapon, with a 0.25 second cooldown", statOrder = { 773 }, level = 1, group = "LightningBoltOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "elemental", "lightning" }, }, + ["MutatedUniqueClaw13CrushOnHitChance"] = { affix = "", "25% chance to Crush on Hit", statOrder = { 5655 }, level = 1, group = "CrushOnHitChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, }, + ["MutatedUniqueRing18RecoupWhileFrozen"] = { affix = "", "25% of Damage taken while Frozen Recouped as Life", statOrder = { 6124 }, level = 1, group = "RecoupWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, + ["MutatedUniqueRing18ActionSpeedMinimumWhileIgnited"] = { affix = "", "Action Speed cannot be modified to below Base Value while Ignited", statOrder = { 4524 }, level = 1, group = "ActionSpeedMinimumWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "speed", "ailment" }, }, + ["MutatedUniqueTwoHandSword8RecoupedAsLifePerRedGem"] = { affix = "", "10% of Damage taken Recouped as Life per Socketed Red Gem", statOrder = { 6123 }, level = 1, group = "RecoupedAsLifePerRedGem", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "gem" }, }, + ["MutatedUniqueTwoHandSword8ImmortalAmbitionIfAllSocketsRed"] = { affix = "", "You have Immortal Ambition while all Socketed Gems are Red", statOrder = { 7935 }, level = 1, group = "ImmortalAmbitionIfAllSocketsRed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueHelmStrInt7MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems"] = { affix = "", "Gain (8-12)% of Maximum Life as Extra Maximum Energy Shield if no Equipped Items are Corrupted", statOrder = { 9144 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLifeWithNoCorruptItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, }, + ["MutatedUniqueClaw13PhysicalSkillEffectDurationPerIntelligence"] = { affix = "", "Physical Skills have 1% increased Duration per 12 Intelligence", statOrder = { 3800 }, level = 1, group = "PhysicalSkillEffectDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attribute" }, }, + ["MutatedUniqueBelt14MaximumLifeOnChillPercent"] = { affix = "", "Recover 2% of Life when you Chill a non-Chilled Enemy", statOrder = { 9840 }, level = 1, group = "MaximumLifeOnChillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "cold", "ailment" }, }, + ["MutatedUniqueRing19FrozenMonstersTakePercentIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 10% increased Damage", statOrder = { 6690 }, level = 1, group = "FrozenMonstersTakePercentIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "cold", "ailment" }, }, + ["MutatedUniqueBodyInt16BlueSocketGemsIgnoreAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Gems Socketed in Blue Sockets", statOrder = { 7938 }, level = 1, group = "BlueSocketGemsIgnoreAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, + ["MutatedUniqueRing20IgnitedEnemiesExplode"] = { affix = "", "Ignited Enemies you Kill Explode, dealing 5% of their Life as Fire Damage which cannot Ignite", statOrder = { 7207 }, level = 1, group = "IgnitedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, }, + ["MutatedUniqueShieldInt1DamageOverTimePer100PlayerMaxLife"] = { affix = "", "Deal 5% increased Damage Over Time per 100 Player Maximum Life", statOrder = { 6023 }, level = 1, group = "DamageOverTimePer100PlayerMaxLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, + ["MutatedUniqueRing9ExtraDamageRollsWhileLowLife"] = { affix = "", "Your Damage with Hits is Lucky while on Low Life", statOrder = { 4554 }, level = 1, group = "ExtraDamageRollsWhileLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, + ["MutatedUniqueBodyInt21ChaosDamageTakenRecoupedAsLifeActual"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5747 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, }, + ["MutatedUniqueBodyStrDex7WarcriesAreDisabled"] = { affix = "", "Your Warcries are disabled", statOrder = { 10700 }, level = 1, group = "WarcriesAreDisabled", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueRing13LeftRingSlotEvasionRating"] = { affix = "", "Left ring slot: +1000 to Evasion Rating", statOrder = { 2672 }, level = 1, group = "LeftRingSlotEvasionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, + ["MutatedUniqueRing13RightRingSlotArmour"] = { affix = "", "Right ring slot: +1000 to Armour", statOrder = { 2651 }, level = 1, group = "RightRingSlotArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, + ["MutatedUniqueShieldStrDex8SpellBlockPercentage"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, }, + ["MutatedUniqueShieldStrDex8MonsterChanceToAvoid"] = { affix = "", "(10-15)% chance to Avoid All Damage from Hits", statOrder = { 4940 }, level = 1, group = "MonsterChanceToAvoid", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBelt14AllDamageCanIgnite"] = { affix = "", "All Damage can Ignite", statOrder = { 4625 }, level = 1, group = "AllDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, }, + ["MutatedUniqueRing20ShockedEnemiesExplode"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10020, 10020.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning" }, }, + ["MutatedUniqueBodyDexInt2GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, + ["MutatedUniqueBodyDexInt2EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10780 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, + ["MutatedUniqueShieldDex9DegenDamageTaken"] = { affix = "", "(10-15)% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 1, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, }, + ["MutatedUniqueGlovesStr12RageLossDelay"] = { affix = "", "Inherent Rage Loss starts 2 seconds later", statOrder = { 9797 }, level = 1, group = "RageLossDelay", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyStrDex8AttackDamage"] = { affix = "", "100% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "attack" }, }, + ["MutatedUniqueBodyInt2DamageWhileIgnited"] = { affix = "", "(50-100)% increased Damage while Ignited", statOrder = { 2802 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, }, + ["MutatedUniqueBodyInt2FireDamageLifeLeechPermyriad"] = { affix = "", "(5-7)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "elemental", "fire" }, }, + ["MutatedUniqueHelmetDexInt4ChaosDamageCanShock"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2870 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "lightning", "chaos", "ailment" }, }, + ["MutatedUniqueHelmetDexInt4ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5001 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, }, + ["MutatedUniqueHelmetDexInt4ChaosDamageCanFreeze"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2869 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "elemental", "cold", "chaos", "ailment" }, }, + ["MutatedUniqueQuiver7StartEnergyShieldRechargeOnSkillChance"] = { affix = "", "(10-15)% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6449 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, + ["MutatedUniqueQuiver7MaximumLifeConvertedToEnergyShield"] = { affix = "", "(10-15)% of Maximum Life Converted to Energy Shield", statOrder = { 9161 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, }, + ["MutatedUniqueBow12DisplaySupportedBySummonPhantasm"] = { affix = "", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 408 }, level = 1, group = "DisplaySupportedBySummonPhantasm", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, + ["MutatedUniqueBow12SummonWrithingWormEveryXMs"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 620 }, level = 1, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique" }, }, + ["MutatedUniqueBow12MinionAddedChaosDamage"] = { affix = "", "Minions deal (25-35) to (50-65) additional Chaos Damage", statOrder = { 3769 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos", "minion" }, }, + ["MutatedUniqueTwoHandMace8IncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (50-70)% increased Damage if you've Hit Recently", statOrder = { 9295 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion" }, }, + ["MutatedUniqueTwoHandMace8DoubleAnimateWeaponLimit"] = { affix = "", "Maximum number of Animated Weapons is Doubled", statOrder = { 6262 }, level = 1, group = "DoubleAnimateWeaponLimit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, + ["MutatedUniqueHelmetStrDex2AttackSpeedWithMovementSkills"] = { affix = "", "20% increased Attack Speed with Movement Skills", statOrder = { 1432 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, + ["MutatedUniqueHelmetStrDex2ChanceToSuppressSpells"] = { affix = "", "+(10-20)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBow6ProjectilesPierceAllNearbyTargets"] = { affix = "", "Projectiles Pierce all nearby Targets", statOrder = { 9753 }, level = 1, group = "ProjectilesPierceAllNearbyTargets", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBelt21EverlastingSacrifice"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10785 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "resistance" }, }, + ["MutatedUniqueBelt21AnimalCharmLeechPercentIsInstant"] = { affix = "", "(8-12)% of Leech is Instant", statOrder = { 7338 }, level = 1, group = "AnimalCharmLeechPercentIsInstant", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBelt13CurseEffectOnYou"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "curse" }, }, + ["MutatedUniqueBodyStr7PrismaticBulwark"] = { affix = "", "Transcendence", statOrder = { 10803 }, level = 1, group = "PrismaticBulwark", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyStr7GainNoInherentBonusFromStrength"] = { affix = "", "Gain no inherent bonuses from Strength", statOrder = { 2017 }, level = 1, group = "GainNoInherentBonusFromStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, + ["MutatedUniqueBelt19FlaskChargesUsed"] = { affix = "", "100% increased Flask Charges used", statOrder = { 2184 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, }, + ["MutatedUniqueBelt19AnimalCharmFlaskChargesEvery3Secondsage"] = { affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 1, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, }, + ["MutatedUniqueAmulet43ChaosDamageTakenRecoupedAsLife"] = { affix = "", "50% of Chaos Damage taken Recouped as Life", statOrder = { 5747 }, level = 1, group = "ChaosDamageTakenRecoupedAsLifeActual", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "chaos" }, }, + ["MutatedUniqueAmulet43RecoupEnergyShieldInsteadOfLife"] = { affix = "", "Recoup Energy Shield instead of Life", statOrder = { 7388 }, level = 1, group = "RecoupEnergyShieldInsteadOfLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, }, + ["MutatedUniqueBow18DisplaySupportedByReturningProjectiles"] = { affix = "", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 407 }, level = 1, group = "DisplaySupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueGlovesDexInt7PoisonSpread"] = { affix = "", "When you kill a Poisoned Enemy, Enemies within 1.5 metres are Poisoned", statOrder = { 1041 }, level = 1, group = "PoisonSpread", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, }, + ["MutatedUniqueGlovesDexInt7FasterPoisonDamage"] = { affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6545 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "mutatedunique", "damage", "chaos", "ailment" }, }, + ["MutatedUniqueAmulet14GainPowerChargesNotLostRecently"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6810 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, }, + ["MutatedUniqueAmulet14LosePowerChargesOnMaxPowerCharges"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3603 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, }, + ["MutatedUniqueRing2WarcryMonsterPower"] = { affix = "", "(20-30)% increased total Power counted by Warcries", statOrder = { 10572 }, level = 1, group = "WarcryMonsterPower", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueHelmetDexInt1MinionDoubleDamage"] = { affix = "", "Minions have 20% chance to deal Double Damage", statOrder = { 9279 }, level = 1, group = "MinionDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, + ["MutatedUniqueRing4TemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, + ["MutatedUniqueRing4VulnerabilityOnHit"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2520 }, level = 1, group = "VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, + ["MutatedUniqueRing4EnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2513 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, + ["MutatedUniqueHelmetStrInt2HeraldOfPurityAdditionalMinion"] = { affix = "", "+(2-3) to maximum number of Sentinels of Purity", statOrder = { 5033 }, level = 1, group = "HeraldOfPurityAdditionalMinion", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, + ["MutatedUniqueBootsStrDex1MovementVelocityOnFullLife"] = { affix = "", "40% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, + ["MutatedUniqueGlovesInt1IncreasedGold"] = { affix = "", "(5-15)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7303 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBelt4PercentageStrength"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, + ["MutatedUniqueBodyStrInt2MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, }, + ["MutatedUniqueGlovesDexInt2UnarmedAreaOfEffect"] = { affix = "", "(20-30)% increased Area of Effect while Unarmed", statOrder = { 3053 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBootsDex2IncreasedGold"] = { affix = "", "(20-30)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7303 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBootsDex3ActionSpeedReduction"] = { affix = "", "(6-12)% increased Action Speed", statOrder = { 4527 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, + ["MutatedUniqueBodyStr2LocalPhysicalDamageReductionRating"] = { affix = "", "+(500-800) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "armour" }, }, + ["MutatedUniqueBodyDex3MeleeFireDamage"] = { affix = "", "(75-150)% increased Melee Fire Damage", statOrder = { 1982 }, level = 1, group = "MeleeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, }, + ["MutatedUniqueShieldInt2LocalIncreaseSocketedAuraLevel"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura", "gem" }, }, + ["MutatedUniqueRing6CriticalStrikeMultiplier"] = { affix = "", "+(10-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, }, + ["MutatedUniqueRing6AllDefences"] = { affix = "", "(10-30)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, + ["MutatedUniqueHelmetDex4IncreasedMana"] = { affix = "", "+(100-200) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, + ["MutatedUniqueShieldStrInt5FlatEnergyShieldRegenerationPerMinute"] = { affix = "", "Regenerate (100-200) Energy Shield per second", statOrder = { 2645 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, + ["MutatedUniqueShieldStrInt5CastSpeedOnLowLife"] = { affix = "", "(10-20)% increased Cast Speed when on Low Life", statOrder = { 1999 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "speed" }, }, + ["MutatedUniqueBodyDex5MovementSkillCooldown"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 9405 }, level = 1, group = "MovementSkillCooldown", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBootsStrDex2IncreasedAccuracyPerFrenzy"] = { affix = "", "(4-8)% increased Accuracy Rating per Frenzy Charge", statOrder = { 2050 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, + ["MutatedUniqueBodyInt7SupportedByFlamewood"] = { affix = "", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 280 }, level = 1, group = "SupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueGlovesInt6ChaosDamagePerCorruptedItem"] = { affix = "", "(10-15)% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3099 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, }, + ["MutatedUniqueRing7NonDamagingAilmentEffectOnSelf"] = { affix = "", "50% reduced Effect of Non-Damaging Ailments on you", statOrder = { 9500 }, level = 1, group = "NonDamagingAilmentEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, + ["MutatedUniqueClaw6ChaosDamage"] = { affix = "", "(100-120)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, }, + ["MutatedUniqueRing11ConsecratedGroundEffect"] = { affix = "", "(25-40)% increased Effect of Consecrated Ground you create", statOrder = { 5847 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueTwoHandMace6KeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10771 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueTwoHandMace6LoseLifePercentOnCrit"] = { affix = "", "Lose 1% of Life when you deal a Critical Strike", statOrder = { 8141 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "critical" }, }, + ["MutatedUniqueRing17IncreasedMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, }, + ["MutatedUniqueBodyStr4ElementalDamageTakenAsChaos"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2453 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "chaos" }, }, + ["MutatedUniqueShieldDex4ChaosDamageOverTimeMultiplier"] = { affix = "", "+(23-37)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "mutatedunique", "damage", "chaos" }, }, + ["MutatedUniqueHelmetStrInt4MaximumLifeIncreasePercent"] = { affix = "", "50% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, + ["MutatedUniqueGlovesStrInt1SelfCurseDuration"] = { affix = "", "(-30-30)% reduced Duration of Curses on you", statOrder = { 2171 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, + ["MutatedUniqueGlovesDexInt5LocalEnergyShield"] = { affix = "", "+(100-130) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, + ["MutatedUniqueBootsStrInt2PercentageIntelligence"] = { affix = "", "(15-18)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, + ["MutatedUniqueQuiver3ImpaleEffect"] = { affix = "", "(20-30)% increased Impale Effect", statOrder = { 7242 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, }, + ["MutatedUniqueQuiver4BowStunThresholdReduction"] = { affix = "", "50% reduced Enemy Stun Threshold with Bows", statOrder = { 1519 }, level = 1, group = "BowStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyInt9MinionHasUnholyMight"] = { affix = "", "Minions have Unholy Might", statOrder = { 9308 }, level = 1, group = "MinionHasUnholyMight", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "minion" }, }, + ["MutatedUniqueWand6WeaponTreeFishingWishEffectOfAncientFish"] = { affix = "", "(30-50)% increased effect of Wishes granted by Ancient Fish", statOrder = { 6614 }, level = 1, group = "WeaponTreeFishingWishEffectOfAncientFish", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueRing24MaximumFireResist"] = { affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "resistance" }, }, + ["MutatedUniqueBodyStrDex4PhysicalDamageTakenAsChaos"] = { affix = "", "20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 1, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "chaos" }, }, + ["MutatedUniqueGlovesStrInt2LifeRegenerationRatePercentage"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1577 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, + ["MutatedUniqueGlovesStrDex5VaalSkillDuration"] = { affix = "", "Vaal Skills have (20-40)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, }, + ["MutatedUniqueGlovesDexInt6BlindEffect"] = { affix = "", "(20-30)% increased Blind Effect", statOrder = { 5219 }, level = 1, group = "BlindEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueTwoHandAxe8SpellDamage"] = { affix = "", "(120-140)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "mutatedunique", "damage", "caster" }, }, + ["MutatedUniqueTwoHandSword7AccuracyRatingPerLevel"] = { affix = "", "+(6-8) to Accuracy Rating per Level", statOrder = { 4515 }, level = 1, group = "AccuracyRatingPerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueShieldDex6ImpaleChanceForJewel"] = { affix = "", "(20-40)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "attack" }, }, + ["MutatedUniqueRing26ManaPerLevel"] = { affix = "", "+2 Maximum Mana per Level", statOrder = { 8185 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, + ["MutatedUniqueBelt12ConvertLightningDamageToChaos"] = { affix = "", "40% of Lightning Damage Converted to Chaos Damage", statOrder = { 1966 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "mutatedunique", "damage", "elemental", "lightning", "chaos" }, }, + ["MutatedUniqueRing27DebuffTimePassed"] = { affix = "", "Debuffs on you expire (-20-20)% slower", statOrder = { 6151 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyStr5ExperienceIncrease"] = { affix = "", "5% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueAmulet20CurseEffectTemporalChains"] = { affix = "", "(20-30)% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 1, group = "CurseEffectTemporalChains", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, + ["MutatedUniqueHelmetInt9WeaponTreeSupportImpendingDoom"] = { affix = "", "Socketed Gems are Supported by Level 30 Impending Doom", statOrder = { 311 }, level = 1, group = "WeaponTreeSupportImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueRing32EnergyShieldAndMana"] = { affix = "", "+(0-60) to maximum Energy Shield", "+(0-60) to maximum Mana", statOrder = { 1558, 1579 }, level = 1, group = "EnergyShieldAndMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "defences", "energy_shield" }, }, + ["MutatedUniqueRing33MinionSkillManaCost"] = { affix = "", "(10-20)% reduced Mana Cost of Minion Skills", statOrder = { 9331 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana", "minion" }, }, + ["MutatedUniqueStaff10DisplaySocketedSkillsChain"] = { affix = "", "Socketed Gems Chain 2 additional times", statOrder = { 540 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "gem" }, }, + ["MutatedUniqueBodyDexInt4NonCurseAuraDuration"] = { affix = "", "Non-Curse Aura Skills have (40-80)% increased Duration", statOrder = { 10055 }, level = 1, group = "NonCurseAuraDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, + ["MutatedUniqueDagger10ChaosDamageCanIgnite"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5001 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "mutatedunique", "damage", "elemental", "fire", "chaos", "ailment" }, }, + ["MutatedUniqueBodyStr6ChanceToAvoidProjectiles"] = { affix = "", "25% chance to avoid Projectiles", statOrder = { 4993 }, level = 1, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueOneHandAxe8LocalIncreasedAttackSpeed"] = { affix = "", "(30-50)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, + ["MutatedUniqueHelmetDexInt6RetaliationSkillCooldownRecoveryRate"] = { affix = "", "Retaliation Skills have (25-35)% increased Cooldown Recovery Rate", statOrder = { 5889 }, level = 1, group = "RetaliationSkillCooldownRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueAmluet24EldritchBattery"] = { affix = "", "Eldritch Battery", statOrder = { 10780 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, + ["MutatedUniqueShieldInt6EnchantmentBlind"] = { affix = "", "Enemies Blinded by you have 100% reduced Critical Strike Chance", statOrder = { 6404 }, level = 1, group = "EnchantmentBlind", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical" }, }, + ["MutatedUniqueGlovesStrDex7SupportedByManaforgedArrows"] = { affix = "", "Socketed Gems are Supported by Level 5 Manaforged Arrows", statOrder = { 332 }, level = 1, group = "SupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueTwoHandSword9LocalLightningDamage"] = { affix = "", "Adds 1 to 777 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "lightning", "attack" }, }, + ["MutatedUniqueSceptre13ColdDamageOverTimeMultiplier"] = { affix = "", "+(30-40)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "cold" }, }, + ["MutatedUniqueOneHandAxe9MeleeHitsCannotBeEvadedWhileWieldingSword"] = { affix = "", "Your Melee Hits can't be Evaded while wielding a Sword", statOrder = { 9192 }, level = 1, group = "MeleeHitsCannotBeEvadedWhileWieldingSword", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueOneHandSword15DualWieldingSpellBlockForJewel"] = { affix = "", "+10% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1144 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, }, + ["MutatedUniqueShieldInt7DodgeChancePerPowerCharge"] = { affix = "", "+4% chance to Suppress Spell Damage per Power Charge", statOrder = { 10173 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueOneHandMace10LocalCriticalStrikeChance"] = { affix = "", "(60-100)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, }, + ["MutatedUniqueWand14MinionPhysicalDamageAddedAsFire"] = { affix = "", "Minions gain (20-40)% of Physical Damage as Extra Fire Damage", statOrder = { 9325 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "elemental", "fire", "minion" }, }, + ["MutatedUniqueHelmStrInt7LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems"] = { affix = "", "(15-20)% of Life Regeneration also applies to Energy Shield if no Equipped Items are Corrupted", statOrder = { 10633 }, level = 1, group = "LifeRegenerationPercentAppliesToEnergyShieldWithNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, }, + ["MutatedUniqueGlovesInt4GainManaCostReductionOnManaSpent"] = { affix = "", "50% reduced Mana Cost of Skills for 2 seconds after Spending a total of 800 Mana", statOrder = { 8166 }, level = 1, group = "GainManaCostReductionOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, + ["MutatedUniqueBelt7GainSoulEaterStackOnHit"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.25 seconds", statOrder = { 6823 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueShieldStrDex7LocalGemsSocketedHaveNoAttributeRequirements"] = { affix = "", "Ignore Attribute Requirements of Socketed Gems", statOrder = { 7937 }, level = 1, group = "LocalGemsSocketedHaveNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, + ["MutatedUniqueRing19EnemiesShockedByHitsAreDebilitated"] = { affix = "", "Enemies Shocked by you are Debilitated", statOrder = { 6397 }, level = 25, group = "EnemiesShockedByHitsAreDebilitated", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueShieldInt1NonDamagingAilmentWithCritsEffectPer100MaxLife"] = { affix = "", "2% increased Effect of Non-Damaging Ailments you inflict with Critical Strikes per 100 Player Maximum Life", statOrder = { 9498 }, level = 1, group = "NonDamagingAilmentWithCritsEffectPer100MaxLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "critical", "ailment" }, }, + ["MutatedUniqueBodyInt21MaximumEnergyShieldIsEqualToPercentOfMaximumLife"] = { affix = "", "Your Maximum Energy Shield is Equal to 40% of Your Maximum Life", statOrder = { 9135 }, level = 1, group = "MaximumEnergyShieldIsEqualToPercentOfMaximumLife", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, + ["MutatedUniqueBodyDex6ProjectileSpeedPercentPerEvasionRatingUpToCap"] = { affix = "", "1% increased Projectile Speed per 600 Evasion Rating, up to 75%", statOrder = { 9744 }, level = 1, group = "ProjectileSpeedPercentPerEvasionRatingUpToCap", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, + ["MutatedUniqueWand2LifeAndEnergyShieldDegenPerMinion"] = { affix = "", "Lose 0.5% Life and Energy Shield per Second per Minion", statOrder = { 7339 }, level = 1, group = "LifeAndEnergyShieldDegenPerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield", "minion" }, }, + ["MutatedUniqueBow6ChinsolDamageAgainstEnemiesOutsideCloseRange"] = { affix = "", "50% more Damage with Arrow Hits not at Close Range", statOrder = { 2443 }, level = 1, group = "ChinsolDamageAgainstEnemiesOutsideCloseRange", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, }, + ["MutatedUniqueJewel125GrantsAllBonusesOfUnallocatedNotablesInRadius"] = { affix = "", "Grants all bonuses of Unallocated Notable Passive Skills in Radius", statOrder = { 7956 }, level = 1, group = "GrantsAllBonusesOfUnallocatedNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueJewel125AllocatedNotablePassiveSkillsInRadiusDoNothing"] = { affix = "", "Allocated Notable Passive Skills in Radius grant nothing", statOrder = { 7954 }, level = 1, group = "AllocatedNotablePassiveSkillsInRadiusDoNothing", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueJewel6KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected"] = { affix = "", "Keystone Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10715, 10715.1 }, level = 1, group = "KeystoneCanBeAllocatedInMassiveRadiusWithoutBeingConnected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueJewel177ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Defend with 200% of Armour at 50% of their Value", statOrder = { 10183 }, level = 1, group = "ModifiersToSpellSuppressionAlsoApplytoChanceToDefendPercentArmor", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius"] = { affix = "", "If no Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3057 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileNoNotablesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueJewel3GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius"] = { affix = "", "With (8-12) Small Passives Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3058 }, level = 1, group = "GainRandomRareMonsterModOnKillWhileXSmallPassivesAllocatedInRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueJewel5EvasionModifiersInRadiusAreTransformedToArmour"] = { affix = "", "Increases and Reductions to Evasion Rating in Radius are Transformed to apply to Armour", statOrder = { 3066 }, level = 1, group = "EvasionModifiersInRadiusAreTransformedToArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, + ["MutatedUniqueBelt13NearbyEnemiesAreUnnerved"] = { affix = "", "Nearby Enemies are Unnerved", statOrder = { 9454 }, level = 1, group = "NearbyEnemiesAreUnnerved", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyDex8SuppressionPreventionIfYouHaventSuppressedRecently"] = { affix = "", "Prevent +35% of Suppressed Spell Damage if you have not Suppressed Spell Damage Recently", statOrder = { 10140 }, level = 1, group = "SuppressionPreventionIfYouHaventSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyDex8ChanceToSuppressIfYouHaveSuppressedRecently"] = { affix = "", "+(20-30)% chance to Suppress Spell Damage if you've Suppressed Spell Damage Recently", statOrder = { 10184 }, level = 1, group = "ChanceToSuppressIfYouHaveSuppressedRecently", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueHelmetStrInt6ChanceToCastOnManaSpent"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 200 Life on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 755, 755.1 }, level = 1, group = "ChanceToCastOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "mutatedunique", "caster", "gem" }, }, + ["MutatedUniqueBootsInt7PowerChargeOnCriticalStrikeChance"] = { affix = "", "+(3-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "critical" }, }, + ["MutatedUniqueBodyInt3BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10772 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana" }, }, + ["MutatedUniqueRing16DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1605 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyStrInt1ChaosResistance"] = { affix = "", "-(17-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, }, + ["MutatedUniqueBow3ChaosDamageAsPortionOfDamage"] = { affix = "", "Gain (67-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, }, + ["MutatedUniqueStaff1SearingBondTotemsAllowed"] = { affix = "", "+(3-5) to maximum number of Summoned Searing Bond Totems", statOrder = { 9526 }, level = 1, group = "SearingBondTotemsAllowed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueRing5StunRecovery"] = { affix = "", "(200-300)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueHelmetDex2ConvertColdToFire"] = { affix = "", "50% of Cold Damage Converted to Fire Damage", statOrder = { 1968 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire", "cold" }, }, + ["MutatedUniqueBootsStr1CurseImmunity"] = { affix = "", "You are Immune to Curses", statOrder = { 7218 }, level = 1, group = "CurseImmunity", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, + ["MutatedUniqueGlovesStrDex2IncreasedGold"] = { affix = "", "15% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7303 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueShieldStr1MaximumLifeAddedAsArmour"] = { affix = "", "Gain (20-25)% of Maximum Life as Extra Armour", statOrder = { 9159 }, level = 1, group = "MaximumLifeAddedAsArmour", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, + ["MutatedUniqueShieldStrInt1EnergyShieldIncreasedByChaosResistance"] = { affix = "", "Maximum Energy Shield is increased by Chaos Resistance", statOrder = { 6434 }, level = 1, group = "EnergyShieldIncreasedByChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, + ["MutatedUniqueHelmetInt4SupportedByFrigidBond"] = { affix = "", "Socketed Gems are Supported by Level 25 Frigid Bond", statOrder = { 287 }, level = 1, group = "SupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueGlovesStr2StrengthRequirementAndTripleDamageChance"] = { affix = "", "+700 Strength Requirement", "(10-15)% chance to deal Triple Damage", statOrder = { 1085, 5000 }, level = 1, group = "StrengthRequirementAndTripleDamageChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyInt4GainManaAsExtraEnergyShield"] = { affix = "", "Gain (15-20)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, + ["MutatedUniqueHelmetDex5LifeReservationEfficiencyCopy"] = { affix = "", "30% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, + ["MutatedUniqueHelmetStr3BleedDotMultiplier"] = { affix = "", "+(50-75)% to Damage over Time Multiplier for Bleeding", statOrder = { 1248 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "mutatedunique", "damage", "physical", "attack", "ailment" }, }, + ["MutatedUniqueHelmetStrDex4SupportedBySadism"] = { affix = "", "Socketed Gems are Supported by Level 30 Sadism", statOrder = { 373 }, level = 1, group = "SupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueOneHandSword3TrapThrowSpeed"] = { affix = "", "(20-40)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, + ["MutatedUniqueBelt5IncreasedEnergyShieldPerPowerCharge"] = { affix = "", "(4-6)% increased Energy Shield per Power Charge", statOrder = { 6443 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, + ["MutatedUniqueSceptre3DamagePerZombie"] = { affix = "", "(40-60)% increased Damage per Raised Zombie", statOrder = { 6018 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage" }, }, + ["MutatedUniqueRing15ColdDamageTakenAsFire"] = { affix = "", "40% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3178 }, level = 14, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "cold" }, }, + ["MutatedUniqueBodyStr3WitheredEffect"] = { affix = "", "(20-40)% increased Effect of Withered", statOrder = { 10625 }, level = 1, group = "WitheredEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, }, + ["MutatedUniqueBodyStrDex1MaximumRage"] = { affix = "", "+(8-12) to Maximum Rage", statOrder = { 9785 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyStrDex2ChaosDamageTakenAsLightning"] = { affix = "", "50% of Chaos Damage taken as Lightning Damage", statOrder = { 5753 }, level = 1, group = "ChaosDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueSceptre6ManaPerStrengthIfInMainHand"] = { affix = "", "1% increased maximum Mana per 18 Strength when in Main Hand", statOrder = { 9167 }, level = 1, group = "ManaPerStrengthIfInMainHand", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, + ["MutatedUniqueSceptre6EnergyShieldPerStrengthIfInOffHand"] = { affix = "", "1% increased maximum Energy Shield per 25 Strength when in Off Hand", statOrder = { 6426 }, level = 1, group = "EnergyShieldPerStrengthIfInOffHand", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, + ["MutatedUniqueGlovesStrDex4AdrenalineOnVaalSkillUse"] = { affix = "", "You gain Adrenaline for 3 seconds on using a Vaal Skill", statOrder = { 2919 }, level = 1, group = "AdrenalineOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyStrInt5LightRadiusAppliesToAccuracy"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7429 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, }, + ["MutatedUniqueBow11SupportedByPrismaticBurst"] = { affix = "", "Socketed Gems are Supported by Level 25 Prismatic Burst", statOrder = { 357 }, level = 1, group = "SupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueBootsStr2Strength"] = { affix = "", "+(150-200) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, + ["MutatedUniqueOneHandSword9AttackSpeedPer200Accuracy"] = { affix = "", "1% increased Attack Speed per 150 Accuracy Rating", statOrder = { 4238 }, level = 1, group = "AttackSpeedPer200Accuracy", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, + ["MutatedUniqueWand7AddedChaosDamageFromManaCost"] = { affix = "", "Skills gain Added Chaos Damage equal to (20-25)% of Mana Cost, if Mana Cost is not higher than the maximum you could spend", statOrder = { 4534 }, level = 1, group = "AddedChaosDamageFromManaCost", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, }, + ["MutatedUniqueWand8SupportedByAwakenedSpellCascade"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Cascade", statOrder = { 297 }, level = 1, group = "SupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueHelmetInt8ManaCostReduction"] = { affix = "", "(20-30)% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, + ["MutatedUniqueStaff11AnimalCharmMineAuraEffect"] = { affix = "", "(60-100)% increased Effect of Auras from Mines", statOrder = { 9219 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueStaff12AreaOfEffectPer20Int"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2543 }, level = 1, group = "AreaOfEffectPer20Int", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueGlovesStrInt4PercentageIntelligence"] = { affix = "", "(12-16)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attribute" }, }, + ["MutatedUniqueRing34GainPowerChargeOnKillingFrozenEnemy"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1824 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge", "mutatedunique" }, }, + ["MutatedUniqueHelmetInt10AdditiveSpellModifiersApplyToRetaliationAttackDamage"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attack Damage with Retaliation Skills at 200% of their value", statOrder = { 2689 }, level = 1, group = "AdditiveSpellModifiersApplyToRetaliationAttackDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, }, + ["MutatedUniqueBelt18ManaRecoveryRate"] = { affix = "", "50% reduced Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, + ["MutatedUniqueTwoHandAxe14AttackAdditionalProjectiles"] = { affix = "", "Attacks fire 3 additional Projectiles", statOrder = { 4196 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack" }, }, + ["MutatedUniqueHelmetInt11PhysicalDamageRemovedFromManaBeforeLife"] = { affix = "", "30% of Physical Damage is taken from Mana before Life", statOrder = { 4169 }, level = 1, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "mana", "physical" }, }, + ["MutatedUniqueAmulet31LightRadius"] = { affix = "", "(30-50)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBodyDex9WitherOnHitChanceVsCursedEnemies"] = { affix = "", "(15-20)% chance to inflict Withered for 2 seconds on Hit against Cursed Enemies", statOrder = { 10626 }, level = 1, group = "WitherOnHitChanceVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, }, + ["MutatedUniqueBodyDexInt5TrapSkillCooldownCount"] = { affix = "", "Skills which Throw Traps have +2 Cooldown Uses", statOrder = { 10417 }, level = 1, group = "TrapSkillCooldownCount", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueOneHandSword20LocalWeaponMoreIgniteDamage"] = { affix = "", "Ignites inflicted with this Weapon deal 100% more Damage", statOrder = { 7943 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "attack", "ailment" }, }, + ["MutatedUniqueRing44ProjectileSpeed"] = { affix = "", "(-10-10)% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, + ["MutatedUniqueTwoHandAxe1MaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "mutatedunique" }, }, + ["MutatedUniqueBodyDex1SpellDamageSuppressed"] = { affix = "", "Prevent +(8-10)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueHelmetInt2GlobalCooldownRecovery"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueAmulet8ChaosResistance"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, }, + ["MutatedUniqueBelt2FlaskEffect"] = { affix = "", "Flasks applied to you have (10-15)% increased Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, }, + ["MutatedUniqueShieldStrInt2SocketedGemQuality"] = { affix = "", "+(20-30)% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "gem" }, }, + ["MutatedUniqueBodyInt1SupportedByLivingLightning"] = { affix = "", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 327 }, level = 1, group = "SupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBow5UnholyMightOnCritChance"] = { affix = "", "25% chance to gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 5700 }, level = 1, group = "UnholyMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos" }, }, + ["MutatedUniqueShieldStrInt4DamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueGlovesDexInt3HeraldOfThunderBuffEffect"] = { affix = "", "Herald of Thunder has 100% increased Buff Effect", statOrder = { 7125 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueWand3AreaOfEffectPerPowerCharge"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2129 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueRing12AdditionalVaalSoulOnKill"] = { affix = "", "(20-40)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "vaal" }, }, + ["MutatedUniqueBelt6TrapAreaOfEffect"] = { affix = "", "Skills used by Traps have (40-60)% increased Area of Effect", statOrder = { 3479 }, level = 47, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueHelmetDexInt3MaximumLifeConvertedToEnergyShield"] = { affix = "", "(15-20)% of Maximum Life Converted to Energy Shield", statOrder = { 9161 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life", "defences", "energy_shield" }, }, + ["MutatedUniqueGlovesStr4SapChance"] = { affix = "", "30% chance to Sap Enemies", statOrder = { 2034 }, level = 1, group = "SapChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueQuiver10ChanceToAggravateBleed"] = { affix = "", "(30-50)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 1, group = "ChanceToAggravateBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "mutatedunique", "physical", "attack", "ailment" }, }, + ["MutatedUniqueOneHandSword21IncreasedWeaponElementalDamagePercent"] = { affix = "", "(80-120)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "attack" }, }, + ["MutatedUniqueBodyDexInt6PurityOfLightningNoReservation"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9776 }, level = 1, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "aura" }, }, + ["MutatedUniqueWand18SpellAddedPhysicalDamagePerLevel"] = { affix = "", "Adds 3 to 5 Physical Damage to Spells per 3 Player Levels", statOrder = { 1270 }, level = 1, group = "SpellAddedPhysicalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical", "caster" }, }, + ["MutatedUniqueBodyStr9SpellBlockPer50Strength"] = { affix = "", "+1% Chance to Block Spell Damage per 50 Strength", statOrder = { 1153 }, level = 1, group = "SpellBlockPer50Strength", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, }, + ["MutatedUniqueBodyStr9AttackBlockLuck"] = { affix = "", "Chance to Block Attack Damage is Unlucky", statOrder = { 4991 }, level = 1, group = "AttackBlockLuck", weightKey = { }, weightVal = { }, modTags = { "block", "mutatedunique" }, }, + ["MutatedUniqueQuiver15SupportedByArrowNova"] = { affix = "", "Socketed Gems are Supported by Level 25 Arrow Nova", statOrder = { 361 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "mutatedunique", "gem" }, }, + ["MutatedUniqueAmulet57MovementVelocityPerFrenzyCharge"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, + ["MutatedUniqueRing63MaximumLifeIncreasePercent"] = { affix = "", "(40-50)% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, + ["MutatedUniqueRing64GlobalEnergyShieldPercent"] = { affix = "", "(40-50)% reduced maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "energy_shield" }, }, + ["MutatedUniqueShieldStrInt13LocalMaximumQuality"] = { affix = "", "+20% to Maximum Quality", statOrder = { 7996 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueRing75CurseDuration"] = { affix = "", "Curse Skills have (-30-30)% reduced Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, + ["MutatedUniqueBodyStrInt15NonChaosDamageBypassEnergyShieldPercent"] = { affix = "", "40% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 644 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueSceptre25MinionCriticalStrikeMultiplier"] = { affix = "", "Minions have +(20-40)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 1, group = "MinionCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "damage", "minion", "critical" }, }, + ["MutatedUniqueBodyStr13MaximumEnergyShieldIfNoDefenceModifiersOnEquipment"] = { affix = "", "+(1200-1800) to maximum Energy Shield if there are no Defence Modifiers on other Equipped Items", statOrder = { 9132 }, level = 1, group = "MaximumEnergyShieldIfNoDefenceModifiersOnEquipment", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, + ["MutatedUniqueGlovesInt3PunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6002 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "caster", "curse" }, }, + ["MutatedUniqueBodyInt20MinionLeechEnergyShieldFromElementalDamage"] = { affix = "", "Minions Leech 5% of Elemental Damage as Energy Shield", statOrder = { 9302 }, level = 1, group = "MinionLeechEnergyShieldFromElementalDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, }, + ["MutatedUniqueSceptre10PowerChargeOnStunUniqueSceptre10"] = { affix = "", "Gain Chaotic Might for 4 seconds on Critical Strike", statOrder = { 5684 }, level = 1, group = "ChaoticMightOnCritChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "critical" }, }, + ["MutatedUniqueGlovesStr7CannotBeIgnitedAtMaxEnduranceCharges"] = { affix = "", "Cannot be Ignited while at maximum Endurance Charges", statOrder = { 5405 }, level = 1, group = "CannotBeIgnitedAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire" }, }, + ["MutatedUniqueBootsDex5ActionSpeedReduction"] = { affix = "", "15% increased Action Speed", statOrder = { 4527 }, level = 1, group = "ActionSpeedReduction", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, + ["MutatedUniqueAmulet76GainMissingManaPercentWhenHit"] = { affix = "", "Gain (15-30)% of Missing Unreserved Mana before being Hit by an Enemy", statOrder = { 9378 }, level = 62, group = "GainMissingManaPercentWhenHit", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, + ["MutatedUniqueBootsStrInt3MovementVelocityWhileIgnited"] = { affix = "", "(25-50)% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "speed" }, }, + ["MutatedUniqueClaw7RecoverEnergyShieldFromEvasionOnBlock"] = { affix = "", "Recover Energy Shield equal to 1% of Evasion Rating when you Block", statOrder = { 6423 }, level = 1, group = "RecoverEnergyShieldFromEvasionOnBlock", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences" }, }, + ["MutatedUniqueBodyInt8ProfaneGroundInsteadOfConsecratedGround"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5908 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueBelt7RareAndUniqueEnemiesHaveIcons"] = { affix = "", "Rare and Unique Enemies within 120 metres have Minimap Icons", statOrder = { 10583 }, level = 1, group = "RareAndUniqueEnemiesHaveIcons", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueHelmetStr6ZombiesLeechEnergyShieldToYouAt1000Intelligence"] = { affix = "", "With at least 1000 Intelligence, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Energy Shield", statOrder = { 10753 }, level = 1, group = "ZombiesLeechEnergyShieldToYouAt1000Intelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "defences", "minion" }, }, + ["MutatedUniqueHelmetStr6AdditionalZombiesPerXIntelligence"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Intelligence", statOrder = { 9539 }, level = 1, group = "AdditionalZombiesPerXIntelligence", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "minion" }, }, + ["MutatedUniqueBelt43MagicUtilityFlasksAlwaysApplyRightmost"] = { affix = "", "Rightmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4422 }, level = 56, group = "MagicUtilityFlasksAlwaysApplyRightmost", weightKey = { }, weightVal = { }, modTags = { "flask", "mutatedunique" }, }, + ["MutatedUniqueUniqueBelt52AvoidPoison"] = { affix = "", "(40-60)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "mutatedunique", "chaos", "ailment" }, }, + ["MutatedUniqueUniqueBelt52ChaosDamage"] = { affix = "", "(30-50)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "mutatedunique", "damage", "chaos" }, }, + ["MutatedUniqueUniqueBelt55FireDamage"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, }, + ["MutatedUniqueUniqueBelt55IgniteDurationOnYou"] = { affix = "", "(40-60)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "elemental", "fire", "ailment" }, }, + ["MutatedUniqueUniqueBow27ImpalesChanceToLastAdditionalHit"] = { affix = "", "(10-15)% chance on Hitting an Enemy for all Impales on that Enemy to last for an additional Hit", statOrder = { 7256 }, level = 1, group = "ChanceImpaleLastsAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "physical" }, }, + ["MutatedUniqueUniqueBow27AttackSpeed"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, + ["MutatedUniqueUniqueBow26LocalCriticalStrikeChance"] = { affix = "", "(30-34)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "critical" }, }, + ["MutatedUniqueUniqueBow26FireDamageOverTimeMultiplier"] = { affix = "", "+(28-35)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "mutatedunique", "damage", "elemental", "fire" }, }, + ["MutatedUniqueUniqueTwoHandSword18FasterDamagingAilments"] = { affix = "", "Damaging Ailments deal damage (20-40)% faster", statOrder = { 6127 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, + ["MutatedUniqueUniqueTwoHandSword18LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, + ["MutatedUniqueUniqueTwoHandSword19AilmentDuration"] = { affix = "", "(30-35)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "ailment" }, }, + ["MutatedUniqueUniqueTwoHandSword19LocalAttackSpeed"] = { affix = "", "(25-27)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, + ["MutatedUniqueUniqueTwoHandMace16LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, + ["MutatedUniqueUniqueTwoHandMace16ChaosResistance"] = { affix = "", "+(25-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "chaos", "resistance" }, }, + ["MutatedUniqueUniqueTwoHandMace16PhysicalAddedAsChaos"] = { affix = "", "Gain (35-45)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "mutatedunique", "damage", "physical", "chaos" }, }, + ["MutatedUniqueUniqueTwoHandMace15LocalAttackSpeed"] = { affix = "", "(20-22)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "mutatedunique", "attack", "speed" }, }, + ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsFire"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "fire" }, }, + ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsCold"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "cold" }, }, + ["MutatedUniqueUniqueTwoHandMace15PhysicalAddedAsLightning"] = { affix = "", "Gain (20-25)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "mutatedunique", "damage", "physical", "elemental", "lightning" }, }, + ["MutatedUniqueUniqueAmulet85PercentIncreasedLife"] = { affix = "", "(8-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "life" }, }, + ["MutatedUniqueUniqueAmulet85LifeFlaskChargesEvery3Seconds"] = { affix = "", "Life Flasks gain (1-3) Charge every 3 seconds", statOrder = { 7347 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueUniqueAmulet81PercentIncreasedMana"] = { affix = "", "(12-14)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, + ["MutatedUniqueUniqueAmulet81ManaFlaskChargesEvery3Seconds"] = { affix = "", "Mana Flasks gain (1-3) Charge every 3 seconds", statOrder = { 8175 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, + ["MutatedUniqueUniqueAmulet6ReducedMaximumMana"] = { affix = "", "20% reduced maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mutatedunique", "mana" }, }, + ["MutatedUniqueUniqueAmulet6IncreasedGoldFound"] = { affix = "", "20% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7303 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "mutatedunique" }, }, } \ No newline at end of file diff --git a/src/Data/ModGraft.lua b/src/Data/ModGraft.lua index 540a1b609c..20ee9dd275 100644 --- a/src/Data/ModGraft.lua +++ b/src/Data/ModGraft.lua @@ -2,489 +2,489 @@ -- Item data (c) Grinding Gear Games return { - ["GraftPrefixUulnetolFlatAddedPhysical1"] = { type = "Prefix", affix = "Blunt", "Adds 1 to (3-5) Physical Damage", statOrder = { 1270 }, level = 1, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolFlatAddedPhysical2"] = { type = "Prefix", affix = "Heavy", "Adds (1-3) to (6-9) Physical Damage", statOrder = { 1270 }, level = 22, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolFlatAddedPhysical3"] = { type = "Prefix", affix = "Weighted", "Adds (2-3) to (10-12) Physical Damage", statOrder = { 1270 }, level = 44, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolFlatAddedPhysical4"] = { type = "Prefix", affix = "Dense", "Adds (2-4) to (13-15) Physical Damage", statOrder = { 1270 }, level = 66, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolFlatAddedPhysical5"] = { type = "Prefix", affix = "Hefty", "Adds (3-5) to (14-18) Physical Damage", statOrder = { 1270 }, level = 82, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolBleedChance1"] = { type = "Prefix", affix = "Pointed", "Attacks have (5-9)% chance to cause Bleeding", statOrder = { 2494 }, level = 1, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolBleedChance2"] = { type = "Prefix", affix = "Needling", "Attacks have (10-14)% chance to cause Bleeding", statOrder = { 2494 }, level = 22, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolBleedChance3"] = { type = "Prefix", affix = "Cutting", "Attacks have (15-19)% chance to cause Bleeding", statOrder = { 2494 }, level = 44, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolBleedChance4"] = { type = "Prefix", affix = "Biting", "Attacks have (20-24)% chance to cause Bleeding", statOrder = { 2494 }, level = 66, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolBleedChance5"] = { type = "Prefix", affix = "Incisive", "Attacks have (25-30)% chance to cause Bleeding", statOrder = { 2494 }, level = 82, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolDamageOverTimeMultiplier1"] = { type = "Prefix", affix = "Putrefying", "+(5-9)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 22, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolDamageOverTimeMultiplier2"] = { type = "Prefix", affix = "Sickening", "+(10-14)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 66, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolDamageOverTimeMultiplier3"] = { type = "Prefix", affix = "Repugnant", "+(15-20)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 82, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolKnockback1"] = { type = "Prefix", affix = "Swatting", "(5-9)% chance to Knock Enemies Back on hit", "10% increased Knockback Distance", statOrder = { 2000, 2007 }, level = 22, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolKnockback2"] = { type = "Prefix", affix = "Bashing", "(10-14)% chance to Knock Enemies Back on hit", "20% increased Knockback Distance", statOrder = { 2000, 2007 }, level = 66, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolKnockback3"] = { type = "Prefix", affix = "Walloping", "(15-20)% chance to Knock Enemies Back on hit", "30% increased Knockback Distance", statOrder = { 2000, 2007 }, level = 82, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolReducedEnemyStunThreshold1"] = { type = "Prefix", affix = "Inundating", "(3-6)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolReducedEnemyStunThreshold2"] = { type = "Prefix", affix = "Devastating", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 22, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolReducedEnemyStunThreshold3"] = { type = "Prefix", affix = "Stunning", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 44, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolReducedEnemyStunThreshold4"] = { type = "Prefix", affix = "Overpowering", "(11-12)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 66, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolReducedEnemyStunThreshold5"] = { type = "Prefix", affix = "Overwhelming", "(13-14)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 82, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolStunDuration1"] = { type = "Prefix", affix = "Smashing", "(7-10)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolStunDuration2"] = { type = "Prefix", affix = "Thundering", "(11-14)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 22, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolStunDuration3"] = { type = "Prefix", affix = "Brutish", "(14-17)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 44, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolStunDuration4"] = { type = "Prefix", affix = "Sweeping", "(18-21)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 66, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolStunDuration5"] = { type = "Prefix", affix = "Thudding", "(21-24)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 82, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage1"] = { type = "Prefix", affix = "Squire's", "(5-9)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage2"] = { type = "Prefix", affix = "Journeyman's", "(10-14)% increased Global Physical Damage", statOrder = { 1236 }, level = 11, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage3"] = { type = "Prefix", affix = "Reaver's", "(15-19)% increased Global Physical Damage", statOrder = { 1236 }, level = 22, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage4"] = { type = "Prefix", affix = "Mercenary's", "(20-24)% increased Global Physical Damage", statOrder = { 1236 }, level = 33, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage5"] = { type = "Prefix", affix = "Champion's", "(25-29)% increased Global Physical Damage", statOrder = { 1236 }, level = 44, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage6"] = { type = "Prefix", affix = "Conqueror's", "(30-34)% increased Global Physical Damage", statOrder = { 1236 }, level = 55, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage7"] = { type = "Prefix", affix = "Slayer's", "(35-39)% increased Global Physical Damage", statOrder = { 1236 }, level = 66, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage8"] = { type = "Prefix", affix = "General's", "(40-44)% increased Global Physical Damage", statOrder = { 1236 }, level = 74, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage9"] = { type = "Prefix", affix = "Emperor's", "(45-49)% increased Global Physical Damage", statOrder = { 1236 }, level = 82, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage10"] = { type = "Prefix", affix = "Dictator's", "(50-55)% increased Global Physical Damage", statOrder = { 1236 }, level = 85, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolImpaleChance1"] = { type = "Prefix", affix = "Brutal", "(3-5)% chance to Impale Enemies on Hit", statOrder = { 7257 }, level = 1, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolImpaleChance2"] = { type = "Prefix", affix = "Unforgiving", "(6-10)% chance to Impale Enemies on Hit", statOrder = { 7257 }, level = 22, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolImpaleChance3"] = { type = "Prefix", affix = "Unrelenting", "(11-15)% chance to Impale Enemies on Hit", statOrder = { 7257 }, level = 44, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolImpaleChance4"] = { type = "Prefix", affix = "Grim", "(16-20)% chance to Impale Enemies on Hit", statOrder = { 7257 }, level = 66, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolImpaleChance5"] = { type = "Prefix", affix = "Impaling", "(21-25)% chance to Impale Enemies on Hit", statOrder = { 7257 }, level = 82, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolImpaleEffect1"] = { type = "Prefix", affix = "Cruel", "(10-14)% increased Impale Effect", statOrder = { 7247 }, level = 44, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolImpaleEffect2"] = { type = "Prefix", affix = "Wicked", "(15-19)% increased Impale Effect", statOrder = { 7247 }, level = 66, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolImpaleEffect3"] = { type = "Prefix", affix = "Vicious", "(20-24)% increased Impale Effect", statOrder = { 7247 }, level = 82, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolEnduranceChargeWhenHit1"] = { type = "Prefix", affix = "Stoic", "(10-20)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2756 }, level = 66, group = "GraftPrefixUulnetolEnduranceChargeWhenHit", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolStunThreshold1"] = { type = "Prefix", affix = "Steadfast", "(15-17)% increased Stun Threshold", statOrder = { 3277 }, level = 1, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolStunThreshold2"] = { type = "Prefix", affix = "Staunch", "(18-20)% increased Stun Threshold", statOrder = { 3277 }, level = 22, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolStunThreshold3"] = { type = "Prefix", affix = "Steady", "(21-23)% increased Stun Threshold", statOrder = { 3277 }, level = 44, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolStunThreshold4"] = { type = "Prefix", affix = "Unwavering", "(24-26)% increased Stun Threshold", statOrder = { 3277 }, level = 66, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolStunThreshold5"] = { type = "Prefix", affix = "Unmoving", "(27-29)% increased Stun Threshold", statOrder = { 3277 }, level = 82, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolMaximumLife1"] = { type = "Prefix", affix = "Lively", "(3-4)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolMaximumLife2"] = { type = "Prefix", affix = "Vigorous", "(5-6)% increased maximum Life", statOrder = { 1576 }, level = 22, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolMaximumLife3"] = { type = "Prefix", affix = "Healthy", "(7-9)% increased maximum Life", statOrder = { 1576 }, level = 44, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolMaximumLife4"] = { type = "Prefix", affix = "Robust", "(10-12)% increased maximum Life", statOrder = { 1576 }, level = 66, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolMaximumLife5"] = { type = "Prefix", affix = "Hale", "(13-15)% increased maximum Life", statOrder = { 1576 }, level = 82, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixUulnetolLifeLeech1"] = { type = "Prefix", affix = "Vampiric", "(10-20)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 44, group = "GraftPrefixUulnetolLifeLeech", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophFasterAilments1"] = { type = "Prefix", affix = "Wasting", "Damaging Ailments deal damage (3-5)% faster", statOrder = { 6132 }, level = 44, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophFasterAilments2"] = { type = "Prefix", affix = "Wilting", "Damaging Ailments deal damage (6-8)% faster", statOrder = { 6132 }, level = 66, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophFasterAilments3"] = { type = "Prefix", affix = "Deteriorating", "Damaging Ailments deal damage (9-11)% faster", statOrder = { 6132 }, level = 82, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftPrefixXophIgniteChance1"] = { type = "Prefix", affix = "Alight", "(4-10)% chance to Ignite", statOrder = { 2031 }, level = 1, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophIgniteChance2"] = { type = "Prefix", affix = "Smouldering", "(11-17)% chance to Ignite", statOrder = { 2031 }, level = 22, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophIgniteChance3"] = { type = "Prefix", affix = "Burning", "(18-24)% chance to Ignite", statOrder = { 2031 }, level = 44, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixXophIgniteChance4"] = { type = "Prefix", affix = "Fiery", "(25-30)% chance to Ignite", statOrder = { 2031 }, level = 66, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophIgniteChance5"] = { type = "Prefix", affix = "Blazing", "(31-40)% chance to Ignite", statOrder = { 2031 }, level = 82, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophFlatAddedFire1"] = { type = "Prefix", affix = "Heated", "Adds (3-4) to (6-8) Fire Damage", statOrder = { 1364 }, level = 1, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophFlatAddedFire2"] = { type = "Prefix", affix = "Fierce", "Adds (4-7) to (11-15) Fire Damage", statOrder = { 1364 }, level = 22, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophFlatAddedFire3"] = { type = "Prefix", affix = "Fervent", "Adds (10-12) to (15-19) Fire Damage", statOrder = { 1364 }, level = 44, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixXophFlatAddedFire4"] = { type = "Prefix", affix = "Torrid", "Adds (14-17) to (21-25) Fire Damage", statOrder = { 1364 }, level = 66, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophFlatAddedFire5"] = { type = "Prefix", affix = "Magmatic", "Adds (20-23) to (26-32) Fire Damage", statOrder = { 1364 }, level = 82, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedFireDamage1"] = { type = "Prefix", affix = "Hellish", "(5-9)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedFireDamage2"] = { type = "Prefix", affix = "Damnable", "(10-14)% increased Fire Damage", statOrder = { 1362 }, level = 11, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedFireDamage3"] = { type = "Prefix", affix = "Devil's", "(15-19)% increased Fire Damage", statOrder = { 1362 }, level = 22, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedFireDamage4"] = { type = "Prefix", affix = "Imps'", "(20-24)% increased Fire Damage", statOrder = { 1362 }, level = 33, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedFireDamage5"] = { type = "Prefix", affix = "Fiend's", "(25-29)% increased Fire Damage", statOrder = { 1362 }, level = 44, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedFireDamage6"] = { type = "Prefix", affix = "Demon's", "(30-34)% increased Fire Damage", statOrder = { 1362 }, level = 55, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedFireDamage7"] = { type = "Prefix", affix = "Tartarean", "(35-39)% increased Fire Damage", statOrder = { 1362 }, level = 66, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedFireDamage8"] = { type = "Prefix", affix = "Stygian", "(40-44)% increased Fire Damage", statOrder = { 1362 }, level = 74, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedFireDamage9"] = { type = "Prefix", affix = "Hadean", "(45-49)% increased Fire Damage", statOrder = { 1362 }, level = 82, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedFireDamage10"] = { type = "Prefix", affix = "Infernal", "(50-55)% increased Fire Damage", statOrder = { 1362 }, level = 85, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophIgniteDuration1"] = { type = "Prefix", affix = "Unquenchable", "(10-14)% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 44, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophIgniteDuration2"] = { type = "Prefix", affix = "Everburning", "(15-19)% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 66, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophIgniteDuration3"] = { type = "Prefix", affix = "Inextinguishable", "(20-25)% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 82, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophWarcryCooldown1"] = { type = "Prefix", affix = "Howling", "(12-17)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 44, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophWarcryCooldown2"] = { type = "Prefix", affix = "Screaming", "(18-22)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 82, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftPrefixXophAreaOfEffect1"] = { type = "Prefix", affix = "Snatching", "(5-6)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophAreaOfEffect2"] = { type = "Prefix", affix = "Grasping", "(7-8)% increased Area of Effect", statOrder = { 1885 }, level = 22, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophAreaOfEffect3"] = { type = "Prefix", affix = "Clutching", "(9-10)% increased Area of Effect", statOrder = { 1885 }, level = 44, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixXophAreaOfEffect4"] = { type = "Prefix", affix = "Siezing", "(11-12)% increased Area of Effect", statOrder = { 1885 }, level = 66, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophAreaOfEffect5"] = { type = "Prefix", affix = "Reaching", "(13-14)% increased Area of Effect", statOrder = { 1885 }, level = 82, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophStrength1"] = { type = "Prefix", affix = "Brawny", "+(3-5) to Strength", statOrder = { 1182 }, level = 1, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophStrength2"] = { type = "Prefix", affix = "Powerful", "+(6-8) to Strength", statOrder = { 1182 }, level = 22, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophStrength3"] = { type = "Prefix", affix = "Burly", "+(9-11) to Strength", statOrder = { 1182 }, level = 44, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixXophStrength4"] = { type = "Prefix", affix = "Muscular", "+(12-14) to Strength", statOrder = { 1182 }, level = 66, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophStrength5"] = { type = "Prefix", affix = "Beefy", "+(15-17) to Strength", statOrder = { 1182 }, level = 82, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophPercentageStrength1"] = { type = "Prefix", affix = "Brutish", "(2-4)% increased Strength", statOrder = { 1189 }, level = 74, group = "GraftPrefixXophPercentageStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophPercentageArmour1"] = { type = "Prefix", affix = "Carapaced", "(15-18)% increased Armour", statOrder = { 1546 }, level = 1, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophPercentageArmour2"] = { type = "Prefix", affix = "Clad", "(19-22)% increased Armour", statOrder = { 1546 }, level = 22, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophPercentageArmour3"] = { type = "Prefix", affix = "Reinforced", "(23-26)% increased Armour", statOrder = { 1546 }, level = 44, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixXophPercentageArmour4"] = { type = "Prefix", affix = "Plated", "(27-30)% increased Armour", statOrder = { 1546 }, level = 66, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophPercentageArmour5"] = { type = "Prefix", affix = "Iron", "(30-35)% increased Armour", statOrder = { 1546 }, level = 82, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophFireResistance1"] = { type = "Prefix", affix = "Thermal", "+(5-12)% to Fire Resistance", statOrder = { 1630 }, level = 44, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophFireResistance2"] = { type = "Prefix", affix = "Refractory", "+(13-20)% to Fire Resistance", statOrder = { 1630 }, level = 66, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophFireResistance3"] = { type = "Prefix", affix = "Heatproof", "+(21-28)% to Fire Resistance", statOrder = { 1630 }, level = 82, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophFirePenetration1"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2986 }, level = 66, group = "GraftPrefixXophFirePenetration", weightKey = { "graft_xoph", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, - ["GraftPrefixXophMaximumFireResistance1"] = { type = "Prefix", affix = "Fireproof", "+(1-2)% to maximum Fire Resistance", statOrder = { 1628 }, level = 74, group = "GraftPrefixXophMaximumFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedAttackDamage1"] = { type = "Prefix", affix = "Combatant's", "(5-9)% increased Attack Damage", statOrder = { 1203 }, level = 1, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedAttackDamage2"] = { type = "Prefix", affix = "Warrior's", "(10-14)% increased Attack Damage", statOrder = { 1203 }, level = 11, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedAttackDamage3"] = { type = "Prefix", affix = "Fighter's", "(15-19)% increased Attack Damage", statOrder = { 1203 }, level = 22, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedAttackDamage4"] = { type = "Prefix", affix = "Brawler's", "(20-24)% increased Attack Damage", statOrder = { 1203 }, level = 33, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedAttackDamage5"] = { type = "Prefix", affix = "Soldier's", "(25-29)% increased Attack Damage", statOrder = { 1203 }, level = 44, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedAttackDamage6"] = { type = "Prefix", affix = "Veteran's", "(30-34)% increased Attack Damage", statOrder = { 1203 }, level = 55, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedAttackDamage7"] = { type = "Prefix", affix = "Assailant's", "(35-39)% increased Attack Damage", statOrder = { 1203 }, level = 66, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedAttackDamage8"] = { type = "Prefix", affix = "Gladiator's", "(40-44)% increased Attack Damage", statOrder = { 1203 }, level = 74, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedAttackDamage9"] = { type = "Prefix", affix = "Prizefighter's", "(45-49)% increased Attack Damage", statOrder = { 1203 }, level = 82, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophGlobalIncreasedAttackDamage10"] = { type = "Prefix", affix = "Pitfighter's", "(50-55)% increased Attack Damage", statOrder = { 1203 }, level = 85, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixXophMinionDuration1"] = { type = "Prefix", affix = "Lingering", "(10-12)% increased Minion Duration", statOrder = { 5037 }, level = 44, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixXophMinionDuration2"] = { type = "Prefix", affix = "Abiding", "(13-15)% increased Minion Duration", statOrder = { 5037 }, level = 66, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixXophMinionDuration3"] = { type = "Prefix", affix = "Undying", "(16-18)% increased Minion Duration", statOrder = { 5037 }, level = 82, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixEshShockChance1"] = { type = "Prefix", affix = "Jolting", "(3-5)% chance to Shock", statOrder = { 2038 }, level = 1, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshShockChance2"] = { type = "Prefix", affix = "Enervating", "(6-8)% chance to Shock", statOrder = { 2038 }, level = 22, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshShockChance3"] = { type = "Prefix", affix = "Sparking", "(9-11)% chance to Shock", statOrder = { 2038 }, level = 44, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshShockChance4"] = { type = "Prefix", affix = "Zapping", "(12-14)% chance to Shock", statOrder = { 2038 }, level = 66, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshShockChance5"] = { type = "Prefix", affix = "Shocking", "(15-17)% chance to Shock", statOrder = { 2038 }, level = 82, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshShockDuration1"] = { type = "Prefix", affix = "Sustained", "(15-24)% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 44, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshShockDuration2"] = { type = "Prefix", affix = "Lasting", "(25-34)% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 66, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshShockDuration3"] = { type = "Prefix", affix = "Perpetual", "(35-45)% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 82, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningDamage1"] = { type = "Prefix", affix = "Flashing", "(5-9)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningDamage2"] = { type = "Prefix", affix = "Bright", "(10-14)% increased Lightning Damage", statOrder = { 1382 }, level = 11, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningDamage3"] = { type = "Prefix", affix = "Bolting", "(15-19)% increased Lightning Damage", statOrder = { 1382 }, level = 22, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningDamage4"] = { type = "Prefix", affix = "Discharging", "(20-24)% increased Lightning Damage", statOrder = { 1382 }, level = 33, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningDamage5"] = { type = "Prefix", affix = "Stormrider's", "(25-29)% increased Lightning Damage", statOrder = { 1382 }, level = 44, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningDamage6"] = { type = "Prefix", affix = "Thunderbolt's", "(30-34)% increased Lightning Damage", statOrder = { 1382 }, level = 55, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningDamage7"] = { type = "Prefix", affix = "Stormcaller's", "(35-39)% increased Lightning Damage", statOrder = { 1382 }, level = 66, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningDamage8"] = { type = "Prefix", affix = "Invoker's", "(40-44)% increased Lightning Damage", statOrder = { 1382 }, level = 74, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningDamage9"] = { type = "Prefix", affix = "Stormweaver's", "(45-49)% increased Lightning Damage", statOrder = { 1382 }, level = 82, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningDamage10"] = { type = "Prefix", affix = "Esh's", "(50-55)% increased Lightning Damage", statOrder = { 1382 }, level = 85, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixEshFlatAddedLightning1"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (5-7) Lightning Damage", statOrder = { 1384 }, level = 1, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixEshFlatAddedLightning2"] = { type = "Prefix", affix = "Empowered", "Adds (1-2) to (8-16) Lightning Damage", statOrder = { 1384 }, level = 22, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixEshFlatAddedLightning3"] = { type = "Prefix", affix = "Flashing", "Adds (1-3) to (20-24) Lightning Damage", statOrder = { 1384 }, level = 44, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixEshFlatAddedLightning4"] = { type = "Prefix", affix = "Fulminating", "Adds (2-4) to (33-41) Lightning Damage", statOrder = { 1384 }, level = 66, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixEshFlatAddedLightning5"] = { type = "Prefix", affix = "Static", "Adds (4-6) to (54-60) Lightning Damage", statOrder = { 1384 }, level = 82, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixEshCriticalChanceVSShocked1"] = { type = "Prefix", affix = "Convulsive", "(30-49)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5918 }, level = 66, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshCriticalChanceVSShocked2"] = { type = "Prefix", affix = "Fulgurating", "(50-65)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5918 }, level = 82, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshAttackAndCastSpeed1"] = { type = "Prefix", affix = "Rapid", "(4-6)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 44, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshAttackAndCastSpeed2"] = { type = "Prefix", affix = "Fleet", "(8-10)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 66, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshAttackAndCastSpeed3"] = { type = "Prefix", affix = "Quickening", "(12-14)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 82, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionDamage1"] = { type = "Prefix", affix = "Noble", "Minions deal (5-9)% increased Damage", statOrder = { 1978 }, level = 1, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionDamage2"] = { type = "Prefix", affix = "Regal", "Minions deal (10-14)% increased Damage", statOrder = { 1978 }, level = 11, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionDamage3"] = { type = "Prefix", affix = "Lord's", "Minions deal (15-19)% increased Damage", statOrder = { 1978 }, level = 22, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionDamage4"] = { type = "Prefix", affix = "Lady's", "Minions deal (20-24)% increased Damage", statOrder = { 1978 }, level = 33, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionDamage5"] = { type = "Prefix", affix = "Baron's", "Minions deal (25-29)% increased Damage", statOrder = { 1978 }, level = 44, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionDamage6"] = { type = "Prefix", affix = "Duke's", "Minions deal (30-34)% increased Damage", statOrder = { 1978 }, level = 55, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionDamage7"] = { type = "Prefix", affix = "Aristocrat's", "Minions deal (35-39)% increased Damage", statOrder = { 1978 }, level = 66, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionDamage8"] = { type = "Prefix", affix = "Elite", "Minions deal (40-44)% increased Damage", statOrder = { 1978 }, level = 74, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionDamage9"] = { type = "Prefix", affix = "Prince's", "Minions deal (45-49)% increased Damage", statOrder = { 1978 }, level = 82, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionDamage10"] = { type = "Prefix", affix = "Monarch's", "Minions deal (50-55)% increased Damage", statOrder = { 1978 }, level = 85, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionAttackAndCastSpeed1"] = { type = "Prefix", affix = "Feverish", "Minions have (4-6)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 44, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionAttackAndCastSpeed2"] = { type = "Prefix", affix = "Manic", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 66, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMinionAttackAndCastSpeed3"] = { type = "Prefix", affix = "Frenetic", "Minions have (12-14)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 82, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshGlobalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Protective", "(3-5)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshGlobalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Bolstered", "(6-8)% increased maximum Energy Shield", statOrder = { 1566 }, level = 11, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshGlobalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Barrier", "(9-11)% increased maximum Energy Shield", statOrder = { 1566 }, level = 33, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshGlobalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Reinforced", "(12-13)% increased maximum Energy Shield", statOrder = { 1566 }, level = 54, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshGlobalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Buttressed", "(14-16)% increased maximum Energy Shield", statOrder = { 1566 }, level = 66, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningResistance1"] = { type = "Prefix", affix = "Grounded", "+(5-12)% to Lightning Resistance", statOrder = { 1641 }, level = 22, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningResistance2"] = { type = "Prefix", affix = "Insulated", "+(13-20)% to Lightning Resistance", statOrder = { 1641 }, level = 66, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningResistance3"] = { type = "Prefix", affix = "Absorbing", "+(21-28)% to Lightning Resistance", statOrder = { 1641 }, level = 82, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshLightningPenetration1"] = { type = "Prefix", affix = "Energetic", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2989 }, level = 66, group = "GraftPrefixEshLightningPenetration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMovementSpeed1"] = { type = "Prefix", affix = "Expedient", "(3-6)% increased Movement Speed", statOrder = { 1803 }, level = 66, group = "GraftPrefixEshMovementSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 50, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshMaximumLightningResistance1"] = { type = "Prefix", affix = "Sequestered", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1639 }, level = 74, group = "GraftPrefixEshMaximumLightningResistance", weightKey = { "graft_esh", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["GraftPrefixEshIncreasedMana1"] = { type = "Prefix", affix = "Expansive", "(3-6)% increased maximum Mana", statOrder = { 1585 }, level = 22, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshIncreasedMana2"] = { type = "Prefix", affix = "Unbounded", "(7-10)% increased maximum Mana", statOrder = { 1585 }, level = 66, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshIncreasedMana3"] = { type = "Prefix", affix = "Illimitable", "(11-14)% increased maximum Mana", statOrder = { 1585 }, level = 82, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshIntelligence1"] = { type = "Prefix", affix = "Controlled", "+(3-5) to Intelligence", statOrder = { 1184 }, level = 1, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 100, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshIntelligence2"] = { type = "Prefix", affix = "Brilliant", "+(6-8) to Intelligence", statOrder = { 1184 }, level = 22, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshIntelligence3"] = { type = "Prefix", affix = "Astute", "+(9-11) to Intelligence", statOrder = { 1184 }, level = 44, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshIntelligence4"] = { type = "Prefix", affix = "Acute", "+(12-14) to Intelligence", statOrder = { 1184 }, level = 66, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshIntelligence5"] = { type = "Prefix", affix = "Genius'", "+(15-17) to Intelligence", statOrder = { 1184 }, level = 82, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshPercentageIntelligence1"] = { type = "Prefix", affix = "Composed", "(2-4)% increased Intelligence", statOrder = { 1191 }, level = 74, group = "GraftPrefixEshPercentageIntelligence", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixEshSpellDamage1"] = { type = "Prefix", affix = "Arcane", "(5-9)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshSpellDamage2"] = { type = "Prefix", affix = "Spelleweaving", "(10-14)% increased Spell Damage", statOrder = { 1228 }, level = 11, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshSpellDamage3"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", statOrder = { 1228 }, level = 22, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshSpellDamage4"] = { type = "Prefix", affix = "Mage's", "(20-24)% increased Spell Damage", statOrder = { 1228 }, level = 33, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshSpellDamage5"] = { type = "Prefix", affix = "Scholar's", "(25-29)% increased Spell Damage", statOrder = { 1228 }, level = 44, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshSpellDamage6"] = { type = "Prefix", affix = "Wizard's", "(30-34)% increased Spell Damage", statOrder = { 1228 }, level = 55, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshSpellDamage7"] = { type = "Prefix", affix = "Sage's", "(35-39)% increased Spell Damage", statOrder = { 1228 }, level = 66, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshSpellDamage8"] = { type = "Prefix", affix = "Sorcerer's", "(40-44)% increased Spell Damage", statOrder = { 1228 }, level = 74, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshSpellDamage9"] = { type = "Prefix", affix = "Magician's", "(45-49)% increased Spell Damage", statOrder = { 1228 }, level = 82, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, - ["GraftPrefixEshSpellDamage10"] = { type = "Prefix", affix = "Lich's", "(50-55)% increased Spell Damage", statOrder = { 1228 }, level = 85, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, - ["GraftPrefixTulFreezeChance1"] = { type = "Prefix", affix = "Frigid", "(3-5)% chance to Freeze", statOrder = { 2034 }, level = 1, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulFreezeChance2"] = { type = "Prefix", affix = "Frosted", "(6-8)% chance to Freeze", statOrder = { 2034 }, level = 22, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulFreezeChance3"] = { type = "Prefix", affix = "Bitter", "(9-11)% chance to Freeze", statOrder = { 2034 }, level = 44, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixTulFreezeChance4"] = { type = "Prefix", affix = "Wintry", "(12-14)% chance to Freeze", statOrder = { 2034 }, level = 66, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixTulFreezeChance5"] = { type = "Prefix", affix = "Freezing", "(15-17)% chance to Freeze", statOrder = { 2034 }, level = 82, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulFlatAddedColdDamage1"] = { type = "Prefix", affix = "Icy", "Adds (3-4) to (6-8) Cold Damage", statOrder = { 1373 }, level = 1, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulFlatAddedColdDamage2"] = { type = "Prefix", affix = "Cold", "Adds (4-7) to (11-15) Cold Damage", statOrder = { 1373 }, level = 22, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulFlatAddedColdDamage3"] = { type = "Prefix", affix = "Brumal", "Adds (10-12) to (15-19) Cold Damage", statOrder = { 1373 }, level = 44, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixTulFlatAddedColdDamage4"] = { type = "Prefix", affix = "Bleak", "Adds (14-17) to (21-25) Cold Damage", statOrder = { 1373 }, level = 66, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixTulFlatAddedColdDamage5"] = { type = "Prefix", affix = "Frostbound", "Adds (20-23) to (26-32) Cold Damage", statOrder = { 1373 }, level = 82, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulIncreasedColdDamage1"] = { type = "Prefix", affix = "", "(5-9)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulIncreasedColdDamage2"] = { type = "Prefix", affix = "", "(10-14)% increased Cold Damage", statOrder = { 1371 }, level = 11, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulIncreasedColdDamage3"] = { type = "Prefix", affix = "", "(15-19)% increased Cold Damage", statOrder = { 1371 }, level = 22, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulIncreasedColdDamage4"] = { type = "Prefix", affix = "", "(20-24)% increased Cold Damage", statOrder = { 1371 }, level = 33, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulIncreasedColdDamage5"] = { type = "Prefix", affix = "", "(25-29)% increased Cold Damage", statOrder = { 1371 }, level = 44, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulIncreasedColdDamage6"] = { type = "Prefix", affix = "", "(30-34)% increased Cold Damage", statOrder = { 1371 }, level = 55, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixTulIncreasedColdDamage7"] = { type = "Prefix", affix = "", "(35-39)% increased Cold Damage", statOrder = { 1371 }, level = 66, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixTulIncreasedColdDamage8"] = { type = "Prefix", affix = "", "(40-44)% increased Cold Damage", statOrder = { 1371 }, level = 74, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixTulIncreasedColdDamage9"] = { type = "Prefix", affix = "", "(45-49)% increased Cold Damage", statOrder = { 1371 }, level = 82, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixTulIncreasedColdDamage10"] = { type = "Prefix", affix = "", "(50-55)% increased Cold Damage", statOrder = { 1371 }, level = 85, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulStrikeRange1"] = { type = "Prefix", affix = "Extended", "+(0.1-0.3) metres to Melee Strike Range", statOrder = { 2539 }, level = 66, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulStrikeRange2"] = { type = "Prefix", affix = "Elongated", "+0.4 metres to Melee Strike Range", statOrder = { 2539 }, level = 82, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftPrefixTulAdditionalStrike1"] = { type = "Prefix", affix = "Versatile", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 66, group = "GraftPrefixTulAdditionalStrike", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftPrefixTulProjectileSpeed1"] = { type = "Prefix", affix = "Tossing", "(5-9)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulProjectileSpeed2"] = { type = "Prefix", affix = "Hurling", "(10-14)% increased Projectile Speed", statOrder = { 1801 }, level = 22, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulProjectileSpeed3"] = { type = "Prefix", affix = "Lobbing", "(15-19)% increased Projectile Speed", statOrder = { 1801 }, level = 44, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixTulProjectileSpeed4"] = { type = "Prefix", affix = "Slinging", "(20-24)% increased Projectile Speed", statOrder = { 1801 }, level = 66, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixTulProjectileSpeed5"] = { type = "Prefix", affix = "Propeling", "(25-30)% increased Projectile Speed", statOrder = { 1801 }, level = 82, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulGlobalIncreasedEvasion1"] = { type = "Prefix", affix = "Blurred", "(15-18)% increased Evasion Rating", statOrder = { 1554 }, level = 1, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulGlobalIncreasedEvasion2"] = { type = "Prefix", affix = "Obscuring", "(19-22)% increased Evasion Rating", statOrder = { 1554 }, level = 22, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulGlobalIncreasedEvasion3"] = { type = "Prefix", affix = "Hazy", "(23-26)% increased Evasion Rating", statOrder = { 1554 }, level = 44, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixTulGlobalIncreasedEvasion4"] = { type = "Prefix", affix = "Shrouded", "(27-30)% increased Evasion Rating", statOrder = { 1554 }, level = 66, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixTulGlobalIncreasedEvasion5"] = { type = "Prefix", affix = "Mistborn", "(30-35)% increased Evasion Rating", statOrder = { 1554 }, level = 82, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulColdResistance1"] = { type = "Prefix", affix = "Winterised", "+(5-12)% to Cold Resistance", statOrder = { 1636 }, level = 44, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulColdResistance2"] = { type = "Prefix", affix = "Insular", "+(13-20)% to Cold Resistance", statOrder = { 1636 }, level = 66, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixTulColdResistance3"] = { type = "Prefix", affix = "Yeti's", "+(21-28)% to Cold Resistance", statOrder = { 1636 }, level = 82, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulColdPenetration1"] = { type = "Prefix", affix = "Biting", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2988 }, level = 66, group = "GraftPrefixTulColdPenetration", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulChillEffect1"] = { type = "Prefix", affix = "Impeding", "(20-29)% increased Effect of Chill", statOrder = { 5774 }, level = 66, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulChillEffect2"] = { type = "Prefix", affix = "Shackling", "(30-40)% increased Effect of Chill", statOrder = { 5774 }, level = 82, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftPrefixTulCritMultiplier1"] = { type = "Prefix", affix = "Dangerous", "+(9-10)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulCritMultiplier2"] = { type = "Prefix", affix = "Harmful", "+(11-12)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 22, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulCritMultiplier3"] = { type = "Prefix", affix = "Threatening", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 44, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixTulCritMultiplier4"] = { type = "Prefix", affix = "Lethal", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 66, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixTulCritMultiplier5"] = { type = "Prefix", affix = "Deadly", "+(16-18)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 82, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulCritChance1"] = { type = "Prefix", affix = "Careful", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulCritChance2"] = { type = "Prefix", affix = "Exact", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 22, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulCritChance3"] = { type = "Prefix", affix = "Unerring", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 44, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixTulCritChance4"] = { type = "Prefix", affix = "Precise", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 66, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixTulCritChance5"] = { type = "Prefix", affix = "Pinpoint", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 82, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulPowerChargeOnKill1"] = { type = "Prefix", affix = "Potent", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 66, group = "GraftPrefixTulPowerChargeOnKill", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftPrefixTulFrenzyChargeOnHitVsUnique1"] = { type = "Prefix", affix = "Frenzied", "(5-10)% chance to gain a Frenzy Charge when you Hit a Unique Enemy", statOrder = { 6766 }, level = 66, group = "GraftPrefixTulFrenzyChargeOnHitVsUnique", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftPrefixTulMaximumColdResistance1"] = { type = "Prefix", affix = "Blustering", "+(1-2)% to maximum Cold Resistance", statOrder = { 1634 }, level = 74, group = "GraftPrefixTulMaximumColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["GraftPrefixTulDexterity1"] = { type = "Prefix", affix = "Lithe", "+(3-5) to Dexterity", statOrder = { 1183 }, level = 1, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulDexterity2"] = { type = "Prefix", affix = "Adroit", "+(6-8) to Dexterity", statOrder = { 1183 }, level = 22, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulDexterity3"] = { type = "Prefix", affix = "Nimble", "+(9-11) to Dexterity", statOrder = { 1183 }, level = 44, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixTulDexterity4"] = { type = "Prefix", affix = "Adept", "+(12-14) to Dexterity", statOrder = { 1183 }, level = 66, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixTulDexterity5"] = { type = "Prefix", affix = "Dexterous", "+(15-17) to Dexterity", statOrder = { 1183 }, level = 82, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulPercentageDexterity1"] = { type = "Prefix", affix = "Graceful", "(2-4)% increased Dexterity", statOrder = { 1190 }, level = 74, group = "GraftPrefixTulPercentageDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulMinionLife1"] = { type = "Prefix", affix = "Chief's", "Minions have (9-10)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulMinionLife2"] = { type = "Prefix", affix = "Ruler's", "Minions have (11-12)% increased maximum Life", statOrder = { 1771 }, level = 22, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulMinionLife3"] = { type = "Prefix", affix = "Despot's", "Minions have (13-14)% increased maximum Life", statOrder = { 1771 }, level = 44, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftPrefixTulMinionLife4"] = { type = "Prefix", affix = "Authoritarian's", "Minions have (15-16)% increased maximum Life", statOrder = { 1771 }, level = 66, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixTulMinionLife5"] = { type = "Prefix", affix = "Overlord's", "Minions have (17-18)% increased maximum Life", statOrder = { 1771 }, level = 82, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftPrefixTulMinionResistances1"] = { type = "Prefix", affix = "Noble's", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 2917 }, level = 22, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftPrefixTulMinionResistances2"] = { type = "Prefix", affix = "Lord's", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 2917 }, level = 44, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftPrefixTulMinionResistances3"] = { type = "Prefix", affix = "King's", "Minions have +(13-16)% to all Elemental Resistances", statOrder = { 2917 }, level = 66, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixStunDuration1"] = { type = "Suffix", affix = "of Slamming", "Skills used by this Graft have (10-19)% increased Stun Duration", statOrder = { 10921 }, level = 44, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixStunDuration2"] = { type = "Suffix", affix = "of Thudding", "Skills used by this Graft have (20-29)% increased Stun Duration", statOrder = { 10921 }, level = 66, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixStunDuration3"] = { type = "Suffix", affix = "of Dazing", "Skills used by this Graft have (30-39)% increased Stun Duration", statOrder = { 10921 }, level = 82, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixAreaOfEffect1"] = { type = "Suffix", affix = "of Reach", "Skills used by this Graft have (8-12)% increased Area of Effect", statOrder = { 10868 }, level = 1, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixAreaOfEffect2"] = { type = "Suffix", affix = "of Grasping", "Skills used by this Graft have (14-16)% increased Area of Effect", statOrder = { 10868 }, level = 22, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixAreaOfEffect3"] = { type = "Suffix", affix = "of Extension", "Skills used by this Graft have (18-22)% increased Area of Effect", statOrder = { 10868 }, level = 44, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, }, - ["GraftSuffixAreaOfEffect4"] = { type = "Suffix", affix = "of Broadening", "Skills used by this Graft have (24-28)% increased Area of Effect", statOrder = { 10868 }, level = 66, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["GraftSuffixAreaOfEffect5"] = { type = "Suffix", affix = "of the Expanse", "Skills used by this Graft have (30-34)% increased Area of Effect", statOrder = { 10868 }, level = 82, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, }, - ["GraftSuffixHinderOnHit1"] = { type = "Suffix", affix = "of Hindrance", "Spells used by this Graft Hinder Enemies on Hit", statOrder = { 10920 }, level = 44, group = "GraftSuffixHinderOnHit", weightKey = { "graft_tul_tornado", "graft_esh_lightning_hands", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["GraftSuffixChainingDistance1"] = { type = "Suffix", affix = "of Ricocheting", "Skills used by this Graft have (40-69)% increased Chaining range", statOrder = { 10870 }, level = 44, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixChainingDistance2"] = { type = "Suffix", affix = "of Chaining", "Skills used by this Graft have (70-100)% increased Chaining range", statOrder = { 10870 }, level = 82, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixAdditionalProjectiles1"] = { type = "Suffix", affix = "of Splitting", "Skills used by this Graft fire 2 additional Projectiles", statOrder = { 10911 }, level = 44, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["GraftSuffixAdditionalProjectiles2"] = { type = "Suffix", affix = "of Splintering", "Skills used by this Graft fire 3 additional Projectiles", statOrder = { 10911 }, level = 82, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["GraftSuffixProjectileSpeed1"] = { type = "Suffix", affix = "of Flight", "Skills used by this Graft have (8-12)% increased Projectile Speed", statOrder = { 10913 }, level = 1, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixProjectileSpeed2"] = { type = "Suffix", affix = "of Gliding", "Skills used by this Graft have (13-17)% increased Projectile Speed", statOrder = { 10913 }, level = 22, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixProjectileSpeed3"] = { type = "Suffix", affix = "of Homing", "Skills used by this Graft have (18-22)% increased Projectile Speed", statOrder = { 10913 }, level = 44, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixProjectileSpeed4"] = { type = "Suffix", affix = "of Launching", "Skills used by this Graft have (23-27)% increased Projectile Speed", statOrder = { 10913 }, level = 66, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixProjectileSpeed5"] = { type = "Suffix", affix = "of Soaring", "Skills used by this Graft have (28-32)% increased Projectile Speed", statOrder = { 10913 }, level = 82, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamage1"] = { type = "Suffix", affix = "of Blasting", "Skills used by this Graft deal (10-29)% increased Damage", statOrder = { 10883 }, level = 1, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamage2"] = { type = "Suffix", affix = "of Smashing", "Skills used by this Graft deal (30-49)% increased Damage", statOrder = { 10883 }, level = 11, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamage3"] = { type = "Suffix", affix = "of Shattering", "Skills used by this Graft deal (50-69)% increased Damage", statOrder = { 10883 }, level = 22, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamage4"] = { type = "Suffix", affix = "of Wrecking", "Skills used by this Graft deal (70-89)% increased Damage", statOrder = { 10883 }, level = 33, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamage5"] = { type = "Suffix", affix = "of Destroying", "Skills used by this Graft deal (90-109)% increased Damage", statOrder = { 10883 }, level = 44, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamage6"] = { type = "Suffix", affix = "of Crushing", "Skills used by this Graft deal (110-129)% increased Damage", statOrder = { 10883 }, level = 55, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamage7"] = { type = "Suffix", affix = "of Disintegration", "Skills used by this Graft deal (130-149)% increased Damage", statOrder = { 10883 }, level = 66, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamage8"] = { type = "Suffix", affix = "of Demolishing", "Skills used by this Graft deal (150-169)% increased Damage", statOrder = { 10883 }, level = 74, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamage9"] = { type = "Suffix", affix = "of Ruination", "Skills used by this Graft deal (170-189)% increased Damage", statOrder = { 10883 }, level = 82, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamage10"] = { type = "Suffix", affix = "of Annihilation", "Skills used by this Graft deal (190-220)% increased Damage", statOrder = { 10883 }, level = 85, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDuration1"] = { type = "Suffix", affix = "of Lingering", "Skills used by this Graft have (10-14)% increased Skill Effect Duration", statOrder = { 10886 }, level = 1, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDuration2"] = { type = "Suffix", affix = "of Lasting", "Skills used by this Graft have (15-20)% increased Skill Effect Duration", statOrder = { 10886 }, level = 22, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDuration3"] = { type = "Suffix", affix = "of the Unending", "Skills used by this Graft have (20-24)% increased Skill Effect Duration", statOrder = { 10886 }, level = 44, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDuration4"] = { type = "Suffix", affix = "of Permanence", "Skills used by this Graft have (25-29)% increased Skill Effect Duration", statOrder = { 10886 }, level = 66, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDuration5"] = { type = "Suffix", affix = "of Eternity", "Skills used by this Graft have (30-35)% increased Skill Effect Duration", statOrder = { 10886 }, level = 82, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, }, - ["GraftSuffixCooldownSpeed1"] = { type = "Suffix", affix = "of the Creek", "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10876 }, level = 1, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, }, - ["GraftSuffixCooldownSpeed2"] = { type = "Suffix", affix = "of the Stream", "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate", statOrder = { 10876 }, level = 22, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, }, - ["GraftSuffixCooldownSpeed3"] = { type = "Suffix", affix = "of the River", "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate", statOrder = { 10876 }, level = 44, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 700, 0 }, modTags = { }, }, - ["GraftSuffixCooldownSpeed4"] = { type = "Suffix", affix = "of the Tide", "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate", statOrder = { 10876 }, level = 66, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { }, }, - ["GraftSuffixCooldownSpeed5"] = { type = "Suffix", affix = "of the Oceans", "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate", statOrder = { 10876 }, level = 82, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 300, 0 }, modTags = { }, }, - ["GraftSuffixSkipCooldown1"] = { type = "Suffix", affix = "of Chronomancy", "Skills used by this Graft have 25% chance to not consume a Cooldown on use", statOrder = { 10919 }, level = 66, group = "GraftSuffixSkipCooldown", weightKey = { "graft_esh_bolt_ring", "graft_uulnetol_hand_slam", "graft_xoph_cremations", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, }, - ["GraftSuffixAttackSpeed1"] = { type = "Suffix", affix = "of Speed", "Skills used by this Graft have (10-24)% increased Attack Speed", statOrder = { 10869 }, level = 22, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["GraftSuffixAttackSpeed2"] = { type = "Suffix", affix = "of Quickness", "Skills used by this Graft have (25-39)% increased Attack Speed", statOrder = { 10869 }, level = 44, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["GraftSuffixAttackSpeed3"] = { type = "Suffix", affix = "of Agility", "Skills used by this Graft have (40-55)% increased Attack Speed", statOrder = { 10869 }, level = 66, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["GraftSuffixSkillLevel1"] = { type = "Suffix", affix = "of Nobility", "+2 to level of Skills used by this Graft", statOrder = { 10902 }, level = 44, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GraftSuffixSkillLevel2"] = { type = "Suffix", affix = "of Lordship", "+3 to level of Skills used by this Graft", statOrder = { 10902 }, level = 66, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["GraftSuffixSkillLevel3"] = { type = "Suffix", affix = "of Royalty", "+4 to level of Skills used by this Graft", statOrder = { 10902 }, level = 85, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GraftSuffixCriticalChance1"] = { type = "Suffix", affix = "of Incision", "Skills used by this Graft have (40-79)% increased Critical Strike Chance", "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier", statOrder = { 10879, 10880 }, level = 1, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixCriticalChance2"] = { type = "Suffix", affix = "of Slicing", "Skills used by this Graft have (80-119)% increased Critical Strike Chance", "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier", statOrder = { 10879, 10880 }, level = 22, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixCriticalChance3"] = { type = "Suffix", affix = "of Dicing", "Skills used by this Graft have (120-139)% increased Critical Strike Chance", "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier", statOrder = { 10879, 10880 }, level = 44, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixCriticalChance4"] = { type = "Suffix", affix = "of Striking", "Skills used by this Graft have (140-159)% increased Critical Strike Chance", "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier", statOrder = { 10879, 10880 }, level = 66, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixCriticalChance5"] = { type = "Suffix", affix = "of Precision", "Skills used by this Graft have (160-200)% increased Critical Strike Chance", "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier", statOrder = { 10879, 10880 }, level = 82, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixFirePenetration1"] = { type = "Suffix", affix = "of Singing", "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance", statOrder = { 10915 }, level = 44, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixFirePenetration2"] = { type = "Suffix", affix = "of Searing", "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance", statOrder = { 10915 }, level = 66, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, - ["GraftSuffixFirePenetration3"] = { type = "Suffix", affix = "of Blackening", "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance", statOrder = { 10915 }, level = 82, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, }, - ["GraftSuffixColdPenetration1"] = { type = "Suffix", affix = "of the North", "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance", statOrder = { 10914 }, level = 44, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixColdPenetration2"] = { type = "Suffix", affix = "of the Boreal", "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance", statOrder = { 10914 }, level = 66, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixColdPenetration3"] = { type = "Suffix", affix = "of the Arctic", "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance", statOrder = { 10914 }, level = 82, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixLightningPenetration1"] = { type = "Suffix", affix = "of Scattered Bolts", "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance", statOrder = { 10916 }, level = 44, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixLightningPenetration2"] = { type = "Suffix", affix = "of Striking Jolts", "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance", statOrder = { 10916 }, level = 66, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixLightningPenetration3"] = { type = "Suffix", affix = "of Seeking Sparks", "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance", statOrder = { 10916 }, level = 82, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulnetolHandSlamDamageForCDR1"] = { type = "Suffix", affix = "of Impact", "Skills used by this Graft have 20% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (20-29)% more Damage", statOrder = { 10876, 10931 }, level = 44, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixUulnetolHandSlamDamageForCDR2"] = { type = "Suffix", affix = "of Cratering", "Skills used by this Graft have 25% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (30-45)% more Damage", statOrder = { 10876, 10931 }, level = 82, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE1"] = { type = "Suffix", affix = "of Earthshaking", "Skills used by this Graft have (15-24)% more Area of Effect", "Skills used by this Graft have 15% less Attack Speed", statOrder = { 10954, 10955 }, level = 44, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE2"] = { type = "Suffix", affix = "of Earthshattering", "Skills used by this Graft have (25-35)% more Area of Effect", "Skills used by this Graft have 10% less Attack Speed", statOrder = { 10954, 10955 }, level = 82, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["GraftSuffixUulnetolHandSlamCrushOnHit1"] = { type = "Suffix", affix = "of Pulverising", "Skills used by this Graft Crush on Hit", statOrder = { 10881 }, level = 44, group = "GraftSuffixUulnetolHandSlamCrushOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulnetolHandSlamVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Vulnerability", "Skills used by this Graft inflict Vulnerability on Hit", statOrder = { 10937 }, level = 44, group = "GraftSuffixUulnetolHandSlamVulnerabilityOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixUulnetolHandSlamIntimidateOnHit1"] = { type = "Suffix", affix = "of Intimidation", "Skills used by this Graft Intimidate on Hit", statOrder = { 10897 }, level = 44, group = "GraftSuffixUulnetolHandSlamIntimidateOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixIgnorePhysMitigation1"] = { type = "Suffix", affix = "of Overwhelming", "Skills used by this Graft ignore Enemy Physical Damage Reduction", statOrder = { 10893 }, level = 44, group = "GraftSuffixIgnorePhysMitigation", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["GraftSuffixShockChance1"] = { type = "Suffix", affix = "of Zapping", "Skills used by this Graft have (19-57)% chance to Shock", statOrder = { 10918 }, level = 1, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixShockChance2"] = { type = "Suffix", affix = "of Jolting", "Skills used by this Graft have (29-87)% chance to Shock", statOrder = { 10918 }, level = 22, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixShockChance3"] = { type = "Suffix", affix = "of Blitzing", "Skills used by this Graft have (39-117)% chance to Shock", statOrder = { 10918 }, level = 44, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixShockChance4"] = { type = "Suffix", affix = "of Electricity", "Skills used by this Graft have (49-147)% chance to Shock", statOrder = { 10918 }, level = 66, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixShockChance5"] = { type = "Suffix", affix = "of Sublimation", "Skills used by this Graft have (60-180)% chance to Shock", statOrder = { 10918 }, level = 82, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixIgniteChance1"] = { type = "Suffix", affix = "of Cinders", "Skills used by this Graft have (13-29)% chance to Ignite", statOrder = { 10872 }, level = 1, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixIgniteChance2"] = { type = "Suffix", affix = "of Coal", "Skills used by this Graft have (29-44)% chance to Ignite", statOrder = { 10872 }, level = 22, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixIgniteChance3"] = { type = "Suffix", affix = "of Embers", "Skills used by this Graft have (44-59)% chance to Ignite", statOrder = { 10872 }, level = 44, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 700, 700, 700, 0 }, modTags = { }, }, - ["GraftSuffixIgniteChance4"] = { type = "Suffix", affix = "of Ashes", "Skills used by this Graft have (60-74)% chance to Ignite", statOrder = { 10872 }, level = 66, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, - ["GraftSuffixIgniteChance5"] = { type = "Suffix", affix = "of Glowing", "Skills used by this Graft have (75-100)% chance to Ignite", statOrder = { 10872 }, level = 82, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, }, - ["GraftSuffixFreezeChance1"] = { type = "Suffix", affix = "of Ice", "Skills used by this Graft have (10-19)% chance to Freeze", statOrder = { 10871 }, level = 1, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixFreezeChance2"] = { type = "Suffix", affix = "of Sleet", "Skills used by this Graft have (20-29)% chance to Freeze", statOrder = { 10871 }, level = 22, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixFreezeChance3"] = { type = "Suffix", affix = "of Snow", "Skills used by this Graft have (30-39)% chance to Freeze", statOrder = { 10871 }, level = 44, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixFreezeChance4"] = { type = "Suffix", affix = "of Hail", "Skills used by this Graft have (40-49)% chance to Freeze", statOrder = { 10871 }, level = 66, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixFreezeChance5"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft have (50-60)% chance to Freeze", statOrder = { 10871 }, level = 82, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixShockAsThoughDealingMoreDamage1"] = { type = "Suffix", affix = "of Amplification", "Skills used by this Graft Shock Enemies as though dealing 100% more Damage", statOrder = { 10917 }, level = 66, group = "GraftSuffixShockAsThoughDealingMoreDamage", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixLightningGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Bolt", "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10903 }, level = 44, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixLightningGainAsChaos2"] = { type = "Suffix", affix = "of Twisted Thunder", "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10903 }, level = 66, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, - ["GraftSuffixLightningGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Storms", "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10903 }, level = 82, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, }, - ["GraftSuffixFireGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Smoke", "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage", statOrder = { 10891 }, level = 44, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixFireGainAsChaos2"] = { type = "Suffix", affix = "of Umbral Flame", "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage", statOrder = { 10891 }, level = 66, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, - ["GraftSuffixFireGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Flame", "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage", statOrder = { 10891 }, level = 82, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, }, - ["GraftSuffixColdGainAsChaos1"] = { type = "Suffix", affix = "of Blasted Snow", "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage", statOrder = { 10874 }, level = 44, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixColdGainAsChaos2"] = { type = "Suffix", affix = "of Blackened Ice", "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage", statOrder = { 10874 }, level = 66, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["GraftSuffixColdGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Frost", "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage", statOrder = { 10874 }, level = 82, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["GraftSuffixCoverInFrost1"] = { type = "Suffix", affix = "of Snowdrifts", "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit", statOrder = { 10878 }, level = 66, group = "GraftSuffixCoverInFrost", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixAilmentDuration1"] = { type = "Suffix", affix = "of Torment", "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration", statOrder = { 10867 }, level = 22, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixAilmentDuration2"] = { type = "Suffix", affix = "of Misery", "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration", statOrder = { 10867 }, level = 66, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixAilmentDuration3"] = { type = "Suffix", affix = "of Torture", "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration", statOrder = { 10867 }, level = 82, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixFireExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit", statOrder = { 10895 }, level = 44, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixFireExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit", statOrder = { 10895 }, level = 66, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixFireExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit", statOrder = { 10895 }, level = 82, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixLightningExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit", statOrder = { 10896 }, level = 44, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixLightningExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit", statOrder = { 10896 }, level = 66, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixLightningExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit", statOrder = { 10896 }, level = 82, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixImpaleEffect1"] = { type = "Suffix", affix = "of Wringing", "Skills used by this Graft have (20-34)% increased Impale Effect", statOrder = { 10894 }, level = 44, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixImpaleEffect2"] = { type = "Suffix", affix = "of Twisting", "Skills used by this Graft have (35-44)% increased Impale Effect", statOrder = { 10894 }, level = 66, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixImpaleEffect3"] = { type = "Suffix", affix = "of Mangling", "Skills used by this Graft have (45-55)% increased Impale Effect", statOrder = { 10894 }, level = 82, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamage1"] = { type = "Suffix", affix = "of Armies", "Minions summoned by this Graft deal (10-29)% increased Damage", statOrder = { 10906 }, level = 1, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamage2"] = { type = "Suffix", affix = "of Infantry", "Minions summoned by this Graft deal (30-49)% increased Damage", statOrder = { 10906 }, level = 11, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamage3"] = { type = "Suffix", affix = "of Troops", "Minions summoned by this Graft deal (50-69)% increased Damage", statOrder = { 10906 }, level = 22, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamage4"] = { type = "Suffix", affix = "of the Multitude", "Minions summoned by this Graft deal (70-89)% increased Damage", statOrder = { 10906 }, level = 33, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamage5"] = { type = "Suffix", affix = "of Swarms", "Minions summoned by this Graft deal (90-109)% increased Damage", statOrder = { 10906 }, level = 44, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamage6"] = { type = "Suffix", affix = "of Hordes", "Minions summoned by this Graft deal (110-129)% increased Damage", statOrder = { 10906 }, level = 55, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamage7"] = { type = "Suffix", affix = "of Hosts", "Minions summoned by this Graft deal (130-149)% increased Damage", statOrder = { 10906 }, level = 66, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamage8"] = { type = "Suffix", affix = "of Throngs", "Minions summoned by this Graft deal (150-169)% increased Damage", statOrder = { 10906 }, level = 74, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamage9"] = { type = "Suffix", affix = "of Droves", "Minions summoned by this Graft deal (170-189)% increased Damage", statOrder = { 10906 }, level = 82, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamage10"] = { type = "Suffix", affix = "of Legions", "Minions summoned by this Graft deal (190-220)% increased Damage", statOrder = { 10906 }, level = 85, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixMinionLife1"] = { type = "Suffix", affix = "of Muscle", "Minions summoned by this Graft have (32-36)% increased Life", statOrder = { 10907 }, level = 1, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixMinionLife2"] = { type = "Suffix", affix = "of Flesh", "Minions summoned by this Graft have (38-42)% increased Life", statOrder = { 10907 }, level = 22, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixMinionLife3"] = { type = "Suffix", affix = "of Sinew", "Minions summoned by this Graft have (44-48)% increased Life", statOrder = { 10907 }, level = 44, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixMinionLife4"] = { type = "Suffix", affix = "of Beef", "Minions summoned by this Graft have (50-54)% increased Life", statOrder = { 10907 }, level = 66, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixMinionLife5"] = { type = "Suffix", affix = "of Meat", "Minions summoned by this Graft have (56-60)% increased Life", statOrder = { 10907 }, level = 82, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixMinionAttackSpeed1"] = { type = "Suffix", affix = "of Lunacy", "Minions summoned by this Graft have (12-18)% increased Attack Speed", statOrder = { 10904 }, level = 44, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixMinionAttackSpeed2"] = { type = "Suffix", affix = "of Psychopathy", "Minions summoned by this Graft have (19-25)% increased Attack Speed", statOrder = { 10904 }, level = 66, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixMinionAttackSpeed3"] = { type = "Suffix", affix = "of Maniacism", "Minions summoned by this Graft have (26-31)% increased Attack Speed", statOrder = { 10904 }, level = 82, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixMinionBlindOnHit1"] = { type = "Suffix", affix = "of Blinding Snow", "Minions summoned by this Graft have (10-20)% chance to Blind on Hit", statOrder = { 10909 }, level = 66, group = "GraftSuffixMinionBlindOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixMinionTauntOnHit1"] = { type = "Suffix", affix = "of Taunting", "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit", statOrder = { 10905 }, level = 66, group = "GraftSuffixMinionTauntOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamageGainAsCold1"] = { type = "Suffix", affix = "of Frozen Falls", "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage", statOrder = { 10908 }, level = 44, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamageGainAsCold2"] = { type = "Suffix", affix = "of Winter Winds", "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage", statOrder = { 10908 }, level = 66, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixMinionDamageGainAsCold3"] = { type = "Suffix", affix = "of Sleetbound Snow", "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage", statOrder = { 10908 }, level = 82, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixFasterAilments1"] = { type = "Suffix", affix = "of Decomposition", "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster", statOrder = { 10885 }, level = 44, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixFasterAilments2"] = { type = "Suffix", affix = "of Festering", "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster", statOrder = { 10885 }, level = 66, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixFasterAilments3"] = { type = "Suffix", affix = "of Perishing", "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster", statOrder = { 10885 }, level = 82, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixPunishmentOnHit1"] = { type = "Suffix", affix = "of Punishment", "Skills used by this Graft inflict Punishment on Hit", statOrder = { 10882 }, level = 44, group = "GraftSuffixPunishmentOnHit", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixNonDamagingAilmentEffect1"] = { type = "Suffix", affix = "of Oppression", "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments", statOrder = { 10910 }, level = 22, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixNonDamagingAilmentEffect2"] = { type = "Suffix", affix = "of Suppression", "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments", statOrder = { 10910 }, level = 66, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["GraftSuffixNonDamagingAilmentEffect3"] = { type = "Suffix", affix = "of Persecution", "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments", statOrder = { 10910 }, level = 82, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamageVsIgnited1"] = { type = "Suffix", affix = "of Aggravation", "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies", statOrder = { 10884 }, level = 44, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamageVsIgnited2"] = { type = "Suffix", affix = "of Exacerbation", "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies", statOrder = { 10884 }, level = 66, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["GraftSuffixIncreasedDamageVsIgnited3"] = { type = "Suffix", affix = "of Anguish", "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies", statOrder = { 10884 }, level = 82, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, - ["GraftSuffixEshLightningRingBuffAddedLightning1"] = { type = "Suffix", affix = "of Glowing", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage", statOrder = { 10866 }, level = 44, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixEshLightningRingBuffAddedLightning2"] = { type = "Suffix", affix = "of Shimmering", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage", statOrder = { 10866 }, level = 66, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixEshLightningRingBuffAddedLightning3"] = { type = "Suffix", affix = "of Radiance", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage", statOrder = { 10866 }, level = 82, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixEshLightningRingConductivityOnHit"] = { type = "Suffix", affix = "of Conductivity", "Skills used by this Graft inflict Conductivity on Hit", statOrder = { 10875 }, level = 66, group = "GraftSuffixEshLightningRingConductivityOnHit", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixEshLightningRingNumberOfBolts1"] = { type = "Suffix", affix = "of Bolts", "Skills used by this Graft cause 4 additional lightning bolt strikes", statOrder = { 10889 }, level = 44, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixEshLightningRingNumberOfBolts2"] = { type = "Suffix", affix = "of Thunderclaps", "Skills used by this Graft cause 6 additional lightning bolt strikes", statOrder = { 10889 }, level = 82, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixXophMoltenShellShieldAmount1"] = { type = "Suffix", affix = "of the Core", "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage", statOrder = { 10945 }, level = 44, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixXophMoltenShellShieldAmount2"] = { type = "Suffix", affix = "of the Crux", "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage", statOrder = { 10945 }, level = 66, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixXophMoltenShellShieldAmount3"] = { type = "Suffix", affix = "of the Heart", "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage", statOrder = { 10945 }, level = 82, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixXophMoltenShellCoverInAsh1"] = { type = "Suffix", affix = "of Ashen Flame", "Skills used by this Graft Cover Enemies in Ash on Hit", statOrder = { 10877 }, level = 66, group = "GraftSuffixXophMoltenShellCoverInAsh", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixXophMoltenShellArmourDuringBuff1"] = { type = "Suffix", affix = "of Flameplating", "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour", statOrder = { 10946 }, level = 44, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixXophMoltenShellArmourDuringBuff2"] = { type = "Suffix", affix = "of Fiery Buttresses", "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour", statOrder = { 10946 }, level = 82, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixXophMoltenShellPercentTakenByBuff1"] = { type = "Suffix", affix = "of the Fireheart", "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield", statOrder = { 10947 }, level = 66, group = "GraftSuffixXophMoltenShellPercentTakenByBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixXophMoltenShellLessShieldIncreasedCDR1"] = { type = "Suffix", affix = "of Hasty Reconstruction", "Skills used by this Graft have 40% increased Cooldown Recovery Rate", "Heart of Flame Buff used by this Graft can take 30% less Damage", statOrder = { 10876, 10948 }, level = 44, group = "GraftSuffixXophMoltenShellLessShieldIncreasedCDR", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["GraftSuffixFrostbiteOnHit1"] = { type = "Suffix", affix = "of Frostbite", "Skills used by this Graft inflict Frostbite on Hit", statOrder = { 10892 }, level = 44, group = "GraftSuffixFrostbiteOnHit", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, - ["GraftSuffixTulTornadoProjectileDamageAfterPierce1"] = { type = "Suffix", affix = "of Boring", "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage", statOrder = { 10912 }, level = 66, group = "GraftSuffixTulTornadoProjectileDamageAfterPierce", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixTulTornadoAdditionalTornado1"] = { type = "Suffix", affix = "of Whirlwinds", "Skills used by this Graft deal 40% less Damage", "Dance in the White used by this Graft creates an additional Tornado", "Dance in the White used by this Graft has +1 to maximum Tornados", statOrder = { 10927, 10928, 10929 }, level = 66, group = "GraftSuffixTulTornadoAdditionalTornado", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixXophGeysersAdditionalGeyser1"] = { type = "Suffix", affix = "of Eruption", "His Burning Message used by this Graft creates an additional geyser", statOrder = { 10943 }, level = 44, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixXophGeysersAdditionalGeyser2"] = { type = "Suffix", affix = "of Geysers", "His Burning Message used by this Graft creates 2 additional geysers", statOrder = { 10943 }, level = 82, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixXophGeysersAdditionalWarcyProjectiles1"] = { type = "Suffix", affix = "of Deafening", "Geysers created by this Graft fire 2 additional Projectiles when you Warcry", statOrder = { 10944 }, level = 66, group = "GraftSuffixXophGeysersAdditionalWarcyProjectiles", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixJoltBuffMaximumJoltBuffCount1"] = { type = "Suffix", affix = "of Trembling", "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs", statOrder = { 10900 }, level = 44, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixJoltBuffMaximumJoltBuffCount2"] = { type = "Suffix", affix = "of Shuddering", "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs", statOrder = { 10900 }, level = 82, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixJoltMaxDamageAndDamageTaken1"] = { type = "Suffix", affix = "of Peril", "Jolt granted by this Graft grants +1% increased Damage taken", "Jolt granted by this Graft grants +1% more Maximum Attack Damage", statOrder = { 10887, 10888 }, level = 66, group = "GraftSuffixJoltMaxDamageAndDamageTaken", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixJoltGrantsCriticalStrikeChance1"] = { type = "Suffix", affix = "of Heightening", "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance", statOrder = { 10898 }, level = 1, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixJoltGrantsCriticalStrikeChance2"] = { type = "Suffix", affix = "of Sharpening", "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance", statOrder = { 10898 }, level = 22, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixJoltGrantsCriticalStrikeChance3"] = { type = "Suffix", affix = "of Amplification", "Jolt granted by this Graft grants 4% increased Critical Strike Chance", statOrder = { 10898 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 700, 0 }, modTags = { }, }, - ["GraftSuffixJoltGrantsCriticalStrikeChance4"] = { type = "Suffix", affix = "of Intensity", "Jolt granted by this Graft grants 5% increased Critical Strike Chance", statOrder = { 10898 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixJoltGrantsCriticalStrikeChance5"] = { type = "Suffix", affix = "of Escalation", "Jolt granted by this Graft grants 6% increased Critical Strike Chance", statOrder = { 10898 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixJoltGrantsCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Pins", "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier", statOrder = { 10899 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixJoltGrantsCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Blades", "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier", statOrder = { 10899 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixJoltGrantsCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Daggers", "Jolt granted by this Graft grants +4% to Critical Strike Multiplier", statOrder = { 10899 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixJoltGrantsMovementVelocity1"] = { type = "Suffix", affix = "of Velocity", "Jolt granted by this Graft grants 1% increased Movement Speed", statOrder = { 10901 }, level = 66, group = "GraftSuffixJoltGrantsMovementVelocity", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixLightningHandsAdditionalHands1"] = { type = "Suffix", affix = "of Grasping", "Enervating Grasp used by this Graft creates (3-5) additional Hands", statOrder = { 10890 }, level = 66, group = "GraftSuffixLightningHandsAdditionalHands", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixLightningHandsUnnerveOnHit1"] = { type = "Suffix", affix = "of Unnerving", "Skills used by this Graft Unnerve on Hit", statOrder = { 10873 }, level = 44, group = "GraftSuffixLightningHandsUnnerveOnHit", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffDurationForEffect1"] = { type = "Suffix", affix = "of Dilution", "Skills used by this Graft have (34-40)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10886, 10951 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffDurationForEffect2"] = { type = "Suffix", affix = "of Thinning", "Skills used by this Graft have (41-45)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10886, 10951 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffAdditionalCharge1"] = { type = "Suffix", affix = "of Endurance", "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained", statOrder = { 10952 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffAdditionalCharge", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffRecovery1"] = { type = "Suffix", affix = "of Recovery", "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate", statOrder = { 10951 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffRecovery2"] = { type = "Suffix", affix = "of Rejuvenation", "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate", statOrder = { 10951 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffRecovery3"] = { type = "Suffix", affix = "of Renewal", "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate", statOrder = { 10951 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffBlockChance1"] = { type = "Suffix", affix = "of the Bulwark", "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage", statOrder = { 10949 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffBlockChance2"] = { type = "Suffix", affix = "of Shielding", "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage", statOrder = { 10949 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffBlockChance3"] = { type = "Suffix", affix = "of the Turtle", "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage", statOrder = { 10949 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffLifeLeech1"] = { type = "Suffix", affix = "of Bloodhunger", "Buff granted by Tender Embrace used by this Graft grants (0.2-0.3)% of Damage Leeched as Life", statOrder = { 10950 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffLifeLeech2"] = { type = "Suffix", affix = "of Vampirism", "Buff granted by Tender Embrace used by this Graft grants (0.3-0.4)% of Damage Leeched as Life", statOrder = { 10950 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolLowLifeBuffLifeLeech3"] = { type = "Suffix", affix = "of the Leech", "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life", statOrder = { 10950 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolImpaleBuffImpaleEffect1"] = { type = "Suffix", affix = "of Twisting", "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale", statOrder = { 10936 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolImpaleBuffImpaleEffect2"] = { type = "Suffix", affix = "of Wrenching", "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale", statOrder = { 10936 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed1"] = { type = "Suffix", affix = "of the Berserker", "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed", statOrder = { 10934 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed2"] = { type = "Suffix", affix = "of the Maniac", "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed", statOrder = { 10934 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed3"] = { type = "Suffix", affix = "of the Madman", "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed", statOrder = { 10934 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE1"] = { type = "Suffix", affix = "of Grasping", "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks", statOrder = { 10933 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE2"] = { type = "Suffix", affix = "of Clutching", "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks", statOrder = { 10933 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE3"] = { type = "Suffix", affix = "of Siezing", "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks", statOrder = { 10933 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction1"] = { type = "Suffix", affix = "of Devastation", "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10935 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixTulMortarAdditionalMortar1"] = { type = "Suffix", affix = "of Flinging", "Falling Crystals used by this Graft fires up to 1 additional mortar", statOrder = { 10926 }, level = 66, group = "GraftSuffixTulMortarAdditionalMortar", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixTulMortarMoreDamageVSFrozen1"] = { type = "Suffix", affix = "of Icebergs", "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies", statOrder = { 10925 }, level = 44, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixTulMortarMoreDamageVSFrozen2"] = { type = "Suffix", affix = "of Floes", "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies", statOrder = { 10925 }, level = 66, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixTulMortarMoreDamageVSFrozen3"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies", statOrder = { 10925 }, level = 82, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolSpikesAdditionalSpikes1"] = { type = "Suffix", affix = "of Foothills", "Seize the Flesh used by this Graft creates +(1-2) Spire", statOrder = { 10930 }, level = 66, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixUulNetolSpikesAdditionalSpikes2"] = { type = "Suffix", affix = "of Mountains", "Seize the Flesh used by this Graft creates +(3-4) Spires", statOrder = { 10930 }, level = 82, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixXophPillarAdditionalPillar1"] = { type = "Suffix", affix = "of Pillars", "Call the Pyre used by this Graft creates +1 Ashen Pillar", statOrder = { 10942 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixXophPillarAdditionalPillar2"] = { type = "Suffix", affix = "of Obelisks", "Call the Pyre used by this Graft creates +2 Ashen Pillars", statOrder = { 10942 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixXophAilmentBuffEleGainAsChaos1"] = { type = "Suffix", affix = "of Foulness", "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage", statOrder = { 10940 }, level = 66, group = "GraftSuffixXophAilmentBuffEleGainAsChaos", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixXophAilmentBuffEleResistances1"] = { type = "Suffix", affix = "of the Span", "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances", statOrder = { 10939 }, level = 44, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixXophAilmentBuffEleResistances2"] = { type = "Suffix", affix = "of Resistance", "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances", statOrder = { 10939 }, level = 66, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixXophAilmentBuffEleResistances3"] = { type = "Suffix", affix = "of Facets", "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances", statOrder = { 10939 }, level = 82, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixXophAilmentBuffElementalAilmentAvoid1"] = { type = "Suffix", affix = "of Eschewing", "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments", statOrder = { 10941 }, level = 44, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixXophAilmentBuffElementalAilmentAvoid2"] = { type = "Suffix", affix = "of Avoidance", "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments", statOrder = { 10941 }, level = 66, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra1"] = { type = "Suffix", affix = "of Prisms", "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10938 }, level = 44, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra2"] = { type = "Suffix", affix = "of the Spectrum", "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10938 }, level = 66, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra3"] = { type = "Suffix", affix = "of the Continuum", "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10938 }, level = 82, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixTulAegisBuffAmount1"] = { type = "Suffix", affix = "of Guarding", "Preserving Stillness used by this Graft can take (200-299) additional Damage", statOrder = { 10924 }, level = 44, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixTulAegisBuffAmount2"] = { type = "Suffix", affix = "of Shelter", "Preserving Stillness used by this Graft can take (300-399) additional Damage", statOrder = { 10924 }, level = 66, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixTulAegisBuffAmount3"] = { type = "Suffix", affix = "of Protection", "Preserving Stillness used by this Graft can take (400-500) additional Damage", statOrder = { 10924 }, level = 82, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixTulAegisBuffMaxResistance1"] = { type = "Suffix", affix = "of the Mosaic", "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances", statOrder = { 10923 }, level = 66, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftSuffixTulAegisBuffMaxResistance2"] = { type = "Suffix", affix = "of Hues", "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances", statOrder = { 10923 }, level = 82, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 150, 0 }, modTags = { }, }, - ["GraftSuffixTulAegisBuffAdditionalResistance1"] = { type = "Suffix", affix = "of Resistance", "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances", statOrder = { 10922 }, level = 44, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["GraftSuffixTulAegisBuffAdditionalResistance2"] = { type = "Suffix", affix = "of Resilience", "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances", statOrder = { 10922 }, level = 66, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["GraftSuffixTulAegisBuffAdditionalResistance3"] = { type = "Suffix", affix = "of Mettle", "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances", statOrder = { 10922 }, level = 82, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, }, - ["GraftCorruptionAttackSpeedPerFrenzy"] = { type = "Corrupted", affix = "", "(1-2)% increased Attack Speed per Frenzy Charge", statOrder = { 2054 }, level = 1, group = "GraftCorruptionAttackSpeedPerFrenzy", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, }, - ["GraftCorruptionCritChancePerPower"] = { type = "Corrupted", affix = "", "(4-8)% increased Critical Strike Chance per Power Charge", statOrder = { 3171 }, level = 1, group = "GraftCorruptionCritChancePerPower", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, }, - ["GraftCorruptionLifeRegenerationPerEndurance"] = { type = "Corrupted", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 1, group = "GraftCorruptionLifeRegenerationPerEndurance", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, }, - ["GraftCorruptionAccuracyFromLightRadius"] = { type = "Corrupted", affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7434 }, level = 1, group = "GraftCorruptionAccuracyFromLightRadius", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, }, - ["GraftCorruptionStunThresholdFromFireResistance"] = { type = "Corrupted", affix = "", "Stun Threshold is increased by Overcapped Fire Resistance", statOrder = { 10265 }, level = 1, group = "GraftCorruptionStunThresholdFromFireResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, }, - ["GraftCorruptionLessAreaDamageChanceFromColdResistance"] = { type = "Corrupted", affix = "", "1% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance", statOrder = { 10348 }, level = 1, group = "GraftCorruptionLessAreaDamageChanceFromColdResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, }, - ["GraftCorruptionProjectileSpeedPerStrength"] = { type = "Corrupted", affix = "", "1% increased Projectile Speed per 20 Strength", statOrder = { 9741 }, level = 66, group = "GraftCorruptionProjectileSpeedPerStrength", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, }, - ["GraftCorruptionCastSpeedPerDexterity"] = { type = "Corrupted", affix = "", "1% increased Cast Speed per 20 Dexterity", statOrder = { 5466 }, level = 66, group = "GraftCorruptionCastSpeedPerDexterity", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, }, - ["GraftCorruptionMeleeDamagePerIntelligence"] = { type = "Corrupted", affix = "", "1% increased Melee Damage per 20 Intelligence", statOrder = { 9192 }, level = 66, group = "GraftCorruptionMeleeDamagePerIntelligence", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, }, - ["GraftCorruptionNonDamagingAilmentEffectPerBlueGem"] = { type = "Corrupted", affix = "", "2% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed", statOrder = { 9496 }, level = 66, group = "GraftCorruptionNonDamagingAilmentEffectPerBlueGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, }, - ["GraftCorruptionCooldownSpeedPerGreenGem"] = { type = "Corrupted", affix = "", "2% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed", statOrder = { 5876 }, level = 66, group = "GraftCorruptionCooldownSpeedPerGreenGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, }, - ["GraftCorruptionSkillEffectDurationPerRedGem"] = { type = "Corrupted", affix = "", "2% increased Skill Effect Duration for each Red Skill Gem you have socketed", statOrder = { 10051 }, level = 66, group = "GraftCorruptionSkillEffectDurationPerRedGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolFlatAddedPhysical1"] = { type = "Prefix", affix = "Blunt", "Adds 1 to (3-5) Physical Damage", statOrder = { 1265 }, level = 1, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolFlatAddedPhysical2"] = { type = "Prefix", affix = "Heavy", "Adds (1-3) to (6-9) Physical Damage", statOrder = { 1265 }, level = 22, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolFlatAddedPhysical3"] = { type = "Prefix", affix = "Weighted", "Adds (2-3) to (10-12) Physical Damage", statOrder = { 1265 }, level = 44, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolFlatAddedPhysical4"] = { type = "Prefix", affix = "Dense", "Adds (2-4) to (13-15) Physical Damage", statOrder = { 1265 }, level = 66, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolFlatAddedPhysical5"] = { type = "Prefix", affix = "Hefty", "Adds (3-5) to (14-18) Physical Damage", statOrder = { 1265 }, level = 82, group = "GraftPrefixUulnetolFlatAddedPhysical", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolBleedChance1"] = { type = "Prefix", affix = "Pointed", "Attacks have (5-9)% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolBleedChance2"] = { type = "Prefix", affix = "Needling", "Attacks have (10-14)% chance to cause Bleeding", statOrder = { 2489 }, level = 22, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolBleedChance3"] = { type = "Prefix", affix = "Cutting", "Attacks have (15-19)% chance to cause Bleeding", statOrder = { 2489 }, level = 44, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolBleedChance4"] = { type = "Prefix", affix = "Biting", "Attacks have (20-24)% chance to cause Bleeding", statOrder = { 2489 }, level = 66, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolBleedChance5"] = { type = "Prefix", affix = "Incisive", "Attacks have (25-30)% chance to cause Bleeding", statOrder = { 2489 }, level = 82, group = "GraftPrefixUulnetolBleedChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolDamageOverTimeMultiplier1"] = { type = "Prefix", affix = "Putrefying", "+(5-9)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 22, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolDamageOverTimeMultiplier2"] = { type = "Prefix", affix = "Sickening", "+(10-14)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 66, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolDamageOverTimeMultiplier3"] = { type = "Prefix", affix = "Repugnant", "+(15-20)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 82, group = "GraftPrefixUulnetolDamageOverTimeMultiplier", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolKnockback1"] = { type = "Prefix", affix = "Swatting", "(5-9)% chance to Knock Enemies Back on hit", "10% increased Knockback Distance", statOrder = { 1995, 2002 }, level = 22, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolKnockback2"] = { type = "Prefix", affix = "Bashing", "(10-14)% chance to Knock Enemies Back on hit", "20% increased Knockback Distance", statOrder = { 1995, 2002 }, level = 66, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolKnockback3"] = { type = "Prefix", affix = "Walloping", "(15-20)% chance to Knock Enemies Back on hit", "30% increased Knockback Distance", statOrder = { 1995, 2002 }, level = 82, group = "GraftPrefixUulnetolKnockback", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolReducedEnemyStunThreshold1"] = { type = "Prefix", affix = "Inundating", "(3-6)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolReducedEnemyStunThreshold2"] = { type = "Prefix", affix = "Devastating", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 22, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolReducedEnemyStunThreshold3"] = { type = "Prefix", affix = "Stunning", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 44, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolReducedEnemyStunThreshold4"] = { type = "Prefix", affix = "Overpowering", "(11-12)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 66, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolReducedEnemyStunThreshold5"] = { type = "Prefix", affix = "Overwhelming", "(13-14)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 82, group = "GraftPrefixUulnetolReducedEnemyStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolStunDuration1"] = { type = "Prefix", affix = "Smashing", "(7-10)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolStunDuration2"] = { type = "Prefix", affix = "Thundering", "(11-14)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 22, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolStunDuration3"] = { type = "Prefix", affix = "Brutish", "(14-17)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 44, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolStunDuration4"] = { type = "Prefix", affix = "Sweeping", "(18-21)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 66, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolStunDuration5"] = { type = "Prefix", affix = "Thudding", "(21-24)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 82, group = "GraftPrefixUulnetolStunDuration", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage1"] = { type = "Prefix", affix = "Squire's", "(5-9)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage2"] = { type = "Prefix", affix = "Journeyman's", "(10-14)% increased Global Physical Damage", statOrder = { 1231 }, level = 11, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage3"] = { type = "Prefix", affix = "Reaver's", "(15-19)% increased Global Physical Damage", statOrder = { 1231 }, level = 22, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage4"] = { type = "Prefix", affix = "Mercenary's", "(20-24)% increased Global Physical Damage", statOrder = { 1231 }, level = 33, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage5"] = { type = "Prefix", affix = "Champion's", "(25-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 44, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage6"] = { type = "Prefix", affix = "Conqueror's", "(30-34)% increased Global Physical Damage", statOrder = { 1231 }, level = 55, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage7"] = { type = "Prefix", affix = "Slayer's", "(35-39)% increased Global Physical Damage", statOrder = { 1231 }, level = 66, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage8"] = { type = "Prefix", affix = "General's", "(40-44)% increased Global Physical Damage", statOrder = { 1231 }, level = 74, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage9"] = { type = "Prefix", affix = "Emperor's", "(45-49)% increased Global Physical Damage", statOrder = { 1231 }, level = 82, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolGlobalIncreasedPhysicalDamage10"] = { type = "Prefix", affix = "Dictator's", "(50-55)% increased Global Physical Damage", statOrder = { 1231 }, level = 85, group = "GraftPrefixUulnetolGlobalIncreasedPhysicalDamage", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolImpaleChance1"] = { type = "Prefix", affix = "Brutal", "(3-5)% chance to Impale Enemies on Hit", statOrder = { 7252 }, level = 1, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolImpaleChance2"] = { type = "Prefix", affix = "Unforgiving", "(6-10)% chance to Impale Enemies on Hit", statOrder = { 7252 }, level = 22, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolImpaleChance3"] = { type = "Prefix", affix = "Unrelenting", "(11-15)% chance to Impale Enemies on Hit", statOrder = { 7252 }, level = 44, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolImpaleChance4"] = { type = "Prefix", affix = "Grim", "(16-20)% chance to Impale Enemies on Hit", statOrder = { 7252 }, level = 66, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolImpaleChance5"] = { type = "Prefix", affix = "Impaling", "(21-25)% chance to Impale Enemies on Hit", statOrder = { 7252 }, level = 82, group = "GraftPrefixUulnetolImpaleChance", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolImpaleEffect1"] = { type = "Prefix", affix = "Cruel", "(10-14)% increased Impale Effect", statOrder = { 7242 }, level = 44, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolImpaleEffect2"] = { type = "Prefix", affix = "Wicked", "(15-19)% increased Impale Effect", statOrder = { 7242 }, level = 66, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolImpaleEffect3"] = { type = "Prefix", affix = "Vicious", "(20-24)% increased Impale Effect", statOrder = { 7242 }, level = 82, group = "GraftPrefixUulnetolImpaleEffect", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolEnduranceChargeWhenHit1"] = { type = "Prefix", affix = "Stoic", "(10-20)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2751 }, level = 66, group = "GraftPrefixUulnetolEnduranceChargeWhenHit", weightKey = { "graft_uulnetol", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolStunThreshold1"] = { type = "Prefix", affix = "Steadfast", "(15-17)% increased Stun Threshold", statOrder = { 3272 }, level = 1, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolStunThreshold2"] = { type = "Prefix", affix = "Staunch", "(18-20)% increased Stun Threshold", statOrder = { 3272 }, level = 22, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolStunThreshold3"] = { type = "Prefix", affix = "Steady", "(21-23)% increased Stun Threshold", statOrder = { 3272 }, level = 44, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolStunThreshold4"] = { type = "Prefix", affix = "Unwavering", "(24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 66, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolStunThreshold5"] = { type = "Prefix", affix = "Unmoving", "(27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 82, group = "GraftPrefixUulnetolStunThreshold", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolMaximumLife1"] = { type = "Prefix", affix = "Lively", "(3-4)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolMaximumLife2"] = { type = "Prefix", affix = "Vigorous", "(5-6)% increased maximum Life", statOrder = { 1571 }, level = 22, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolMaximumLife3"] = { type = "Prefix", affix = "Healthy", "(7-9)% increased maximum Life", statOrder = { 1571 }, level = 44, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolMaximumLife4"] = { type = "Prefix", affix = "Robust", "(10-12)% increased maximum Life", statOrder = { 1571 }, level = 66, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolMaximumLife5"] = { type = "Prefix", affix = "Hale", "(13-15)% increased maximum Life", statOrder = { 1571 }, level = 82, group = "GraftPrefixUulnetolMaximumLife", weightKey = { "graft_uulnetol", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixUulnetolLifeLeech1"] = { type = "Prefix", affix = "Vampiric", "(10-20)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 44, group = "GraftPrefixUulnetolLifeLeech", weightKey = { "graft_uulnetol", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophFasterAilments1"] = { type = "Prefix", affix = "Wasting", "Damaging Ailments deal damage (3-5)% faster", statOrder = { 6127 }, level = 44, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophFasterAilments2"] = { type = "Prefix", affix = "Wilting", "Damaging Ailments deal damage (6-8)% faster", statOrder = { 6127 }, level = 66, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophFasterAilments3"] = { type = "Prefix", affix = "Deteriorating", "Damaging Ailments deal damage (9-11)% faster", statOrder = { 6127 }, level = 82, group = "GraftPrefixXophFasterAilments", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftPrefixXophIgniteChance1"] = { type = "Prefix", affix = "Alight", "(4-10)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophIgniteChance2"] = { type = "Prefix", affix = "Smouldering", "(11-17)% chance to Ignite", statOrder = { 2026 }, level = 22, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophIgniteChance3"] = { type = "Prefix", affix = "Burning", "(18-24)% chance to Ignite", statOrder = { 2026 }, level = 44, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixXophIgniteChance4"] = { type = "Prefix", affix = "Fiery", "(25-30)% chance to Ignite", statOrder = { 2026 }, level = 66, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophIgniteChance5"] = { type = "Prefix", affix = "Blazing", "(31-40)% chance to Ignite", statOrder = { 2026 }, level = 82, group = "GraftPrefixXophIgniteChance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophFlatAddedFire1"] = { type = "Prefix", affix = "Heated", "Adds (3-4) to (6-8) Fire Damage", statOrder = { 1359 }, level = 1, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophFlatAddedFire2"] = { type = "Prefix", affix = "Fierce", "Adds (4-7) to (11-15) Fire Damage", statOrder = { 1359 }, level = 22, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophFlatAddedFire3"] = { type = "Prefix", affix = "Fervent", "Adds (10-12) to (15-19) Fire Damage", statOrder = { 1359 }, level = 44, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixXophFlatAddedFire4"] = { type = "Prefix", affix = "Torrid", "Adds (14-17) to (21-25) Fire Damage", statOrder = { 1359 }, level = 66, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophFlatAddedFire5"] = { type = "Prefix", affix = "Magmatic", "Adds (20-23) to (26-32) Fire Damage", statOrder = { 1359 }, level = 82, group = "GraftPrefixXophFlatAddedFire", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedFireDamage1"] = { type = "Prefix", affix = "Hellish", "(5-9)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedFireDamage2"] = { type = "Prefix", affix = "Damnable", "(10-14)% increased Fire Damage", statOrder = { 1357 }, level = 11, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedFireDamage3"] = { type = "Prefix", affix = "Devil's", "(15-19)% increased Fire Damage", statOrder = { 1357 }, level = 22, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedFireDamage4"] = { type = "Prefix", affix = "Imps'", "(20-24)% increased Fire Damage", statOrder = { 1357 }, level = 33, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedFireDamage5"] = { type = "Prefix", affix = "Fiend's", "(25-29)% increased Fire Damage", statOrder = { 1357 }, level = 44, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedFireDamage6"] = { type = "Prefix", affix = "Demon's", "(30-34)% increased Fire Damage", statOrder = { 1357 }, level = 55, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedFireDamage7"] = { type = "Prefix", affix = "Tartarean", "(35-39)% increased Fire Damage", statOrder = { 1357 }, level = 66, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedFireDamage8"] = { type = "Prefix", affix = "Stygian", "(40-44)% increased Fire Damage", statOrder = { 1357 }, level = 74, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedFireDamage9"] = { type = "Prefix", affix = "Hadean", "(45-49)% increased Fire Damage", statOrder = { 1357 }, level = 82, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedFireDamage10"] = { type = "Prefix", affix = "Infernal", "(50-55)% increased Fire Damage", statOrder = { 1357 }, level = 85, group = "GraftPrefixXophGlobalIncreasedFireDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophIgniteDuration1"] = { type = "Prefix", affix = "Unquenchable", "(10-14)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 44, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophIgniteDuration2"] = { type = "Prefix", affix = "Everburning", "(15-19)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 66, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophIgniteDuration3"] = { type = "Prefix", affix = "Inextinguishable", "(20-25)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 82, group = "GraftPrefixXophIgniteDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophWarcryCooldown1"] = { type = "Prefix", affix = "Howling", "(12-17)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 44, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophWarcryCooldown2"] = { type = "Prefix", affix = "Screaming", "(18-22)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 82, group = "GraftPrefixXophWarcryCooldown", weightKey = { "graft_xoph", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftPrefixXophAreaOfEffect1"] = { type = "Prefix", affix = "Snatching", "(5-6)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophAreaOfEffect2"] = { type = "Prefix", affix = "Grasping", "(7-8)% increased Area of Effect", statOrder = { 1880 }, level = 22, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophAreaOfEffect3"] = { type = "Prefix", affix = "Clutching", "(9-10)% increased Area of Effect", statOrder = { 1880 }, level = 44, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixXophAreaOfEffect4"] = { type = "Prefix", affix = "Siezing", "(11-12)% increased Area of Effect", statOrder = { 1880 }, level = 66, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophAreaOfEffect5"] = { type = "Prefix", affix = "Reaching", "(13-14)% increased Area of Effect", statOrder = { 1880 }, level = 82, group = "GraftPrefixXophAreaOfEffect", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophStrength1"] = { type = "Prefix", affix = "Brawny", "+(3-5) to Strength", statOrder = { 1177 }, level = 1, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophStrength2"] = { type = "Prefix", affix = "Powerful", "+(6-8) to Strength", statOrder = { 1177 }, level = 22, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophStrength3"] = { type = "Prefix", affix = "Burly", "+(9-11) to Strength", statOrder = { 1177 }, level = 44, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixXophStrength4"] = { type = "Prefix", affix = "Muscular", "+(12-14) to Strength", statOrder = { 1177 }, level = 66, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophStrength5"] = { type = "Prefix", affix = "Beefy", "+(15-17) to Strength", statOrder = { 1177 }, level = 82, group = "GraftPrefixXophStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophPercentageStrength1"] = { type = "Prefix", affix = "Brutish", "(2-4)% increased Strength", statOrder = { 1184 }, level = 74, group = "GraftPrefixXophPercentageStrength", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophPercentageArmour1"] = { type = "Prefix", affix = "Carapaced", "(15-18)% increased Armour", statOrder = { 1541 }, level = 1, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophPercentageArmour2"] = { type = "Prefix", affix = "Clad", "(19-22)% increased Armour", statOrder = { 1541 }, level = 22, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophPercentageArmour3"] = { type = "Prefix", affix = "Reinforced", "(23-26)% increased Armour", statOrder = { 1541 }, level = 44, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixXophPercentageArmour4"] = { type = "Prefix", affix = "Plated", "(27-30)% increased Armour", statOrder = { 1541 }, level = 66, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophPercentageArmour5"] = { type = "Prefix", affix = "Iron", "(30-35)% increased Armour", statOrder = { 1541 }, level = 82, group = "GraftPrefixXophPercentageArmour", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophFireResistance1"] = { type = "Prefix", affix = "Thermal", "+(5-12)% to Fire Resistance", statOrder = { 1625 }, level = 44, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophFireResistance2"] = { type = "Prefix", affix = "Refractory", "+(13-20)% to Fire Resistance", statOrder = { 1625 }, level = 66, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophFireResistance3"] = { type = "Prefix", affix = "Heatproof", "+(21-28)% to Fire Resistance", statOrder = { 1625 }, level = 82, group = "GraftPrefixXophFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophFirePenetration1"] = { type = "Prefix", affix = "Searing", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2981 }, level = 66, group = "GraftPrefixXophFirePenetration", weightKey = { "graft_xoph", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, + ["GraftPrefixXophMaximumFireResistance1"] = { type = "Prefix", affix = "Fireproof", "+(1-2)% to maximum Fire Resistance", statOrder = { 1623 }, level = 74, group = "GraftPrefixXophMaximumFireResistance", weightKey = { "graft_xoph", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedAttackDamage1"] = { type = "Prefix", affix = "Combatant's", "(5-9)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedAttackDamage2"] = { type = "Prefix", affix = "Warrior's", "(10-14)% increased Attack Damage", statOrder = { 1198 }, level = 11, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedAttackDamage3"] = { type = "Prefix", affix = "Fighter's", "(15-19)% increased Attack Damage", statOrder = { 1198 }, level = 22, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedAttackDamage4"] = { type = "Prefix", affix = "Brawler's", "(20-24)% increased Attack Damage", statOrder = { 1198 }, level = 33, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedAttackDamage5"] = { type = "Prefix", affix = "Soldier's", "(25-29)% increased Attack Damage", statOrder = { 1198 }, level = 44, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedAttackDamage6"] = { type = "Prefix", affix = "Veteran's", "(30-34)% increased Attack Damage", statOrder = { 1198 }, level = 55, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedAttackDamage7"] = { type = "Prefix", affix = "Assailant's", "(35-39)% increased Attack Damage", statOrder = { 1198 }, level = 66, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedAttackDamage8"] = { type = "Prefix", affix = "Gladiator's", "(40-44)% increased Attack Damage", statOrder = { 1198 }, level = 74, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedAttackDamage9"] = { type = "Prefix", affix = "Prizefighter's", "(45-49)% increased Attack Damage", statOrder = { 1198 }, level = 82, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophGlobalIncreasedAttackDamage10"] = { type = "Prefix", affix = "Pitfighter's", "(50-55)% increased Attack Damage", statOrder = { 1198 }, level = 85, group = "GraftPrefixXophGlobalIncreasedAttackDamage", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixXophMinionDuration1"] = { type = "Prefix", affix = "Lingering", "(10-12)% increased Minion Duration", statOrder = { 5032 }, level = 44, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixXophMinionDuration2"] = { type = "Prefix", affix = "Abiding", "(13-15)% increased Minion Duration", statOrder = { 5032 }, level = 66, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixXophMinionDuration3"] = { type = "Prefix", affix = "Undying", "(16-18)% increased Minion Duration", statOrder = { 5032 }, level = 82, group = "GraftPrefixXophMinionDuration", weightKey = { "graft_xoph", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixEshShockChance1"] = { type = "Prefix", affix = "Jolting", "(3-5)% chance to Shock", statOrder = { 2033 }, level = 1, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshShockChance2"] = { type = "Prefix", affix = "Enervating", "(6-8)% chance to Shock", statOrder = { 2033 }, level = 22, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshShockChance3"] = { type = "Prefix", affix = "Sparking", "(9-11)% chance to Shock", statOrder = { 2033 }, level = 44, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshShockChance4"] = { type = "Prefix", affix = "Zapping", "(12-14)% chance to Shock", statOrder = { 2033 }, level = 66, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshShockChance5"] = { type = "Prefix", affix = "Shocking", "(15-17)% chance to Shock", statOrder = { 2033 }, level = 82, group = "GraftPrefixEshShockChance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshShockDuration1"] = { type = "Prefix", affix = "Sustained", "(15-24)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 44, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshShockDuration2"] = { type = "Prefix", affix = "Lasting", "(25-34)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 66, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshShockDuration3"] = { type = "Prefix", affix = "Perpetual", "(35-45)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 82, group = "GraftPrefixEshShockDuration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningDamage1"] = { type = "Prefix", affix = "Flashing", "(5-9)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningDamage2"] = { type = "Prefix", affix = "Bright", "(10-14)% increased Lightning Damage", statOrder = { 1377 }, level = 11, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningDamage3"] = { type = "Prefix", affix = "Bolting", "(15-19)% increased Lightning Damage", statOrder = { 1377 }, level = 22, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningDamage4"] = { type = "Prefix", affix = "Discharging", "(20-24)% increased Lightning Damage", statOrder = { 1377 }, level = 33, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningDamage5"] = { type = "Prefix", affix = "Stormrider's", "(25-29)% increased Lightning Damage", statOrder = { 1377 }, level = 44, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningDamage6"] = { type = "Prefix", affix = "Thunderbolt's", "(30-34)% increased Lightning Damage", statOrder = { 1377 }, level = 55, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningDamage7"] = { type = "Prefix", affix = "Stormcaller's", "(35-39)% increased Lightning Damage", statOrder = { 1377 }, level = 66, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningDamage8"] = { type = "Prefix", affix = "Invoker's", "(40-44)% increased Lightning Damage", statOrder = { 1377 }, level = 74, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningDamage9"] = { type = "Prefix", affix = "Stormweaver's", "(45-49)% increased Lightning Damage", statOrder = { 1377 }, level = 82, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningDamage10"] = { type = "Prefix", affix = "Esh's", "(50-55)% increased Lightning Damage", statOrder = { 1377 }, level = 85, group = "GraftPrefixEshLightningDamage", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixEshFlatAddedLightning1"] = { type = "Prefix", affix = "Sparking", "Adds (1-2) to (5-7) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixEshFlatAddedLightning2"] = { type = "Prefix", affix = "Empowered", "Adds (1-2) to (8-16) Lightning Damage", statOrder = { 1379 }, level = 22, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixEshFlatAddedLightning3"] = { type = "Prefix", affix = "Flashing", "Adds (1-3) to (20-24) Lightning Damage", statOrder = { 1379 }, level = 44, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixEshFlatAddedLightning4"] = { type = "Prefix", affix = "Fulminating", "Adds (2-4) to (33-41) Lightning Damage", statOrder = { 1379 }, level = 66, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixEshFlatAddedLightning5"] = { type = "Prefix", affix = "Static", "Adds (4-6) to (54-60) Lightning Damage", statOrder = { 1379 }, level = 82, group = "GraftPrefixEshFlatAddedLightning", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixEshCriticalChanceVSShocked1"] = { type = "Prefix", affix = "Convulsive", "(30-49)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 66, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshCriticalChanceVSShocked2"] = { type = "Prefix", affix = "Fulgurating", "(50-65)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 82, group = "GraftPrefixEshCriticalChanceVSShocked", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshAttackAndCastSpeed1"] = { type = "Prefix", affix = "Rapid", "(4-6)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 44, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshAttackAndCastSpeed2"] = { type = "Prefix", affix = "Fleet", "(8-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 66, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshAttackAndCastSpeed3"] = { type = "Prefix", affix = "Quickening", "(12-14)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 82, group = "GraftPrefixEshAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionDamage1"] = { type = "Prefix", affix = "Noble", "Minions deal (5-9)% increased Damage", statOrder = { 1973 }, level = 1, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionDamage2"] = { type = "Prefix", affix = "Regal", "Minions deal (10-14)% increased Damage", statOrder = { 1973 }, level = 11, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionDamage3"] = { type = "Prefix", affix = "Lord's", "Minions deal (15-19)% increased Damage", statOrder = { 1973 }, level = 22, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionDamage4"] = { type = "Prefix", affix = "Lady's", "Minions deal (20-24)% increased Damage", statOrder = { 1973 }, level = 33, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionDamage5"] = { type = "Prefix", affix = "Baron's", "Minions deal (25-29)% increased Damage", statOrder = { 1973 }, level = 44, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionDamage6"] = { type = "Prefix", affix = "Duke's", "Minions deal (30-34)% increased Damage", statOrder = { 1973 }, level = 55, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionDamage7"] = { type = "Prefix", affix = "Aristocrat's", "Minions deal (35-39)% increased Damage", statOrder = { 1973 }, level = 66, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionDamage8"] = { type = "Prefix", affix = "Elite", "Minions deal (40-44)% increased Damage", statOrder = { 1973 }, level = 74, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionDamage9"] = { type = "Prefix", affix = "Prince's", "Minions deal (45-49)% increased Damage", statOrder = { 1973 }, level = 82, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionDamage10"] = { type = "Prefix", affix = "Monarch's", "Minions deal (50-55)% increased Damage", statOrder = { 1973 }, level = 85, group = "GraftPrefixEshMinionDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionAttackAndCastSpeed1"] = { type = "Prefix", affix = "Feverish", "Minions have (4-6)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 44, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionAttackAndCastSpeed2"] = { type = "Prefix", affix = "Manic", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 66, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMinionAttackAndCastSpeed3"] = { type = "Prefix", affix = "Frenetic", "Minions have (12-14)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 82, group = "GraftPrefixEshMinionAttackAndCastSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshGlobalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Protective", "(3-5)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshGlobalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Bolstered", "(6-8)% increased maximum Energy Shield", statOrder = { 1561 }, level = 11, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshGlobalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Barrier", "(9-11)% increased maximum Energy Shield", statOrder = { 1561 }, level = 33, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshGlobalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Reinforced", "(12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 54, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshGlobalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Buttressed", "(14-16)% increased maximum Energy Shield", statOrder = { 1561 }, level = 66, group = "GraftPrefixEshGlobalIncreasedEnergyShield", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningResistance1"] = { type = "Prefix", affix = "Grounded", "+(5-12)% to Lightning Resistance", statOrder = { 1636 }, level = 22, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningResistance2"] = { type = "Prefix", affix = "Insulated", "+(13-20)% to Lightning Resistance", statOrder = { 1636 }, level = 66, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningResistance3"] = { type = "Prefix", affix = "Absorbing", "+(21-28)% to Lightning Resistance", statOrder = { 1636 }, level = 82, group = "GraftPrefixEshLightningResistance", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshLightningPenetration1"] = { type = "Prefix", affix = "Energetic", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2984 }, level = 66, group = "GraftPrefixEshLightningPenetration", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMovementSpeed1"] = { type = "Prefix", affix = "Expedient", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 66, group = "GraftPrefixEshMovementSpeed", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 50, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshMaximumLightningResistance1"] = { type = "Prefix", affix = "Sequestered", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1634 }, level = 74, group = "GraftPrefixEshMaximumLightningResistance", weightKey = { "graft_esh", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["GraftPrefixEshIncreasedMana1"] = { type = "Prefix", affix = "Expansive", "(3-6)% increased maximum Mana", statOrder = { 1580 }, level = 22, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshIncreasedMana2"] = { type = "Prefix", affix = "Unbounded", "(7-10)% increased maximum Mana", statOrder = { 1580 }, level = 66, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshIncreasedMana3"] = { type = "Prefix", affix = "Illimitable", "(11-14)% increased maximum Mana", statOrder = { 1580 }, level = 82, group = "GraftPrefixEshIncreasedMana", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshIntelligence1"] = { type = "Prefix", affix = "Controlled", "+(3-5) to Intelligence", statOrder = { 1179 }, level = 1, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 100, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshIntelligence2"] = { type = "Prefix", affix = "Brilliant", "+(6-8) to Intelligence", statOrder = { 1179 }, level = 22, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshIntelligence3"] = { type = "Prefix", affix = "Astute", "+(9-11) to Intelligence", statOrder = { 1179 }, level = 44, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshIntelligence4"] = { type = "Prefix", affix = "Acute", "+(12-14) to Intelligence", statOrder = { 1179 }, level = 66, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshIntelligence5"] = { type = "Prefix", affix = "Genius'", "+(15-17) to Intelligence", statOrder = { 1179 }, level = 82, group = "GraftPrefixEshIntelligence", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshPercentageIntelligence1"] = { type = "Prefix", affix = "Composed", "(2-4)% increased Intelligence", statOrder = { 1186 }, level = 74, group = "GraftPrefixEshPercentageIntelligence", weightKey = { "graft_esh", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixEshSpellDamage1"] = { type = "Prefix", affix = "Arcane", "(5-9)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshSpellDamage2"] = { type = "Prefix", affix = "Spelleweaving", "(10-14)% increased Spell Damage", statOrder = { 1223 }, level = 11, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshSpellDamage3"] = { type = "Prefix", affix = "Caster's", "(15-19)% increased Spell Damage", statOrder = { 1223 }, level = 22, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshSpellDamage4"] = { type = "Prefix", affix = "Mage's", "(20-24)% increased Spell Damage", statOrder = { 1223 }, level = 33, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshSpellDamage5"] = { type = "Prefix", affix = "Scholar's", "(25-29)% increased Spell Damage", statOrder = { 1223 }, level = 44, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshSpellDamage6"] = { type = "Prefix", affix = "Wizard's", "(30-34)% increased Spell Damage", statOrder = { 1223 }, level = 55, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshSpellDamage7"] = { type = "Prefix", affix = "Sage's", "(35-39)% increased Spell Damage", statOrder = { 1223 }, level = 66, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshSpellDamage8"] = { type = "Prefix", affix = "Sorcerer's", "(40-44)% increased Spell Damage", statOrder = { 1223 }, level = 74, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 700, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshSpellDamage9"] = { type = "Prefix", affix = "Magician's", "(45-49)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 500, 0, 0 }, modTags = { }, }, + ["GraftPrefixEshSpellDamage10"] = { type = "Prefix", affix = "Lich's", "(50-55)% increased Spell Damage", statOrder = { 1223 }, level = 85, group = "GraftPrefixEshSpellDamage", weightKey = { "graft_esh", "graft", "default", }, weightVal = { 300, 0, 0 }, modTags = { }, }, + ["GraftPrefixTulFreezeChance1"] = { type = "Prefix", affix = "Frigid", "(3-5)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulFreezeChance2"] = { type = "Prefix", affix = "Frosted", "(6-8)% chance to Freeze", statOrder = { 2029 }, level = 22, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulFreezeChance3"] = { type = "Prefix", affix = "Bitter", "(9-11)% chance to Freeze", statOrder = { 2029 }, level = 44, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixTulFreezeChance4"] = { type = "Prefix", affix = "Wintry", "(12-14)% chance to Freeze", statOrder = { 2029 }, level = 66, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixTulFreezeChance5"] = { type = "Prefix", affix = "Freezing", "(15-17)% chance to Freeze", statOrder = { 2029 }, level = 82, group = "GraftPrefixTulFreezeChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulFlatAddedColdDamage1"] = { type = "Prefix", affix = "Icy", "Adds (3-4) to (6-8) Cold Damage", statOrder = { 1368 }, level = 1, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulFlatAddedColdDamage2"] = { type = "Prefix", affix = "Cold", "Adds (4-7) to (11-15) Cold Damage", statOrder = { 1368 }, level = 22, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulFlatAddedColdDamage3"] = { type = "Prefix", affix = "Brumal", "Adds (10-12) to (15-19) Cold Damage", statOrder = { 1368 }, level = 44, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixTulFlatAddedColdDamage4"] = { type = "Prefix", affix = "Bleak", "Adds (14-17) to (21-25) Cold Damage", statOrder = { 1368 }, level = 66, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixTulFlatAddedColdDamage5"] = { type = "Prefix", affix = "Frostbound", "Adds (20-23) to (26-32) Cold Damage", statOrder = { 1368 }, level = 82, group = "GraftPrefixTulFlatAddedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulIncreasedColdDamage1"] = { type = "Prefix", affix = "", "(5-9)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulIncreasedColdDamage2"] = { type = "Prefix", affix = "", "(10-14)% increased Cold Damage", statOrder = { 1366 }, level = 11, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulIncreasedColdDamage3"] = { type = "Prefix", affix = "", "(15-19)% increased Cold Damage", statOrder = { 1366 }, level = 22, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulIncreasedColdDamage4"] = { type = "Prefix", affix = "", "(20-24)% increased Cold Damage", statOrder = { 1366 }, level = 33, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulIncreasedColdDamage5"] = { type = "Prefix", affix = "", "(25-29)% increased Cold Damage", statOrder = { 1366 }, level = 44, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulIncreasedColdDamage6"] = { type = "Prefix", affix = "", "(30-34)% increased Cold Damage", statOrder = { 1366 }, level = 55, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixTulIncreasedColdDamage7"] = { type = "Prefix", affix = "", "(35-39)% increased Cold Damage", statOrder = { 1366 }, level = 66, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixTulIncreasedColdDamage8"] = { type = "Prefix", affix = "", "(40-44)% increased Cold Damage", statOrder = { 1366 }, level = 74, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixTulIncreasedColdDamage9"] = { type = "Prefix", affix = "", "(45-49)% increased Cold Damage", statOrder = { 1366 }, level = 82, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixTulIncreasedColdDamage10"] = { type = "Prefix", affix = "", "(50-55)% increased Cold Damage", statOrder = { 1366 }, level = 85, group = "GraftPrefixTulIncreasedColdDamage", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulStrikeRange1"] = { type = "Prefix", affix = "Extended", "+(0.1-0.3) metres to Melee Strike Range", statOrder = { 2534 }, level = 66, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulStrikeRange2"] = { type = "Prefix", affix = "Elongated", "+0.4 metres to Melee Strike Range", statOrder = { 2534 }, level = 82, group = "GraftPrefixTulStrikeRange", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftPrefixTulAdditionalStrike1"] = { type = "Prefix", affix = "Versatile", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 66, group = "GraftPrefixTulAdditionalStrike", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftPrefixTulProjectileSpeed1"] = { type = "Prefix", affix = "Tossing", "(5-9)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulProjectileSpeed2"] = { type = "Prefix", affix = "Hurling", "(10-14)% increased Projectile Speed", statOrder = { 1796 }, level = 22, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulProjectileSpeed3"] = { type = "Prefix", affix = "Lobbing", "(15-19)% increased Projectile Speed", statOrder = { 1796 }, level = 44, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixTulProjectileSpeed4"] = { type = "Prefix", affix = "Slinging", "(20-24)% increased Projectile Speed", statOrder = { 1796 }, level = 66, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixTulProjectileSpeed5"] = { type = "Prefix", affix = "Propeling", "(25-30)% increased Projectile Speed", statOrder = { 1796 }, level = 82, group = "GraftPrefixTulProjectileSpeed", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulGlobalIncreasedEvasion1"] = { type = "Prefix", affix = "Blurred", "(15-18)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulGlobalIncreasedEvasion2"] = { type = "Prefix", affix = "Obscuring", "(19-22)% increased Evasion Rating", statOrder = { 1549 }, level = 22, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulGlobalIncreasedEvasion3"] = { type = "Prefix", affix = "Hazy", "(23-26)% increased Evasion Rating", statOrder = { 1549 }, level = 44, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixTulGlobalIncreasedEvasion4"] = { type = "Prefix", affix = "Shrouded", "(27-30)% increased Evasion Rating", statOrder = { 1549 }, level = 66, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixTulGlobalIncreasedEvasion5"] = { type = "Prefix", affix = "Mistborn", "(30-35)% increased Evasion Rating", statOrder = { 1549 }, level = 82, group = "GraftPrefixTulGlobalIncreasedEvasion", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulColdResistance1"] = { type = "Prefix", affix = "Winterised", "+(5-12)% to Cold Resistance", statOrder = { 1631 }, level = 44, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulColdResistance2"] = { type = "Prefix", affix = "Insular", "+(13-20)% to Cold Resistance", statOrder = { 1631 }, level = 66, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixTulColdResistance3"] = { type = "Prefix", affix = "Yeti's", "+(21-28)% to Cold Resistance", statOrder = { 1631 }, level = 82, group = "GraftPrefixTulColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulColdPenetration1"] = { type = "Prefix", affix = "Biting", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2983 }, level = 66, group = "GraftPrefixTulColdPenetration", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulChillEffect1"] = { type = "Prefix", affix = "Impeding", "(20-29)% increased Effect of Chill", statOrder = { 5769 }, level = 66, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulChillEffect2"] = { type = "Prefix", affix = "Shackling", "(30-40)% increased Effect of Chill", statOrder = { 5769 }, level = 82, group = "GraftPrefixTulChillEffect", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftPrefixTulCritMultiplier1"] = { type = "Prefix", affix = "Dangerous", "+(9-10)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulCritMultiplier2"] = { type = "Prefix", affix = "Harmful", "+(11-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 22, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulCritMultiplier3"] = { type = "Prefix", affix = "Threatening", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 44, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixTulCritMultiplier4"] = { type = "Prefix", affix = "Lethal", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 66, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixTulCritMultiplier5"] = { type = "Prefix", affix = "Deadly", "+(16-18)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 82, group = "GraftPrefixTulCritMultiplier", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulCritChance1"] = { type = "Prefix", affix = "Careful", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulCritChance2"] = { type = "Prefix", affix = "Exact", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 22, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulCritChance3"] = { type = "Prefix", affix = "Unerring", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 44, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixTulCritChance4"] = { type = "Prefix", affix = "Precise", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 66, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixTulCritChance5"] = { type = "Prefix", affix = "Pinpoint", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 82, group = "GraftPrefixTulCritChance", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulPowerChargeOnKill1"] = { type = "Prefix", affix = "Potent", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 66, group = "GraftPrefixTulPowerChargeOnKill", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftPrefixTulFrenzyChargeOnHitVsUnique1"] = { type = "Prefix", affix = "Frenzied", "(5-10)% chance to gain a Frenzy Charge when you Hit a Unique Enemy", statOrder = { 6761 }, level = 66, group = "GraftPrefixTulFrenzyChargeOnHitVsUnique", weightKey = { "graft_tul", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftPrefixTulMaximumColdResistance1"] = { type = "Prefix", affix = "Blustering", "+(1-2)% to maximum Cold Resistance", statOrder = { 1629 }, level = 74, group = "GraftPrefixTulMaximumColdResistance", weightKey = { "graft_tul", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["GraftPrefixTulDexterity1"] = { type = "Prefix", affix = "Lithe", "+(3-5) to Dexterity", statOrder = { 1178 }, level = 1, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulDexterity2"] = { type = "Prefix", affix = "Adroit", "+(6-8) to Dexterity", statOrder = { 1178 }, level = 22, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulDexterity3"] = { type = "Prefix", affix = "Nimble", "+(9-11) to Dexterity", statOrder = { 1178 }, level = 44, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixTulDexterity4"] = { type = "Prefix", affix = "Adept", "+(12-14) to Dexterity", statOrder = { 1178 }, level = 66, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixTulDexterity5"] = { type = "Prefix", affix = "Dexterous", "+(15-17) to Dexterity", statOrder = { 1178 }, level = 82, group = "GraftPrefixTulDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulPercentageDexterity1"] = { type = "Prefix", affix = "Graceful", "(2-4)% increased Dexterity", statOrder = { 1185 }, level = 74, group = "GraftPrefixTulPercentageDexterity", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulMinionLife1"] = { type = "Prefix", affix = "Chief's", "Minions have (9-10)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulMinionLife2"] = { type = "Prefix", affix = "Ruler's", "Minions have (11-12)% increased maximum Life", statOrder = { 1766 }, level = 22, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulMinionLife3"] = { type = "Prefix", affix = "Despot's", "Minions have (13-14)% increased maximum Life", statOrder = { 1766 }, level = 44, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftPrefixTulMinionLife4"] = { type = "Prefix", affix = "Authoritarian's", "Minions have (15-16)% increased maximum Life", statOrder = { 1766 }, level = 66, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixTulMinionLife5"] = { type = "Prefix", affix = "Overlord's", "Minions have (17-18)% increased maximum Life", statOrder = { 1766 }, level = 82, group = "GraftPrefixTulMinionLife", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftPrefixTulMinionResistances1"] = { type = "Prefix", affix = "Noble's", "Minions have +(5-8)% to all Elemental Resistances", statOrder = { 2912 }, level = 22, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftPrefixTulMinionResistances2"] = { type = "Prefix", affix = "Lord's", "Minions have +(9-12)% to all Elemental Resistances", statOrder = { 2912 }, level = 44, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftPrefixTulMinionResistances3"] = { type = "Prefix", affix = "King's", "Minions have +(13-16)% to all Elemental Resistances", statOrder = { 2912 }, level = 66, group = "GraftPrefixTulMinionResistances", weightKey = { "graft_tul", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixStunDuration1"] = { type = "Suffix", affix = "of Slamming", "Skills used by this Graft have (10-19)% increased Stun Duration", statOrder = { 10922 }, level = 44, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixStunDuration2"] = { type = "Suffix", affix = "of Thudding", "Skills used by this Graft have (20-29)% increased Stun Duration", statOrder = { 10922 }, level = 66, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixStunDuration3"] = { type = "Suffix", affix = "of Dazing", "Skills used by this Graft have (30-39)% increased Stun Duration", statOrder = { 10922 }, level = 82, group = "GraftSuffixStunDuration", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixAreaOfEffect1"] = { type = "Suffix", affix = "of Reach", "Skills used by this Graft have (8-12)% increased Area of Effect", statOrder = { 10869 }, level = 1, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixAreaOfEffect2"] = { type = "Suffix", affix = "of Grasping", "Skills used by this Graft have (14-16)% increased Area of Effect", statOrder = { 10869 }, level = 22, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixAreaOfEffect3"] = { type = "Suffix", affix = "of Extension", "Skills used by this Graft have (18-22)% increased Area of Effect", statOrder = { 10869 }, level = 44, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, }, + ["GraftSuffixAreaOfEffect4"] = { type = "Suffix", affix = "of Broadening", "Skills used by this Graft have (24-28)% increased Area of Effect", statOrder = { 10869 }, level = 66, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["GraftSuffixAreaOfEffect5"] = { type = "Suffix", affix = "of the Expanse", "Skills used by this Graft have (30-34)% increased Area of Effect", statOrder = { 10869 }, level = 82, group = "GraftSuffixAreaOfEffect", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "graft_esh_bolt_ring", "graft_esh_lightning_clones", "graft_esh_lightning_hands", "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, }, + ["GraftSuffixHinderOnHit1"] = { type = "Suffix", affix = "of Hindrance", "Spells used by this Graft Hinder Enemies on Hit", statOrder = { 10921 }, level = 44, group = "GraftSuffixHinderOnHit", weightKey = { "graft_tul_tornado", "graft_esh_lightning_hands", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["GraftSuffixChainingDistance1"] = { type = "Suffix", affix = "of Ricocheting", "Skills used by this Graft have (40-69)% increased Chaining range", statOrder = { 10871 }, level = 44, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixChainingDistance2"] = { type = "Suffix", affix = "of Chaining", "Skills used by this Graft have (70-100)% increased Chaining range", statOrder = { 10871 }, level = 82, group = "GraftSuffixChainingDistance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixAdditionalProjectiles1"] = { type = "Suffix", affix = "of Splitting", "Skills used by this Graft fire 2 additional Projectiles", statOrder = { 10912 }, level = 44, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["GraftSuffixAdditionalProjectiles2"] = { type = "Suffix", affix = "of Splintering", "Skills used by this Graft fire 3 additional Projectiles", statOrder = { 10912 }, level = 82, group = "GraftSuffixAdditionalProjectiles", weightKey = { "graft_xoph_molten_shell", "graft_tul_tornado", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["GraftSuffixProjectileSpeed1"] = { type = "Suffix", affix = "of Flight", "Skills used by this Graft have (8-12)% increased Projectile Speed", statOrder = { 10914 }, level = 1, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixProjectileSpeed2"] = { type = "Suffix", affix = "of Gliding", "Skills used by this Graft have (13-17)% increased Projectile Speed", statOrder = { 10914 }, level = 22, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixProjectileSpeed3"] = { type = "Suffix", affix = "of Homing", "Skills used by this Graft have (18-22)% increased Projectile Speed", statOrder = { 10914 }, level = 44, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixProjectileSpeed4"] = { type = "Suffix", affix = "of Launching", "Skills used by this Graft have (23-27)% increased Projectile Speed", statOrder = { 10914 }, level = 66, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixProjectileSpeed5"] = { type = "Suffix", affix = "of Soaring", "Skills used by this Graft have (28-32)% increased Projectile Speed", statOrder = { 10914 }, level = 82, group = "GraftSuffixProjectileSpeed", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamage1"] = { type = "Suffix", affix = "of Blasting", "Skills used by this Graft deal (10-29)% increased Damage", statOrder = { 10884 }, level = 1, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamage2"] = { type = "Suffix", affix = "of Smashing", "Skills used by this Graft deal (30-49)% increased Damage", statOrder = { 10884 }, level = 11, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamage3"] = { type = "Suffix", affix = "of Shattering", "Skills used by this Graft deal (50-69)% increased Damage", statOrder = { 10884 }, level = 22, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamage4"] = { type = "Suffix", affix = "of Wrecking", "Skills used by this Graft deal (70-89)% increased Damage", statOrder = { 10884 }, level = 33, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamage5"] = { type = "Suffix", affix = "of Destroying", "Skills used by this Graft deal (90-109)% increased Damage", statOrder = { 10884 }, level = 44, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamage6"] = { type = "Suffix", affix = "of Crushing", "Skills used by this Graft deal (110-129)% increased Damage", statOrder = { 10884 }, level = 55, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamage7"] = { type = "Suffix", affix = "of Disintegration", "Skills used by this Graft deal (130-149)% increased Damage", statOrder = { 10884 }, level = 66, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamage8"] = { type = "Suffix", affix = "of Demolishing", "Skills used by this Graft deal (150-169)% increased Damage", statOrder = { 10884 }, level = 74, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamage9"] = { type = "Suffix", affix = "of Ruination", "Skills used by this Graft deal (170-189)% increased Damage", statOrder = { 10884 }, level = 82, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamage10"] = { type = "Suffix", affix = "of Annihilation", "Skills used by this Graft deal (190-220)% increased Damage", statOrder = { 10884 }, level = 85, group = "GraftSuffixIncreasedDamage", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDuration1"] = { type = "Suffix", affix = "of Lingering", "Skills used by this Graft have (10-14)% increased Skill Effect Duration", statOrder = { 10887 }, level = 1, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDuration2"] = { type = "Suffix", affix = "of Lasting", "Skills used by this Graft have (15-20)% increased Skill Effect Duration", statOrder = { 10887 }, level = 22, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDuration3"] = { type = "Suffix", affix = "of the Unending", "Skills used by this Graft have (20-24)% increased Skill Effect Duration", statOrder = { 10887 }, level = 44, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 700, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDuration4"] = { type = "Suffix", affix = "of Permanence", "Skills used by this Graft have (25-29)% increased Skill Effect Duration", statOrder = { 10887 }, level = 66, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDuration5"] = { type = "Suffix", affix = "of Eternity", "Skills used by this Graft have (30-35)% increased Skill Effect Duration", statOrder = { 10887 }, level = 82, group = "GraftSuffixIncreasedDuration", weightKey = { "graft_esh_bolt_ring", "graft_xoph_molten_shell", "graft_tul_tornado", "graft_xoph_cremations", "graft_esh_jolt_buff", "graft_uulnetol_low_life_buff", "graft_esh_lightning_clones", "graft_tul_summon", "graft_uulnetol_impale_buff", "graft_xoph_ailment_buff", "graft_tul_aegis", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { }, }, + ["GraftSuffixCooldownSpeed1"] = { type = "Suffix", affix = "of the Creek", "Skills used by this Graft have (10-14)% increased Cooldown Recovery Rate", statOrder = { 10877 }, level = 1, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, }, + ["GraftSuffixCooldownSpeed2"] = { type = "Suffix", affix = "of the Stream", "Skills used by this Graft have (15-20)% increased Cooldown Recovery Rate", statOrder = { 10877 }, level = 22, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { }, }, + ["GraftSuffixCooldownSpeed3"] = { type = "Suffix", affix = "of the River", "Skills used by this Graft have (20-24)% increased Cooldown Recovery Rate", statOrder = { 10877 }, level = 44, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 700, 0 }, modTags = { }, }, + ["GraftSuffixCooldownSpeed4"] = { type = "Suffix", affix = "of the Tide", "Skills used by this Graft have (25-29)% increased Cooldown Recovery Rate", statOrder = { 10877 }, level = 66, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { }, }, + ["GraftSuffixCooldownSpeed5"] = { type = "Suffix", affix = "of the Oceans", "Skills used by this Graft have (30-35)% increased Cooldown Recovery Rate", statOrder = { 10877 }, level = 82, group = "GraftSuffixCooldownSpeed", weightKey = { "graft_xoph_ailment_buff", "graft_tutorial", "graft", "default", }, weightVal = { 0, 0, 300, 0 }, modTags = { }, }, + ["GraftSuffixSkipCooldown1"] = { type = "Suffix", affix = "of Chronomancy", "Skills used by this Graft have 25% chance to not consume a Cooldown on use", statOrder = { 10920 }, level = 66, group = "GraftSuffixSkipCooldown", weightKey = { "graft_esh_bolt_ring", "graft_uulnetol_hand_slam", "graft_xoph_cremations", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, }, + ["GraftSuffixAttackSpeed1"] = { type = "Suffix", affix = "of Speed", "Skills used by this Graft have (10-24)% increased Attack Speed", statOrder = { 10870 }, level = 22, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["GraftSuffixAttackSpeed2"] = { type = "Suffix", affix = "of Quickness", "Skills used by this Graft have (25-39)% increased Attack Speed", statOrder = { 10870 }, level = 44, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["GraftSuffixAttackSpeed3"] = { type = "Suffix", affix = "of Agility", "Skills used by this Graft have (40-55)% increased Attack Speed", statOrder = { 10870 }, level = 66, group = "GraftSuffixAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["GraftSuffixSkillLevel1"] = { type = "Suffix", affix = "of Nobility", "+2 to level of Skills used by this Graft", statOrder = { 10903 }, level = 44, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GraftSuffixSkillLevel2"] = { type = "Suffix", affix = "of Lordship", "+3 to level of Skills used by this Graft", statOrder = { 10903 }, level = 66, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["GraftSuffixSkillLevel3"] = { type = "Suffix", affix = "of Royalty", "+4 to level of Skills used by this Graft", statOrder = { 10903 }, level = 85, group = "GraftSuffixSkillLevel", weightKey = { "graft_tutorial", "graft", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GraftSuffixCriticalChance1"] = { type = "Suffix", affix = "of Incision", "Skills used by this Graft have (40-79)% increased Critical Strike Chance", "Skills used by this Graft have +(8-14)% to Critical Strike Multiplier", statOrder = { 10880, 10881 }, level = 1, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixCriticalChance2"] = { type = "Suffix", affix = "of Slicing", "Skills used by this Graft have (80-119)% increased Critical Strike Chance", "Skills used by this Graft have +(15-21)% to Critical Strike Multiplier", statOrder = { 10880, 10881 }, level = 22, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixCriticalChance3"] = { type = "Suffix", affix = "of Dicing", "Skills used by this Graft have (120-139)% increased Critical Strike Chance", "Skills used by this Graft have +(22-28)% to Critical Strike Multiplier", statOrder = { 10880, 10881 }, level = 44, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixCriticalChance4"] = { type = "Suffix", affix = "of Striking", "Skills used by this Graft have (140-159)% increased Critical Strike Chance", "Skills used by this Graft have +(29-35)% to Critical Strike Multiplier", statOrder = { 10880, 10881 }, level = 66, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixCriticalChance5"] = { type = "Suffix", affix = "of Precision", "Skills used by this Graft have (160-200)% increased Critical Strike Chance", "Skills used by this Graft have +(36-42)% to Critical Strike Multiplier", statOrder = { 10880, 10881 }, level = 82, group = "GraftSuffixCriticalChance", weightKey = { "graft_damaging_skill", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixFirePenetration1"] = { type = "Suffix", affix = "of Singing", "Skills used by this Graft penetrate (4-9)% Enemy Fire Resistance", statOrder = { 10916 }, level = 44, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixFirePenetration2"] = { type = "Suffix", affix = "of Searing", "Skills used by this Graft penetrate (10-14)% Enemy Fire Resistance", statOrder = { 10916 }, level = 66, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, + ["GraftSuffixFirePenetration3"] = { type = "Suffix", affix = "of Blackening", "Skills used by this Graft penetrate (15-20)% Enemy Fire Resistance", statOrder = { 10916 }, level = 82, group = "GraftSuffixFirePenetration", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, }, + ["GraftSuffixColdPenetration1"] = { type = "Suffix", affix = "of the North", "Skills used by this Graft penetrate (4-9)% Enemy Cold Resistance", statOrder = { 10915 }, level = 44, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixColdPenetration2"] = { type = "Suffix", affix = "of the Boreal", "Skills used by this Graft penetrate (10-14)% Enemy Cold Resistance", statOrder = { 10915 }, level = 66, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixColdPenetration3"] = { type = "Suffix", affix = "of the Arctic", "Skills used by this Graft penetrate (15-20)% Enemy Cold Resistance", statOrder = { 10915 }, level = 82, group = "GraftSuffixColdPenetration", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixLightningPenetration1"] = { type = "Suffix", affix = "of Scattered Bolts", "Skills used by this Graft penetrate (4-9)% Enemy Lightning Resistance", statOrder = { 10917 }, level = 44, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixLightningPenetration2"] = { type = "Suffix", affix = "of Striking Jolts", "Skills used by this Graft penetrate (10-14)% Enemy Lightning Resistance", statOrder = { 10917 }, level = 66, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixLightningPenetration3"] = { type = "Suffix", affix = "of Seeking Sparks", "Skills used by this Graft penetrate (15-20)% Enemy Lightning Resistance", statOrder = { 10917 }, level = 82, group = "GraftSuffixLightningPenetration", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulnetolHandSlamDamageForCDR1"] = { type = "Suffix", affix = "of Impact", "Skills used by this Graft have 20% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (20-29)% more Damage", statOrder = { 10877, 10932 }, level = 44, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixUulnetolHandSlamDamageForCDR2"] = { type = "Suffix", affix = "of Cratering", "Skills used by this Graft have 25% reduced Cooldown Recovery Rate", "Skills used by this Graft deal (30-45)% more Damage", statOrder = { 10877, 10932 }, level = 82, group = "GraftSuffixUulnetolHandSlamDamageForCDR", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE1"] = { type = "Suffix", affix = "of Earthshaking", "Skills used by this Graft have (15-24)% more Area of Effect", "Skills used by this Graft have 15% less Attack Speed", statOrder = { 10955, 10956 }, level = 44, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["GraftSuffixUulnetolHandSlamAttackSpeedForAOE2"] = { type = "Suffix", affix = "of Earthshattering", "Skills used by this Graft have (25-35)% more Area of Effect", "Skills used by this Graft have 10% less Attack Speed", statOrder = { 10955, 10956 }, level = 82, group = "GraftSuffixUulnetolHandSlamAttackSpeedForAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["GraftSuffixUulnetolHandSlamCrushOnHit1"] = { type = "Suffix", affix = "of Pulverising", "Skills used by this Graft Crush on Hit", statOrder = { 10882 }, level = 44, group = "GraftSuffixUulnetolHandSlamCrushOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulnetolHandSlamVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Vulnerability", "Skills used by this Graft inflict Vulnerability on Hit", statOrder = { 10938 }, level = 44, group = "GraftSuffixUulnetolHandSlamVulnerabilityOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixUulnetolHandSlamIntimidateOnHit1"] = { type = "Suffix", affix = "of Intimidation", "Skills used by this Graft Intimidate on Hit", statOrder = { 10898 }, level = 44, group = "GraftSuffixUulnetolHandSlamIntimidateOnHit", weightKey = { "graft_uulnetol_hand_slam", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixIgnorePhysMitigation1"] = { type = "Suffix", affix = "of Overwhelming", "Skills used by this Graft ignore Enemy Physical Damage Reduction", statOrder = { 10894 }, level = 44, group = "GraftSuffixIgnorePhysMitigation", weightKey = { "graft_uulnetol_hand_slam", "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["GraftSuffixShockChance1"] = { type = "Suffix", affix = "of Zapping", "Skills used by this Graft have (19-57)% chance to Shock", statOrder = { 10919 }, level = 1, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixShockChance2"] = { type = "Suffix", affix = "of Jolting", "Skills used by this Graft have (29-87)% chance to Shock", statOrder = { 10919 }, level = 22, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixShockChance3"] = { type = "Suffix", affix = "of Blitzing", "Skills used by this Graft have (39-117)% chance to Shock", statOrder = { 10919 }, level = 44, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixShockChance4"] = { type = "Suffix", affix = "of Electricity", "Skills used by this Graft have (49-147)% chance to Shock", statOrder = { 10919 }, level = 66, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixShockChance5"] = { type = "Suffix", affix = "of Sublimation", "Skills used by this Graft have (60-180)% chance to Shock", statOrder = { 10919 }, level = 82, group = "GraftSuffixShockChance", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixIgniteChance1"] = { type = "Suffix", affix = "of Cinders", "Skills used by this Graft have (13-29)% chance to Ignite", statOrder = { 10873 }, level = 1, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixIgniteChance2"] = { type = "Suffix", affix = "of Coal", "Skills used by this Graft have (29-44)% chance to Ignite", statOrder = { 10873 }, level = 22, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixIgniteChance3"] = { type = "Suffix", affix = "of Embers", "Skills used by this Graft have (44-59)% chance to Ignite", statOrder = { 10873 }, level = 44, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 700, 700, 700, 0 }, modTags = { }, }, + ["GraftSuffixIgniteChance4"] = { type = "Suffix", affix = "of Ashes", "Skills used by this Graft have (60-74)% chance to Ignite", statOrder = { 10873 }, level = 66, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, + ["GraftSuffixIgniteChance5"] = { type = "Suffix", affix = "of Glowing", "Skills used by this Graft have (75-100)% chance to Ignite", statOrder = { 10873 }, level = 82, group = "GraftSuffixIgniteChance", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, }, + ["GraftSuffixFreezeChance1"] = { type = "Suffix", affix = "of Ice", "Skills used by this Graft have (10-19)% chance to Freeze", statOrder = { 10872 }, level = 1, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixFreezeChance2"] = { type = "Suffix", affix = "of Sleet", "Skills used by this Graft have (20-29)% chance to Freeze", statOrder = { 10872 }, level = 22, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixFreezeChance3"] = { type = "Suffix", affix = "of Snow", "Skills used by this Graft have (30-39)% chance to Freeze", statOrder = { 10872 }, level = 44, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixFreezeChance4"] = { type = "Suffix", affix = "of Hail", "Skills used by this Graft have (40-49)% chance to Freeze", statOrder = { 10872 }, level = 66, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixFreezeChance5"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft have (50-60)% chance to Freeze", statOrder = { 10872 }, level = 82, group = "GraftSuffixFreezeChance", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixShockAsThoughDealingMoreDamage1"] = { type = "Suffix", affix = "of Amplification", "Skills used by this Graft Shock Enemies as though dealing 100% more Damage", statOrder = { 10918 }, level = 66, group = "GraftSuffixShockAsThoughDealingMoreDamage", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixLightningGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Bolt", "Skills used by this Graft Gain (16-24)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10904 }, level = 44, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixLightningGainAsChaos2"] = { type = "Suffix", affix = "of Twisted Thunder", "Skills used by this Graft Gain (28-32)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10904 }, level = 66, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, + ["GraftSuffixLightningGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Storms", "Skills used by this Graft Gain (44-56)% of Lightning Damage as Extra Chaos Damage", statOrder = { 10904 }, level = 82, group = "GraftSuffixLightningGainAsChaos", weightKey = { "graft_esh_bolt_ring", "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, }, + ["GraftSuffixFireGainAsChaos1"] = { type = "Suffix", affix = "of Shadowed Smoke", "Skills used by this Graft Gain (16-24)% of Fire Damage as Extra Chaos Damage", statOrder = { 10892 }, level = 44, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixFireGainAsChaos2"] = { type = "Suffix", affix = "of Umbral Flame", "Skills used by this Graft Gain (28-32)% of Fire Damage as Extra Chaos Damage", statOrder = { 10892 }, level = 66, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, + ["GraftSuffixFireGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Flame", "Skills used by this Graft Gain (44-56)% of Fire Damage as Extra Chaos Damage", statOrder = { 10892 }, level = 82, group = "GraftSuffixFireGainAsChaos", weightKey = { "graft_xoph_molten_shell", "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { }, }, + ["GraftSuffixColdGainAsChaos1"] = { type = "Suffix", affix = "of Blasted Snow", "Skills used by this Graft Gain (16-24)% of Cold Damage as Extra Chaos Damage", statOrder = { 10875 }, level = 44, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixColdGainAsChaos2"] = { type = "Suffix", affix = "of Blackened Ice", "Skills used by this Graft Gain (28-32)% of Cold Damage as Extra Chaos Damage", statOrder = { 10875 }, level = 66, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["GraftSuffixColdGainAsChaos3"] = { type = "Suffix", affix = "of Darkened Frost", "Skills used by this Graft Gain (44-56)% of Cold Damage as Extra Chaos Damage", statOrder = { 10875 }, level = 82, group = "GraftSuffixColdGainAsChaos", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["GraftSuffixCoverInFrost1"] = { type = "Suffix", affix = "of Snowdrifts", "Skills used by this Graft have (20-30)% chance to Cover Enemies in Frost on Hit", statOrder = { 10879 }, level = 66, group = "GraftSuffixCoverInFrost", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixAilmentDuration1"] = { type = "Suffix", affix = "of Torment", "Ailments inflicted by Skills used by this Graft have (8-14)% increased duration", statOrder = { 10868 }, level = 22, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixAilmentDuration2"] = { type = "Suffix", affix = "of Misery", "Ailments inflicted by Skills used by this Graft have (15-23)% increased duration", statOrder = { 10868 }, level = 66, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixAilmentDuration3"] = { type = "Suffix", affix = "of Torture", "Ailments inflicted by Skills used by this Graft have (24-35)% increased duration", statOrder = { 10868 }, level = 82, group = "GraftSuffixAilmentDuration", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixFireExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Fire Exposure on Hit", statOrder = { 10896 }, level = 44, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixFireExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Fire Exposure on Hit", statOrder = { 10896 }, level = 66, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixFireExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Fire Exposure on Hit", statOrder = { 10896 }, level = 82, group = "GraftSuffixFireExposureOnHit", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixLightningExposureOnHit1"] = { type = "Suffix", affix = "of Melting", "Skills used by this Graft have (20-34)% chance to inflict Lightning Exposure on Hit", statOrder = { 10897 }, level = 44, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixLightningExposureOnHit2"] = { type = "Suffix", affix = "of Liquefaction", "Skills used by this Graft have (35-49)% chance to inflict Lightning Exposure on Hit", statOrder = { 10897 }, level = 66, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixLightningExposureOnHit3"] = { type = "Suffix", affix = "of Exposure", "Skills used by this Graft have (50-70)% chance to inflict Lightning Exposure on Hit", statOrder = { 10897 }, level = 82, group = "GraftSuffixLightningExposureOnHit", weightKey = { "graft_esh_lightning_clones", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixImpaleEffect1"] = { type = "Suffix", affix = "of Wringing", "Skills used by this Graft have (20-34)% increased Impale Effect", statOrder = { 10895 }, level = 44, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixImpaleEffect2"] = { type = "Suffix", affix = "of Twisting", "Skills used by this Graft have (35-44)% increased Impale Effect", statOrder = { 10895 }, level = 66, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixImpaleEffect3"] = { type = "Suffix", affix = "of Mangling", "Skills used by this Graft have (45-55)% increased Impale Effect", statOrder = { 10895 }, level = 82, group = "GraftSuffixImpaleEffect", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamage1"] = { type = "Suffix", affix = "of Armies", "Minions summoned by this Graft deal (10-29)% increased Damage", statOrder = { 10907 }, level = 1, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamage2"] = { type = "Suffix", affix = "of Infantry", "Minions summoned by this Graft deal (30-49)% increased Damage", statOrder = { 10907 }, level = 11, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamage3"] = { type = "Suffix", affix = "of Troops", "Minions summoned by this Graft deal (50-69)% increased Damage", statOrder = { 10907 }, level = 22, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamage4"] = { type = "Suffix", affix = "of the Multitude", "Minions summoned by this Graft deal (70-89)% increased Damage", statOrder = { 10907 }, level = 33, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamage5"] = { type = "Suffix", affix = "of Swarms", "Minions summoned by this Graft deal (90-109)% increased Damage", statOrder = { 10907 }, level = 44, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamage6"] = { type = "Suffix", affix = "of Hordes", "Minions summoned by this Graft deal (110-129)% increased Damage", statOrder = { 10907 }, level = 55, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamage7"] = { type = "Suffix", affix = "of Hosts", "Minions summoned by this Graft deal (130-149)% increased Damage", statOrder = { 10907 }, level = 66, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamage8"] = { type = "Suffix", affix = "of Throngs", "Minions summoned by this Graft deal (150-169)% increased Damage", statOrder = { 10907 }, level = 74, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamage9"] = { type = "Suffix", affix = "of Droves", "Minions summoned by this Graft deal (170-189)% increased Damage", statOrder = { 10907 }, level = 82, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamage10"] = { type = "Suffix", affix = "of Legions", "Minions summoned by this Graft deal (190-220)% increased Damage", statOrder = { 10907 }, level = 85, group = "GraftSuffixMinionDamage", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixMinionLife1"] = { type = "Suffix", affix = "of Muscle", "Minions summoned by this Graft have (32-36)% increased Life", statOrder = { 10908 }, level = 1, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixMinionLife2"] = { type = "Suffix", affix = "of Flesh", "Minions summoned by this Graft have (38-42)% increased Life", statOrder = { 10908 }, level = 22, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixMinionLife3"] = { type = "Suffix", affix = "of Sinew", "Minions summoned by this Graft have (44-48)% increased Life", statOrder = { 10908 }, level = 44, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixMinionLife4"] = { type = "Suffix", affix = "of Beef", "Minions summoned by this Graft have (50-54)% increased Life", statOrder = { 10908 }, level = 66, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixMinionLife5"] = { type = "Suffix", affix = "of Meat", "Minions summoned by this Graft have (56-60)% increased Life", statOrder = { 10908 }, level = 82, group = "GraftSuffixMinionLife", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixMinionAttackSpeed1"] = { type = "Suffix", affix = "of Lunacy", "Minions summoned by this Graft have (12-18)% increased Attack Speed", statOrder = { 10905 }, level = 44, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixMinionAttackSpeed2"] = { type = "Suffix", affix = "of Psychopathy", "Minions summoned by this Graft have (19-25)% increased Attack Speed", statOrder = { 10905 }, level = 66, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixMinionAttackSpeed3"] = { type = "Suffix", affix = "of Maniacism", "Minions summoned by this Graft have (26-31)% increased Attack Speed", statOrder = { 10905 }, level = 82, group = "GraftSuffixMinionAttackSpeed", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixMinionBlindOnHit1"] = { type = "Suffix", affix = "of Blinding Snow", "Minions summoned by this Graft have (10-20)% chance to Blind on Hit", statOrder = { 10910 }, level = 66, group = "GraftSuffixMinionBlindOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixMinionTauntOnHit1"] = { type = "Suffix", affix = "of Taunting", "Minions summoned by this Graft have (10-20)% chance to Taunt on Hit", statOrder = { 10906 }, level = 66, group = "GraftSuffixMinionTauntOnHit", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamageGainAsCold1"] = { type = "Suffix", affix = "of Frozen Falls", "Minions summoned by this Graft gain (40-49)% of Physical Damage as Extra Cold Damage", statOrder = { 10909 }, level = 44, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamageGainAsCold2"] = { type = "Suffix", affix = "of Winter Winds", "Minions summoned by this Graft gain (50-59)% of Physical Damage as Extra Cold Damage", statOrder = { 10909 }, level = 66, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixMinionDamageGainAsCold3"] = { type = "Suffix", affix = "of Sleetbound Snow", "Minions summoned by this Graft gain (60-70)% of Physical Damage as Extra Cold Damage", statOrder = { 10909 }, level = 82, group = "GraftSuffixMinionDamageGainAsCold", weightKey = { "graft_tul_summon", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixFasterAilments1"] = { type = "Suffix", affix = "of Decomposition", "Damaging Ailments inflicted by Skills used by this Graft deal damage (8-14)% faster", statOrder = { 10886 }, level = 44, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixFasterAilments2"] = { type = "Suffix", affix = "of Festering", "Damaging Ailments inflicted by Skills used by this Graft deal damage (15-21)% faster", statOrder = { 10886 }, level = 66, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixFasterAilments3"] = { type = "Suffix", affix = "of Perishing", "Damaging Ailments inflicted by Skills used by this Graft deal damage (22-28)% faster", statOrder = { 10886 }, level = 82, group = "GraftSuffixFasterAilments", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixPunishmentOnHit1"] = { type = "Suffix", affix = "of Punishment", "Skills used by this Graft inflict Punishment on Hit", statOrder = { 10883 }, level = 44, group = "GraftSuffixPunishmentOnHit", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixNonDamagingAilmentEffect1"] = { type = "Suffix", affix = "of Oppression", "Skills used by this Graft have (10-19)% increased effect of Non-Damaging Ailments", statOrder = { 10911 }, level = 22, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixNonDamagingAilmentEffect2"] = { type = "Suffix", affix = "of Suppression", "Skills used by this Graft have (20-29)% increased effect of Non-Damaging Ailments", statOrder = { 10911 }, level = 66, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["GraftSuffixNonDamagingAilmentEffect3"] = { type = "Suffix", affix = "of Persecution", "Skills used by this Graft have (30-40)% increased effect of Non-Damaging Ailments", statOrder = { 10911 }, level = 82, group = "GraftSuffixNonDamagingAilmentEffect", weightKey = { "graft_esh_lightning_hands", "graft_esh_lightning_clones", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamageVsIgnited1"] = { type = "Suffix", affix = "of Aggravation", "Skills used by this Graft deal (117-152)% increased Damage against Ignited Enemies", statOrder = { 10885 }, level = 44, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamageVsIgnited2"] = { type = "Suffix", affix = "of Exacerbation", "Skills used by this Graft deal (169-194)% increased Damage against Ignited Enemies", statOrder = { 10885 }, level = 66, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["GraftSuffixIncreasedDamageVsIgnited3"] = { type = "Suffix", affix = "of Anguish", "Skills used by this Graft deal (221-246)% increased Damage against Ignited Enemies", statOrder = { 10885 }, level = 82, group = "GraftSuffixIncreasedDamageVsIgnited", weightKey = { "graft_xoph_cremations", "graft_xoph_flame_pillars", "default", }, weightVal = { 300, 300, 0 }, modTags = { }, }, + ["GraftSuffixEshLightningRingBuffAddedLightning1"] = { type = "Suffix", affix = "of Glowing", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 4 to 18 added Lightning Damage", statOrder = { 10867 }, level = 44, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixEshLightningRingBuffAddedLightning2"] = { type = "Suffix", affix = "of Shimmering", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 5 to 24 added Lightning Damage", statOrder = { 10867 }, level = 66, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixEshLightningRingBuffAddedLightning3"] = { type = "Suffix", affix = "of Radiance", "Radiant Ground created by Skills from this Graft grants Allies on it an additional 6 to 30 added Lightning Damage", statOrder = { 10867 }, level = 82, group = "GraftSuffixEshLightningRingBuffAddedLightning", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixEshLightningRingConductivityOnHit"] = { type = "Suffix", affix = "of Conductivity", "Skills used by this Graft inflict Conductivity on Hit", statOrder = { 10876 }, level = 66, group = "GraftSuffixEshLightningRingConductivityOnHit", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixEshLightningRingNumberOfBolts1"] = { type = "Suffix", affix = "of Bolts", "Skills used by this Graft cause 4 additional lightning bolt strikes", statOrder = { 10890 }, level = 44, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixEshLightningRingNumberOfBolts2"] = { type = "Suffix", affix = "of Thunderclaps", "Skills used by this Graft cause 6 additional lightning bolt strikes", statOrder = { 10890 }, level = 82, group = "GraftSuffixEshLightningRingNumberOfBolts", weightKey = { "graft_esh_bolt_ring", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixXophMoltenShellShieldAmount1"] = { type = "Suffix", affix = "of the Core", "Heart of Flame Buff used by this Graft can take an additional (150-250) Damage", statOrder = { 10946 }, level = 44, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixXophMoltenShellShieldAmount2"] = { type = "Suffix", affix = "of the Crux", "Heart of Flame Buff used by this Graft can take an additional (300-550) Damage", statOrder = { 10946 }, level = 66, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixXophMoltenShellShieldAmount3"] = { type = "Suffix", affix = "of the Heart", "Heart of Flame Buff used by this Graft can take an additional (600-750) Damage", statOrder = { 10946 }, level = 82, group = "GraftSuffixXophMoltenShellShieldAmount", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixXophMoltenShellCoverInAsh1"] = { type = "Suffix", affix = "of Ashen Flame", "Skills used by this Graft Cover Enemies in Ash on Hit", statOrder = { 10878 }, level = 66, group = "GraftSuffixXophMoltenShellCoverInAsh", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixXophMoltenShellArmourDuringBuff1"] = { type = "Suffix", affix = "of Flameplating", "Heart of Flame Buff used by this Graft grants (20-49)% increased Armour", statOrder = { 10947 }, level = 44, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixXophMoltenShellArmourDuringBuff2"] = { type = "Suffix", affix = "of Fiery Buttresses", "Heart of Flame Buff used by this Graft grants (50-75)% increased Armour", statOrder = { 10947 }, level = 82, group = "GraftSuffixXophMoltenShellArmourDuringBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixXophMoltenShellPercentTakenByBuff1"] = { type = "Suffix", affix = "of the Fireheart", "An additional (5-10)% of Damage from Hits is taken from Heart of Flame Buff used by this Graft before Life or Energy Shield", statOrder = { 10948 }, level = 66, group = "GraftSuffixXophMoltenShellPercentTakenByBuff", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixXophMoltenShellLessShieldIncreasedCDR1"] = { type = "Suffix", affix = "of Hasty Reconstruction", "Skills used by this Graft have 40% increased Cooldown Recovery Rate", "Heart of Flame Buff used by this Graft can take 30% less Damage", statOrder = { 10877, 10949 }, level = 44, group = "GraftSuffixXophMoltenShellLessShieldIncreasedCDR", weightKey = { "graft_xoph_molten_shell", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["GraftSuffixFrostbiteOnHit1"] = { type = "Suffix", affix = "of Frostbite", "Skills used by this Graft inflict Frostbite on Hit", statOrder = { 10893 }, level = 44, group = "GraftSuffixFrostbiteOnHit", weightKey = { "graft_tul_tornado", "graft_tul_ice_mortars", "default", }, weightVal = { 150, 150, 0 }, modTags = { }, }, + ["GraftSuffixTulTornadoProjectileDamageAfterPierce1"] = { type = "Suffix", affix = "of Boring", "Projectiles created by this Graft that have Pierced deal (20-30)% more Damage", statOrder = { 10913 }, level = 66, group = "GraftSuffixTulTornadoProjectileDamageAfterPierce", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixTulTornadoAdditionalTornado1"] = { type = "Suffix", affix = "of Whirlwinds", "Skills used by this Graft deal 40% less Damage", "Dance in the White used by this Graft creates an additional Tornado", "Dance in the White used by this Graft has +1 to maximum Tornados", statOrder = { 10928, 10929, 10930 }, level = 66, group = "GraftSuffixTulTornadoAdditionalTornado", weightKey = { "graft_tul_tornado", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixXophGeysersAdditionalGeyser1"] = { type = "Suffix", affix = "of Eruption", "His Burning Message used by this Graft creates an additional geyser", statOrder = { 10944 }, level = 44, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixXophGeysersAdditionalGeyser2"] = { type = "Suffix", affix = "of Geysers", "His Burning Message used by this Graft creates 2 additional geysers", statOrder = { 10944 }, level = 82, group = "GraftSuffixXophGeysersAdditionalGeyser", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixXophGeysersAdditionalWarcyProjectiles1"] = { type = "Suffix", affix = "of Deafening", "Geysers created by this Graft fire 2 additional Projectiles when you Warcry", statOrder = { 10945 }, level = 66, group = "GraftSuffixXophGeysersAdditionalWarcyProjectiles", weightKey = { "graft_xoph_cremations", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixJoltBuffMaximumJoltBuffCount1"] = { type = "Suffix", affix = "of Trembling", "Overcharged Sinews used by this Graft can apply +(1-2) maximum Jolt Buffs", statOrder = { 10901 }, level = 44, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixJoltBuffMaximumJoltBuffCount2"] = { type = "Suffix", affix = "of Shuddering", "Overcharged Sinews used by this Graft can apply +(3-4) maximum Jolt Buffs", statOrder = { 10901 }, level = 82, group = "GraftSuffixJoltBuffMaximumJoltBuffCount", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixJoltMaxDamageAndDamageTaken1"] = { type = "Suffix", affix = "of Peril", "Jolt granted by this Graft grants +1% increased Damage taken", "Jolt granted by this Graft grants +1% more Maximum Attack Damage", statOrder = { 10888, 10889 }, level = 66, group = "GraftSuffixJoltMaxDamageAndDamageTaken", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixJoltGrantsCriticalStrikeChance1"] = { type = "Suffix", affix = "of Heightening", "Jolt granted by this Graft grants (1-2)% increased Critical Strike Chance", statOrder = { 10899 }, level = 1, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixJoltGrantsCriticalStrikeChance2"] = { type = "Suffix", affix = "of Sharpening", "Jolt granted by this Graft grants (2-3)% increased Critical Strike Chance", statOrder = { 10899 }, level = 22, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixJoltGrantsCriticalStrikeChance3"] = { type = "Suffix", affix = "of Amplification", "Jolt granted by this Graft grants 4% increased Critical Strike Chance", statOrder = { 10899 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 700, 0 }, modTags = { }, }, + ["GraftSuffixJoltGrantsCriticalStrikeChance4"] = { type = "Suffix", affix = "of Intensity", "Jolt granted by this Graft grants 5% increased Critical Strike Chance", statOrder = { 10899 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixJoltGrantsCriticalStrikeChance5"] = { type = "Suffix", affix = "of Escalation", "Jolt granted by this Graft grants 6% increased Critical Strike Chance", statOrder = { 10899 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeChance", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixJoltGrantsCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Pins", "Jolt granted by this Graft grants +(1-2)% to Critical Strike Multiplier", statOrder = { 10900 }, level = 44, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixJoltGrantsCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Blades", "Jolt granted by this Graft grants +(2-3)% to Critical Strike Multiplier", statOrder = { 10900 }, level = 66, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixJoltGrantsCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Daggers", "Jolt granted by this Graft grants +4% to Critical Strike Multiplier", statOrder = { 10900 }, level = 82, group = "GraftSuffixJoltGrantsCriticalStrikeMultiplier", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixJoltGrantsMovementVelocity1"] = { type = "Suffix", affix = "of Velocity", "Jolt granted by this Graft grants 1% increased Movement Speed", statOrder = { 10902 }, level = 66, group = "GraftSuffixJoltGrantsMovementVelocity", weightKey = { "graft_esh_jolt_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixLightningHandsAdditionalHands1"] = { type = "Suffix", affix = "of Grasping", "Enervating Grasp used by this Graft creates (3-5) additional Hands", statOrder = { 10891 }, level = 66, group = "GraftSuffixLightningHandsAdditionalHands", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixLightningHandsUnnerveOnHit1"] = { type = "Suffix", affix = "of Unnerving", "Skills used by this Graft Unnerve on Hit", statOrder = { 10874 }, level = 44, group = "GraftSuffixLightningHandsUnnerveOnHit", weightKey = { "graft_esh_lightning_hands", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffDurationForEffect1"] = { type = "Suffix", affix = "of Dilution", "Skills used by this Graft have (34-40)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10887, 10952 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffDurationForEffect2"] = { type = "Suffix", affix = "of Thinning", "Skills used by this Graft have (41-45)% increased Skill Effect Duration", "Buff granted by Tender Embrace used by this Graft grants 10% less Life Recovery Rate", statOrder = { 10887, 10952 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffDurationForEffect", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffAdditionalCharge1"] = { type = "Suffix", affix = "of Endurance", "Buff granted by Tender Embrace used by this Graft grants +1 Endurance Charge when gained", statOrder = { 10953 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffAdditionalCharge", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffRecovery1"] = { type = "Suffix", affix = "of Recovery", "Buff granted by Tender Embrace used by this Graft grants (2-4)% more Life Recovery Rate", statOrder = { 10952 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffRecovery2"] = { type = "Suffix", affix = "of Rejuvenation", "Buff granted by Tender Embrace used by this Graft grants (5-8)% more Life Recovery Rate", statOrder = { 10952 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffRecovery3"] = { type = "Suffix", affix = "of Renewal", "Buff granted by Tender Embrace used by this Graft grants (9-12)% more Life Recovery Rate", statOrder = { 10952 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffRecovery", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffBlockChance1"] = { type = "Suffix", affix = "of the Bulwark", "Buff granted by Tender Embrace used by this Graft grants +(2-4)% chance to Block Attack Damage", statOrder = { 10950 }, level = 22, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffBlockChance2"] = { type = "Suffix", affix = "of Shielding", "Buff granted by Tender Embrace used by this Graft grants +(5-7)% chance to Block Attack Damage", statOrder = { 10950 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffBlockChance3"] = { type = "Suffix", affix = "of the Turtle", "Buff granted by Tender Embrace used by this Graft grants +(8-10)% chance to Block Attack Damage", statOrder = { 10950 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffBlockChance", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffLifeLeech1"] = { type = "Suffix", affix = "of Bloodhunger", "Buff granted by Tender Embrace used by this Graft grants (0.2-0.3)% of Damage Leeched as Life", statOrder = { 10951 }, level = 44, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffLifeLeech2"] = { type = "Suffix", affix = "of Vampirism", "Buff granted by Tender Embrace used by this Graft grants (0.3-0.4)% of Damage Leeched as Life", statOrder = { 10951 }, level = 66, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolLowLifeBuffLifeLeech3"] = { type = "Suffix", affix = "of the Leech", "Buff granted by Tender Embrace used by this Graft grants (0.4-0.5)% of Damage Leeched as Life", statOrder = { 10951 }, level = 82, group = "GraftSuffixUulNetolLowLifeBuffLifeLeech", weightKey = { "graft_uulnetol_low_life_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolImpaleBuffImpaleEffect1"] = { type = "Suffix", affix = "of Twisting", "Violent Desire used by this Graft grants +(6-10)% increased effect of Impale", statOrder = { 10937 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolImpaleBuffImpaleEffect2"] = { type = "Suffix", affix = "of Wrenching", "Violent Desire used by this Graft grants +(11-15)% increased effect of Impale", statOrder = { 10937 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffImpaleEffect", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed1"] = { type = "Suffix", affix = "of the Berserker", "Violent Desire used by this Graft also grants (4-6)% increased Attack Speed", statOrder = { 10935 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed2"] = { type = "Suffix", affix = "of the Maniac", "Violent Desire used by this Graft also grants (7-9)% increased Attack Speed", statOrder = { 10935 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed3"] = { type = "Suffix", affix = "of the Madman", "Violent Desire used by this Graft also grants (10-12)% increased Attack Speed", statOrder = { 10935 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackSpeed", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE1"] = { type = "Suffix", affix = "of Grasping", "Violent Desire used by this Graft also grants (5-7)% increased Area of Effect with Attacks", statOrder = { 10934 }, level = 44, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE2"] = { type = "Suffix", affix = "of Clutching", "Violent Desire used by this Graft also grants (8-10)% increased Area of Effect with Attacks", statOrder = { 10934 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolImpaleBuffGrantsAttackAOE3"] = { type = "Suffix", affix = "of Siezing", "Violent Desire used by this Graft also grants (11-13)% increased Area of Effect with Attacks", statOrder = { 10934 }, level = 82, group = "GraftSuffixUulNetolImpaleBuffGrantsAttackAOE", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction1"] = { type = "Suffix", affix = "of Devastation", "Violent Desire used by this Graft also grants Hits have (30-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10936 }, level = 66, group = "GraftSuffixUulNetolImpaleBuffGrantsChanceToIgnorePhysReduction", weightKey = { "graft_uulnetol_impale_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixTulMortarAdditionalMortar1"] = { type = "Suffix", affix = "of Flinging", "Falling Crystals used by this Graft fires up to 1 additional mortar", statOrder = { 10927 }, level = 66, group = "GraftSuffixTulMortarAdditionalMortar", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixTulMortarMoreDamageVSFrozen1"] = { type = "Suffix", affix = "of Icebergs", "Skills used by this Graft deal (10-24)% more Damage to Frozen Enemies", statOrder = { 10926 }, level = 44, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixTulMortarMoreDamageVSFrozen2"] = { type = "Suffix", affix = "of Floes", "Skills used by this Graft deal (25-34)% more Damage to Frozen Enemies", statOrder = { 10926 }, level = 66, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixTulMortarMoreDamageVSFrozen3"] = { type = "Suffix", affix = "of Glaciers", "Skills used by this Graft deal (35-45)% more Damage to Frozen Enemies", statOrder = { 10926 }, level = 82, group = "GraftSuffixTulMortarMoreDamageVSFrozen", weightKey = { "graft_tul_ice_mortars", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolSpikesAdditionalSpikes1"] = { type = "Suffix", affix = "of Foothills", "Seize the Flesh used by this Graft creates +(1-2) Spire", statOrder = { 10931 }, level = 66, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixUulNetolSpikesAdditionalSpikes2"] = { type = "Suffix", affix = "of Mountains", "Seize the Flesh used by this Graft creates +(3-4) Spires", statOrder = { 10931 }, level = 82, group = "GraftSuffixUulNetolSpikesAdditionalSpikes", weightKey = { "graft_uulnetol_bone_spires", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixXophPillarAdditionalPillar1"] = { type = "Suffix", affix = "of Pillars", "Call the Pyre used by this Graft creates +1 Ashen Pillar", statOrder = { 10943 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixXophPillarAdditionalPillar2"] = { type = "Suffix", affix = "of Obelisks", "Call the Pyre used by this Graft creates +2 Ashen Pillars", statOrder = { 10943 }, level = 66, group = "GraftSuffixXophPillarAdditionalPillar", weightKey = { "graft_xoph_flame_pillars", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixXophAilmentBuffEleGainAsChaos1"] = { type = "Suffix", affix = "of Foulness", "The Grey Wind Howls used by this Graft also grants (5-8)% of Elemental Damage gained as Extra Chaos Damage", statOrder = { 10941 }, level = 66, group = "GraftSuffixXophAilmentBuffEleGainAsChaos", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixXophAilmentBuffEleResistances1"] = { type = "Suffix", affix = "of the Span", "The Grey Wind Howls used by this Graft also grants +(5-8)% to all Elemental Resistances", statOrder = { 10940 }, level = 44, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixXophAilmentBuffEleResistances2"] = { type = "Suffix", affix = "of Resistance", "The Grey Wind Howls used by this Graft also grants +(9-12)% to all Elemental Resistances", statOrder = { 10940 }, level = 66, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixXophAilmentBuffEleResistances3"] = { type = "Suffix", affix = "of Facets", "The Grey Wind Howls used by this Graft also grants +(13-16)% to all Elemental Resistances", statOrder = { 10940 }, level = 82, group = "GraftSuffixXophAilmentBuffEleResistances", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixXophAilmentBuffElementalAilmentAvoid1"] = { type = "Suffix", affix = "of Eschewing", "The Grey Wind Howls used by this Graft also grants (20-29)% chance to Avoid Elemental Ailments", statOrder = { 10942 }, level = 44, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixXophAilmentBuffElementalAilmentAvoid2"] = { type = "Suffix", affix = "of Avoidance", "The Grey Wind Howls used by this Graft also grants (30-40)% chance to Avoid Elemental Ailments", statOrder = { 10942 }, level = 66, group = "GraftSuffixXophAilmentBuffElementalAilmentAvoid", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra1"] = { type = "Suffix", affix = "of Prisms", "The Grey Wind Howls used by this Graft grants +(2-4)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10939 }, level = 44, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra2"] = { type = "Suffix", affix = "of the Spectrum", "The Grey Wind Howls used by this Graft grants +(5-7)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10939 }, level = 66, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra3"] = { type = "Suffix", affix = "of the Continuum", "The Grey Wind Howls used by this Graft grants +(8-10)% additional Physical Damage gained as Extra Elemental Damage", statOrder = { 10939 }, level = 82, group = "GraftSuffixXophAilmentBuffAdditionalDamageGainedAsExtra", weightKey = { "graft_xoph_ailment_buff", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixTulAegisBuffAmount1"] = { type = "Suffix", affix = "of Guarding", "Preserving Stillness used by this Graft can take (200-299) additional Damage", statOrder = { 10925 }, level = 44, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixTulAegisBuffAmount2"] = { type = "Suffix", affix = "of Shelter", "Preserving Stillness used by this Graft can take (300-399) additional Damage", statOrder = { 10925 }, level = 66, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixTulAegisBuffAmount3"] = { type = "Suffix", affix = "of Protection", "Preserving Stillness used by this Graft can take (400-500) additional Damage", statOrder = { 10925 }, level = 82, group = "GraftSuffixTulAegisBuffAmount", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixTulAegisBuffMaxResistance1"] = { type = "Suffix", affix = "of the Mosaic", "Preserving Stillness used by this Graft also grants +1% to all maximum Elemental Resistances", statOrder = { 10924 }, level = 66, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftSuffixTulAegisBuffMaxResistance2"] = { type = "Suffix", affix = "of Hues", "Preserving Stillness used by this Graft also grants +2% to all maximum Elemental Resistances", statOrder = { 10924 }, level = 82, group = "GraftSuffixTulAegisBuffMaxResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 150, 0 }, modTags = { }, }, + ["GraftSuffixTulAegisBuffAdditionalResistance1"] = { type = "Suffix", affix = "of Resistance", "Preserving Stillness used by this Graft also grants +(10-14)% to all Elemental Resistances", statOrder = { 10923 }, level = 44, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["GraftSuffixTulAegisBuffAdditionalResistance2"] = { type = "Suffix", affix = "of Resilience", "Preserving Stillness used by this Graft also grants +(15-19)% to all Elemental Resistances", statOrder = { 10923 }, level = 66, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["GraftSuffixTulAegisBuffAdditionalResistance3"] = { type = "Suffix", affix = "of Mettle", "Preserving Stillness used by this Graft also grants +(20-25)% to all Elemental Resistances", statOrder = { 10923 }, level = 82, group = "GraftSuffixTulAegisBuffAdditionalResistance", weightKey = { "graft_tul_aegis", "default", }, weightVal = { 300, 0 }, modTags = { }, }, + ["GraftCorruptionAttackSpeedPerFrenzy"] = { type = "Corrupted", affix = "", "(1-2)% increased Attack Speed per Frenzy Charge", statOrder = { 2049 }, level = 1, group = "GraftCorruptionAttackSpeedPerFrenzy", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, }, + ["GraftCorruptionCritChancePerPower"] = { type = "Corrupted", affix = "", "(4-8)% increased Critical Strike Chance per Power Charge", statOrder = { 3166 }, level = 1, group = "GraftCorruptionCritChancePerPower", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, }, + ["GraftCorruptionLifeRegenerationPerEndurance"] = { type = "Corrupted", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 1, group = "GraftCorruptionLifeRegenerationPerEndurance", weightKey = { "graft", "default", }, weightVal = { 120, 0 }, modTags = { }, }, + ["GraftCorruptionAccuracyFromLightRadius"] = { type = "Corrupted", affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7429 }, level = 1, group = "GraftCorruptionAccuracyFromLightRadius", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, }, + ["GraftCorruptionStunThresholdFromFireResistance"] = { type = "Corrupted", affix = "", "Stun Threshold is increased by Overcapped Fire Resistance", statOrder = { 10266 }, level = 1, group = "GraftCorruptionStunThresholdFromFireResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, }, + ["GraftCorruptionLessAreaDamageChanceFromColdResistance"] = { type = "Corrupted", affix = "", "1% chance to take 20% less Area Damage from Hits per 2% Overcapped Cold Resistance", statOrder = { 10349 }, level = 1, group = "GraftCorruptionLessAreaDamageChanceFromColdResistance", weightKey = { "graft", "default", }, weightVal = { 80, 0 }, modTags = { }, }, + ["GraftCorruptionProjectileSpeedPerStrength"] = { type = "Corrupted", affix = "", "1% increased Projectile Speed per 20 Strength", statOrder = { 9742 }, level = 66, group = "GraftCorruptionProjectileSpeedPerStrength", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, }, + ["GraftCorruptionCastSpeedPerDexterity"] = { type = "Corrupted", affix = "", "1% increased Cast Speed per 20 Dexterity", statOrder = { 5461 }, level = 66, group = "GraftCorruptionCastSpeedPerDexterity", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, }, + ["GraftCorruptionMeleeDamagePerIntelligence"] = { type = "Corrupted", affix = "", "1% increased Melee Damage per 20 Intelligence", statOrder = { 9188 }, level = 66, group = "GraftCorruptionMeleeDamagePerIntelligence", weightKey = { "graft", "default", }, weightVal = { 60, 0 }, modTags = { }, }, + ["GraftCorruptionNonDamagingAilmentEffectPerBlueGem"] = { type = "Corrupted", affix = "", "2% increased Effect of Non-Damaging Ailments for each Blue Skill Gem you have socketed", statOrder = { 9497 }, level = 66, group = "GraftCorruptionNonDamagingAilmentEffectPerBlueGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, }, + ["GraftCorruptionCooldownSpeedPerGreenGem"] = { type = "Corrupted", affix = "", "2% increased Cooldown Recovery Rate for each Green Skill Gem you have socketed", statOrder = { 5871 }, level = 66, group = "GraftCorruptionCooldownSpeedPerGreenGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, }, + ["GraftCorruptionSkillEffectDurationPerRedGem"] = { type = "Corrupted", affix = "", "2% increased Skill Effect Duration for each Red Skill Gem you have socketed", statOrder = { 10052 }, level = 66, group = "GraftCorruptionSkillEffectDurationPerRedGem", weightKey = { "graft", "default", }, weightVal = { 40, 0 }, modTags = { }, }, } \ No newline at end of file diff --git a/src/Data/ModItem.lua b/src/Data/ModItem.lua index c1efd7ea83..4bb923f261 100644 --- a/src/Data/ModItem.lua +++ b/src/Data/ModItem.lua @@ -2,11515 +2,11515 @@ -- Item data (c) Grinding Gear Games return { - ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(8-12) to Strength", statOrder = { 1182 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(13-17) to Strength", statOrder = { 1182 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(18-22) to Strength", statOrder = { 1182 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(23-27) to Strength", statOrder = { 1182 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(28-32) to Strength", statOrder = { 1182 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(33-37) to Strength", statOrder = { 1182 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(38-42) to Strength", statOrder = { 1182 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(43-50) to Strength", statOrder = { 1182 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(51-55) to Strength", statOrder = { 1182 }, level = 82, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Strength10"] = { type = "Suffix", affix = "of the Godslayer", "+(56-60) to Strength", statOrder = { 1182 }, level = 85, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, }, - ["StrengthEssence7_"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Strength", statOrder = { 1182 }, level = 82, group = "Strength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, - ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(8-12) to Dexterity", statOrder = { 1183 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(13-17) to Dexterity", statOrder = { 1183 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(18-22) to Dexterity", statOrder = { 1183 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(23-27) to Dexterity", statOrder = { 1183 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(28-32) to Dexterity", statOrder = { 1183 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(33-37) to Dexterity", statOrder = { 1183 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(38-42) to Dexterity", statOrder = { 1183 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(43-50) to Dexterity", statOrder = { 1183 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-55) to Dexterity", statOrder = { 1183 }, level = 82, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Dexterity10"] = { type = "Suffix", affix = "of the Blur", "+(56-60) to Dexterity", statOrder = { 1183 }, level = 85, group = "Dexterity", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attribute" }, }, - ["DexterityEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Dexterity", statOrder = { 1183 }, level = 82, group = "Dexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, - ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(8-12) to Intelligence", statOrder = { 1184 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(13-17) to Intelligence", statOrder = { 1184 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(18-22) to Intelligence", statOrder = { 1184 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(23-27) to Intelligence", statOrder = { 1184 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(28-32) to Intelligence", statOrder = { 1184 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(33-37) to Intelligence", statOrder = { 1184 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(38-42) to Intelligence", statOrder = { 1184 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(43-50) to Intelligence", statOrder = { 1184 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(51-55) to Intelligence", statOrder = { 1184 }, level = 82, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["Intelligence10"] = { type = "Suffix", affix = "of the Polymath", "+(56-60) to Intelligence", statOrder = { 1184 }, level = 85, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, }, - ["IntelligenceEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Intelligence", statOrder = { 1184 }, level = 82, group = "Intelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, - ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(1-4) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, - ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-8) to all Attributes", statOrder = { 1181 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, - ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(9-12) to all Attributes", statOrder = { 1181 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, - ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(13-16) to all Attributes", statOrder = { 1181 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, - ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(17-20) to all Attributes", statOrder = { 1181 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, - ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(21-24) to all Attributes", statOrder = { 1181 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, - ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(25-28) to all Attributes", statOrder = { 1181 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, - ["AllAttributes8"] = { type = "Suffix", affix = "of the Infinite", "+(29-32) to all Attributes", statOrder = { 1181 }, level = 77, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, - ["AllAttributes9_"] = { type = "Suffix", affix = "of the Multiverse", "+(33-35) to all Attributes", statOrder = { 1181 }, level = 85, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, - ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-24) to maximum Life", statOrder = { 1574 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(25-39) to maximum Life", statOrder = { 1574 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(40-54) to maximum Life", statOrder = { 1574 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(55-69) to maximum Life", statOrder = { 1574 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 1574 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 1574 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(100-114) to maximum Life", statOrder = { 1574 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(115-129) to maximum Life", statOrder = { 1574 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(130-144) to maximum Life", statOrder = { 1574 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(145-159) to maximum Life", statOrder = { 1574 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(160-174) to maximum Life", statOrder = { 1574 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(175-189) to maximum Life", statOrder = { 1574 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrder = { 1574 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrder = { 1574 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrder = { 1574 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence4"] = { type = "Prefix", affix = "Essences", "+(46-60) to maximum Life", statOrder = { 1574 }, level = 42, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence5"] = { type = "Prefix", affix = "Essences", "+(61-75) to maximum Life", statOrder = { 1574 }, level = 58, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssence6"] = { type = "Prefix", affix = "Essences", "+(76-90) to maximum Life", statOrder = { 1574 }, level = 74, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrder = { 1574 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrder = { 1574 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrder = { 1574 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(91-105) to maximum Life", statOrder = { 1574 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrder = { 1584 }, level = 11, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrder = { 1584 }, level = 17, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrder = { 1584 }, level = 23, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrder = { 1584 }, level = 29, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrder = { 1584 }, level = 35, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrder = { 1584 }, level = 42, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrder = { 1584 }, level = 51, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrder = { 1584 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrder = { 1584 }, level = 69, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrder = { 1584 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrder = { 1584 }, level = 81, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrder = { 1584 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrder = { 1584 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1584, 1585 }, level = 1, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1584, 1749 }, level = 1, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, }, - ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1584, 1587 }, level = 1, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1584, 2237 }, level = 1, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1584, 1896 }, level = 1, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon1"] = { type = "Prefix", affix = "Beryl", "+(30-39) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon2__"] = { type = "Prefix", affix = "Cobalt", "+(40-49) to maximum Mana", statOrder = { 1584 }, level = 11, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon3_"] = { type = "Prefix", affix = "Azure", "+(50-59) to maximum Mana", statOrder = { 1584 }, level = 17, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(60-69) to maximum Mana", statOrder = { 1584 }, level = 23, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(70-79) to maximum Mana", statOrder = { 1584 }, level = 29, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon6"] = { type = "Prefix", affix = "Aqua", "+(80-89) to maximum Mana", statOrder = { 1584 }, level = 35, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(90-99) to maximum Mana", statOrder = { 1584 }, level = 42, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon8"] = { type = "Prefix", affix = "Gentian", "+(100-109) to maximum Mana", statOrder = { 1584 }, level = 51, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon9___"] = { type = "Prefix", affix = "Chalybeous", "+(110-119) to maximum Mana", statOrder = { 1584 }, level = 60, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(120-129) to maximum Mana", statOrder = { 1584 }, level = 69, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 800, 800, 800, 800, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon11"] = { type = "Prefix", affix = "Blue", "+(130-139) to maximum Mana", statOrder = { 1584 }, level = 75, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 600, 600, 600, 600, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(140-159) to maximum Mana", statOrder = { 1584 }, level = 81, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(40-49) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(50-59) to maximum Mana", statOrder = { 1584 }, level = 11, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(60-69) to maximum Mana", statOrder = { 1584 }, level = 17, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(70-79) to maximum Mana", statOrder = { 1584 }, level = 23, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(80-89) to maximum Mana", statOrder = { 1584 }, level = 29, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(90-99) to maximum Mana", statOrder = { 1584 }, level = 35, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(100-119) to maximum Mana", statOrder = { 1584 }, level = 42, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(120-139) to maximum Mana", statOrder = { 1584 }, level = 51, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(140-159) to maximum Mana", statOrder = { 1584 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(160-179) to maximum Mana", statOrder = { 1584 }, level = 69, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(180-199) to maximum Mana", statOrder = { 1584 }, level = 75, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 600, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(200-229) to maximum Mana", statOrder = { 1584 }, level = 81, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrder = { 1563 }, level = 3, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrder = { 1563 }, level = 11, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrder = { 1563 }, level = 17, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrder = { 1563 }, level = 23, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrder = { 1563 }, level = 29, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrder = { 1563 }, level = 35, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrder = { 1563 }, level = 42, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrder = { 1563 }, level = 50, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrder = { 1563 }, level = 59, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrder = { 1563 }, level = 68, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrder = { 1563 }, level = 74, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrder = { 1563 }, level = 80, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrder = { 1563, 1566 }, level = 1, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1563, 2651 }, level = 1, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrder = { 1564 }, level = 3, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrder = { 1564 }, level = 11, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrder = { 1564 }, level = 17, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrder = { 1564 }, level = 23, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrder = { 1564 }, level = 29, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrder = { 1564 }, level = 35, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrder = { 1564 }, level = 43, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrder = { 1564 }, level = 51, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrder = { 1564 }, level = 60, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrder = { 1564 }, level = 69, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrder = { 1564 }, level = 75, group = "LocalEnergyShield", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrder = { 1564 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrder = { 1564 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(88-95) to maximum Energy Shield", statOrder = { 1564 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrder = { 1564 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrder = { 1564 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(75-85) to maximum Energy Shield", statOrder = { 1564 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrder = { 1564 }, level = 42, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrder = { 1564 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrder = { 1564 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(38-45) to maximum Energy Shield", statOrder = { 1564 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrder = { 1564 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrder = { 1564 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrder = { 1564 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrder = { 1271 }, level = 5, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1271 }, level = 13, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrder = { 1271 }, level = 19, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1271 }, level = 28, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1271 }, level = 35, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1271 }, level = 44, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrder = { 1271 }, level = 52, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrder = { 1271 }, level = 64, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrder = { 1271 }, level = 76, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 1271 }, level = 5, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver2"] = { type = "Prefix", affix = "Burnished", "Adds (3-4) to (6-8) Physical Damage to Attacks", statOrder = { 1271 }, level = 13, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver3"] = { type = "Prefix", affix = "Polished", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1271 }, level = 19, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver4"] = { type = "Prefix", affix = "Honed", "Adds (6-9) to (13-16) Physical Damage to Attacks", statOrder = { 1271 }, level = 28, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver5"] = { type = "Prefix", affix = "Gleaming", "Adds (8-11) to (16-18) Physical Damage to Attacks", statOrder = { 1271 }, level = 35, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver6"] = { type = "Prefix", affix = "Annealed", "Adds (10-13) to (19-23) Physical Damage to Attacks", statOrder = { 1271 }, level = 44, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (11-16) to (23-26) Physical Damage to Attacks", statOrder = { 1271 }, level = 52, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver8"] = { type = "Prefix", affix = "Tempered", "Adds (14-19) to (28-33) Physical Damage to Attacks", statOrder = { 1271 }, level = 64, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageQuiver9"] = { type = "Prefix", affix = "Flaring", "Adds (17-23) to (34-39) Physical Damage to Attacks", statOrder = { 1271 }, level = 76, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrder = { 1271 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrder = { 1271 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrder = { 1271 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrder = { 1271 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrder = { 1271 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1271 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1271 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrder = { 1271 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrder = { 1365 }, level = 12, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrder = { 1365 }, level = 20, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrder = { 1365 }, level = 28, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1365 }, level = 35, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrder = { 1365 }, level = 44, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1365 }, level = 52, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrder = { 1365 }, level = 64, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrder = { 1365 }, level = 76, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire Damage to Attacks", statOrder = { 1365 }, level = 1, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver2"] = { type = "Prefix", affix = "Smouldering", "Adds (5-7) to (10-12) Fire Damage to Attacks", statOrder = { 1365 }, level = 12, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver3"] = { type = "Prefix", affix = "Smoking", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1365 }, level = 20, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver4"] = { type = "Prefix", affix = "Burning", "Adds (11-14) to (21-25) Fire Damage to Attacks", statOrder = { 1365 }, level = 28, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver5_"] = { type = "Prefix", affix = "Flaming", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1365 }, level = 35, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver6"] = { type = "Prefix", affix = "Scorching", "Adds (17-22) to (33-38) Fire Damage to Attacks", statOrder = { 1365 }, level = 44, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver7"] = { type = "Prefix", affix = "Incinerating", "Adds (20-27) to (40-47) Fire Damage to Attacks", statOrder = { 1365 }, level = 52, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver8__"] = { type = "Prefix", affix = "Blasting", "Adds (27-35) to (53-62) Fire Damage to Attacks", statOrder = { 1365 }, level = 64, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiver9"] = { type = "Prefix", affix = "Cremating", "Adds (37-50) to (74-87) Fire Damage to Attacks", statOrder = { 1365 }, level = 76, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (41-55) to (81-96) Fire Damage to Attacks", statOrder = { 1365 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrder = { 1365 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrder = { 1365 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrder = { 1365 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrder = { 1365 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrder = { 1365 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrder = { 1374 }, level = 2, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrder = { 1374 }, level = 13, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrder = { 1374 }, level = 21, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrder = { 1374 }, level = 29, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrder = { 1374 }, level = 36, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1374 }, level = 45, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1374 }, level = 53, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrder = { 1374 }, level = 65, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrder = { 1374 }, level = 77, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to 3 Cold Damage to Attacks", statOrder = { 1374 }, level = 2, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver2"] = { type = "Prefix", affix = "Chilled", "Adds (5-6) to (9-10) Cold Damage to Attacks", statOrder = { 1374 }, level = 13, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver3_"] = { type = "Prefix", affix = "Icy", "Adds (7-9) to (14-16) Cold Damage to Attacks", statOrder = { 1374 }, level = 21, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver4__"] = { type = "Prefix", affix = "Frigid", "Adds (10-13) to (19-22) Cold Damage to Attacks", statOrder = { 1374 }, level = 29, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver5"] = { type = "Prefix", affix = "Freezing", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1374 }, level = 36, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver6"] = { type = "Prefix", affix = "Frozen", "Adds (15-20) to (30-35) Cold Damage to Attacks", statOrder = { 1374 }, level = 45, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver7"] = { type = "Prefix", affix = "Glaciated", "Adds (18-24) to (36-42) Cold Damage to Attacks", statOrder = { 1374 }, level = 53, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver8"] = { type = "Prefix", affix = "Polar", "Adds (23-32) to (48-55) Cold Damage to Attacks", statOrder = { 1374 }, level = 65, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiver9_"] = { type = "Prefix", affix = "Entombing", "Adds (33-45) to (67-78) Cold Damage to Attacks", statOrder = { 1374 }, level = 77, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (36-50) to (74-86) Cold Damage to Attacks", statOrder = { 1374 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrder = { 1374 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrder = { 1374 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1374 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1374 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrder = { 1374 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1385 }, level = 3, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrder = { 1385 }, level = 13, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrder = { 1385 }, level = 22, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1385 }, level = 28, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrder = { 1385 }, level = 35, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrder = { 1385 }, level = 44, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrder = { 1385 }, level = 52, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrder = { 1385 }, level = 64, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrder = { 1385 }, level = 76, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (3-4) Lightning Damage to Attacks", statOrder = { 1385 }, level = 3, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (16-18) Lightning Damage to Attacks", statOrder = { 1385 }, level = 13, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (25-28) Lightning Damage to Attacks", statOrder = { 1385 }, level = 22, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver4"] = { type = "Prefix", affix = "Crackling", "Adds (2-3) to (35-40) Lightning Damage to Attacks", statOrder = { 1385 }, level = 28, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver5_"] = { type = "Prefix", affix = "Sparking", "Adds (2-4) to (44-50) Lightning Damage to Attacks", statOrder = { 1385 }, level = 35, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver6___"] = { type = "Prefix", affix = "Arcing", "Adds (2-5) to (56-62) Lightning Damage to Attacks", statOrder = { 1385 }, level = 44, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver7"] = { type = "Prefix", affix = "Shocking", "Adds (2-6) to (66-75) Lightning Damage to Attacks", statOrder = { 1385 }, level = 52, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver8"] = { type = "Prefix", affix = "Discharging", "Adds (3-8) to (89-99) Lightning Damage to Attacks", statOrder = { 1385 }, level = 64, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiver9"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-11) to (124-140) Lightning Damage to Attacks", statOrder = { 1385 }, level = 76, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageQuiverEssence10__"] = { type = "Prefix", affix = "Essences", "Adds (6-13) to (136-155) Lightning Damage to Attacks", statOrder = { 1385 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrder = { 1385 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrder = { 1385 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrder = { 1385 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrder = { 1385 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1385 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrder = { 1385 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedChaosDamageQuiver1"] = { type = "Prefix", affix = "Malicious", "Adds (27-41) to (55-69) Chaos Damage to Attacks", statOrder = { 1392 }, level = 83, group = "ChaosDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1365, 1960 }, level = 1, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, - ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1374, 1962 }, level = 1, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, }, - ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1385, 1964 }, level = 1, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, - ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1652 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence3_"] = { type = "Suffix", affix = "of the Essence", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrder = { 1985 }, level = 4, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrder = { 1985 }, level = 15, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrder = { 1985 }, level = 30, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrder = { 1985 }, level = 60, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrder = { 1985 }, level = 81, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 1237, 2029 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 1237 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 1237 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 1237 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 1237 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 1237 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 1237 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 1237 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 1237 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1237, 1940 }, level = 1, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, - ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrder = { 1236 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrder = { 1236 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrder = { 1236 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrder = { 1236 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrder = { 1236 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrder = { 1281 }, level = 2, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrder = { 1281 }, level = 13, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (13-15) Physical Damage", statOrder = { 1281 }, level = 21, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (17-20) Physical Damage", statOrder = { 1281 }, level = 29, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (11-14) to (21-25) Physical Damage", statOrder = { 1281 }, level = 36, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-18) to (27-31) Physical Damage", statOrder = { 1281 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-21) to (32-38) Physical Damage", statOrder = { 1281 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (19-25) to (39-45) Physical Damage", statOrder = { 1281 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (22-29) to (45-52) Physical Damage", statOrder = { 1281 }, level = 77, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageEssenceNew7"] = { type = "Prefix", affix = "Essences", "Adds (20-26) to (40-47) Physical Damage", statOrder = { 1281 }, level = 82, group = "LocalPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrder = { 1281 }, level = 2, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (12-15) Physical Damage", statOrder = { 1281 }, level = 13, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (10-13) to (21-25) Physical Damage", statOrder = { 1281 }, level = 21, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (13-17) to (28-32) Physical Damage", statOrder = { 1281 }, level = 29, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (16-22) to (35-40) Physical Damage", statOrder = { 1281 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (20-28) to (43-51) Physical Damage", statOrder = { 1281 }, level = 46, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (25-33) to (52-61) Physical Damage", statOrder = { 1281 }, level = 54, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (30-40) to (63-73) Physical Damage", statOrder = { 1281 }, level = 65, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (34-47) to (72-84) Physical Damage", statOrder = { 1281 }, level = 77, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedPhysicalDamageTwoHandEssenceNew7__"] = { type = "Prefix", affix = "Essences", "Adds (31-42) to (65-75) Physical Damage", statOrder = { 1281 }, level = 82, group = "LocalPhysicalDamageTwoHanded", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrder = { 1565 }, level = 3, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 1565 }, level = 18, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 1565 }, level = 30, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 1565 }, level = 44, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 1565 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 1565 }, level = 72, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 1565 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 1565 }, level = 86, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 1547 }, level = 3, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 1547 }, level = 17, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 1547 }, level = 29, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 1547 }, level = 42, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 1547 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 1547 }, level = 72, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 1547 }, level = 84, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 1547 }, level = 86, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 1555 }, level = 3, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 1555 }, level = 19, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 1555 }, level = 30, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 1555 }, level = 44, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 1555 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 1555 }, level = 72, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 1555 }, level = 84, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 1555 }, level = 86, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 3, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 19, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 30, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 44, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 72, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 84, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 86, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 1558 }, level = 3, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 1558 }, level = 19, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 1558 }, level = 30, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 1558 }, level = 44, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 1558 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 1558 }, level = 72, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 1558 }, level = 84, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 1558 }, level = 86, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 3, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 19, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 30, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 44, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 72, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 84, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 86, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 3, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 72, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 85, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "dex_int_armour", "body_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 3, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 18, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 30, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 44, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 60, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1565, 1907 }, level = 78, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 17, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 29, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 42, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 60, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrder = { 1547, 1907 }, level = 78, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrder = { 1547, 2254 }, level = 45, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrder = { 1547, 2254 }, level = 78, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 2, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 19, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 30, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 44, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 60, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrder = { 1555, 1907 }, level = 78, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 2, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 30, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 44, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 60, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1557, 1907 }, level = 78, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 2, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 19, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 30, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 44, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 60, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrder = { 1558, 1907 }, level = 78, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 2, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 30, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 44, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 60, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1559, 1907 }, level = 78, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1560, 1907 }, level = 78, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1367 }, level = 11, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1367 }, level = 18, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1367 }, level = 26, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (24-33) to (49-57) Fire Damage", statOrder = { 1367 }, level = 33, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (34-46) to (68-80) Fire Damage", statOrder = { 1367 }, level = 42, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (46-62) to (93-107) Fire Damage", statOrder = { 1367 }, level = 51, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (59-81) to (120-140) Fire Damage", statOrder = { 1367 }, level = 62, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (74-101) to (150-175) Fire Damage", statOrder = { 1367 }, level = 74, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (89-121) to (180-210) Fire Damage", statOrder = { 1367 }, level = 82, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (80-109) to (162-189) Fire Damage", statOrder = { 1367 }, level = 82, group = "LocalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (59-79) to (118-138) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1367, 3767 }, level = 1, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1367 }, level = 11, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1367 }, level = 18, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1367 }, level = 26, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1367 }, level = 33, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1367 }, level = 42, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1367 }, level = 51, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1367 }, level = 62, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1367 }, level = 74, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1367 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1367 }, level = 11, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1367 }, level = 18, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1367 }, level = 26, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1367 }, level = 33, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1367 }, level = 42, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1367 }, level = 51, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged8"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1367 }, level = 62, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged9_"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1367 }, level = 74, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageRanged10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1367 }, level = 82, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (149-203) to (302-351) Fire Damage", statOrder = { 1367 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (109-147) to (220-256) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1367, 3767 }, level = 1, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 1376 }, level = 2, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1376 }, level = 12, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1376 }, level = 19, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1376 }, level = 27, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (22-30) to (44-51) Cold Damage", statOrder = { 1376 }, level = 34, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (31-42) to (62-71) Cold Damage", statOrder = { 1376 }, level = 43, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (41-57) to (83-97) Cold Damage", statOrder = { 1376 }, level = 52, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (54-74) to (108-126) Cold Damage", statOrder = { 1376 }, level = 63, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (68-92) to (136-157) Cold Damage", statOrder = { 1376 }, level = 75, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (81-111) to (163-189) Cold Damage", statOrder = { 1376 }, level = 82, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (73-100) to (147-170) Cold Damage", statOrder = { 1376 }, level = 82, group = "LocalColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (53-72) to (107-124) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1376, 3768 }, level = 1, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1376 }, level = 2, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1376 }, level = 12, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1376 }, level = 19, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1376 }, level = 27, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1376 }, level = 34, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1376 }, level = 43, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1376 }, level = 52, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1376 }, level = 63, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1376 }, level = 75, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1376 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1376 }, level = 2, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1376 }, level = 12, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1376 }, level = 19, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1376 }, level = 27, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1376 }, level = 34, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1376 }, level = 43, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1376 }, level = 52, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1376 }, level = 63, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1376 }, level = 75, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageRanged10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1376 }, level = 82, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (134-184) to (270-313) Cold Damage", statOrder = { 1376 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (100-132) to (197-230) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1376, 3768 }, level = 1, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (5-6) Lightning Damage", statOrder = { 1387 }, level = 3, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1387 }, level = 13, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1387 }, level = 19, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1387 }, level = 31, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (4-5) to (80-94) Lightning Damage", statOrder = { 1387 }, level = 34, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (5-8) to (112-131) Lightning Damage", statOrder = { 1387 }, level = 42, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (8-10) to (152-176) Lightning Damage", statOrder = { 1387 }, level = 51, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (10-14) to (197-229) Lightning Damage", statOrder = { 1387 }, level = 63, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (13-17) to (247-286) Lightning Damage", statOrder = { 1387 }, level = 74, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (15-21) to (296-344) Lightning Damage", statOrder = { 1387 }, level = 82, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (13-19) to (266-310) Lightning Damage", statOrder = { 1387 }, level = 82, group = "LocalLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-17) to (198-224) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 1, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1387 }, level = 3, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1387 }, level = 13, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1387 }, level = 19, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1387 }, level = 31, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1387 }, level = 34, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1387 }, level = 42, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1387 }, level = 51, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1387 }, level = 63, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1387 }, level = 74, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1387 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged1"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1387 }, level = 3, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1387 }, level = 13, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged3___"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1387 }, level = 19, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1387 }, level = 31, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1387 }, level = 34, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged6_"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1387 }, level = 42, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1387 }, level = 51, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1387 }, level = 63, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1387 }, level = 74, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageRanged10_"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1387 }, level = 82, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (25-34) to (494-575) Lightning Damage", statOrder = { 1387 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (12-31) to (367-415) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 1, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(4-8)% increased Armour", statOrder = { 1546 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-13)% increased Armour", statOrder = { 1546 }, level = 18, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(14-18)% increased Armour", statOrder = { 1546 }, level = 30, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(19-23)% increased Armour", statOrder = { 1546 }, level = 42, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(24-28)% increased Armour", statOrder = { 1546 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(29-32)% increased Armour", statOrder = { 1546 }, level = 70, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(33-36)% increased Armour", statOrder = { 1546 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Armour", statOrder = { 1546 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Armour", statOrder = { 1546 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(4-8)% increased Evasion Rating", statOrder = { 1554 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(9-13)% increased Evasion Rating", statOrder = { 1554 }, level = 19, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(14-18)% increased Evasion Rating", statOrder = { 1554 }, level = 30, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(19-23)% increased Evasion Rating", statOrder = { 1554 }, level = 42, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(24-28)% increased Evasion Rating", statOrder = { 1554 }, level = 56, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(29-32)% increased Evasion Rating", statOrder = { 1554 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(33-36)% increased Evasion Rating", statOrder = { 1554 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Evasion Rating", statOrder = { 1554 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Evasion Rating", statOrder = { 1554 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrder = { 1566 }, level = 3, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrder = { 1566 }, level = 18, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrder = { 1566 }, level = 30, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrder = { 1566 }, level = 42, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrder = { 1566 }, level = 56, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrder = { 1566 }, level = 70, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrder = { 1566 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrder = { 1566 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrder = { 1566 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrder = { 1566 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrder = { 1566 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrder = { 1566 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrder = { 1549 }, level = 18, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrder = { 1549 }, level = 29, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrder = { 1549 }, level = 42, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrder = { 1549 }, level = 58, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrder = { 1549 }, level = 72, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrder = { 1549 }, level = 84, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrder = { 1549 }, level = 82, group = "EvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(6-12) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(13-35) to Evasion Rating", statOrder = { 1553 }, level = 11, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-63) to Evasion Rating", statOrder = { 1553 }, level = 17, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(64-82) to Evasion Rating", statOrder = { 1553 }, level = 23, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(83-101) to Evasion Rating", statOrder = { 1553 }, level = 29, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(102-120) to Evasion Rating", statOrder = { 1553 }, level = 35, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(121-150) to Evasion Rating", statOrder = { 1553 }, level = 43, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(151-200) to Evasion Rating", statOrder = { 1553 }, level = 51, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(201-300) to Evasion Rating", statOrder = { 1553 }, level = 60, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(301-400) to Evasion Rating", statOrder = { 1553 }, level = 69, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(401-500) to Evasion Rating", statOrder = { 1553 }, level = 77, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Evasion Rating", statOrder = { 1553 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrder = { 1553 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Evasion Rating", statOrder = { 1553 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(141-160) to Evasion Rating", statOrder = { 1553 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(161-180) to Evasion Rating", statOrder = { 1553 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrder = { 1553 }, level = 26, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(81-90) to Evasion Rating", statOrder = { 1553 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Evasion Rating", statOrder = { 1553 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Evasion Rating", statOrder = { 1553 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Evasion Rating", statOrder = { 1553 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(151-225) to Evasion Rating", statOrder = { 1553 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Evasion Rating", statOrder = { 1553 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["LocalIncreasedEvasionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Evasion Rating", statOrder = { 1553 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrder = { 1544 }, level = 18, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrder = { 1544 }, level = 30, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrder = { 1544 }, level = 44, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrder = { 1544 }, level = 57, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrder = { 1544 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrder = { 1544 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrder = { 1544 }, level = 86, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(481-520) to Armour", statOrder = { 1544 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrder = { 1544 }, level = 58, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrder = { 1544 }, level = 74, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrder = { 1544 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(6-12) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(13-35) to Armour", statOrder = { 1545 }, level = 11, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-63) to Armour", statOrder = { 1545 }, level = 17, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(64-82) to Armour", statOrder = { 1545 }, level = 23, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-101) to Armour", statOrder = { 1545 }, level = 29, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(102-120) to Armour", statOrder = { 1545 }, level = 35, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(121-150) to Armour", statOrder = { 1545 }, level = 43, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(151-200) to Armour", statOrder = { 1545 }, level = 51, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(201-300) to Armour", statOrder = { 1545 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(301-400) to Armour", statOrder = { 1545 }, level = 69, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(401-500) to Armour", statOrder = { 1545 }, level = 77, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Armour", statOrder = { 1545 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Armour", statOrder = { 1545 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(141-160) to Armour", statOrder = { 1545 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(161-180) to Armour", statOrder = { 1545 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Armour", statOrder = { 1545 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Armour", statOrder = { 1545 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Armour", statOrder = { 1545 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield5_"] = { type = "Prefix", affix = "Essences", "+(151-225) to Armour", statOrder = { 1545 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Armour", statOrder = { 1545 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Armour", statOrder = { 1545 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(5-9) to Armour", "+(5-9) to Evasion Rating", statOrder = { 1545, 1553 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(10-27) to Armour", "+(10-27) to Evasion Rating", statOrder = { 1545, 1553 }, level = 18, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(28-48) to Armour", "+(28-48) to Evasion Rating", statOrder = { 1545, 1553 }, level = 30, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(49-85) to Armour", "+(49-85) to Evasion Rating", statOrder = { 1545, 1553 }, level = 38, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-145) to Armour", "+(86-145) to Evasion Rating", statOrder = { 1545, 1553 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(146-220) to Armour", "+(146-220) to Evasion Rating", statOrder = { 1545, 1553 }, level = 58, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(221-300) to Armour", "+(221-300) to Evasion Rating", statOrder = { 1545, 1553 }, level = 69, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(301-375) to Armour", "+(301-375) to Evasion Rating", statOrder = { 1545, 1553 }, level = 79, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(5-9) to Armour", "+(3-4) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(10-27) to Armour", "+(5-12) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 18, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(28-48) to Armour", "+(13-22) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 30, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(49-85) to Armour", "+(23-28) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 38, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-145) to Armour", "+(29-48) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(146-220) to Armour", "+(49-60) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 58, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(221-300) to Armour", "+(61-72) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 69, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(301-375) to Armour", "+(73-80) to maximum Energy Shield", statOrder = { 1545, 1564 }, level = 79, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(5-9) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-27) to Evasion Rating", "+(5-12) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 18, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(28-48) to Evasion Rating", "+(13-22) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 30, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(49-85) to Evasion Rating", "+(23-28) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 38, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(86-145) to Evasion Rating", "+(29-48) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(146-220) to Evasion Rating", "+(49-60) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 58, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(221-300) to Evasion Rating", "+(61-72) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 69, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Phantasm's", "+(301-375) to Evasion Rating", "+(73-80) to maximum Energy Shield", statOrder = { 1553, 1564 }, level = 79, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1545, 1553, 1574 }, level = 30, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1545, 1553, 1574 }, level = 46, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1545, 1553, 1574 }, level = 62, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1545, 1553, 1574 }, level = 78, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, - ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1545, 1564, 1574 }, level = 30, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1545, 1564, 1574 }, level = 46, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1545, 1564, 1574 }, level = 62, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, - ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1545, 1564, 1574 }, level = 78, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1553, 1564, 1574 }, level = 30, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1553, 1564, 1574 }, level = 46, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1553, 1564, 1574 }, level = 62, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, - ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1553, 1564, 1574 }, level = 78, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, - ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(20-32) to Armour", "+(18-23) to maximum Life", statOrder = { 1545, 1574 }, level = 30, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, - ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(33-48) to Armour", "+(24-28) to maximum Life", statOrder = { 1545, 1574 }, level = 46, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, - ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(49-96) to Armour", "+(29-33) to maximum Life", statOrder = { 1545, 1574 }, level = 62, group = "LocalBaseArmourAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, - ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(97-144) to Armour", "+(34-38) to maximum Life", statOrder = { 1545, 1574 }, level = 78, group = "LocalBaseArmourAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, - ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1553, 1574 }, level = 30, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, - ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1553, 1574 }, level = 46, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, - ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1553, 1574 }, level = 62, group = "LocalBaseEvasionRatingAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, - ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1553, 1574 }, level = 78, group = "LocalBaseEvasionRatingAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, - ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1564, 1574 }, level = 30, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1564, 1574 }, level = 46, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1564, 1574 }, level = 62, group = "LocalBaseEnergyShieldAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1564, 1574 }, level = 78, group = "LocalBaseEnergyShieldAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndMana1"] = { type = "Prefix", affix = "Acolyte's", "+(8-10) to maximum Energy Shield", "+(11-15) to maximum Mana", statOrder = { 1564, 1584 }, level = 30, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndMana2"] = { type = "Prefix", affix = "Deacon's", "+(11-15) to maximum Energy Shield", "+(16-19) to maximum Mana", statOrder = { 1564, 1584 }, level = 46, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndMana3"] = { type = "Prefix", affix = "Priest's", "+(16-25) to maximum Energy Shield", "+(20-22) to maximum Mana", statOrder = { 1564, 1584 }, level = 62, group = "LocalBaseEnergyShieldAndMana", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, - ["LocalBaseEnergyShieldAndMana4"] = { type = "Prefix", affix = "Bishop's", "+(26-30) to maximum Energy Shield", "+(23-25) to maximum Mana", statOrder = { 1564, 1584 }, level = 78, group = "LocalBaseEnergyShieldAndMana", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, - ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 1803 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 1803 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 1803 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 1803 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 1803 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrder = { 1803 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1803, 3248 }, level = 1, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1803, 4221 }, level = 1, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1803, 1854 }, level = 1, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrder = { 1228 }, level = 5, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrder = { 1228 }, level = 20, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrder = { 1228 }, level = 38, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrder = { 1228 }, level = 56, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrder = { 1228 }, level = 76, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrder = { 1228 }, level = 2, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrder = { 1228 }, level = 11, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrder = { 1228 }, level = 23, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-54)% increased Spell Damage", statOrder = { 1228 }, level = 35, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(55-69)% increased Spell Damage", statOrder = { 1228 }, level = 46, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(70-84)% increased Spell Damage", statOrder = { 1228 }, level = 58, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 150, 150, 150, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(85-99)% increased Spell Damage", statOrder = { 1228 }, level = 64, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 80, 80, 80, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(100-109)% increased Spell Damage", statOrder = { 1228 }, level = 84, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 40, 40, 40, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essences", "(50-66)% increased Spell Damage", statOrder = { 1228 }, level = 58, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(67-82)% increased Spell Damage", statOrder = { 1228 }, level = 74, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(83-94)% increased Spell Damage", statOrder = { 1228 }, level = 82, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1228, 9487 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(15-29)% increased Spell Damage", statOrder = { 1228 }, level = 2, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(30-44)% increased Spell Damage", statOrder = { 1228 }, level = 11, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-59)% increased Spell Damage", statOrder = { 1228 }, level = 23, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(60-84)% increased Spell Damage", statOrder = { 1228 }, level = 35, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(85-104)% increased Spell Damage", statOrder = { 1228 }, level = 46, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(105-124)% increased Spell Damage", statOrder = { 1228 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(125-149)% increased Spell Damage", statOrder = { 1228 }, level = 79, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(150-164)% increased Spell Damage", statOrder = { 1228 }, level = 84, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "(85-106)% increased Spell Damage", statOrder = { 1228 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(107-122)% increased Spell Damage", statOrder = { 1228 }, level = 74, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(123-144)% increased Spell Damage", statOrder = { 1228 }, level = 82, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1228, 9487 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(5-9)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 1228, 1584 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(10-14)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 1228, 1584 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(15-19)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 1228, 1584 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(20-24)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 1228, 1584 }, level = 35, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 600, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(25-29)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 1228, 1584 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 400, 300, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(30-34)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 1228, 1584 }, level = 58, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 150, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(35-39)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 1228, 1584 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 75, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-14)% increased Spell Damage", "+(26-30) to maximum Mana", statOrder = { 1228, 1584 }, level = 2, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(15-22)% increased Spell Damage", "+(31-35) to maximum Mana", statOrder = { 1228, 1584 }, level = 11, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(23-29)% increased Spell Damage", "+(36-41) to maximum Mana", statOrder = { 1228, 1584 }, level = 23, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-37)% increased Spell Damage", "+(42-47) to maximum Mana", statOrder = { 1228, 1584 }, level = 35, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(38-44)% increased Spell Damage", "+(48-53) to maximum Mana", statOrder = { 1228, 1584 }, level = 46, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(45-50)% increased Spell Damage", "+(54-59) to maximum Mana", statOrder = { 1228, 1584 }, level = 58, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(51-55)% increased Spell Damage", "+(60-64) to maximum Mana", statOrder = { 1228, 1584 }, level = 80, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, - ["TrapDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1199 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["TrapDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1199 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 1, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1928, 3466 }, level = 1, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3484 }, level = 1, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["LocalIncreaseSocketedTrapGemLevelEnhancedMod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrder = { 191 }, level = 1, group = "LocalIncreaseSocketedTrapGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, - ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 1, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5037 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["LocalIncreaseSocketedMinionGemLevelEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrder = { 1362 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrder = { 1362 }, level = 11, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrder = { 1362 }, level = 23, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-54)% increased Fire Damage", statOrder = { 1362 }, level = 35, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(55-69)% increased Fire Damage", statOrder = { 1362 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(70-84)% increased Fire Damage", statOrder = { 1362 }, level = 58, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(85-99)% increased Fire Damage", statOrder = { 1362 }, level = 64, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(100-109)% increased Fire Damage", statOrder = { 1362 }, level = 84, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(15-29)% increased Fire Damage", statOrder = { 1362 }, level = 2, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(30-44)% increased Fire Damage", statOrder = { 1362 }, level = 11, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-59)% increased Fire Damage", statOrder = { 1362 }, level = 23, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(60-84)% increased Fire Damage", statOrder = { 1362 }, level = 35, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(85-104)% increased Fire Damage", statOrder = { 1362 }, level = 46, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(105-124)% increased Fire Damage", statOrder = { 1362 }, level = 58, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(125-149)% increased Fire Damage", statOrder = { 1362 }, level = 79, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(150-164)% increased Fire Damage", statOrder = { 1362 }, level = 84, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 1, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 1, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrder = { 1371 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrder = { 1371 }, level = 11, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrder = { 1371 }, level = 23, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-54)% increased Cold Damage", statOrder = { 1371 }, level = 35, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(55-69)% increased Cold Damage", statOrder = { 1371 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(70-84)% increased Cold Damage", statOrder = { 1371 }, level = 58, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(85-99)% increased Cold Damage", statOrder = { 1371 }, level = 64, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(100-109)% increased Cold Damage", statOrder = { 1371 }, level = 84, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(15-29)% increased Cold Damage", statOrder = { 1371 }, level = 2, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(30-44)% increased Cold Damage", statOrder = { 1371 }, level = 11, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(45-59)% increased Cold Damage", statOrder = { 1371 }, level = 23, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(60-84)% increased Cold Damage", statOrder = { 1371 }, level = 35, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(85-104)% increased Cold Damage", statOrder = { 1371 }, level = 46, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(105-124)% increased Cold Damage", statOrder = { 1371 }, level = 58, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(125-149)% increased Cold Damage", statOrder = { 1371 }, level = 79, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(150-164)% increased Cold Damage", statOrder = { 1371 }, level = 84, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 1, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 1, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrder = { 1382 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrder = { 1382 }, level = 11, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrder = { 1382 }, level = 23, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-54)% increased Lightning Damage", statOrder = { 1382 }, level = 35, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(55-69)% increased Lightning Damage", statOrder = { 1382 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(70-84)% increased Lightning Damage", statOrder = { 1382 }, level = 58, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(85-99)% increased Lightning Damage", statOrder = { 1382 }, level = 64, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(100-109)% increased Lightning Damage", statOrder = { 1382 }, level = 84, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(15-29)% increased Lightning Damage", statOrder = { 1382 }, level = 2, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(30-44)% increased Lightning Damage", statOrder = { 1382 }, level = 11, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-59)% increased Lightning Damage", statOrder = { 1382 }, level = 23, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(60-84)% increased Lightning Damage", statOrder = { 1382 }, level = 35, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(85-104)% increased Lightning Damage", statOrder = { 1382 }, level = 46, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(105-124)% increased Lightning Damage", statOrder = { 1382 }, level = 58, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(125-149)% increased Lightning Damage", statOrder = { 1382 }, level = 79, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(150-164)% increased Lightning Damage", statOrder = { 1382 }, level = 84, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 1, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 1, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "belt", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnWeapons6"] = { type = "Prefix", affix = "Devastating", "(51-59)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(19-34)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(36-51)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(53-61)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(63-71)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(73-85)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1702 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 58, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 74, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 82, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrder = { 1597 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, - ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrder = { 1597 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, - ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrder = { 1597 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, - ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrder = { 1597 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 1601 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 1601 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrder = { 1601 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrder = { 1601 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrder = { 1601 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrder = { 1601 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrder = { 1601 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrder = { 1601 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, - ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-8)% increased Cast Speed", statOrder = { 1451 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(9-12)% increased Cast Speed", statOrder = { 1451 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(13-16)% increased Cast Speed", statOrder = { 1451 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(17-20)% increased Cast Speed", statOrder = { 1451 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(21-24)% increased Cast Speed", statOrder = { 1451 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(25-28)% increased Cast Speed", statOrder = { 1451 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 500, 0, 0, 500, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(29-32)% increased Cast Speed", statOrder = { 1451 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 250, 0, 0, 250, 250, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrder = { 1451 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-13)% increased Cast Speed", statOrder = { 1451 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(14-19)% increased Cast Speed", statOrder = { 1451 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(20-25)% increased Cast Speed", statOrder = { 1451 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(26-31)% increased Cast Speed", statOrder = { 1451 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(32-37)% increased Cast Speed", statOrder = { 1451 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(38-43)% increased Cast Speed", statOrder = { 1451 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(44-49)% increased Cast Speed", statOrder = { 1451 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrder = { 1451 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1412, 1451 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1412, 1451 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, - ["IncreasedCastSpeedRing3"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Cast Speed", statOrder = { 1451 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedRing4"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Cast Speed", statOrder = { 1451 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrder = { 1451 }, level = 10, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, }, - ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1418 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1418 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 1418 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 1418 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 1418 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 1418 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrder = { 1418 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrder = { 1418 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrder = { 1418 }, level = 42, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Attack Speed", statOrder = { 1418 }, level = 58, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Attack Speed", statOrder = { 1418 }, level = 74, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1418 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1395, 1418 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1395, 1418 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, - ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1415 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1415 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrder = { 1415 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1415 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrder = { 1415 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrder = { 1415 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1415 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrder = { 1415 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1415 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(8-9)% increased Attack Speed", statOrder = { 1415 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(10-12)% increased Attack Speed", statOrder = { 1415 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Attack Speed", statOrder = { 1415 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 1438 }, level = 12, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 1438 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 1438 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 1438 }, level = 33, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 1438 }, level = 41, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 1438 }, level = 50, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 1438 }, level = 63, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrder = { 1438 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrder = { 1438 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrder = { 1438 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew1_"] = { type = "Suffix", affix = "of Steadiness", "+(50-100) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(100-165) to Accuracy Rating", statOrder = { 1438 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(166-250) to Accuracy Rating", statOrder = { 1438 }, level = 40, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(251-350) to Accuracy Rating", statOrder = { 1438 }, level = 60, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew5_"] = { type = "Suffix", affix = "of the Ranger", "+(351-480) to Accuracy Rating", statOrder = { 1438 }, level = 75, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(481-600) to Accuracy Rating", statOrder = { 1438 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, - ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Regenerate (1-2) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Regenerate (2.1-8) Life per second", statOrder = { 1579 }, level = 7, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Regenerate (8.1-16) Life per second", statOrder = { 1579 }, level = 19, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Regenerate (16.1-24) Life per second", statOrder = { 1579 }, level = 31, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Regenerate (24.1-32) Life per second", statOrder = { 1579 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Regenerate (32.1-48) Life per second", statOrder = { 1579 }, level = 55, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "Regenerate (48.1-64) Life per second", statOrder = { 1579 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "Regenerate (64.1-96) Life per second", statOrder = { 1579 }, level = 74, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration9"] = { type = "Suffix", affix = "of Recuperation", "Regenerate (96.1-128) Life per second", statOrder = { 1579 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "amulet", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Life-giving", "Regenerate (128.1-152) Life per second", statOrder = { 1579 }, level = 83, group = "LifeRegeneration", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration11____"] = { type = "Suffix", affix = "of Convalescence", "Regenerate (152.1-176) Life per second", statOrder = { 1579 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "Regenerate (2-5) Life per second", statOrder = { 1579 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "Regenerate (30-40) Life per second", statOrder = { 1579 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1579, 1949 }, level = 1, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "Regenerate (0.4-0.5)% of Life per second", statOrder = { 1949 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1949 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "Regenerate (0.8-0.9)% of Life per second", statOrder = { 1949 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "Regenerate (1-1.1)% of Life per second", statOrder = { 1949 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 2, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(20-32)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 2, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(33-45)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(46-58)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(59-72)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(73-85)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(86-105)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 5, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 20, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 30, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 44, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 58, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 72, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 85, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChanceWithBows1_"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 5, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows2_"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 20, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 30, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 44, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows5_"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 58, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 72, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceWithBows7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 85, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 42, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 58, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 74, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrder = { 1630 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrder = { 1630 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrder = { 1630 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrder = { 1630 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrder = { 1630 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrder = { 1630 }, level = 72, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrder = { 1630 }, level = 84, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrder = { 1636 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrder = { 1636 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrder = { 1636 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrder = { 1636 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrder = { 1636 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrder = { 1636 }, level = 72, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrder = { 1636 }, level = 84, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrder = { 1641 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrder = { 1641 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrder = { 1641 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrder = { 1641 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrder = { 1641 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrder = { 1641 }, level = 72, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrder = { 1641 }, level = 84, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1630, 2452 }, level = 1, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1636, 2453 }, level = 1, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1641, 2454 }, level = 1, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, }, - ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1630, 1675 }, level = 1, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1636, 1680 }, level = 1, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1641, 1684 }, level = 1, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, - ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1630, 10320 }, level = 1, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1636, 6075 }, level = 1, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1641, 5918 }, level = 1, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, }, - ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrder = { 1646 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrder = { 1646 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrder = { 1646 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrder = { 1646 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrder = { 1646 }, level = 65, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrder = { 1646 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrder = { 1646, 1953 }, level = 1, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1624 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1624 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1624 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1624 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1624 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1624 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplierWithBows1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 8, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriticalMultiplierWithBows2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 21, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriticalMultiplierWithBows3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 31, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriticalMultiplierWithBows4__"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriticalMultiplierWithBows5_"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 59, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriticalMultiplierWithBows6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 74, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 82, group = "SpellCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "critical" }, }, - ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrder = { 1801 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, - ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrder = { 1801 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, - ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrder = { 1801 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, - ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrder = { 1801 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, - ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrder = { 1801 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, - ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrder = { 1801 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 8, group = "LifeGainPerTarget", weightKey = { "amulet", "ring", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 20, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 30, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 40, group = "LifeGainPerTarget", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants (2-3) Life per Enemy Hit", statOrder = { 1743 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants (4-6) Life per Enemy Hit", statOrder = { 1743 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants (7-10) Life per Enemy Hit", statOrder = { 1743 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants (11-14) Life per Enemy Hit", statOrder = { 1743 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal5"] = { type = "Suffix", affix = "of Regenesis", "Grants (15-18) Life per Enemy Hit", statOrder = { 1743 }, level = 50, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal6"] = { type = "Suffix", affix = "of Renewal", "Grants (19-22) Life per Enemy Hit", statOrder = { 1743 }, level = 60, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal7"] = { type = "Suffix", affix = "of Recuperation", "Grants (23-26) Life per Enemy Hit", statOrder = { 1743 }, level = 70, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetLocal8"] = { type = "Suffix", affix = "of Revitalization", "Grants (27-30) Life per Enemy Hit", statOrder = { 1743 }, level = 80, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, - ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(10-12)% increased Fire Damage", statOrder = { 1362 }, level = 8, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(13-15)% increased Fire Damage", statOrder = { 1362 }, level = 22, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(16-18)% increased Fire Damage", statOrder = { 1362 }, level = 36, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(19-22)% increased Fire Damage", statOrder = { 1362 }, level = 50, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrder = { 1362 }, level = 64, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrder = { 1362 }, level = 76, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Embers", "(18-22)% increased Fire Damage", statOrder = { 1362 }, level = 8, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Coals", "(23-28)% increased Fire Damage", statOrder = { 1362 }, level = 22, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Cinders", "(29-34)% increased Fire Damage", statOrder = { 1362 }, level = 36, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Flames", "(35-39)% increased Fire Damage", statOrder = { 1362 }, level = 50, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Immolation", "(40-44)% increased Fire Damage", statOrder = { 1362 }, level = 64, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Ashes", "(45-50)% increased Fire Damage", statOrder = { 1362 }, level = 76, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrder = { 1362 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrder = { 1362 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrder = { 1362 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrder = { 1362 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrder = { 1362 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrder = { 1362 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(10-12)% increased Cold Damage", statOrder = { 1371 }, level = 12, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(13-15)% increased Cold Damage", statOrder = { 1371 }, level = 24, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(16-18)% increased Cold Damage", statOrder = { 1371 }, level = 36, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(19-22)% increased Cold Damage", statOrder = { 1371 }, level = 50, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrder = { 1371 }, level = 64, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrder = { 1371 }, level = 76, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Snow", "(18-22)% increased Cold Damage", statOrder = { 1371 }, level = 12, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Sleet", "(23-28)% increased Cold Damage", statOrder = { 1371 }, level = 24, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Ice", "(29-34)% increased Cold Damage", statOrder = { 1371 }, level = 36, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Rime", "(35-39)% increased Cold Damage", statOrder = { 1371 }, level = 50, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Floe", "(40-44)% increased Cold Damage", statOrder = { 1371 }, level = 64, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Glaciation", "(45-50)% increased Cold Damage", statOrder = { 1371 }, level = 76, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrder = { 1371 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrder = { 1371 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrder = { 1371 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrder = { 1371 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrder = { 1371 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrder = { 1371 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(10-12)% increased Lightning Damage", statOrder = { 1382 }, level = 10, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(13-15)% increased Lightning Damage", statOrder = { 1382 }, level = 23, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(16-18)% increased Lightning Damage", statOrder = { 1382 }, level = 36, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(19-22)% increased Lightning Damage", statOrder = { 1382 }, level = 50, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrder = { 1382 }, level = 64, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrder = { 1382 }, level = 76, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Sparks", "(18-22)% increased Lightning Damage", statOrder = { 1382 }, level = 10, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Static", "(23-28)% increased Lightning Damage", statOrder = { 1382 }, level = 23, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Electricity", "(29-34)% increased Lightning Damage", statOrder = { 1382 }, level = 36, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Voltage", "(35-39)% increased Lightning Damage", statOrder = { 1382 }, level = 50, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Discharge", "(40-44)% increased Lightning Damage", statOrder = { 1382 }, level = 64, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Arcing", "(45-50)% increased Lightning Damage", statOrder = { 1382 }, level = 76, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrder = { 1382 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (7-10) Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (12-18) Life per Enemy Killed", statOrder = { 1753 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (24-32) Life per Enemy Killed", statOrder = { 1753 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (35-44) Life per Enemy Killed", statOrder = { 1753 }, level = 52, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Feat", "Gain (56-72) Life per Enemy Killed", statOrder = { 1753 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Masterstroke", "Gain (84-110) Life per Enemy Killed", statOrder = { 1753 }, level = 81, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (4-6) Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (7-10) Mana per Enemy Killed", statOrder = { 1768 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (11-15) Mana per Enemy Killed", statOrder = { 1768 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Diffusion", "Gain (16-25) Mana per Enemy Killed", statOrder = { 1768 }, level = 52, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Permeation", "Gain (26-37) Mana per Enemy Killed", statOrder = { 1768 }, level = 66, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Retention", "Gain (38-50) Mana per Enemy Killed", statOrder = { 1768 }, level = 81, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrder = { 1469 }, level = 20, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrder = { 1469 }, level = 30, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrder = { 1469 }, level = 44, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrder = { 1469 }, level = 59, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrder = { 1469 }, level = 73, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, - ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["LocalIncreaseSocketedGemLevel1"] = { type = "Prefix", affix = "Paragon's", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "staff", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0, 0, 0, 1000, 0 }, modTags = { "gem" }, }, - ["LocalIncreaseSocketedGemUnsetRing1"] = { type = "Prefix", affix = "Exemplary", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 2, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["LocalIncreaseSocketedGemUnsetRing2"] = { type = "Prefix", affix = "Quintessential", "+2 to Level of Socketed Gems", statOrder = { 167 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["LocalIncreaseSocketedGemUnsetRing3"] = { type = "Prefix", affix = "Flawless", "+3 to Level of Socketed Gems", statOrder = { 167 }, level = 76, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 250, 0 }, modTags = { "gem" }, }, - ["GlobalSpellGemsLevel1"] = { type = "Prefix", affix = "Magister's", "+1 to Level of all Spell Skill Gems", statOrder = { 1613 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "caster", "gem" }, }, - ["GlobalSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Magister's", "+(1-2) to Level of all Spell Skill Gems", statOrder = { 1613 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "caster", "gem" }, }, - ["LocalIncreaseSocketedFireGemLevel1"] = { type = "Prefix", affix = "Flame Spinner's", "+1 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 2, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["LocalIncreaseSocketedFireGemLevel2_"] = { type = "Prefix", affix = "Lava Caller's", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 55, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["GlobalFireSpellGemsLevel1_"] = { type = "Prefix", affix = "Flame Shaper's", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1615 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, - ["GlobalFireSpellGemsLevelTwoHand1__"] = { type = "Prefix", affix = "Flame Shaper's", "+(1-2) to Level of all Fire Spell Skill Gems", statOrder = { 1615 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, - ["GlobalFireSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Lava Conjurer's", "+3 to Level of all Fire Spell Skill Gems", statOrder = { 1615 }, level = 77, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, - ["LocalIncreaseSocketedColdGemLevel1"] = { type = "Prefix", affix = "Frost Weaver's", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 2, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["LocalIncreaseSocketedColdGemLevel2"] = { type = "Prefix", affix = "Winterbringer's", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 55, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["GlobalColdSpellGemsLevel1_"] = { type = "Prefix", affix = "Frost Singer's", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, - ["GlobalColdSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Frost Singer's", "+(1-2) to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, - ["GlobalColdSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Winter Beckoner's", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 77, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, - ["LocalIncreaseSocketedLightningGemLevel1"] = { type = "Prefix", affix = "Thunder Lord's", "+1 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 2, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["LocalIncreaseSocketedLightningGemLevel2"] = { type = "Prefix", affix = "Tempest King's", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 55, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["GlobalLightningSpellGemsLevel1"] = { type = "Prefix", affix = "Thunderhand's", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1617 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, - ["GlobalLightningSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Thunderhand's", "+(1-2) to Level of all Lightning Spell Skill Gems", statOrder = { 1617 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, - ["GlobalLightningSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Tempest Master's", "+3 to Level of all Lightning Spell Skill Gems", statOrder = { 1617 }, level = 77, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, - ["LocalIncreaseSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Nihilist's", "+1 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 4, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, }, - ["LocalIncreaseSocketedChaosGemLevel2"] = { type = "Prefix", affix = "Anarchist's", "+2 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 55, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, }, - ["GlobalChaosSpellGemsLevel1"] = { type = "Prefix", affix = "Mad Lord's", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1618 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "chaos", "caster", "gem" }, }, - ["GlobalChaosSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Mad Lord's", "+(1-2) to Level of all Chaos Spell Skill Gems", statOrder = { 1618 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos", "caster", "gem" }, }, - ["GlobalChaosSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Splintermind's", "+3 to Level of all Chaos Spell Skill Gems", statOrder = { 1618 }, level = 77, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "caster", "gem" }, }, - ["GlobalPhysicalSpellGemsLevel1"] = { type = "Prefix", affix = "Lithomancer's", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1614 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "physical", "caster", "gem" }, }, - ["GlobalPhysicalSpellGemsLevelTwoHand1_"] = { type = "Prefix", affix = "Lithomancer's", "+(1-2) to Level of all Physical Spell Skill Gems", statOrder = { 1614 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical", "caster", "gem" }, }, - ["GlobalPhysicalSpellGemsLevelTwoHand2_"] = { type = "Prefix", affix = "Tecton's", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1614 }, level = 77, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "caster", "gem" }, }, - ["LocalIncreaseSocketedSpellGemLevelRace"] = { type = "Prefix", affix = "Competitor's", "+1 to Level of Socketed Spell Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, }, - ["LocalIncreaseSocketedMeleeGemLevel1"] = { type = "Prefix", affix = "Combatant's", "+1 to Level of Socketed Melee Gems", statOrder = { 184 }, level = 8, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, }, - ["LocalIncreaseSocketedMeleeGemLevel"] = { type = "Prefix", affix = "Weaponmaster's", "+2 to Level of Socketed Melee Gems", statOrder = { 184 }, level = 63, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, }, - ["LocalIncreaseSocketedBowGemLevel1"] = { type = "Prefix", affix = "Fletcher's", "+1 to Level of Socketed Bow Gems", statOrder = { 183 }, level = 9, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, }, - ["LocalIncreaseSocketedBowGemLevel2"] = { type = "Prefix", affix = "Sharpshooter's", "+2 to Level of Socketed Bow Gems", statOrder = { 183 }, level = 64, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, }, - ["LocalIncreaseSocketedMinionGemLevel1"] = { type = "Prefix", affix = "Reanimator's", "+1 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 14, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["LocalIncreaseSocketedMinionGemLevel2"] = { type = "Prefix", affix = "Summoner's", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["LocalIncreaseSocketedMinionGemLevel3_"] = { type = "Prefix", affix = "Necromancer's", "+3 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 86, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["GlobalIncreaseMinionSpellSkillGemLevel1"] = { type = "Prefix", affix = "Taskmaster's", "+1 to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 14, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "minion", "gem" }, }, - ["GlobalIncreaseMinionSpellSkillGemLevel2"] = { type = "Prefix", affix = "Overseer's", "+2 to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, }, - ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 2029 }, level = 12, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 2029 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 2029 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 2029 }, level = 33, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 2029 }, level = 41, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 2029 }, level = 50, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 2029 }, level = 63, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrder = { 2029 }, level = 80, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrder = { 2029 }, level = 82, group = "LocalAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew1"] = { type = "Suffix", affix = "of Steadiness", "+(80-130) to Accuracy Rating", statOrder = { 2029 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(131-215) to Accuracy Rating", statOrder = { 2029 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(216-325) to Accuracy Rating", statOrder = { 2029 }, level = 40, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(326-455) to Accuracy Rating", statOrder = { 2029 }, level = 60, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew5"] = { type = "Suffix", affix = "of the Ranger", "+(456-624) to Accuracy Rating", statOrder = { 2029 }, level = 75, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(625-780) to Accuracy Rating", statOrder = { 2029 }, level = 85, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrder = { 1843 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AdditionalArrowBow1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 70, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack" }, }, - ["AdditionalArrowBow2_"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 1799 }, level = 86, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, }, - ["AdditionalArrowQuiver1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 70, group = "AdditionalArrows", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, }, - ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased Movement Speed", statOrder = { 1774 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased Movement Speed", statOrder = { 1774 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased Movement Speed", statOrder = { 1774 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased Movement Speed", statOrder = { 1774 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased Movement Speed", statOrder = { 1774 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased Movement Speed", statOrder = { 1774 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, - ["MinionLifeEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased maximum Life", statOrder = { 1771 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEssence3_"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased maximum Life", statOrder = { 1771 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased maximum Life", statOrder = { 1771 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased maximum Life", statOrder = { 1771 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased maximum Life", statOrder = { 1771 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased maximum Life", statOrder = { 1771 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (7-10)% increased Damage", statOrder = { 1978 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions deal (11-14)% increased Damage", statOrder = { 1978 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssence4_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (15-18)% increased Damage", statOrder = { 1978 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions deal (19-22)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (23-26)% increased Damage", statOrder = { 1978 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions deal (27-30)% increased Damage", statOrder = { 1978 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionAccuracyEssence2_"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 10, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyEssence3_"] = { type = "Suffix", affix = "of the Essence", "(16-18)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 26, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyEssence4___"] = { type = "Suffix", affix = "of the Essence", "(19-21)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 42, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyEssence5"] = { type = "Suffix", affix = "of the Essence", "(22-24)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 58, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyEssence6"] = { type = "Suffix", affix = "of the Essence", "(25-27)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 74, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyEssence7_"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 82, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, - ["MinionDamageGlovesEssence2"] = { type = "Prefix", affix = "Essences", "Minions deal (13-15)% increased Damage", statOrder = { 1978 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageGlovesEssence3"] = { type = "Prefix", affix = "Essences", "Minions deal (16-18)% increased Damage", statOrder = { 1978 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageGlovesEssence4"] = { type = "Prefix", affix = "Essences", "Minions deal (19-21)% increased Damage", statOrder = { 1978 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageGlovesEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (22-24)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageGlovesEssence6___"] = { type = "Prefix", affix = "Essences", "Minions deal (25-27)% increased Damage", statOrder = { 1978 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageGlovesEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (28-30)% increased Damage", statOrder = { 1978 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (10-15)% increased Damage", statOrder = { 1978 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (16-21)% increased Damage", statOrder = { 1978 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "of the Essence", "Minions deal (22-27)% increased Damage", statOrder = { 1978 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (28-33)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (34-39)% increased Damage", statOrder = { 1978 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (40-45)% increased Damage", statOrder = { 1978 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 2188 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 2188 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 2188 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 2188 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 2188 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 2188 }, level = 84, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskEffect1_"] = { type = "Prefix", affix = "Distilling", "Flasks applied to you have (4-6)% increased Effect", statOrder = { 2747 }, level = 45, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskEffect2"] = { type = "Prefix", affix = "Condensing", "Flasks applied to you have (7-9)% increased Effect", statOrder = { 2747 }, level = 65, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskEffect3"] = { type = "Prefix", affix = "Magnifying", "Flasks applied to you have (10-12)% increased Effect", statOrder = { 2747 }, level = 85, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, - ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrder = { 2189 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Sipping", "(4-9)% increased Flask Effect Duration", statOrder = { 2192 }, level = 8, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskDuration2"] = { type = "Suffix", affix = "of Tasting", "(10-15)% increased Flask Effect Duration", statOrder = { 2192 }, level = 34, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskDuration3"] = { type = "Suffix", affix = "of Savouring", "(16-21)% increased Flask Effect Duration", statOrder = { 2192 }, level = 50, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskDuration4"] = { type = "Suffix", affix = "of Relishing", "(22-27)% increased Flask Effect Duration", statOrder = { 2192 }, level = 66, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltIncreasedFlaskDuration5_"] = { type = "Suffix", affix = "of Reveling", "(28-33)% increased Flask Effect Duration", statOrder = { 2192 }, level = 82, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 5, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 21, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 35, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 49, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 63, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 77, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, - ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 21, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 35, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 49, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 77, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, - ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrder = { 2254 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-5)% Chance to Block", statOrder = { 2254 }, level = 25, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(6-7)% Chance to Block", statOrder = { 2254 }, level = 40, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance4_"] = { type = "Suffix", affix = "of the Stalwart", "+(8-9)% Chance to Block", statOrder = { 2254 }, level = 55, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance5"] = { type = "Suffix", affix = "of the Buttress", "+(10-11)% Chance to Block", statOrder = { 2254 }, level = 66, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance6"] = { type = "Suffix", affix = "of the Sentinel", "+(12-13)% Chance to Block", statOrder = { 2254 }, level = 77, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalBlockChance7"] = { type = "Suffix", affix = "of the Citadel", "+(14-15)% Chance to Block", statOrder = { 2254 }, level = 86, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 2254 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 2254 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 2254 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 2254 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2469 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["AllDamageMasterVendorItem"] = { type = "Prefix", affix = "Leo's", "(5-15)% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrder = { 1080 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, }, - ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrder = { 1080 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, }, - ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 1438, 2505 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 1438, 2505 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1439, 2505 }, level = 30, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["LightRadiusAndAccuracyNew1"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1439, 2505 }, level = 8, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["LightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1439, 2505 }, level = 15, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 2029, 2505 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 2029, 2505 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1439, 2505 }, level = 30, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { "attack" }, }, - ["LocalLightRadiusAndAccuracyNew1_"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1439, 2505 }, level = 8, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalLightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1439, 2505 }, level = 15, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, - ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+0.1 metres to Weapon Range", statOrder = { 2750 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+0.3 metres to Weapon Range", statOrder = { 2750 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1762 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1762 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1762 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1762 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1762 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1762 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, - ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1763 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, - ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1763 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, - ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1763 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, - ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1763 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, - ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2849 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2850 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2851 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2852 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2853 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2854 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, - ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2855 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, - ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "+3% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "+4% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "+6% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 42, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 58, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 74, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "of the Essence", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 82, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "+3% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "+4% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "+6% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3306 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "chaos", "resistance" }, }, - ["SpellBlockPercentage1__"] = { type = "Suffix", affix = "of the Barrier", "(4-6)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 30, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["SpellBlockPercentage2"] = { type = "Suffix", affix = "of the Bulwark", "(7-9)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 52, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["SpellBlockPercentage3_"] = { type = "Suffix", affix = "of the Barricade", "(10-12)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 71, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["SpellBlockPercentage4_"] = { type = "Suffix", affix = "of the Bastion", "(13-15)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 84, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["LocalIncreasedBlockPercentage1"] = { type = "Prefix", affix = "Steadfast", "(40-45)% increased Chance to Block", statOrder = { 95 }, level = 2, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, - ["LocalIncreasedBlockPercentage2"] = { type = "Prefix", affix = "Unrelenting", "(46-51)% increased Chance to Block", statOrder = { 95 }, level = 15, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, - ["LocalIncreasedBlockPercentage3"] = { type = "Prefix", affix = "Adamant", "(52-57)% increased Chance to Block", statOrder = { 95 }, level = 35, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, - ["LocalIncreasedBlockPercentage4"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Chance to Block", statOrder = { 95 }, level = 48, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, - ["LocalIncreasedBlockPercentage5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Chance to Block", statOrder = { 95 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, - ["LocalIncreasedBlockPercentage6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Chance to Block", statOrder = { 95 }, level = 77, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, - ["LocalIncreasedBlockPercentage7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Chance to Block", statOrder = { 95 }, level = 86, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage1"] = { type = "Prefix", affix = "Mystic", "(4-5)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 16, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage2"] = { type = "Prefix", affix = "Clairvoyant", "(6-7)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 28, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage3"] = { type = "Prefix", affix = "Enigmatic", "(8-9)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 40, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage4"] = { type = "Prefix", affix = "Enlightened", "(10-11)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 55, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage5"] = { type = "Prefix", affix = "Seer's", "(12-13)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 66, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["ShieldSpellBlockPercentage6"] = { type = "Prefix", affix = "Oracle's", "(14-15)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 77, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, - ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "frenzy_charge" }, }, - ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, }, - ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "minion" }, }, - ["SocketedVaalGemsIncreaseCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Level of Socketed Vaal Gems", statOrder = { 193 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { "helmet", "gloves", "boots", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "vaal", "gem" }, }, - ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, - ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, - ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, - ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "speed" }, }, - ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrder = { 2047 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { "staff", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, }, - ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1395 }, level = 20, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1395 }, level = 40, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrder = { 1392 }, level = 20, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrder = { 1392 }, level = 40, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SpellBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { "staff", "amulet", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "block" }, }, - ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, }, - ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrder = { 2044 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, - ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resistance" }, }, - ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2173 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrder = { 1526 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GemLevelCorruption"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "gem" }, }, - ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2445 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 1, group = "MonsterConvertPhysicalDamageToLightning", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 1, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrder = { 1900 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2260 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, }, - ["DualWieldBlockCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "sceptre", "axe", "mace", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "block" }, }, - ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrder = { 1796 }, level = 1, group = "AdditionalArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, }, - ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2527 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2530 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["SupportedByCastOnStunCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast when Stunned", statOrder = { 482 }, level = 35, group = "SupportedByCastOnStun", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByCastOnCritCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast On Critical Strike", statOrder = { 477 }, level = 35, group = "SupportedByCastOnCrit", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByMeleeSplashCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 476 }, level = 20, group = "SupportedByMeleeSplash", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByAddedFireDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 12 Added Fire Damage", statOrder = { 467 }, level = 48, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { "two_hand_weapon", "mace", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByStunCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 6 Stun", statOrder = { 484 }, level = 38, group = "SupportedByStun", weightKey = { "mace", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["SocketedSkillsManaMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 95% Cost & Reservation Multiplier", statOrder = { 535 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "gem" }, }, - ["SupportedByElementalProliferationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Elemental Proliferation", statOrder = { 471 }, level = 12, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByAccuracyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Additional Accuracy", statOrder = { 485 }, level = 48, group = "SupportedByAccuracy", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByMultistrikeCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 486 }, level = 28, group = "SupportedByMultistrike", weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByAreaOfEffectCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Increased Area of Effect", statOrder = { 229 }, level = 24, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByLifeLeechCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 488 }, level = 59, group = "SupportedByLifeLeech", weightKey = { "claw", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByCriticalMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 14 Increased Critical Damage", statOrder = { 490 }, level = 35, group = "SupportedByCriticalMultiplier", weightKey = { "dagger", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByForkCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Fork", statOrder = { 491 }, level = 6, group = "SupportedByFork", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByWeaponElementalDamageCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Elemental Damage with Attacks", statOrder = { 492 }, level = 24, group = "SupportedByWeaponElementalDamage", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["SupportedByFasterCastCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 505 }, level = 24, group = "DisplaySocketedGemsGetFasterCast", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, - ["PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Elements Skill", statOrder = { 650 }, level = 45, group = "PuritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["CriticalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Assassin's Mark Skill", statOrder = { 652 }, level = 31, group = "CriticalWeaknessSkill", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["PurityOfFireSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Fire Skill", statOrder = { 628 }, level = 45, group = "PurityOfFireSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["PurityOfColdSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Ice Skill", statOrder = { 634 }, level = 45, group = "PurityOfColdSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Lightning Skill", statOrder = { 636 }, level = 45, group = "PurityOfLightningSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 7 Wrath Skill", statOrder = { 653 }, level = 28, group = "WrathSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 11 Hatred Skill", statOrder = { 654 }, level = 44, group = "HatredSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["AngerSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Anger Skill", statOrder = { 655 }, level = 56, group = "AngerSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["DeterminationSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Determination Skill", statOrder = { 656 }, level = 61, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Grace Skill", statOrder = { 657 }, level = 61, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Discipline Skill", statOrder = { 659 }, level = 61, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ProjectileWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Sniper's Mark Skill", statOrder = { 663 }, level = 58, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ElementalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Elemental Weakness Skill", statOrder = { 664 }, level = 31, group = "ElementalWeaknessSkill", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["VulnerabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Vulnerability Skill", statOrder = { 666 }, level = 31, group = "VulnerabilitySkill", weightKey = { "axe", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ClaritySkillCorrupted1"] = { type = "Corrupted", affix = "", "Grants Level 4 Clarity Skill", statOrder = { 646 }, level = 19, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["ClaritySkillCorrupted2"] = { type = "Corrupted", affix = "", "Grants Level 8 Clarity Skill", statOrder = { 646 }, level = 32, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, - ["ClaritySkillCorrupted3"] = { type = "Corrupted", affix = "", "Grants Level 12 Clarity Skill", statOrder = { 646 }, level = 47, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ClaritySkillCorrupted4"] = { type = "Corrupted", affix = "", "Grants Level 16 Clarity Skill", statOrder = { 646 }, level = 59, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Frostbite Skill", statOrder = { 642 }, level = 46, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Flammability Skill", statOrder = { 637 }, level = 46, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Conductivity Skill", statOrder = { 641 }, level = 46, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["TemporalChainsSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Temporal Chains Skill", statOrder = { 643 }, level = 40, group = "TemporalChainsSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["HasteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Haste Skill", statOrder = { 644 }, level = 40, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["VitalitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Vitality Skill", statOrder = { 648 }, level = 35, group = "VitalitySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, - ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2854 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, }, - ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2855 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, }, - ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "red_herring", "caster", "speed" }, }, - ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2860 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "vaal", "drop" }, }, - ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrder = { 4319 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrder = { 4319 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, - ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrder = { 4319 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, }, - ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, - ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, - ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, - ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(8-11) to (18-21) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(20-25) to (38-45) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-35) to (55-62) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrder = { 6883 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrder = { 6883 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrder = { 6883 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, }, - ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, - ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, - ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, - ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(11-14) to (21-25) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(24-31) to (46-55) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-39) to (59-69) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, - ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, - ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "(1-3) to (38-39) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(3-7) to (81-85) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(3-8) to (101-106) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2AddedPhysicalDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(3-4) to (6-10) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 1, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2AddedPhysicalDamageToBowAttacksCorrupted2___"] = { type = "Corrupted", affix = "", "(5-7) to (10-14) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 31, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2AddedPhysicalDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(9-12) to (16-19) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 75, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2AddedChaosDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(23-29) to (37-43) Added Chaos Damage with Bow Attacks", statOrder = { 2108 }, level = 81, group = "AddedChaosDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0 }, modTags = { "attack" }, }, - ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Arrows Chain +1 times", statOrder = { 1793 }, level = 80, group = "AdditionalArrowChain", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["V2ChanceToSuppressSpells_"] = { type = "Corrupted", affix = "", "+(8-12)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrder = { 5958 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "damage", "critical" }, }, - ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2173 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrder = { 4318 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, - ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrder = { 1797 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2AngerSkillReducedCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Anger Skill", statOrder = { 655 }, level = 56, group = "AngerSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, - ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2979 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "MonsterBlock", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2860 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "vaal", "drop" }, }, - ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4220 }, level = 60, group = "BleedingImmunity", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrder = { 1844 }, level = 40, group = "CannotBeIgnited", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrder = { 3374 }, level = 40, group = "CannotBePoisoned", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, }, - ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2488, 2496 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5692 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "endurance_charge" }, }, - ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "Melee Hits have (10-15)% chance to Fortify", statOrder = { 2269 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, }, - ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge" }, }, - ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrder = { 1835 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "power_charge", "critical" }, }, - ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "+(6-9)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2ClaritySkillReducedCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Clarity Skill", statOrder = { 646 }, level = 56, group = "ClaritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["V2ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Conductivity Skill", statOrder = { 641 }, level = 56, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 30, group = "CurseOnHitDespair", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2530 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2534 }, level = 30, group = "CurseOnHitEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2527 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2DespairSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Despair Skill", statOrder = { 633 }, level = 56, group = "DespairSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2DeterminationSkillCorrupted__"] = { type = "Corrupted", affix = "", "Grants Level 23 Determination Skill", statOrder = { 656 }, level = 56, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, - ["V2DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Discipline Skill", statOrder = { 659 }, level = 56, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, - ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10177 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10177 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2DualWieldBlockCorrupted"] = { type = "Corrupted", affix = "", "+(8-10)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "claw", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2854 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, - ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2855 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, - ["V2FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Flammability Skill", statOrder = { 637 }, level = 56, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Frostbite Skill", statOrder = { 642 }, level = 56, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrder = { 6706 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, }, - ["V2GemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "gem" }, }, - ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["V2GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Grace Skill", statOrder = { 657 }, level = 56, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, - ["V2HasteSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Haste Skill", statOrder = { 644 }, level = 56, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Hatred Skill", statOrder = { 654 }, level = 56, group = "HatredSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrder = { 717 }, level = 56, group = "MalevolenceSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrder = { 735 }, level = 56, group = "ZealotrySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2PrideSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Pride Skill", statOrder = { 721 }, level = 56, group = "PrideSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, - ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0.5-0.8)% to Critical Strike Chance", statOrder = { 4797 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "attack", "speed" }, }, - ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrder = { 3305 }, level = 60, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "attack", "speed" }, }, - ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrder = { 1882 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "caster", "speed" }, }, - ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrder = { 5471 }, level = 60, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "caster", "speed" }, }, - ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Cold Ailments", statOrder = { 5803 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrder = { 5927 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "critical" }, }, - ["V2IncreasedDamageCorrupted_"] = { type = "Corrupted", affix = "", "(40-50)% increased Damage", statOrder = { 1196 }, level = 1, group = "IncreasedDamage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2IncreasedDamageOverTimeCorrupted_"] = { type = "Corrupted", affix = "", "(50-60)% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DamageOverTime", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrder = { 1900 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "Regenerate (1.6-2)% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrder = { 3191 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, - ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained", statOrder = { 9732 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9733 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrder = { 10007 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "+(0.5-0.8)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "critical" }, }, - ["V2LevelOfSocketedColdGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["V2LevelOfSocketedFireGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["V2LevelOfSocketedLightningGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1395 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1395 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrder = { 1376 }, level = 31, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrder = { 1376 }, level = 84, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (9-13) to (20-23) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (22-27) to (36-44) Cold Damage", statOrder = { 1376 }, level = 31, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (26-32) to (45-55) Cold Damage", statOrder = { 1376 }, level = 84, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrder = { 1367 }, level = 31, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrder = { 1367 }, level = 84, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (12-17) to (23-27) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (27-31) to (39-50) Fire Damage", statOrder = { 1367 }, level = 31, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (31-39) to (52-61) Fire Damage", statOrder = { 1367 }, level = 84, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrder = { 1387 }, level = 31, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrder = { 1387 }, level = 84, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (35-39) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-7) to (73-84) Lightning Damage", statOrder = { 1387 }, level = 31, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-9) to (103-107) Lightning Damage", statOrder = { 1387 }, level = 84, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrder = { 1281 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 1281 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrder = { 1281 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1281 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrder = { 2254 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, - ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1418 }, level = 70, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, - ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(12-15)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1237 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1237 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1237 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1237 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, }, - ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (4-6) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge" }, }, - ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, }, - ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge" }, }, - ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resistance" }, }, - ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["V2PercentageOfBlockAppliesToSpellBlockCorrupted_"] = { type = "Corrupted", affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "BlockingBlocksSpells", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, }, - ["V2SpellBlockPercentageCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block" }, }, - ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 60, group = "PhysicalDamageTakenAsCold", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 60, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos" }, }, - ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrder = { 10800 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack" }, }, - ["V2PurityOfFireSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Fire Skill", statOrder = { 628 }, level = 56, group = "PurityOfFireSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2PurityOfColdSkillCorrupted___"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Ice Skill", statOrder = { 634 }, level = 56, group = "PurityOfColdSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Lightning Skill", statOrder = { 636 }, level = 56, group = "PurityOfLightningSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Purity of Elements Skill", statOrder = { 650 }, level = 56, group = "PuritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, - ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrder = { 2248 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos" }, }, - ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrder = { 3394 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold" }, }, - ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrder = { 2244 }, level = 20, group = "AreaOfEffectDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectile Hits", statOrder = { 2754 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrder = { 2247 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire" }, }, - ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrder = { 3393 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning" }, }, - ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7411 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrder = { 10827 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, - ["V2SocketedSkillsManaMultiplierCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 90% Cost & Reservation Multiplier", statOrder = { 535 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "gem" }, }, - ["V2SupportedByAccuracyCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Additional Accuracy", statOrder = { 485 }, level = 1, group = "SupportedByAccuracy", weightKey = { "mace", "axe", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByBlindCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 475 }, level = 1, group = "SupportedByBlind", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByBloodmagicCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 330 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { "mace", "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "skill", "gem" }, }, - ["V2SupportedByFasterProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 487 }, level = 1, group = "SupportedByProjectileSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByFortifyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 501 }, level = 1, group = "SupportedByFortify", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByLifeGainOnHitCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Life Gain On Hit", statOrder = { 329 }, level = 1, group = "SupportedByLifeGainOnHit", weightKey = { "sword", "mace", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByOnslaughtCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 349 }, level = 1, group = "SupportedByOnslaught", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2SupportedByReducedManaCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 499 }, level = 1, group = "SupportedByReducedMana", weightKey = { "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, - ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["V2WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Wrath Skill", statOrder = { 653 }, level = 45, group = "WrathSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, - ["V2SocketedDurationGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Duration Gems", statOrder = { 180 }, level = 20, group = "IncreaseSocketedDurationGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["V2SocketedAoEGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed AoE Gems", statOrder = { 181 }, level = 20, group = "IncreasedSocketedAoEGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["V2SocketedAuraGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 20, group = "LocalIncreaseSocketedAuraLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "aura", "gem" }, }, - ["V2SocketedCurseGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 189 }, level = 20, group = "LocalIncreaseSocketedCurseLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "gem", "curse" }, }, - ["V2SocketedTrapOrMineGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 192 }, level = 20, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["V2SocketedMinionGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 20, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "minion", "gem" }, }, - ["V2SocketedWarcryGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Warcry Gems", statOrder = { 198 }, level = 20, group = "LocalSocketedWarcryGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["V2SocketedProjectileGemCorrupted_"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Projectile Gems", statOrder = { 182 }, level = 20, group = "LocalIncreaseSocketedProjectileLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, - ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, - ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1601 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, - ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrder = { 1597 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, }, - ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (15-20)% increased Aura Effect", statOrder = { 3366 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (15-20)% increased Aura Effect", statOrder = { 3361 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (15-20)% increased Aura Effect", statOrder = { 3371 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3372 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3373 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3368 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (15-20)% increased Aura Effect", statOrder = { 6166 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (15-20)% increased Aura Effect", statOrder = { 10720 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedAuraEffectPrideCorrupted"] = { type = "Corrupted", affix = "", "Pride has (15-20)% increased Aura Effect", statOrder = { 9709 }, level = 45, group = "IncreasedAuraEffectPrideCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, - ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrder = { 1190, 1191 }, level = 1, group = "IncreasedIntelligenceDexterityCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, - ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Dexterity", statOrder = { 1189, 1190 }, level = 1, group = "IncreasedDexterityStrengthCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, - ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrder = { 1189, 1191 }, level = 1, group = "IncreasedStrengthIntelligenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, - ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["LocalIncreaseSocketedSupportGemLevelIntMasterVendorItem"] = { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrder = { 194 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, - ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 1390 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 1390 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 1390 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "150% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "of the Essence", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 63, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, }, - ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1896 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["SocketedGemQualityStrMasterVendorItem"] = { type = "Prefix", affix = "Haku's", "+(3-6)% to Quality of Socketed Support Gems", statOrder = { 210 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, - ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2486 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 1, group = "CausesBleedingChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 2048 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Kirac's", "Area is inhabited by an additional Invasion Boss", statOrder = { 2625 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2989 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2989 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2989 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2989 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2989 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2989 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2989 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2986 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2986 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2986 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2986 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2986 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2986 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2986 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2986 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2986 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2988 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2988 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2988 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2988 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2988 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2988 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2988 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2988 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2988 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2988 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2988 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, - ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 50, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 60, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of the Remora", "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 20, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(2.6-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 45, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(3.5-4.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(2-2.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(2.3-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence3"] = { type = "Suffix", affix = "of the Essence", "(2.5-2.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(2.9-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(3.3-3.6)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(3.7-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadLocalSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(4.1-4.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of Thirst", "(2.6-3.2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1203 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1203 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1203 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1203 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1203 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2583 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2583 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2583 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2583 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 3277 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 3277 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 3277 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1409 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1409 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1409 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1409 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (24-33) to (48-57) Fire Damage to Spells", statOrder = { 1409 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (31-42) to (64-73) Fire Damage to Spells", statOrder = { 1409 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (40-52) to (79-91) Fire Damage to Spells", statOrder = { 1409 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (49-66) to (98-115) Fire Damage to Spells", statOrder = { 1409 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrder = { 1409 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1410 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1410 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1410 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1410 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (20-26) to (40-46) Cold Damage to Spells", statOrder = { 1410 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (26-35) to (51-60) Cold Damage to Spells", statOrder = { 1410 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (33-43) to (64-75) Cold Damage to Spells", statOrder = { 1410 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (41-54) to (81-93) Cold Damage to Spells", statOrder = { 1410 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1410 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1411 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1411 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1411 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (64-68) Lightning Damage to Spells", statOrder = { 1411 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (84-88) Lightning Damage to Spells", statOrder = { 1411 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (109-115) Lightning Damage to Spells", statOrder = { 1411 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (136-144) Lightning Damage to Spells", statOrder = { 1411 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (170-179) Lightning Damage to Spells", statOrder = { 1411 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1411 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1409 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1409 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1409 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1409 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (32-44) to (65-76) Fire Damage to Spells", statOrder = { 1409 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (42-56) to (85-99) Fire Damage to Spells", statOrder = { 1409 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (53-70) to (107-123) Fire Damage to Spells", statOrder = { 1409 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (66-88) to (132-155) Fire Damage to Spells", statOrder = { 1409 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1409 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1410 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1410 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1410 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1410 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (30-40) to (59-69) Cold Damage to Spells", statOrder = { 1410 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (39-52) to (77-90) Cold Damage to Spells", statOrder = { 1410 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (49-64) to (96-113) Cold Damage to Spells", statOrder = { 1410 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (61-81) to (120-140) Cold Damage to Spells", statOrder = { 1410 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1410 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1411 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1411 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1411 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1411 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1411 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1411 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1411 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1411 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1411 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos Damage", statOrder = { 1395 }, level = 83, group = "LocalChaosDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 400, 250, 250, 600, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos Damage", statOrder = { 1395 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos Damage", statOrder = { 1395 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos Damage", statOrder = { 1395 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos Damage", statOrder = { 1395 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 700, 600, 600, 250, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos Damage", statOrder = { 1395 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos Damage", statOrder = { 1395 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos Damage", statOrder = { 1395 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrder = { 2761 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "drop" }, }, - ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrder = { 4087 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "damage" }, }, - ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9781 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9781 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 9782 }, level = 1, group = "Quiver2AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3374 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 42, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 26, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 42, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 58, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 74, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "(4-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1392 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1392 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1392 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 3175 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 3175 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1390, 3175 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 561 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 555 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, }, - ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 555 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, }, - ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrder = { 562 }, level = 63, group = "SocketedGemsAddPercentageOfPhysicalAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "gem" }, }, - ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 558 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, }, - ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 4317 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, }, - ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second for 4 seconds", statOrder = { 4314 }, level = 63, group = "BurningGroundWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["ReducedDamageFromCriticalStrikesPerEnduranceChargeEssence1"] = { type = "Suffix", affix = "of the Essence", "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge", statOrder = { 1519 }, level = 63, group = "ReducedDamageFromCriticalStrikesPerEnduranceCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1953 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, - ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Strike Chance", statOrder = { 546 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 4279 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "caster", "speed" }, }, - ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 3191 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, }, - ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 4280 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 50% chance to Ignite", statOrder = { 539 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 557 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 4272 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, }, - ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 4273 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, }, - ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9881 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["Strength1"] = { type = "Suffix", affix = "of the Brute", "+(8-12) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength2"] = { type = "Suffix", affix = "of the Wrestler", "+(13-17) to Strength", statOrder = { 1177 }, level = 11, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength3"] = { type = "Suffix", affix = "of the Bear", "+(18-22) to Strength", statOrder = { 1177 }, level = 22, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength4"] = { type = "Suffix", affix = "of the Lion", "+(23-27) to Strength", statOrder = { 1177 }, level = 33, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength5"] = { type = "Suffix", affix = "of the Gorilla", "+(28-32) to Strength", statOrder = { 1177 }, level = 44, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength6"] = { type = "Suffix", affix = "of the Goliath", "+(33-37) to Strength", statOrder = { 1177 }, level = 55, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength7"] = { type = "Suffix", affix = "of the Leviathan", "+(38-42) to Strength", statOrder = { 1177 }, level = 66, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength8"] = { type = "Suffix", affix = "of the Titan", "+(43-50) to Strength", statOrder = { 1177 }, level = 74, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength9"] = { type = "Suffix", affix = "of the Gods", "+(51-55) to Strength", statOrder = { 1177 }, level = 82, group = "Strength", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 333, 500, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Strength10"] = { type = "Suffix", affix = "of the Godslayer", "+(56-60) to Strength", statOrder = { 1177 }, level = 85, group = "Strength", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, }, + ["StrengthEssence7_"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Strength", statOrder = { 1177 }, level = 82, group = "Strength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, + ["Dexterity1"] = { type = "Suffix", affix = "of the Mongoose", "+(8-12) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity2"] = { type = "Suffix", affix = "of the Lynx", "+(13-17) to Dexterity", statOrder = { 1178 }, level = 11, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity3"] = { type = "Suffix", affix = "of the Fox", "+(18-22) to Dexterity", statOrder = { 1178 }, level = 22, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity4"] = { type = "Suffix", affix = "of the Falcon", "+(23-27) to Dexterity", statOrder = { 1178 }, level = 33, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity5"] = { type = "Suffix", affix = "of the Panther", "+(28-32) to Dexterity", statOrder = { 1178 }, level = 44, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity6"] = { type = "Suffix", affix = "of the Leopard", "+(33-37) to Dexterity", statOrder = { 1178 }, level = 55, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity7"] = { type = "Suffix", affix = "of the Jaguar", "+(38-42) to Dexterity", statOrder = { 1178 }, level = 66, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity8"] = { type = "Suffix", affix = "of the Phantom", "+(43-50) to Dexterity", statOrder = { 1178 }, level = 74, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity9"] = { type = "Suffix", affix = "of the Wind", "+(51-55) to Dexterity", statOrder = { 1178 }, level = 82, group = "Dexterity", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 500, 500, 333, 1000, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Dexterity10"] = { type = "Suffix", affix = "of the Blur", "+(56-60) to Dexterity", statOrder = { 1178 }, level = 85, group = "Dexterity", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attribute" }, }, + ["DexterityEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Dexterity", statOrder = { 1178 }, level = 82, group = "Dexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, + ["Intelligence1"] = { type = "Suffix", affix = "of the Pupil", "+(8-12) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence2"] = { type = "Suffix", affix = "of the Student", "+(13-17) to Intelligence", statOrder = { 1179 }, level = 11, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence3"] = { type = "Suffix", affix = "of the Prodigy", "+(18-22) to Intelligence", statOrder = { 1179 }, level = 22, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence4"] = { type = "Suffix", affix = "of the Augur", "+(23-27) to Intelligence", statOrder = { 1179 }, level = 33, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence5"] = { type = "Suffix", affix = "of the Philosopher", "+(28-32) to Intelligence", statOrder = { 1179 }, level = 44, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence6"] = { type = "Suffix", affix = "of the Sage", "+(33-37) to Intelligence", statOrder = { 1179 }, level = 55, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence7"] = { type = "Suffix", affix = "of the Savant", "+(38-42) to Intelligence", statOrder = { 1179 }, level = 66, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence8"] = { type = "Suffix", affix = "of the Virtuoso", "+(43-50) to Intelligence", statOrder = { 1179 }, level = 74, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence9"] = { type = "Suffix", affix = "of the Genius", "+(51-55) to Intelligence", statOrder = { 1179 }, level = 82, group = "Intelligence", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 500, 333, 1000, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["Intelligence10"] = { type = "Suffix", affix = "of the Polymath", "+(56-60) to Intelligence", statOrder = { 1179 }, level = 85, group = "Intelligence", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "attribute" }, }, + ["IntelligenceEssence7"] = { type = "Suffix", affix = "of the Essence", "+(51-58) to Intelligence", statOrder = { 1179 }, level = 82, group = "Intelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attribute" }, }, + ["AllAttributes1"] = { type = "Suffix", affix = "of the Clouds", "+(1-4) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, + ["AllAttributes2"] = { type = "Suffix", affix = "of the Sky", "+(5-8) to all Attributes", statOrder = { 1176 }, level = 11, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, + ["AllAttributes3"] = { type = "Suffix", affix = "of the Meteor", "+(9-12) to all Attributes", statOrder = { 1176 }, level = 22, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, + ["AllAttributes4"] = { type = "Suffix", affix = "of the Comet", "+(13-16) to all Attributes", statOrder = { 1176 }, level = 33, group = "AllAttributes", weightKey = { "amulet", "ring", "default", }, weightVal = { 800, 400, 0 }, modTags = { "attribute" }, }, + ["AllAttributes5"] = { type = "Suffix", affix = "of the Heavens", "+(17-20) to all Attributes", statOrder = { 1176 }, level = 44, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, + ["AllAttributes6"] = { type = "Suffix", affix = "of the Galaxy", "+(21-24) to all Attributes", statOrder = { 1176 }, level = 55, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, + ["AllAttributes7"] = { type = "Suffix", affix = "of the Universe", "+(25-28) to all Attributes", statOrder = { 1176 }, level = 66, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, + ["AllAttributes8"] = { type = "Suffix", affix = "of the Infinite", "+(29-32) to all Attributes", statOrder = { 1176 }, level = 77, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, + ["AllAttributes9_"] = { type = "Suffix", affix = "of the Multiverse", "+(33-35) to all Attributes", statOrder = { 1176 }, level = 85, group = "AllAttributes", weightKey = { "amulet", "default", }, weightVal = { 800, 0 }, modTags = { "attribute" }, }, + ["IncreasedLife0"] = { type = "Prefix", affix = "Hale", "+(3-9) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife1"] = { type = "Prefix", affix = "Healthy", "+(10-24) to maximum Life", statOrder = { 1569 }, level = 5, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife2"] = { type = "Prefix", affix = "Sanguine", "+(25-39) to maximum Life", statOrder = { 1569 }, level = 11, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife3"] = { type = "Prefix", affix = "Stalwart", "+(40-54) to maximum Life", statOrder = { 1569 }, level = 18, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife4"] = { type = "Prefix", affix = "Stout", "+(55-69) to maximum Life", statOrder = { 1569 }, level = 24, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife5"] = { type = "Prefix", affix = "Robust", "+(70-84) to maximum Life", statOrder = { 1569 }, level = 30, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife6"] = { type = "Prefix", affix = "Rotund", "+(85-99) to maximum Life", statOrder = { 1569 }, level = 36, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife7"] = { type = "Prefix", affix = "Virile", "+(100-114) to maximum Life", statOrder = { 1569 }, level = 44, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "default", }, weightVal = { 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife8"] = { type = "Prefix", affix = "Athlete's", "+(115-129) to maximum Life", statOrder = { 1569 }, level = 54, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "ring", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife9"] = { type = "Prefix", affix = "Fecund", "+(130-144) to maximum Life", statOrder = { 1569 }, level = 64, group = "IncreasedLife", weightKey = { "fishing_rod", "boots", "gloves", "weapon", "ring", "amulet", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["IncreasedLife10"] = { type = "Prefix", affix = "Vigorous", "+(145-159) to maximum Life", statOrder = { 1569 }, level = 73, group = "IncreasedLife", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLife11"] = { type = "Prefix", affix = "Rapturous", "+(160-174) to maximum Life", statOrder = { 1569 }, level = 81, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLife12"] = { type = "Prefix", affix = "Prime", "+(175-189) to maximum Life", statOrder = { 1569 }, level = 86, group = "IncreasedLife", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence1_"] = { type = "Prefix", affix = "Essences", "+(5-14) to maximum Life", statOrder = { 1569 }, level = 3, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence2"] = { type = "Prefix", affix = "Essences", "+(15-30) to maximum Life", statOrder = { 1569 }, level = 10, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence3"] = { type = "Prefix", affix = "Essences", "+(31-45) to maximum Life", statOrder = { 1569 }, level = 26, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence4"] = { type = "Prefix", affix = "Essences", "+(46-60) to maximum Life", statOrder = { 1569 }, level = 42, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence5"] = { type = "Prefix", affix = "Essences", "+(61-75) to maximum Life", statOrder = { 1569 }, level = 58, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssence6"] = { type = "Prefix", affix = "Essences", "+(76-90) to maximum Life", statOrder = { 1569 }, level = 74, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssenceChest1"] = { type = "Prefix", affix = "Essences", "+(120-126) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssenceShield1"] = { type = "Prefix", affix = "Essences", "+(110-116) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssenceHelm1"] = { type = "Prefix", affix = "Essences", "+(100-106) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEssenceBootsGloves1"] = { type = "Prefix", affix = "Essences", "+(91-105) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEnhancedMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEnhancedBodyMod___"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedMana1"] = { type = "Prefix", affix = "Beryl", "+(15-19) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana2"] = { type = "Prefix", affix = "Cobalt", "+(20-24) to maximum Mana", statOrder = { 1579 }, level = 11, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana3"] = { type = "Prefix", affix = "Azure", "+(25-29) to maximum Mana", statOrder = { 1579 }, level = 17, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana4"] = { type = "Prefix", affix = "Sapphire", "+(30-34) to maximum Mana", statOrder = { 1579 }, level = 23, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana5"] = { type = "Prefix", affix = "Cerulean", "+(35-39) to maximum Mana", statOrder = { 1579 }, level = 29, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana6"] = { type = "Prefix", affix = "Aqua", "+(40-44) to maximum Mana", statOrder = { 1579 }, level = 35, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana7"] = { type = "Prefix", affix = "Opalescent", "+(45-49) to maximum Mana", statOrder = { 1579 }, level = 42, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana8"] = { type = "Prefix", affix = "Gentian", "+(50-54) to maximum Mana", statOrder = { 1579 }, level = 51, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana9"] = { type = "Prefix", affix = "Chalybeous", "+(55-59) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana10"] = { type = "Prefix", affix = "Mazarine", "+(60-64) to maximum Mana", statOrder = { 1579 }, level = 69, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana11"] = { type = "Prefix", affix = "Blue", "+(65-68) to maximum Mana", statOrder = { 1579 }, level = 75, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana12"] = { type = "Prefix", affix = "Zaffre", "+(69-73) to maximum Mana", statOrder = { 1579 }, level = 81, group = "IncreasedMana", weightKey = { "ring", "amulet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedMana13"] = { type = "Prefix", affix = "Ultramarine", "+(74-78) to maximum Mana", statOrder = { 1579 }, level = 85, group = "IncreasedMana", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEssence7"] = { type = "Prefix", affix = "Essences", "+(69-77) to maximum Mana", statOrder = { 1579 }, level = 82, group = "IncreasedMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1579, 1580 }, level = 1, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedModOnHit_"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1579, 1744 }, level = 1, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, }, + ["IncreasedManaEnhancedModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1579, 1582 }, level = 1, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedModReservation"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1579, 2232 }, level = 1, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1579, 1891 }, level = 1, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon1"] = { type = "Prefix", affix = "Beryl", "+(30-39) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon2__"] = { type = "Prefix", affix = "Cobalt", "+(40-49) to maximum Mana", statOrder = { 1579 }, level = 11, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon3_"] = { type = "Prefix", affix = "Azure", "+(50-59) to maximum Mana", statOrder = { 1579 }, level = 17, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(60-69) to maximum Mana", statOrder = { 1579 }, level = 23, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(70-79) to maximum Mana", statOrder = { 1579 }, level = 29, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon6"] = { type = "Prefix", affix = "Aqua", "+(80-89) to maximum Mana", statOrder = { 1579 }, level = 35, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(90-99) to maximum Mana", statOrder = { 1579 }, level = 42, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon8"] = { type = "Prefix", affix = "Gentian", "+(100-109) to maximum Mana", statOrder = { 1579 }, level = 51, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon9___"] = { type = "Prefix", affix = "Chalybeous", "+(110-119) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(120-129) to maximum Mana", statOrder = { 1579 }, level = 69, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 800, 800, 800, 800, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon11"] = { type = "Prefix", affix = "Blue", "+(130-139) to maximum Mana", statOrder = { 1579 }, level = 75, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 600, 600, 600, 600, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(140-159) to maximum Mana", statOrder = { 1579 }, level = 81, group = "IncreasedMana", weightKey = { "sceptre", "wand", "claw", "dagger", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon1"] = { type = "Prefix", affix = "Beryl", "+(40-49) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon2_"] = { type = "Prefix", affix = "Cobalt", "+(50-59) to maximum Mana", statOrder = { 1579 }, level = 11, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon3_"] = { type = "Prefix", affix = "Azure", "+(60-69) to maximum Mana", statOrder = { 1579 }, level = 17, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon4"] = { type = "Prefix", affix = "Sapphire", "+(70-79) to maximum Mana", statOrder = { 1579 }, level = 23, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon5"] = { type = "Prefix", affix = "Cerulean", "+(80-89) to maximum Mana", statOrder = { 1579 }, level = 29, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon6"] = { type = "Prefix", affix = "Aqua", "+(90-99) to maximum Mana", statOrder = { 1579 }, level = 35, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon7"] = { type = "Prefix", affix = "Opalescent", "+(100-119) to maximum Mana", statOrder = { 1579 }, level = 42, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon8_"] = { type = "Prefix", affix = "Gentian", "+(120-139) to maximum Mana", statOrder = { 1579 }, level = 51, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon9"] = { type = "Prefix", affix = "Chalybeous", "+(140-159) to maximum Mana", statOrder = { 1579 }, level = 60, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon10"] = { type = "Prefix", affix = "Mazarine", "+(160-179) to maximum Mana", statOrder = { 1579 }, level = 69, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon11"] = { type = "Prefix", affix = "Blue", "+(180-199) to maximum Mana", statOrder = { 1579 }, level = 75, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 600, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaTwoHandWeapon12"] = { type = "Prefix", affix = "Zaffre", "+(200-229) to maximum Mana", statOrder = { 1579 }, level = 81, group = "IncreasedMana", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(1-3) to maximum Energy Shield", statOrder = { 1558 }, level = 3, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(4-8) to maximum Energy Shield", statOrder = { 1558 }, level = 11, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(9-12) to maximum Energy Shield", statOrder = { 1558 }, level = 17, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(13-15) to maximum Energy Shield", statOrder = { 1558 }, level = 23, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(16-19) to maximum Energy Shield", statOrder = { 1558 }, level = 29, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(20-22) to maximum Energy Shield", statOrder = { 1558 }, level = 35, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(23-26) to maximum Energy Shield", statOrder = { 1558 }, level = 42, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(27-31) to maximum Energy Shield", statOrder = { 1558 }, level = 50, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(32-37) to maximum Energy Shield", statOrder = { 1558 }, level = 59, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(38-43) to maximum Energy Shield", statOrder = { 1558 }, level = 68, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(44-47) to maximum Energy Shield", statOrder = { 1558 }, level = 74, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShield12"] = { type = "Prefix", affix = "Dazzling", "+(48-51) to maximum Energy Shield", statOrder = { 1558 }, level = 80, group = "EnergyShield", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldEnhancedModES"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "(7-10)% increased maximum Energy Shield", statOrder = { 1558, 1561 }, level = 1, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldEnhancedModRegen_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1558, 2646 }, level = 1, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield1"] = { type = "Prefix", affix = "Shining", "+(3-5) to maximum Energy Shield", statOrder = { 1559 }, level = 3, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield2"] = { type = "Prefix", affix = "Glimmering", "+(6-11) to maximum Energy Shield", statOrder = { 1559 }, level = 11, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield3"] = { type = "Prefix", affix = "Glittering", "+(12-16) to maximum Energy Shield", statOrder = { 1559 }, level = 17, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield4"] = { type = "Prefix", affix = "Glowing", "+(17-23) to maximum Energy Shield", statOrder = { 1559 }, level = 23, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield5"] = { type = "Prefix", affix = "Radiating", "+(24-30) to maximum Energy Shield", statOrder = { 1559 }, level = 29, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield6"] = { type = "Prefix", affix = "Pulsing", "+(31-38) to maximum Energy Shield", statOrder = { 1559 }, level = 35, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield7"] = { type = "Prefix", affix = "Seething", "+(39-49) to maximum Energy Shield", statOrder = { 1559 }, level = 43, group = "LocalEnergyShield", weightKey = { "int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield8"] = { type = "Prefix", affix = "Blazing", "+(50-61) to maximum Energy Shield", statOrder = { 1559 }, level = 51, group = "LocalEnergyShield", weightKey = { "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield9"] = { type = "Prefix", affix = "Scintillating", "+(62-76) to maximum Energy Shield", statOrder = { 1559 }, level = 60, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield10"] = { type = "Prefix", affix = "Incandescent", "+(77-90) to maximum Energy Shield", statOrder = { 1559 }, level = 69, group = "LocalEnergyShield", weightKey = { "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShield11"] = { type = "Prefix", affix = "Resplendent", "+(91-100) to maximum Energy Shield", statOrder = { 1559 }, level = 75, group = "LocalEnergyShield", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceChest5"] = { type = "Prefix", affix = "Essences", "+(62-72) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceChest6"] = { type = "Prefix", affix = "Essences", "+(73-82) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceChest7__"] = { type = "Prefix", affix = "Essences", "+(88-95) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(50-59) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(60-69) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceShield7"] = { type = "Prefix", affix = "Essences", "+(75-85) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves4"] = { type = "Prefix", affix = "Essences", "+(18-26) to maximum Energy Shield", statOrder = { 1559 }, level = 42, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(27-32) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(28-35) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(38-45) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(39-45) to maximum Energy Shield", statOrder = { 1559 }, level = 58, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(46-51) to maximum Energy Shield", statOrder = { 1559 }, level = 74, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(52-58) to maximum Energy Shield", statOrder = { 1559 }, level = 82, group = "LocalEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["AddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks", statOrder = { 1266 }, level = 5, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1266 }, level = 13, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks", statOrder = { 1266 }, level = 19, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 28, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 35, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 44, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 52, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks", statOrder = { 1266 }, level = 64, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks", statOrder = { 1266 }, level = 76, group = "PhysicalDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 0, 1000, 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver1"] = { type = "Prefix", affix = "Glinting", "Adds (1-2) to 3 Physical Damage to Attacks", statOrder = { 1266 }, level = 5, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver2"] = { type = "Prefix", affix = "Burnished", "Adds (3-4) to (6-8) Physical Damage to Attacks", statOrder = { 1266 }, level = 13, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver3"] = { type = "Prefix", affix = "Polished", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 19, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver4"] = { type = "Prefix", affix = "Honed", "Adds (6-9) to (13-16) Physical Damage to Attacks", statOrder = { 1266 }, level = 28, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver5"] = { type = "Prefix", affix = "Gleaming", "Adds (8-11) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 35, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver6"] = { type = "Prefix", affix = "Annealed", "Adds (10-13) to (19-23) Physical Damage to Attacks", statOrder = { 1266 }, level = 44, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (11-16) to (23-26) Physical Damage to Attacks", statOrder = { 1266 }, level = 52, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver8"] = { type = "Prefix", affix = "Tempered", "Adds (14-19) to (28-33) Physical Damage to Attacks", statOrder = { 1266 }, level = 64, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageQuiver9"] = { type = "Prefix", affix = "Flaring", "Adds (17-23) to (34-39) Physical Damage to Attacks", statOrder = { 1266 }, level = 76, group = "PhysicalDamage", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceAmulet7"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks", statOrder = { 1266 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks", statOrder = { 1266 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing7"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (3-5) to (7-8) Physical Damage to Attacks", statOrder = { 1266 }, level = 42, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1266 }, level = 58, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (5-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 74, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 82, group = "PhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks", statOrder = { 1360 }, level = 12, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks", statOrder = { 1360 }, level = 20, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 28, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 35, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks", statOrder = { 1360 }, level = 44, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1360 }, level = 52, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks", statOrder = { 1360 }, level = 64, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks", statOrder = { 1360 }, level = 76, group = "FireDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to 3 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver2"] = { type = "Prefix", affix = "Smouldering", "Adds (5-7) to (10-12) Fire Damage to Attacks", statOrder = { 1360 }, level = 12, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver3"] = { type = "Prefix", affix = "Smoking", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 20, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver4"] = { type = "Prefix", affix = "Burning", "Adds (11-14) to (21-25) Fire Damage to Attacks", statOrder = { 1360 }, level = 28, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver5_"] = { type = "Prefix", affix = "Flaming", "Adds (13-18) to (27-31) Fire Damage to Attacks", statOrder = { 1360 }, level = 35, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver6"] = { type = "Prefix", affix = "Scorching", "Adds (17-22) to (33-38) Fire Damage to Attacks", statOrder = { 1360 }, level = 44, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver7"] = { type = "Prefix", affix = "Incinerating", "Adds (20-27) to (40-47) Fire Damage to Attacks", statOrder = { 1360 }, level = 52, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver8__"] = { type = "Prefix", affix = "Blasting", "Adds (27-35) to (53-62) Fire Damage to Attacks", statOrder = { 1360 }, level = 64, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiver9"] = { type = "Prefix", affix = "Cremating", "Adds (37-50) to (74-87) Fire Damage to Attacks", statOrder = { 1360 }, level = 76, group = "FireDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (41-55) to (81-96) Fire Damage to Attacks", statOrder = { 1360 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks", statOrder = { 1360 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEssenceGlovesQuiver4"] = { type = "Prefix", affix = "Essences", "Adds (5-7) to (11-14) Fire Damage to Attacks", statOrder = { 1360 }, level = 42, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEssenceGlovesQuiver5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (13-17) Fire Damage to Attacks", statOrder = { 1360 }, level = 58, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEssenceGlovesQuiver6"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (16-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 74, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEssenceGlovesQuiver7"] = { type = "Prefix", affix = "Essences", "Adds (9-11) to (17-21) Fire Damage to Attacks", statOrder = { 1360 }, level = 82, group = "FireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks", statOrder = { 1369 }, level = 2, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks", statOrder = { 1369 }, level = 13, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks", statOrder = { 1369 }, level = 21, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 29, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 36, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 45, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1369 }, level = 53, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks", statOrder = { 1369 }, level = 65, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks", statOrder = { 1369 }, level = 77, group = "ColdDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to 3 Cold Damage to Attacks", statOrder = { 1369 }, level = 2, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver2"] = { type = "Prefix", affix = "Chilled", "Adds (5-6) to (9-10) Cold Damage to Attacks", statOrder = { 1369 }, level = 13, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver3_"] = { type = "Prefix", affix = "Icy", "Adds (7-9) to (14-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 21, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver4__"] = { type = "Prefix", affix = "Frigid", "Adds (10-13) to (19-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 29, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver5"] = { type = "Prefix", affix = "Freezing", "Adds (12-16) to (24-28) Cold Damage to Attacks", statOrder = { 1369 }, level = 36, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver6"] = { type = "Prefix", affix = "Frozen", "Adds (15-20) to (30-35) Cold Damage to Attacks", statOrder = { 1369 }, level = 45, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver7"] = { type = "Prefix", affix = "Glaciated", "Adds (18-24) to (36-42) Cold Damage to Attacks", statOrder = { 1369 }, level = 53, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver8"] = { type = "Prefix", affix = "Polar", "Adds (23-32) to (48-55) Cold Damage to Attacks", statOrder = { 1369 }, level = 65, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiver9_"] = { type = "Prefix", affix = "Entombing", "Adds (33-45) to (67-78) Cold Damage to Attacks", statOrder = { 1369 }, level = 77, group = "ColdDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageQuiverEssence10"] = { type = "Prefix", affix = "Essences", "Adds (36-50) to (74-86) Cold Damage to Attacks", statOrder = { 1369 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks", statOrder = { 1369 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (6-7) to (11-14) Cold Damage to Attacks", statOrder = { 1369 }, level = 42, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1369 }, level = 58, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 74, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (8-10) to (14-17) Cold Damage to Attacks", statOrder = { 1369 }, level = 82, group = "ColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1380 }, level = 3, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks", statOrder = { 1380 }, level = 13, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks", statOrder = { 1380 }, level = 22, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 28, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks", statOrder = { 1380 }, level = 35, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks", statOrder = { 1380 }, level = 44, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 52, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks", statOrder = { 1380 }, level = 64, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 100, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks", statOrder = { 1380 }, level = 76, group = "LightningDamage", weightKey = { "ring", "amulet", "gloves", "default", }, weightVal = { 50, 250, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (3-4) Lightning Damage to Attacks", statOrder = { 1380 }, level = 3, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (16-18) Lightning Damage to Attacks", statOrder = { 1380 }, level = 13, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver3"] = { type = "Prefix", affix = "Snapping", "Adds (1-3) to (25-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 22, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver4"] = { type = "Prefix", affix = "Crackling", "Adds (2-3) to (35-40) Lightning Damage to Attacks", statOrder = { 1380 }, level = 28, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver5_"] = { type = "Prefix", affix = "Sparking", "Adds (2-4) to (44-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 35, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver6___"] = { type = "Prefix", affix = "Arcing", "Adds (2-5) to (56-62) Lightning Damage to Attacks", statOrder = { 1380 }, level = 44, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver7"] = { type = "Prefix", affix = "Shocking", "Adds (2-6) to (66-75) Lightning Damage to Attacks", statOrder = { 1380 }, level = 52, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver8"] = { type = "Prefix", affix = "Discharging", "Adds (3-8) to (89-99) Lightning Damage to Attacks", statOrder = { 1380 }, level = 64, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiver9"] = { type = "Prefix", affix = "Electrocuting", "Adds (5-11) to (124-140) Lightning Damage to Attacks", statOrder = { 1380 }, level = 76, group = "LightningDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageQuiverEssence10__"] = { type = "Prefix", affix = "Essences", "Adds (6-13) to (136-155) Lightning Damage to Attacks", statOrder = { 1380 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks", statOrder = { 1380 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssenceQuiverGloves3_"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (21-22) Lightning Damage to Attacks", statOrder = { 1380 }, level = 26, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssenceQuiverGloves4"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (23-24) Lightning Damage to Attacks", statOrder = { 1380 }, level = 42, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssenceQuiverGloves5"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (25-26) Lightning Damage to Attacks", statOrder = { 1380 }, level = 58, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssenceQuiverGloves6"] = { type = "Prefix", affix = "Essences", "Adds (1-2) to (27-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 74, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEssenceQuiverGloves7"] = { type = "Prefix", affix = "Essences", "Adds (1-3) to (29-30) Lightning Damage to Attacks", statOrder = { 1380 }, level = 82, group = "LightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedChaosDamageQuiver1"] = { type = "Prefix", affix = "Malicious", "Adds (27-41) to (55-69) Chaos Damage to Attacks", statOrder = { 1387 }, level = 83, group = "ChaosDamage", weightKey = { "quiver", "default", }, weightVal = { 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedFireDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1360, 1955 }, level = 1, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, + ["AddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1369, 1957 }, level = 1, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, }, + ["AddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1380, 1959 }, level = 1, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, + ["LifeLeech1"] = { type = "Prefix", affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 9, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeech2"] = { type = "Prefix", affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 25, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeech3"] = { type = "Prefix", affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 72, group = "LifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriad1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriad2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriad3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 50, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 60, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 70, group = "LifeLeechPermyriad", weightKey = { "ranged", "amulet", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence3_"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 10, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence3_"] = { type = "Suffix", affix = "of the Essence", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 26, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 42, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 58, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 74, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 82, group = "LifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["ElementalDamagePercent1"] = { type = "Prefix", affix = "Augur's", "(4-8)% increased Elemental Damage", statOrder = { 1980 }, level = 4, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercent2"] = { type = "Prefix", affix = "Auspex's", "(9-16)% increased Elemental Damage", statOrder = { 1980 }, level = 15, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercent3"] = { type = "Prefix", affix = "Druid's", "(17-24)% increased Elemental Damage", statOrder = { 1980 }, level = 30, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercent4"] = { type = "Prefix", affix = "Haruspex's", "(25-29)% increased Elemental Damage", statOrder = { 1980 }, level = 60, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercent5"] = { type = "Prefix", affix = "Harbinger's", "(30-34)% increased Elemental Damage", statOrder = { 1980 }, level = 81, group = "ElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating1"] = { type = "Prefix", affix = "Squire's", "(15-19)% increased Physical Damage", "+(16-20) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 1, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating2"] = { type = "Prefix", affix = "Journeyman's", "(20-24)% increased Physical Damage", "+(21-46) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 11, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating3"] = { type = "Prefix", affix = "Reaver's", "(25-34)% increased Physical Damage", "+(47-72) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 23, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating4"] = { type = "Prefix", affix = "Mercenary's", "(35-44)% increased Physical Damage", "+(73-97) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 35, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating5"] = { type = "Prefix", affix = "Champion's", "(45-54)% increased Physical Damage", "+(98-123) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 46, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating6"] = { type = "Prefix", affix = "Conqueror's", "(55-64)% increased Physical Damage", "+(124-149) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 60, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating7"] = { type = "Prefix", affix = "Emperor's", "(65-74)% increased Physical Damage", "+(150-174) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 73, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAccuracyRating8"] = { type = "Prefix", affix = "Dictator's", "(75-79)% increased Physical Damage", "+(175-200) to Accuracy Rating", statOrder = { 1232, 2024 }, level = 83, group = "LocalIncreasedPhysicalDamagePercentAndAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(40-49)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(50-64)% increased Physical Damage", statOrder = { 1232 }, level = 11, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(65-84)% increased Physical Damage", statOrder = { 1232 }, level = 23, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Vicious", "(85-109)% increased Physical Damage", statOrder = { 1232 }, level = 35, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent5"] = { type = "Prefix", affix = "Bloodthirsty", "(110-134)% increased Physical Damage", statOrder = { 1232 }, level = 46, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent6"] = { type = "Prefix", affix = "Cruel", "(135-154)% increased Physical Damage", statOrder = { 1232 }, level = 60, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent7"] = { type = "Prefix", affix = "Tyrannical", "(155-169)% increased Physical Damage", statOrder = { 1232 }, level = 73, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercent8"] = { type = "Prefix", affix = "Merciless", "(170-179)% increased Physical Damage", statOrder = { 1232 }, level = 83, group = "LocalPhysicalDamagePercent", weightKey = { "weapon", "default", }, weightVal = { 25, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamageEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1232, 1935 }, level = 1, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, + ["IncreasedPhysicalDamagePercent1"] = { type = "Prefix", affix = "Heavy", "(8-12)% increased Global Physical Damage", statOrder = { 1231 }, level = 4, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercent2"] = { type = "Prefix", affix = "Serrated", "(13-17)% increased Global Physical Damage", statOrder = { 1231 }, level = 15, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercent3"] = { type = "Prefix", affix = "Wicked", "(18-22)% increased Global Physical Damage", statOrder = { 1231 }, level = 30, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercent4"] = { type = "Prefix", affix = "Cruel", "(23-28)% increased Global Physical Damage", statOrder = { 1231 }, level = 60, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercent5__"] = { type = "Prefix", affix = "Merciless", "(29-33)% increased Global Physical Damage", statOrder = { 1231 }, level = 81, group = "PhysicalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["LocalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Glinting", "Adds 1 to (2-3) Physical Damage", statOrder = { 1276 }, level = 2, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage2"] = { type = "Prefix", affix = "Burnished", "Adds (4-5) to (8-9) Physical Damage", statOrder = { 1276 }, level = 13, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage3"] = { type = "Prefix", affix = "Polished", "Adds (6-9) to (13-15) Physical Damage", statOrder = { 1276 }, level = 21, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage4"] = { type = "Prefix", affix = "Honed", "Adds (8-12) to (17-20) Physical Damage", statOrder = { 1276 }, level = 29, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage5"] = { type = "Prefix", affix = "Gleaming", "Adds (11-14) to (21-25) Physical Damage", statOrder = { 1276 }, level = 36, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage6"] = { type = "Prefix", affix = "Annealed", "Adds (13-18) to (27-31) Physical Damage", statOrder = { 1276 }, level = 46, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (16-21) to (32-38) Physical Damage", statOrder = { 1276 }, level = 54, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage8"] = { type = "Prefix", affix = "Tempered", "Adds (19-25) to (39-45) Physical Damage", statOrder = { 1276 }, level = 65, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage9"] = { type = "Prefix", affix = "Flaring", "Adds (22-29) to (45-52) Physical Damage", statOrder = { 1276 }, level = 77, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageEssenceNew7"] = { type = "Prefix", affix = "Essences", "Adds (20-26) to (40-47) Physical Damage", statOrder = { 1276 }, level = 82, group = "LocalPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand1"] = { type = "Prefix", affix = "Glinting", "Adds 2 to (4-5) Physical Damage", statOrder = { 1276 }, level = 2, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand2"] = { type = "Prefix", affix = "Burnished", "Adds (6-8) to (12-15) Physical Damage", statOrder = { 1276 }, level = 13, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand3"] = { type = "Prefix", affix = "Polished", "Adds (10-13) to (21-25) Physical Damage", statOrder = { 1276 }, level = 21, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand4"] = { type = "Prefix", affix = "Honed", "Adds (13-17) to (28-32) Physical Damage", statOrder = { 1276 }, level = 29, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand5"] = { type = "Prefix", affix = "Gleaming", "Adds (16-22) to (35-40) Physical Damage", statOrder = { 1276 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand6"] = { type = "Prefix", affix = "Annealed", "Adds (20-28) to (43-51) Physical Damage", statOrder = { 1276 }, level = 46, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 800, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand7"] = { type = "Prefix", affix = "Razor-sharp", "Adds (25-33) to (52-61) Physical Damage", statOrder = { 1276 }, level = 54, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand8"] = { type = "Prefix", affix = "Tempered", "Adds (30-40) to (63-73) Physical Damage", statOrder = { 1276 }, level = 65, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHand9"] = { type = "Prefix", affix = "Flaring", "Adds (34-47) to (72-84) Physical Damage", statOrder = { 1276 }, level = 77, group = "LocalPhysicalDamageTwoHanded", weightKey = { "two_hand_weapon", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageTwoHandEssenceNew7__"] = { type = "Prefix", affix = "Essences", "Adds (31-42) to (65-75) Physical Damage", statOrder = { 1276 }, level = 82, group = "LocalPhysicalDamageTwoHanded", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(11-28)% increased Energy Shield", statOrder = { 1560 }, level = 3, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(27-42)% increased Energy Shield", statOrder = { 1560 }, level = 18, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(43-55)% increased Energy Shield", statOrder = { 1560 }, level = 30, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(56-67)% increased Energy Shield", statOrder = { 1560 }, level = 44, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(68-79)% increased Energy Shield", statOrder = { 1560 }, level = 60, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(80-91)% increased Energy Shield", statOrder = { 1560 }, level = 72, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent7_"] = { type = "Prefix", affix = "Unassailable", "(92-100)% increased Energy Shield", statOrder = { 1560 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent8"] = { type = "Prefix", affix = "Unfaltering", "(101-110)% increased Energy Shield", statOrder = { 1560 }, level = 86, group = "LocalEnergyShieldPercent", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(15-26)% increased Armour", statOrder = { 1542 }, level = 3, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(27-42)% increased Armour", statOrder = { 1542 }, level = 17, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(43-55)% increased Armour", statOrder = { 1542 }, level = 29, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(56-67)% increased Armour", statOrder = { 1542 }, level = 42, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(68-79)% increased Armour", statOrder = { 1542 }, level = 60, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(80-91)% increased Armour", statOrder = { 1542 }, level = 72, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(92-100)% increased Armour", statOrder = { 1542 }, level = 84, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercent8_"] = { type = "Prefix", affix = "Impenetrable", "(101-110)% increased Armour", statOrder = { 1542 }, level = 86, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "dex_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Shade's", "(15-26)% increased Evasion Rating", statOrder = { 1550 }, level = 3, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Ghost's", "(27-42)% increased Evasion Rating", statOrder = { 1550 }, level = 19, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Spectre's", "(43-55)% increased Evasion Rating", statOrder = { 1550 }, level = 30, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Wraith's", "(56-67)% increased Evasion Rating", statOrder = { 1550 }, level = 44, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Phantasm's", "(68-79)% increased Evasion Rating", statOrder = { 1550 }, level = 60, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Nightmare's", "(80-91)% increased Evasion Rating", statOrder = { 1550 }, level = 72, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Mirage's", "(92-100)% increased Evasion Rating", statOrder = { 1550 }, level = 84, group = "LocalEvasionRatingIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercent8"] = { type = "Prefix", affix = "Illusion's", "(101-110)% increased Evasion Rating", statOrder = { 1550 }, level = 86, group = "LocalEvasionRatingIncreasePercent", weightKey = { "int_armour", "str_dex_armour", "str_int_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedArmourAndEnergyShield1"] = { type = "Prefix", affix = "Infixed", "(15-26)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 3, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield2"] = { type = "Prefix", affix = "Ingrained", "(27-42)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 19, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield3"] = { type = "Prefix", affix = "Instilled", "(43-55)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 30, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield4"] = { type = "Prefix", affix = "Infused", "(56-67)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 44, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield5"] = { type = "Prefix", affix = "Inculcated", "(68-79)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 60, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield6"] = { type = "Prefix", affix = "Interpolated", "(80-91)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 72, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield7"] = { type = "Prefix", affix = "Inspired", "(92-100)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 84, group = "LocalArmourAndEnergyShield", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShield8"] = { type = "Prefix", affix = "Interpermeated", "(101-110)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 86, group = "LocalArmourAndEnergyShield", weightKey = { "int_armour", "str_dex_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEvasion1"] = { type = "Prefix", affix = "Scrapper's", "(15-26)% increased Armour and Evasion", statOrder = { 1553 }, level = 3, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion2"] = { type = "Prefix", affix = "Brawler's", "(27-42)% increased Armour and Evasion", statOrder = { 1553 }, level = 19, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion3"] = { type = "Prefix", affix = "Fencer's", "(43-55)% increased Armour and Evasion", statOrder = { 1553 }, level = 30, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion4"] = { type = "Prefix", affix = "Gladiator's", "(56-67)% increased Armour and Evasion", statOrder = { 1553 }, level = 44, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion5"] = { type = "Prefix", affix = "Duelist's", "(68-79)% increased Armour and Evasion", statOrder = { 1553 }, level = 60, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion6"] = { type = "Prefix", affix = "Hero's", "(80-91)% increased Armour and Evasion", statOrder = { 1553 }, level = 72, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion7"] = { type = "Prefix", affix = "Legend's", "(92-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 84, group = "LocalArmourAndEvasion", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasion8"] = { type = "Prefix", affix = "Victor's", "(101-110)% increased Armour and Evasion", statOrder = { 1553 }, level = 86, group = "LocalArmourAndEvasion", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "dex_int_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedEvasionAndEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(15-26)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 3, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(27-42)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 19, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(43-55)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 30, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(56-67)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 44, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield5_"] = { type = "Prefix", affix = "Evanescent", "(68-79)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 60, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(80-91)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 72, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield7"] = { type = "Prefix", affix = "Illusory", "(92-100)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 84, group = "LocalEvasionAndEnergyShield", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShield8"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 86, group = "LocalEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "str_dex_int_armour", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield1"] = { type = "Prefix", affix = "Shadowy", "(27-42)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 3, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield2"] = { type = "Prefix", affix = "Ethereal", "(43-55)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield3"] = { type = "Prefix", affix = "Unworldly", "(56-67)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield4"] = { type = "Prefix", affix = "Ephemeral", "(68-79)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield5"] = { type = "Prefix", affix = "Evanescent", "(80-91)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield6"] = { type = "Prefix", affix = "Unreal", "(92-100)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 72, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShield7__"] = { type = "Prefix", affix = "Incorporeal", "(101-110)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 85, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "int_armour", "str_int_armour", "dex_armour", "str_armour", "str_dex_armour", "dex_int_armour", "body_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 3, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 18, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 30, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 44, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 60, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 78, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { "int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour", "(6-7)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour", "(8-9)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 17, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour", "(10-11)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 29, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour", "(12-13)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 42, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour", "(14-15)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 60, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour", "(16-17)% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 78, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { "str_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance1"] = { type = "Prefix", affix = "Reliable", "(25-30)% increased Armour", "+2% Chance to Block", statOrder = { 1542, 2249 }, level = 45, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndAdditionalBlockChance2"] = { type = "Prefix", affix = "Unfailing", "(31-36)% increased Armour", "+3% Chance to Block", statOrder = { 1542, 2249 }, level = 78, group = "LocalPhysicalDamageReductionRatingPercentAndBlockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "defences", "armour" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion Rating", "(6-7)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 2, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion Rating", "(8-9)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 19, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion Rating", "(10-11)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 30, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion Rating", "(12-13)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 44, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion Rating", "(14-15)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 60, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion Rating", "(16-17)% increased Stun and Block Recovery", statOrder = { 1550, 1902 }, level = 78, group = "LocalEvasionRatingAndStunRecoveryIncreasePercent", weightKey = { "dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Pixie's", "(6-13)% increased Armour and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 2, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Gremlin's", "(14-20)% increased Armour and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 19, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Boggart's", "(21-26)% increased Armour and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 30, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Naga's", "(27-32)% increased Armour and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 44, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Djinn's", "(33-38)% increased Armour and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 60, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Seraphim's", "(39-42)% increased Armour and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1552, 1902 }, level = 78, group = "LocalArmourAndEnergyShieldAndStunRecovery", weightKey = { "str_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery1"] = { type = "Prefix", affix = "Beetle's", "(6-13)% increased Armour and Evasion", "(6-7)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 2, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery2"] = { type = "Prefix", affix = "Crab's", "(14-20)% increased Armour and Evasion", "(8-9)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 19, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery3"] = { type = "Prefix", affix = "Armadillo's", "(21-26)% increased Armour and Evasion", "(10-11)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 30, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery4"] = { type = "Prefix", affix = "Rhino's", "(27-32)% increased Armour and Evasion", "(12-13)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 44, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery5"] = { type = "Prefix", affix = "Elephant's", "(33-38)% increased Armour and Evasion", "(14-15)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 60, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionAndStunRecovery6"] = { type = "Prefix", affix = "Mammoth's", "(39-42)% increased Armour and Evasion", "(16-17)% increased Stun and Block Recovery", statOrder = { 1553, 1902 }, level = 78, group = "LocalArmourAndEvasionAndStunRecovery", weightKey = { "str_dex_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 2, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 19, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 30, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 44, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 60, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldAndStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1554, 1902 }, level = 78, group = "LocalEvasionAndEnergyShieldAndStunRecovery", weightKey = { "dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery1"] = { type = "Prefix", affix = "Mosquito's", "(6-13)% increased Armour, Evasion and Energy Shield", "(6-7)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 2, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery2"] = { type = "Prefix", affix = "Moth's", "(14-20)% increased Armour, Evasion and Energy Shield", "(8-9)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 19, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery3"] = { type = "Prefix", affix = "Butterfly's", "(21-26)% increased Armour, Evasion and Energy Shield", "(10-11)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 30, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery4"] = { type = "Prefix", affix = "Wasp's", "(27-32)% increased Armour, Evasion and Energy Shield", "(12-13)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 44, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery5"] = { type = "Prefix", affix = "Dragonfly's", "(33-38)% increased Armour, Evasion and Energy Shield", "(14-15)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 60, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldStunRecovery6"] = { type = "Prefix", affix = "Hummingbird's", "(39-42)% increased Armour, Evasion and Energy Shield", "(16-17)% increased Stun and Block Recovery", statOrder = { 1555, 1902 }, level = 78, group = "LocalArmourAndEvasionAndEnergyShieldAndStunRecovery", weightKey = { "str_dex_int_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1362 }, level = 11, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1362 }, level = 18, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1362 }, level = 26, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (24-33) to (49-57) Fire Damage", statOrder = { 1362 }, level = 33, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (34-46) to (68-80) Fire Damage", statOrder = { 1362 }, level = 42, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (46-62) to (93-107) Fire Damage", statOrder = { 1362 }, level = 51, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (59-81) to (120-140) Fire Damage", statOrder = { 1362 }, level = 62, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (74-101) to (150-175) Fire Damage", statOrder = { 1362 }, level = 74, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamage10_"] = { type = "Prefix", affix = "Carbonising", "Adds (89-121) to (180-210) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (80-109) to (162-189) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "Adds (59-79) to (118-138) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1362, 3762 }, level = 1, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1362 }, level = 11, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1362 }, level = 18, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1362 }, level = 26, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1362 }, level = 33, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1362 }, level = 42, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1362 }, level = 51, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand8_"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1362 }, level = 62, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1362 }, level = 74, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHand10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged1"] = { type = "Prefix", affix = "Heated", "Adds (3-5) to (6-7) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged2"] = { type = "Prefix", affix = "Smouldering", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1362 }, level = 11, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged3"] = { type = "Prefix", affix = "Smoking", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1362 }, level = 18, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged4"] = { type = "Prefix", affix = "Burning", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1362 }, level = 26, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged5"] = { type = "Prefix", affix = "Flaming", "Adds (45-61) to (91-106) Fire Damage", statOrder = { 1362 }, level = 33, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged6"] = { type = "Prefix", affix = "Scorching", "Adds (63-85) to (128-148) Fire Damage", statOrder = { 1362 }, level = 42, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged7"] = { type = "Prefix", affix = "Incinerating", "Adds (85-115) to (172-200) Fire Damage", statOrder = { 1362 }, level = 51, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged8"] = { type = "Prefix", affix = "Blasting", "Adds (110-150) to (223-260) Fire Damage", statOrder = { 1362 }, level = 62, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged9_"] = { type = "Prefix", affix = "Cremating", "Adds (137-188) to (279-325) Fire Damage", statOrder = { 1362 }, level = 74, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageRanged10"] = { type = "Prefix", affix = "Carbonising", "Adds (165-225) to (335-390) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (149-203) to (302-351) Fire Damage", statOrder = { 1362 }, level = 82, group = "LocalFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (109-147) to (220-256) Fire Damage", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 1362, 3762 }, level = 1, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage", statOrder = { 1371 }, level = 2, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1371 }, level = 12, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1371 }, level = 27, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (22-30) to (44-51) Cold Damage", statOrder = { 1371 }, level = 34, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage6"] = { type = "Prefix", affix = "Frozen", "Adds (31-42) to (62-71) Cold Damage", statOrder = { 1371 }, level = 43, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (41-57) to (83-97) Cold Damage", statOrder = { 1371 }, level = 52, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (54-74) to (108-126) Cold Damage", statOrder = { 1371 }, level = 63, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (68-92) to (136-157) Cold Damage", statOrder = { 1371 }, level = 75, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamage10__"] = { type = "Prefix", affix = "Crystalising", "Adds (81-111) to (163-189) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (73-100) to (147-170) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (53-72) to (107-124) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1371, 3763 }, level = 1, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1371 }, level = 2, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1371 }, level = 12, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1371 }, level = 27, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1371 }, level = 34, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1371 }, level = 43, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1371 }, level = 52, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1371 }, level = 63, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1371 }, level = 75, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHand10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged1"] = { type = "Prefix", affix = "Frosted", "Adds (2-3) to (6-7) Cold Damage", statOrder = { 1371 }, level = 2, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged2"] = { type = "Prefix", affix = "Chilled", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1371 }, level = 12, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged3"] = { type = "Prefix", affix = "Icy", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged4"] = { type = "Prefix", affix = "Frigid", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1371 }, level = 27, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged5"] = { type = "Prefix", affix = "Freezing", "Adds (41-55) to (81-95) Cold Damage", statOrder = { 1371 }, level = 34, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged6"] = { type = "Prefix", affix = "Frozen", "Adds (57-77) to (114-132) Cold Damage", statOrder = { 1371 }, level = 43, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged7"] = { type = "Prefix", affix = "Glaciated", "Adds (77-104) to (154-178) Cold Damage", statOrder = { 1371 }, level = 52, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged8"] = { type = "Prefix", affix = "Polar", "Adds (99-136) to (200-232) Cold Damage", statOrder = { 1371 }, level = 63, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged9"] = { type = "Prefix", affix = "Entombing", "Adds (124-170) to (250-290) Cold Damage", statOrder = { 1371 }, level = 75, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageRanged10"] = { type = "Prefix", affix = "Crystalising", "Adds (149-204) to (300-348) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (134-184) to (270-313) Cold Damage", statOrder = { 1371 }, level = 82, group = "LocalColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (100-132) to (197-230) Cold Damage", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 1371, 3763 }, level = 1, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (5-6) Lightning Damage", statOrder = { 1382 }, level = 3, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1382 }, level = 13, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1382 }, level = 19, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (4-5) to (80-94) Lightning Damage", statOrder = { 1382 }, level = 34, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (5-8) to (112-131) Lightning Damage", statOrder = { 1382 }, level = 42, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (8-10) to (152-176) Lightning Damage", statOrder = { 1382 }, level = 51, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 2000, 1200, 1200, 800, 500, 500, 1200, 1200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (10-14) to (197-229) Lightning Damage", statOrder = { 1382 }, level = 63, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 1600, 960, 960, 640, 400, 400, 960, 960, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (13-17) to (247-286) Lightning Damage", statOrder = { 1382 }, level = 74, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 700, 420, 420, 280, 175, 175, 420, 420, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamage10"] = { type = "Prefix", affix = "Vapourising", "Adds (15-21) to (296-344) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 180, 108, 108, 72, 45, 45, 108, 108, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (13-19) to (266-310) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-17) to (198-224) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 1, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand1_"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1382 }, level = 3, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1382 }, level = 13, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1382 }, level = 19, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1382 }, level = 34, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1382 }, level = 42, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1382 }, level = 51, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1400, 1200, 1200, 500, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1382 }, level = 63, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 1120, 960, 960, 400, 480, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1382 }, level = 74, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 490, 420, 420, 175, 210, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHand10"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 126, 108, 108, 45, 54, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged1"] = { type = "Prefix", affix = "Humming", "Adds 2 to (10-11) Lightning Damage", statOrder = { 1382 }, level = 3, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged2"] = { type = "Prefix", affix = "Buzzing", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1382 }, level = 13, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged3___"] = { type = "Prefix", affix = "Snapping", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1382 }, level = 19, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged4"] = { type = "Prefix", affix = "Crackling", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged5"] = { type = "Prefix", affix = "Sparking", "Adds (8-10) to (148-173) Lightning Damage", statOrder = { 1382 }, level = 34, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged6_"] = { type = "Prefix", affix = "Arcing", "Adds (11-14) to (208-242) Lightning Damage", statOrder = { 1382 }, level = 42, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged7"] = { type = "Prefix", affix = "Shocking", "Adds (14-20) to (281-327) Lightning Damage", statOrder = { 1382 }, level = 51, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged8"] = { type = "Prefix", affix = "Discharging", "Adds (19-25) to (366-425) Lightning Damage", statOrder = { 1382 }, level = 63, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged9"] = { type = "Prefix", affix = "Electrocuting", "Adds (23-32) to (458-531) Lightning Damage", statOrder = { 1382 }, level = 74, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageRanged10_"] = { type = "Prefix", affix = "Vapourising", "Adds (28-38) to (549-638) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamageRanged", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (25-34) to (494-575) Lightning Damage", statOrder = { 1382 }, level = 82, group = "LocalLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageEnhancedTwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (12-31) to (367-415) Lightning Damage", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 1, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent1"] = { type = "Prefix", affix = "Reinforced", "(4-8)% increased Armour", statOrder = { 1541 }, level = 2, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent2"] = { type = "Prefix", affix = "Layered", "(9-13)% increased Armour", statOrder = { 1541 }, level = 18, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent3"] = { type = "Prefix", affix = "Lobstered", "(14-18)% increased Armour", statOrder = { 1541 }, level = 30, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent4"] = { type = "Prefix", affix = "Buttressed", "(19-23)% increased Armour", statOrder = { 1541 }, level = 42, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent5"] = { type = "Prefix", affix = "Thickened", "(24-28)% increased Armour", statOrder = { 1541 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent6"] = { type = "Prefix", affix = "Girded", "(29-32)% increased Armour", statOrder = { 1541 }, level = 70, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercent7"] = { type = "Prefix", affix = "Impregnable", "(33-36)% increased Armour", statOrder = { 1541 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Armour", statOrder = { 1541 }, level = 77, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Armour", statOrder = { 1541 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedEvasionRatingPercent1"] = { type = "Prefix", affix = "Agile", "(4-8)% increased Evasion Rating", statOrder = { 1549 }, level = 2, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent2"] = { type = "Prefix", affix = "Dancer's", "(9-13)% increased Evasion Rating", statOrder = { 1549 }, level = 19, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent3"] = { type = "Prefix", affix = "Acrobat's", "(14-18)% increased Evasion Rating", statOrder = { 1549 }, level = 30, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent4"] = { type = "Prefix", affix = "Fleet", "(19-23)% increased Evasion Rating", statOrder = { 1549 }, level = 42, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent5"] = { type = "Prefix", affix = "Blurred", "(24-28)% increased Evasion Rating", statOrder = { 1549 }, level = 56, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent6"] = { type = "Prefix", affix = "Phased", "(29-32)% increased Evasion Rating", statOrder = { 1549 }, level = 70, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercent7"] = { type = "Prefix", affix = "Vaporous", "(33-36)% increased Evasion Rating", statOrder = { 1549 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercentEssence6"] = { type = "Prefix", affix = "Essences", "(29-31)% increased Evasion Rating", statOrder = { 1549 }, level = 77, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercentEssence7"] = { type = "Prefix", affix = "Essences", "(32-33)% increased Evasion Rating", statOrder = { 1549 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEnergyShieldPercent1"] = { type = "Prefix", affix = "Protective", "(2-4)% increased maximum Energy Shield", statOrder = { 1561 }, level = 3, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent2"] = { type = "Prefix", affix = "Strong-Willed", "(5-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 18, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent3"] = { type = "Prefix", affix = "Resolute", "(8-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 30, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent4"] = { type = "Prefix", affix = "Fearless", "(11-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 42, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent5"] = { type = "Prefix", affix = "Dauntless", "(14-16)% increased maximum Energy Shield", statOrder = { 1561 }, level = 56, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent6"] = { type = "Prefix", affix = "Indomitable", "(17-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 70, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercent7"] = { type = "Prefix", affix = "Unassailable", "(20-22)% increased maximum Energy Shield", statOrder = { 1561 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentEssence1"] = { type = "Prefix", affix = "Essences", "(4-6)% increased maximum Energy Shield", statOrder = { 1561 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentEssence4"] = { type = "Prefix", affix = "Essences", "(11-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentEssence5"] = { type = "Prefix", affix = "Essences", "(14-16)% increased maximum Energy Shield", statOrder = { 1561 }, level = 10, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentEssence6"] = { type = "Prefix", affix = "Essences", "(17-18)% increased maximum Energy Shield", statOrder = { 1561 }, level = 77, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentEssence7_"] = { type = "Prefix", affix = "Essences", "(18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(3-10) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(11-35) to Evasion Rating", statOrder = { 1544 }, level = 18, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-60) to Evasion Rating", statOrder = { 1544 }, level = 29, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(61-80) to Evasion Rating", statOrder = { 1544 }, level = 42, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(81-120) to Evasion Rating", statOrder = { 1544 }, level = 58, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(121-150) to Evasion Rating", statOrder = { 1544 }, level = 72, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRating7"] = { type = "Prefix", affix = "Vaporous", "+(151-170) to Evasion Rating", statOrder = { 1544 }, level = 84, group = "EvasionRating", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(151-180) to Evasion Rating", statOrder = { 1544 }, level = 82, group = "EvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating1"] = { type = "Prefix", affix = "Agile", "+(6-12) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating2"] = { type = "Prefix", affix = "Dancer's", "+(13-35) to Evasion Rating", statOrder = { 1548 }, level = 11, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating3"] = { type = "Prefix", affix = "Acrobat's", "+(36-63) to Evasion Rating", statOrder = { 1548 }, level = 17, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating4"] = { type = "Prefix", affix = "Fleet", "+(64-82) to Evasion Rating", statOrder = { 1548 }, level = 23, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating5"] = { type = "Prefix", affix = "Blurred", "+(83-101) to Evasion Rating", statOrder = { 1548 }, level = 29, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating6"] = { type = "Prefix", affix = "Phased", "+(102-120) to Evasion Rating", statOrder = { 1548 }, level = 35, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating7_"] = { type = "Prefix", affix = "Vaporous", "+(121-150) to Evasion Rating", statOrder = { 1548 }, level = 43, group = "LocalEvasionRating", weightKey = { "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating8"] = { type = "Prefix", affix = "Elusory", "+(151-200) to Evasion Rating", statOrder = { 1548 }, level = 51, group = "LocalEvasionRating", weightKey = { "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating9___"] = { type = "Prefix", affix = "Adroit", "+(201-300) to Evasion Rating", statOrder = { 1548 }, level = 60, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating10"] = { type = "Prefix", affix = "Lissome", "+(301-400) to Evasion Rating", statOrder = { 1548 }, level = 69, group = "LocalEvasionRating", weightKey = { "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRating11"] = { type = "Prefix", affix = "Fugitive", "+(401-500) to Evasion Rating", statOrder = { 1548 }, level = 77, group = "LocalEvasionRating", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceHelm4__"] = { type = "Prefix", affix = "Essences", "+(40-49) to Evasion Rating", statOrder = { 1548 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Evasion Rating", statOrder = { 1548 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceHelm6"] = { type = "Prefix", affix = "Essences", "+(141-160) to Evasion Rating", statOrder = { 1548 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceHelm7"] = { type = "Prefix", affix = "Essences", "+(161-180) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots3"] = { type = "Prefix", affix = "Essences", "+(21-25) to Evasion Rating", statOrder = { 1548 }, level = 26, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots4"] = { type = "Prefix", affix = "Essences", "+(81-90) to Evasion Rating", statOrder = { 1548 }, level = 42, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Evasion Rating", statOrder = { 1548 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Evasion Rating", statOrder = { 1548 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceGlovesBoots7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceShield5"] = { type = "Prefix", affix = "Essences", "+(151-225) to Evasion Rating", statOrder = { 1548 }, level = 58, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Evasion Rating", statOrder = { 1548 }, level = 74, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Evasion Rating", statOrder = { 1548 }, level = 82, group = "LocalEvasionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["IncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(3-10) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(11-35) to Armour", statOrder = { 1539 }, level = 18, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-60) to Armour", statOrder = { 1539 }, level = 30, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(61-138) to Armour", statOrder = { 1539 }, level = 44, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(139-322) to Armour", statOrder = { 1539 }, level = 57, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(323-400) to Armour", statOrder = { 1539 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating7"] = { type = "Prefix", affix = "Encased", "+(401-460) to Armour", statOrder = { 1539 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRating8_"] = { type = "Prefix", affix = "Enveloped", "+(461-540) to Armour", statOrder = { 1539 }, level = 86, group = "PhysicalDamageReductionRating", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(481-520) to Armour", statOrder = { 1539 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing5"] = { type = "Prefix", affix = "Essences", "+(80-120) to Armour", statOrder = { 1539 }, level = 58, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing6"] = { type = "Prefix", affix = "Essences", "+(121-200) to Armour", statOrder = { 1539 }, level = 74, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingEssenceRing7"] = { type = "Prefix", affix = "Essences", "+(201-300) to Armour", statOrder = { 1539 }, level = 82, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Lacquered", "+(6-12) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating2"] = { type = "Prefix", affix = "Studded", "+(13-35) to Armour", statOrder = { 1540 }, level = 11, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating3"] = { type = "Prefix", affix = "Ribbed", "+(36-63) to Armour", statOrder = { 1540 }, level = 17, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating4"] = { type = "Prefix", affix = "Fortified", "+(64-82) to Armour", statOrder = { 1540 }, level = 23, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating5"] = { type = "Prefix", affix = "Plated", "+(83-101) to Armour", statOrder = { 1540 }, level = 29, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating6"] = { type = "Prefix", affix = "Carapaced", "+(102-120) to Armour", statOrder = { 1540 }, level = 35, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating7__"] = { type = "Prefix", affix = "Encased", "+(121-150) to Armour", statOrder = { 1540 }, level = 43, group = "LocalPhysicalDamageReductionRating", weightKey = { "str_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating8"] = { type = "Prefix", affix = "Enveloped", "+(151-200) to Armour", statOrder = { 1540 }, level = 51, group = "LocalPhysicalDamageReductionRating", weightKey = { "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating9_"] = { type = "Prefix", affix = "Abating", "+(201-300) to Armour", statOrder = { 1540 }, level = 60, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating10"] = { type = "Prefix", affix = "Unmoving", "+(301-400) to Armour", statOrder = { 1540 }, level = 69, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRating11"] = { type = "Prefix", affix = "Impervious", "+(401-500) to Armour", statOrder = { 1540 }, level = 77, group = "LocalPhysicalDamageReductionRating", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssence7"] = { type = "Prefix", affix = "Essences", "+(390-475) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm5"] = { type = "Prefix", affix = "Essences", "+(121-140) to Armour", statOrder = { 1540 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm6_"] = { type = "Prefix", affix = "Essences", "+(141-160) to Armour", statOrder = { 1540 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceHelm7_"] = { type = "Prefix", affix = "Essences", "+(161-180) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves5"] = { type = "Prefix", affix = "Essences", "+(91-105) to Armour", statOrder = { 1540 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves6"] = { type = "Prefix", affix = "Essences", "+(106-120) to Armour", statOrder = { 1540 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceBootsGloves7"] = { type = "Prefix", affix = "Essences", "+(121-135) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield5_"] = { type = "Prefix", affix = "Essences", "+(151-225) to Armour", statOrder = { 1540 }, level = 58, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield6"] = { type = "Prefix", affix = "Essences", "+(226-300) to Armour", statOrder = { 1540 }, level = 74, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingEssenceShield7____"] = { type = "Prefix", affix = "Essences", "+(301-375) to Armour", statOrder = { 1540 }, level = 82, group = "LocalPhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["LocalBaseArmourAndEvasionRating1"] = { type = "Prefix", affix = "Supple", "+(5-9) to Armour", "+(5-9) to Evasion Rating", statOrder = { 1540, 1548 }, level = 1, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating2"] = { type = "Prefix", affix = "Pliant", "+(10-27) to Armour", "+(10-27) to Evasion Rating", statOrder = { 1540, 1548 }, level = 18, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating3"] = { type = "Prefix", affix = "Flexible", "+(28-48) to Armour", "+(28-48) to Evasion Rating", statOrder = { 1540, 1548 }, level = 30, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating4"] = { type = "Prefix", affix = "Durable", "+(49-85) to Armour", "+(49-85) to Evasion Rating", statOrder = { 1540, 1548 }, level = 38, group = "LocalBaseArmourAndEvasionRating", weightKey = { "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating5"] = { type = "Prefix", affix = "Sturdy", "+(86-145) to Armour", "+(86-145) to Evasion Rating", statOrder = { 1540, 1548 }, level = 46, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating6_"] = { type = "Prefix", affix = "Resilient", "+(146-220) to Armour", "+(146-220) to Evasion Rating", statOrder = { 1540, 1548 }, level = 58, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating7"] = { type = "Prefix", affix = "Adaptable", "+(221-300) to Armour", "+(221-300) to Evasion Rating", statOrder = { 1540, 1548 }, level = 69, group = "LocalBaseArmourAndEvasionRating", weightKey = { "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRating8"] = { type = "Prefix", affix = "Versatile", "+(301-375) to Armour", "+(301-375) to Evasion Rating", statOrder = { 1540, 1548 }, level = 79, group = "LocalBaseArmourAndEvasionRating", weightKey = { "shield", "boots", "gloves", "helmet", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEnergyShield1"] = { type = "Prefix", affix = "Blessed", "+(5-9) to Armour", "+(3-4) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 1, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield2_"] = { type = "Prefix", affix = "Anointed", "+(10-27) to Armour", "+(5-12) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 18, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield3"] = { type = "Prefix", affix = "Sanctified", "+(28-48) to Armour", "+(13-22) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 30, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield4"] = { type = "Prefix", affix = "Hallowed", "+(49-85) to Armour", "+(23-28) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 38, group = "LocalBaseArmourAndEnergyShield", weightKey = { "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield5"] = { type = "Prefix", affix = "Beatified", "+(86-145) to Armour", "+(29-48) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 46, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield6"] = { type = "Prefix", affix = "Consecrated", "+(146-220) to Armour", "+(49-60) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 58, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield7"] = { type = "Prefix", affix = "Saintly", "+(221-300) to Armour", "+(61-72) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 69, group = "LocalBaseArmourAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShield8"] = { type = "Prefix", affix = "Godly", "+(301-375) to Armour", "+(73-80) to maximum Energy Shield", statOrder = { 1540, 1559 }, level = 79, group = "LocalBaseArmourAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield1"] = { type = "Prefix", affix = "Will-o-wisp's", "+(5-9) to Evasion Rating", "+(3-4) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 1, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield2"] = { type = "Prefix", affix = "Nymph's", "+(10-27) to Evasion Rating", "+(5-12) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 18, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield3"] = { type = "Prefix", affix = "Sylph's", "+(28-48) to Evasion Rating", "+(13-22) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 30, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield4"] = { type = "Prefix", affix = "Cherub's", "+(49-85) to Evasion Rating", "+(23-28) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 38, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield5_"] = { type = "Prefix", affix = "Spirit's", "+(86-145) to Evasion Rating", "+(29-48) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 46, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield6"] = { type = "Prefix", affix = "Eidolon's", "+(146-220) to Evasion Rating", "+(49-60) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 58, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield7___"] = { type = "Prefix", affix = "Apparition's", "+(221-300) to Evasion Rating", "+(61-72) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 69, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShield8___"] = { type = "Prefix", affix = "Phantasm's", "+(301-375) to Evasion Rating", "+(73-80) to maximum Energy Shield", statOrder = { 1548, 1559 }, level = 79, group = "LocalBaseEvasionRatingAndEnergyShield", weightKey = { "shield", "boots", "gloves", "helmet", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 166, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalBaseArmourAndEvasionRatingAndLife1"] = { type = "Prefix", affix = "Rhoa's", "+(8-10) to Armour", "+(8-10) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 30, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRatingAndLife2"] = { type = "Prefix", affix = "Rhex's", "+(11-21) to Armour", "+(11-21) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 46, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRatingAndLife3"] = { type = "Prefix", affix = "Chimeral's", "+(22-48) to Armour", "+(22-48) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 62, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEvasionRatingAndLife4"] = { type = "Prefix", affix = "Bull's", "+(49-60) to Armour", "+(49-60) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1540, 1548, 1569 }, level = 78, group = "LocalBaseArmourEvasionRatingAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "evasion" }, }, + ["LocalBaseArmourAndEnergyShieldAndLife1_"] = { type = "Prefix", affix = "Coelacanth's", "+(8-10) to Armour", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 30, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShieldAndLife2_"] = { type = "Prefix", affix = "Swordfish's", "+(11-21) to Armour", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 46, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Shark's", "+(22-48) to Armour", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 62, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, + ["LocalBaseArmourAndEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Whale's", "+(49-60) to Armour", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1540, 1559, 1569 }, level = 78, group = "LocalBaseArmourEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "armour", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife1"] = { type = "Prefix", affix = "Vulture's", "+(8-10) to Evasion Rating", "+(3-5) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 30, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife2"] = { type = "Prefix", affix = "Kingfisher's", "+(11-21) to Evasion Rating", "+(6-8) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 46, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife3"] = { type = "Prefix", affix = "Owl's", "+(22-48) to Evasion Rating", "+(9-12) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 62, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, + ["LocalBaseEvasionRatingAndEnergyShieldAndLife4"] = { type = "Prefix", affix = "Eagle's", "+(49-60) to Evasion Rating", "+(13-15) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1548, 1559, 1569 }, level = 78, group = "LocalBaseEvasionRatingEnergyShieldAndLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "evasion", "energy_shield" }, }, + ["LocalBaseArmourAndLife1"] = { type = "Prefix", affix = "Oyster's", "+(20-32) to Armour", "+(18-23) to maximum Life", statOrder = { 1540, 1569 }, level = 30, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, + ["LocalBaseArmourAndLife2"] = { type = "Prefix", affix = "Urchin's", "+(33-48) to Armour", "+(24-28) to maximum Life", statOrder = { 1540, 1569 }, level = 46, group = "LocalBaseArmourAndLife", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, + ["LocalBaseArmourAndLife3"] = { type = "Prefix", affix = "Nautilus's", "+(49-96) to Armour", "+(29-33) to maximum Life", statOrder = { 1540, 1569 }, level = 62, group = "LocalBaseArmourAndLife", weightKey = { "boots", "gloves", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, + ["LocalBaseArmourAndLife4"] = { type = "Prefix", affix = "Crocodile's", "+(97-144) to Armour", "+(34-38) to maximum Life", statOrder = { 1540, 1569 }, level = 78, group = "LocalBaseArmourAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "armour" }, }, + ["LocalBaseEvasionRatingAndLife1"] = { type = "Prefix", affix = "Flea's", "+(14-20) to Evasion Rating", "+(18-23) to maximum Life", statOrder = { 1548, 1569 }, level = 30, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, + ["LocalBaseEvasionRatingAndLife2"] = { type = "Prefix", affix = "Fawn's", "+(21-42) to Evasion Rating", "+(24-28) to maximum Life", statOrder = { 1548, 1569 }, level = 46, group = "LocalBaseEvasionRatingAndLife", weightKey = { "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, + ["LocalBaseEvasionRatingAndLife3"] = { type = "Prefix", affix = "Ram's", "+(43-95) to Evasion Rating", "+(29-33) to maximum Life", statOrder = { 1548, 1569 }, level = 62, group = "LocalBaseEvasionRatingAndLife", weightKey = { "boots", "gloves", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, + ["LocalBaseEvasionRatingAndLife4"] = { type = "Prefix", affix = "Ibex's", "+(96-120) to Evasion Rating", "+(34-38) to maximum Life", statOrder = { 1548, 1569 }, level = 78, group = "LocalBaseEvasionRatingAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "evasion" }, }, + ["LocalBaseEnergyShieldAndLife1"] = { type = "Prefix", affix = "Monk's", "+(8-10) to maximum Energy Shield", "+(18-23) to maximum Life", statOrder = { 1559, 1569 }, level = 30, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndLife2"] = { type = "Prefix", affix = "Prior's", "+(11-15) to maximum Energy Shield", "+(24-28) to maximum Life", statOrder = { 1559, 1569 }, level = 46, group = "LocalBaseEnergyShieldAndLife", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndLife3_"] = { type = "Prefix", affix = "Abbot's", "+(16-25) to maximum Energy Shield", "+(29-33) to maximum Life", statOrder = { 1559, 1569 }, level = 62, group = "LocalBaseEnergyShieldAndLife", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndLife4_"] = { type = "Prefix", affix = "Exarch's", "+(26-30) to maximum Energy Shield", "+(34-38) to maximum Life", statOrder = { 1559, 1569 }, level = 78, group = "LocalBaseEnergyShieldAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndMana1"] = { type = "Prefix", affix = "Acolyte's", "+(8-10) to maximum Energy Shield", "+(11-15) to maximum Mana", statOrder = { 1559, 1579 }, level = 30, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndMana2"] = { type = "Prefix", affix = "Deacon's", "+(11-15) to maximum Energy Shield", "+(16-19) to maximum Mana", statOrder = { 1559, 1579 }, level = 46, group = "LocalBaseEnergyShieldAndMana", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndMana3"] = { type = "Prefix", affix = "Priest's", "+(16-25) to maximum Energy Shield", "+(20-22) to maximum Mana", statOrder = { 1559, 1579 }, level = 62, group = "LocalBaseEnergyShieldAndMana", weightKey = { "boots", "gloves", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 1000, 500, 500, 333, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, + ["LocalBaseEnergyShieldAndMana4"] = { type = "Prefix", affix = "Bishop's", "+(26-30) to maximum Energy Shield", "+(23-25) to maximum Mana", statOrder = { 1559, 1579 }, level = 78, group = "LocalBaseEnergyShieldAndMana", weightKey = { "shield", "boots", "gloves", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 250, 250, 166, 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, + ["MovementVelocity1"] = { type = "Prefix", affix = "Runner's", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocity2"] = { type = "Prefix", affix = "Sprinter's", "15% increased Movement Speed", statOrder = { 1798 }, level = 15, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocity3"] = { type = "Prefix", affix = "Stallion's", "20% increased Movement Speed", statOrder = { 1798 }, level = 30, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocity4"] = { type = "Prefix", affix = "Gazelle's", "25% increased Movement Speed", statOrder = { 1798 }, level = 40, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocity5"] = { type = "Prefix", affix = "Cheetah's", "30% increased Movement Speed", statOrder = { 1798 }, level = 55, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocity6"] = { type = "Prefix", affix = "Hellion's", "35% increased Movement Speed", statOrder = { 1798 }, level = 86, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEssence7"] = { type = "Prefix", affix = "Essences", "32% increased Movement Speed", statOrder = { 1798 }, level = 82, group = "MovementVelocity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MovementVelocityEnhancedModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3243 }, level = 1, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MovementVelocityEnhancedModDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1798, 4216 }, level = 1, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MovementVelocityEnhancedModSpellDodge_"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1798, 1849 }, level = 1, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["SpellDamage1"] = { type = "Prefix", affix = "Chanter's", "(3-7)% increased Spell Damage", statOrder = { 1223 }, level = 5, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage2"] = { type = "Prefix", affix = "Mage's", "(8-12)% increased Spell Damage", statOrder = { 1223 }, level = 20, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage3"] = { type = "Prefix", affix = "Sorcerer's", "(13-17)% increased Spell Damage", statOrder = { 1223 }, level = 38, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage4"] = { type = "Prefix", affix = "Thaumaturgist's", "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 56, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamage5"] = { type = "Prefix", affix = "Wizard's", "(23-26)% increased Spell Damage", statOrder = { 1223 }, level = 76, group = "SpellDamage", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(10-19)% increased Spell Damage", statOrder = { 1223 }, level = 2, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon2"] = { type = "Prefix", affix = "Adept's", "(20-29)% increased Spell Damage", statOrder = { 1223 }, level = 11, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon3"] = { type = "Prefix", affix = "Scholar's", "(30-39)% increased Spell Damage", statOrder = { 1223 }, level = 23, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1500, 1500, 1500, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon4"] = { type = "Prefix", affix = "Professor's", "(40-54)% increased Spell Damage", statOrder = { 1223 }, level = 35, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon5"] = { type = "Prefix", affix = "Occultist's", "(55-69)% increased Spell Damage", statOrder = { 1223 }, level = 46, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon6"] = { type = "Prefix", affix = "Incanter's", "(70-84)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 150, 150, 150, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon7"] = { type = "Prefix", affix = "Glyphic", "(85-99)% increased Spell Damage", statOrder = { 1223 }, level = 64, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 80, 80, 80, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeapon8_"] = { type = "Prefix", affix = "Runic", "(100-109)% increased Spell Damage", statOrder = { 1223 }, level = 84, group = "WeaponSpellDamage", weightKey = { "attack_dagger", "focus", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 40, 40, 40, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponEssence5_"] = { type = "Prefix", affix = "Essences", "(50-66)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(67-82)% increased Spell Damage", statOrder = { 1223 }, level = 74, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(83-94)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "WeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9488 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Apprentice's", "(15-29)% increased Spell Damage", statOrder = { 1223 }, level = 2, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Adept's", "(30-44)% increased Spell Damage", statOrder = { 1223 }, level = 11, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Scholar's", "(45-59)% increased Spell Damage", statOrder = { 1223 }, level = 23, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Professor's", "(60-84)% increased Spell Damage", statOrder = { 1223 }, level = 35, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon5"] = { type = "Prefix", affix = "Occultist's", "(85-104)% increased Spell Damage", statOrder = { 1223 }, level = 46, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon6"] = { type = "Prefix", affix = "Incanter's", "(105-124)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon7"] = { type = "Prefix", affix = "Glyphic", "(125-149)% increased Spell Damage", statOrder = { 1223 }, level = 79, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 80, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeapon8"] = { type = "Prefix", affix = "Runic", "(150-164)% increased Spell Damage", statOrder = { 1223 }, level = 84, group = "TwoHandWeaponSpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 40, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "(85-106)% increased Spell Damage", statOrder = { 1223 }, level = 58, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "(107-122)% increased Spell Damage", statOrder = { 1223 }, level = 74, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "(123-144)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "TwoHandWeaponSpellDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9488 }, level = 1, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Caster's", "(5-9)% increased Spell Damage", "+(17-20) to maximum Mana", statOrder = { 1223, 1579 }, level = 2, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(10-14)% increased Spell Damage", "+(21-24) to maximum Mana", statOrder = { 1223, 1579 }, level = 11, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Wizard's", "(15-19)% increased Spell Damage", "+(25-28) to maximum Mana", statOrder = { 1223, 1579 }, level = 23, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 750, 750, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon4"] = { type = "Prefix", affix = "Warlock's", "(20-24)% increased Spell Damage", "+(29-33) to maximum Mana", statOrder = { 1223, 1579 }, level = 35, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 600, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Mage's", "(25-29)% increased Spell Damage", "+(34-37) to maximum Mana", statOrder = { 1223, 1579 }, level = 46, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 400, 300, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Archmage's", "(30-34)% increased Spell Damage", "+(38-41) to maximum Mana", statOrder = { 1223, 1579 }, level = 58, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 150, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnWeapon7"] = { type = "Prefix", affix = "Lich's", "(35-39)% increased Spell Damage", "+(42-45) to maximum Mana", statOrder = { 1223, 1579 }, level = 80, group = "WeaponSpellDamageAndMana", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 100, 75, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon1"] = { type = "Prefix", affix = "Caster's", "(8-14)% increased Spell Damage", "+(26-30) to maximum Mana", statOrder = { 1223, 1579 }, level = 2, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon2"] = { type = "Prefix", affix = "Conjuror's", "(15-22)% increased Spell Damage", "+(31-35) to maximum Mana", statOrder = { 1223, 1579 }, level = 11, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon3"] = { type = "Prefix", affix = "Wizard's", "(23-29)% increased Spell Damage", "+(36-41) to maximum Mana", statOrder = { 1223, 1579 }, level = 23, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1500, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon4"] = { type = "Prefix", affix = "Warlock's", "(30-37)% increased Spell Damage", "+(42-47) to maximum Mana", statOrder = { 1223, 1579 }, level = 35, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon5"] = { type = "Prefix", affix = "Mage's", "(38-44)% increased Spell Damage", "+(48-53) to maximum Mana", statOrder = { 1223, 1579 }, level = 46, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon6"] = { type = "Prefix", affix = "Archmage's", "(45-50)% increased Spell Damage", "+(54-59) to maximum Mana", statOrder = { 1223, 1579 }, level = 58, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 150, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["SpellDamageAndManaOnTwoHandWeapon7"] = { type = "Prefix", affix = "Lich's", "(51-55)% increased Spell Damage", "+(60-64) to maximum Mana", statOrder = { 1223, 1579 }, level = 80, group = "TwoHandWeaponSpellDamageAndMana", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 75, 0 }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["TrapDamageOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["TrapDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["TrapThrowSpeedEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapCooldownRecoveryAndDurationEnhancedMod"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1923, 3461 }, level = 1, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["TrapAreaOfEffectEnhancedMod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3479 }, level = 1, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["LocalIncreaseSocketedTrapGemLevelEnhancedMod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap Gems", statOrder = { 186 }, level = 1, group = "LocalIncreaseSocketedTrapGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, + ["MinionDamageOnWeaponEnhancedMod__"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionAttackAndCastSpeedEnhancedMod"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (13-15)% increased Attack Speed", "Minions have (13-15)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionDurationEnhancedMod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5032 }, level = 1, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["LocalIncreaseSocketedMinionGemLevelEnhancedMod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["FireDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Searing", "(10-19)% increased Fire Damage", statOrder = { 1357 }, level = 2, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Sizzling", "(20-29)% increased Fire Damage", statOrder = { 1357 }, level = 11, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Blistering", "(30-39)% increased Fire Damage", statOrder = { 1357 }, level = 23, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Cauterising", "(40-54)% increased Fire Damage", statOrder = { 1357 }, level = 35, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Volcanic", "(55-69)% increased Fire Damage", statOrder = { 1357 }, level = 46, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Magmatic", "(70-84)% increased Fire Damage", statOrder = { 1357 }, level = 58, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon7_"] = { type = "Prefix", affix = "Pyroclastic", "(85-99)% increased Fire Damage", statOrder = { 1357 }, level = 64, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(100-109)% increased Fire Damage", statOrder = { 1357 }, level = 84, group = "FireDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Searing", "(15-29)% increased Fire Damage", statOrder = { 1357 }, level = 2, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon2___"] = { type = "Prefix", affix = "Sizzling", "(30-44)% increased Fire Damage", statOrder = { 1357 }, level = 11, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Blistering", "(45-59)% increased Fire Damage", statOrder = { 1357 }, level = 23, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Cauterising", "(60-84)% increased Fire Damage", statOrder = { 1357 }, level = 35, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Volcanic", "(85-104)% increased Fire Damage", statOrder = { 1357 }, level = 46, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Magmatic", "(105-124)% increased Fire Damage", statOrder = { 1357 }, level = 58, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Pyroclastic", "(125-149)% increased Fire Damage", statOrder = { 1357 }, level = 79, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnTwoHandWeapon8_"] = { type = "Prefix", affix = "Xoph's", "(150-164)% increased Fire Damage", statOrder = { 1357 }, level = 84, group = "TwoHandFireDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 1, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["FireDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 1, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["ColdDamagePrefixOnWeapon1"] = { type = "Prefix", affix = "Bitter", "(10-19)% increased Cold Damage", statOrder = { 1366 }, level = 2, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Biting", "(20-29)% increased Cold Damage", statOrder = { 1366 }, level = 11, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon3_"] = { type = "Prefix", affix = "Alpine", "(30-39)% increased Cold Damage", statOrder = { 1366 }, level = 23, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Snowy", "(40-54)% increased Cold Damage", statOrder = { 1366 }, level = 35, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon5_"] = { type = "Prefix", affix = "Hailing", "(55-69)% increased Cold Damage", statOrder = { 1366 }, level = 46, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Crystalline", "(70-84)% increased Cold Damage", statOrder = { 1366 }, level = 58, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(85-99)% increased Cold Damage", statOrder = { 1366 }, level = 64, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Tul's", "(100-109)% increased Cold Damage", statOrder = { 1366 }, level = 84, group = "ColdDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Bitter", "(15-29)% increased Cold Damage", statOrder = { 1366 }, level = 2, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Biting", "(30-44)% increased Cold Damage", statOrder = { 1366 }, level = 11, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Alpine", "(45-59)% increased Cold Damage", statOrder = { 1366 }, level = 23, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon4_"] = { type = "Prefix", affix = "Snowy", "(60-84)% increased Cold Damage", statOrder = { 1366 }, level = 35, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon5_"] = { type = "Prefix", affix = "Hailing", "(85-104)% increased Cold Damage", statOrder = { 1366 }, level = 46, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Crystalline", "(105-124)% increased Cold Damage", statOrder = { 1366 }, level = 58, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Cryomancer's", "(125-149)% increased Cold Damage", statOrder = { 1366 }, level = 79, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Tul's", "(150-164)% increased Cold Damage", statOrder = { 1366 }, level = 84, group = "TwoHandColdDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePrefixOnWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 1, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["ColdDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 1, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["LightningDamagePrefixOnWeapon1_"] = { type = "Prefix", affix = "Charged", "(10-19)% increased Lightning Damage", statOrder = { 1377 }, level = 2, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon2"] = { type = "Prefix", affix = "Hissing", "(20-29)% increased Lightning Damage", statOrder = { 1377 }, level = 11, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon3"] = { type = "Prefix", affix = "Bolting", "(30-39)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon4"] = { type = "Prefix", affix = "Coursing", "(40-54)% increased Lightning Damage", statOrder = { 1377 }, level = 35, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon5"] = { type = "Prefix", affix = "Striking", "(55-69)% increased Lightning Damage", statOrder = { 1377 }, level = 46, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon6"] = { type = "Prefix", affix = "Smiting", "(70-84)% increased Lightning Damage", statOrder = { 1377 }, level = 58, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 50, 50, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon7"] = { type = "Prefix", affix = "Ionising", "(85-99)% increased Lightning Damage", statOrder = { 1377 }, level = 64, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 25, 25, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeapon8"] = { type = "Prefix", affix = "Esh's", "(100-109)% increased Lightning Damage", statOrder = { 1377 }, level = 84, group = "LightningDamageWeaponPrefix", weightKey = { "focus", "wand", "sceptre", "default", }, weightVal = { 12, 12, 12, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon1"] = { type = "Prefix", affix = "Charged", "(15-29)% increased Lightning Damage", statOrder = { 1377 }, level = 2, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon2"] = { type = "Prefix", affix = "Hissing", "(30-44)% increased Lightning Damage", statOrder = { 1377 }, level = 11, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon3"] = { type = "Prefix", affix = "Bolting", "(45-59)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon4"] = { type = "Prefix", affix = "Coursing", "(60-84)% increased Lightning Damage", statOrder = { 1377 }, level = 35, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon5"] = { type = "Prefix", affix = "Striking", "(85-104)% increased Lightning Damage", statOrder = { 1377 }, level = 46, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon6"] = { type = "Prefix", affix = "Smiting", "(105-124)% increased Lightning Damage", statOrder = { 1377 }, level = 58, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon7"] = { type = "Prefix", affix = "Ionising", "(125-149)% increased Lightning Damage", statOrder = { 1377 }, level = 79, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 25, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnTwoHandWeapon8"] = { type = "Prefix", affix = "Esh's", "(150-164)% increased Lightning Damage", statOrder = { 1377 }, level = 84, group = "TwoHandLightningDamageWeaponPrefix", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 13, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePrefixOnWeaponEnhancedMod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 1, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["LightningDamagePrefixOnTwoHandWeaponEnhancedMod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 1, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["WeaponElementalDamage1"] = { type = "Prefix", affix = "Catalysing", "(5-10)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamage2"] = { type = "Prefix", affix = "Infusing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamage3"] = { type = "Prefix", affix = "Empowering", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamage4"] = { type = "Prefix", affix = "Unleashed", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamage5"] = { type = "Prefix", affix = "Overpowering", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamage6_"] = { type = "Prefix", affix = "Devastating", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "belt", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 10, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 26, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence4"] = { type = "Prefix", affix = "Essences", "(26-29)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 42, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence5"] = { type = "Prefix", affix = "Essences", "(30-34)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 58, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence6_"] = { type = "Prefix", affix = "Essences", "(35-38)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 74, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageEssence7"] = { type = "Prefix", affix = "Essences", "(39-42)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 82, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons1_"] = { type = "Prefix", affix = "Catalysing", "(11-20)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons2"] = { type = "Prefix", affix = "Infusing", "(21-30)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons3_"] = { type = "Prefix", affix = "Empowering", "(31-36)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons4"] = { type = "Prefix", affix = "Unleashed", "(37-42)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons5_"] = { type = "Prefix", affix = "Overpowering", "(43-50)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnWeapons6"] = { type = "Prefix", affix = "Devastating", "(51-59)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "one_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon1"] = { type = "Prefix", affix = "Catalysing", "(19-34)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 4, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon2____"] = { type = "Prefix", affix = "Infusing", "(36-51)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon3"] = { type = "Prefix", affix = "Empowering", "(53-61)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 30, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon4"] = { type = "Prefix", affix = "Unleashed", "(63-71)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 60, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon5"] = { type = "Prefix", affix = "Overpowering", "(73-85)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 81, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageOnTwohandWeapon6"] = { type = "Prefix", affix = "Devastating", "(87-100)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 86, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "two_hand_weapon", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["ManaLeech1"] = { type = "Prefix", affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 9, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeech2"] = { type = "Prefix", affix = "Parched", "(3-4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 74, group = "ManaLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriad1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriad2"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffix1"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 50, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffix2"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 70, group = "ManaLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 82, group = "ManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["LocalManaLeechPermyriadEssence5"] = { type = "Prefix", affix = "Essences", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 58, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["LocalManaLeechPermyriadEssence6"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 74, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["LocalManaLeechPermyriadEssence7"] = { type = "Prefix", affix = "Essences", "(0.9-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 82, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ItemFoundQuantityIncrease1"] = { type = "Suffix", affix = "of Collecting", "(4-8)% increased Quantity of Items found", statOrder = { 1592 }, level = 2, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncrease2"] = { type = "Suffix", affix = "of Gathering", "(9-12)% increased Quantity of Items found", statOrder = { 1592 }, level = 32, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncrease3"] = { type = "Suffix", affix = "of Hoarding", "(13-16)% increased Quantity of Items found", statOrder = { 1592 }, level = 55, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncrease4"] = { type = "Suffix", affix = "of Amassment", "(17-20)% increased Quantity of Items found", statOrder = { 1592 }, level = 77, group = "ItemFoundQuantityIncrease", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncrease1"] = { type = "Suffix", affix = "of Plunder", "(6-10)% increased Rarity of Items found", statOrder = { 1596 }, level = 3, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncrease2"] = { type = "Suffix", affix = "of Raiding", "(11-14)% increased Rarity of Items found", statOrder = { 1596 }, level = 30, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncrease3"] = { type = "Suffix", affix = "of Archaeology", "(15-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 53, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncrease4"] = { type = "Suffix", affix = "of Excavation", "(21-26)% increased Rarity of Items found", statOrder = { 1596 }, level = 75, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreasePrefix1"] = { type = "Prefix", affix = "Magpie's", "(8-12)% increased Rarity of Items found", statOrder = { 1596 }, level = 20, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreasePrefix2"] = { type = "Prefix", affix = "Pirate's", "(13-18)% increased Rarity of Items found", statOrder = { 1596 }, level = 39, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "gloves", "boots", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreasePrefix3"] = { type = "Prefix", affix = "Dragon's", "(19-24)% increased Rarity of Items found", statOrder = { 1596 }, level = 62, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreasePrefix4_"] = { type = "Prefix", affix = "Perandus'", "(25-28)% increased Rarity of Items found", statOrder = { 1596 }, level = 84, group = "ItemFoundRarityIncreasePrefix", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, + ["IncreasedCastSpeed1"] = { type = "Suffix", affix = "of Talent", "(5-8)% increased Cast Speed", statOrder = { 1446 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "(9-12)% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed3"] = { type = "Suffix", affix = "of Expertise", "(13-16)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 800, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed4"] = { type = "Suffix", affix = "of Legerdemain", "(17-20)% increased Cast Speed", statOrder = { 1446 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "amulet", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 800, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed5"] = { type = "Suffix", affix = "of Prestidigitation", "(21-24)% increased Cast Speed", statOrder = { 1446 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 1000, 0, 0, 1000, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed6"] = { type = "Suffix", affix = "of Sortilege", "(25-28)% increased Cast Speed", statOrder = { 1446 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 500, 0, 0, 500, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeed7"] = { type = "Suffix", affix = "of Finesse", "(29-32)% increased Cast Speed", statOrder = { 1446 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "wand", "staff", "attack_dagger", "dagger", "sceptre", "default", }, weightVal = { 250, 0, 0, 250, 250, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(26-28)% increased Cast Speed", statOrder = { 1446 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand1_"] = { type = "Suffix", affix = "of Talent", "(8-13)% increased Cast Speed", statOrder = { 1446 }, level = 2, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand2"] = { type = "Suffix", affix = "of Nimbleness", "(14-19)% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand3"] = { type = "Suffix", affix = "of Expertise", "(20-25)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand4"] = { type = "Suffix", affix = "of Legerdemain", "(26-31)% increased Cast Speed", statOrder = { 1446 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand5"] = { type = "Suffix", affix = "of Prestidigitation", "(32-37)% increased Cast Speed", statOrder = { 1446 }, level = 55, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand6"] = { type = "Suffix", affix = "of Sortilege", "(38-43)% increased Cast Speed", statOrder = { 1446 }, level = 72, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHand7"] = { type = "Suffix", affix = "of Finesse", "(44-49)% increased Cast Speed", statOrder = { 1446 }, level = 83, group = "IncreasedCastSpeed", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Cast Speed", statOrder = { 1446 }, level = 82, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 1, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, + ["IncreasedCastSpeedRing3"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Cast Speed", statOrder = { 1446 }, level = 30, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedRing4"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Cast Speed", statOrder = { 1446 }, level = 40, group = "IncreasedCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedFishing"] = { type = "Suffix", affix = "of Casting", "(24-28)% increased Cast Speed", statOrder = { 1446 }, level = 10, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, }, + ["LocalIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1413 }, level = 11, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1413 }, level = 22, group = "LocalIncreasedAttackSpeed", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Renown", "(14-16)% increased Attack Speed", statOrder = { 1413 }, level = 30, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed5"] = { type = "Suffix", affix = "of Acclaim", "(17-19)% increased Attack Speed", statOrder = { 1413 }, level = 37, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 500, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed6"] = { type = "Suffix", affix = "of Fame", "(20-22)% increased Attack Speed", statOrder = { 1413 }, level = 45, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed7"] = { type = "Suffix", affix = "of Infamy", "(23-25)% increased Attack Speed", statOrder = { 1413 }, level = 60, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeed8"] = { type = "Suffix", affix = "of Celebration", "(26-27)% increased Attack Speed", statOrder = { 1413 }, level = 77, group = "LocalIncreasedAttackSpeed", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Attack Speed", statOrder = { 1413 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEssenceRanged4_"] = { type = "Suffix", affix = "of the Essence", "(11-12)% increased Attack Speed", statOrder = { 1413 }, level = 42, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEssenceRanged5"] = { type = "Suffix", affix = "of the Essence", "(13-14)% increased Attack Speed", statOrder = { 1413 }, level = 58, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEssenceRanged6"] = { type = "Suffix", affix = "of the Essence", "(15-16)% increased Attack Speed", statOrder = { 1413 }, level = 74, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEssenceRanged7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1413 }, level = 82, group = "LocalIncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 1, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, + ["IncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(5-7)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "ring", "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 11, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(11-13)% increased Attack Speed", statOrder = { 1410 }, level = 22, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeed4"] = { type = "Suffix", affix = "of Grandmastery", "(14-16)% increased Attack Speed", statOrder = { 1410 }, level = 76, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(17-18)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceJewellery4"] = { type = "Suffix", affix = "of the Essence", "(4-5)% increased Attack Speed", statOrder = { 1410 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceJewellery5"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Attack Speed", statOrder = { 1410 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceJewellery6"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1410 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceJewellery7"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceQuiver4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% increased Attack Speed", statOrder = { 1410 }, level = 42, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceQuiver5_"] = { type = "Suffix", affix = "of the Essence", "(8-9)% increased Attack Speed", statOrder = { 1410 }, level = 58, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceQuiver6"] = { type = "Suffix", affix = "of the Essence", "(10-12)% increased Attack Speed", statOrder = { 1410 }, level = 74, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEssenceQuiver7___"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 1433 }, level = 12, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 1433 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 1433 }, level = 26, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 1433 }, level = 33, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 1433 }, level = 41, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 1433 }, level = 50, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy8"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 1433 }, level = 63, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy9"] = { type = "Suffix", affix = "of the Assassin", "+(321-400) to Accuracy Rating", statOrder = { 1433 }, level = 76, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracy10"] = { type = "Suffix", affix = "of Lioneye", "+(401-500) to Accuracy Rating", statOrder = { 1433 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(401-440) to Accuracy Rating", statOrder = { 1433 }, level = 82, group = "IncreasedAccuracy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew1_"] = { type = "Suffix", affix = "of Steadiness", "+(50-100) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(100-165) to Accuracy Rating", statOrder = { 1433 }, level = 20, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(166-250) to Accuracy Rating", statOrder = { 1433 }, level = 40, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(251-350) to Accuracy Rating", statOrder = { 1433 }, level = 60, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew5_"] = { type = "Suffix", affix = "of the Ranger", "+(351-480) to Accuracy Rating", statOrder = { 1433 }, level = 75, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "ring", "amulet", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(481-600) to Accuracy Rating", statOrder = { 1433 }, level = 85, group = "IncreasedAccuracy", weightKey = { "gloves", "helmet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack" }, }, + ["LifeRegeneration1"] = { type = "Suffix", affix = "of the Newt", "Regenerate (1-2) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration2"] = { type = "Suffix", affix = "of the Lizard", "Regenerate (2.1-8) Life per second", statOrder = { 1574 }, level = 7, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration3"] = { type = "Suffix", affix = "of the Flatworm", "Regenerate (8.1-16) Life per second", statOrder = { 1574 }, level = 19, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration4"] = { type = "Suffix", affix = "of the Starfish", "Regenerate (16.1-24) Life per second", statOrder = { 1574 }, level = 31, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration5"] = { type = "Suffix", affix = "of the Hydra", "Regenerate (24.1-32) Life per second", statOrder = { 1574 }, level = 44, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration6"] = { type = "Suffix", affix = "of the Troll", "Regenerate (32.1-48) Life per second", statOrder = { 1574 }, level = 55, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration7"] = { type = "Suffix", affix = "of Ryslatha", "Regenerate (48.1-64) Life per second", statOrder = { 1574 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "default", }, weightVal = { 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration8_"] = { type = "Suffix", affix = "of the Phoenix", "Regenerate (64.1-96) Life per second", statOrder = { 1574 }, level = 74, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration9"] = { type = "Suffix", affix = "of Recuperation", "Regenerate (96.1-128) Life per second", statOrder = { 1574 }, level = 78, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "ring", "amulet", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration10__"] = { type = "Suffix", affix = "of Life-giving", "Regenerate (128.1-152) Life per second", statOrder = { 1574 }, level = 83, group = "LifeRegeneration", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration11____"] = { type = "Suffix", affix = "of Convalescence", "Regenerate (152.1-176) Life per second", statOrder = { 1574 }, level = 86, group = "LifeRegeneration", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationEssence2"] = { type = "Suffix", affix = "of the Essence", "Regenerate (2-5) Life per second", statOrder = { 1574 }, level = 10, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationEssence7"] = { type = "Suffix", affix = "of the Essence", "Regenerate (30-40) Life per second", statOrder = { 1574 }, level = 82, group = "LifeRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationEnhancedMod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (16-20) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1574, 1944 }, level = 1, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercent1"] = { type = "Suffix", affix = "of Youthfulness", "Regenerate (0.4-0.5)% of Life per second", statOrder = { 1944 }, level = 18, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercent2__"] = { type = "Suffix", affix = "of Vitality", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1944 }, level = 36, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercent3_"] = { type = "Suffix", affix = "of Longevity", "Regenerate (0.8-0.9)% of Life per second", statOrder = { 1944 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercent4"] = { type = "Suffix", affix = "of Immortality", "Regenerate (1-1.1)% of Life per second", statOrder = { 1944 }, level = 81, group = "LifeRegenerationRatePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["ManaRegeneration1"] = { type = "Suffix", affix = "of Excitement", "(10-19)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 2, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegeneration2"] = { type = "Suffix", affix = "of Joy", "(20-29)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 18, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegeneration3"] = { type = "Suffix", affix = "of Elation", "(30-39)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 29, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegeneration4"] = { type = "Suffix", affix = "of Bliss", "(40-49)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 42, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegeneration5"] = { type = "Suffix", affix = "of Euphoria", "(50-59)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegeneration6"] = { type = "Suffix", affix = "of Nirvana", "(60-69)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 79, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand1"] = { type = "Suffix", affix = "of Excitement", "(20-32)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 2, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand2"] = { type = "Suffix", affix = "of Joy", "(33-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 18, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand3"] = { type = "Suffix", affix = "of Elation", "(46-58)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 29, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand4"] = { type = "Suffix", affix = "of Bliss", "(59-72)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 42, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand5"] = { type = "Suffix", affix = "of Euphoria", "(73-85)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 55, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationTwoHand6"] = { type = "Suffix", affix = "of Nirvana", "(86-105)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 79, group = "ManaRegeneration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEssence7_"] = { type = "Suffix", affix = "of the Essence", "(70-76)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 82, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["StunThresholdReduction1"] = { type = "Suffix", affix = "of the Pugilist", "(5-7)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 5, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunThresholdReduction2"] = { type = "Suffix", affix = "of the Brawler", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 20, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunThresholdReduction3"] = { type = "Suffix", affix = "of the Boxer", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 30, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunThresholdReduction4"] = { type = "Suffix", affix = "of the Combatant", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 44, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunThresholdReduction5"] = { type = "Suffix", affix = "of the Gladiator", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 58, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunThresholdReductionEssence7"] = { type = "Suffix", affix = "of the Essence", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 82, group = "StunThresholdReduction", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["CriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 5, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 20, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 30, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 44, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 58, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 72, group = "CriticalStrikeChance", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChance7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 85, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChanceWithBows1_"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 5, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows2_"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 20, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 30, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows4"] = { type = "Suffix", affix = "of Rupturing", "(25-29)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 44, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows5_"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 58, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 72, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceWithBows7"] = { type = "Suffix", affix = "of Rending", "(39-44)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 85, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(39-42)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChanceEssenceGloves4"] = { type = "Suffix", affix = "of the Essence", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 42, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChanceEssenceGloves5"] = { type = "Suffix", affix = "of the Essence", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 58, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChanceEssenceGloves6"] = { type = "Suffix", affix = "of the Essence", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 74, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["CriticalStrikeChanceEssenceGloves7"] = { type = "Suffix", affix = "of the Essence", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 82, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["FireResist1"] = { type = "Suffix", affix = "of the Whelpling", "+(6-11)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist2"] = { type = "Suffix", affix = "of the Salamander", "+(12-17)% to Fire Resistance", statOrder = { 1625 }, level = 12, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist3"] = { type = "Suffix", affix = "of the Drake", "+(18-23)% to Fire Resistance", statOrder = { 1625 }, level = 24, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist4"] = { type = "Suffix", affix = "of the Kiln", "+(24-29)% to Fire Resistance", statOrder = { 1625 }, level = 36, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist5"] = { type = "Suffix", affix = "of the Furnace", "+(30-35)% to Fire Resistance", statOrder = { 1625 }, level = 48, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist6"] = { type = "Suffix", affix = "of the Volcano", "+(36-41)% to Fire Resistance", statOrder = { 1625 }, level = 60, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist7"] = { type = "Suffix", affix = "of the Magma", "+(42-45)% to Fire Resistance", statOrder = { 1625 }, level = 72, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResist8"] = { type = "Suffix", affix = "of Tzteosh", "+(46-48)% to Fire Resistance", statOrder = { 1625 }, level = 84, group = "FireResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["ColdResist1"] = { type = "Suffix", affix = "of the Inuit", "+(6-11)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist2"] = { type = "Suffix", affix = "of the Seal", "+(12-17)% to Cold Resistance", statOrder = { 1631 }, level = 14, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist3"] = { type = "Suffix", affix = "of the Penguin", "+(18-23)% to Cold Resistance", statOrder = { 1631 }, level = 26, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist4"] = { type = "Suffix", affix = "of the Yeti", "+(24-29)% to Cold Resistance", statOrder = { 1631 }, level = 38, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist5"] = { type = "Suffix", affix = "of the Walrus", "+(30-35)% to Cold Resistance", statOrder = { 1631 }, level = 50, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist6"] = { type = "Suffix", affix = "of the Polar Bear", "+(36-41)% to Cold Resistance", statOrder = { 1631 }, level = 60, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist7"] = { type = "Suffix", affix = "of the Ice", "+(42-45)% to Cold Resistance", statOrder = { 1631 }, level = 72, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResist8"] = { type = "Suffix", affix = "of Haast", "+(46-48)% to Cold Resistance", statOrder = { 1631 }, level = 84, group = "ColdResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["LightningResist1"] = { type = "Suffix", affix = "of the Cloud", "+(6-11)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist2"] = { type = "Suffix", affix = "of the Squall", "+(12-17)% to Lightning Resistance", statOrder = { 1636 }, level = 13, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist3"] = { type = "Suffix", affix = "of the Storm", "+(18-23)% to Lightning Resistance", statOrder = { 1636 }, level = 25, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist4"] = { type = "Suffix", affix = "of the Thunderhead", "+(24-29)% to Lightning Resistance", statOrder = { 1636 }, level = 37, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist5"] = { type = "Suffix", affix = "of the Tempest", "+(30-35)% to Lightning Resistance", statOrder = { 1636 }, level = 49, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist6"] = { type = "Suffix", affix = "of the Maelstrom", "+(36-41)% to Lightning Resistance", statOrder = { 1636 }, level = 60, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist7"] = { type = "Suffix", affix = "of the Lightning", "+(42-45)% to Lightning Resistance", statOrder = { 1636 }, level = 72, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResist8"] = { type = "Suffix", affix = "of Ephij", "+(46-48)% to Lightning Resistance", statOrder = { 1636 }, level = 84, group = "LightningResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["FireResistEnhancedModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1625, 2447 }, level = 1, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(9-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1631, 2448 }, level = 1, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(9-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1636, 2449 }, level = 1, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, }, + ["FireResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1625, 1670 }, level = 1, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1631, 1675 }, level = 1, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedModLeech_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1636, 1679 }, level = 1, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, + ["FireResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1625, 10321 }, level = 1, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedModAilments__"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1631, 6070 }, level = 1, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1636, 5913 }, level = 1, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, }, + ["ChaosResist1"] = { type = "Suffix", affix = "of the Lost", "+(5-10)% to Chaos Resistance", statOrder = { 1641 }, level = 16, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResist2"] = { type = "Suffix", affix = "of Banishment", "+(11-15)% to Chaos Resistance", statOrder = { 1641 }, level = 30, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResist3"] = { type = "Suffix", affix = "of Eviction", "+(16-20)% to Chaos Resistance", statOrder = { 1641 }, level = 44, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResist4"] = { type = "Suffix", affix = "of Expulsion", "+(21-25)% to Chaos Resistance", statOrder = { 1641 }, level = 56, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResist5"] = { type = "Suffix", affix = "of Exile", "+(26-30)% to Chaos Resistance", statOrder = { 1641 }, level = 65, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResist6"] = { type = "Suffix", affix = "of Bameth", "+(31-35)% to Chaos Resistance", statOrder = { 1641 }, level = 81, group = "ChaosResistance", weightKey = { "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistEnhancedMod_"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(9-10)% reduced Chaos Damage taken over time", statOrder = { 1641, 1948 }, level = 1, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["AllResistances1"] = { type = "Suffix", affix = "of the Crystal", "+(3-5)% to all Elemental Resistances", statOrder = { 1619 }, level = 12, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistances2"] = { type = "Suffix", affix = "of the Prism", "+(6-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 24, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistances3"] = { type = "Suffix", affix = "of the Kaleidoscope", "+(9-11)% to all Elemental Resistances", statOrder = { 1619 }, level = 36, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistances4"] = { type = "Suffix", affix = "of Variegation", "+(12-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 48, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistances5"] = { type = "Suffix", affix = "of the Rainbow", "+(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 60, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistances6"] = { type = "Suffix", affix = "of the Span", "+(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 85, group = "AllResistances", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["CriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 31, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "amulet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierWithBows1"] = { type = "Suffix", affix = "of Ire", "+(8-12)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 8, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriticalMultiplierWithBows2"] = { type = "Suffix", affix = "of Anger", "+(13-19)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 21, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriticalMultiplierWithBows3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 31, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriticalMultiplierWithBows4__"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriticalMultiplierWithBows5_"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 59, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriticalMultiplierWithBows6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 74, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CriitcalMultiplierEssence7"] = { type = "Suffix", affix = "of the Essence", "+(35-41)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierEssenceRing5_"] = { type = "Suffix", affix = "of the Essence", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 58, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierEssenceRing6_"] = { type = "Suffix", affix = "of the Essence", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 74, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierEssenceRing7"] = { type = "Suffix", affix = "of the Essence", "+(21-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 82, group = "CriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["StunRecovery1"] = { type = "Suffix", affix = "of Thick Skin", "(11-13)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecovery2"] = { type = "Suffix", affix = "of Stone Skin", "(14-16)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 17, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecovery3"] = { type = "Suffix", affix = "of Iron Skin", "(17-19)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 28, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecovery4"] = { type = "Suffix", affix = "of Steel Skin", "(20-22)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 42, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecovery5"] = { type = "Suffix", affix = "of Adamantite Skin", "(23-25)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 56, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecovery6"] = { type = "Suffix", affix = "of Corundum Skin", "(26-28)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 79, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["StunRecoveryEssence7"] = { type = "Suffix", affix = "of the Essence", "(29-34)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 82, group = "StunRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunDuration1"] = { type = "Suffix", affix = "of Impact", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 5, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunDuration2"] = { type = "Suffix", affix = "of Dazing", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 18, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunDuration3"] = { type = "Suffix", affix = "of Stunning", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 30, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunDuration4"] = { type = "Suffix", affix = "of Slamming", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 44, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunDuration5"] = { type = "Suffix", affix = "of Staggering", "(31-35)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 58, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["StunDurationEssence7"] = { type = "Suffix", affix = "of the Essence", "(36-39)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 82, group = "StunDurationIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["SpellCriticalStrikeChance1"] = { type = "Suffix", affix = "of Menace", "(10-19)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 11, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChance2"] = { type = "Suffix", affix = "of Havoc", "(20-39)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 21, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChance3"] = { type = "Suffix", affix = "of Disaster", "(40-59)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 28, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChance4"] = { type = "Suffix", affix = "of Calamity", "(60-79)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 41, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChance5"] = { type = "Suffix", affix = "of Ruin", "(80-99)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 59, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChance6_"] = { type = "Suffix", affix = "of Unmaking", "(100-109)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 76, group = "SpellCriticalStrikeChance", weightKey = { "attack_dagger", "attack_staff", "focus", "str_int_shield", "dex_int_shield", "wand", "staff", "sceptre", "dagger", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(110-119)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 82, group = "SpellCriticalStrikeChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "critical" }, }, + ["ProjectileSpeed1"] = { type = "Suffix", affix = "of Darting", "(10-17)% increased Projectile Speed", statOrder = { 1796 }, level = 14, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, + ["ProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "(18-25)% increased Projectile Speed", statOrder = { 1796 }, level = 27, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, + ["ProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "(26-33)% increased Projectile Speed", statOrder = { 1796 }, level = 41, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, + ["ProjectileSpeed4"] = { type = "Suffix", affix = "of the Zephyr", "(34-41)% increased Projectile Speed", statOrder = { 1796 }, level = 55, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, + ["ProjectileSpeed5"] = { type = "Suffix", affix = "of the Gale", "(42-46)% increased Projectile Speed", statOrder = { 1796 }, level = 82, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "speed" }, }, + ["ProjectileSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "(47-52)% increased Projectile Speed", statOrder = { 1796 }, level = 28, group = "ProjectileSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["LifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 8, group = "LifeGainPerTarget", weightKey = { "amulet", "ring", "gloves", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain 3 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 20, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain 4 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 30, group = "LifeGainPerTarget", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTarget4"] = { type = "Suffix", affix = "of Nourishment", "Gain 5 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 40, group = "LifeGainPerTarget", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal1"] = { type = "Suffix", affix = "of Rejuvenation", "Grants (2-3) Life per Enemy Hit", statOrder = { 1738 }, level = 8, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal2"] = { type = "Suffix", affix = "of Restoration", "Grants (4-6) Life per Enemy Hit", statOrder = { 1738 }, level = 20, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal3"] = { type = "Suffix", affix = "of Regrowth", "Grants (7-10) Life per Enemy Hit", statOrder = { 1738 }, level = 30, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal4"] = { type = "Suffix", affix = "of Nourishment", "Grants (11-14) Life per Enemy Hit", statOrder = { 1738 }, level = 40, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal5"] = { type = "Suffix", affix = "of Regenesis", "Grants (15-18) Life per Enemy Hit", statOrder = { 1738 }, level = 50, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal6"] = { type = "Suffix", affix = "of Renewal", "Grants (19-22) Life per Enemy Hit", statOrder = { 1738 }, level = 60, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal7"] = { type = "Suffix", affix = "of Recuperation", "Grants (23-26) Life per Enemy Hit", statOrder = { 1738 }, level = 70, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetLocal8"] = { type = "Suffix", affix = "of Revitalization", "Grants (27-30) Life per Enemy Hit", statOrder = { 1738 }, level = 80, group = "LifeGainPerTargetLocal", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "attack" }, }, + ["FireDamagePercent1"] = { type = "Suffix", affix = "of Embers", "(10-12)% increased Fire Damage", statOrder = { 1357 }, level = 8, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercent2"] = { type = "Suffix", affix = "of Coals", "(13-15)% increased Fire Damage", statOrder = { 1357 }, level = 22, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercent3"] = { type = "Suffix", affix = "of Cinders", "(16-18)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercent4"] = { type = "Suffix", affix = "of Flames", "(19-22)% increased Fire Damage", statOrder = { 1357 }, level = 50, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercent5"] = { type = "Suffix", affix = "of Immolation", "(23-26)% increased Fire Damage", statOrder = { 1357 }, level = 64, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercent6"] = { type = "Suffix", affix = "of Ashes", "(27-30)% increased Fire Damage", statOrder = { 1357 }, level = 76, group = "FireDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Embers", "(18-22)% increased Fire Damage", statOrder = { 1357 }, level = 8, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Coals", "(23-28)% increased Fire Damage", statOrder = { 1357 }, level = 22, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Cinders", "(29-34)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Flames", "(35-39)% increased Fire Damage", statOrder = { 1357 }, level = 50, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Immolation", "(40-44)% increased Fire Damage", statOrder = { 1357 }, level = 64, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Ashes", "(45-50)% increased Fire Damage", statOrder = { 1357 }, level = 76, group = "FireDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Fire Damage", statOrder = { 1357 }, level = 10, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Fire Damage", statOrder = { 1357 }, level = 26, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence4"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Fire Damage", statOrder = { 1357 }, level = 42, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Fire Damage", statOrder = { 1357 }, level = 58, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Fire Damage", statOrder = { 1357 }, level = 74, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Fire Damage", statOrder = { 1357 }, level = 82, group = "FireDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamagePercent1"] = { type = "Suffix", affix = "of Snow", "(10-12)% increased Cold Damage", statOrder = { 1366 }, level = 12, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercent2"] = { type = "Suffix", affix = "of Sleet", "(13-15)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercent3"] = { type = "Suffix", affix = "of Ice", "(16-18)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercent4"] = { type = "Suffix", affix = "of Rime", "(19-22)% increased Cold Damage", statOrder = { 1366 }, level = 50, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercent5"] = { type = "Suffix", affix = "of Floe", "(23-26)% increased Cold Damage", statOrder = { 1366 }, level = 64, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercent6"] = { type = "Suffix", affix = "of Glaciation", "(27-30)% increased Cold Damage", statOrder = { 1366 }, level = 76, group = "ColdDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Snow", "(18-22)% increased Cold Damage", statOrder = { 1366 }, level = 12, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Sleet", "(23-28)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Ice", "(29-34)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Rime", "(35-39)% increased Cold Damage", statOrder = { 1366 }, level = 50, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Floe", "(40-44)% increased Cold Damage", statOrder = { 1366 }, level = 64, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Glaciation", "(45-50)% increased Cold Damage", statOrder = { 1366 }, level = 76, group = "ColdDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-10)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence2"] = { type = "Suffix", affix = "of the Essence", "(11-14)% increased Cold Damage", statOrder = { 1366 }, level = 10, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence3"] = { type = "Suffix", affix = "of the Essence", "(15-18)% increased Cold Damage", statOrder = { 1366 }, level = 26, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence4_"] = { type = "Suffix", affix = "of the Essence", "(19-22)% increased Cold Damage", statOrder = { 1366 }, level = 42, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Cold Damage", statOrder = { 1366 }, level = 58, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence6_"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Cold Damage", statOrder = { 1366 }, level = 74, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Cold Damage", statOrder = { 1366 }, level = 82, group = "ColdDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["LightningDamagePercent1"] = { type = "Suffix", affix = "of Sparks", "(10-12)% increased Lightning Damage", statOrder = { 1377 }, level = 10, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercent2"] = { type = "Suffix", affix = "of Static", "(13-15)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercent3"] = { type = "Suffix", affix = "of Electricity", "(16-18)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercent4"] = { type = "Suffix", affix = "of Voltage", "(19-22)% increased Lightning Damage", statOrder = { 1377 }, level = 50, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercent5"] = { type = "Suffix", affix = "of Discharge", "(23-26)% increased Lightning Damage", statOrder = { 1377 }, level = 64, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "amulet", "default", }, weightVal = { 1000, 1000, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercent6"] = { type = "Suffix", affix = "of Arcing", "(27-30)% increased Lightning Damage", statOrder = { 1377 }, level = 76, group = "LightningDamagePercentage", weightKey = { "wand", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand1"] = { type = "Suffix", affix = "of Sparks", "(18-22)% increased Lightning Damage", statOrder = { 1377 }, level = 10, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand2"] = { type = "Suffix", affix = "of Static", "(23-28)% increased Lightning Damage", statOrder = { 1377 }, level = 23, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand3"] = { type = "Suffix", affix = "of Electricity", "(29-34)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand4"] = { type = "Suffix", affix = "of Voltage", "(35-39)% increased Lightning Damage", statOrder = { 1377 }, level = 50, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand5"] = { type = "Suffix", affix = "of Discharge", "(40-44)% increased Lightning Damage", statOrder = { 1377 }, level = 64, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentTwoHand6"] = { type = "Suffix", affix = "of Arcing", "(45-50)% increased Lightning Damage", statOrder = { 1377 }, level = 76, group = "LightningDamagePercentage", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Lightning Damage", statOrder = { 1377 }, level = 82, group = "LightningDamagePercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (7-10) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (12-18) Life per Enemy Killed", statOrder = { 1748 }, level = 23, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (24-32) Life per Enemy Killed", statOrder = { 1748 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (35-44) Life per Enemy Killed", statOrder = { 1748 }, level = 52, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Feat", "Gain (56-72) Life per Enemy Killed", statOrder = { 1748 }, level = 66, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Masterstroke", "Gain (84-110) Life per Enemy Killed", statOrder = { 1748 }, level = 81, group = "LifeGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["ManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (4-6) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (7-10) Mana per Enemy Killed", statOrder = { 1763 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (11-15) Mana per Enemy Killed", statOrder = { 1763 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Diffusion", "Gain (16-25) Mana per Enemy Killed", statOrder = { 1763 }, level = 52, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeath5"] = { type = "Suffix", affix = "of Permeation", "Gain (26-37) Mana per Enemy Killed", statOrder = { 1763 }, level = 66, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeath6"] = { type = "Suffix", affix = "of Retention", "Gain (38-50) Mana per Enemy Killed", statOrder = { 1763 }, level = 81, group = "ManaGainedFromEnemyDeath", weightKey = { "weapon", "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["LocalCriticalStrikeChance1"] = { type = "Suffix", affix = "of Needling", "(10-14)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChance2"] = { type = "Suffix", affix = "of Stinging", "(15-19)% increased Critical Strike Chance", statOrder = { 1464 }, level = 20, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChance3"] = { type = "Suffix", affix = "of Piercing", "(20-24)% increased Critical Strike Chance", statOrder = { 1464 }, level = 30, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChance4"] = { type = "Suffix", affix = "of Puncturing", "(25-29)% increased Critical Strike Chance", statOrder = { 1464 }, level = 44, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChance5"] = { type = "Suffix", affix = "of Penetrating", "(30-34)% increased Critical Strike Chance", statOrder = { 1464 }, level = 59, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChance6"] = { type = "Suffix", affix = "of Incision", "(35-38)% increased Critical Strike Chance", statOrder = { 1464 }, level = 73, group = "LocalCriticalStrikeChance", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "critical" }, }, + ["LocalCriticalMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(10-14)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 8, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(15-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 21, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(20-24)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 30, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(25-29)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 44, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(30-34)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 59, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplier6"] = { type = "Suffix", affix = "of Destruction", "+(35-38)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 73, group = "CriticalStrikeMultiplier", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["LocalIncreaseSocketedGemLevel1"] = { type = "Prefix", affix = "Paragon's", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "attack_staff", "attack_dagger", "staff", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0, 0, 0, 1000, 0 }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemUnsetRing1"] = { type = "Prefix", affix = "Exemplary", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 2, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemUnsetRing2"] = { type = "Prefix", affix = "Quintessential", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 50, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemUnsetRing3"] = { type = "Prefix", affix = "Flawless", "+3 to Level of Socketed Gems", statOrder = { 162 }, level = 76, group = "LocalIncreaseSocketedGemLevel", weightKey = { "unset_ring", "default", }, weightVal = { 250, 0 }, modTags = { "gem" }, }, + ["GlobalSpellGemsLevel1"] = { type = "Prefix", affix = "Magister's", "+1 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "caster", "gem" }, }, + ["GlobalSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Magister's", "+(1-2) to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 55, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "caster", "gem" }, }, + ["LocalIncreaseSocketedFireGemLevel1"] = { type = "Prefix", affix = "Flame Spinner's", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 2, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["LocalIncreaseSocketedFireGemLevel2_"] = { type = "Prefix", affix = "Lava Caller's", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 55, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["GlobalFireSpellGemsLevel1_"] = { type = "Prefix", affix = "Flame Shaper's", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["GlobalFireSpellGemsLevelTwoHand1__"] = { type = "Prefix", affix = "Flame Shaper's", "+(1-2) to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 2, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["GlobalFireSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Lava Conjurer's", "+3 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 77, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["LocalIncreaseSocketedColdGemLevel1"] = { type = "Prefix", affix = "Frost Weaver's", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 2, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["LocalIncreaseSocketedColdGemLevel2"] = { type = "Prefix", affix = "Winterbringer's", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 55, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["GlobalColdSpellGemsLevel1_"] = { type = "Prefix", affix = "Frost Singer's", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["GlobalColdSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Frost Singer's", "+(1-2) to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 2, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["GlobalColdSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Winter Beckoner's", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 77, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["LocalIncreaseSocketedLightningGemLevel1"] = { type = "Prefix", affix = "Thunder Lord's", "+1 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 2, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["LocalIncreaseSocketedLightningGemLevel2"] = { type = "Prefix", affix = "Tempest King's", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 55, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["GlobalLightningSpellGemsLevel1"] = { type = "Prefix", affix = "Thunderhand's", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 250, 250, 250, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, + ["GlobalLightningSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Thunderhand's", "+(1-2) to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 2, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, + ["GlobalLightningSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Tempest Master's", "+3 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 77, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 125, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, + ["LocalIncreaseSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Nihilist's", "+1 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 4, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, }, + ["LocalIncreaseSocketedChaosGemLevel2"] = { type = "Prefix", affix = "Anarchist's", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 55, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "attack_staff", "attack_dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos", "gem" }, }, + ["GlobalChaosSpellGemsLevel1"] = { type = "Prefix", affix = "Mad Lord's", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "chaos", "caster", "gem" }, }, + ["GlobalChaosSpellGemsLevelTwoHand1"] = { type = "Prefix", affix = "Mad Lord's", "+(1-2) to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 2, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos", "caster", "gem" }, }, + ["GlobalChaosSpellGemsLevelTwoHand2"] = { type = "Prefix", affix = "Splintermind's", "+3 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 77, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "caster", "gem" }, }, + ["GlobalPhysicalSpellGemsLevel1"] = { type = "Prefix", affix = "Lithomancer's", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "focus", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "physical", "caster", "gem" }, }, + ["GlobalPhysicalSpellGemsLevelTwoHand1_"] = { type = "Prefix", affix = "Lithomancer's", "+(1-2) to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 2, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical", "caster", "gem" }, }, + ["GlobalPhysicalSpellGemsLevelTwoHand2_"] = { type = "Prefix", affix = "Tecton's", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 77, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "caster", "gem" }, }, + ["LocalIncreaseSocketedSpellGemLevelRace"] = { type = "Prefix", affix = "Competitor's", "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, }, + ["LocalIncreaseSocketedMeleeGemLevel1"] = { type = "Prefix", affix = "Combatant's", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 8, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedMeleeGemLevel"] = { type = "Prefix", affix = "Weaponmaster's", "+2 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 63, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "bow", "wand", "focus", "shield", "weapon", "default", }, weightVal = { 0, 0, 0, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedBowGemLevel1"] = { type = "Prefix", affix = "Fletcher's", "+1 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 9, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedBowGemLevel2"] = { type = "Prefix", affix = "Sharpshooter's", "+2 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 64, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevel1"] = { type = "Prefix", affix = "Reanimator's", "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 14, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevel2"] = { type = "Prefix", affix = "Summoner's", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevel3_"] = { type = "Prefix", affix = "Necromancer's", "+3 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 86, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["GlobalIncreaseMinionSpellSkillGemLevel1"] = { type = "Prefix", affix = "Taskmaster's", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 14, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "minion", "gem" }, }, + ["GlobalIncreaseMinionSpellSkillGemLevel2"] = { type = "Prefix", affix = "Overseer's", "+2 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 75, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "helmet", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, }, + ["LocalIncreasedAccuracy1"] = { type = "Suffix", affix = "of Calm", "+(5-15) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy2"] = { type = "Suffix", affix = "of Steadiness", "+(16-60) to Accuracy Rating", statOrder = { 2024 }, level = 12, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy3"] = { type = "Suffix", affix = "of Accuracy", "+(61-100) to Accuracy Rating", statOrder = { 2024 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy4"] = { type = "Suffix", affix = "of Precision", "+(101-130) to Accuracy Rating", statOrder = { 2024 }, level = 26, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy5"] = { type = "Suffix", affix = "of the Sniper", "+(131-165) to Accuracy Rating", statOrder = { 2024 }, level = 33, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy6"] = { type = "Suffix", affix = "of the Marksman", "+(166-200) to Accuracy Rating", statOrder = { 2024 }, level = 41, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy7"] = { type = "Suffix", affix = "of the Deadeye", "+(201-250) to Accuracy Rating", statOrder = { 2024 }, level = 50, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy"] = { type = "Suffix", affix = "of the Ranger", "+(251-320) to Accuracy Rating", statOrder = { 2024 }, level = 63, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracy9_"] = { type = "Suffix", affix = "of the Assassin", "+(321-360) to Accuracy Rating", statOrder = { 2024 }, level = 80, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyEssence7"] = { type = "Suffix", affix = "of the Essence", "+(361-380) to Accuracy Rating", statOrder = { 2024 }, level = 82, group = "LocalAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew1"] = { type = "Suffix", affix = "of Steadiness", "+(80-130) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew2"] = { type = "Suffix", affix = "of Precision", "+(131-215) to Accuracy Rating", statOrder = { 2024 }, level = 20, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew3"] = { type = "Suffix", affix = "of the Sniper", "+(216-325) to Accuracy Rating", statOrder = { 2024 }, level = 40, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew4"] = { type = "Suffix", affix = "of the Marksman", "+(326-455) to Accuracy Rating", statOrder = { 2024 }, level = 60, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew5"] = { type = "Suffix", affix = "of the Ranger", "+(456-624) to Accuracy Rating", statOrder = { 2024 }, level = 75, group = "LocalAccuracyRating", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyNew6"] = { type = "Suffix", affix = "of Lioneye", "+(625-780) to Accuracy Rating", statOrder = { 2024 }, level = 85, group = "LocalAccuracyRating", weightKey = { "bow", "wand", "weapon", "default", }, weightVal = { 1000, 1000, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["CannotBeFrozenWarbands"] = { type = "Prefix", affix = "Mutewind", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AdditionalArrowBow1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 70, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack" }, }, + ["AdditionalArrowBow2_"] = { type = "Suffix", affix = "of Many", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 86, group = "AdditionalArrows", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "attack" }, }, + ["AdditionalArrowQuiver1_"] = { type = "Suffix", affix = "of Splintering", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 70, group = "AdditionalArrows", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, }, + ["MinionRunSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased Movement Speed", statOrder = { 1769 }, level = 10, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased Movement Speed", statOrder = { 1769 }, level = 26, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 42, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 58, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased Movement Speed", statOrder = { 1769 }, level = 74, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased Movement Speed", statOrder = { 1769 }, level = 82, group = "MinionRunSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed", "minion" }, }, + ["MinionLifeEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions have (13-15)% increased maximum Life", statOrder = { 1766 }, level = 10, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEssence3_"] = { type = "Suffix", affix = "of the Essence", "Minions have (16-18)% increased maximum Life", statOrder = { 1766 }, level = 26, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEssence4"] = { type = "Suffix", affix = "of the Essence", "Minions have (19-21)% increased maximum Life", statOrder = { 1766 }, level = 42, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions have (22-24)% increased maximum Life", statOrder = { 1766 }, level = 58, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions have (25-27)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions have (28-30)% increased maximum Life", statOrder = { 1766 }, level = 82, group = "MinionLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (7-10)% increased Damage", statOrder = { 1973 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "Minions deal (11-14)% increased Damage", statOrder = { 1973 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssence4_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (15-18)% increased Damage", statOrder = { 1973 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "Minions deal (19-22)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (23-26)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "Minions deal (27-30)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionAccuracyEssence2_"] = { type = "Suffix", affix = "of the Essence", "(13-15)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 10, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyEssence3_"] = { type = "Suffix", affix = "of the Essence", "(16-18)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 26, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyEssence4___"] = { type = "Suffix", affix = "of the Essence", "(19-21)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 42, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyEssence5"] = { type = "Suffix", affix = "of the Essence", "(22-24)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 58, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyEssence6"] = { type = "Suffix", affix = "of the Essence", "(25-27)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 74, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyEssence7_"] = { type = "Suffix", affix = "of the Essence", "(28-30)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 82, group = "MinionAccuracyRating", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "minion" }, }, + ["MinionDamageGlovesEssence2"] = { type = "Prefix", affix = "Essences", "Minions deal (13-15)% increased Damage", statOrder = { 1973 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageGlovesEssence3"] = { type = "Prefix", affix = "Essences", "Minions deal (16-18)% increased Damage", statOrder = { 1973 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageGlovesEssence4"] = { type = "Prefix", affix = "Essences", "Minions deal (19-21)% increased Damage", statOrder = { 1973 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageGlovesEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (22-24)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageGlovesEssence6___"] = { type = "Prefix", affix = "Essences", "Minions deal (25-27)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageGlovesEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (28-30)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand2"] = { type = "Suffix", affix = "of the Essence", "Minions deal (10-15)% increased Damage", statOrder = { 1973 }, level = 10, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand3_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (16-21)% increased Damage", statOrder = { 1973 }, level = 26, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand4"] = { type = "Suffix", affix = "of the Essence", "Minions deal (22-27)% increased Damage", statOrder = { 1973 }, level = 42, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand5_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (28-33)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand6"] = { type = "Suffix", affix = "of the Essence", "Minions deal (34-39)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEssenceTwoHand7_"] = { type = "Suffix", affix = "of the Essence", "Minions deal (40-45)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["BeltIncreasedFlaskChargesGained1"] = { type = "Suffix", affix = "of Refilling", "(5-10)% increased Flask Charges gained", statOrder = { 2183 }, level = 2, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargesGained2"] = { type = "Suffix", affix = "of Restocking", "(11-16)% increased Flask Charges gained", statOrder = { 2183 }, level = 16, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargesGained3_____"] = { type = "Suffix", affix = "of Replenishing", "(17-22)% increased Flask Charges gained", statOrder = { 2183 }, level = 32, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargesGained4"] = { type = "Suffix", affix = "of Pouring", "(23-28)% increased Flask Charges gained", statOrder = { 2183 }, level = 48, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargesGained5_"] = { type = "Suffix", affix = "of Brimming", "(29-34)% increased Flask Charges gained", statOrder = { 2183 }, level = 70, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargesGained6"] = { type = "Suffix", affix = "of Overflowing", "(35-40)% increased Flask Charges gained", statOrder = { 2183 }, level = 84, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskEffect1_"] = { type = "Prefix", affix = "Distilling", "Flasks applied to you have (4-6)% increased Effect", statOrder = { 2742 }, level = 45, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskEffect2"] = { type = "Prefix", affix = "Condensing", "Flasks applied to you have (7-9)% increased Effect", statOrder = { 2742 }, level = 65, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskEffect3"] = { type = "Prefix", affix = "Magnifying", "Flasks applied to you have (10-12)% increased Effect", statOrder = { 2742 }, level = 85, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 250, 0 }, modTags = { "flask" }, }, + ["BeltReducedFlaskChargesUsed1"] = { type = "Suffix", affix = "of Sipping", "(10-20)% reduced Flask Charges used", statOrder = { 2184 }, level = 3, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDuration1"] = { type = "Suffix", affix = "of Sipping", "(4-9)% increased Flask Effect Duration", statOrder = { 2187 }, level = 8, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDuration2"] = { type = "Suffix", affix = "of Tasting", "(10-15)% increased Flask Effect Duration", statOrder = { 2187 }, level = 34, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDuration3"] = { type = "Suffix", affix = "of Savouring", "(16-21)% increased Flask Effect Duration", statOrder = { 2187 }, level = 50, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDuration4"] = { type = "Suffix", affix = "of Relishing", "(22-27)% increased Flask Effect Duration", statOrder = { 2187 }, level = 66, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDuration5_"] = { type = "Suffix", affix = "of Reveling", "(28-33)% increased Flask Effect Duration", statOrder = { 2187 }, level = 82, group = "BeltIncreasedFlaskDuration", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["BeltFlaskLifeRecoveryRate1"] = { type = "Prefix", affix = "Restoring", "(5-10)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 5, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRate2"] = { type = "Prefix", affix = "Recovering", "(11-16)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 21, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRate3_"] = { type = "Prefix", affix = "Renewing", "(17-22)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 35, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRate4"] = { type = "Prefix", affix = "Refreshing", "(23-28)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 49, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRate5"] = { type = "Prefix", affix = "Rejuvenating", "(29-34)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 63, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRate6"] = { type = "Prefix", affix = "Regenerating", "(35-40)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 77, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(8-11)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(12-15)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 10, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(16-19)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 26, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence4"] = { type = "Prefix", affix = "Essences", "(20-23)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 42, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence5"] = { type = "Prefix", affix = "Essences", "(24-27)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 58, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence6"] = { type = "Prefix", affix = "Essences", "(28-31)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 74, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryRateEssence7"] = { type = "Prefix", affix = "Essences", "(32-35)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 82, group = "BeltFlaskLifeRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskManaRecoveryRate1_"] = { type = "Prefix", affix = "Affecting", "(5-10)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 5, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRate2"] = { type = "Prefix", affix = "Stirring", "(11-16)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 21, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRate3_"] = { type = "Prefix", affix = "Heartening", "(17-22)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 35, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRate4__"] = { type = "Prefix", affix = "Exciting", "(23-28)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 49, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRate5"] = { type = "Prefix", affix = "Galvanizing", "(29-34)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 63, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRate6"] = { type = "Prefix", affix = "Inspiring", "(35-40)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 77, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRateEssence1"] = { type = "Prefix", affix = "Essences", "(11-15)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 58, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRateEssence2"] = { type = "Prefix", affix = "Essences", "(16-20)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 74, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryRateEssence3"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 82, group = "BeltFlaskManaRecoveryRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana" }, }, + ["ChanceToAvoidShockEssence2_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 10, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToAvoidShockEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 26, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToAvoidShockEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 42, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToAvoidShockEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 58, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToAvoidShockEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 74, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToAvoidShockEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 82, group = "ReducedShockChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AttackerTakesDamage1"] = { type = "Prefix", affix = "Thorny", "Reflects (1-4) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamage2"] = { type = "Prefix", affix = "Spiny", "Reflects (5-10) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 10, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamage3"] = { type = "Prefix", affix = "Barbed", "Reflects (11-24) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamage4"] = { type = "Prefix", affix = "Jagged", "Reflects (25-50) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 35, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageEssence5"] = { type = "Prefix", affix = "Essences", "Reflects (51-100) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageEssence6"] = { type = "Prefix", affix = "Essences", "Reflects (101-150) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 74, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageEssence7"] = { type = "Prefix", affix = "Essences", "Reflects (151-200) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 82, group = "AttackerTakesDamageNoRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["ChanceToAvoidFreezeEssence3"] = { type = "Suffix", affix = "of the Essence", "(39-42)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidFreezeEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidFreezeEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidFreezeEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidFreezeEssence7"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AdditionalBlockChance1"] = { type = "Suffix", affix = "of Intercepting", "+(1-3)% Chance to Block", statOrder = { 2249 }, level = 10, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance2"] = { type = "Suffix", affix = "of Walling", "+(4-5)% Chance to Block", statOrder = { 2249 }, level = 25, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance3"] = { type = "Suffix", affix = "of Blocking", "+(6-7)% Chance to Block", statOrder = { 2249 }, level = 40, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance4_"] = { type = "Suffix", affix = "of the Stalwart", "+(8-9)% Chance to Block", statOrder = { 2249 }, level = 55, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance5"] = { type = "Suffix", affix = "of the Buttress", "+(10-11)% Chance to Block", statOrder = { 2249 }, level = 66, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance6"] = { type = "Suffix", affix = "of the Sentinel", "+(12-13)% Chance to Block", statOrder = { 2249 }, level = 77, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalBlockChance7"] = { type = "Suffix", affix = "of the Citadel", "+(14-15)% Chance to Block", statOrder = { 2249 }, level = 86, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalShieldBlockChance1"] = { type = "Suffix", affix = "of the Essence", "+(1-2)% Chance to Block", statOrder = { 2249 }, level = 42, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalShieldBlockChance2"] = { type = "Suffix", affix = "of the Essence", "+(3-4)% Chance to Block", statOrder = { 2249 }, level = 58, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalShieldBlockChance3"] = { type = "Suffix", affix = "of the Essence", "+(5-6)% Chance to Block", statOrder = { 2249 }, level = 74, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AdditionalShieldBlockChance4"] = { type = "Suffix", affix = "of the Essence", "+(7-8)% Chance to Block", statOrder = { 2249 }, level = 82, group = "IncreasedShieldBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["PhysicalDamageTakenAsFirePercentWarbands"] = { type = "Prefix", affix = "Redblade", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["ChanceToAvoidIgniteEssence4"] = { type = "Suffix", affix = "of the Essence", "(43-46)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 42, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToAvoidIgniteEssence5"] = { type = "Suffix", affix = "of the Essence", "(47-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 58, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToAvoidIgniteEssence6"] = { type = "Suffix", affix = "of the Essence", "(51-55)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 74, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToAvoidIgniteEssence7_"] = { type = "Suffix", affix = "of the Essence", "(56-60)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 82, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToBlockProjectileAttacks1_"] = { type = "Suffix", affix = "of Deflection", "+(1-2)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 8, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["ChanceToBlockProjectileAttacks2"] = { type = "Suffix", affix = "of Protection", "+(3-4)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 19, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["ChanceToBlockProjectileAttacks3"] = { type = "Suffix", affix = "of Cover", "+(5-6)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 30, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["ChanceToBlockProjectileAttacks4"] = { type = "Suffix", affix = "of Asylum", "+(7-8)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 55, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["ChanceToBlockProjectileAttacks5_"] = { type = "Suffix", affix = "of Refuge", "+(9-10)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 70, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["ChanceToBlockProjectileAttacks6"] = { type = "Suffix", affix = "of Sanctuary", "+(11-12)% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 81, group = "BlockVsProjectiles", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["AllDamageMasterVendorItem"] = { type = "Prefix", affix = "Leo's", "(5-15)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["ReducedManaReservationCostEssence4"] = { type = "Suffix", affix = "of the Essence", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 42, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ReducedManaReservationCostEssence5"] = { type = "Suffix", affix = "of the Essence", "6% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 58, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ReducedManaReservationCostEssence6"] = { type = "Suffix", affix = "of the Essence", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 74, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ReducedManaReservationCostEssence7"] = { type = "Suffix", affix = "of the Essence", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 82, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEssence4"] = { type = "Suffix", affix = "of the Essence", "(3-4)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 42, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEssence5__"] = { type = "Suffix", affix = "of the Essence", "(5-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 58, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEssence6_"] = { type = "Suffix", affix = "of the Essence", "(7-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 74, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ReducedLocalAttributeRequirements1"] = { type = "Suffix", affix = "of the Worthy", "18% reduced Attribute Requirements", statOrder = { 1075 }, level = 36, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, }, + ["ReducedLocalAttributeRequirements2"] = { type = "Suffix", affix = "of the Apt", "32% reduced Attribute Requirements", statOrder = { 1075 }, level = 60, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 1000, 850, 650, 750, 450, 550, 0 }, modTags = { }, }, + ["LightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 1433, 2500 }, level = 8, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["LightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 1433, 2500 }, level = 15, group = "LightRadiusAndAccuracy", weightKey = { "helmet", "ring", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["LightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1434, 2500 }, level = 30, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["LightRadiusAndAccuracyNew1"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1434, 2500 }, level = 8, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["LightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1434, 2500 }, level = 15, group = "LightRadiusAndAccuracyPercent", weightKey = { "helmet", "ring", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["LocalLightRadiusAndAccuracy1"] = { type = "Suffix", affix = "of Shining", "+(10-20) to Accuracy Rating", "5% increased Light Radius", statOrder = { 2024, 2500 }, level = 8, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalLightRadiusAndAccuracy2"] = { type = "Suffix", affix = "of Light", "+(21-40) to Accuracy Rating", "10% increased Light Radius", statOrder = { 2024, 2500 }, level = 15, group = "LocalLightRadiusAndAccuracy", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["LocalLightRadiusAndAccuracy3"] = { type = "Suffix", affix = "of Radiance", "(16-20)% increased Global Accuracy Rating", "15% increased Light Radius", statOrder = { 1434, 2500 }, level = 30, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, modTags = { "attack" }, }, + ["LocalLightRadiusAndAccuracyNew1_"] = { type = "Suffix", affix = "of Shining", "(9-11)% increased Global Accuracy Rating", "5% increased Light Radius", statOrder = { 1434, 2500 }, level = 8, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalLightRadiusAndAccuracyNew2"] = { type = "Suffix", affix = "of Light", "(12-15)% increased Global Accuracy Rating", "10% increased Light Radius", statOrder = { 1434, 2500 }, level = 15, group = "LocalLightRadiusAndAccuracyPercent", weightKey = { "weapon", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeEssence5"] = { type = "Suffix", affix = "of the Essence", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 58, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeEssence6"] = { type = "Suffix", affix = "of the Essence", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 74, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeEssence7"] = { type = "Suffix", affix = "of the Essence", "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 82, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["GainLifeOnBlock1"] = { type = "Suffix", affix = "of Repairing", "(5-15) Life gained when you Block", statOrder = { 1757 }, level = 11, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainLifeOnBlock2_"] = { type = "Suffix", affix = "of Resurgence", "(16-25) Life gained when you Block", statOrder = { 1757 }, level = 22, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainLifeOnBlock3"] = { type = "Suffix", affix = "of Renewal", "(26-40) Life gained when you Block", statOrder = { 1757 }, level = 36, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainLifeOnBlock4"] = { type = "Suffix", affix = "of Revival", "(41-60) Life gained when you Block", statOrder = { 1757 }, level = 48, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainLifeOnBlock5"] = { type = "Suffix", affix = "of Rebounding", "(61-85) Life gained when you Block", statOrder = { 1757 }, level = 60, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainLifeOnBlock6_"] = { type = "Suffix", affix = "of Revitalization", "(86-100) Life gained when you Block", statOrder = { 1757 }, level = 75, group = "GainLifeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "life" }, }, + ["GainManaOnBlock1"] = { type = "Suffix", affix = "of Redirection", "(4-12) Mana gained when you Block", statOrder = { 1758 }, level = 15, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, + ["GainManaOnBlock2"] = { type = "Suffix", affix = "of Transformation", "(13-21) Mana gained when you Block", statOrder = { 1758 }, level = 32, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, + ["GainManaOnBlock3"] = { type = "Suffix", affix = "of Conservation", "(22-30) Mana gained when you Block", statOrder = { 1758 }, level = 58, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, + ["GainManaOnBlock4"] = { type = "Suffix", affix = "of Utilisation", "(31-39) Mana gained when you Block", statOrder = { 1758 }, level = 75, group = "GainManaOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, + ["FishingLineStrength"] = { type = "Prefix", affix = "Filigree", "(20-40)% increased Fishing Line Strength", statOrder = { 2844 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["FishingPoolConsumption"] = { type = "Prefix", affix = "Calming", "(15-30)% reduced Fishing Pool Consumption", statOrder = { 2845 }, level = 1, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["FishingLureType"] = { type = "Prefix", affix = "Alluring", "Rhoa Feather Lure", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["FishingHookType"] = { type = "Suffix", affix = "of Snaring", "Karui Stone Hook", statOrder = { 2847 }, level = 1, group = "FishingHookType", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["FishingCastDistance"] = { type = "Suffix", affix = "of Flight", "(30-50)% increased Fishing Range", statOrder = { 2848 }, level = 1, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["FishingQuantity"] = { type = "Suffix", affix = "of Fascination", "(15-20)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, + ["FishingRarity"] = { type = "Suffix", affix = "of Bounty", "(25-40)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, + ["ChanceToDodge1"] = { type = "Suffix", affix = "of Mist", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodge2"] = { type = "Suffix", affix = "of Haze", "+4% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodge3"] = { type = "Suffix", affix = "of Fog", "+6% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeEssence4"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 42, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeEssence5"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 58, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeEssence6"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 74, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeEssence7"] = { type = "Suffix", affix = "of the Essence", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 82, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpells1"] = { type = "Suffix", affix = "of Prayers", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 35, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpells2"] = { type = "Suffix", affix = "of Invocations", "+4% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 62, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpells3"] = { type = "Suffix", affix = "of Incantations", "+6% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 78, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpellsEssence5"] = { type = "Suffix", affix = "of the Essence", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpellsEssence6"] = { type = "Suffix", affix = "of the Essence", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodgeSpellsEssence7"] = { type = "Suffix", affix = "of the Essence", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChaosResistanceWhileUsingFlaskEssence1"] = { type = "Suffix", affix = "of the Essence", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 63, group = "ChaosResistanceWhileUsingFlask", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "chaos", "resistance" }, }, + ["SpellBlockPercentage1__"] = { type = "Suffix", affix = "of the Barrier", "(4-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 30, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["SpellBlockPercentage2"] = { type = "Suffix", affix = "of the Bulwark", "(7-9)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 52, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["SpellBlockPercentage3_"] = { type = "Suffix", affix = "of the Barricade", "(10-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 71, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["SpellBlockPercentage4_"] = { type = "Suffix", affix = "of the Bastion", "(13-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 84, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["LocalIncreasedBlockPercentage1"] = { type = "Prefix", affix = "Steadfast", "(40-45)% increased Chance to Block", statOrder = { 90 }, level = 2, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, + ["LocalIncreasedBlockPercentage2"] = { type = "Prefix", affix = "Unrelenting", "(46-51)% increased Chance to Block", statOrder = { 90 }, level = 15, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, + ["LocalIncreasedBlockPercentage3"] = { type = "Prefix", affix = "Adamant", "(52-57)% increased Chance to Block", statOrder = { 90 }, level = 35, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, + ["LocalIncreasedBlockPercentage4"] = { type = "Prefix", affix = "Warded", "(58-63)% increased Chance to Block", statOrder = { 90 }, level = 48, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, + ["LocalIncreasedBlockPercentage5"] = { type = "Prefix", affix = "Unwavering", "(64-69)% increased Chance to Block", statOrder = { 90 }, level = 61, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, + ["LocalIncreasedBlockPercentage6"] = { type = "Prefix", affix = "Enduring", "(70-75)% increased Chance to Block", statOrder = { 90 }, level = 77, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, + ["LocalIncreasedBlockPercentage7"] = { type = "Prefix", affix = "Unyielding", "(76-81)% increased Chance to Block", statOrder = { 90 }, level = 86, group = "LocalIncreasedBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 1000, 1000, 1000, 1000, 500, 500, 0 }, modTags = { "block" }, }, + ["ShieldSpellBlockPercentage1"] = { type = "Prefix", affix = "Mystic", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 16, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["ShieldSpellBlockPercentage2"] = { type = "Prefix", affix = "Clairvoyant", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 28, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["ShieldSpellBlockPercentage3"] = { type = "Prefix", affix = "Enigmatic", "(8-9)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 40, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["ShieldSpellBlockPercentage4"] = { type = "Prefix", affix = "Enlightened", "(10-11)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 55, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["ShieldSpellBlockPercentage5"] = { type = "Prefix", affix = "Seer's", "(12-13)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 66, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["ShieldSpellBlockPercentage6"] = { type = "Prefix", affix = "Oracle's", "(14-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 77, group = "SpellBlockPercentage", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "dex_shield", "dex_int_shield", "focus", "default", }, weightVal = { 500, 500, 500, 500, 1000, 1000, 0 }, modTags = { "block" }, }, + ["MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(2-5)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 20, group = "MaximumFrenzyCharges", weightKey = { "boots", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "frenzy_charge" }, }, + ["MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 20, group = "IncreasedMaximumPowerCharges", weightKey = { "two_hand_weapon", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, }, + ["MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "helmet", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "minion" }, }, + ["SocketedVaalGemsIncreaseCorrupted"] = { type = "Corrupted", affix = "", "+(1-2) to Level of Socketed Vaal Gems", statOrder = { 188 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { "helmet", "gloves", "boots", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "vaal", "gem" }, }, + ["DamageTakenFlatReductionCorrupted1"] = { type = "Corrupted", affix = "", "-(10-5) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, + ["DamageTakenFlatReductionCorrupted2"] = { type = "Corrupted", affix = "", "-(16-11) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 30, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, + ["DamageTakenFlatReductionCorrupted3"] = { type = "Corrupted", affix = "", "-(24-17) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 60, group = "PhysicalAttackDamageTaken", weightKey = { "amulet", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "attack" }, }, + ["FireDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["ColdDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["IncreasedCastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "ring", "gloves", "focus", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "speed" }, }, + ["ChanceToFleeCorrupted"] = { type = "Corrupted", affix = "", "5% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { "staff", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, }, + ["LocalAddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1390 }, level = 20, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1390 }, level = 40, group = "LocalChaosDamage", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (6-8) Chaos Damage to Attacks", statOrder = { 1387 }, level = 20, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (7-9) to (11-13) Chaos Damage to Attacks", statOrder = { 1387 }, level = 40, group = "ChaosDamage", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SpellBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(2-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "staff", "amulet", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "block" }, }, + ["AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(4-8)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, }, + ["WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(6-12)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["CullingStrikeCorrupted"] = { type = "Corrupted", affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { "sword", "axe", "dagger", "wand", "bow", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { }, }, + ["ManaOnLifeLostCorrupted"] = { type = "Corrupted", affix = "", "(3-6)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "amulet", "ring", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resistance" }, }, + ["AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["ChanceToAvoidFreezeCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "amulet", "body_armour", "ring", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidIgniteCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { "amulet", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChaosResistCorruption"] = { type = "Corrupted", affix = "", "+(2-4)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { "fishing_rod", "weapon", "jewel", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChanceToDodgeCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["CannotBeKnockedBackCorruption"] = { type = "Corrupted", affix = "", "Cannot be Knocked Back", statOrder = { 1521 }, level = 1, group = "ImmuneToKnockback", weightKey = { "boots", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GemLevelCorruption"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "gem" }, }, + ["AvoidShockCorruption"] = { type = "Corrupted", affix = "", "(10-20)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "ReducedShockChance", weightKey = { "body_armour", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["CannotBeLeechedFromCorruption"] = { type = "Corrupted", affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2440 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["DamageTakenFromManaBeforeLifeCorruption"] = { type = "Corrupted", affix = "", "(3-5)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageConversionFireCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["DamageConversionColdCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["DamageConversionLighningCorruption"] = { type = "Corrupted", affix = "", "(10-20)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "MonsterConvertPhysicalDamageToLightning", weightKey = { "quiver", "sceptre", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["AdditionalArrowsCorruption"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 1, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["AdditionalAOERangeCorruption"] = { type = "Corrupted", affix = "", "(4-6)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["IncreasedDurationCorruption"] = { type = "Corrupted", affix = "", "(5-8)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["AdditionalTrapsCorruption_"] = { type = "Corrupted", affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2255 }, level = 1, group = "TrapsAllowed", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["MaximumEnduranceChargesCorruption_"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, }, + ["DualWieldBlockCorruption"] = { type = "Corrupted", affix = "", "+(3-6)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "sceptre", "axe", "mace", "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "block" }, }, + ["AdditionalPierceCorruption"] = { type = "Corrupted", affix = "", "Arrows Pierce an additional Target", statOrder = { 1791 }, level = 1, group = "AdditionalArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["GlobalPierceCorruption"] = { type = "Corrupted", affix = "", "(4-8)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "speed" }, }, + ["CurseOnHitTemporalChainsCurruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2522 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["CurseOnHitVulnerabilityCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["CurseOnHitElementalWeaknessCorruption"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["SupportedByCastOnStunCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast when Stunned", statOrder = { 477 }, level = 35, group = "SupportedByCastOnStun", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByCastOnCritCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Cast On Critical Strike", statOrder = { 472 }, level = 35, group = "SupportedByCastOnCrit", weightKey = { "gloves", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByMeleeSplashCorruption"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Melee Splash", statOrder = { 471 }, level = 20, group = "SupportedByMeleeSplash", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByAddedFireDamageCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 12 Added Fire Damage", statOrder = { 462 }, level = 48, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { "two_hand_weapon", "mace", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByStunCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 6 Stun", statOrder = { 479 }, level = 38, group = "SupportedByStun", weightKey = { "mace", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sceptre", "rapier", "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["SocketedSkillsManaMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 95% Cost & Reservation Multiplier", statOrder = { 530 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "gem" }, }, + ["SupportedByElementalProliferationCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Elemental Proliferation", statOrder = { 466 }, level = 12, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByAccuracyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Additional Accuracy", statOrder = { 480 }, level = 48, group = "SupportedByAccuracy", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByMultistrikeCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 481 }, level = 28, group = "SupportedByMultistrike", weightKey = { "two_hand_weapon", "sword", "default", }, weightVal = { 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByAreaOfEffectCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Increased Area of Effect", statOrder = { 224 }, level = 24, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByLifeLeechCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 483 }, level = 59, group = "SupportedByLifeLeech", weightKey = { "claw", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByCriticalMultiplierCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 14 Increased Critical Damage", statOrder = { 485 }, level = 35, group = "SupportedByCriticalMultiplier", weightKey = { "dagger", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByForkCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 1 Fork", statOrder = { 486 }, level = 6, group = "SupportedByFork", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByWeaponElementalDamageCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 12 Elemental Damage with Attacks", statOrder = { 487 }, level = 24, group = "SupportedByWeaponElementalDamage", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["SupportedByFasterCastCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 500 }, level = 24, group = "DisplaySocketedGemsGetFasterCast", weightKey = { "sceptre", "default", }, weightVal = { 0, 0 }, modTags = { "support", "gem" }, }, + ["PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Elements Skill", statOrder = { 645 }, level = 45, group = "PuritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["CriticalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Assassin's Mark Skill", statOrder = { 647 }, level = 31, group = "CriticalWeaknessSkill", weightKey = { "gloves", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["PurityOfFireSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Fire Skill", statOrder = { 623 }, level = 45, group = "PurityOfFireSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["PurityOfColdSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Ice Skill", statOrder = { 629 }, level = 45, group = "PurityOfColdSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Purity of Lightning Skill", statOrder = { 631 }, level = 45, group = "PurityOfLightningSkill", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 7 Wrath Skill", statOrder = { 648 }, level = 28, group = "WrathSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 11 Hatred Skill", statOrder = { 649 }, level = 44, group = "HatredSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["AngerSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Anger Skill", statOrder = { 650 }, level = 56, group = "AngerSkill", weightKey = { "helmet", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["DeterminationSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Determination Skill", statOrder = { 651 }, level = 61, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Grace Skill", statOrder = { 652 }, level = 61, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 16 Discipline Skill", statOrder = { 654 }, level = 61, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ProjectileWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Sniper's Mark Skill", statOrder = { 658 }, level = 58, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ElementalWeaknessSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Elemental Weakness Skill", statOrder = { 659 }, level = 31, group = "ElementalWeaknessSkill", weightKey = { "wand", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["VulnerabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 10 Vulnerability Skill", statOrder = { 661 }, level = 31, group = "VulnerabilitySkill", weightKey = { "axe", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ClaritySkillCorrupted1"] = { type = "Corrupted", affix = "", "Grants Level 4 Clarity Skill", statOrder = { 641 }, level = 19, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["ClaritySkillCorrupted2"] = { type = "Corrupted", affix = "", "Grants Level 8 Clarity Skill", statOrder = { 641 }, level = 32, group = "ClaritySkill", weightKey = { "amulet", "belt", "default", }, weightVal = { 0, 0, 0 }, modTags = { "skill" }, }, + ["ClaritySkillCorrupted3"] = { type = "Corrupted", affix = "", "Grants Level 12 Clarity Skill", statOrder = { 641 }, level = 47, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ClaritySkillCorrupted4"] = { type = "Corrupted", affix = "", "Grants Level 16 Clarity Skill", statOrder = { 641 }, level = 59, group = "ClaritySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Frostbite Skill", statOrder = { 637 }, level = 46, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Flammability Skill", statOrder = { 632 }, level = 46, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Conductivity Skill", statOrder = { 636 }, level = 46, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["TemporalChainsSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Temporal Chains Skill", statOrder = { 638 }, level = 40, group = "TemporalChainsSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["HasteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 14 Haste Skill", statOrder = { 639 }, level = 40, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["VitalitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 15 Vitality Skill", statOrder = { 643 }, level = 35, group = "VitalitySkill", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "skill" }, }, + ["FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, }, + ["FishingRarityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "drop" }, }, + ["CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "red_herring", "caster", "speed" }, }, + ["CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2855 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 0, 0 }, modTags = { "vaal", "drop" }, }, + ["V2AddedArmourWhileStationaryCorrupted1"] = { type = "Corrupted", affix = "", "+(35-60) Armour while stationary", statOrder = { 4314 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["V2AddedArmourWhileStationaryCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) Armour while stationary", statOrder = { 4314 }, level = 31, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour" }, }, + ["V2AddedArmourWhileStationaryCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) Armour while stationary", statOrder = { 4314 }, level = 75, group = "AddedArmourWhileStationary", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, }, + ["V2AddedColdDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-4) to (7-8) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["V2AddedColdDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-9) to (13-16) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 31, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["V2AddedColdDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (12-16) to (24-28) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 81, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["V2AddedColdDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(8-11) to (18-21) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 1, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2AddedColdDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(20-25) to (38-45) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 31, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2AddedColdDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-35) to (55-62) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 75, group = "AddedColdDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2AddedEvasionWhileMovingCorrupted1_"] = { type = "Corrupted", affix = "", "+(35-60) to Global Evasion Rating while moving", statOrder = { 6878 }, level = 1, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["V2AddedEvasionWhileMovingCorrupted2"] = { type = "Corrupted", affix = "", "+(61-138) to Global Evasion Rating while moving", statOrder = { 6878 }, level = 31, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["V2AddedEvasionWhileMovingCorrupted3"] = { type = "Corrupted", affix = "", "+(139-322) to Global Evasion Rating while moving", statOrder = { 6878 }, level = 75, group = "AddedEvasionWhileMovingCorrupted", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, }, + ["V2AddedFireDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds (3-5) to (7-8) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["V2AddedFireDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (7-10) to (15-18) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 31, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["V2AddedFireDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (13-18) to (28-33) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 82, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["V2AddedFireDamageToBowAttacksCorrupted1__"] = { type = "Corrupted", affix = "", "(11-14) to (21-25) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 1, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2AddedFireDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(24-31) to (46-55) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 31, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2AddedFireDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(29-39) to (59-69) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 75, group = "AddedFireDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2AddedLightningDamageCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (14-15) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["V2AddedLightningDamageCorrupted2"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 31, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["V2AddedLightningDamageCorrupted3"] = { type = "Corrupted", affix = "", "Adds (1-5) to (50-52) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 83, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted1_"] = { type = "Corrupted", affix = "", "(1-3) to (38-39) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 1, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted2"] = { type = "Corrupted", affix = "", "(3-7) to (81-85) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 31, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2AddedLightningDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(3-8) to (101-106) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 75, group = "AddedLightningDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2AddedPhysicalDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(3-4) to (6-10) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2AddedPhysicalDamageToBowAttacksCorrupted2___"] = { type = "Corrupted", affix = "", "(5-7) to (10-14) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 31, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2AddedPhysicalDamageToBowAttacksCorrupted3"] = { type = "Corrupted", affix = "", "(9-12) to (16-19) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 75, group = "AddedPhysicalDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2AddedChaosDamageToBowAttacksCorrupted1"] = { type = "Corrupted", affix = "", "(23-29) to (37-43) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 81, group = "AddedChaosDamageToBowAttacksCorrupted", weightKey = { "quiver", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["V2AdditionalAOERangeCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2AdditionalArrowsCorrupted"] = { type = "Corrupted", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 75, group = "AdditionalArrows", weightKey = { "quiver", "bow", "default", }, weightVal = { 200, 200, 0 }, modTags = { "attack" }, }, + ["V2AdditionalChainCorrupted"] = { type = "Corrupted", affix = "", "Arrows Chain +1 times", statOrder = { 1788 }, level = 80, group = "AdditionalArrowChain", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["V2ChanceToSuppressSpells_"] = { type = "Corrupted", affix = "", "+(8-12)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["V2AdditionalCriticalStrikeMultiplierUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "+(20-25)% to Critical Strike Multiplier during any Flask Effect", statOrder = { 5953 }, level = 60, group = "AdditionalCriticalStrikeMultiplierUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "damage", "critical" }, }, + ["V2AdditionalCurseCorrupted"] = { type = "Corrupted", affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["V2AdditionalPhysicalDamageReductionWhileStationaryCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% additional Physical Damage Reduction while stationary", statOrder = { 4313 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, + ["V2AdditionalProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 1, group = "AdditionalProjectilesCorrupted", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2AngerSkillReducedCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Anger Skill", statOrder = { 650 }, level = 56, group = "AngerSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2AttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, + ["V2BlindImmunityCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Blinded", statOrder = { 2974 }, level = 1, group = "ImmunityToBlind", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2BlockChanceCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "MonsterBlock", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["V2CanCatchCorruptFishCorrupted"] = { type = "Corrupted", affix = "", "You can catch Corrupted Fish", statOrder = { 2855 }, level = 1, group = "CorruptFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "vaal", "drop" }, }, + ["V2CannotGainBleedingCorrupted_"] = { type = "Corrupted", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4215 }, level = 60, group = "BleedingImmunity", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["V2AvoidIgniteCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 40, group = "CannotBeIgnited", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2CannotBePoisonedCorrupted"] = { type = "Corrupted", affix = "", "Cannot be Poisoned", statOrder = { 3369 }, level = 40, group = "CannotBePoisoned", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2CastSpeedCorrupted"] = { type = "Corrupted", affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "red_herring", "caster", "speed" }, }, + ["V2ChanceToBleedOnHitAndIncreasedDamageToBleedingTargetsCorrupted_"] = { type = "Corrupted", affix = "", "20% chance to cause Bleeding on Hit", "(30-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2483, 2491 }, level = 1, group = "ChanceToBleedOnHitAndIncreasedDamageToBleedingTargets", weightKey = { "axe", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["V2ChanceToDodgeCorrupted"] = { type = "Corrupted", affix = "", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2ChanceToGainEnduranceChargeOnStunCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5687 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "sceptre", "staff", "mace", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "endurance_charge" }, }, + ["V2ChanceToGainFortifyOnMeleeHitCorrupted"] = { type = "Corrupted", affix = "", "Melee Hits have (10-15)% chance to Fortify", statOrder = { 2264 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { "sceptre", "wand", "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, }, + ["V2ChanceToGainFrenzyChargeOnKillCorrupted"] = { type = "Corrupted", affix = "", "(9-11)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "dagger", "claw", "bow", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge" }, }, + ["V2ChanceToGainOnslaughtOnKillCorrupted_"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "sceptre", "wand", "dagger", "claw", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["V2ChanceToGainPowerChargeOnCritCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "wand", "dagger", "claw", "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "power_charge", "critical" }, }, + ["V2UnholyMightOnKillPercentChanceCorrupted"] = { type = "Corrupted", affix = "", "(10-15)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 1, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "dagger", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["V2ChanceToSpellDodgeCorrupted_"] = { type = "Corrupted", affix = "", "+(6-9)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2ClaritySkillReducedCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Clarity Skill", statOrder = { 641 }, level = 56, group = "ClaritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2ColdDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 50, group = "ColdDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["V2ConductivitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Conductivity Skill", statOrder = { 636 }, level = 56, group = "ConductivitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2CurseOnHitDespair"] = { type = "Corrupted", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 30, group = "CurseOnHitDespair", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2CurseOnHitElementalWeaknessCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 30, group = "CurseOnHitLevelElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2CurseOnHitEnfeeble"] = { type = "Corrupted", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2529 }, level = 30, group = "CurseOnHitEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2CurseOnHitTemporalChainsCurrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2522 }, level = 30, group = "CurseOnHitLevelTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2CurseOnHitVulnerabilityCorrupted"] = { type = "Corrupted", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 30, group = "CurseOnHitLevelVulnerability", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2DespairSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Despair Skill", statOrder = { 628 }, level = 56, group = "DespairSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2DeterminationSkillCorrupted__"] = { type = "Corrupted", affix = "", "Grants Level 23 Determination Skill", statOrder = { 651 }, level = 56, group = "DeterminationSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, + ["V2DisciplineSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Discipline Skill", statOrder = { 654 }, level = 56, group = "DisciplineSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, + ["V2DodgeAttackHitsWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10178 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2DodgeSpellHitsWhileMovingCorrupted"] = { type = "Corrupted", affix = "", "+(6-10)% chance to Suppress Spell Damage while moving", statOrder = { 10178 }, level = 60, group = "DodgeSpellHitsWhileMoving", weightKey = { "boots", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2DualWieldBlockCorrupted"] = { type = "Corrupted", affix = "", "+(8-10)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { "claw", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["V2ElementalDamagePenetrationCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "wand", "rapier", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["V2FireDamageLifeLeechPermyriadCorrupted_"] = { type = "Corrupted", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 50, group = "FireDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["V2FishingQuantityCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, + ["V2FishingRarityCorrupted_"] = { type = "Corrupted", affix = "", "(5-10)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, + ["V2FlammabilitySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Flammability Skill", statOrder = { 632 }, level = 56, group = "FlammabilitySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2FrostbiteSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Frostbite Skill", statOrder = { 637 }, level = 56, group = "FrostbiteSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2GainFrenzyChargeAfterSpending200ManaCorrupted"] = { type = "Corrupted", affix = "", "Gain a Frenzy Charge after Spending a total of 200 Mana", statOrder = { 6701 }, level = 1, group = "GainFrenzyChargeAfterSpending200Mana", weightKey = { "rapier", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, }, + ["V2GemLevelCorrupted"] = { type = "Corrupted", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { "boots", "gloves", "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "gem" }, }, + ["V2GlobalCriticalStrikeMultiplierCorrupted"] = { type = "Corrupted", affix = "", "+(25-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { "dagger", "claw", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["V2GraceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Grace Skill", statOrder = { 652 }, level = 56, group = "GraceSkill", weightKey = { "shield", "default", }, weightVal = { 333, 0 }, modTags = { "skill" }, }, + ["V2HasteSkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 21 Haste Skill", statOrder = { 639 }, level = 56, group = "HasteSkill", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2HatredSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Hatred Skill", statOrder = { 649 }, level = 56, group = "HatredSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2MalevolenceSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Malevolence Skill", statOrder = { 712 }, level = 56, group = "MalevolenceSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2ZealotrySkillCorrupted_"] = { type = "Corrupted", affix = "", "Grants Level 23 Zealotry Skill", statOrder = { 730 }, level = 56, group = "ZealotrySkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2PrideSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Pride Skill", statOrder = { 716 }, level = 56, group = "PrideSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2IncreasedAreaOfEffect1hCorrupted"] = { type = "Corrupted", affix = "", "(15-20)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "dagger", "claw", "rapier", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { }, }, + ["V2IncreasedAreaOfEffect2hCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["V2IncreasedAtackCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "Attacks have +(0.5-0.8)% to Critical Strike Chance", statOrder = { 4792 }, level = 60, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["V2IncreasedAttackSpeedCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "attack", "speed" }, }, + ["V2IncreasedAttackSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Attack Speed during any Flask Effect", statOrder = { 3300 }, level = 60, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "attack", "speed" }, }, + ["V2IncreasedBurningDamageCorrupted"] = { type = "Corrupted", affix = "", "(30-40)% increased Burning Damage", statOrder = { 1877 }, level = 40, group = "BurnDamage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["V2IncreasedCastSpeedCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "gloves", "ring", "default", }, weightVal = { 1000, 500, 0 }, modTags = { "caster", "speed" }, }, + ["V2IncreasedCastSpeedUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Cast Speed during any Flask Effect", statOrder = { 5466 }, level = 60, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "caster", "speed" }, }, + ["V2IncreasedChillEffectCorrupted"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 40, group = "ChillEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2IncreasedCriticalStrikeUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(35-40)% increased Critical Strike Chance during any Flask Effect", statOrder = { 5922 }, level = 1, group = "IncreasedCriticalStrikeUnderFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "critical" }, }, + ["V2IncreasedDamageCorrupted_"] = { type = "Corrupted", affix = "", "(40-50)% increased Damage", statOrder = { 1191 }, level = 1, group = "IncreasedDamage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2IncreasedDamageOverTimeCorrupted_"] = { type = "Corrupted", affix = "", "(50-60)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DamageOverTime", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2IncreasedDurationCorrupted"] = { type = "Corrupted", affix = "", "(12-15)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2IncreasedEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["V2IncreasedGlobalPhysicalDamageCorrupted"] = { type = "Corrupted", affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["V2IncreasedLifeCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["V2IncreasedLifeRegenerationPerSecondCorrupted"] = { type = "Corrupted", affix = "", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["V2IncreasedMovementVelocityUnderFlaskEffectCorrupted"] = { type = "Corrupted", affix = "", "(8-12)% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 60, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "speed" }, }, + ["V2IncreasedProjectileDamageForEachChainCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (20-25)% increased Damage with Hits and Ailments for each time they have Chained", statOrder = { 9733 }, level = 40, group = "IncreasedProjectileDamageForEachChain", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2IncreasedProjectileDamageForEachPierceCorrupted"] = { type = "Corrupted", affix = "", "Projectiles deal (8-10)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9734 }, level = 40, group = "ProjectileDamagePerEnemyPierced", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2IncreasedShockEffectCorrupted_"] = { type = "Corrupted", affix = "", "(25-30)% increased Effect of Shock", statOrder = { 10008 }, level = 40, group = "ShockEffect", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2IncreasedSpellCriticalStrikeCorruption"] = { type = "Corrupted", affix = "", "+(0.5-0.8)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 60, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "critical" }, }, + ["V2LevelOfSocketedColdGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["V2LevelOfSocketedFireGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["V2LevelOfSocketedLightningGemsCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevelCorrupted", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["V2LightningDamageLifeLeechPermyriadCorrupted"] = { type = "Corrupted", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 50, group = "LightningDamageLifeLeechPermyriad", weightKey = { "helmet", "amulet", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["V2LocalAddedChaosDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (3-5) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["V2LocalAddedChaosDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (6-8) to (11-13) Chaos Damage", statOrder = { 1390 }, level = 31, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["V2LocalAddedChaosDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-11) to (19-23) Chaos Damage", statOrder = { 1390 }, level = 84, group = "LocalChaosDamage", weightKey = { "dagger", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["V2LocalAddedColdDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (6-8) to (13-15) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedColdDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (14-18) to (27-32) Cold Damage", statOrder = { 1371 }, level = 31, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedColdDamage1hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (17-23) to (24-40) Cold Damage", statOrder = { 1371 }, level = 84, group = "LocalColdDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedColdDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (9-13) to (20-23) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedColdDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (22-27) to (36-44) Cold Damage", statOrder = { 1371 }, level = 31, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedColdDamage2hCorrupted3_"] = { type = "Corrupted", affix = "", "Adds (26-32) to (45-55) Cold Damage", statOrder = { 1371 }, level = 84, group = "LocalColdDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["V2LocalAddedFireDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedFireDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (17-22) to (33-39) Fire Damage", statOrder = { 1362 }, level = 31, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedFireDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (21-28) to (40-48) Fire Damage", statOrder = { 1362 }, level = 84, group = "LocalFireDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedFireDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (12-17) to (23-27) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedFireDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (27-31) to (39-50) Fire Damage", statOrder = { 1362 }, level = 31, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedFireDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (31-39) to (52-61) Fire Damage", statOrder = { 1362 }, level = 84, group = "LocalFireDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["V2LocalAddedLightningDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (1-2) to (27-28) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedLightningDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (2-5) to (58-61) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedLightningDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (2-6) to (72-76) Lightning Damage", statOrder = { 1382 }, level = 84, group = "LocalLightningDamage", weightKey = { "sword", "mace", "axe", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedLightningDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds (2-3) to (35-39) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedLightningDamage2hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-7) to (73-84) Lightning Damage", statOrder = { 1382 }, level = 31, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedLightningDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-9) to (103-107) Lightning Damage", statOrder = { 1382 }, level = 84, group = "LocalLightningDamage", weightKey = { "bow", "staff", "default", }, weightVal = { 250, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted2"] = { type = "Corrupted", affix = "", "Adds (3-4) to (5-7) Physical Damage", statOrder = { 1276 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalAddedPhysicalDamage1hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (5-7) to (10-12) Physical Damage", statOrder = { 1276 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "wand", "dagger", "rapier", "claw", "sceptre", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted1"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted2__"] = { type = "Corrupted", affix = "", "Adds (4-5) to (6-8) Physical Damage", statOrder = { 1276 }, level = 31, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalAddedPhysicalDamage2hCorrupted3"] = { type = "Corrupted", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1276 }, level = 84, group = "LocalPhysicalDamage", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalBlockChanceCorrupted"] = { type = "Corrupted", affix = "", "+(4-5)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["V2LocalIncreasedAttackSpeedBowCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, + ["V2LocalIncreasedAttackSpeed1hCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "one_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["V2LocalIncreasedAttackSpeed2hCorrupted_"] = { type = "Corrupted", affix = "", "(5-7)% increased Attack Speed", statOrder = { 1413 }, level = 70, group = "LocalIncreasedAttackSpeed", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["V2LocalIncreasedAttackSpeedWandCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { "wand", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "speed" }, }, + ["V2IncreasedCastSpeedCorrupted__"] = { type = "Corrupted", affix = "", "(12-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "sceptre", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["V2LocalIncreasedCriticalStrikeChance1hCorrupted1"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "wand", "rapier", "claw", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["V2LocalIncreasedCriticalStrikeChance2hCorrupted_"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "bow", "staff", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["V2LocalIncreasedCriticalStrikeChance1hCorrupted2__"] = { type = "Corrupted", affix = "", "(14-18)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { "dagger", "sceptre", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalIncreasedPhysicalDamageBowCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "bow", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalIncreasedPhysicalDamageCorrupted1"] = { type = "Corrupted", affix = "", "(10-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2LocalIncreasedPhysicalDamageCorrupted2"] = { type = "Corrupted", affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { "rapier", "sword", "axe", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["V2IncreasedSpellDamage1hCorrupted"] = { type = "Corrupted", affix = "", "(50-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "dagger", "default", }, weightVal = { 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["V2LocalMeleeWeaponRangeCorrupted"] = { type = "Corrupted", affix = "", "+(0.1-0.2) metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "sword", "mace", "staff", "bow", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "attack" }, }, + ["V2ManaOnHitCorrupted"] = { type = "Corrupted", affix = "", "Gain (4-6) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 40, group = "ManaGainPerTarget", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["V2MaximumEnduranceChargesCorruption"] = { type = "Corrupted", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge" }, }, + ["V2MaxFrenzyChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "frenzy_charge" }, }, + ["V2MaxPowerChargesCorrupted"] = { type = "Corrupted", affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge" }, }, + ["V2MaximumBlockCorruption"] = { type = "Corrupted", affix = "", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 60, group = "MaximumBlockChance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["V2MaximumResistanceCorrupted"] = { type = "Corrupted", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 80, group = "MaximumResistances", weightKey = { "amulet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resistance" }, }, + ["V2MovementVelocityCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "amulet", "boots", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["V2PercentageOfBlockAppliesToSpellBlockCorrupted_"] = { type = "Corrupted", affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "block" }, }, + ["V2SpellBlockPercentageCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block" }, }, + ["V2PhysicalDamageAddedAsColdCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "ColdDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["V2PhysicalDamageAddedAsFireCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "FireDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["V2PhysicalDamageAddedAsLightningCorrupted"] = { type = "Corrupted", affix = "", "Gain (8-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 1, group = "LightningDamageAsPortionOfDamage", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["V2PhysicalDamageTakenAsColdCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 60, group = "PhysicalDamageTakenAsCold", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["V2PhysicalDamageTakenAsFireCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["V2PhysicalDamageTakenAsLightningCorrupted"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 60, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["V2PhysicalDamageTakenAsChaosCorrupted_"] = { type = "Corrupted", affix = "", "(6-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 60, group = "PhysicalDamageTakenAsChaos", weightKey = { "shield", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos" }, }, + ["V2PointBlankCorrupted"] = { type = "Corrupted", affix = "", "Point Blank", statOrder = { 10801 }, level = 1, group = "PointBlank", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "attack" }, }, + ["V2PurityOfFireSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Fire Skill", statOrder = { 623 }, level = 56, group = "PurityOfFireSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2PurityOfColdSkillCorrupted___"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Ice Skill", statOrder = { 629 }, level = 56, group = "PurityOfColdSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2PurityOfLightningSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 23 Purity of Lightning Skill", statOrder = { 631 }, level = 56, group = "PurityOfLightningSkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2PuritySkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Purity of Elements Skill", statOrder = { 645 }, level = 56, group = "PuritySkill", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill" }, }, + ["V2ReducedChaosDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Chaos Damage taken", statOrder = { 2243 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos" }, }, + ["V2ReducedColdDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Cold Damage taken", statOrder = { 3389 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold" }, }, + ["V2ReducedDamageFromAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Area Damage taken from Hits", statOrder = { 2239 }, level = 20, group = "AreaOfEffectDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2ReducedDamageFromProjectilesCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Damage taken from Projectile Hits", statOrder = { 2749 }, level = 20, group = "ProjectileDamageTaken", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2ReducedFireDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Fire Damage taken", statOrder = { 2242 }, level = 45, group = "FireDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire" }, }, + ["V2ReducedLightningDamageTakenCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% reduced Lightning Damage taken", statOrder = { 3388 }, level = 45, group = "LightningDamageTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning" }, }, + ["V2ReducedExtraDamageFromCriticalStrikesBodyCorrupted__"] = { type = "Corrupted", affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["V2ReducedExtraDamageFromCriticalStrikesShieldCorrupted"] = { type = "Corrupted", affix = "", "You take (20-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 20, group = "ReducedExtraDamageFromCrits", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["V2RegenerateLifePerSecondWhileMovingCorrupted_"] = { type = "Corrupted", affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7406 }, level = 60, group = "LifeRegenerationWhileMoving", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["V2ResoluteTechniqueCorrupted"] = { type = "Corrupted", affix = "", "Resolute Technique", statOrder = { 10828 }, level = 40, group = "ResoluteTechnique", weightKey = { "sword", "default", }, weightVal = { 1000, 0 }, modTags = { "attack", "critical" }, }, + ["V2SocketedSkillsManaMultiplierCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Skill Gems get a 90% Cost & Reservation Multiplier", statOrder = { 530 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "mana", "gem" }, }, + ["V2SupportedByAccuracyCorrupted__"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Additional Accuracy", statOrder = { 480 }, level = 1, group = "SupportedByAccuracy", weightKey = { "mace", "axe", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByBlindCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 1, group = "SupportedByBlind", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByBloodmagicCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 325 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { "mace", "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "skill", "gem" }, }, + ["V2SupportedByFasterProjectilesCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are supported by Level 10 Faster Projectiles", statOrder = { 482 }, level = 1, group = "SupportedByProjectileSpeed", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByFortifyCorrupted_"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Fortify", statOrder = { 496 }, level = 1, group = "SupportedByFortify", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByLifeGainOnHitCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Life Gain On Hit", statOrder = { 324 }, level = 1, group = "SupportedByLifeGainOnHit", weightKey = { "sword", "mace", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByOnslaughtCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 1, group = "SupportedByOnslaught", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2SupportedByReducedManaCorrupted"] = { type = "Corrupted", affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 494 }, level = 1, group = "SupportedByReducedMana", weightKey = { "sword", "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "support", "gem" }, }, + ["V2WeaponElementalDamageCorrupted"] = { type = "Corrupted", affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["V2WrathSkillCorrupted"] = { type = "Corrupted", affix = "", "Grants Level 21 Wrath Skill", statOrder = { 648 }, level = 45, group = "WrathSkill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "skill" }, }, + ["V2SocketedDurationGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Duration Gems", statOrder = { 175 }, level = 20, group = "IncreaseSocketedDurationGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["V2SocketedAoEGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed AoE Gems", statOrder = { 176 }, level = 20, group = "IncreasedSocketedAoEGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["V2SocketedAuraGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 20, group = "LocalIncreaseSocketedAuraLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "aura", "gem" }, }, + ["V2SocketedCurseGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 20, group = "LocalIncreaseSocketedCurseLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "gem", "curse" }, }, + ["V2SocketedTrapOrMineGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 187 }, level = 20, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["V2SocketedMinionGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 20, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "minion", "gem" }, }, + ["V2SocketedWarcryGemCorrupted"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 20, group = "LocalSocketedWarcryGemLevel", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["V2SocketedProjectileGemCorrupted_"] = { type = "Corrupted", affix = "", "+2 to Level of Socketed Projectile Gems", statOrder = { 177 }, level = 20, group = "LocalIncreaseSocketedProjectileLevelCorrupted", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "gem" }, }, + ["V2IncreasedMaximumLifeCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life" }, }, + ["V2IncreasedMaximumEnergyShieldCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "MaximumEnergyShieldPercent", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["V2ItemRarityCorrupted_"] = { type = "Corrupted", affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 60, group = "IncreasedItemRarity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "drop" }, }, + ["V2ItemQuantityCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% increased Quantity of Items found", statOrder = { 1592 }, level = 84, group = "IncreasedItemQuantity", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "drop" }, }, + ["V2IncreasedAuraEffectWrathCorrupted"] = { type = "Corrupted", affix = "", "Wrath has (15-20)% increased Aura Effect", statOrder = { 3361 }, level = 45, group = "IncreasedAuraEffectWrathCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectAngerCorrupted"] = { type = "Corrupted", affix = "", "Anger has (15-20)% increased Aura Effect", statOrder = { 3356 }, level = 45, group = "IncreasedAuraEffectAngerCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectHatredCorrupted"] = { type = "Corrupted", affix = "", "Hatred has (15-20)% increased Aura Effect", statOrder = { 3366 }, level = 45, group = "IncreasedAuraEffectHatredCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectDeterminationCorrupted"] = { type = "Corrupted", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3367 }, level = 45, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectDisciplineCorrupted"] = { type = "Corrupted", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3368 }, level = 45, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectGraceCorrupted"] = { type = "Corrupted", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3363 }, level = 45, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectMalevolenceCorrupted"] = { type = "Corrupted", affix = "", "Malevolence has (15-20)% increased Aura Effect", statOrder = { 6161 }, level = 45, group = "IncreasedAuraEffectMalevolenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectZealotryCorrupted_"] = { type = "Corrupted", affix = "", "Zealotry has (15-20)% increased Aura Effect", statOrder = { 10721 }, level = 45, group = "IncreasedAuraEffectZealotryCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedAuraEffectPrideCorrupted"] = { type = "Corrupted", affix = "", "Pride has (15-20)% increased Aura Effect", statOrder = { 9710 }, level = 45, group = "IncreasedAuraEffectPrideCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "aura" }, }, + ["V2IncreasedIntelligenceDexterityCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Dexterity", "(4-6)% increased Intelligence", statOrder = { 1185, 1186 }, level = 1, group = "IncreasedIntelligenceDexterityCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, + ["V2IncreasedDexterityStrengthCorrupted"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Dexterity", statOrder = { 1184, 1185 }, level = 1, group = "IncreasedDexterityStrengthCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, + ["V2IncreasedStrengthIntelligenceCorrupted_"] = { type = "Corrupted", affix = "", "(4-6)% increased Strength", "(4-6)% increased Intelligence", statOrder = { 1184, 1186 }, level = 1, group = "IncreasedStrengthIntelligenceCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "attribute" }, }, + ["V2AllResistancesCorrupted"] = { type = "Corrupted", affix = "", "+(14-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistancesCorrupted", weightKey = { "amulet", "ring", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["LocalIncreaseSocketedSupportGemLevelIntMasterVendorItem"] = { type = "Prefix", affix = "Catarina's", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, + ["IncreasedChaosDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% increased Chaos Damage", statOrder = { 1385 }, level = 58, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% increased Chaos Damage", statOrder = { 1385 }, level = 74, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-34)% increased Chaos Damage", statOrder = { 1385 }, level = 82, group = "IncreasedChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedLifeLeechRateEssence1"] = { type = "Suffix", affix = "of the Essence", "150% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 63, group = "IncreasedLifeLeechRate", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["ChaosLeechedAsLifeEssence1_"] = { type = "Suffix", affix = "of the Essence", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 63, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, }, + ["ReduceGlobalFlatManaCostStrIntMasterVendor"] = { type = "Prefix", affix = "Elreon's", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1891 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["LifeLeechSpeedDexIntMasterVendorItem"] = { type = "Prefix", affix = "Vorici's", "(20-40)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "LifeLeechSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["SocketedGemQualityStrMasterVendorItem"] = { type = "Prefix", affix = "Haku's", "+(3-6)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, + ["BleedOnHitGainedDexMasterVendorItem"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["BleedOnHitGainedDexMasterVendorItemUpdated_"] = { type = "Prefix", affix = "Tora's", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AlwaysHitsStrDexMasterVendorItem"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["MapInvasionBossMasterVendorItem"] = { type = "Prefix", affix = "Kirac's", "Area is inhabited by an additional Invasion Boss", statOrder = { 2620 }, level = 1, group = "MapExtraInvasionBosses", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["LightningPenetrationWarbands"] = { type = "Prefix", affix = "Turncoat's", "Damage Penetrates (6-10)% Lightning Resistance", statOrder = { 2984 }, level = 60, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandEssence1_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Lightning Resistance", statOrder = { 2984 }, level = 42, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Lightning Resistance", statOrder = { 2984 }, level = 58, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandEssence3_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Lightning Resistance", statOrder = { 2984 }, level = 74, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Lightning Resistance", statOrder = { 2984 }, level = 82, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["FireResistancePenetrationWarbands"] = { type = "Prefix", affix = "Betrayer's", "Damage Penetrates (6-10)% Fire Resistance", statOrder = { 2981 }, level = 60, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEssence4___"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Fire Resistance", statOrder = { 2981 }, level = 26, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandEssence2_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Fire Resistance", statOrder = { 2981 }, level = 42, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Fire Resistance", statOrder = { 2981 }, level = 58, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Fire Resistance", statOrder = { 2981 }, level = 74, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Fire Resistance", statOrder = { 2981 }, level = 82, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdResistancePenetrationWarbands"] = { type = "Prefix", affix = "Deceiver's", "Damage Penetrates (6-10)% Cold Resistance", statOrder = { 2983 }, level = 60, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 3% Cold Resistance", statOrder = { 2983 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence4_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEssence6_"] = { type = "Prefix", affix = "Essences", "Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (5-6)% Cold Resistance", statOrder = { 2983 }, level = 10, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (7-8)% Cold Resistance", statOrder = { 2983 }, level = 26, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (9-10)% Cold Resistance", statOrder = { 2983 }, level = 42, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence4"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (11-12)% Cold Resistance", statOrder = { 2983 }, level = 58, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence5"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (13-14)% Cold Resistance", statOrder = { 2983 }, level = 74, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandEssence6__"] = { type = "Prefix", affix = "Essences", "Damage Penetrates (15-16)% Cold Resistance", statOrder = { 2983 }, level = 82, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ChanceToAvoidElementalStatusAilments1"] = { type = "Suffix", affix = "of Stoicism", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 23, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilments2"] = { type = "Suffix", affix = "of Resolve", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 41, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilments3__"] = { type = "Suffix", affix = "of Fortitude", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 57, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilments4"] = { type = "Suffix", affix = "of Will", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 73, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilmentsEssence1"] = { type = "Suffix", affix = "of the Essence", "(16-20)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 42, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilmentsEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 58, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilmentsEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 74, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalStatusAilmentsEssence4"] = { type = "Suffix", affix = "of the Essence", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 82, group = "AvoidElementalStatusAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AttackAndCastSpeed1"] = { type = "Suffix", affix = "of Zeal", "(3-4)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 15, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeed2"] = { type = "Suffix", affix = "of Fervour", "(5-6)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 45, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeed3"] = { type = "Suffix", affix = "of Haste", "(7-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 70, group = "AttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed" }, }, + ["LifeLeechPermyriadLocal1"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 50, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocal2"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 60, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocal3"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of the Remora", "(2-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 20, group = "LifeLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffix2"] = { type = "Suffix", affix = "of the Lamprey", "(2.6-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 45, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffix3"] = { type = "Suffix", affix = "of the Vampire", "(3.5-4.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 70, group = "LifeLeechLocalPermyriad", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence1"] = { type = "Prefix", affix = "Essences", "(0.5-0.7)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence2"] = { type = "Prefix", affix = "Essences", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence3"] = { type = "Prefix", affix = "Essences", "(0.7-0.9)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence4"] = { type = "Prefix", affix = "Essences", "(0.8-1)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence5"] = { type = "Prefix", affix = "Essences", "(0.9-1.1)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence6"] = { type = "Prefix", affix = "Essences", "(1-1.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalEssence7"] = { type = "Prefix", affix = "Essences", "(1.1-1.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence1"] = { type = "Suffix", affix = "of the Essence", "(2-2.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence2"] = { type = "Suffix", affix = "of the Essence", "(2.3-2.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 10, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence3"] = { type = "Suffix", affix = "of the Essence", "(2.5-2.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 26, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence4"] = { type = "Suffix", affix = "of the Essence", "(2.9-3.2)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 42, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence5"] = { type = "Suffix", affix = "of the Essence", "(3.3-3.6)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 58, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence6"] = { type = "Suffix", affix = "of the Essence", "(3.7-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 74, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadLocalSuffixEssence7"] = { type = "Suffix", affix = "of the Essence", "(4.1-4.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 82, group = "LifeLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["ManaLeechPermyriadLocal1"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadLocalSuffix1"] = { type = "Suffix", affix = "of Thirst", "(2.6-3.2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 50, group = "ManaLeechLocalPermyriad", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["AttackDamagePercent1"] = { type = "Prefix", affix = "Bully's", "(4-8)% increased Attack Damage", statOrder = { 1198 }, level = 4, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamagePercent2"] = { type = "Prefix", affix = "Thug's", "(9-16)% increased Attack Damage", statOrder = { 1198 }, level = 15, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamagePercent3"] = { type = "Prefix", affix = "Brute's", "(17-24)% increased Attack Damage", statOrder = { 1198 }, level = 30, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamagePercent4"] = { type = "Prefix", affix = "Assailant's", "(25-29)% increased Attack Damage", statOrder = { 1198 }, level = 60, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamagePercent5"] = { type = "Prefix", affix = "Predator's", "(30-34)% increased Attack Damage", statOrder = { 1198 }, level = 81, group = "AttackDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["SummonTotemCastSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Totem Placement speed", statOrder = { 2578 }, level = 42, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Totem Placement speed", statOrder = { 2578 }, level = 58, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Totem Placement speed", statOrder = { 2578 }, level = 74, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(36-45)% increased Totem Placement speed", statOrder = { 2578 }, level = 82, group = "SummonTotemCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["StunAvoidance1"] = { type = "Suffix", affix = "of Composure", "(11-13)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidance2"] = { type = "Suffix", affix = "of Surefootedness", "(14-16)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidance3"] = { type = "Suffix", affix = "of Persistence", "(17-19)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidance4"] = { type = "Suffix", affix = "of Relentlessness", "(20-22)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidanceEssence5"] = { type = "Suffix", affix = "of the Essence", "(23-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 58, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidanceEssence6"] = { type = "Suffix", affix = "of the Essence", "(27-30)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 74, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["StunAvoidanceEssence7"] = { type = "Suffix", affix = "of the Essence", "(31-44)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 82, group = "AvoidStun", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["IncreasedStunThresholdEssence5"] = { type = "Suffix", affix = "of the Essence", "(31-39)% increased Stun Threshold", statOrder = { 3272 }, level = 58, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["IncreasedStunThresholdEssence6"] = { type = "Suffix", affix = "of the Essence", "(40-45)% increased Stun Threshold", statOrder = { 3272 }, level = 74, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["IncreasedStunThresholdEssence7"] = { type = "Suffix", affix = "of the Essence", "(46-60)% increased Stun Threshold", statOrder = { 3272 }, level = 82, group = "IncreasedStunThreshold", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["SpellAddedFireDamage1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (3-4) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage2_"] = { type = "Prefix", affix = "Smouldering", "Adds (6-8) to (12-14) Fire Damage to Spells", statOrder = { 1404 }, level = 11, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage3"] = { type = "Prefix", affix = "Smoking", "Adds (10-12) to (19-23) Fire Damage to Spells", statOrder = { 1404 }, level = 18, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage4"] = { type = "Prefix", affix = "Burning", "Adds (13-18) to (27-31) Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage5"] = { type = "Prefix", affix = "Flaming", "Adds (19-25) to (37-44) Fire Damage to Spells", statOrder = { 1404 }, level = 33, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage6"] = { type = "Prefix", affix = "Scorching", "Adds (24-33) to (48-57) Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage7"] = { type = "Prefix", affix = "Incinerating", "Adds (31-42) to (64-73) Fire Damage to Spells", statOrder = { 1404 }, level = 51, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage8"] = { type = "Prefix", affix = "Blasting", "Adds (40-52) to (79-91) Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamage9"] = { type = "Prefix", affix = "Cremating", "Adds (49-66) to (98-115) Fire Damage to Spells", statOrder = { 1404 }, level = 74, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (45-54) to (80-90) Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "SpellAddedFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamage1"] = { type = "Prefix", affix = "Frosted", "Adds 1 to (2-3) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage2"] = { type = "Prefix", affix = "Chilled", "Adds (5-7) to (10-12) Cold Damage to Spells", statOrder = { 1405 }, level = 11, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage3"] = { type = "Prefix", affix = "Icy", "Adds (8-10) to (16-18) Cold Damage to Spells", statOrder = { 1405 }, level = 18, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage4"] = { type = "Prefix", affix = "Frigid", "Adds (11-15) to (22-25) Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage5"] = { type = "Prefix", affix = "Freezing", "Adds (16-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 33, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage6_"] = { type = "Prefix", affix = "Frozen", "Adds (20-26) to (40-46) Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage7"] = { type = "Prefix", affix = "Glaciated", "Adds (26-35) to (51-60) Cold Damage to Spells", statOrder = { 1405 }, level = 51, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage8"] = { type = "Prefix", affix = "Polar", "Adds (33-43) to (64-75) Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamage9"] = { type = "Prefix", affix = "Entombing", "Adds (41-54) to (81-93) Cold Damage to Spells", statOrder = { 1405 }, level = 74, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (35-45) to (66-74) Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "SpellAddedColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamage1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (4-5) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-2) to (21-22) Lightning Damage to Spells", statOrder = { 1406 }, level = 11, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage3"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (33-35) Lightning Damage to Spells", statOrder = { 1406 }, level = 18, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage4"] = { type = "Prefix", affix = "Crackling", "Adds (1-4) to (46-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage5"] = { type = "Prefix", affix = "Sparking", "Adds (2-5) to (64-68) Lightning Damage to Spells", statOrder = { 1406 }, level = 33, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage6"] = { type = "Prefix", affix = "Arcing", "Adds (2-7) to (84-88) Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage7"] = { type = "Prefix", affix = "Shocking", "Adds (2-9) to (109-115) Lightning Damage to Spells", statOrder = { 1406 }, level = 51, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage8"] = { type = "Prefix", affix = "Discharging", "Adds (4-11) to (136-144) Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamage9"] = { type = "Prefix", affix = "Electrocuting", "Adds (4-14) to (170-179) Lightning Damage to Spells", statOrder = { 1406 }, level = 74, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 800, 800, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEssence7"] = { type = "Prefix", affix = "Essences", "Adds (4-11) to (134-144) Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "SpellAddedLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedFireDamageTwoHand1"] = { type = "Prefix", affix = "Heated", "Adds (1-2) to (4-5) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand2"] = { type = "Prefix", affix = "Smouldering", "Adds (8-11) to (17-19) Fire Damage to Spells", statOrder = { 1404 }, level = 11, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand3"] = { type = "Prefix", affix = "Smoking", "Adds (13-17) to (26-29) Fire Damage to Spells", statOrder = { 1404 }, level = 18, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand4"] = { type = "Prefix", affix = "Burning", "Adds (18-23) to (36-42) Fire Damage to Spells", statOrder = { 1404 }, level = 26, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand5"] = { type = "Prefix", affix = "Flaming", "Adds (25-33) to (50-59) Fire Damage to Spells", statOrder = { 1404 }, level = 33, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand6_"] = { type = "Prefix", affix = "Scorching", "Adds (32-44) to (65-76) Fire Damage to Spells", statOrder = { 1404 }, level = 42, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand7"] = { type = "Prefix", affix = "Incinerating", "Adds (42-56) to (85-99) Fire Damage to Spells", statOrder = { 1404 }, level = 51, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand8"] = { type = "Prefix", affix = "Blasting", "Adds (53-70) to (107-123) Fire Damage to Spells", statOrder = { 1404 }, level = 62, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHand9"] = { type = "Prefix", affix = "Cremating", "Adds (66-88) to (132-155) Fire Damage to Spells", statOrder = { 1404 }, level = 74, group = "SpellAddedFireDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageTwoHandEssence7_"] = { type = "Prefix", affix = "Essences", "Adds (67-81) to (120-135) Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "SpellAddedFireDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageTwoHand1_"] = { type = "Prefix", affix = "Frosted", "Adds (1-2) to (3-4) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand2"] = { type = "Prefix", affix = "Chilled", "Adds (8-10) to (15-18) Cold Damage to Spells", statOrder = { 1405 }, level = 11, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand3"] = { type = "Prefix", affix = "Icy", "Adds (12-15) to (23-28) Cold Damage to Spells", statOrder = { 1405 }, level = 18, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand4"] = { type = "Prefix", affix = "Frigid", "Adds (16-22) to (33-38) Cold Damage to Spells", statOrder = { 1405 }, level = 26, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand5"] = { type = "Prefix", affix = "Freezing", "Adds (24-30) to (45-53) Cold Damage to Spells", statOrder = { 1405 }, level = 33, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand6"] = { type = "Prefix", affix = "Frozen", "Adds (30-40) to (59-69) Cold Damage to Spells", statOrder = { 1405 }, level = 42, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand7"] = { type = "Prefix", affix = "Glaciated", "Adds (39-52) to (77-90) Cold Damage to Spells", statOrder = { 1405 }, level = 51, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand8"] = { type = "Prefix", affix = "Polar", "Adds (49-64) to (96-113) Cold Damage to Spells", statOrder = { 1405 }, level = 62, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHand9"] = { type = "Prefix", affix = "Entombing", "Adds (61-81) to (120-140) Cold Damage to Spells", statOrder = { 1405 }, level = 74, group = "SpellAddedColdDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (57-66) to (100-111) Cold Damage to Spells", statOrder = { 1405 }, level = 82, group = "SpellAddedColdDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageTwoHand1"] = { type = "Prefix", affix = "Humming", "Adds 1 to (6-7) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand2"] = { type = "Prefix", affix = "Buzzing", "Adds (1-3) to (32-34) Lightning Damage to Spells", statOrder = { 1406 }, level = 11, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand3"] = { type = "Prefix", affix = "Snapping", "Adds (1-4) to (49-52) Lightning Damage to Spells", statOrder = { 1406 }, level = 18, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand4"] = { type = "Prefix", affix = "Crackling", "Adds (2-5) to (69-73) Lightning Damage to Spells", statOrder = { 1406 }, level = 26, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand5"] = { type = "Prefix", affix = "Sparking", "Adds (2-8) to (97-102) Lightning Damage to Spells", statOrder = { 1406 }, level = 33, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand6"] = { type = "Prefix", affix = "Arcing", "Adds (3-10) to (126-133) Lightning Damage to Spells", statOrder = { 1406 }, level = 42, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand7"] = { type = "Prefix", affix = "Shocking", "Adds (5-12) to (164-173) Lightning Damage to Spells", statOrder = { 1406 }, level = 51, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand8"] = { type = "Prefix", affix = "Discharging", "Adds (5-17) to (204-216) Lightning Damage to Spells", statOrder = { 1406 }, level = 62, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHand9_"] = { type = "Prefix", affix = "Electrocuting", "Adds (7-20) to (255-270) Lightning Damage to Spells", statOrder = { 1406 }, level = 74, group = "SpellAddedLightningDamageTwoHand", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 800, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHandEssence7"] = { type = "Prefix", affix = "Essences", "Adds (6-16) to (201-216) Lightning Damage to Spells", statOrder = { 1406 }, level = 82, group = "SpellAddedLightningDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["LocalAddedChaosDamage1"] = { type = "Prefix", affix = "Malicious", "Adds (56-87) to (105-160) Chaos Damage", statOrder = { 1390 }, level = 83, group = "LocalChaosDamage", weightKey = { "two_hand_weapon", "rapier", "sword", "axe", "sceptre", "mace", "wand", "claw", "dagger", "default", }, weightVal = { 0, 600, 600, 600, 400, 250, 250, 600, 600, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (37-59) to (79-103) Chaos Damage", statOrder = { 1390 }, level = 62, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageEssence2__"] = { type = "Prefix", affix = "Essences", "Adds (43-67) to (89-113) Chaos Damage", statOrder = { 1390 }, level = 74, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageEssence3"] = { type = "Prefix", affix = "Essences", "Adds (53-79) to (101-131) Chaos Damage", statOrder = { 1390 }, level = 82, group = "LocalChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageTwoHand1"] = { type = "Prefix", affix = "Malicious", "Adds (98-149) to (183-280) Chaos Damage", statOrder = { 1390 }, level = 83, group = "LocalChaosDamageTwoHand", weightKey = { "one_hand_weapon", "bow", "sword", "axe", "mace", "staff", "default", }, weightVal = { 0, 700, 600, 600, 250, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageTwoHandEssence1"] = { type = "Prefix", affix = "Essences", "Adds (61-103) to (149-193) Chaos Damage", statOrder = { 1390 }, level = 62, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageTwoHandEssence2"] = { type = "Prefix", affix = "Essences", "Adds (73-113) to (163-205) Chaos Damage", statOrder = { 1390 }, level = 74, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageTwoHandEssence3"] = { type = "Prefix", affix = "Essences", "Adds (89-131) to (181-229) Chaos Damage", statOrder = { 1390 }, level = 82, group = "LocalChaosDamageTwoHand", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["RarityDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "30% increased Rarity of Items found during any Flask Effect", statOrder = { 2756 }, level = 1, group = "RarityDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "drop" }, }, + ["DamageDuringFlaskEffectWarbands"] = { type = "Prefix", affix = "Brinerot", "(20-25)% increased Damage during any Flask Effect", statOrder = { 4082 }, level = 1, group = "DamageDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "damage" }, }, + ["PierceChanceEssence5"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9782 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["PierceChanceEssence6_"] = { type = "Prefix", affix = "", "Projectiles Pierce an additional Target", statOrder = { 9782 }, level = 1, group = "Quiver1AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["PierceChanceEssence7"] = { type = "Prefix", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 9783 }, level = 1, group = "Quiver2AdditionalPierceOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["AdditionalPierceEssence5"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["AdditionalPierceEssence6_"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["AdditionalPierceEssence7"] = { type = "Prefix", affix = "Essences", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["CannotBePoisonedEssence1"] = { type = "Suffix", affix = "of the Essence", "Cannot be Poisoned", statOrder = { 3369 }, level = 63, group = "CannotBePoisoned", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidFireDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 42, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["ChanceToAvoidFireDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 58, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["ChanceToAvoidFireDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 74, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["ChanceToAvoidFireDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 82, group = "FireDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["ChanceToAvoidColdDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 26, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["ChanceToAvoidColdDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 42, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["ChanceToAvoidColdDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 58, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["ChanceToAvoidColdDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 74, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["ChanceToAvoidColdDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 82, group = "ColdDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["ChanceToAvoidLightningDamageEssence2"] = { type = "Suffix", affix = "of the Essence", "(4-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 10, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["ChanceToAvoidLightningDamageEssence3"] = { type = "Suffix", affix = "of the Essence", "(5-6)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 26, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["ChanceToAvoidLightningDamageEssence4"] = { type = "Suffix", affix = "of the Essence", "(6-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 42, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["ChanceToAvoidLightningDamageEssence5"] = { type = "Suffix", affix = "of the Essence", "(7-8)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 58, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["ChanceToAvoidLightningDamageEssence6"] = { type = "Suffix", affix = "of the Essence", "(8-9)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 74, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["ChanceToAvoidLightningDamageEssence7"] = { type = "Suffix", affix = "of the Essence", "(9-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 82, group = "LightningDamageAvoidance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["QuiverAddedChaosEssence1_"] = { type = "Prefix", affix = "Essences", "Adds (11-15) to (27-33) Chaos Damage to Attacks", statOrder = { 1387 }, level = 62, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["QuiverAddedChaosEssence2_"] = { type = "Prefix", affix = "Essences", "Adds (17-21) to (37-43) Chaos Damage to Attacks", statOrder = { 1387 }, level = 74, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["QuiverAddedChaosEssence3__"] = { type = "Prefix", affix = "Essences", "Adds (23-37) to (49-61) Chaos Damage to Attacks", statOrder = { 1387 }, level = 82, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["PoisonDuration1"] = { type = "Suffix", affix = "of Rot", "(8-12)% increased Poison Duration", statOrder = { 3170 }, level = 30, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonDuration2"] = { type = "Suffix", affix = "of Putrefaction", "(13-18)% increased Poison Duration", statOrder = { 3170 }, level = 60, group = "PoisonDuration", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonDurationEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1385, 3170 }, level = 1, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SocketedGemsDealAdditionalFireDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 175 to 225 Added Fire Damage", statOrder = { 556 }, level = 63, group = "SocketedGemsDealAdditionalFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "fire", "gem" }, }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssence1"] = { type = "Suffix", affix = "", "Socketed Gems have 20% more Attack and Cast Speed", statOrder = { 550 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, }, + ["SocketedGemsHaveMoreAttackAndCastSpeedEssenceNew1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 16% more Attack and Cast Speed", statOrder = { 550 }, level = 63, group = "SocketedGemsHaveMoreAttackAndCastSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack", "caster", "speed", "gem" }, }, + ["SocketedGemsAddPercentageOfPhysicalAsLightningEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems gain 50% of Physical Damage as extra Lightning Damage", statOrder = { 557 }, level = 63, group = "SocketedGemsAddPercentageOfPhysicalAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "gem" }, }, + ["SocketedGemsDealMoreElementalDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Elemental Damage", statOrder = { 553 }, level = 63, group = "SocketedGemsDealMoreElementalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, }, + ["ElementalDamageTakenWhileStationaryEssence1"] = { type = "Suffix", affix = "of the Essence", "5% reduced Elemental Damage Taken while stationary", statOrder = { 4312 }, level = 63, group = "ElementalDamageTakenWhileStationary", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental" }, }, + ["BurningGroundWhileMovingEssence1"] = { type = "Suffix", affix = "of the Essence", "Drops Burning Ground while moving, dealing 2500 Fire Damage per second for 4 seconds", statOrder = { 4309 }, level = 63, group = "BurningGroundWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdEssence1"] = { type = "Prefix", affix = "Essences", "15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 63, group = "PhysicalDamageTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["ReducedDamageFromCriticalStrikesPerEnduranceChargeEssence1"] = { type = "Suffix", affix = "of the Essence", "You take 10% reduced Extra Damage from Critical Strikes per Endurance Charge", statOrder = { 1514 }, level = 63, group = "ReducedDamageFromCriticalStrikesPerEnduranceCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["FireDamageAsPortionOfPhysicalDamageEssence1"] = { type = "Prefix", affix = "Essences", "Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["FireDamageAsPortionOfPhysicalDamageEssence2"] = { type = "Prefix", affix = "Essences", "Gain 15% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 63, group = "FireDamageAsPortionOfDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ChaosDamageOverTimeTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "25% reduced Chaos Damage taken over time", statOrder = { 1948 }, level = 63, group = "ChaosDamageOverTimeTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, + ["SocketedSkillsCriticalChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have +3.5% Critical Strike Chance", statOrder = { 541 }, level = 63, group = "SocketedSkillsCriticalChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["AttackAndCastSpeedDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "", "10% increased Attack and Cast Speed during any Flask Effect", statOrder = { 4274 }, level = 63, group = "AttackAndCastSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "attack", "caster", "speed" }, }, + ["MovementVelocityDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 63, group = "MovementSpeedDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "speed" }, }, + ["AddedColdDamagePerFrenzyChargeEssence1"] = { type = "Prefix", affix = "Essences", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamagePerFrenzyChargeEssenceQuiver1"] = { type = "Prefix", affix = "Essences", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 63, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedFireDamageIfBlockedRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "Adds 60 to 100 Fire Damage if you've Blocked Recently", statOrder = { 4275 }, level = 63, group = "AddedFireDamageIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SocketedSkillAlwaysIgniteEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems have 50% chance to Ignite", statOrder = { 534 }, level = 63, group = "DisplaySupportedSkillsHaveAChanceToIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["SocketedSkillDamageOnLowLifeEssence1__"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage while on Low Life", statOrder = { 552 }, level = 63, group = "DisplaySupportedSkillsDealDamageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["ElementalPenetrationDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "Damage Penetrates 5% Elemental Resistances during any Flask Effect", statOrder = { 4267 }, level = 63, group = "ElementalPenetrationDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, }, + ["AdditionalPhysicalDamageReductionDuringFlaskEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "5% additional Physical Damage Reduction during any Flask Effect", statOrder = { 4268 }, level = 63, group = "AdditionalPhysicalDamageReductionDuringFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "physical" }, }, + ["ReflectDamageTakenEssence1"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 40% reduced Reflected Damage", statOrder = { 9882 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, ["DamageCannotBeReflectedPercentEssence1"] = { type = "Suffix", affix = "of the Essence", "60% of Hit Damage from you and your Minions cannot be Reflected", statOrder = { 1 }, level = 63, group = "DamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 4275 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, }, - ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 4276 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, }, - ["PoisonDamageEssence1"] = { type = "Prefix", affix = "Essences", "40% increased Damage with Poison", statOrder = { 3186 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3480 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 9121 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5660 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6725 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, - ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3617 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 609 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, }, - ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, }, - ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 784 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, }, - ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 756, 756.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1885 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6786 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2832 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 607 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, }, - ["SpellBlockOnLowLifeEssence1"] = { type = "Suffix", affix = "of the Essence", "+15% Chance to Block Spell Damage while on Low Life", statOrder = { 1150 }, level = 63, group = "SpellBlockPercentageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Effect of your Curses", statOrder = { 2601 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Effect of your Curses", statOrder = { 2601 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Marks", statOrder = { 2603 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6141 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SpellBlockAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-7)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 63, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9433 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2513 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 8191 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, - ["AilmentDoubleDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "1% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4624 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["AilmentDoubleDamageTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "2% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4624 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["AttackCastSpeedPerNearbyEnemyEssence1"] = { type = "Suffix", affix = "of the Essence", "5% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%", statOrder = { 4813 }, level = 63, group = "AttackCastSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MovementSpeedPerNearbyEnemyEssence1"] = { type = "Prefix", affix = "Essences", "5% increased Movement Speed for each nearby Enemy, up to a maximum of 50%", statOrder = { 9410 }, level = 63, group = "MovementSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["GlobalDefencesNoOtherDefenceModifiersOnEquipmentEssence1"] = { type = "Prefix", affix = "Essences", "(70-90)% increased Global Defences if there are no Defence Modifiers on other Equipped Items", statOrder = { 6879 }, level = 63, group = "GlobalDefencesNoOtherDefenceModifiersOnEquipment", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, }, - ["LocalGemLevelIfOnlySocketedGemEssence1"] = { type = "Prefix", affix = "Essences", "+6 to Level of Socketed Gems while there is a single Gem Socketed in this Item", statOrder = { 8022 }, level = 63, group = "LocalGemLevelIfOnlySocketedGem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, - ["ProjectilesChainAtCloseRangeEssence1"] = { type = "Suffix", affix = "of the Essence", "Projectiles can Chain from any number of additional targets in Close Range", statOrder = { 9747 }, level = 63, group = "ProjectilesChainAtCloseRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["AilmentDurationIfNotAppliedThatAilmentRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "(40-60)% increased Duration of Ailments of types you haven't inflicted Recently", statOrder = { 4989 }, level = 63, group = "AilmentDurationIfNotAppliedThatAilmentRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, }, - ["ShockwaveUnleashCountEssence1"] = { type = "Prefix", affix = "Essences", "Left ring slot: Skills supported by Unleash have +1 to maximum number of Seals", "Right ring slot: Shockwave has +1 to Cooldown Uses", statOrder = { 7987, 8014 }, level = 63, group = "ShockwaveUnleashCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MagicFlaskEffectNoAdjacentFlasksEssence1"] = { type = "Prefix", affix = "Essences", "Equipped Magic Flasks have 30% increased effect on you if no Flasks are Adjacent to them", statOrder = { 8153 }, level = 63, group = "MagicFlaskEffectNoAdjacentFlasks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, - ["ArmourAppliesElementalHitsIfBlockedRecentlyEssence1"] = { type = "Prefix", affix = "Essences", "(2-4)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4754 }, level = 63, group = "ArmourAppliesElementalHitsIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrder = { 4999 }, level = 30, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrder = { 4999 }, level = 60, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(18-24)% chance to Ignite", statOrder = { 2031 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgnite2"] = { type = "Suffix", affix = "of Combustion", "(25-30)% chance to Ignite", statOrder = { 2031 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgnite3_"] = { type = "Suffix", affix = "of Conflagration", "(31-40)% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(25-32)% chance to Ignite", statOrder = { 2031 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["TwoHandChanceToIgnite2_"] = { type = "Suffix", affix = "of Combustion", "(33-42)% chance to Ignite", statOrder = { 2031 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["TwoHandChanceToIgnite3"] = { type = "Suffix", affix = "of Conflagration", "(43-55)% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 15, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 55, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 85, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrder = { 8007 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, - ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrder = { 8007 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, - ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrder = { 8007 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, - ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1390, 8007 }, level = 1, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(18-24)% chance to Freeze", statOrder = { 2034 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(25-30)% chance to Freeze", statOrder = { 2034 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreeze3"] = { type = "Suffix", affix = "of the Hyperboreal", "(31-40)% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(25-32)% chance to Freeze", statOrder = { 2034 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["TwoHandChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(33-42)% chance to Freeze", statOrder = { 2034 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["TwoHandChanceToFreeze3____"] = { type = "Suffix", affix = "of the Hyperboreal", "(43-55)% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(18-24)% chance to Shock", statOrder = { 2038 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShock2__"] = { type = "Suffix", affix = "of Zapping", "(25-30)% chance to Shock", statOrder = { 2038 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(31-40)% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(25-32)% chance to Shock", statOrder = { 2038 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["TwoHandChanceToShock2_"] = { type = "Suffix", affix = "of Zapping", "(33-42)% chance to Shock", statOrder = { 2038 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["TwoHandChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(43-55)% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(26-30)% increased Burning Damage", statOrder = { 1882 }, level = 20, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-35)% increased Burning Damage", statOrder = { 1882 }, level = 40, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(36-40)% increased Burning Damage", statOrder = { 1882 }, level = 60, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(31-40)% increased Burning Damage", statOrder = { 1882 }, level = 20, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(41-50)% increased Burning Damage", statOrder = { 1882 }, level = 40, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(51-60)% increased Burning Damage", statOrder = { 1882 }, level = 60, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "(21-30)% increased Damage with Poison", "20% chance to Poison on Hit", statOrder = { 3186, 8007 }, level = 20, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "(31-40)% increased Damage with Poison", "25% chance to Poison on Hit", statOrder = { 3186, 8007 }, level = 40, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "(41-50)% increased Damage with Poison", "30% chance to Poison on Hit", statOrder = { 3186, 8007 }, level = 60, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1395, 3186 }, level = 1, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1412, 3186 }, level = 1, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, }, - ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 20, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 40, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 60, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrder = { 2278 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 25, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "Regenerate 0.6% of Energy Shield per second", statOrder = { 2651 }, level = 25, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "Regenerate 1% of Energy Shield per second", statOrder = { 2651 }, level = 85, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["LifeRegenerationRate1"] = { type = "Suffix", affix = "of Esprit", "(9-11)% increased Life Regeneration rate", statOrder = { 1582 }, level = 46, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRate2"] = { type = "Suffix", affix = "of Perpetuity", "(12-14)% increased Life Regeneration rate", statOrder = { 1582 }, level = 57, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRate3"] = { type = "Suffix", affix = "of Vivification", "(15-17)% increased Life Regeneration rate", statOrder = { 1582 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRate4"] = { type = "Suffix", affix = "of Youth", "(18-19)% increased Life Regeneration rate", statOrder = { 1582 }, level = 76, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRate5"] = { type = "Suffix", affix = "of Everlasting", "(20-21)% increased Life Regeneration rate", statOrder = { 1582 }, level = 85, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 2278 }, level = 45, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, - ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Sentry", "5% additional Physical Damage Reduction", statOrder = { 2278 }, level = 58, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, - ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Keeper", "6% additional Physical Damage Reduction", statOrder = { 2278 }, level = 67, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, - ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 2278 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, - ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 2278 }, level = 86, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, - ["ChanceToSuppressSpells1_"] = { type = "Suffix", affix = "of Rebuttal", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 46, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpells2"] = { type = "Suffix", affix = "of Snuffing", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 57, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpells3"] = { type = "Suffix", affix = "of Revoking", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpells4"] = { type = "Suffix", affix = "of Abjuration", "+(11-12)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 76, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpells5__"] = { type = "Suffix", affix = "of Nullification", "+(13-14)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsHigh1__"] = { type = "Suffix", affix = "of Rebuttal", "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsHigh2__"] = { type = "Suffix", affix = "of Snuffing", "+(11-13)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 58, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsHigh3"] = { type = "Suffix", affix = "of Revoking", "+(14-16)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 67, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsHigh4_"] = { type = "Suffix", affix = "of Abjuration", "+(17-19)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 77, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsHigh5___"] = { type = "Suffix", affix = "of Nullification", "+(20-22)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 86, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Allaying", "(24-26)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 46, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(27-29)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 57, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(30-32)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(33-35)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 76, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(36-38)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FasterStartEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Enlivening", "(27-34)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 45, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FasterStartEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Zest", "(35-42)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 58, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FasterStartEnergyShieldRecharge3__"] = { type = "Suffix", affix = "of Galvanising", "(43-50)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 67, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FasterStartEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Vigour", "(51-58)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 77, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FasterStartEnergyShieldRecharge5_"] = { type = "Suffix", affix = "of Second Wind", "(59-66)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 86, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "You take (31-40)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "You take (41-50)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 67, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "You take (51-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 78, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, - ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Bandaging", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Stitching", "(7-9)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Suturing", "(10-12)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Fleshbinding", "(13-15)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["GlobalSkillGemLevel1"] = { type = "Prefix", affix = "Exalter's", "+1 to Level of all Skill Gems", statOrder = { 4639 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 50, 0 }, modTags = { "gem" }, }, - ["GlobalFireGemLevel1_"] = { type = "Prefix", affix = "Vulcanist's", "+1 to Level of all Fire Skill Gems", statOrder = { 6591 }, level = 75, group = "GlobalFireGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["GlobalColdGemLevel1__"] = { type = "Prefix", affix = "Rimedweller's", "+1 to Level of all Cold Skill Gems", statOrder = { 5841 }, level = 75, group = "GlobalColdGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["GlobalLightningGemLevel1"] = { type = "Prefix", affix = "Stormbrewer's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7470 }, level = 75, group = "GlobalLightningGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["GlobalPhysicalGemLevel1_"] = { type = "Prefix", affix = "Behemoth's", "+1 to Level of all Physical Skill Gems", statOrder = { 9670 }, level = 75, group = "GlobalPhysicalGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "gem" }, }, - ["GlobalChaosGemLevel1"] = { type = "Prefix", affix = "Provocateur's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5761 }, level = 75, group = "GlobalChaosGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "gem" }, }, - ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to maximum Chaos Resistance", statOrder = { 1645 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumAllResist1_"] = { type = "Suffix", affix = "of the Sempiternal", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, }, - ["MaximumAllResist2"] = { type = "Suffix", affix = "of the Deathless", "+2% to all maximum Resistances", statOrder = { 1647 }, level = 81, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, }, - ["DamageWithBowSkills1"] = { type = "Prefix", affix = "Acute", "(5-10)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 4, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkills2"] = { type = "Prefix", affix = "Trenchant", "(11-20)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 15, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkills3"] = { type = "Prefix", affix = "Perforating", "(21-30)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 30, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkills4_"] = { type = "Prefix", affix = "Incisive", "(31-36)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkills5"] = { type = "Prefix", affix = "Lacerating", "(37-42)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkills6_"] = { type = "Prefix", affix = "Impaling", "(43-50)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 86, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkillsEssence3a"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 26, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["DamageWithBowSkillsEssence3b_"] = { type = "Prefix", affix = "Essences", "(26-30)% increased Damage with Bow Skills", statOrder = { 6025 }, level = 42, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 319, 1900 }, level = 68, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["SupportedByFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 501 }, level = 68, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrder = { 10460 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrder = { 10455 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, - ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Shocked Ground", statOrder = { 10480 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Desecrated Ground", statOrder = { 10466 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "chaos" }, }, - ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 84, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 83, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(14-17)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(18-21)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrder = { 4998 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrder = { 4998 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 83, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["TotemDamageSpellUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(20-25)% increased Totem Damage", statOrder = { 469, 1198 }, level = 68, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemDamageSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(26-30)% increased Totem Damage", statOrder = { 469, 1198 }, level = 75, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemDamageSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 469, 1198 }, level = 80, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrder = { 469, 2583 }, level = 68, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrder = { 469, 2583 }, level = 75, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 469, 2583 }, level = 80, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemDamageAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(20-25)% increased Totem Damage", statOrder = { 367, 1198 }, level = 68, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemDamageAttackUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(26-30)% increased Totem Damage", statOrder = { 367, 1198 }, level = 75, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemDamageAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 367, 1198 }, level = 80, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(8-12)% increased Totem Placement speed", statOrder = { 367, 2583 }, level = 68, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(13-16)% increased Totem Placement speed", statOrder = { 367, 2583 }, level = 75, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 367, 2583 }, level = 80, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["SupportedByLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 488 }, level = 68, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["GrantsDecoyTotemSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 20 Decoy Totem Skill", statOrder = { 705 }, level = 68, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GlobalRaiseSpectreGemLevelUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Level of all Raise Spectre Gems", statOrder = { 1621 }, level = 75, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, }, - ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrder = { 474, 1415 }, level = 68, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrder = { 474, 1415 }, level = 75, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 474, 1415 }, level = 82, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrder = { 505, 1451 }, level = 68, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrder = { 505, 1451 }, level = 75, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 505, 1451 }, level = 84, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 68, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, - ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 75, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, - ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 85, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, - ["SupportedByManaLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 15 Mana Leech", statOrder = { 519 }, level = 68, group = "DisplaySupportedByManaLeech", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrder = { 487, 1801 }, level = 68, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrder = { 487, 1801 }, level = 75, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 487, 1801 }, level = 82, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrder = { 382, 2001 }, level = 68, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrder = { 382, 2001 }, level = 75, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 382, 2001 }, level = 83, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Melee Strike Range", statOrder = { 2539 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["IncreasedMeleeWeaponRangeAndMeleeDamageUber1"] = { type = "Suffix", affix = "of the Elder", "(13-16)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1239, 2539 }, level = 80, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 459, 9527 }, level = 68, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 459, 9527 }, level = 75, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 459, 9527 }, level = 84, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "(20-25)% increased Trap Damage", statOrder = { 459, 1199 }, level = 68, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "(26-30)% increased Trap Damage", statOrder = { 459, 1199 }, level = 75, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "(31-35)% increased Trap Damage", statOrder = { 459, 1199 }, level = 80, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageCooldownUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(20-25)% increased Trap Damage", statOrder = { 395, 1199 }, level = 68, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(26-30)% increased Trap Damage", statOrder = { 395, 1199 }, level = 75, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageCooldownUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 395, 1199 }, level = 80, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrder = { 395, 1932 }, level = 68, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrder = { 395, 1932 }, level = 75, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 395, 1932 }, level = 80, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapDamageMineUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Trap Damage", statOrder = { 462, 1199 }, level = 68, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageMineUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Trap Damage", statOrder = { 462, 1199 }, level = 75, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageMineUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 462, 1199 }, level = 80, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(20-25)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 68, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(26-30)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 75, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 80, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(8-12)% increased Poison Duration", statOrder = { 528, 3175 }, level = 68, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(13-16)% increased Poison Duration", statOrder = { 528, 3175 }, level = 75, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 528, 3175 }, level = 80, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrder = { 249, 3174 }, level = 68, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, - ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrder = { 249, 3174 }, level = 75, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, - ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 249, 3174 }, level = 80, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, - ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrder = { 485, 1439 }, level = 68, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrder = { 485, 1439 }, level = 75, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 485, 1439 }, level = 83, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["AdditionalBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(2-3)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 68, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["AdditionalBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(4-5)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 80, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrder = { 475, 2963 }, level = 68, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 475, 2963 }, level = 75, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 475, 2963 }, level = 80, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SocketedSpellCriticalMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +30% to Critical Strike Multiplier", statOrder = { 572 }, level = 68, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, - ["SocketedSpellCriticalMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +50% to Critical Strike Multiplier", statOrder = { 572 }, level = 75, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, - ["SocketedSpellCriticalMultiplierUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +70% to Critical Strike Multiplier", statOrder = { 572 }, level = 83, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, - ["SocketedAttackCriticalMultiplierUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +30% to Critical Strike Multiplier", statOrder = { 553 }, level = 68, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["SocketedAttackCriticalMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +50% to Critical Strike Multiplier", statOrder = { 553 }, level = 75, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["SocketedAttackCriticalMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +70% to Critical Strike Multiplier", statOrder = { 553 }, level = 84, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrder = { 458, 2040 }, level = 68, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrder = { 458, 2040 }, level = 75, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 458, 2040 }, level = 82, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrder = { 229, 1885 }, level = 68, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrder = { 229, 1885 }, level = 75, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 229, 1885 }, level = 83, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["MaximumManaUber1"] = { type = "Prefix", affix = "The Elder's", "(9-11)% increased maximum Mana", statOrder = { 1585 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumManaUber2_"] = { type = "Prefix", affix = "The Elder's", "(12-15)% increased maximum Mana", statOrder = { 1585 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrder = { 511, 1978 }, level = 68, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, - ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrder = { 511, 1978 }, level = 75, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, - ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 511, 1978 }, level = 83, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, - ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrder = { 509, 1771 }, level = 68, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, - ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrder = { 509, 1771 }, level = 75, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, - ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 509, 1771 }, level = 80, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, - ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "Throw an additional Mine", statOrder = { 502, 3554 }, level = 68, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "Throw an additional Mine", statOrder = { 502, 3554 }, level = 75, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "Throw an additional Mine", statOrder = { 502, 3554 }, level = 85, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["MineDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "(20-25)% increased Mine Damage", statOrder = { 502, 1201 }, level = 68, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "(26-30)% increased Mine Damage", statOrder = { 502, 1201 }, level = 75, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 502, 1201 }, level = 80, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageTrapUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Mine Damage", statOrder = { 462, 1201 }, level = 68, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageTrapUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Mine Damage", statOrder = { 462, 1201 }, level = 75, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageTrapUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 462, 1201 }, level = 80, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Cold Ailments", statOrder = { 516, 5803 }, level = 68, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, - ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Cold Ailments", statOrder = { 516, 5803 }, level = 75, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, - ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 516, 5803 }, level = 80, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, - ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 526, 7438 }, level = 68, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, - ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Lightning Ailments", statOrder = { 526, 7438 }, level = 75, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, - ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 526, 7438 }, level = 80, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, - ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrder = { 314, 1864 }, level = 68, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, - ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrder = { 314, 1864 }, level = 75, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, - ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 314, 1864 }, level = 80, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, - ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrder = { 317, 1882 }, level = 68, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrder = { 317, 1882 }, level = 75, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 317, 1882 }, level = 82, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["SupportedByLessDurationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 370 }, level = 68, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1409 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1409 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1410 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1410 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1411 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1411 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1408 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1412 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1412 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "Regenerate (3-5) Mana per second", statOrder = { 1587 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "Regenerate (6-8) Mana per second", statOrder = { 1587 }, level = 80, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AdditionalSpellBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(3-4)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["AdditionalSpellBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(5-6)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["SocketedSpellCriticalStrikeChanceUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +1% to Critical Strike Chance", statOrder = { 571 }, level = 68, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, - ["SocketedSpellCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +2% to Critical Strike Chance", statOrder = { 571 }, level = 75, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, - ["SocketedSpellCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +3% to Critical Strike Chance", statOrder = { 571 }, level = 84, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, - ["SocketedAttackCriticalStrikeChanceUber1__"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +1% to Critical Strike Chance", statOrder = { 552 }, level = 68, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, - ["SocketedAttackCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +2% to Critical Strike Chance", statOrder = { 552 }, level = 75, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, - ["SocketedAttackCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +3% to Critical Strike Chance", statOrder = { 552 }, level = 83, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, - ["EnemyPhysicalDamageTakenAuraUber1_"] = { type = "Suffix", affix = "of the Elder", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7923 }, level = 85, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["EnemyElementalDamageTakenAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Nearby Enemies take 6% increased Elemental Damage", statOrder = { 7918 }, level = 85, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["LocalIncreaseSocketedActiveGemLevelUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to Level of Socketed Skill Gems", statOrder = { 195 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, }, - ["LocalIncreaseSocketedSupportGemLevelUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to Level of Socketed Support Gems", statOrder = { 194 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, }, - ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "The Elder's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "The Elder's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 84, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 82, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["PowerChargeOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "25% chance to gain a Power Charge when you Block", statOrder = { 4270 }, level = 63, group = "PowerChargeOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "power_charge" }, }, + ["NearbyEnemiesChilledOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Chill Nearby Enemies when you Block", statOrder = { 4271 }, level = 63, group = "NearbyEnemiesChilledOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "elemental", "cold", "ailment" }, }, + ["PoisonDamageEssence1"] = { type = "Prefix", affix = "Essences", "40% increased Damage with Poison", statOrder = { 3181 }, level = 63, group = "PoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["ChanceToRecoverManaOnSkillUseEssence1"] = { type = "Suffix", affix = "of the Essence", "10% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3475 }, level = 63, group = "ChanceToRecoverManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["FortifyEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "+3 to maximum Fortification", statOrder = { 9117 }, level = 63, group = "FortifyEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["CrushOnHitChanceEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-25)% chance to Crush on Hit", statOrder = { 5655 }, level = 63, group = "CrushOnHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["AlchemistsGeniusOnFlaskEssence1_"] = { type = "Suffix", affix = "of the Essence", "Gain Alchemist's Genius when you use a Flask", statOrder = { 6720 }, level = 63, group = "AlchemistsGeniusOnFlaskUseChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, + ["PowerFrenzyOrEnduranceChargeOnKillEssence1"] = { type = "Suffix", affix = "of the Essence", "16% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 63, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["SocketedGemsNonCurseAuraEffectEssence1"] = { type = "Suffix", affix = "", "Socketed Non-Curse Aura Gems have 20% increased Aura Effect", statOrder = { 604 }, level = 63, group = "SocketedGemsNonCurseAuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "aura", "gem" }, }, + ["SocketedAuraGemLevelsEssence1"] = { type = "Suffix", affix = "of the Essence", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 63, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, }, + ["FireBurstOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Cast Level 20 Fire Burst on Hit", statOrder = { 779 }, level = 63, group = "FireBurstOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "attack" }, }, + ["SpiritMinionEssence1"] = { type = "Suffix", affix = "of the Essence", "Triggers Level 20 Spectral Spirits when Equipped", "+3 to maximum number of Spectral Spirits", statOrder = { 751, 751.1 }, level = 63, group = "GrantsEssenceMinion", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["AreaOfEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Area of Effect", statOrder = { 1880 }, level = 63, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["OnslaughtWhenHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Gain Onslaught for 3 seconds when Hit", statOrder = { 6781 }, level = 63, group = "OnslaughtWhenHitChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["OnslaughtWhenHitNewEssence1"] = { type = "Suffix", affix = "of the Essence", "You gain Onslaught for 6 seconds when Hit", statOrder = { 2827 }, level = 63, group = "OnslaughtWhenHitForDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["SupportDamageOverTimeEssence1"] = { type = "Suffix", affix = "of the Essence", "Socketed Gems deal 30% more Damage over Time", statOrder = { 602 }, level = 63, group = "SupportDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "damage", "gem" }, }, + ["SpellBlockOnLowLifeEssence1"] = { type = "Suffix", affix = "of the Essence", "+15% Chance to Block Spell Damage while on Low Life", statOrder = { 1145 }, level = 63, group = "SpellBlockPercentageOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["MaximumDoomEssence1__"] = { type = "Suffix", affix = "of the Essence", "5% increased Effect of your Curses", statOrder = { 2596 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["MaximumDoomAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "10% increased Effect of your Curses", statOrder = { 2596 }, level = 63, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "25% increased Effect of your Marks", statOrder = { 2598 }, level = 63, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["DecayOnHitEssence1"] = { type = "Suffix", affix = "of the Essence", "Your Hits inflict Decay, dealing 700 Chaos Damage per second for 8 seconds", statOrder = { 6136 }, level = 63, group = "DecayOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SpellBlockAmuletEssence1"] = { type = "Suffix", affix = "of the Essence", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 63, group = "SpellBlockPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["MovementSpeedOnBurningChilledShockedGroundEssence1"] = { type = "Suffix", affix = "of the Essence", "12% increased Movement speed while on Burning, Chilled or Shocked ground", statOrder = { 9434 }, level = 63, group = "MovementSpeedOnBurningChilledShockedGround", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["ManaRegenerationWhileShockedEssence1"] = { type = "Suffix", affix = "of the Essence", "70% increased Mana Regeneration Rate while Shocked", statOrder = { 2508 }, level = 63, group = "ManaRegenerationWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ManaGainedOnBlockEssence1"] = { type = "Suffix", affix = "of the Essence", "Recover 5% of your maximum Mana when you Block", statOrder = { 8186 }, level = 63, group = "ManaGainedOnBlock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block", "resource", "mana" }, }, + ["AilmentDoubleDamageEssence1"] = { type = "Suffix", affix = "of the Essence", "1% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4619 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["AilmentDoubleDamageTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "2% chance to deal Double Damage against Enemies for each type of Ailment you have inflicted on them", statOrder = { 4619 }, level = 63, group = "AilmentDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["AttackCastSpeedPerNearbyEnemyEssence1"] = { type = "Suffix", affix = "of the Essence", "5% increased Attack and Cast Speed for each nearby Enemy, up to a maximum of 30%", statOrder = { 4808 }, level = 63, group = "AttackCastSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MovementSpeedPerNearbyEnemyEssence1"] = { type = "Prefix", affix = "Essences", "5% increased Movement Speed for each nearby Enemy, up to a maximum of 50%", statOrder = { 9411 }, level = 63, group = "MovementSpeedPerNearbyEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["GlobalDefencesNoOtherDefenceModifiersOnEquipmentEssence1"] = { type = "Prefix", affix = "Essences", "(70-90)% increased Global Defences if there are no Defence Modifiers on other Equipped Items", statOrder = { 6874 }, level = 63, group = "GlobalDefencesNoOtherDefenceModifiersOnEquipment", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, }, + ["LocalGemLevelIfOnlySocketedGemEssence1"] = { type = "Prefix", affix = "Essences", "+6 to Level of Socketed Gems while there is a single Gem Socketed in this Item", statOrder = { 8017 }, level = 63, group = "LocalGemLevelIfOnlySocketedGem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, + ["ProjectilesChainAtCloseRangeEssence1"] = { type = "Suffix", affix = "of the Essence", "Projectiles can Chain from any number of additional targets in Close Range", statOrder = { 9748 }, level = 63, group = "ProjectilesChainAtCloseRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["AilmentDurationIfNotAppliedThatAilmentRecentlyEssence1"] = { type = "Suffix", affix = "of the Essence", "(40-60)% increased Duration of Ailments of types you haven't inflicted Recently", statOrder = { 4984 }, level = 63, group = "AilmentDurationIfNotAppliedThatAilmentRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, }, + ["ShockwaveUnleashCountEssence1"] = { type = "Prefix", affix = "Essences", "Left ring slot: Skills supported by Unleash have +1 to maximum number of Seals", "Right ring slot: Shockwave has +1 to Cooldown Uses", statOrder = { 7982, 8009 }, level = 63, group = "ShockwaveUnleashCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MagicFlaskEffectNoAdjacentFlasksEssence1"] = { type = "Prefix", affix = "Essences", "Equipped Magic Flasks have 30% increased effect on you if no Flasks are Adjacent to them", statOrder = { 8148 }, level = 63, group = "MagicFlaskEffectNoAdjacentFlasks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, + ["ArmourAppliesElementalHitsIfBlockedRecentlyEssence1"] = { type = "Prefix", affix = "Essences", "(2-4)% of Armour applies to Fire, Cold and Lightning Damage taken from Hits if you have Blocked Recently", statOrder = { 4749 }, level = 63, group = "ArmourAppliesElementalHitsIfBlockedRecently", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["BleedDuration1"] = { type = "Suffix", affix = "of Agony", "(8-12)% increased Bleeding Duration", statOrder = { 4994 }, level = 30, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["BleedDuration2"] = { type = "Suffix", affix = "of Torment", "(13-18)% increased Bleeding Duration", statOrder = { 4994 }, level = 60, group = "BleedDuration", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(18-24)% chance to Ignite", statOrder = { 2026 }, level = 15, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgnite2"] = { type = "Suffix", affix = "of Combustion", "(25-30)% chance to Ignite", statOrder = { 2026 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgnite3_"] = { type = "Suffix", affix = "of Conflagration", "(31-40)% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["TwoHandChanceToIgnite1"] = { type = "Suffix", affix = "of Ignition", "(25-32)% chance to Ignite", statOrder = { 2026 }, level = 15, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["TwoHandChanceToIgnite2_"] = { type = "Suffix", affix = "of Combustion", "(33-42)% chance to Ignite", statOrder = { 2026 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["TwoHandChanceToIgnite3"] = { type = "Suffix", affix = "of Conflagration", "(43-55)% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToBleed1"] = { type = "Suffix", affix = "of Bleeding", "10% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 15, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleed2_"] = { type = "Suffix", affix = "of Flaying", "15% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 55, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleed3"] = { type = "Suffix", affix = "of Hemorrhaging", "20% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 85, group = "LocalChanceToBleed", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToPoison1"] = { type = "Suffix", affix = "of Poisoning", "10% chance to Poison on Hit", statOrder = { 8002 }, level = 15, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["ChanceToPoison2"] = { type = "Suffix", affix = "of Toxins", "20% chance to Poison on Hit", statOrder = { 8002 }, level = 55, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["ChanceToPoison3_"] = { type = "Suffix", affix = "of Death", "30% chance to Poison on Hit", statOrder = { 8002 }, level = 85, group = "LocalChanceToPoisonOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["ChanceToPoisonEnhancedMod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1385, 8002 }, level = 1, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["ChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(18-24)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(25-30)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreeze3"] = { type = "Suffix", affix = "of the Hyperboreal", "(31-40)% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["TwoHandChanceToFreeze1"] = { type = "Suffix", affix = "of Freezing", "(25-32)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["TwoHandChanceToFreeze2"] = { type = "Suffix", affix = "of Bleakness", "(33-42)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["TwoHandChanceToFreeze3____"] = { type = "Suffix", affix = "of the Hyperboreal", "(43-55)% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToShock1"] = { type = "Suffix", affix = "of Shocking", "(18-24)% chance to Shock", statOrder = { 2033 }, level = 15, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShock2__"] = { type = "Suffix", affix = "of Zapping", "(25-30)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(31-40)% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["TwoHandChanceToShock1__"] = { type = "Suffix", affix = "of Shocking", "(25-32)% chance to Shock", statOrder = { 2033 }, level = 15, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["TwoHandChanceToShock2_"] = { type = "Suffix", affix = "of Zapping", "(33-42)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["TwoHandChanceToShock3"] = { type = "Suffix", affix = "of Electrocution", "(43-55)% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["BurnDamage1_"] = { type = "Suffix", affix = "of Burning", "(26-30)% increased Burning Damage", statOrder = { 1877 }, level = 20, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["BurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(31-35)% increased Burning Damage", statOrder = { 1877 }, level = 40, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["BurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(36-40)% increased Burning Damage", statOrder = { 1877 }, level = 60, group = "BurnDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["TwoHandBurnDamage1"] = { type = "Suffix", affix = "of Burning", "(31-40)% increased Burning Damage", statOrder = { 1877 }, level = 20, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["TwoHandBurnDamage2"] = { type = "Suffix", affix = "of Combusting", "(41-50)% increased Burning Damage", statOrder = { 1877 }, level = 40, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["TwoHandBurnDamage3"] = { type = "Suffix", affix = "of Conflagrating", "(51-60)% increased Burning Damage", statOrder = { 1877 }, level = 60, group = "BurnDamage", weightKey = { "staff", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["PoisonDamage1"] = { type = "Suffix", affix = "of Poison", "(21-30)% increased Damage with Poison", "20% chance to Poison on Hit", statOrder = { 3181, 8002 }, level = 20, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamage2"] = { type = "Suffix", affix = "of Venom", "(31-40)% increased Damage with Poison", "25% chance to Poison on Hit", statOrder = { 3181, 8002 }, level = 40, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamage3"] = { type = "Suffix", affix = "of Virulence", "(41-50)% increased Damage with Poison", "30% chance to Poison on Hit", statOrder = { 3181, 8002 }, level = 60, group = "PoisonDamageAndLocalChanceOnHit", weightKey = { "bow", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamageEnhancedAttacksMod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1390, 3181 }, level = 1, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamageEnhancedSpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1407, 3181 }, level = 1, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, }, + ["BleedDamage1_"] = { type = "Suffix", affix = "of Bloodletting", "Attacks have 20% chance to cause Bleeding", "(21-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 20, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["BleedDamage2"] = { type = "Suffix", affix = "of Haemophilia", "Attacks have 25% chance to cause Bleeding", "(31-40)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 40, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["BleedDamage3"] = { type = "Suffix", affix = "of Exsanguination", "Attacks have 30% chance to cause Bleeding", "(41-50)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 60, group = "BleedingDamageChanceWeaponSuffix", weightKey = { "bow", "sword", "axe", "mace", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["ReducedPhysicalDamageTaken1"] = { type = "Suffix", affix = "of Dampening", "2% additional Physical Damage Reduction", statOrder = { 2273 }, level = 25, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ReducedPhysicalDamageTaken2_"] = { type = "Suffix", affix = "of Numbing", "(3-4)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 85, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ChanceToDodge1_"] = { type = "Suffix", affix = "of Haze", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 25, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToDodge2__"] = { type = "Suffix", affix = "of Fog", "+(7-9)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["EnergyShieldRegenerationPerMinute1"] = { type = "Suffix", affix = "of Vibrance", "Regenerate 0.6% of Energy Shield per second", statOrder = { 2646 }, level = 25, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationPerMinute2"] = { type = "Suffix", affix = "of Exuberance", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 85, group = "EnergyShieldRegenerationPerMinute", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["LifeRegenerationRate1"] = { type = "Suffix", affix = "of Esprit", "(9-11)% increased Life Regeneration rate", statOrder = { 1577 }, level = 46, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRate2"] = { type = "Suffix", affix = "of Perpetuity", "(12-14)% increased Life Regeneration rate", statOrder = { 1577 }, level = 57, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRate3"] = { type = "Suffix", affix = "of Vivification", "(15-17)% increased Life Regeneration rate", statOrder = { 1577 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRate4"] = { type = "Suffix", affix = "of Youth", "(18-19)% increased Life Regeneration rate", statOrder = { 1577 }, level = 76, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRate5"] = { type = "Suffix", affix = "of Everlasting", "(20-21)% increased Life Regeneration rate", statOrder = { 1577 }, level = 85, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["AdditionalPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Watchman", "4% additional Physical Damage Reduction", statOrder = { 2273 }, level = 45, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, + ["AdditionalPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Sentry", "5% additional Physical Damage Reduction", statOrder = { 2273 }, level = 58, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, + ["AdditionalPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Keeper", "6% additional Physical Damage Reduction", statOrder = { 2273 }, level = 67, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, + ["AdditionalPhysicalDamageReduction4"] = { type = "Suffix", affix = "of the Protector", "7% additional Physical Damage Reduction", statOrder = { 2273 }, level = 77, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, + ["AdditionalPhysicalDamageReduction5_"] = { type = "Suffix", affix = "of the Conservator", "8% additional Physical Damage Reduction", statOrder = { 2273 }, level = 86, group = "ReducedPhysicalDamageTaken", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "physical" }, }, + ["ChanceToSuppressSpells1_"] = { type = "Suffix", affix = "of Rebuttal", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 46, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpells2"] = { type = "Suffix", affix = "of Snuffing", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 57, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpells3"] = { type = "Suffix", affix = "of Revoking", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpells4"] = { type = "Suffix", affix = "of Abjuration", "+(11-12)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 76, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpells5__"] = { type = "Suffix", affix = "of Nullification", "+(13-14)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsHigh1__"] = { type = "Suffix", affix = "of Rebuttal", "+(8-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsHigh2__"] = { type = "Suffix", affix = "of Snuffing", "+(11-13)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 58, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsHigh3"] = { type = "Suffix", affix = "of Revoking", "+(14-16)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 67, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsHigh4_"] = { type = "Suffix", affix = "of Abjuration", "+(17-19)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 77, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsHigh5___"] = { type = "Suffix", affix = "of Nullification", "+(20-22)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 86, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["EnergyShieldRechargeRate1"] = { type = "Suffix", affix = "of Allaying", "(24-26)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 46, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRechargeRate2"] = { type = "Suffix", affix = "of Diffusion", "(27-29)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 57, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRechargeRate3"] = { type = "Suffix", affix = "of Dispersal", "(30-32)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRechargeRate4"] = { type = "Suffix", affix = "of Buffering", "(33-35)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 76, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRechargeRate5______"] = { type = "Suffix", affix = "of Ardour", "(36-38)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 85, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FasterStartEnergyShieldRecharge1"] = { type = "Suffix", affix = "of Enlivening", "(27-34)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 45, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FasterStartEnergyShieldRecharge2"] = { type = "Suffix", affix = "of Zest", "(35-42)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 58, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FasterStartEnergyShieldRecharge3__"] = { type = "Suffix", affix = "of Galvanising", "(43-50)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 67, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FasterStartEnergyShieldRecharge4"] = { type = "Suffix", affix = "of Vigour", "(51-58)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 77, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FasterStartEnergyShieldRecharge5_"] = { type = "Suffix", affix = "of Second Wind", "(59-66)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 86, group = "EnergyShieldDelay", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "gloves", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["ReducedExtraDamageFromCrits1___"] = { type = "Suffix", affix = "of Dulling", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 33, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["ReducedExtraDamageFromCrits2__"] = { type = "Suffix", affix = "of Deadening", "You take (31-40)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["ReducedExtraDamageFromCrits3"] = { type = "Suffix", affix = "of Interference", "You take (41-50)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 67, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["ReducedExtraDamageFromCrits4__"] = { type = "Suffix", affix = "of Obstruction", "You take (51-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 78, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "damage", "critical" }, }, + ["DamageTakenGainedAsLife1___"] = { type = "Suffix", affix = "of Bandaging", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 44, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLife2"] = { type = "Suffix", affix = "of Stitching", "(7-9)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 56, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLife3"] = { type = "Suffix", affix = "of Suturing", "(10-12)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLife4_"] = { type = "Suffix", affix = "of Fleshbinding", "(13-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 79, group = "DamageTakenGainedAsLife", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["GlobalSkillGemLevel1"] = { type = "Prefix", affix = "Exalter's", "+1 to Level of all Skill Gems", statOrder = { 4634 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { "amulet", "default", }, weightVal = { 50, 0 }, modTags = { "gem" }, }, + ["GlobalFireGemLevel1_"] = { type = "Prefix", affix = "Vulcanist's", "+1 to Level of all Fire Skill Gems", statOrder = { 6586 }, level = 75, group = "GlobalFireGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["GlobalColdGemLevel1__"] = { type = "Prefix", affix = "Rimedweller's", "+1 to Level of all Cold Skill Gems", statOrder = { 5836 }, level = 75, group = "GlobalColdGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["GlobalLightningGemLevel1"] = { type = "Prefix", affix = "Stormbrewer's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7465 }, level = 75, group = "GlobalLightningGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["GlobalPhysicalGemLevel1_"] = { type = "Prefix", affix = "Behemoth's", "+1 to Level of all Physical Skill Gems", statOrder = { 9671 }, level = 75, group = "GlobalPhysicalGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "gem" }, }, + ["GlobalChaosGemLevel1"] = { type = "Prefix", affix = "Provocateur's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5756 }, level = 75, group = "GlobalChaosGemLevel", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "gem" }, }, + ["MaximumFireResist1"] = { type = "Suffix", affix = "of the Bushfire", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResist2_"] = { type = "Suffix", affix = "of the Molten Core", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResist3"] = { type = "Suffix", affix = "of the Solar Storm", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 81, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumColdResist1"] = { type = "Suffix", affix = "of Furs", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResist2"] = { type = "Suffix", affix = "of the Tundra", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResist3"] = { type = "Suffix", affix = "of the Mammoth", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 81, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumLightningResist1"] = { type = "Suffix", affix = "of Impedance", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResist2___"] = { type = "Suffix", affix = "of Shockproofing", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResist3"] = { type = "Suffix", affix = "of the Lightning Rod", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 81, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumChaosResist1"] = { type = "Suffix", affix = "of Regularity", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResist2_"] = { type = "Suffix", affix = "of Concord", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResist3"] = { type = "Suffix", affix = "of Harmony", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 81, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumAllResist1_"] = { type = "Suffix", affix = "of the Sempiternal", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, }, + ["MaximumAllResist2"] = { type = "Suffix", affix = "of the Deathless", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 81, group = "MaximumResistances", weightKey = { "shield", "default", }, weightVal = { 125, 0 }, modTags = { "resistance" }, }, + ["DamageWithBowSkills1"] = { type = "Prefix", affix = "Acute", "(5-10)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 4, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkills2"] = { type = "Prefix", affix = "Trenchant", "(11-20)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 15, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkills3"] = { type = "Prefix", affix = "Perforating", "(21-30)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 30, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkills4_"] = { type = "Prefix", affix = "Incisive", "(31-36)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 60, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkills5"] = { type = "Prefix", affix = "Lacerating", "(37-42)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 81, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkills6_"] = { type = "Prefix", affix = "Impaling", "(43-50)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 86, group = "DamageWithBowSkills", weightKey = { "quiver", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkillsEssence3a"] = { type = "Prefix", affix = "Essences", "(21-25)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 26, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["DamageWithBowSkillsEssence3b_"] = { type = "Prefix", affix = "Essences", "(26-30)% increased Damage with Bow Skills", statOrder = { 6020 }, level = 42, group = "DamageWithBowSkills", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["IncreasedDurationBootsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 15 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 314, 1895 }, level = 68, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["IncreasedCooldownRecoveryBootsUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["SupportedByFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 496 }, level = 68, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["ImmuneToChilledGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Chilled Ground", statOrder = { 10461 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ImmuneToBurningGroundUber1"] = { type = "Prefix", affix = "The Shaper's", "Unaffected by Burning Ground", statOrder = { 10456 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, + ["ImmuneToShockedGroundUber1"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Shocked Ground", statOrder = { 10481 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ImmuneToDesecratedGroundUber1_"] = { type = "Prefix", affix = "The Elder's", "Unaffected by Desecrated Ground", statOrder = { 10467 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "chaos" }, }, + ["ChanceToDodgeUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeUber2"] = { type = "Suffix", affix = "of Shaping", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeUber3"] = { type = "Suffix", affix = "of Shaping", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 84, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsUber2"] = { type = "Suffix", affix = "of the Elder", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 75, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsUber3"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 83, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidStunUber1"] = { type = "Suffix", affix = "of the Elder", "(15-22)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 68, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidStunUber2"] = { type = "Suffix", affix = "of the Elder", "(23-30)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidStunUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 82, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidElementalAilmentsUber1_"] = { type = "Suffix", affix = "of Shaping", "(14-17)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalAilmentsUber2"] = { type = "Suffix", affix = "of Shaping", "(18-21)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidElementalAilmentsUber3"] = { type = "Suffix", affix = "of Shaping", "(31-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 81, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidProjectilesUber1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% chance to avoid Projectiles", statOrder = { 4993 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidProjectilesUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% chance to avoid Projectiles", statOrder = { 4993 }, level = 84, group = "ChanceToAvoidProjectiles", weightKey = { "boots_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToGainEnduranceChargeOnKillUber1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["ChanceToGainEnduranceChargeOnKillUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 83, group = "EnduranceChargeOnKillChance", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["TotemDamageSpellUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(20-25)% increased Totem Damage", statOrder = { 464, 1193 }, level = 68, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemDamageSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(26-30)% increased Totem Damage", statOrder = { 464, 1193 }, level = 75, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemDamageSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 464, 1193 }, level = 80, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemSpeedSpellUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Totem", "(8-12)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 68, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemSpeedSpellUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Totem", "(13-16)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 75, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemSpeedSpellUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 22 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 80, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemDamageAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(20-25)% increased Totem Damage", statOrder = { 362, 1193 }, level = 68, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemDamageAttackUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(26-30)% increased Totem Damage", statOrder = { 362, 1193 }, level = 75, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemDamageAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 362, 1193 }, level = 80, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemSpeedAttackUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Ballista Totem", "(8-12)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 68, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemSpeedAttackUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Ballista Totem", "(13-16)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 75, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemSpeedAttackUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 80, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["SupportedByLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 483 }, level = 68, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["GrantsDecoyTotemSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 20 Decoy Totem Skill", statOrder = { 700 }, level = 68, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GlobalRaiseSpectreGemLevelUber1"] = { type = "Suffix", affix = "of the Elder", "+1 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 75, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, }, + ["IncreasedAttackSpeedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Faster Attacks", "(7-9)% increased Attack Speed", statOrder = { 469, 1410 }, level = 68, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["IncreasedAttackSpeedUber2_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Faster Attacks", "(10-12)% increased Attack Speed", statOrder = { 469, 1410 }, level = 75, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["IncreasedAttackSpeedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 469, 1410 }, level = 82, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["IncreasedCastSpeedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Faster Casting", "(7-9)% increased Cast Speed", statOrder = { 500, 1446 }, level = 68, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(10-12)% increased Cast Speed", statOrder = { 500, 1446 }, level = 75, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 500, 1446 }, level = 84, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedAttackAndCastSpeedUber1_"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 68, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, + ["IncreasedAttackAndCastSpeedUber2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 75, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, + ["IncreasedAttackAndCastSpeedUber3_"] = { type = "Suffix", affix = "of the Elder", "(13-14)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 85, group = "IncreasedAttackAndCastSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, + ["SupportedByManaLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 15 Mana Leech", statOrder = { 514 }, level = 68, group = "DisplaySupportedByManaLeech", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["ProjectileSpeedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(15-20)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 68, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["ProjectileSpeedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(21-25)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 75, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["ProjectileSpeedUber3_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 82, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["ProjectileDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Slower Projectiles", "(15-18)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 68, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["ProjectileDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Slower Projectiles", "(19-22)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 75, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["ProjectileDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 83, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["ChanceToAvoidInterruptionWhileCastingUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidInterruptionWhileCastingUber2"] = { type = "Suffix", affix = "of Shaping", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidInterruptionWhileCastingUber3"] = { type = "Suffix", affix = "of Shaping", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 80, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["IncreasedMeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Melee Strike Range", statOrder = { 2534 }, level = 85, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["IncreasedMeleeWeaponRangeAndMeleeDamageUber1"] = { type = "Suffix", affix = "of the Elder", "(13-16)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 80, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["AdditionalTrapsThrownSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9528 }, level = 68, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AdditionalTrapsThrownSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9528 }, level = 75, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AdditionalTrapsThrownSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9528 }, level = 84, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap", "(20-25)% increased Trap Damage", statOrder = { 454, 1194 }, level = 68, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap", "(26-30)% increased Trap Damage", statOrder = { 454, 1194 }, level = 75, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Trap", "(31-35)% increased Trap Damage", statOrder = { 454, 1194 }, level = 80, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageCooldownUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(20-25)% increased Trap Damage", statOrder = { 390, 1194 }, level = 68, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(26-30)% increased Trap Damage", statOrder = { 390, 1194 }, level = 75, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageCooldownUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 390, 1194 }, level = 80, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapSpeedCooldownUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Advanced Traps", "(8-12)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 68, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapSpeedCooldownUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Advanced Traps", "(13-16)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 75, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapSpeedCooldownUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 80, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapDamageMineUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Trap Damage", statOrder = { 457, 1194 }, level = 68, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageMineUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Trap Damage", statOrder = { 457, 1194 }, level = 75, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageMineUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 457, 1194 }, level = 80, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["PoisonDamageSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(20-25)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 68, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(26-30)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 75, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 80, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance to Poison", "(8-12)% increased Poison Duration", statOrder = { 523, 3170 }, level = 68, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["PoisonDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "(13-16)% increased Poison Duration", statOrder = { 523, 3170 }, level = 75, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["PoisonDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 523, 3170 }, level = 80, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["BleedingDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Chance To Bleed", "(20-25)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 68, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, + ["BleedingDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "(26-30)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 75, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, + ["BleedingDamageUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 80, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, + ["ChanceToGainFrenzyChargeOnKillUberElder1"] = { type = "Prefix", affix = "The Elder's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["ChanceToGainFrenzyChargeOnKillUberElder2_"] = { type = "Prefix", affix = "The Elder's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["ChanceToGainFrenzyChargeOnKillUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["ChanceToGainFrenzyChargeOnKillUberShaper2_"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 84, group = "FrenzyChargeOnKillChance", weightKey = { "2h_axe_shaper", "2h_sword_shaper", "bow_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["IncreasedAccuracySupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 16 Additional Accuracy", "(6-10)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 68, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["IncreasedAccuracySupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Additional Accuracy", "(11-15)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 75, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["IncreasedAccuracySupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 83, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["AdditionalBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(2-3)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 68, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["AdditionalBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(4-5)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 80, group = "BlockPercent", weightKey = { "gloves_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlindOnHitSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Blind", "(5-6)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 68, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["BlindOnHitSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Blind", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 75, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["BlindOnHitSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 80, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SocketedSpellCriticalMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +30% to Critical Strike Multiplier", statOrder = { 567 }, level = 68, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, + ["SocketedSpellCriticalMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +50% to Critical Strike Multiplier", statOrder = { 567 }, level = 75, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, + ["SocketedSpellCriticalMultiplierUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +70% to Critical Strike Multiplier", statOrder = { 567 }, level = 83, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, + ["SocketedAttackCriticalMultiplierUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +30% to Critical Strike Multiplier", statOrder = { 548 }, level = 68, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["SocketedAttackCriticalMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +50% to Critical Strike Multiplier", statOrder = { 548 }, level = 75, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["SocketedAttackCriticalMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +70% to Critical Strike Multiplier", statOrder = { 548 }, level = 84, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["AreaDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Concentrated Effect", "(15-18)% increased Area Damage", statOrder = { 453, 2035 }, level = 68, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["AreaDamageSupportedUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Concentrated Effect", "(19-22)% increased Area Damage", statOrder = { 453, 2035 }, level = 75, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["AreaDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 453, 2035 }, level = 82, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["AreaOfEffectSupportedUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(7-9)% increased Area of Effect", statOrder = { 224, 1880 }, level = 68, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AreaOfEffectSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(10-12)% increased Area of Effect", statOrder = { 224, 1880 }, level = 75, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AreaOfEffectSupportedUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 224, 1880 }, level = 83, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["MaximumManaUber1"] = { type = "Prefix", affix = "The Elder's", "(9-11)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumManaUber2_"] = { type = "Prefix", affix = "The Elder's", "(12-15)% increased maximum Mana", statOrder = { 1580 }, level = 75, group = "MaximumManaIncreasePercent", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MinionDamageSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Damage", "Minions deal (15-18)% increased Damage", statOrder = { 506, 1973 }, level = 68, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, + ["MinionDamageSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Damage", "Minions deal (19-22)% increased Damage", statOrder = { 506, 1973 }, level = 75, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, + ["MinionDamageSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 506, 1973 }, level = 83, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, + ["MinionLifeSupportedUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Minion Life", "Minions have (15-18)% increased maximum Life", statOrder = { 504, 1766 }, level = 68, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, + ["MinionLifeSupportedUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Minion Life", "Minions have (19-22)% increased maximum Life", statOrder = { 504, 1766 }, level = 75, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, + ["MinionLifeSupportedUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 504, 1766 }, level = 80, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, + ["AdditionalMinesPlacedSupportedUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 68, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AdditionalMinesPlacedSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 75, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["AdditionalMinesPlacedSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 85, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["MineDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Blastchain Mine", "(20-25)% increased Mine Damage", statOrder = { 497, 1196 }, level = 68, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Blastchain Mine", "(26-30)% increased Mine Damage", statOrder = { 497, 1196 }, level = 75, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 22 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 497, 1196 }, level = 80, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageTrapUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", "(20-25)% increased Mine Damage", statOrder = { 457, 1196 }, level = 68, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageTrapUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Trap And Mine Damage", "(26-30)% increased Mine Damage", statOrder = { 457, 1196 }, level = 75, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageTrapUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 457, 1196 }, level = 80, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 250, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["IncreasedChillEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Hypothermia", "(8-12)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 68, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, + ["IncreasedChillEffectSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Hypothermia", "(13-16)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 75, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, + ["IncreasedChillEffectSupportedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 80, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, + ["IncreasedShockEffectSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Innervate", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 521, 7433 }, level = 68, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, + ["IncreasedShockEffectSupportedUber2___"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Innervate", "(13-16)% increased Effect of Lightning Ailments", statOrder = { 521, 7433 }, level = 75, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, + ["IncreasedShockEffectSupportedUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 521, 7433 }, level = 80, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, + ["IgniteDurationSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Immolate", "(8-12)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 68, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, + ["IgniteDurationSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Immolate", "(13-16)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 75, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, + ["IgniteDurationSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 80, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, + ["IncreasedBurningDamageSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Burning Damage", "(20-25)% increased Burning Damage", statOrder = { 312, 1877 }, level = 68, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["IncreasedBurningDamageSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Burning Damage", "(26-30)% increased Burning Damage", statOrder = { 312, 1877 }, level = 75, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["IncreasedBurningDamageSupportedUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 312, 1877 }, level = 82, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["ChanceToGainPowerChargeOnKillUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["ChanceToGainPowerChargeOnKillUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 84, group = "PowerChargeOnKillChance", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["SupportedByLessDurationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 365 }, level = 68, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SpellAddedFireDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1404 }, level = 82, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1405 }, level = 83, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageUber3"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1406 }, level = 84, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedPhysicalDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1403 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["ManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AddedManaRegenerationUber1"] = { type = "Suffix", affix = "of Shaping", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AddedManaRegenerationUber2"] = { type = "Suffix", affix = "of Shaping", "Regenerate (6-8) Mana per second", statOrder = { 1582 }, level = 80, group = "AddedManaRegeneration", weightKey = { "helmet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AdditionalSpellBlockChanceUber1"] = { type = "Suffix", affix = "of the Elder", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["AdditionalSpellBlockChanceUber2"] = { type = "Suffix", affix = "of the Elder", "(5-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["SocketedSpellCriticalStrikeChanceUber1_"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +1% to Critical Strike Chance", statOrder = { 566 }, level = 68, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, + ["SocketedSpellCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +2% to Critical Strike Chance", statOrder = { 566 }, level = 75, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, + ["SocketedSpellCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Spells have +3% to Critical Strike Chance", statOrder = { 566 }, level = 84, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, + ["SocketedAttackCriticalStrikeChanceUber1__"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +1% to Critical Strike Chance", statOrder = { 547 }, level = 68, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, + ["SocketedAttackCriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +2% to Critical Strike Chance", statOrder = { 547 }, level = 75, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, + ["SocketedAttackCriticalStrikeChanceUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Attacks have +3% to Critical Strike Chance", statOrder = { 547 }, level = 83, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, + ["EnemyPhysicalDamageTakenAuraUber1_"] = { type = "Suffix", affix = "of the Elder", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7918 }, level = 85, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["EnemyElementalDamageTakenAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Nearby Enemies take 6% increased Elemental Damage", statOrder = { 7913 }, level = 85, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["LocalIncreaseSocketedActiveGemLevelUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, }, + ["LocalIncreaseSocketedSupportGemLevelUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "gem" }, }, + ["PhysicalDamageTakenAsFirePercentUber1"] = { type = "Prefix", affix = "The Elder's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFirePercentUber2"] = { type = "Prefix", affix = "The Elder's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 84, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdPercentUber2"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsLightningPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningPercentUber2___"] = { type = "Prefix", affix = "The Shaper's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 82, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["ReducedElementalReflectTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["ReducedElementalReflectTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, ["ElementalDamageCannotBeReflectedPercentUber1"] = { type = "Prefix", affix = "The Shaper's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod" }, }, - ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ReducedPhysicalReflectTakenUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ReducedPhysicalReflectTakenUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, ["PhysicalDamageCannotBeReflectedPercentUber1"] = { type = "Prefix", affix = "The Elder's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod" }, }, - ["MaximumLifeUber1"] = { type = "Prefix", affix = "The Elder's", "(5-8)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeUber2"] = { type = "Prefix", affix = "The Elder's", "(9-12)% increased maximum Life", statOrder = { 1576 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumManaBodyUber1"] = { type = "Prefix", affix = "The Shaper's", "(9-11)% increased maximum Mana", statOrder = { 1585 }, level = 68, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumManaBodyUber2"] = { type = "Prefix", affix = "The Shaper's", "(12-15)% increased maximum Mana", statOrder = { 1585 }, level = 75, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, }, - ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Life on Kill", statOrder = { 1754 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Life on Kill", statOrder = { 1754 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Mana on Kill", statOrder = { 1756 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Mana on Kill", statOrder = { 1756 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1755 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1755 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrder = { 1189 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrder = { 1189 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrder = { 1190 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrder = { 1190 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrder = { 1191 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrder = { 1191 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1-1.5)% of Life per second", statOrder = { 1949 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1.6-2)% of Life per second", statOrder = { 1949 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["SupportedByItemRarityUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 10 Item Rarity", "(8-12)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 326, 10503 }, level = 68, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, - ["SupportedByItemRarityUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 15 Item Rarity", "(13-18)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 326, 10503 }, level = 85, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, - ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4797 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, - ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4797 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, - ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, - ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, - ["GrantsWrathAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Wrath Skill", statOrder = { 653 }, level = 68, group = "WrathSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsAngerAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Anger Skill", statOrder = { 655 }, level = 68, group = "AngerSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsHatredAuraUber1__"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Hatred Skill", statOrder = { 654 }, level = 68, group = "HatredSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsEnvyAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 15 Envy Skill", statOrder = { 660 }, level = 85, group = "GrantsEnvy", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsDeterminationAuraUber1_"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Determination Skill", statOrder = { 656 }, level = 68, group = "DeterminationSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsGraceAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Grace Skill", statOrder = { 657 }, level = 68, group = "GraceSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsDisciplineAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Discipline Skill", statOrder = { 659 }, level = 68, group = "DisciplineSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsHasteAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Haste Skill", statOrder = { 644 }, level = 68, group = "HasteSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsVitalityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Vitality Skill", statOrder = { 648 }, level = 68, group = "VitalitySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsClarityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Clarity Skill", statOrder = { 646 }, level = 68, group = "ClaritySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2557 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2557 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, - ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, - ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, - ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, }, - ["FireDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, - ["ColdDamageLifeLeechSuffixUber1_"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, - ["LightningDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, - ["PhysicalDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, }, - ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrder = { 1803 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrder = { 1803 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, - ["BlockAppliesToSpellsUber1"] = { type = "Suffix", affix = "of Shaping", "(7-10)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockAppliesToSpellsUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockAmuletUber1_"] = { type = "Suffix", affix = "of Shaping", "(4-5)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockAmuletUber2_"] = { type = "Suffix", affix = "of Shaping", "(6-7)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrder = { 1188 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrder = { 1188 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrder = { 1188 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrder = { 1188 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 82, group = "ReducedReservation", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaReservationEfficiencyUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "The Elder's", "(7-9)% increased Area of Effect", statOrder = { 1885 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(10-12)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "The Elder's", "(13-15)% increased Area of Effect", statOrder = { 1885 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "influence_mod" }, }, - ["AdditionalPierceUber1"] = { type = "Prefix", affix = "The Elder's", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 68, group = "AdditionalPierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, modTags = { "influence_mod" }, }, - ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrder = { 1597 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, }, - ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrder = { 1597 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, }, - ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (8-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (12-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrder = { 1415 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9487 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "influence_mod", "damage", "chaos" }, }, - ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3617 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, - ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3617 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, - ["MaximumZombiesUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Raised Zombies", statOrder = { 2165 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, }, - ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Skeletons", statOrder = { 2167 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, }, - ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1737 }, level = 68, group = "MaximumLifeLeechRateOldFix", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeLeechRateUpdatedSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2985 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 15 Strength", statOrder = { 6063 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrder = { 6061 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrder = { 6062 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, - ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(25-29)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(35-40)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrder = { 1239 }, level = 68, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrder = { 1239 }, level = 75, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrder = { 1239 }, level = 83, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrder = { 1228 }, level = 82, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["MaximumLifeUber1"] = { type = "Prefix", affix = "The Elder's", "(5-8)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeUber2"] = { type = "Prefix", affix = "The Elder's", "(9-12)% increased maximum Life", statOrder = { 1571 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumManaBodyUber1"] = { type = "Prefix", affix = "The Shaper's", "(9-11)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumManaBodyUber2"] = { type = "Prefix", affix = "The Shaper's", "(12-15)% increased maximum Mana", statOrder = { 1580 }, level = 75, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["DamageTakenFromManaBeforeLifeUber1_"] = { type = "Prefix", affix = "The Shaper's", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 80, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, }, + ["MaximumLifeOnKillPercentUber1"] = { type = "Suffix", affix = "of the Elder", "Recover (3-4)% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeOnKillPercentUber2__"] = { type = "Suffix", affix = "of the Elder", "Recover (5-6)% of Life on Kill", statOrder = { 1749 }, level = 75, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumManaOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumManaOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Mana on Kill", statOrder = { 1751 }, level = 75, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumEnergyShieldOnKillPercentUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["MaximumEnergyShieldOnKillPercentUber2"] = { type = "Suffix", affix = "of Shaping", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1750 }, level = 75, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["PercentageStrengthUber1_"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageStrengthUber2__"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Strength", statOrder = { 1184 }, level = 83, group = "PercentageStrength", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageDexterityUber1"] = { type = "Suffix", affix = "of the Elder", "(5-8)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageDexterityUber2"] = { type = "Suffix", affix = "of the Elder", "(9-12)% increased Dexterity", statOrder = { 1185 }, level = 83, group = "PercentageDexterity", weightKey = { "body_armour_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageIntelligenceUber1"] = { type = "Suffix", affix = "of Shaping", "(5-8)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageIntelligenceUber2"] = { type = "Suffix", affix = "of Shaping", "(9-12)% increased Intelligence", statOrder = { 1186 }, level = 83, group = "PercentageIntelligence", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["LifeRegenerationRatePercentUber1"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1-1.5)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRegenerationRatePercentUber2"] = { type = "Suffix", affix = "of the Elder", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["SupportedByItemRarityUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 10 Item Rarity", "(8-12)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 321, 10504 }, level = 68, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, + ["SupportedByItemRarityUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 15 Item Rarity", "(13-18)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 321, 10504 }, level = 85, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, + ["AdditionalCriticalStrikeChanceWithAttacksUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4792 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, + ["AdditionalCriticalStrikeChanceWithAttacksUber2"] = { type = "Suffix", affix = "of the Elder", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4792 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, + ["AdditionalCriticalStrikeChanceWithSpellsUber1_"] = { type = "Suffix", affix = "of Shaping", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, + ["AdditionalCriticalStrikeChanceWithSpellsUber2_"] = { type = "Suffix", affix = "of Shaping", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, + ["GrantsWrathAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Wrath Skill", statOrder = { 648 }, level = 68, group = "WrathSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsAngerAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Anger Skill", statOrder = { 650 }, level = 68, group = "AngerSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsHatredAuraUber1__"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Hatred Skill", statOrder = { 649 }, level = 68, group = "HatredSkill", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsEnvyAuraUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 15 Envy Skill", statOrder = { 655 }, level = 85, group = "GrantsEnvy", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsDeterminationAuraUber1_"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Determination Skill", statOrder = { 651 }, level = 68, group = "DeterminationSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsGraceAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Grace Skill", statOrder = { 652 }, level = 68, group = "GraceSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsDisciplineAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Discipline Skill", statOrder = { 654 }, level = 68, group = "DisciplineSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsHasteAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Haste Skill", statOrder = { 639 }, level = 68, group = "HasteSkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsVitalityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Vitality Skill", statOrder = { 643 }, level = 68, group = "VitalitySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsClarityAuraUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Clarity Skill", statOrder = { 641 }, level = 68, group = "ClaritySkill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["ReducedAttributeRequirementsUber1"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2552 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["ReducedAttributeRequirementsUber2"] = { type = "Suffix", affix = "of Shaping", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2552 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["FireDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, + ["ColdDamageLifeLeechUber1_"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, + ["LightningDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Shaper's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, + ["PhysicalDamageLifeLeechUber1"] = { type = "Prefix", affix = "The Elder's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, }, + ["FireDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, + ["ColdDamageLifeLeechSuffixUber1_"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, + ["LightningDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of Shaping", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, + ["PhysicalDamageLifeLeechSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "physical" }, }, + ["MovementVelocityAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-6)% increased Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementVelocityAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-8)% increased Movement Speed", statOrder = { 1798 }, level = 84, group = "MovementVelocity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, + ["BlockAppliesToSpellsUber1"] = { type = "Suffix", affix = "of Shaping", "(7-10)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockAppliesToSpellsUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockAmuletUber1_"] = { type = "Suffix", affix = "of Shaping", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockAmuletUber2_"] = { type = "Suffix", affix = "of Shaping", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["PercentageAllAttributesUberElder1"] = { type = "Suffix", affix = "of the Elder", "(6-9)% increased Attributes", statOrder = { 1183 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageAllAttributesUberElder2"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Attributes", statOrder = { 1183 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageAllAttributesUberShaper1"] = { type = "Suffix", affix = "of Shaping", "(6-9)% increased Attributes", statOrder = { 1183 }, level = 68, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageAllAttributesUberShaper2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Attributes", statOrder = { 1183 }, level = 75, group = "PercentageAllAttributes", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["ReducedManaReservedUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 82, group = "ReducedReservation", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaReservationEfficiencyUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 82, group = "ManaReservationEfficiency", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AreaOfEffectUber1_"] = { type = "Prefix", affix = "The Elder's", "(7-9)% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 800, 800, 800, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(10-12)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 600, 600, 600, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectUber3_"] = { type = "Prefix", affix = "The Elder's", "(13-15)% increased Area of Effect", statOrder = { 1880 }, level = 82, group = "AreaOfEffect", weightKey = { "amulet_elder", "quiver_elder", "shield_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "influence_mod" }, }, + ["AdditionalPierceUber1"] = { type = "Prefix", affix = "The Elder's", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 68, group = "AdditionalPierce", weightKey = { "amulet_elder", "quiver_elder", "default", }, weightVal = { 800, 800, 0 }, modTags = { "influence_mod" }, }, + ["ReducedPhysicalDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 83, group = "ReducedPhysicalDamageTaken", weightKey = { "amulet_elder", "shield_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ItemFoundQuantityIncreaseUber1"] = { type = "Suffix", affix = "of Shaping", "(4-7)% increased Quantity of Items found", statOrder = { 1592 }, level = 75, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, }, + ["ItemFoundQuantityIncreaseUber2"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 85, group = "ItemFoundQuantityIncrease", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "drop" }, }, + ["PhysicalAddedAsFireAmuletUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (8-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireAmuletUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (12-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsColdAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdAmuletUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsLightningAmuletUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningAmuletUber2_"] = { type = "Prefix", affix = "The Shaper's", "Gain (12-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["IncreasedAttackSpeedAmuletUber1"] = { type = "Suffix", affix = "of the Elder", "(7-13)% increased Attack Speed", statOrder = { 1410 }, level = 82, group = "IncreasedAttackSpeed", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["NonChaosAddedAsChaosUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (3-5)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9488 }, level = 81, group = "NonChaosAddedAsChaos", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "influence_mod", "damage", "chaos" }, }, + ["PowerFrenzyOrEnduranceChargeOnKillUber1_"] = { type = "Suffix", affix = "of Shaping", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, + ["PowerFrenzyOrEnduranceChargeOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, + ["MaximumZombiesUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, }, + ["MaximumSkeletonsUber1"] = { type = "Prefix", affix = "The Elder's", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 68, group = "MaximumMinionCount", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "minion" }, }, + ["MaximumBlockChanceUber1"] = { type = "Suffix", affix = "of Shaping", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["MaximumLifeLeechRateUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1732 }, level = 68, group = "MaximumLifeLeechRateOldFix", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeLeechRateUpdatedUber1"] = { type = "Prefix", affix = "The Elder's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeLeechRateUpdatedSuffixUber1"] = { type = "Suffix", affix = "of the Elder", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["ElementalPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (4-7)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 2980 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["DamagePer15StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 15 Strength", statOrder = { 6058 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePer15DexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePer15IntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "1% increased Damage per 15 Intelligence", statOrder = { 6057 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, + ["ReducedCurseEffectUber1_"] = { type = "Suffix", affix = "of Shaping", "(25-29)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["ReducedCurseEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(35-40)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_shaper", "default", }, weightVal = { 1600, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["MeleeDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage", statOrder = { 1234 }, level = 68, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage", statOrder = { 1234 }, level = 75, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage", statOrder = { 1234 }, level = 83, group = "MeleeDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageRingUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageRingUber2"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageRingUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 84, group = "ProjectileAttackDamage", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["SpellDamageRingUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageRingUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageRingUber3__"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage", statOrder = { 1223 }, level = 82, group = "SpellDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["ReducedElementalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["ReducedElementalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Shaper's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, ["ElementalDamageCannotBeReflectedPercentRingUber1"] = { type = "Prefix", affix = "The Shaper's", "(40-55)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, ["ElementalDamageCannotBeReflectedPercentRingUber2"] = { type = "Prefix", affix = "The Shaper's", "(56-75)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ReducedPhysicalReflectTakenRingUber1"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ReducedPhysicalReflectTakenRingUber2"] = { type = "Prefix", affix = "The Elder's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, ["PhysicalDamageCannotBeReflectedPercentRingUber1"] = { type = "Prefix", affix = "The Elder's", "(40-55)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, ["PhysicalDamageCannotBeReflectedPercentRingUber2"] = { type = "Prefix", affix = "The Elder's", "(56-75)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, }, - ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrder = { 1378 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, }, - ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, }, - ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrder = { 1379 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, }, - ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, }, - ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrder = { 1414 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, }, - ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrder = { 1608 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0 }, modTags = { "influence_mod" }, }, - ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, - ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, - ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 68, group = "ManaGainPerTarget", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, }, - ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "The Elder's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 68, group = "ManaGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, }, - ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1744 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, - ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1744 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, - ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Spells", statOrder = { 8184 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "caster" }, }, - ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, - ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, - ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, - ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 763 }, level = 75, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 763 }, level = 80, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 764 }, level = 75, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 764 }, level = 80, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 766 }, level = 75, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 766 }, level = 80, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitAssassinsMarkNewUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 803 }, level = 75, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitAssassinsMarkNewUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 803 }, level = 80, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitPoachersMarkNewUber1__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 808 }, level = 75, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitPoachersMarkNewUber2__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 808 }, level = 80, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitWarlordsMarkNewUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 811 }, level = 75, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitWarlordsMarkNewUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 811 }, level = 80, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["GrantsHeraldOfAshSkillUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Herald of Ash Skill", statOrder = { 710 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsHeraldOfIceSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Ice Skill", statOrder = { 711 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsHeraldOfThunderSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Thunder Skill", statOrder = { 714 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6889 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "The Elder's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6889 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6888 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6888 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, - ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6891 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6891 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, }, - ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, }, - ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(4-7)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(8-10)% increased maximum Life", statOrder = { 1576 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrder = { 1566 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["FlaskEffectUber1"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, - ["FlaskEffectUber2"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2747 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, - ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-18)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Life Recovery rate", statOrder = { 1583 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Mana Recovery rate", statOrder = { 1591 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "The Elder's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4235 }, level = 82, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, - ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrder = { 3306 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, }, - ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrder = { 3306 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, }, - ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3191 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "speed" }, }, - ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "The Elder's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5683 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["GrantsEnduringCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Enduring Cry Skill", statOrder = { 707 }, level = 68, group = "EnduringCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsRallyingCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Rallying Cry Skill", statOrder = { 723 }, level = 68, group = "RallyingCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GrantsAbyssalCrySkillUber1"] = { type = "Prefix", affix = "The Shaper's", "Grants Level 22 Intimidating Cry Skill", statOrder = { 690 }, level = 68, group = "AbyssalCrySkill", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, - ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrder = { 9906 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, }, - ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrder = { 9902 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, }, - ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrder = { 9916 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3305 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, }, - ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5471 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "caster", "speed" }, }, - ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["PhysicalDamageBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(16-20)% increased Global Physical Damage", statOrder = { 1236 }, level = 68, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["PhysicalDamageBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(21-25)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["PhysicalDamageBeltUber3___"] = { type = "Prefix", affix = "The Elder's", "(26-30)% increased Global Physical Damage", statOrder = { 1236 }, level = 80, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["ElementalDamageBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% increased Elemental Damage", statOrder = { 1985 }, level = 68, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalDamageBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalDamageBeltUber3"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Elemental Damage", statOrder = { 1985 }, level = 80, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ArmourDoubleArmourEffectUber1"] = { type = "Prefix", affix = "The Elder's", "(11-20)% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 75, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["ArmourDoubleArmourEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(21-30)% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 80, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["IncreasedEnergyShieldFromBodyArmourUber1_"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Energy Shield from Equipped Body Armour", statOrder = { 9137 }, level = 75, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldFromBodyArmourUber2"] = { type = "Prefix", affix = "The Shaper's", "(26-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9137 }, level = 80, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3178, 3186 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, }, - ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3178, 3186 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, }, - ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrder = { 8159 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, - ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, - ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "The Elder's", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrder = { 1803 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, - ["FrenzyChargeOnHittingRareOrUniqueUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6765 }, level = 75, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "The Elder's", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "The Elder's", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceUber3_"] = { type = "Prefix", affix = "The Elder's", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 80, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, }, - ["MaximumAllResistanceUber2__"] = { type = "Prefix", affix = "The Shaper's", "+2% to all maximum Resistances", statOrder = { 1647 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, }, - ["SupportedByCastOnDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 5 Cast when Damage Taken", statOrder = { 244 }, level = 68, group = "SupportedByCastOnDamageTaken", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "The Elder's", "(3-6)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% increased maximum Life", statOrder = { 1576 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["DisplaySocketedGemsGetReducedReservationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 533 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, - ["DisplaySocketedGemsGetReducedReservationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 533 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, - ["BlockAppliesToSpellsShieldUber1_"] = { type = "Suffix", affix = "of Shaping", "(9-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockAppliesToSpellsShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(12-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockOnShieldUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockOnShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "The Elder's", "+(500-650) Armour if you've Blocked Recently", statOrder = { 4504 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "The Elder's", "+(651-800) Armour if you've Blocked Recently", statOrder = { 4504 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4551 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4551 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, - ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6817 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, - ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6064 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, - ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, - ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, - ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Life when you Block", statOrder = { 3065 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, }, - ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8191 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, }, - ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2472 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, }, - ["MaximumTotemUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to maximum number of Summoned Totems", statOrder = { 2259 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, - ["SupportedByEnduranceChargeOnStunWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun", statOrder = { 531 }, level = 68, group = "SupportedByEnduranceChargeOnStunWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByOnslaughtWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 349 }, level = 68, group = "SupportedByOnslaughtWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "bow_elder", "default", }, weightVal = { 0, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByPowerChargeOnCritWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike", statOrder = { 361 }, level = 68, group = "SupportedByPowerChargeOnCritWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByFortifyWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Fortify", statOrder = { 501 }, level = 68, group = "SupportedByFortifyWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByArcaneSurgeWeaponUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 231 }, level = 68, group = "SupportedByArcaneSurgeWeapon", weightKey = { "grants_2h_support", "staff_shaper", "default", }, weightVal = { 0, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByInspirationWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Inspiration", statOrder = { 499 }, level = 68, group = "SupportedByInspirationWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrder = { 473, 1237 }, level = 68, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrder = { 473, 1237 }, level = 75, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrder = { 473, 1237 }, level = 80, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrder = { 242, 1237 }, level = 68, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrder = { 242, 1237 }, level = 75, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrder = { 242, 1237 }, level = 80, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrder = { 467, 1237 }, level = 68, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrder = { 467, 1237 }, level = 75, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrder = { 467, 1237 }, level = 80, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrder = { 375, 1237 }, level = 68, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrder = { 375, 1237 }, level = 75, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrder = { 375, 1237 }, level = 80, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Momentum", "(101-115)% increased Physical Damage", statOrder = { 349, 1237 }, level = 68, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Momentum", "(116-126)% increased Physical Damage", statOrder = { 349, 1237 }, level = 75, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Momentum", "(127-134)% increased Physical Damage", statOrder = { 349, 1237 }, level = 80, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrder = { 531, 1237 }, level = 68, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrder = { 531, 1237 }, level = 75, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrder = { 531, 1237 }, level = 80, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrder = { 501, 1237 }, level = 68, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrder = { 501, 1237 }, level = 75, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrder = { 501, 1237 }, level = 80, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrder = { 361, 1237 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrder = { 361, 1237 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrder = { 361, 1237 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrder = { 324, 1237 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrder = { 324, 1237 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrder = { 324, 1237 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrder = { 487, 1237 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrder = { 487, 1237 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrder = { 487, 1237 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrder = { 356, 1237 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrder = { 356, 1237 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrder = { 356, 1237 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, - ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrder = { 476, 2040 }, level = 68, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrder = { 476, 2040 }, level = 75, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrder = { 476, 2040 }, level = 80, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrder = { 387, 1885 }, level = 68, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrder = { 387, 1885 }, level = 75, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrder = { 387, 1885 }, level = 80, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, - ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrder = { 486, 1418 }, level = 68, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrder = { 486, 1418 }, level = 75, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrder = { 474, 1418 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrder = { 474, 1418 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Momentum", "(8-10)% increased Attack Speed", statOrder = { 349, 1418 }, level = 68, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Momentum", "(11-12)% increased Attack Speed", statOrder = { 349, 1418 }, level = 75, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrder = { 474, 1418 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrder = { 474, 1418 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1418, 5664 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1418, 5664 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1418, 4899 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1418, 4899 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1418, 5664 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1418, 5664 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1418, 4899 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1418, 4899 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, - ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrder = { 318, 1469 }, level = 68, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, }, - ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrder = { 318, 1469 }, level = 75, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, }, - ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1469, 5930 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, }, - ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1469, 5930 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, }, - ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber1_"] = { type = "Suffix", affix = "of the Elder", "(22-25)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1469, 5965 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, }, - ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(26-29)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1469, 5965 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, }, - ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrder = { 490, 1493 }, level = 68, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrder = { 490, 1493 }, level = 75, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrder = { 1493, 1835 }, level = 68, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, }, - ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrder = { 1493, 1835 }, level = 75, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, }, - ["WeaponElementalDamageSupportedUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Elemental Damage with Attacks", "(28-32)% increased Elemental Damage with Attack Skills", statOrder = { 492, 6326 }, level = 68, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, }, - ["WeaponElementalDamageSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", "(33-37)% increased Elemental Damage with Attack Skills", statOrder = { 492, 6326 }, level = 75, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, }, - ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrder = { 336, 7993 }, level = 68, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrder = { 336, 7993 }, level = 75, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "15% chance to Poison on Hit", statOrder = { 528, 8007 }, level = 68, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, }, - ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "20% chance to Poison on Hit", statOrder = { 528, 8007 }, level = 75, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, }, - ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrder = { 249, 2488 }, level = 68, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, }, - ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrder = { 249, 2488 }, level = 75, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, }, - ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 75, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 83, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlockWhileDualWieldingUber1"] = { type = "Suffix", affix = "of Shaping", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockWhileDualWieldingUber2"] = { type = "Suffix", affix = "of Shaping", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 75, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockWhileDualWieldingUber3_"] = { type = "Suffix", affix = "of Shaping", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 80, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, - ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2985 }, level = 75, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2985 }, level = 83, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2985 }, level = 75, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2985 }, level = 83, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationTwoWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationTwoWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2985 }, level = 75, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalPenetrationTwoWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2985 }, level = 83, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["WeaponSocketedAttacksDamageFinalUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Attack Damage", statOrder = { 551 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, }, - ["WeaponSocketedAttacksDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Attack Damage", statOrder = { 551 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, }, - ["WeaponSocketedSpellsDamageFinalUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Spell Damage", statOrder = { 570 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["WeaponSocketedSpellsDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Spell Damage", statOrder = { 570 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "staff_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["ChanceForPoisonDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7876 }, level = 83, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "attack", "ailment" }, }, - ["ChanceForBleedDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7875 }, level = 83, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["LocalBleedDamageOverTimeMultiplierUber1___"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7869 }, level = 68, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, - ["LocalBleedDamageOverTimeMultiplierUber2"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7869 }, level = 75, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, - ["LocalBleedDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7869 }, level = 83, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, - ["LocalPoisonDamageOverTimeMultiplierUber1__"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1269 }, level = 68, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, - ["LocalPoisonDamageOverTimeMultiplierUber2__"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1269 }, level = 75, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, - ["LocalPoisonDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1269 }, level = 83, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, - ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, - ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, - ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 85, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, - ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4874 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4874 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4929 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "bow_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4929 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["SupportedByCastOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Cast On Critical Strike", statOrder = { 477 }, level = 68, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByCastOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 477 }, level = 75, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByCastOnMeleeKillUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast On Melee Kill", statOrder = { 245 }, level = 68, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByCastOnMeleeKillUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 245 }, level = 75, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByCastWhileChannellingUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast While Channelling", statOrder = { 247 }, level = 68, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByCastWhileChannellingUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 247 }, level = 75, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrder = { 2044 }, level = 68, group = "CullingStrike", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.1 metres to Weapon Range", statOrder = { 2750 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrder = { 1885 }, level = 68, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrder = { 1885 }, level = 82, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrder = { 1803 }, level = 84, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, }, - ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Skills fire an additional Projectile", statOrder = { 1797 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_elder", "2h_axe_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 68, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrder = { 530, 1228 }, level = 68, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrder = { 530, 1228 }, level = 75, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrder = { 530, 1228 }, level = 80, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrder = { 270, 1228 }, level = 68, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrder = { 270, 1228 }, level = 75, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrder = { 270, 1228 }, level = 80, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrder = { 231, 1228 }, level = 68, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrder = { 231, 1228 }, level = 75, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrder = { 231, 1228 }, level = 80, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Inspiration", "(67-78)% increased Spell Damage", statOrder = { 499, 1228 }, level = 68, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Inspiration", "(79-83)% increased Spell Damage", statOrder = { 499, 1228 }, level = 75, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Inspiration", "(84-87)% increased Spell Damage", statOrder = { 499, 1228 }, level = 80, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrder = { 361, 1228 }, level = 68, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrder = { 361, 1228 }, level = 75, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrder = { 361, 1228 }, level = 80, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrder = { 272, 1985 }, level = 68, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrder = { 272, 1985 }, level = 75, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, - ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrder = { 272, 1985 }, level = 80, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrder = { 282, 1362 }, level = 68, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrder = { 282, 1362 }, level = 75, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrder = { 282, 1362 }, level = 80, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrder = { 518, 1371 }, level = 68, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrder = { 518, 1371 }, level = 75, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, - ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrder = { 518, 1371 }, level = 80, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrder = { 331, 1382 }, level = 68, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrder = { 331, 1382 }, level = 75, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, - ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrder = { 331, 1382 }, level = 80, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, - ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrder = { 346, 1451 }, level = 68, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrder = { 346, 1451 }, level = 75, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrder = { 505, 1451 }, level = 68, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrder = { 505, 1451 }, level = 75, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Ignore Stuns while Casting", statOrder = { 1451, 1903 }, level = 68, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Ignore Stuns while Casting", statOrder = { 1451, 1903 }, level = 75, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1451, 5472 }, level = 68, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1451, 5472 }, level = 75, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Spell Critical Strike Chance", statOrder = { 318, 1463 }, level = 68, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, }, - ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Spell Critical Strike Chance", statOrder = { 318, 1463 }, level = 75, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, }, - ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1463, 1835 }, level = 68, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, }, - ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1463, 1835 }, level = 75, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, }, - ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 471, 2806 }, level = 68, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, - ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 471, 2806 }, level = 75, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, - ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 398, 2806 }, level = 68, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, - ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 398, 2806 }, level = 75, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, - ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Chance to Poison", "(19-23)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 68, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Chance to Poison", "(24-26)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 75, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Critical Strike Affliction", "(6-9)% increased Poison Duration", statOrder = { 360, 3175 }, level = 68, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", "(10-14)% increased Poison Duration", statOrder = { 360, 3175 }, level = 75, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrder = { 229, 2040 }, level = 68, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrder = { 229, 2040 }, level = 75, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrder = { 229, 2040 }, level = 80, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrder = { 384, 1885 }, level = 68, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrder = { 384, 1885 }, level = 75, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrder = { 384, 1885 }, level = 80, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrder = { 510, 2001 }, level = 68, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrder = { 510, 2001 }, level = 75, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrder = { 510, 2001 }, level = 80, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrder = { 355, 1801 }, level = 68, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrder = { 355, 1801 }, level = 75, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrder = { 355, 1801 }, level = 80, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-6)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, - ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, - ["ElementalDamagePercentAddedAsChaosStaffUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-12)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, - ["ElementalDamagePercentAddedAsChaosStaffUber2__"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1947 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, - ["DisplaySocketedSkillsChainUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems Chain 1 additional times", statOrder = { 545 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, - ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Physical Damage to Spells", statOrder = { 1408 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Physical Damage to Spells", statOrder = { 1408 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Chaos Damage to Spells", statOrder = { 1412 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Chaos Damage to Spells", statOrder = { 1412 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Chaos Damage to Spells", statOrder = { 1412 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Chaos Damage to Spells", statOrder = { 1412 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Strength", statOrder = { 10155 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10153 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10154 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Strength", statOrder = { 10152 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2743 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 84, group = "MaximumEnduranceCharges", weightKey = { "2h_mace_shaper", "2h_sword_shaper", "2h_axe_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PowerChargeOnBlockUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "25% chance to gain a Power Charge when you Block", statOrder = { 1156, 4275 }, level = 68, group = "PowerChargeOnBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "power_charge", "influence_mod" }, }, - ["CriticalStrikeMultiplierIfBlockedRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "+5% Chance to Block Attack Damage while wielding a Staff", "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently", statOrder = { 1156, 5968 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod", "damage", "critical" }, }, - ["BlockingBlocksSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(12-18)% Chance to Block Spell Damage", statOrder = { 1156, 1160 }, level = 68, group = "BlockingBlocksSpellsUber", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockStaffUber1_"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(8-12)% Chance to Block Spell Damage", statOrder = { 1156, 1165 }, level = 68, group = "SpellBlockAndBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, - ["CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(15-25)% to Global Critical Strike Multiplier", "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 1493, 5932 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7897 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrder = { 6071 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, }, - ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9733 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, }, - ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 4313 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrder = { 3297 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3438 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["GainRareMonsterModsOnKillChanceUber1"] = { type = "Suffix", affix = "of the Elder", "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6701 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, - ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrder = { 6422 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "Gain (35-50) Life per Blinded Enemy Hit with this Weapon", statOrder = { 7989 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, - ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3411 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, }, - ["AdditionalBlockChancePerEnduranceChargeUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% chance to gain an Endurance Charge when you Block", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 2129, 4547 }, level = 68, group = "AdditionalBlockChancePerEnduranceChargeUber", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "endurance_charge", "influence_mod" }, }, - ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrder = { 2055, 5695 }, level = 68, group = "AccuracyRatingPerFrenzyChargeUber", weightKey = { "sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "frenzy_charge", "influence_mod", "attack" }, }, - ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills Cost no Mana", statOrder = { 565 }, level = 68, group = "DisplayMovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "gem" }, }, - ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrder = { 9531 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 1237, 7889 }, level = 68, group = "CullingStrikeOnBleedingEnemiesUber", weightKey = { "2h_axe_elder", "axe_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrder = { 5691 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrder = { 1469, 1824 }, level = 68, group = "GainEnduranceChargeOnCritUber", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod", "attack", "critical" }, }, - ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5930 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, }, - ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2711 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Hits which Stun have (10-20)% chance to Fortify", statOrder = { 5683 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, - ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrder = { 4736 }, level = 68, group = "AreaOfEffectPer50Strength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4733 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently", statOrder = { 9216 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "2h_sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, - ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Hits with Melee Movement Skills have (30-50)% chance to Fortify", statOrder = { 9198 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, - ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrder = { 5693 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrder = { 9901 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, - ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrder = { 4738 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, - ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1522, 1868 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, - ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 700 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 695 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 725 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 702 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, - ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 700 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 695 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 725 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 702 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, - ["DoubleModSellPrice1"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice1", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, - ["DoubleModSellPrice2"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice2", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["DoubleModSellPrice3_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice3", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, - ["DoubleModSellPrice4"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice4", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["DoubleModSellPrice5_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice5", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, - ["DoubleModSellPrice6"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice6", weightKey = { "default", }, weightVal = { 10 }, modTags = { }, }, - ["DoubleModSellPrice7"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice7", weightKey = { "default", }, weightVal = { 2000 }, modTags = { }, }, - ["DoubleModSellPrice8"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice8", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, }, - ["DoubleModSellPrice9"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7956 }, level = 1, group = "DoubleModSellPrice9", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 60, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2165 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2167 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrder = { 2166 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrder = { 1978 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2165 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2167 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 60, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 60, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, }, - ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 60, group = "BleedingDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrder = { 5413 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrder = { 5664 }, level = 60, group = "DoubleDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1236, 1408 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (15-20) to (30-35) Physical Damage to Spells", statOrder = { 1236, 1408 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 60, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 60, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 60, group = "PhysicalDamageTakenAsFireUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrder = { 2247 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrder = { 1362, 1367 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (31-42) to (64-74) Fire Damage", statOrder = { 1362, 1367 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (14-20) to (29-34) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (20-26) to (39-46) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Flammability on Hit", statOrder = { 2535 }, level = 60, group = "FlammabilityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 60, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 60, group = "PhysicalDamageTakenAsColdUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrder = { 3394 }, level = 60, group = "ColdDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, - ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrder = { 1371, 1376 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (26-35) to (52-60) Cold Damage", statOrder = { 1371, 1376 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (12-16) to (24-28) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (18-24) to (36-42) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Frostbite on Hit", statOrder = { 2536 }, level = 60, group = "FrostbiteOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 60, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 60, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrder = { 3393 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrder = { 1382, 1387 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-9) to (110-116) Lightning Damage", statOrder = { 1382, 1387 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-4) to (50-53) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-6) to (76-80) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Conductivity on Hit", statOrder = { 2532 }, level = 60, group = "ConductivityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 60, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 60, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, }, - ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrder = { 2248 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, - ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrder = { 1390, 1395 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (32-50) to (68-86) Chaos Damage", statOrder = { 1390, 1395 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (11-15) to (23-26) Chaos Damage to Spells", statOrder = { 1390, 1412 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (15-20) to (30-35) Chaos Damage to Spells", statOrder = { 1390, 1412 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 60, group = "CurseOnHitDespairMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 60, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, }, - ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrder = { 2601 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrder = { 2173 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["IncreaseSocketedCurseGemLevelDelve_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Curse Gems", statOrder = { 189 }, level = 60, group = "IncreaseSocketedCurseGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem", "curse" }, }, - ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Hex Skills", statOrder = { 2230 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrder = { 6005 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 3020 }, level = 60, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "Regenerate (3-5) Mana per second", statOrder = { 1587 }, level = 60, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrder = { 1585 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["ImpaleChanceDelve__"] = { type = "Prefix", affix = "Subterranean", "(5-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 60, group = "AttackImpaleChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, }, - ["FasterBleedDelve"] = { type = "Suffix", affix = "of the Underground", "Bleeding you inflict deals Damage (5-10)% faster", statOrder = { 6549 }, level = 60, group = "FasterBleedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["AddedPhysicalSpellDamageDelve___"] = { type = "Prefix", affix = "Subterranean", "Adds (11-22) to (34-46) Physical Damage to Spells", statOrder = { 1408 }, level = 60, group = "SpellAddedPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["LightningAilmentEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of Lightning Ailments", statOrder = { 7438 }, level = 60, group = "LightningAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["PhysicalDamageConvertedToLightningDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ColdAilmentDurationDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Duration of Cold Ailments", statOrder = { 5801 }, level = 60, group = "ColdAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["PhysicalDamageConvertedToColdDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["FasterIgniteDelve_"] = { type = "Suffix", affix = "of the Underground", "Ignites you inflict deal Damage (5-10)% faster", statOrder = { 2569 }, level = 60, group = "FasterIgniteDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["PhysicalDamageConvertedToFireDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["FasterPoisonDelve_"] = { type = "Suffix", affix = "of the Underground", "Poisons you inflict deal Damage (5-10)% faster", statOrder = { 6550 }, level = 60, group = "FasterPoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["ZeroChaosResistanceDelve"] = { type = "Suffix", affix = "of the Underground", "Chaos Resistance is Zero", statOrder = { 10725 }, level = 60, group = "ZeroChaosResistanceDelve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["MinionCriticalStrikeMultiplierDelve"] = { type = "Suffix", affix = "of the Underground", "Minions have +(30-38)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 60, group = "MinionCriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionLargerAggroRadiusDelve"] = { type = "Suffix", affix = "of the Underground", "Minions are Aggressive", statOrder = { 10759 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MinionAreaOfEffectDelve"] = { type = "Prefix", affix = "Subterranean", "Minions have (20-30)% increased Area of Effect", statOrder = { 3029 }, level = 60, group = "MinionAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MinionLeechDelve___"] = { type = "Prefix", affix = "Subterranean", "Minions Leech 1% of Damage as Life", statOrder = { 2915 }, level = 60, group = "MinionLifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, - ["SpiritAndPhantasmRefreshOnUniqueDelve"] = { type = "Prefix", affix = "Subterranean", "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9613, 9801 }, level = 60, group = "SpiritAndPhantasmRefreshOnUnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["AuraEffectOnEnemiesDelve_____"] = { type = "Suffix", affix = "of the Underground", "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3572 }, level = 60, group = "AuraEffectOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, - ["LifeReservationEfficiencyDelve"] = { type = "Prefix", affix = "Subterranean", "10% increased Life Reservation Efficiency of Skills", statOrder = { 2231 }, level = 60, group = "LifeReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["DoomGainRateDelve"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7156 }, level = 60, group = "HitAndAilmentDamageCursedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "curse" }, }, - ["MarkEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of your Marks", statOrder = { 2603 }, level = 60, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveArmourFireResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, - ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1364 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7919 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveArmourColdResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, - ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1373 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7917 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveArmourLightningResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, - ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1384 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7921 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7879 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, - ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2240 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2240 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2240 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2240 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, - ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4589 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, - ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7923 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5046 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, - ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5739 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, - ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7916 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6079 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6079 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, - ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2064 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, - ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7955 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2651 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1727 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6501 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9121 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9137 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, - ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7876 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7875 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4221 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4988 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4988 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9254 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2499 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3766 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1985 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1985 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, - ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 570 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 570 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 231 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 567 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, - ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 573 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, - ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 551 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 551 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 336 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 566 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, - ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 554 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, - ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8204 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8204 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8216 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1586 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1591 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, - ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4535 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4820 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2186 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5401 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5698 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, - ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5417 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6765 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5698 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, - ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3463 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3463 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1978 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1978 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1774 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1771 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1621 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, - ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, - ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 163 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 165 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 166 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9485 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9485 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3112 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, - ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3110 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, - ["DelveMapMonsterPacksVaalMapWorlds1"] = { type = "Prefix", affix = "Subterranean", "Area is inhabited by the Vaal", "Found Items have 10% chance to drop Corrupted in Area", statOrder = { 8766, 10825 }, level = 1, group = "MapMonsterPacksVaalMapWorlds", weightKey = { "map", "expedition_logbook", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, - ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["FireDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier2h5__"] = { type = "Prefix", affix = "Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["PhysicalDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1h2_"] = { type = "Prefix", affix = "Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1h4_"] = { type = "Prefix", affix = "Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, - ["GlobalDamageOverTimeMultiplier1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier1h2_"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier1h4"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier2h1__"] = { type = "Suffix", affix = "of Acrimony", "+(16-21)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier2h2"] = { type = "Suffix", affix = "of Dispersion", "+(24-29)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier2h3___"] = { type = "Suffix", affix = "of Liquefaction", "+(31-35)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier2h4_"] = { type = "Suffix", affix = "of Melting", "+(36-40)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplier2h5____"] = { type = "Suffix", affix = "of Dissolution", "+(41-45)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplierEssence1_"] = { type = "Suffix", affix = "of the Essence", "+10% to Damage over Time Multiplier", statOrder = { 1247 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplierRingEssence1"] = { type = "Suffix", affix = "of the Essence", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1251 }, level = 44, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h2___"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1251 }, level = 55, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1251 }, level = 68, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h4_"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1251 }, level = 76, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, - ["GlobalDamageOverTimeMultiplierWithAttacks1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1251 }, level = 82, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, - ["ChaosDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierTwoHand2__"] = { type = "Suffix", affix = "of Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierTwoHand3_"] = { type = "Suffix", affix = "of Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierTwoHand4__"] = { type = "Suffix", affix = "of Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierTwoHand5___"] = { type = "Suffix", affix = "of Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplier1_"] = { type = "Suffix", affix = "of Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 400, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 200, 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 100, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 50, 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of the Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 220, 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 140, 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of the Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 70, 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 35, 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["FireDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierTwoHand2_"] = { type = "Suffix", affix = "of the Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierTwoHand5_"] = { type = "Suffix", affix = "of the Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier4__"] = { type = "Suffix", affix = "of the Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of the Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["PhysicalDamageOverTimeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier1__"] = { type = "Suffix", affix = "of Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 220, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier3__"] = { type = "Suffix", affix = "of Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 140, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 70, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 35, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "2% increased maximum Life", statOrder = { 1574, 1576 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1574, 1576 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1584, 1585 }, level = 50, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1584, 1749 }, level = 50, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, }, - ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1584, 1587 }, level = 50, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1584, 2237 }, level = 50, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1584, 1896 }, level = 50, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedLevel50ModCostNew"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills have -(8-6) to Total Mana Cost", statOrder = { 1584, 10061 }, level = 50, group = "IncreasedManaAndCostNew", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "3% increased maximum Energy Shield", statOrder = { 1563, 1566 }, level = 50, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1563, 2651 }, level = 50, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1365, 1960 }, level = 50, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, - ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1374, 1962 }, level = 50, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, }, - ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1385, 1964 }, level = 50, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, - ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrder = { 1237, 1940 }, level = 50, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, - ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 50, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (79-106) to (159-186) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 50, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 50, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (65-87) to (130-152) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 50, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 50, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-22) to (275-290) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 50, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1803, 3248 }, level = 50, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1803, 4221 }, level = 50, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1803, 1854 }, level = 50, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1228, 9487 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1228, 9487 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["TrapDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1199 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["TrapDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1199 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["MineDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Mine Damage", statOrder = { 1201 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["MineDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Mine Damage", statOrder = { 1201 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MineThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MineThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1928, 3466 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["TrapCooldownRecoveryAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Trap Duration", "(21-22)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1928, 3466 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MineDetonationSpeedAndDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Mine Duration", "Mines have (14-15)% increased Detonation Speed", statOrder = { 1929, 9224 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MineDetonationSpeedAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Mine Duration", "Mines have (21-22)% increased Detonation Speed", statOrder = { 1929, 9224 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3484 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["TrapAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (33-37)% increased Area of Effect", statOrder = { 3484 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MineAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (22-25)% increased Area of Effect", statOrder = { 9221 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MineAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (33-37)% increased Area of Effect", statOrder = { 9221 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["LocalIncreaseSocketedTrapGemLevelEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 192 }, level = 50, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, - ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (50-66)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1978, 9283 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (85-94)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1978, 9283 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeedTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (36-40)% increased Attack Speed", "Minions have (36-40)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5037 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MinionDurationTwoHandedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(27-30)% increased Minion Duration", statOrder = { 5037 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["LocalIncreaseSocketedMinionGemLevelEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 50, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, - ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 50, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1362, 1409 }, level = 50, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 50, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1371, 1410 }, level = 50, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 50, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1382, 1411 }, level = 50, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1412, 1451 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, - ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1412, 1451 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, - ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1395, 1418 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, - ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1395, 1418 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, - ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (32-40) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1579, 1949 }, level = 50, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(3-5)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1630, 2452 }, level = 50, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(3-5)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1636, 2453 }, level = 50, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(3-5)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1641, 2454 }, level = 50, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, }, - ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1630, 1675 }, level = 50, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1636, 1680 }, level = 50, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1641, 1684 }, level = 50, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, - ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1630, 10320 }, level = 50, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1636, 6075 }, level = 50, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1641, 5918 }, level = 50, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, }, - ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(5-7)% reduced Chaos Damage taken over time", statOrder = { 1646, 1953 }, level = 50, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1390, 3175 }, level = 50, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1390, 8007 }, level = 50, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1395, 3186 }, level = 50, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1412, 3186 }, level = 50, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, }, - ["SynthesisImplicitLife1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLife2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Life", statOrder = { 1574 }, level = 15, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLife3"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Life", statOrder = { 1574 }, level = 24, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLife4_"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Life", statOrder = { 1574 }, level = 36, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLife5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Life", statOrder = { 1574 }, level = 48, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeJewel2"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLife1_"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLife2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1576 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLife3"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Life", statOrder = { 1576 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeTrinket1__"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1576 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeTrinket2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1576 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeTrinket3"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Life", statOrder = { 1576 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeRegen1_"] = { type = "Synthesis", affix = "", "Regenerate (5-7) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitLifeRegen2_"] = { type = "Synthesis", affix = "", "Regenerate (7-11.7) Life per second", statOrder = { 1579 }, level = 15, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate (11.7-18.3) Life per second", statOrder = { 1579 }, level = 24, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitLifeRegen4"] = { type = "Synthesis", affix = "", "Regenerate (18.4-26.7) Life per second", statOrder = { 1579 }, level = 36, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitLifeRegen5_"] = { type = "Synthesis", affix = "", "Regenerate (26.7-40) Life per second", statOrder = { 1579 }, level = 48, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitHighLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (80-100) Life per second", statOrder = { 1579 }, level = 56, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["SynthesisImplicitPercentLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.93)% of Life per second", statOrder = { 1949 }, level = 15, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Life per second", statOrder = { 1949 }, level = 24, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeRegenJewel1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLifeLeech2_"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 15, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLifeLeech3"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 24, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLocalLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLocalLifeLeech2"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 15, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLocalLifeLeech3__"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 24, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLifeLeechOneHanded1"] = { type = "Synthesis", affix = "", "1.5% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitLifeLeechTwoHanded1"] = { type = "Synthesis", affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1656 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, - ["SynthesisImplicitAttackLifeLeech1_"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Life", statOrder = { 1669 }, level = 36, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitAttackLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Attack Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitMaximumLifeLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 56, group = "MaximumLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitIncreasedLifeLeechRate1_"] = { type = "Synthesis", affix = "", "(8-10)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitIncreasedLifeLeechRate2_"] = { type = "Synthesis", affix = "", "(11-13)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 15, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitIncreasedLifeLeechRate3"] = { type = "Synthesis", affix = "", "(14-16)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 24, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeOnKill1_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeOnKill2"] = { type = "Synthesis", affix = "", "Gain (9-11) Life per Enemy Killed", statOrder = { 1753 }, level = 15, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeOnKill3"] = { type = "Synthesis", affix = "", "Gain (12-15) Life per Enemy Killed", statOrder = { 1753 }, level = 24, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitPercentLifeOnKill1_"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Life on Kill", statOrder = { 1754 }, level = 55, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitLifeOnHit1"] = { type = "Synthesis", affix = "", "Gain (4-5) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLifeOnHit2_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 15, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLifeOnHit3"] = { type = "Synthesis", affix = "", "Gain (9-15) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 24, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLifeOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLocalLifeOnHit1_"] = { type = "Synthesis", affix = "", "Grants (4-5) Life per Enemy Hit", statOrder = { 1743 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLocalLifeOnHit2_"] = { type = "Synthesis", affix = "", "Grants (6-8) Life per Enemy Hit", statOrder = { 1743 }, level = 15, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLocalLifeOnHit3"] = { type = "Synthesis", affix = "", "Grants (9-15) Life per Enemy Hit", statOrder = { 1743 }, level = 24, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLifeOnHitOneHanded1"] = { type = "Synthesis", affix = "", "Grants (25-30) Life per Enemy Hit", statOrder = { 1743 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitLifeOnHitTwoHanded1_"] = { type = "Synthesis", affix = "", "Grants (45-50) Life per Enemy Hit", statOrder = { 1743 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, - ["SynthesisImplicitGlobalFlaskLifeRecovery1_"] = { type = "Synthesis", affix = "", "(7-10)% increased Life Recovery from Flasks", statOrder = { 2064 }, level = 56, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, - ["SynthesisImplicitLifeRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Life Recovery rate", statOrder = { 1583 }, level = 60, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitMana1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitMana2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Mana", statOrder = { 1584 }, level = 15, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitMana3_"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Mana", statOrder = { 1584 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitMana4"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Mana", statOrder = { 1584 }, level = 36, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitMana5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Mana", statOrder = { 1584 }, level = 48, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaJewel1_"] = { type = "Synthesis", affix = "", "+(2-3) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitPercentMana1_"] = { type = "Synthesis", affix = "", "6% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitPercentMana2"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1585 }, level = 15, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitPercentMana3"] = { type = "Synthesis", affix = "", "(9-10)% increased maximum Mana", statOrder = { 1585 }, level = 24, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegeneration1"] = { type = "Synthesis", affix = "", "(16-18)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegeneration2"] = { type = "Synthesis", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 15, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegeneration3_"] = { type = "Synthesis", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 24, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegeneration4_"] = { type = "Synthesis", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 36, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegeneration5"] = { type = "Synthesis", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 48, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRegenerationJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegen1__"] = { type = "Synthesis", affix = "", "Regenerate (2-2.5) Mana per second", statOrder = { 1587 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegen2"] = { type = "Synthesis", affix = "", "Regenerate (2.5-3) Mana per second", statOrder = { 1587 }, level = 15, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegen3_____"] = { type = "Synthesis", affix = "", "Regenerate (3-4) Mana per second", statOrder = { 1587 }, level = 24, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithStaffJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per second while wielding a Staff", statOrder = { 8210 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while Dual Wielding", statOrder = { 8207 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithShieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while holding a Shield", statOrder = { 8208 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithStaffJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per second while wielding a Staff", statOrder = { 8210 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while Dual Wielding", statOrder = { 8207 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAddedManaRegenWithShieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while holding a Shield", statOrder = { 8208 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitBaseManaRegeneration1"] = { type = "Synthesis", affix = "", "Regenerate 0.5% of Mana per second", statOrder = { 1586 }, level = 56, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitBaseManaRegenerationOneHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Mana per second", statOrder = { 1586 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitBaseManaRegenerationOneHand2_"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Mana per second", statOrder = { 1586 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitBaseManaRegenerationTwoHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.4% of Mana per second", statOrder = { 1586 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitBaseManaRegenerationTwoHand2"] = { type = "Synthesis", affix = "", "Regenerate 0.6% of Mana per second", statOrder = { 1586 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 15, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 24, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitManaLeechJewel1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitLocalManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitLocalManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 15, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitLocalManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 24, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitManaLeechOneHanded1"] = { type = "Synthesis", affix = "", "0.5% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitManaLeechTwoHanded1"] = { type = "Synthesis", affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1706 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SynthesisImplicitAttackManaLeech1"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Mana", statOrder = { 1710 }, level = 36, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, - ["SynthesisImplicitMaximumManaLeechRate1_"] = { type = "Synthesis", affix = "", "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1738 }, level = 56, group = "MaximumManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitIncreasedManaLeechRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased total Recovery per second from Mana Leech", statOrder = { 2163 }, level = 36, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaOnKill1_"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Killed", statOrder = { 1768 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaOnKill2___"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Killed", statOrder = { 1768 }, level = 15, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaOnKill3"] = { type = "Synthesis", affix = "", "Gain 5 Mana per Enemy Killed", statOrder = { 1768 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaOnHit1__"] = { type = "Synthesis", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, - ["SynthesisImplicitManaOnHit2"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 15, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, - ["SynthesisImplicitManaOnHit3"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 24, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, - ["SynthesisImplicitManaOnHitJewel1_"] = { type = "Synthesis", affix = "", "Gain 1 Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, - ["SynthesisImplicitPercentManaOnKill1"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Mana on Kill", statOrder = { 1756 }, level = 56, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaRecoveryRate1_"] = { type = "Synthesis", affix = "", "(10-15)% increased Mana Recovery rate", statOrder = { 1591 }, level = 60, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitTotalManaCost1_"] = { type = "Synthesis", affix = "", "-1 to Total Mana Cost of Skills", statOrder = { 1896 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitTotalManaCost2_"] = { type = "Synthesis", affix = "", "-2 to Total Mana Cost of Skills", statOrder = { 1896 }, level = 15, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitTotalManaCost3"] = { type = "Synthesis", affix = "", "-3 to Total Mana Cost of Skills", statOrder = { 1896 }, level = 24, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitReducedManaCost1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitReducedManaCost2"] = { type = "Synthesis", affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1888 }, level = 15, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitReducedManaCost3"] = { type = "Synthesis", affix = "", "(4-5)% reduced Mana Cost of Skills", statOrder = { 1888 }, level = 24, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitReducedManaCostJewel1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitAttackDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4853 }, level = 36, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitAttackDamagePerMana2"] = { type = "Synthesis", affix = "", "(12-14)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4853 }, level = 48, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitSpellDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Spell Damage per 500 Maximum Mana", statOrder = { 10145 }, level = 36, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamagePerMana2___"] = { type = "Synthesis", affix = "", "(12-14)% increased Spell Damage per 500 Maximum Mana", statOrder = { 10145 }, level = 48, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitPhysicalDamageTakenFromMana1"] = { type = "Synthesis", affix = "", "(2-3)% of Physical Damage is taken from Mana before Life", statOrder = { 4174 }, level = 36, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, }, - ["SynthesisImplicitPhysicalDamageTakenFromMana2_"] = { type = "Synthesis", affix = "", "(4-5)% of Physical Damage is taken from Mana before Life", statOrder = { 4174 }, level = 48, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, }, - ["SynthesisImplicitFireResist1"] = { type = "Synthesis", affix = "", "+8% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Fire Resistance", statOrder = { 1630 }, level = 15, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Fire Resistance", statOrder = { 1630 }, level = 24, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1630 }, level = 36, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1630 }, level = 48, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitFireResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitMaxFireResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 60, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitMaxFireResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 65, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["SynthesisImplicitPhysicalTakenAsFire1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 56, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, - ["SynthesisImplicitFlatFireDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Fire Damage taken from Hits", statOrder = { 2242 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["SynthesisImplicitFlatFireDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Fire Damage taken from Hits", statOrder = { 2242 }, level = 15, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["SynthesisImplicitFlatFireDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Fire Damage taken from Hits", statOrder = { 2242 }, level = 24, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["SynthesisImplicitImmuneToIgnite1"] = { type = "Synthesis", affix = "", "Cannot be Ignited", statOrder = { 1844 }, level = 56, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitColdResist1"] = { type = "Synthesis", affix = "", "+8% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResist2_"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Resistance", statOrder = { 1636 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Resistance", statOrder = { 1636 }, level = 24, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1636 }, level = 36, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1636 }, level = 48, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitColdResistJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitMaxColdResist1_"] = { type = "Synthesis", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 60, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitMaxColdResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 65, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["SynthesisImplicitPhysicalTakenAsCold1__"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 56, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, - ["SynthesisImplicitFlatColdDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-10) Cold Damage taken from Hits", statOrder = { 5824 }, level = 1, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, - ["SynthesisImplicitFlatColdDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Cold Damage taken from Hits", statOrder = { 5824 }, level = 15, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, - ["SynthesisImplicitFlatColdDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Cold Damage taken from Hits", statOrder = { 5824 }, level = 24, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, - ["SynthesisImplicitImmuneToFreeze1"] = { type = "Synthesis", affix = "", "Cannot be Frozen", statOrder = { 1843 }, level = 56, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitLightningResist1"] = { type = "Synthesis", affix = "", "+8% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Lightning Resistance", statOrder = { 1641 }, level = 15, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Lightning Resistance", statOrder = { 1641 }, level = 24, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1641 }, level = 36, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1641 }, level = 48, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitLightningResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitMaxLightningResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 60, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitMaxLightningResist2____"] = { type = "Synthesis", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 65, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["SynthesisImplicitPhysicalTakenAsLightning1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 56, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, - ["SynthesisImplicitFlatLightningDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Lightning Damage taken from Hits", statOrder = { 7457 }, level = 1, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, - ["SynthesisImplicitFlatLightningDamageTaken2_"] = { type = "Synthesis", affix = "", "-(40-16) Lightning Damage taken from Hits", statOrder = { 7457 }, level = 15, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, - ["SynthesisImplicitFlatLightningDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Lightning Damage taken from Hits", statOrder = { 7457 }, level = 24, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, - ["SynthesisImplicitImmuneToShock1"] = { type = "Synthesis", affix = "", "Cannot be Shocked", statOrder = { 1846 }, level = 56, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitChaosResist1_"] = { type = "Synthesis", affix = "", "+(5-6)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitChaosResist2"] = { type = "Synthesis", affix = "", "+(7-8)% to Chaos Resistance", statOrder = { 1646 }, level = 15, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitChaosResist3"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Resistance", statOrder = { 1646 }, level = 24, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitChaosResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitMaxChaosResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1645 }, level = 60, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitMaxChaosResist2"] = { type = "Synthesis", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 65, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["SynthesisImplicitPhysicalTakenAsChaos1"] = { type = "Synthesis", affix = "", "(5-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 56, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, }, - ["SynthesisImplicitFlatChaosDamageTaken1"] = { type = "Synthesis", affix = "", "-(17-13) Chaos Damage taken", statOrder = { 2844 }, level = 15, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, - ["SynthesisImplicitFlatChaosDamageTaken2"] = { type = "Synthesis", affix = "", "-(31-18) Chaos Damage taken", statOrder = { 2844 }, level = 24, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, - ["SynthesisImplicitImmuneToPoison1"] = { type = "Synthesis", affix = "", "Cannot be Poisoned", statOrder = { 3374 }, level = 56, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitAllResist1__"] = { type = "Synthesis", affix = "", "+(3-4)% to all Elemental Resistances", statOrder = { 1624 }, level = 15, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitAllResist2_"] = { type = "Synthesis", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1624 }, level = 24, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitAllResist3"] = { type = "Synthesis", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1624 }, level = 36, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitMaximumResistance1"] = { type = "Synthesis", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, - ["SynthesisImplicitMaximumResistance2_"] = { type = "Synthesis", affix = "", "+2% to all maximum Resistances", statOrder = { 1647 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, - ["SynthesisImplicitLocalIncreaseSocketedGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitLocalCrit1"] = { type = "Synthesis", affix = "", "(5-6)% increased Critical Strike Chance", statOrder = { 1469 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitLocalCrit2"] = { type = "Synthesis", affix = "", "(7-8)% increased Critical Strike Chance", statOrder = { 1469 }, level = 15, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitLocalCrit3"] = { type = "Synthesis", affix = "", "(9-10)% increased Critical Strike Chance", statOrder = { 1469 }, level = 24, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitLocalCrit4_"] = { type = "Synthesis", affix = "", "(11-12)% increased Critical Strike Chance", statOrder = { 1469 }, level = 36, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitLocalCrit5"] = { type = "Synthesis", affix = "", "(13-15)% increased Critical Strike Chance", statOrder = { 1469 }, level = 48, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitGlobalCrit1"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCrit2"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCrit3"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCrit4"] = { type = "Synthesis", affix = "", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCrit5"] = { type = "Synthesis", affix = "", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritQuiver1"] = { type = "Synthesis", affix = "", "(26-28)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritQuiver2"] = { type = "Synthesis", affix = "", "(29-31)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritQuiver3"] = { type = "Synthesis", affix = "", "(32-34)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritQuiver4"] = { type = "Synthesis", affix = "", "(35-37)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritQuiver5"] = { type = "Synthesis", affix = "", "(38-40)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritJewel1_"] = { type = "Synthesis", affix = "", "2% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitGlobalCritJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitMinorCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+12% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitMinorCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitMinorCriticalMultiplier3_"] = { type = "Synthesis", affix = "", "+(15-16)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitMinorCriticalMultiplier4_"] = { type = "Synthesis", affix = "", "+(17-18)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitMinorCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(19-20)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitSpellCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(29-31)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalStrikeChance2"] = { type = "Synthesis", affix = "", "(32-34)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 15, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalStrikeChance3_"] = { type = "Synthesis", affix = "", "(35-37)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 24, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalStrikeChance4"] = { type = "Synthesis", affix = "", "(38-41)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 36, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalStrikeChance5_"] = { type = "Synthesis", affix = "", "(42-45)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 48, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplier3"] = { type = "Synthesis", affix = "", "+(21-23)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplier4"] = { type = "Synthesis", affix = "", "+(24-26)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(27-30)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+2% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(3-4)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitAdditionalCriticalStrikeChanceWithAttacks1_"] = { type = "Synthesis", affix = "", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4797 }, level = 65, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["SynthesisImplicitAdditionalCriticalStrikeChanceWithSpells1"] = { type = "Synthesis", affix = "", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 65, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitMaceCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1499 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitAxeCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Axes", statOrder = { 1500 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitSwordCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Swords", statOrder = { 1502 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitBowCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitClawCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Claws", statOrder = { 1504 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitDaggerCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Daggers", statOrder = { 1498 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitWandCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Wands", statOrder = { 1503 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitStaffCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Staves", statOrder = { 1505 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitMaceCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1499 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitAxeCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Axes", statOrder = { 1500 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitSwordCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Swords", statOrder = { 1502 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitBowCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitClawCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Claws", statOrder = { 1504 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitDaggerCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Daggers", statOrder = { 1498 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitWandCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Wands", statOrder = { 1503 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitStaffCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Staves", statOrder = { 1505 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithStaffJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 5950 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 5948 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithShieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 5949 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithStaffJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 5950 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 5948 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalChanceWithShieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 5949 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 5977 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 5975 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 5976 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 5977 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 5975 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel2__"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 5976 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["SynthesisImplicitAdditionalArrow1"] = { type = "Synthesis", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 65, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAdditionalArrowPierce1_"] = { type = "Synthesis", affix = "", "Arrows Pierce an additional Target", statOrder = { 1796 }, level = 56, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAdditionalArrowPierce2_"] = { type = "Synthesis", affix = "", "Arrows Pierce 2 additional Targets", statOrder = { 1796 }, level = 61, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAdditionalArrowPierce3"] = { type = "Synthesis", affix = "", "Arrows Pierce 3 additional Targets", statOrder = { 1796 }, level = 65, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAdditionalPierce1"] = { type = "Synthesis", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 56, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunDuration1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunDuration2"] = { type = "Synthesis", affix = "", "(18-25)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 15, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunDuration3_"] = { type = "Synthesis", affix = "", "(26-35)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 24, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitEnemyStunThreshold1"] = { type = "Synthesis", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitEnemyStunThreshold2"] = { type = "Synthesis", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 15, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitEnemyStunThreshold3"] = { type = "Synthesis", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 24, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecovery1"] = { type = "Synthesis", affix = "", "(10-12)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecovery2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 15, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecovery3_"] = { type = "Synthesis", affix = "", "(16-18)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 24, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecovery4"] = { type = "Synthesis", affix = "", "(19-21)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 36, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecovery5"] = { type = "Synthesis", affix = "", "(22-25)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 48, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunRecoveryJewel1"] = { type = "Synthesis", affix = "", "(6-7)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunDurationJewel1___"] = { type = "Synthesis", affix = "", "(2-3)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitStunDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitGlobalKnockbackChanceJewel1"] = { type = "Synthesis", affix = "", "(2-3)% chance to Knock Enemies Back on hit", statOrder = { 2000 }, level = 1, group = "GlobalKnockbackChance", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidStun1"] = { type = "Synthesis", affix = "", "(10-11)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 15, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidStun2"] = { type = "Synthesis", affix = "", "(12-13)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 24, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidStun3"] = { type = "Synthesis", affix = "", "(14-15)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 36, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidStunJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidStunCastingJewel1_"] = { type = "Synthesis", affix = "", "(16-20)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAreaOfEffectOnStun1"] = { type = "Synthesis", affix = "", "(20-25)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4733 }, level = 56, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitUnwaveringStance1"] = { type = "Synthesis", affix = "", "Unwavering Stance", statOrder = { 10819 }, level = 65, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitImmuneToBleed1____"] = { type = "Synthesis", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4220 }, level = 56, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitSelfAilmentDuration1"] = { type = "Synthesis", affix = "", "(15-20)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 15, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, - ["SynthesisImplicitSelfAilmentDuration2"] = { type = "Synthesis", affix = "", "(21-35)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 24, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, - ["SynthesisImplicitSelfAilmentDuration3"] = { type = "Synthesis", affix = "", "(36-50)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 36, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, - ["SynthesisImplicitSelfAilmentDurationJewel1_"] = { type = "Synthesis", affix = "", "(5-7)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, - ["SynthesisImplicitSelfAilmentDurationJewel2"] = { type = "Synthesis", affix = "", "(8-10)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, - ["SynthesisImplicitAilmentDamage1"] = { type = "Synthesis", affix = "", "8% increased Damage with Ailments", statOrder = { 4988 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage with Ailments", statOrder = { 4988 }, level = 15, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage with Ailments", statOrder = { 4988 }, level = 24, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Damage with Ailments", statOrder = { 4988 }, level = 36, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Damage with Ailments", statOrder = { 4988 }, level = 48, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Ailments", statOrder = { 4988 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Ailments", statOrder = { 4988 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["SynthesisImplicitAilmentEffect1"] = { type = "Synthesis", affix = "", "6% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, - ["SynthesisImplicitAilmentEffect2_"] = { type = "Synthesis", affix = "", "7% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 15, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, - ["SynthesisImplicitAilmentEffect3"] = { type = "Synthesis", affix = "", "8% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 24, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, - ["SynthesisImplicitAilmentEffect4"] = { type = "Synthesis", affix = "", "9% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 36, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, - ["SynthesisImplicitAilmentEffect5"] = { type = "Synthesis", affix = "", "10% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 48, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, - ["SynthesisImplicitChanceToIgnite1"] = { type = "Synthesis", affix = "", "6% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgnite2"] = { type = "Synthesis", affix = "", "7% chance to Ignite", statOrder = { 2031 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgnite3"] = { type = "Synthesis", affix = "", "8% chance to Ignite", statOrder = { 2031 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgniteTwoHand1_"] = { type = "Synthesis", affix = "", "(9-10)% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgniteTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Ignite", statOrder = { 2031 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgniteTwoHand3_"] = { type = "Synthesis", affix = "", "(13-15)% chance to Ignite", statOrder = { 2031 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgniteJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToIgniteJewel2"] = { type = "Synthesis", affix = "", "3% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitIgniteDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 36, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitIgniteDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 48, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitFasterIgnite1__"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (7-10)% faster", statOrder = { 2569 }, level = 56, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitFasterIgniteWeapon1_"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (15-20)% faster", statOrder = { 2569 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitFasterIgniteWeapon2"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (30-35)% faster", statOrder = { 2569 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitAvoidIgnite1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 15, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitAvoidIgnite2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 24, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitAvoidIgnite3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 36, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitAvoidIgniteJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 1, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitChanceToFreeze1"] = { type = "Synthesis", affix = "", "6% chance to Freeze", statOrder = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreeze2"] = { type = "Synthesis", affix = "", "7% chance to Freeze", statOrder = { 2034 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreeze3"] = { type = "Synthesis", affix = "", "8% chance to Freeze", statOrder = { 2034 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreezeTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Freeze", statOrder = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreezeTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Freeze", statOrder = { 2034 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreezeTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Freeze", statOrder = { 2034 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreezeJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Freeze", statOrder = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToFreezeJewel2"] = { type = "Synthesis", affix = "", "3% chance to Freeze", statOrder = { 2034 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitFreezeDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Freeze Duration on Enemies", statOrder = { 1863 }, level = 36, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitFreezeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Freeze Duration on Enemies", statOrder = { 1863 }, level = 48, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidChill1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Chilled", statOrder = { 1849 }, level = 15, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidChill2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Chilled", statOrder = { 1849 }, level = 24, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidChill3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Chilled", statOrder = { 1849 }, level = 36, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidFreeze1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 15, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidFreeze2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 24, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidFreeze3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 36, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitAvoidFreezeJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChillDurationJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Chill Duration on Enemies", statOrder = { 1861 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChillDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chill Duration on Enemies", statOrder = { 1861 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChillEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Cold Ailments", statOrder = { 5803 }, level = 36, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChillEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Cold Ailments", statOrder = { 5803 }, level = 48, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChillEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Cold Ailments", statOrder = { 5803 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitChanceToShock1"] = { type = "Synthesis", affix = "", "6% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShock2"] = { type = "Synthesis", affix = "", "7% chance to Shock", statOrder = { 2038 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShock3"] = { type = "Synthesis", affix = "", "8% chance to Shock", statOrder = { 2038 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShockTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShockTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Shock", statOrder = { 2038 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShockTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Shock", statOrder = { 2038 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShockJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitChanceToShockJewel2"] = { type = "Synthesis", affix = "", "3% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 36, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 48, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockDurationJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidShock1"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 15, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidShock2_"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 24, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidShock3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 36, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidShockJewel1____"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 1, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Shock", statOrder = { 10007 }, level = 36, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Shock", statOrder = { 10007 }, level = 48, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitShockEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Shock", statOrder = { 10007 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitBurnDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Burning Damage", statOrder = { 1882 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamage2__"] = { type = "Synthesis", affix = "", "(12-13)% increased Burning Damage", statOrder = { 1882 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Burning Damage", statOrder = { 1882 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageOneHand1"] = { type = "Synthesis", affix = "", "(14-18)% increased Burning Damage", statOrder = { 1882 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageOneHand2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Burning Damage", statOrder = { 1882 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageOneHand3"] = { type = "Synthesis", affix = "", "(24-28)% increased Burning Damage", statOrder = { 1882 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-27)% increased Burning Damage", statOrder = { 1882 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageTwoHand2"] = { type = "Synthesis", affix = "", "(28-35)% increased Burning Damage", statOrder = { 1882 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageTwoHand3"] = { type = "Synthesis", affix = "", "(36-44)% increased Burning Damage", statOrder = { 1882 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Burning Damage", statOrder = { 1882 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitBurnDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Burning Damage", statOrder = { 1882 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitPoisonDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Poison", statOrder = { 3186 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitPoisonDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Poison", statOrder = { 3186 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitPoisonDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Poison", statOrder = { 3186 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitWeaponPoisonDamage1"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Poison", statOrder = { 3186 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitWeaponPoisonDamage2"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Poison", statOrder = { 3186 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitWeaponPoisonDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Poison", statOrder = { 3186 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitPoisonDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Poison", statOrder = { 3186 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitPoisonDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Poison", statOrder = { 3186 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitLocalPoisonOnHit1_"] = { type = "Synthesis", affix = "", "(25-30)% chance to Poison on Hit", statOrder = { 8007 }, level = 50, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, - ["SynthesisImplicitChanceToPoisonJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Poison on Hit", statOrder = { 3178 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitChanceToPoisonJewel2_"] = { type = "Synthesis", affix = "", "3% chance to Poison on Hit", statOrder = { 3178 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitPoisonDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Poison Duration", statOrder = { 3175 }, level = 55, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitFasterPoison1"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (7-10)% faster", statOrder = { 6550 }, level = 56, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitFasterPoisonWeapon1_"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6550 }, level = 36, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitFasterPoisonWeapon2__"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (30-35)% faster", statOrder = { 6550 }, level = 48, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["SynthesisImplicitAvoidPoison1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 24, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitAvoidPoison2"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 36, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitAvoidPoison3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 48, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitAvoidPoisonJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["SynthesisImplicitBleedDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Bleeding", statOrder = { 3174 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitBleedDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Bleeding", statOrder = { 3174 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitBleedDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Bleeding", statOrder = { 3174 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitWeaponBleedDamage1_"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Bleeding", statOrder = { 3174 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitWeaponBleedDamage2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Bleeding", statOrder = { 3174 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitWeaponBleedDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Bleeding", statOrder = { 3174 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitBleedDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Bleeding", statOrder = { 3174 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitBleedDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Bleeding", statOrder = { 3174 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitLocalBleedOnHit1"] = { type = "Synthesis", affix = "", "(15-20)% chance to cause Bleeding on Hit", statOrder = { 2488 }, level = 50, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitChanceToBleedJewel1"] = { type = "Synthesis", affix = "", "Attacks have (1-2)% chance to cause Bleeding", statOrder = { 2494 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitChanceToBleedJewel2__"] = { type = "Synthesis", affix = "", "Attacks have 3% chance to cause Bleeding", statOrder = { 2494 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitFasterBleed1_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (7-10)% faster", statOrder = { 6549 }, level = 56, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitFasterBleedWeapon1"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (15-20)% faster", statOrder = { 6549 }, level = 36, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitFasterBleedWeapon2_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (30-35)% faster", statOrder = { 6549 }, level = 48, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitBleedDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4999 }, level = 55, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitAvoidBleed1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 15, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitAvoidBleed2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 24, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitAvoidBleed3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 36, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitAvoidBleedJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["SynthesisImplicitAllDamage1_"] = { type = "Synthesis", affix = "", "7% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamage2"] = { type = "Synthesis", affix = "", "(8-9)% increased Damage", statOrder = { 1196 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamage3"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage", statOrder = { 1196 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamage4"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage", statOrder = { 1196 }, level = 36, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamage5"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage", statOrder = { 1196 }, level = 48, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamage1"] = { type = "Synthesis", affix = "", "(15-18)% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Damage", statOrder = { 1196 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamage3_"] = { type = "Synthesis", affix = "", "(23-26)% increased Damage", statOrder = { 1196 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamageTwoHand1_"] = { type = "Synthesis", affix = "", "(21-26)% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamageTwoHand2"] = { type = "Synthesis", affix = "", "(27-32)% increased Damage", statOrder = { 1196 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponAllDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Damage", statOrder = { 1196 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamageJewel1"] = { type = "Synthesis", affix = "", "2% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAllDamageJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage", statOrder = { 1196 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitFireDamage1_"] = { type = "Synthesis", affix = "", "8% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Fire Damage", statOrder = { 1362 }, level = 15, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Fire Damage", statOrder = { 1362 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Fire Damage", statOrder = { 1362 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Fire Damage", statOrder = { 1362 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Fire Damage", statOrder = { 1362 }, level = 56, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Attack Skills", statOrder = { 6581 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitFireDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Attack Skills", statOrder = { 6581 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitFireDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Spell Skills", statOrder = { 6582 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitFireDamageSpellsJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Spell Skills", statOrder = { 6582 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitPhysicalConvertedToFireMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 50, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitPhysicalConvertedToFire1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 55, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitPhysicalConvertedToFire2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 60, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitPhysicalConvertedToFireJewel1_"] = { type = "Synthesis", affix = "", "3% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 1, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitPhysicalAddedAsFire1"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 45, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitPhysicalAddedAsFire2"] = { type = "Synthesis", affix = "", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 55, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["SynthesisImplicitFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6568 }, level = 55, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireLeechMinor1__"] = { type = "Synthesis", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["SynthesisImplicitFireLeech1"] = { type = "Synthesis", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 55, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1362 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1362 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Fire Damage", statOrder = { 1362 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(29-32)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Fire Damage", statOrder = { 1362 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Fire Damage", statOrder = { 1362 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitWeaponFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Fire Damage", statOrder = { 1362 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitLocalFireDamage1"] = { type = "Synthesis", affix = "", "Adds (4-8) to (9-15) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamage2"] = { type = "Synthesis", affix = "", "Adds (9-12) to (16-23) Fire Damage", statOrder = { 1367 }, level = 15, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamage3"] = { type = "Synthesis", affix = "", "Adds (13-18) to (24-31) Fire Damage", statOrder = { 1367 }, level = 24, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamage4"] = { type = "Synthesis", affix = "", "Adds (19-24) to (32-43) Fire Damage", statOrder = { 1367 }, level = 36, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamage5"] = { type = "Synthesis", affix = "", "Adds (25-30) to (44-53) Fire Damage", statOrder = { 1367 }, level = 48, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (15-24) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-22) to (26-41) Fire Damage", statOrder = { 1367 }, level = 15, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (23-31) to (42-56) Fire Damage", statOrder = { 1367 }, level = 24, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (32-41) to (57-74) Fire Damage", statOrder = { 1367 }, level = 36, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitLocalFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (42-52) to (75-93) Fire Damage", statOrder = { 1367 }, level = 48, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitSpellAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamage2"] = { type = "Synthesis", affix = "", "Adds (7-9) to (12-17) Fire Damage to Spells", statOrder = { 1409 }, level = 15, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamage3"] = { type = "Synthesis", affix = "", "Adds (10-13) to (17-22) Fire Damage to Spells", statOrder = { 1409 }, level = 24, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamage4"] = { type = "Synthesis", affix = "", "Adds (14-17) to (23-31) Fire Damage to Spells", statOrder = { 1409 }, level = 36, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamage5"] = { type = "Synthesis", affix = "", "Adds (18-21) to (31-38) Fire Damage to Spells", statOrder = { 1409 }, level = 48, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (5-9) to (10-15) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (10-14) to (16-25) Fire Damage to Spells", statOrder = { 1409 }, level = 15, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (14-19) to (26-34) Fire Damage to Spells", statOrder = { 1409 }, level = 24, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (20-25) to (35-45) Fire Damage to Spells", statOrder = { 1409 }, level = 36, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitSpellAddedFireDamageTwoHand5__"] = { type = "Synthesis", affix = "", "Adds (26-32) to (46-56) Fire Damage to Spells", statOrder = { 1409 }, level = 48, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SynthesisImplicitGlobalAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (13-18) to (28-33) Fire Damage", statOrder = { 1364 }, level = 50, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitFireAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 55, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["SynthesisImplicitFireAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 65, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["SynthesisImplicitColdDamage1"] = { type = "Synthesis", affix = "", "8% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Cold Damage", statOrder = { 1371 }, level = 15, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Cold Damage", statOrder = { 1371 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Cold Damage", statOrder = { 1371 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamage5_"] = { type = "Synthesis", affix = "", "(15-16)% increased Cold Damage", statOrder = { 1371 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Cold Damage", statOrder = { 1371 }, level = 56, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Attack Skills", statOrder = { 5826 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitColdDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Attack Skills", statOrder = { 5826 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitColdDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Spell Skills", statOrder = { 5827 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitColdDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Spell Skills", statOrder = { 5827 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitPhysicalConvertedToColdMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 50, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["SynthesisImplicitPhysicalConvertedToCold1_"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 55, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["SynthesisImplicitPhysicalConvertedToCold2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 60, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamagePerFrenzyCharge1"] = { type = "Synthesis", affix = "", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 55, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["SynthesisImplicitColdLeech1"] = { type = "Synthesis", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 55, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1371 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1371 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Cold Damage", statOrder = { 1371 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Cold Damage", statOrder = { 1371 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Cold Damage", statOrder = { 1371 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitWeaponColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Cold Damage", statOrder = { 1371 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitLocalColdDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamage2"] = { type = "Synthesis", affix = "", "Adds (7-10) to (12-18) Cold Damage", statOrder = { 1376 }, level = 15, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamage3"] = { type = "Synthesis", affix = "", "Adds (11-15) to (19-26) Cold Damage", statOrder = { 1376 }, level = 24, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamage4"] = { type = "Synthesis", affix = "", "Adds (16-20) to (27-35) Cold Damage", statOrder = { 1376 }, level = 36, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamage5"] = { type = "Synthesis", affix = "", "Adds (21-25) to (36-43) Cold Damage", statOrder = { 1376 }, level = 48, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamageTwoHand1__"] = { type = "Synthesis", affix = "", "Adds (6-9) to (13-21) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamageTwoHand2__"] = { type = "Synthesis", affix = "", "Adds (10-17) to (22-32) Cold Damage", statOrder = { 1376 }, level = 15, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamageTwoHand3_"] = { type = "Synthesis", affix = "", "Adds (19-26) to (34-45) Cold Damage", statOrder = { 1376 }, level = 24, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (27-35) to (46-61) Cold Damage", statOrder = { 1376 }, level = 36, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLocalColdDamageTwoHand5_"] = { type = "Synthesis", affix = "", "Adds (36-43) to (51-75) Cold Damage", statOrder = { 1376 }, level = 48, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitSpellAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (3-5) to (5-8) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamage2_"] = { type = "Synthesis", affix = "", "Adds (5-7) to (9-13) Cold Damage to Spells", statOrder = { 1410 }, level = 15, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamage3"] = { type = "Synthesis", affix = "", "Adds (8-11) to (14-19) Cold Damage to Spells", statOrder = { 1410 }, level = 24, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamage4"] = { type = "Synthesis", affix = "", "Adds (12-14) to (19-25) Cold Damage to Spells", statOrder = { 1410 }, level = 36, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamage5"] = { type = "Synthesis", affix = "", "Adds (15-18) to (26-31) Cold Damage to Spells", statOrder = { 1410 }, level = 48, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (4-6) to (8-13) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (7-11) to (14-20) Cold Damage to Spells", statOrder = { 1410 }, level = 15, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (12-16) to (21-28) Cold Damage to Spells", statOrder = { 1410 }, level = 24, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (17-21) to (28-38) Cold Damage to Spells", statOrder = { 1410 }, level = 36, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitSpellAddedColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (22-26) to (31-46) Cold Damage to Spells", statOrder = { 1410 }, level = 48, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SynthesisImplicitGlobalAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (12-16) to (24-28) Cold Damage", statOrder = { 1373 }, level = 50, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplier1"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Synthesis", affix = "", "+(21-23)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand2_"] = { type = "Synthesis", affix = "", "+(24-26)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand3_"] = { type = "Synthesis", affix = "", "+(27-30)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitColdAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 55, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["SynthesisImplicitColdAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 65, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["SynthesisImplicitLightningDamage1"] = { type = "Synthesis", affix = "", "8% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Lightning Damage", statOrder = { 1382 }, level = 15, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Lightning Damage", statOrder = { 1382 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Lightning Damage", statOrder = { 1382 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Lightning Damage", statOrder = { 1382 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Lightning Damage", statOrder = { 1382 }, level = 56, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningDamageAttacksJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Attack Skills", statOrder = { 7458 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLightningDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Attack Skills", statOrder = { 7458 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLightningDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Spell Skills", statOrder = { 7459 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitLightningDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Spell Skills", statOrder = { 7459 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitPhysicalConvertedToLightningMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 50, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["SynthesisImplicitPhysicalConvertedToLightning1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 55, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["SynthesisImplicitPhysicalConvertedToLightning2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 60, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["SynthesisImplicitPhysicalAddedAsLightning1___"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 55, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningLeech1"] = { type = "Synthesis", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 55, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1382 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamage4_"] = { type = "Synthesis", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1382 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamage5_"] = { type = "Synthesis", affix = "", "(27-30)% increased Lightning Damage", statOrder = { 1382 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Lightning Damage", statOrder = { 1382 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Lightning Damage", statOrder = { 1382 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitWeaponLightningDamageTwoHand5_"] = { type = "Synthesis", affix = "", "(41-44)% increased Lightning Damage", statOrder = { 1382 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLocalLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (16-25) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (26-40) Lightning Damage", statOrder = { 1387 }, level = 15, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamage3_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (41-55) Lightning Damage", statOrder = { 1387 }, level = 24, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (56-70) Lightning Damage", statOrder = { 1387 }, level = 36, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-6) to (71-83) Lightning Damage", statOrder = { 1387 }, level = 48, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (29-46) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (1-3) to (48-75) Lightning Damage", statOrder = { 1387 }, level = 15, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-6) to (77-95) Lightning Damage", statOrder = { 1387 }, level = 24, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-8) to (96-123) Lightning Damage", statOrder = { 1387 }, level = 36, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitLocalLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-10) to (124-145) Lightning Damage", statOrder = { 1387 }, level = 48, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitSpellAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (12-18) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (19-28) Lightning Damage to Spells", statOrder = { 1411 }, level = 15, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamage3"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-39) Lightning Damage to Spells", statOrder = { 1411 }, level = 24, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-4) to (40-49) Lightning Damage to Spells", statOrder = { 1411 }, level = 36, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-5) to (50-59) Lightning Damage to Spells", statOrder = { 1411 }, level = 48, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (18-28) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-46) Lightning Damage to Spells", statOrder = { 1411 }, level = 15, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-4) to (47-58) Lightning Damage to Spells", statOrder = { 1411 }, level = 24, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (59-75) Lightning Damage to Spells", statOrder = { 1411 }, level = 36, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitSpellAddedLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-7) to (75-88) Lightning Damage to Spells", statOrder = { 1411 }, level = 48, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SynthesisImplicitGlobalAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds (1-5) to (50-52) Lightning Damage", statOrder = { 1384 }, level = 50, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitLightningAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 55, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["SynthesisImplicitLightningAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 65, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["SynthesisImplicitPhysicalDamage1_"] = { type = "Synthesis", affix = "", "8% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Global Physical Damage", statOrder = { 1236 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamage3_"] = { type = "Synthesis", affix = "", "(11-12)% increased Global Physical Damage", statOrder = { 1236 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Global Physical Damage", statOrder = { 1236 }, level = 36, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Global Physical Damage", statOrder = { 1236 }, level = 48, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Global Physical Damage", statOrder = { 1236 }, level = 56, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamageJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Attack Skills", statOrder = { 9663 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitPhysicalDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Attack Skills", statOrder = { 9663 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitPhysicalDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Spell Skills", statOrder = { 9664 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SynthesisImplicitPhysicalDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Spell Skills", statOrder = { 9664 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SynthesisImplicitAttackChanceToImpale1"] = { type = "Synthesis", affix = "", "(6-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, }, - ["SynthesisImplicitPhysicalLeech1"] = { type = "Synthesis", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 55, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamage1"] = { type = "Synthesis", affix = "", "(19-22)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamage2"] = { type = "Synthesis", affix = "", "(23-26)% increased Global Physical Damage", statOrder = { 1236 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamage3"] = { type = "Synthesis", affix = "", "(27-30)% increased Global Physical Damage", statOrder = { 1236 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamageTwoHand1"] = { type = "Synthesis", affix = "", "(27-32)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(33-38)% increased Global Physical Damage", statOrder = { 1236 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitWeaponPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "(39-44)% increased Global Physical Damage", statOrder = { 1236 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitLocalPhysicalDamage1"] = { type = "Synthesis", affix = "", "(13-14)% increased Physical Damage", statOrder = { 1237 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalPhysicalDamage2"] = { type = "Synthesis", affix = "", "(15-16)% increased Physical Damage", statOrder = { 1237 }, level = 15, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalPhysicalDamage3"] = { type = "Synthesis", affix = "", "(17-19)% increased Physical Damage", statOrder = { 1237 }, level = 24, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalPhysicalDamage4"] = { type = "Synthesis", affix = "", "(20-22)% increased Physical Damage", statOrder = { 1237 }, level = 36, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalPhysicalDamage5"] = { type = "Synthesis", affix = "", "(23-25)% increased Physical Damage", statOrder = { 1237 }, level = 48, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamage2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (3-4) Physical Damage", statOrder = { 1281 }, level = 15, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamage3"] = { type = "Synthesis", affix = "", "Adds (3-4) to (5-6) Physical Damage", statOrder = { 1281 }, level = 24, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamage4"] = { type = "Synthesis", affix = "", "Adds (5-6) to (7-8) Physical Damage", statOrder = { 1281 }, level = 36, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamage5"] = { type = "Synthesis", affix = "", "Adds (6-7) to (9-10) Physical Damage", statOrder = { 1281 }, level = 48, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Physical Damage", statOrder = { 1281 }, level = 15, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (4-5) to (6-7) Physical Damage", statOrder = { 1281 }, level = 24, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand4_"] = { type = "Synthesis", affix = "", "Adds (6-7) to (8-10) Physical Damage", statOrder = { 1281 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1281 }, level = 48, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 55, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["SynthesisImplicitPhysicalAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 65, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["SynthesisImplicitChaosDamage1"] = { type = "Synthesis", affix = "", "8% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Chaos Damage", statOrder = { 1390 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Chaos Damage", statOrder = { 1390 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Chaos Damage", statOrder = { 1390 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Chaos Damage", statOrder = { 1390 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamage6_"] = { type = "Synthesis", affix = "", "(17-20)% increased Chaos Damage", statOrder = { 1390 }, level = 56, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageAttacksJewel1___"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Attack Skills", statOrder = { 5754 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitChaosDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Attack Skills", statOrder = { 5754 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitChaosDamageSpellsJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Spell Skills", statOrder = { 5755 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SynthesisImplicitChaosDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Spell Skills", statOrder = { 5755 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SynthesisImplicitPhysicalConvertedToChaos1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 55, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["SynthesisImplicitPhysicalConvertedToChaos2_"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 60, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["SynthesisImplicitChaosLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, - ["SynthesisImplicitChaosLeech1"] = { type = "Synthesis", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 55, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1390 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1390 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1390 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1390 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Chaos Damage", statOrder = { 1390 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamageTwoHand2___"] = { type = "Synthesis", affix = "", "(29-32)% increased Chaos Damage", statOrder = { 1390 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamageTwoHand3_"] = { type = "Synthesis", affix = "", "(33-36)% increased Chaos Damage", statOrder = { 1390 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitWeaponChaosDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Chaos Damage", statOrder = { 1390 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitLocalChaosDamage1"] = { type = "Synthesis", affix = "", "Adds (4-9) to (11-21) Chaos Damage", statOrder = { 1395 }, level = 15, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitLocalChaosDamage2_"] = { type = "Synthesis", affix = "", "Adds (10-18) to (22-34) Chaos Damage", statOrder = { 1395 }, level = 24, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitLocalChaosDamage3"] = { type = "Synthesis", affix = "", "Adds (19-28) to (35-49) Chaos Damage", statOrder = { 1395 }, level = 36, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitLocalChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (17-30) Chaos Damage", statOrder = { 1395 }, level = 15, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitLocalChaosDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-24) to (31-57) Chaos Damage", statOrder = { 1395 }, level = 24, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitLocalChaosDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (26-50) to (58-86) Chaos Damage", statOrder = { 1395 }, level = 36, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SynthesisImplicitGlobalAddedChaosDamage1_"] = { type = "Synthesis", affix = "", "Adds (11-13) to (19-23) Chaos Damage", statOrder = { 1391 }, level = 50, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplier1_"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand1"] = { type = "Synthesis", affix = "", "+(21-23)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand2"] = { type = "Synthesis", affix = "", "+(24-26)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand3"] = { type = "Synthesis", affix = "", "+(27-30)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["SynthesisImplicitDegenerationDamage1_"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDegenerationDamage2"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage over Time", statOrder = { 1215 }, level = 15, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDegenerationDamage3"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage over Time", statOrder = { 1215 }, level = 24, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDegenerationDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDegenerationDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitWeaponElementalDamage1_"] = { type = "Synthesis", affix = "", "(12-13)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitWeaponElementalDamage2"] = { type = "Synthesis", affix = "", "(14-15)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 24, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitWeaponElementalDamage3"] = { type = "Synthesis", affix = "", "(16-18)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 36, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitWeaponElementalDamage4"] = { type = "Synthesis", affix = "", "(19-21)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 48, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitWeaponElementalDamage5"] = { type = "Synthesis", affix = "", "(22-24)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 56, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitPhysicalDamageAddedAsRandomElement1"] = { type = "Synthesis", affix = "", "Gain (8-10)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 65, group = "PhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, }, - ["SynthesisImplicitLocalElementalPen1_"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 2% Elemental Resistances", statOrder = { 3766 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitLocalElementalPen2"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 3% Elemental Resistances", statOrder = { 3766 }, level = 15, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitLocalElementalPen3"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate (4-5)% Elemental Resistances", statOrder = { 3766 }, level = 24, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["SynthesisImplicitElementalDamage1"] = { type = "Synthesis", affix = "", "8% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Elemental Damage", statOrder = { 1985 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Elemental Damage", statOrder = { 1985 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Elemental Damage", statOrder = { 1985 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Elemental Damage", statOrder = { 1985 }, level = 48, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHigh1__"] = { type = "Synthesis", affix = "", "(17-19)% increased Elemental Damage", statOrder = { 1985 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHigh2"] = { type = "Synthesis", affix = "", "(20-22)% increased Elemental Damage", statOrder = { 1985 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHigh3__"] = { type = "Synthesis", affix = "", "(23-26)% increased Elemental Damage", statOrder = { 1985 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHighTwoHand1"] = { type = "Synthesis", affix = "", "(21-26)% increased Elemental Damage", statOrder = { 1985 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHighTwoHand2_"] = { type = "Synthesis", affix = "", "(27-32)% increased Elemental Damage", statOrder = { 1985 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageHighTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Elemental Damage", statOrder = { 1985 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitElementalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Elemental Damage Leeched as Life", statOrder = { 1691 }, level = 45, group = "ElementalDamageLeechedAsLifePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitFirePenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Fire Resistance", statOrder = { 2986 }, level = 60, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["SynthesisImplicitColdPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Cold Resistance", statOrder = { 2988 }, level = 60, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["SynthesisImplicitLightningPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Lightning Resistance", statOrder = { 2989 }, level = 60, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["SynthesisImplicitFirePenetrationWeapon1"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Fire Resistance", statOrder = { 3595 }, level = 60, group = "FirePenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitColdPenetrationWeapon1_"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Cold Resistance", statOrder = { 3594 }, level = 60, group = "ColdPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitLightningPenetrationWeapon1__"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Lightning Resistance", statOrder = { 3596 }, level = 60, group = "LightningPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitElementalPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2985 }, level = 60, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["SynthesisImplicitMeleeDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Melee Damage", statOrder = { 1239 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitMeleeDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Melee Damage", statOrder = { 1239 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Maces or Sceptres", statOrder = { 1332 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Axes", statOrder = { 1308 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Swords", statOrder = { 1343 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitBowIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Bows", statOrder = { 1338 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitClawIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Claws", statOrder = { 1320 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Daggers", statOrder = { 1326 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitWandIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Wands", statOrder = { 1350 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Staves", statOrder = { 1312 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Maces or Sceptres", statOrder = { 1332 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Axes", statOrder = { 1308 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Swords", statOrder = { 1343 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitBowIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Bows", statOrder = { 1338 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitClawIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Claws", statOrder = { 1320 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Daggers", statOrder = { 1326 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitWandIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Wands", statOrder = { 1350 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Staves", statOrder = { 1312 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["SynthesisImplicitSpellDamageWithStaffJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while wielding a Staff", statOrder = { 1232 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while Dual Wielding", statOrder = { 1235 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageWithShieldJewel1__"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while holding a Shield", statOrder = { 1234 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageWithStaffJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while wielding a Staff", statOrder = { 1232 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while Dual Wielding", statOrder = { 1235 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageWithShieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while holding a Shield", statOrder = { 1234 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitAttackDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Attack Damage", statOrder = { 1203 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitAttackDamage2"] = { type = "Synthesis", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1203 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitAttackDamage3"] = { type = "Synthesis", affix = "", "(17-20)% increased Attack Damage", statOrder = { 1203 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamage1"] = { type = "Synthesis", affix = "", "(23-26)% increased Attack Damage", statOrder = { 1203 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamage2"] = { type = "Synthesis", affix = "", "(27-30)% increased Attack Damage", statOrder = { 1203 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamage3"] = { type = "Synthesis", affix = "", "(31-35)% increased Attack Damage", statOrder = { 1203 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamageTwoHand1"] = { type = "Synthesis", affix = "", "(29-35)% increased Attack Damage", statOrder = { 1203 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamageTwoHand2"] = { type = "Synthesis", affix = "", "(36-44)% increased Attack Damage", statOrder = { 1203 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitWeaponAttackDamageTwoHand3"] = { type = "Synthesis", affix = "", "(45-51)% increased Attack Damage", statOrder = { 1203 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitSpellDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamage2_"] = { type = "Synthesis", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1228 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamage3_"] = { type = "Synthesis", affix = "", "(17-20)% increased Spell Damage", statOrder = { 1228 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamage1"] = { type = "Synthesis", affix = "", "(16-18)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Spell Damage", statOrder = { 1228 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamage3"] = { type = "Synthesis", affix = "", "(23-26)% increased Spell Damage", statOrder = { 1228 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamage4"] = { type = "Synthesis", affix = "", "(27-30)% increased Spell Damage", statOrder = { 1228 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamage5"] = { type = "Synthesis", affix = "", "(31-35)% increased Spell Damage", statOrder = { 1228 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-24)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamageTwoHand2"] = { type = "Synthesis", affix = "", "(25-28)% increased Spell Damage", statOrder = { 1228 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamageTwoHand3"] = { type = "Synthesis", affix = "", "(29-35)% increased Spell Damage", statOrder = { 1228 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamageTwoHand4_"] = { type = "Synthesis", affix = "", "(36-44)% increased Spell Damage", statOrder = { 1228 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitWeaponSpellDamageTwoHand5"] = { type = "Synthesis", affix = "", "(45-51)% increased Spell Damage", statOrder = { 1228 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellsDoubleDamageChance1__"] = { type = "Synthesis", affix = "", "Spells have a (8-10)% chance to deal Double Damage", statOrder = { 10135 }, level = 60, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellsDoubleDamageChance2_"] = { type = "Synthesis", affix = "", "Spells have a (16-18)% chance to deal Double Damage", statOrder = { 10135 }, level = 65, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitStrength1"] = { type = "Synthesis", affix = "", "+(6-8) to Strength", statOrder = { 1182 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrength2__"] = { type = "Synthesis", affix = "", "+(9-11) to Strength", statOrder = { 1182 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrength3"] = { type = "Synthesis", affix = "", "+(12-14) to Strength", statOrder = { 1182 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrength4"] = { type = "Synthesis", affix = "", "+(15-17) to Strength", statOrder = { 1182 }, level = 15, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrength5"] = { type = "Synthesis", affix = "", "+(18-20) to Strength", statOrder = { 1182 }, level = 24, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrengthJewel1__"] = { type = "Synthesis", affix = "", "+(2-3) to Strength", statOrder = { 1182 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitStrengthJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Strength", statOrder = { 1182 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrength1_"] = { type = "Synthesis", affix = "", "4% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrength2_"] = { type = "Synthesis", affix = "", "5% increased Strength", statOrder = { 1189 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrength3_"] = { type = "Synthesis", affix = "", "6% increased Strength", statOrder = { 1189 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrengthTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Strength", statOrder = { 1189 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrengthTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Strength", statOrder = { 1189 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentStrengthTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Strength", statOrder = { 1189 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Strength", statOrder = { 6063 }, level = 60, group = "DamagePer15Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAddedFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4874 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitAddedFireDamagePerStrength2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4874 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["SynthesisImplicitSpellDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Strength", statOrder = { 10155 }, level = 55, group = "SpellDamagePer16Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamagePerStrength2_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Strength", statOrder = { 10152 }, level = 55, group = "SpellDamagePer10Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageTakenPer250Strength1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Strength", statOrder = { 6115 }, level = 60, group = "DamageTakenPer250Strength", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitDexterity1"] = { type = "Synthesis", affix = "", "+(6-8) to Dexterity", statOrder = { 1183 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterity2"] = { type = "Synthesis", affix = "", "+(9-11) to Dexterity", statOrder = { 1183 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterity3"] = { type = "Synthesis", affix = "", "+(12-14) to Dexterity", statOrder = { 1183 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterity4"] = { type = "Synthesis", affix = "", "+(15-17) to Dexterity", statOrder = { 1183 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterity5"] = { type = "Synthesis", affix = "", "+(18-20) to Dexterity", statOrder = { 1183 }, level = 24, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterityJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Dexterity", statOrder = { 1183 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDexterityJewel2_"] = { type = "Synthesis", affix = "", "+(4-5) to Dexterity", statOrder = { 1183 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterity1"] = { type = "Synthesis", affix = "", "4% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterity2"] = { type = "Synthesis", affix = "", "5% increased Dexterity", statOrder = { 1190 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterity3_"] = { type = "Synthesis", affix = "", "6% increased Dexterity", statOrder = { 1190 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterityTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Dexterity", statOrder = { 1190 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterityTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Dexterity", statOrder = { 1190 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentDexterityTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Dexterity", statOrder = { 1190 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6061 }, level = 60, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAddedColdDamagePerDexterity1_"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4929 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitAddedColdDamagePerDexterity2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4929 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["SynthesisImplicitSpellDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10153 }, level = 55, group = "SpellDamagePer16Dexterity", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageTakenPer250Dexterity1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Dexterity", statOrder = { 6113 }, level = 60, group = "DamageTakenPer250Dexterity", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitIntelligence1"] = { type = "Synthesis", affix = "", "+(6-8) to Intelligence", statOrder = { 1184 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligence2_"] = { type = "Synthesis", affix = "", "+(9-11) to Intelligence", statOrder = { 1184 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligence3_"] = { type = "Synthesis", affix = "", "+(12-14) to Intelligence", statOrder = { 1184 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligence4"] = { type = "Synthesis", affix = "", "+(15-17) to Intelligence", statOrder = { 1184 }, level = 15, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligence5"] = { type = "Synthesis", affix = "", "+(18-20) to Intelligence", statOrder = { 1184 }, level = 24, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligenceJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Intelligence", statOrder = { 1184 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitIntelligenceJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Intelligence", statOrder = { 1184 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligence1"] = { type = "Synthesis", affix = "", "4% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligence2_"] = { type = "Synthesis", affix = "", "5% increased Intelligence", statOrder = { 1191 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligence3_"] = { type = "Synthesis", affix = "", "6% increased Intelligence", statOrder = { 1191 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligenceTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Intelligence", statOrder = { 1191 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligenceTrinket2_"] = { type = "Synthesis", affix = "", "(10-12)% increased Intelligence", statOrder = { 1191 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentIntelligenceTrinket3_"] = { type = "Synthesis", affix = "", "(13-15)% increased Intelligence", statOrder = { 1191 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Intelligence", statOrder = { 6062 }, level = 60, group = "DamagePer15Intelligence", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAddedLightningDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitAddedLightningDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SynthesisImplicitSpellDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10154 }, level = 55, group = "SpellDamagePer16Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2743 }, level = 55, group = "SpellDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageTakenPer250Intelligence1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Intelligence", statOrder = { 6114 }, level = 60, group = "DamageTakenPer250Intelligence", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAllAttributes1"] = { type = "Synthesis", affix = "", "+(6-7) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitAllAttributes2"] = { type = "Synthesis", affix = "", "+(8-9) to all Attributes", statOrder = { 1181 }, level = 15, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitAllAttributes3"] = { type = "Synthesis", affix = "", "+(10-12) to all Attributes", statOrder = { 1181 }, level = 24, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentAllAttributes1"] = { type = "Synthesis", affix = "", "2% increased Attributes", statOrder = { 1188 }, level = 48, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitPercentAllAttributes2"] = { type = "Synthesis", affix = "", "3% increased Attributes", statOrder = { 1188 }, level = 56, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["SynthesisImplicitAccuracy1"] = { type = "Synthesis", affix = "", "(10-11)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracy2"] = { type = "Synthesis", affix = "", "(12-13)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 15, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracy3"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 24, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracy4"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 36, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracy5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 48, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracyJewel1"] = { type = "Synthesis", affix = "", "+(21-35) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAccuracyJewel2"] = { type = "Synthesis", affix = "", "+(36-50) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitFlatAccuracy1_"] = { type = "Synthesis", affix = "", "+(150-250) to Accuracy Rating", statOrder = { 1438 }, level = 48, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitFlatAccuracy2"] = { type = "Synthesis", affix = "", "+(251-350) to Accuracy Rating", statOrder = { 1438 }, level = 56, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWeaponAccuracy1"] = { type = "Synthesis", affix = "", "(10-15)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWeaponAccuracy2"] = { type = "Synthesis", affix = "", "(20-25)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 15, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWeaponAccuracy3"] = { type = "Synthesis", affix = "", "(30-35)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 24, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWeaponAccuracyHigh1"] = { type = "Synthesis", affix = "", "100% increased Global Accuracy Rating", statOrder = { 1439 }, level = 65, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitMaceAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1447 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAxeAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Axes", statOrder = { 1443 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitSwordAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Swords", statOrder = { 1449 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitBowAccuracyRatingJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Bows", statOrder = { 1448 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitClawAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Claws", statOrder = { 1445 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitDaggerAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Daggers", statOrder = { 1446 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWandAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Wands", statOrder = { 1450 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitStaffAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Staves", statOrder = { 1444 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitMaceAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1447 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAxeAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Axes", statOrder = { 1443 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitSwordAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Swords", statOrder = { 1449 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitBowAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Bows", statOrder = { 1448 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitClawAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Claws", statOrder = { 1445 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitDaggerAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Daggers", statOrder = { 1446 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWandAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Wands", statOrder = { 1450 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitStaffAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Staves", statOrder = { 1444 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitIncreasedArmour1_"] = { type = "Synthesis", affix = "", "(15-18)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitIncreasedArmour2_"] = { type = "Synthesis", affix = "", "(19-22)% increased Armour", statOrder = { 1547 }, level = 15, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitIncreasedArmour3"] = { type = "Synthesis", affix = "", "(23-26)% increased Armour", statOrder = { 1547 }, level = 24, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitIncreasedArmour4"] = { type = "Synthesis", affix = "", "(27-30)% increased Armour", statOrder = { 1547 }, level = 36, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitIncreasedArmour5_"] = { type = "Synthesis", affix = "", "(30-35)% increased Armour", statOrder = { 1547 }, level = 48, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitFlatArmour1"] = { type = "Synthesis", affix = "", "+(15-20) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitFlatArmour2"] = { type = "Synthesis", affix = "", "+(21-30) to Armour", statOrder = { 1545 }, level = 15, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitFlatArmour3"] = { type = "Synthesis", affix = "", "+(31-40) to Armour", statOrder = { 1545 }, level = 24, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitFlatArmour4"] = { type = "Synthesis", affix = "", "+(41-55) to Armour", statOrder = { 1545 }, level = 36, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitFlatArmour5"] = { type = "Synthesis", affix = "", "+(56-70) to Armour", statOrder = { 1545 }, level = 48, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitAdditionalPhysReduction1"] = { type = "Synthesis", affix = "", "2% additional Physical Damage Reduction", statOrder = { 2278 }, level = 36, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitAdditionalPhysReduction2"] = { type = "Synthesis", affix = "", "3% additional Physical Damage Reduction", statOrder = { 2278 }, level = 48, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitAdditionalPhysReduction3"] = { type = "Synthesis", affix = "", "4% additional Physical Damage Reduction", statOrder = { 2278 }, level = 56, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitGlobalArmour1"] = { type = "Synthesis", affix = "", "(7-9)% increased Armour", statOrder = { 1546 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmour2"] = { type = "Synthesis", affix = "", "(10-12)% increased Armour", statOrder = { 1546 }, level = 15, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmour3"] = { type = "Synthesis", affix = "", "(13-15)% increased Armour", statOrder = { 1546 }, level = 24, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmourTwoHand1__"] = { type = "Synthesis", affix = "", "(14-16)% increased Armour", statOrder = { 1546 }, level = 36, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmourTwoHand2"] = { type = "Synthesis", affix = "", "(17-19)% increased Armour", statOrder = { 1546 }, level = 48, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmourTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Armour", statOrder = { 1546 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmourJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Armour", statOrder = { 1546 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitGlobalArmourJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Armour", statOrder = { 1546 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitReducedDamageFromCrits1"] = { type = "Synthesis", affix = "", "You take (15-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 55, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["SynthesisImplicitChanceForDoubleArmour1"] = { type = "Synthesis", affix = "", "(15-20)% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 65, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["SynthesisImplicitIncreasedEvasion1"] = { type = "Synthesis", affix = "", "(15-18)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitIncreasedEvasion2"] = { type = "Synthesis", affix = "", "(19-22)% increased Evasion Rating", statOrder = { 1555 }, level = 15, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitIncreasedEvasion3"] = { type = "Synthesis", affix = "", "(23-26)% increased Evasion Rating", statOrder = { 1555 }, level = 24, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitIncreasedEvasion4"] = { type = "Synthesis", affix = "", "(27-30)% increased Evasion Rating", statOrder = { 1555 }, level = 36, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitIncreasedEvasion5"] = { type = "Synthesis", affix = "", "(30-35)% increased Evasion Rating", statOrder = { 1555 }, level = 48, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitFlatEvasion1"] = { type = "Synthesis", affix = "", "+(15-20) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitFlatEvasion2"] = { type = "Synthesis", affix = "", "+(21-30) to Evasion Rating", statOrder = { 1553 }, level = 15, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitFlatEvasion3"] = { type = "Synthesis", affix = "", "+(31-40) to Evasion Rating", statOrder = { 1553 }, level = 24, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitFlatEvasion4"] = { type = "Synthesis", affix = "", "+(41-55) to Evasion Rating", statOrder = { 1553 }, level = 36, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitFlatEvasion5"] = { type = "Synthesis", affix = "", "+(56-70) to Evasion Rating", statOrder = { 1553 }, level = 48, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitAdditionalEvadeChance1"] = { type = "Synthesis", affix = "", "+2% chance to Evade Attack Hits", statOrder = { 5678 }, level = 36, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitAdditionalEvadeChance2"] = { type = "Synthesis", affix = "", "+3% chance to Evade Attack Hits", statOrder = { 5678 }, level = 48, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitAdditionalEvadeChance3"] = { type = "Synthesis", affix = "", "+4% chance to Evade Attack Hits", statOrder = { 5678 }, level = 56, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasion1"] = { type = "Synthesis", affix = "", "(7-9)% increased Evasion Rating", statOrder = { 1554 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasion2"] = { type = "Synthesis", affix = "", "(10-12)% increased Evasion Rating", statOrder = { 1554 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasion3"] = { type = "Synthesis", affix = "", "(13-15)% increased Evasion Rating", statOrder = { 1554 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasionTwoHand1_"] = { type = "Synthesis", affix = "", "(14-16)% increased Evasion Rating", statOrder = { 1554 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasionTwoHand2_"] = { type = "Synthesis", affix = "", "(17-19)% increased Evasion Rating", statOrder = { 1554 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasionTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Evasion Rating", statOrder = { 1554 }, level = 36, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasionJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Evasion Rating", statOrder = { 1554 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitGlobalEvasionJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Evasion Rating", statOrder = { 1554 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitAvoidStatusAilments1"] = { type = "Synthesis", affix = "", "(10-15)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidStatusAilments2"] = { type = "Synthesis", affix = "", "(16-25)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidStatusAilmentsMinor1"] = { type = "Synthesis", affix = "", "(10-12)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidStatusAilmentsMinor2"] = { type = "Synthesis", affix = "", "(13-15)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["SynthesisImplicitAvoidStatusAilmentsJewel1"] = { type = "Synthesis", affix = "", "(5-7)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["SynthesisImplicitBlindOnHit1"] = { type = "Synthesis", affix = "", "(10-15)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 65, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitIncreasedEnergyShield1"] = { type = "Synthesis", affix = "", "(15-16)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitIncreasedEnergyShield2"] = { type = "Synthesis", affix = "", "(17-18)% increased Energy Shield", statOrder = { 1565 }, level = 15, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitIncreasedEnergyShield3__"] = { type = "Synthesis", affix = "", "(19-20)% increased Energy Shield", statOrder = { 1565 }, level = 24, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitIncreasedEnergyShield4"] = { type = "Synthesis", affix = "", "(21-22)% increased Energy Shield", statOrder = { 1565 }, level = 36, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitIncreasedEnergyShield5"] = { type = "Synthesis", affix = "", "(23-25)% increased Energy Shield", statOrder = { 1565 }, level = 48, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShield1"] = { type = "Synthesis", affix = "", "+(10-12) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShield2"] = { type = "Synthesis", affix = "", "+(13-15) to maximum Energy Shield", statOrder = { 1564 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShield3"] = { type = "Synthesis", affix = "", "+(16-18) to maximum Energy Shield", statOrder = { 1564 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShield4"] = { type = "Synthesis", affix = "", "+(19-21) to maximum Energy Shield", statOrder = { 1564 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShield5_"] = { type = "Synthesis", affix = "", "+(22-25) to maximum Energy Shield", statOrder = { 1564 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShieldMinor1"] = { type = "Synthesis", affix = "", "+(6-7) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShieldMinor2_"] = { type = "Synthesis", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1564 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShieldMinor3_"] = { type = "Synthesis", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1564 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShieldMinor4"] = { type = "Synthesis", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1564 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitFlatEnergyShieldMinor5_"] = { type = "Synthesis", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1564 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Energy Shield per second", statOrder = { 2651 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.9)% of Energy Shield per second", statOrder = { 2651 }, level = 15, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2651 }, level = 24, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRegenJewel1_"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Energy Shield per second", statOrder = { 2651 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldJewel2_"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRechargeRate1"] = { type = "Synthesis", affix = "", "(8-9)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRechargeRate2_"] = { type = "Synthesis", affix = "", "(10-11)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 15, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRechargeRate3_"] = { type = "Synthesis", affix = "", "(12-15)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 24, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRechargeRateJewel1_"] = { type = "Synthesis", affix = "", "(3-5)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShield1"] = { type = "Synthesis", affix = "", "(4-5)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShield2"] = { type = "Synthesis", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1566 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShield3__"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1566 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShieldTwoHand1"] = { type = "Synthesis", affix = "", "(7-9)% increased maximum Energy Shield", statOrder = { 1566 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShieldTwoHand2"] = { type = "Synthesis", affix = "", "(10-13)% increased maximum Energy Shield", statOrder = { 1566 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitGlobalEnergyShieldTwoHand3___"] = { type = "Synthesis", affix = "", "(14-16)% increased maximum Energy Shield", statOrder = { 1566 }, level = 36, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 60, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldLeech1"] = { type = "Synthesis", affix = "", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1727 }, level = 55, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Spell Damage Leeched as Energy Shield", statOrder = { 1727 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitMaximumEnergyShieldLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1739 }, level = 56, group = "MaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Energy Shield per Enemy Hit with Attacks", statOrder = { 1752 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "attack" }, }, - ["SynthesisImplicitEnergyShieldDelay1"] = { type = "Synthesis", affix = "", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 36, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitEnergyShieldDelay2"] = { type = "Synthesis", affix = "", "(7-10)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 48, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitLifeAddedAsEnergyShield1_"] = { type = "Synthesis", affix = "", "Gain 3% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9164 }, level = 65, group = "LifeAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitShieldAttackBlock1_"] = { type = "Synthesis", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2463 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitShieldAttackBlock2"] = { type = "Synthesis", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2463 }, level = 15, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitShieldSpellBlock1"] = { type = "Synthesis", affix = "", "(2-3)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitShieldSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 15, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitAttackBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Attack Damage", statOrder = { 1143 }, level = 48, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitAttackBlock2"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 56, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitSpellBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Spell Damage", statOrder = { 1165 }, level = 48, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 56, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitLifeOnBlock1_"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Life when you Block", statOrder = { 3065 }, level = 60, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, - ["SynthesisImplicitManaOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8191 }, level = 60, group = "RecoverManaPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, - ["SynthesisImplicitEnergyShieldOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2472 }, level = 60, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, }, - ["SynthesisImplicitMaximumAttackBlock1"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 65, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitMaximumSpellBlock1_"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Spell Damage", statOrder = { 1994 }, level = 65, group = "MaximumSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["SynthesisImplicitFlatLifeOnBlock1"] = { type = "Synthesis", affix = "", "(15-25) Life gained when you Block", statOrder = { 1762 }, level = 15, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, - ["SynthesisImplicitFlatLifeOnBlock2"] = { type = "Synthesis", affix = "", "(26-35) Life gained when you Block", statOrder = { 1762 }, level = 24, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, - ["SynthesisImplicitFlatLifeOnBlockJewel1"] = { type = "Synthesis", affix = "", "(4-6) Life gained when you Block", statOrder = { 1762 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, - ["SynthesisImplicitFlatManaOnBlock1"] = { type = "Synthesis", affix = "", "(5-10) Mana gained when you Block", statOrder = { 1763 }, level = 15, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, - ["SynthesisImplicitFlatManaOnBlock2"] = { type = "Synthesis", affix = "", "(11-15) Mana gained when you Block", statOrder = { 1763 }, level = 24, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, - ["SynthesisImplicitFlatManaOnBlockJewel1"] = { type = "Synthesis", affix = "", "(3-5) Mana gained when you Block", statOrder = { 1763 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, - ["SynthesisImplicitAttackDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAttackDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitSpellDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitSpellDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAttackDodgeMinor1"] = { type = "Synthesis", affix = "", "+1% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAttackDodgeMinor2"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAvoidFire1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 60, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["SynthesisImplicitAvoidCold1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 60, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, - ["SynthesisImplicitAvoidLightning1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 60, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, - ["SynthesisImplicitMaximumAttackDodge1_"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1146 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitMaximumSpellDodge1"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1146 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitSpellDamageSuppressed1_"] = { type = "Synthesis", affix = "", "Prevent +(2-3)% of Suppressed Spell Damage", statOrder = { 1146 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitVitalityReservation1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10534 }, level = 48, group = "VitalityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitVitalityReservationEfficiency1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10535 }, level = 48, group = "VitalityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitDeterminationReservation1"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6177 }, level = 48, group = "DeterminationReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitDeterminationReservationEfficiency1_"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6178 }, level = 48, group = "DeterminationReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitGraceReservation1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6907 }, level = 48, group = "GraceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitGraceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6908 }, level = 48, group = "GraceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitDisciplineReservation1_"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 6193 }, level = 48, group = "DisciplineReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitDisciplineReservationEfficiency1___"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 6194 }, level = 48, group = "DisciplineReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfFireReservation1_"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9767 }, level = 48, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfFireReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9768 }, level = 48, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfFireReservation2_"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9767 }, level = 65, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfFireReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9768 }, level = 65, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfIceReservation1_"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9770 }, level = 48, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfIceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9771 }, level = 48, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfIceReservation2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9770 }, level = 65, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfIceReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9771 }, level = 65, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfLightningReservation1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9773 }, level = 48, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfLightningReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9774 }, level = 48, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfLightningReservation2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9773 }, level = 65, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitPurityOfLightningReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9774 }, level = 65, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, - ["SynthesisImplicitSocketedGemReducedReservation1_"] = { type = "Synthesis", affix = "", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 533 }, level = 60, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, - ["SynthesisImplicitSelfAuraEffect1_"] = { type = "Synthesis", affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 56, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, - ["SynthesisImplicitDeterminationEffect1"] = { type = "Synthesis", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3372 }, level = 55, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, - ["SynthesisImplicitGraceEffect1"] = { type = "Synthesis", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3368 }, level = 55, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, - ["SynthesisImplicitDisciplineEffect1"] = { type = "Synthesis", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3373 }, level = 55, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, - ["SynthesisImplicitDeterminationPhysicalDamageReduction1"] = { type = "Synthesis", affix = "", "(4-6)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4584 }, level = 65, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitGraceAdditionalChanceToEvade1"] = { type = "Synthesis", affix = "", "+(4-6)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5680 }, level = 65, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitDisciplineEnergyShieldRegen1___"] = { type = "Synthesis", affix = "", "Regenerate (1.2-2.2)% of Energy Shield per Second while affected by Discipline", statOrder = { 6464 }, level = 65, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitReducedManaReservation1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 60, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitManaReservationEfficiency1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 60, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SynthesisImplicitSocketedSkillsManaMultiplier1"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 96% Cost & Reservation Multiplier", statOrder = { 535 }, level = 24, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, - ["SynthesisImplicitSocketedSkillsManaMultiplier2"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 94% Cost & Reservation Multiplier", statOrder = { 535 }, level = 36, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, - ["SynthesisImplicitSocketedSkillsManaMultiplier3"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 92% Cost & Reservation Multiplier", statOrder = { 535 }, level = 48, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, - ["SynthesisImplicitGrantsPurityOfFire1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 628 }, level = 75, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsPurityOfIce1__"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 634 }, level = 75, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsPurityOfLightning1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 636 }, level = 75, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsAnger1"] = { type = "Synthesis", affix = "", "Grants Level 10 Anger Skill", statOrder = { 655 }, level = 45, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsAnger2"] = { type = "Synthesis", affix = "", "Grants Level 15 Anger Skill", statOrder = { 655 }, level = 62, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsHatred1"] = { type = "Synthesis", affix = "", "Grants Level 10 Hatred Skill", statOrder = { 654 }, level = 45, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsHatred2"] = { type = "Synthesis", affix = "", "Grants Level 15 Hatred Skill", statOrder = { 654 }, level = 62, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsWrath1"] = { type = "Synthesis", affix = "", "Grants Level 10 Wrath Skill", statOrder = { 653 }, level = 45, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitGrantsWrath2_"] = { type = "Synthesis", affix = "", "Grants Level 15 Wrath Skill", statOrder = { 653 }, level = 62, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, - ["SynthesisImplicitHasSocket1_"] = { type = "Synthesis", affix = "", "Has 1 Socket", statOrder = { 74 }, level = 75, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitCurseDuration1"] = { type = "Synthesis", affix = "", "Curse Skills have (10-15)% increased Skill Effect Duration", statOrder = { 6005 }, level = 36, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseDuration2"] = { type = "Synthesis", affix = "", "Curse Skills have (16-20)% increased Skill Effect Duration", statOrder = { 6005 }, level = 48, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffect1"] = { type = "Synthesis", affix = "", "(6-10)% increased Effect of your Curses", statOrder = { 2601 }, level = 60, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitFlammability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2535 }, level = 45, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitFlammability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2535 }, level = 56, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitFrostbite1_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2536 }, level = 45, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitFrostbite2_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2536 }, level = 56, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitConductivity1"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2532 }, level = 45, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitConductivity2"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2532 }, level = 56, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitVulnerability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 45, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitVulnerability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 56, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitDespair1"] = { type = "Synthesis", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 45, group = "CurseOnHitDespair", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseOnHitElementalWeakness1__"] = { type = "Synthesis", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2530 }, level = 45, group = "CurseOnHitLevelElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectFlammability1"] = { type = "Synthesis", affix = "", "(20-30)% increased Flammability Curse Effect", statOrder = { 4018 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectFlammabilityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Flammability Curse Effect", statOrder = { 4018 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectFrostbite1"] = { type = "Synthesis", affix = "", "(20-30)% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectFrostbiteOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectConductivity1"] = { type = "Synthesis", affix = "", "(20-30)% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectConductivityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectVulnerability1_"] = { type = "Synthesis", affix = "", "(20-30)% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 55, group = "CurseEffectVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitCurseEffectElementalWeakness1"] = { type = "Synthesis", affix = "", "(20-30)% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 55, group = "CurseEffectElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitDamageAffectedByAuras1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (7-9)% increased Damage", statOrder = { 4074 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageAffectedByAuras2"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (10-12)% increased Damage", statOrder = { 4074 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageAffectedByAuras3_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-15)% increased Damage", statOrder = { 4074 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageAffectedByAurasTwoHand1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-16)% increased Damage", statOrder = { 4074 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageAffectedByAurasTwoHand2_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (17-21)% increased Damage", statOrder = { 4074 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageAffectedByAurasTwoHand3"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (22-25)% increased Damage", statOrder = { 4074 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeeching1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage while Leeching", statOrder = { 3068 }, level = 36, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeeching2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage while Leeching", statOrder = { 3068 }, level = 48, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingLife1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Life", statOrder = { 1222 }, level = 1, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingLife2__"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Life", statOrder = { 1222 }, level = 15, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingLife3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Life", statOrder = { 1222 }, level = 24, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingMana1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Mana", statOrder = { 1224 }, level = 1, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingMana2_"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Mana", statOrder = { 1224 }, level = 15, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageWhileLeechingMana3_"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Mana", statOrder = { 1224 }, level = 24, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageDuringFlaskEffect1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage during any Flask Effect", statOrder = { 4087 }, level = 36, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, }, - ["SynthesisImplicitDamageDuringFlaskEffect2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage during any Flask Effect", statOrder = { 4087 }, level = 48, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, }, - ["SynthesisImplicitDamageWithTriggeredSpells1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (10-12)% increased Spell Damage", statOrder = { 10430 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageWithTriggeredSpells2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (13-15)% increased Spell Damage", statOrder = { 10430 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitVaalSkillDamage1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 24, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamage2"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamage3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamageWeapon1"] = { type = "Synthesis", affix = "", "(25-30)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamageWeapon2"] = { type = "Synthesis", affix = "", "(31-35)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamageWeaponTwoHand1"] = { type = "Synthesis", affix = "", "(36-44)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitVaalSkillDamageWeaponTwoHand2"] = { type = "Synthesis", affix = "", "(45-51)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeapon1_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (19-22)% increased Spell Damage", statOrder = { 10430 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeapon2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (23-26)% increased Spell Damage", statOrder = { 10430 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (27-32)% increased Spell Damage", statOrder = { 10430 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand2_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (33-38)% increased Spell Damage", statOrder = { 10430 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitDoubleDamageChanceOneHand1"] = { type = "Synthesis", affix = "", "2% chance to deal Double Damage", statOrder = { 5664 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDoubleDamageChanceOneHand2"] = { type = "Synthesis", affix = "", "3% chance to deal Double Damage", statOrder = { 5664 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDoubleDamageChanceTwoHand1"] = { type = "Synthesis", affix = "", "4% chance to deal Double Damage", statOrder = { 5664 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDoubleDamageChanceTwoHand2_"] = { type = "Synthesis", affix = "", "5% chance to deal Double Damage", statOrder = { 5664 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAreaDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Area Damage", statOrder = { 2040 }, level = 36, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitAreaDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Area Damage", statOrder = { 2040 }, level = 48, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitProjectileDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Projectile Damage", statOrder = { 2001 }, level = 36, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitProjectileDamage2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Projectile Damage", statOrder = { 2001 }, level = 48, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitMeleeDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Melee Damage", statOrder = { 1239 }, level = 36, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitMeleeDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Melee Damage", statOrder = { 1239 }, level = 48, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitMinionDamage1"] = { type = "Synthesis", affix = "", "Minions deal 8% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamage2_"] = { type = "Synthesis", affix = "", "Minions deal (9-10)% increased Damage", statOrder = { 1978 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (11-12)% increased Damage", statOrder = { 1978 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamage4"] = { type = "Synthesis", affix = "", "Minions deal (13-14)% increased Damage", statOrder = { 1978 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamage5"] = { type = "Synthesis", affix = "", "Minions deal (15-16)% increased Damage", statOrder = { 1978 }, level = 48, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamage1_"] = { type = "Synthesis", affix = "", "Minions deal (19-22)% increased Damage", statOrder = { 1978 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamage2"] = { type = "Synthesis", affix = "", "Minions deal (23-26)% increased Damage", statOrder = { 1978 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (27-30)% increased Damage", statOrder = { 1978 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamageTwoHand1"] = { type = "Synthesis", affix = "", "Minions deal (27-32)% increased Damage", statOrder = { 1978 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamageTwoHand2"] = { type = "Synthesis", affix = "", "Minions deal (33-38)% increased Damage", statOrder = { 1978 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitWeaponMinionDamageTwoHand3"] = { type = "Synthesis", affix = "", "Minions deal (39-44)% increased Damage", statOrder = { 1978 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamageJewel1_"] = { type = "Synthesis", affix = "", "Minions deal (2-3)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitMinionDamageJewel2_"] = { type = "Synthesis", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitZombieDamage1"] = { type = "Synthesis", affix = "", "Raised Zombies deal (30-35)% increased Damage", statOrder = { 3648 }, level = 55, group = "ZombieIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitSkeletonDamage1_"] = { type = "Synthesis", affix = "", "Skeletons deal (30-35)% increased Damage", statOrder = { 3664 }, level = 55, group = "SkeletonDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitSpectreDamage1"] = { type = "Synthesis", affix = "", "Raised Spectres have (30-35)% increased Damage", statOrder = { 3462 }, level = 55, group = "SpectreDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, - ["SynthesisImplicitAnimateGuardianResistances1"] = { type = "Synthesis", affix = "", "+15% to Animated Guardian Elemental Resistances", statOrder = { 3994 }, level = 55, group = "AnimateGuardianResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, - ["SynthesisImplicitItemDropsOnDeathAnimateGuardian1_"] = { type = "Synthesis", affix = "", "Item drops on Death if Equipped by an Animated Guardian", statOrder = { 2564 }, level = 60, group = "ItemDropsOnGuardianDeath", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitMinionLife1_"] = { type = "Synthesis", affix = "", "Minions have (7-9)% increased maximum Life", statOrder = { 1771 }, level = 15, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLife2__"] = { type = "Synthesis", affix = "", "Minions have (10-12)% increased maximum Life", statOrder = { 1771 }, level = 24, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLife3"] = { type = "Synthesis", affix = "", "Minions have (13-15)% increased maximum Life", statOrder = { 1771 }, level = 36, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLifeRegen1"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.3% of Life per second", statOrder = { 2916 }, level = 36, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLifeRegen2"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.5% of Life per second", statOrder = { 2916 }, level = 48, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLifeJewel1"] = { type = "Synthesis", affix = "", "Minions have (2-3)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionLifeJewel2"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, - ["SynthesisImplicitMinionResistanceJewel1"] = { type = "Synthesis", affix = "", "Minions have +3% to all Elemental Resistances", statOrder = { 2917 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, - ["SynthesisImplicitMinionResistanceJewel2"] = { type = "Synthesis", affix = "", "Minions have +(4-5)% to all Elemental Resistances", statOrder = { 2917 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, - ["SynthesisImplicitMinionMovementSpeed1"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased Movement Speed", statOrder = { 1774 }, level = 24, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, - ["SynthesisImplicitMinionMovementSpeed2"] = { type = "Synthesis", affix = "", "Minions have (6-7)% increased Movement Speed", statOrder = { 1774 }, level = 36, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, - ["SynthesisImplicitMinionMovementSpeed3"] = { type = "Synthesis", affix = "", "Minions have (8-10)% increased Movement Speed", statOrder = { 1774 }, level = 48, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, - ["SynthesisImplicitMinionMovementSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, - ["SynthesisImplicitMinionMovementSpeedJewel2_"] = { type = "Synthesis", affix = "", "Minions have 3% increased Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, - ["SynthesisImplicitMinionAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Attack Speed", statOrder = { 2912 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, }, - ["SynthesisImplicitMinionAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Attack Speed", statOrder = { 2912 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, }, - ["SynthesisImplicitMinionCastSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Cast Speed", statOrder = { 2913 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, }, - ["SynthesisImplicitMinionCastSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Cast Speed", statOrder = { 2913 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, }, - ["SynthesisImplicitMinionAccuracyJewel1"] = { type = "Synthesis", affix = "", "2% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, - ["SynthesisImplicitMinionAccuracyJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, - ["SynthesisImplicitEnduranceChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Endurance Charge Duration", statOrder = { 2130 }, level = 45, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitEnduranceChargeDuration2__"] = { type = "Synthesis", affix = "", "(12-15)% increased Endurance Charge Duration", statOrder = { 2130 }, level = 50, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitEnduranceChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 55, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitEnduranceChargeGeneration1"] = { type = "Synthesis", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6751 }, level = 60, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitMinimumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Endurance Charges", statOrder = { 1808 }, level = 55, group = "MinimumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitMaximumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["SynthesisImplicitDamagePerEnduranceChargeMinor1"] = { type = "Synthesis", affix = "", "2% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 40, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerEnduranceCharge1"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerEnduranceCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitLifeRegenPerEnduranceCharge1____"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 50, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitFrenzyChargeDuration1_"] = { type = "Synthesis", affix = "", "(8-11)% increased Frenzy Charge Duration", statOrder = { 2132 }, level = 45, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitFrenzyChargeDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Frenzy Charge Duration", statOrder = { 2132 }, level = 50, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitFrenzyChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 55, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitFrenzyChargeGeneration1"] = { type = "Synthesis", affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1838 }, level = 60, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitMinimumFrenzyCharge1_"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Frenzy Charges", statOrder = { 1813 }, level = 55, group = "MinimumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitMaximumFrenzyCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["SynthesisImplicitDamagePerFrenzyChargeMinor1_"] = { type = "Synthesis", affix = "", "2% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 40, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerFrenzyCharge2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitEvasionPerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "6% increased Evasion Rating per Frenzy Charge", statOrder = { 1561 }, level = 50, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["SynthesisImplicitPowerChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Power Charge Duration", statOrder = { 2147 }, level = 45, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["SynthesisImplicitPowerChargeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Power Charge Duration", statOrder = { 2147 }, level = 50, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["SynthesisImplicitPowerChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 55, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["SynthesisImplicitPowerChargeGeneration1_"] = { type = "Synthesis", affix = "", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1835 }, level = 60, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, }, - ["SynthesisImplicitMinimumPowerCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Power Charges", statOrder = { 1818 }, level = 55, group = "MinimumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["SynthesisImplicitMaximumPowerCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["SynthesisImplicitDamagePerPowerChargeMinor1___"] = { type = "Synthesis", affix = "", "2% increased Damage per Power Charge", statOrder = { 6071 }, level = 40, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerPowerCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Power Charge", statOrder = { 6071 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamagePerPowerCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Power Charge", statOrder = { 6071 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitSpellDamagePerPowerCharge1"] = { type = "Synthesis", affix = "", "6% increased Spell Damage per Power Charge", statOrder = { 2145 }, level = 50, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitMovementVelocity1"] = { type = "Synthesis", affix = "", "4% increased Movement Speed", statOrder = { 1803 }, level = 24, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMovementVelocity2"] = { type = "Synthesis", affix = "", "(5-6)% increased Movement Speed", statOrder = { 1803 }, level = 36, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMovementVelocity3___"] = { type = "Synthesis", affix = "", "(7-8)% increased Movement Speed", statOrder = { 1803 }, level = 48, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTrinketMovementVelocity1"] = { type = "Synthesis", affix = "", "(4-5)% increased Movement Speed", statOrder = { 1803 }, level = 45, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMovementVelocityJewel1___"] = { type = "Synthesis", affix = "", "1% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMovementVelocityJewel2"] = { type = "Synthesis", affix = "", "2% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitOnslaught1"] = { type = "Synthesis", affix = "", "Onslaught", statOrder = { 3602 }, level = 60, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitProjectileSpeed1"] = { type = "Synthesis", affix = "", "(9-10)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeed2"] = { type = "Synthesis", affix = "", "(11-12)% increased Projectile Speed", statOrder = { 1801 }, level = 15, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeed3"] = { type = "Synthesis", affix = "", "(13-14)% increased Projectile Speed", statOrder = { 1801 }, level = 24, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeed4"] = { type = "Synthesis", affix = "", "(15-17)% increased Projectile Speed", statOrder = { 1801 }, level = 36, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeed5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Projectile Speed", statOrder = { 1801 }, level = 48, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitProjectileSpeedJewel2__"] = { type = "Synthesis", affix = "", "(3-5)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitAreaOfEffectJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAreaOfEffectJewel2"] = { type = "Synthesis", affix = "", "(3-5)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAttackSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAttackSpeed2_"] = { type = "Synthesis", affix = "", "4% increased Attack Speed", statOrder = { 1415 }, level = 15, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAttackSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack Speed", statOrder = { 1415 }, level = 24, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "2% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitLocalAttackSpeed1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Attack Speed", statOrder = { 1418 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitLocalAttackSpeed2"] = { type = "Synthesis", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1418 }, level = 15, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitLocalAttackSpeed3"] = { type = "Synthesis", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1418 }, level = 24, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitMaceIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Maces or Sceptres", statOrder = { 1429 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAxeIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Axes", statOrder = { 1425 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitSwordIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Swords", statOrder = { 1431 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitBowIncreasedAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Bows", statOrder = { 1430 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitClawIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Claws", statOrder = { 1427 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1428 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitWandIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Wands", statOrder = { 1432 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitStaffIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Staves", statOrder = { 1426 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitMaceIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Maces or Sceptres", statOrder = { 1429 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitAxeIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Axes", statOrder = { 1425 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitSwordIncreasedAttackSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Swords", statOrder = { 1431 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitBowIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Bows", statOrder = { 1430 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitClawIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Claws", statOrder = { 1427 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Daggers", statOrder = { 1428 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitWandIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Wands", statOrder = { 1432 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitStaffIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Staves", statOrder = { 1426 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["SynthesisImplicitCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Cast Speed", statOrder = { 1451 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Cast Speed", statOrder = { 1451 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedJewel2_"] = { type = "Synthesis", affix = "", "2% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitWeaponCastSpeed1_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(7-9)% increased Cast Speed", statOrder = { 1451 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(10-12)% increased Cast Speed", statOrder = { 1451 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitTwoHandWeaponCastSpeed1"] = { type = "Synthesis", affix = "", "(11-12)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitTwoHandWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(13-15)% increased Cast Speed", statOrder = { 1451 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitTwoHandWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(16-18)% increased Cast Speed", statOrder = { 1451 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithStaffJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while wielding a Staff", statOrder = { 1454 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while Dual Wielding", statOrder = { 1452 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithShieldJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while holding a Shield", statOrder = { 1453 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithStaffJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while wielding a Staff", statOrder = { 1454 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while Dual Wielding", statOrder = { 1452 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitCastSpeedWithShieldJewel2_"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while holding a Shield", statOrder = { 1453 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Attack and Cast Speed", statOrder = { 2051 }, level = 15, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack and Cast Speed", statOrder = { 2051 }, level = 24, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitTrapThrowingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 48, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTrapThrowingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 56, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTrapThrowingSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTrapThrowingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Trap Throwing Speed", statOrder = { 1932 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMineLayingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 48, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMineLayingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 56, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMineLayingSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMineLayingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Mine Throwing Speed", statOrder = { 1933 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTotemPlacementSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Totem Placement speed", statOrder = { 2583 }, level = 48, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTotemPlacementSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Totem Placement speed", statOrder = { 2583 }, level = 56, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTotemPlacementSpeedJewel1___"] = { type = "Synthesis", affix = "", "(1-2)% increased Totem Placement speed", statOrder = { 2583 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitTotemPlacementSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Totem Placement speed", statOrder = { 2583 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitBrandAttachmentRange1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Brand Attachment range", statOrder = { 10042 }, level = 48, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, - ["SynthesisImplicitBrandAttachmentRange2"] = { type = "Synthesis", affix = "", "(4-5)% increased Brand Attachment range", statOrder = { 10042 }, level = 56, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, - ["SynthesisImplicitTauntOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitTauntOnHitJewel2_"] = { type = "Synthesis", affix = "", "(3-4)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitBlindOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitBlindOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitHinderOnHitJewel1__"] = { type = "Synthesis", affix = "", "(1-2)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, - ["SynthesisImplicitHinderOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, - ["SynthesisImplicitRarity1"] = { type = "Synthesis", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarity2"] = { type = "Synthesis", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1601 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarity3"] = { type = "Synthesis", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1601 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarity4"] = { type = "Synthesis", affix = "", "(16-17)% increased Rarity of Items found", statOrder = { 1601 }, level = 36, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarity5"] = { type = "Synthesis", affix = "", "(18-20)% increased Rarity of Items found", statOrder = { 1601 }, level = 48, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarityRing1"] = { type = "Synthesis", affix = "", "(19-20)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarityRing2"] = { type = "Synthesis", affix = "", "(21-22)% increased Rarity of Items found", statOrder = { 1601 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarityRing3"] = { type = "Synthesis", affix = "", "(23-25)% increased Rarity of Items found", statOrder = { 1601 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarityJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitRarityJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitQuantity1"] = { type = "Synthesis", affix = "", "(1-3)% increased Quantity of Items found", statOrder = { 1597 }, level = 65, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, - ["SynthesisImplicitExperience1"] = { type = "Synthesis", affix = "", "2% increased Experience gain", statOrder = { 1608 }, level = 75, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitExplosion1_"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6377 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitExplosion2"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 6377 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitExplosionChance1_"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3309 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitExplosionChance2__"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3309 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitLocalWeaponRange1_"] = { type = "Synthesis", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2750 }, level = 36, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitLocalWeaponRange2"] = { type = "Synthesis", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 48, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitWeaponRange1"] = { type = "Synthesis", affix = "", "+0.1 metres to Melee Strike Range", statOrder = { 2539 }, level = 56, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitOnslaughtOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 55, group = "ChanceToGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitPhasingOnKill1__"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 55, group = "ChancetoGainPhasingOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitUnholyMightOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 55, group = "UnholyMightOnKillPercentChance", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitIntimidateOnHit1"] = { type = "Synthesis", affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4925 }, level = 65, group = "IntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitOnslaughtOnHit1"] = { type = "Synthesis", affix = "", "You gain Onslaught for 4 seconds on Hit", statOrder = { 6791 }, level = 65, group = "OnslaughtOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitArcaneSurgeOnHit1"] = { type = "Synthesis", affix = "", "Gain Arcane Surge on Hit with Spells", statOrder = { 6733 }, level = 65, group = "ArcaneSurgeOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAreaOfEffect1"] = { type = "Synthesis", affix = "", "(5-6)% increased Area of Effect", statOrder = { 1885 }, level = 36, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAreaOfEffect2"] = { type = "Synthesis", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1885 }, level = 48, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAreaOfEffect3_"] = { type = "Synthesis", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1885 }, level = 56, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitUnaffectedByBurningGround1"] = { type = "Synthesis", affix = "", "Unaffected by Burning Ground", statOrder = { 10455 }, level = 65, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["SynthesisImplicitUnaffectedByChilledGround1"] = { type = "Synthesis", affix = "", "Unaffected by Chilled Ground", statOrder = { 10460 }, level = 65, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitUnaffectedByShockedGround1"] = { type = "Synthesis", affix = "", "Unaffected by Shocked Ground", statOrder = { 10480 }, level = 65, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitFlaskChargesGained1"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Charges gained", statOrder = { 2188 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitFlaskChargesGained2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Charges gained", statOrder = { 2188 }, level = 15, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitFlaskChargesGained3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Charges gained", statOrder = { 2188 }, level = 24, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitReducedFlaskChargesUsed1_"] = { type = "Synthesis", affix = "", "(10-11)% reduced Flask Charges used", statOrder = { 2189 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitReducedFlaskChargesUsed2"] = { type = "Synthesis", affix = "", "(12-13)% reduced Flask Charges used", statOrder = { 2189 }, level = 15, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitReducedFlaskChargesUsed3"] = { type = "Synthesis", affix = "", "(14-15)% reduced Flask Charges used", statOrder = { 2189 }, level = 24, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitFlaskDuration1_"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Effect Duration", statOrder = { 2192 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitFlaskDuration2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Effect Duration", statOrder = { 2192 }, level = 15, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitFlaskDuration3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Effect Duration", statOrder = { 2192 }, level = 24, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, - ["SynthesisImplicitRemoveIgniteOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Ignite and Burning when you use a Flask", statOrder = { 9906 }, level = 65, group = "RemoveIgniteOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, }, - ["SynthesisImplicitRemoveFreezeOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Chill and Freeze when you use a Flask", statOrder = { 9902 }, level = 65, group = "RemoveFreezeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, }, - ["SynthesisImplicitRemoveShockOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Shock when you use a Flask", statOrder = { 9916 }, level = 65, group = "RemoveShockOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, - ["SynthesisImplicitGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Gems", statOrder = { 209 }, level = 40, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Gems", statOrder = { 209 }, level = 50, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 65, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitSupportGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Support Gems", statOrder = { 210 }, level = 40, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitSupportGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Support Gems", statOrder = { 210 }, level = 50, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitSupportGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 194 }, level = 65, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitMinionGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Minion Gems", statOrder = { 223 }, level = 40, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitMinionGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Minion Gems", statOrder = { 223 }, level = 50, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitMinionGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, - ["SynthesisImplicitFireGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Fire Gems", statOrder = { 219 }, level = 40, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitFireGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Fire Gems", statOrder = { 219 }, level = 50, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitFireGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 65, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, - ["SynthesisImplicitColdGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Cold Gems", statOrder = { 216 }, level = 40, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitColdGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Cold Gems", statOrder = { 216 }, level = 50, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitColdGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 65, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, - ["SynthesisImplicitLightningGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Lightning Gems", statOrder = { 221 }, level = 40, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitLightningGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Lightning Gems", statOrder = { 221 }, level = 50, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitLightningGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 65, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, }, - ["SynthesisImplicitChaosGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Chaos Gems", statOrder = { 215 }, level = 40, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitChaosGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Chaos Gems", statOrder = { 215 }, level = 50, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitChaosGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 65, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, }, - ["SynthesisImplicitMeleeGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Melee Gems", statOrder = { 222 }, level = 40, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitMeleeGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Melee Gems", statOrder = { 222 }, level = 50, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitMeleeGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 184 }, level = 65, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, - ["SynthesisImplicitBowGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Bow Gems", statOrder = { 214 }, level = 40, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitBowGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Bow Gems", statOrder = { 214 }, level = 50, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitBowGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Bow Gems", statOrder = { 183 }, level = 65, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, - ["SynthesisImplicitAuraGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Aura Gems", statOrder = { 213 }, level = 40, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitAuraGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Aura Gems", statOrder = { 213 }, level = 50, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitAuraGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 65, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, }, - ["SynthesisImplicitStrengthGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Strength Gems", statOrder = { 225 }, level = 40, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitStrengthGemQuality2__"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Strength Gems", statOrder = { 225 }, level = 50, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitStrengthGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 163 }, level = 65, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitDexterityGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Dexterity Gems", statOrder = { 217 }, level = 40, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitDexterityGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Dexterity Gems", statOrder = { 217 }, level = 50, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitDexterityGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 165 }, level = 65, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitIntelligenceGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Intelligence Gems", statOrder = { 220 }, level = 40, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitIntelligenceGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Intelligence Gems", statOrder = { 220 }, level = 50, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitIntelligenceGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 166 }, level = 65, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, - ["SynthesisImplicitAoEGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed AoE Gems", statOrder = { 212 }, level = 40, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitAoEGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed AoE Gems", statOrder = { 212 }, level = 50, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitAoEGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 181 }, level = 65, group = "IncreasedSocketedAoEGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitProjectileGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Projectile Gems", statOrder = { 224 }, level = 40, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitProjectileGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Projectile Gems", statOrder = { 224 }, level = 50, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitProjectileGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 182 }, level = 65, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, - ["SynthesisImplicitReducedDamageTaken1_"] = { type = "Synthesis", affix = "", "1% reduced Damage taken", statOrder = { 2243 }, level = 48, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitReducedDamageTaken2"] = { type = "Synthesis", affix = "", "2% reduced Damage taken", statOrder = { 2243 }, level = 56, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitPhysicalAttackDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-11) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 24, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAttackDamageTaken2"] = { type = "Synthesis", affix = "", "-(20-16) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 36, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAttackDamageTaken3"] = { type = "Synthesis", affix = "", "-(25-21) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 48, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAttackDamageTaken4"] = { type = "Synthesis", affix = "", "-(40-35) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 56, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAttackDamageTakenJewel1_"] = { type = "Synthesis", affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitPhysicalAttackDamageTakenJewel2___"] = { type = "Synthesis", affix = "", "-(10-8) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, - ["SynthesisImplicitFortifyEffect1"] = { type = "Synthesis", affix = "", "+1 to maximum Fortification", statOrder = { 9121 }, level = 36, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitFortifyEffect2"] = { type = "Synthesis", affix = "", "+2 to maximum Fortification", statOrder = { 9121 }, level = 48, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitFortifyEffect3"] = { type = "Synthesis", affix = "", "+3 to maximum Fortification", statOrder = { 9121 }, level = 56, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitArmourEvasionWithFortify1"] = { type = "Synthesis", affix = "", "+250 to Armour and Evasion Rating while Fortified", statOrder = { 4764 }, level = 36, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, - ["SynthesisImplicitArmourEvasionWithFortify2"] = { type = "Synthesis", affix = "", "+500 to Armour and Evasion Rating while Fortified", statOrder = { 4764 }, level = 48, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, - ["SynthesisImplicitArmourEvasionWithFortify3"] = { type = "Synthesis", affix = "", "+800 to Armour and Evasion Rating while Fortified", statOrder = { 4764 }, level = 56, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, - ["SynthesisImplicitDegenDamageTaken1_"] = { type = "Synthesis", affix = "", "3% reduced Damage taken from Damage Over Time", statOrder = { 2250 }, level = 65, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitTotemElementalResistanceJewel1"] = { type = "Synthesis", affix = "", "Totems gain +3% to all Elemental Resistances", statOrder = { 2792 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitTotemElementalResistanceJewel2"] = { type = "Synthesis", affix = "", "Totems gain +(4-5)% to all Elemental Resistances", statOrder = { 2792 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitReflectDamageTaken1"] = { type = "Synthesis", affix = "", "You and your Minions take (5-8)% reduced Reflected Damage", statOrder = { 9881 }, level = 36, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitReflectDamageTaken2"] = { type = "Synthesis", affix = "", "You and your Minions take (9-12)% reduced Reflected Damage", statOrder = { 9881 }, level = 48, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitReflectDamageTaken3"] = { type = "Synthesis", affix = "", "You and your Minions take (13-15)% reduced Reflected Damage", statOrder = { 9881 }, level = 56, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CriticalStrikeChanceUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeChanceUber2"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeChanceUber3_"] = { type = "Suffix", affix = "of Shaping", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(8-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierUber2_"] = { type = "Suffix", affix = "of the Elder", "+(13-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierUber3"] = { type = "Suffix", affix = "of the Elder", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["AddedFireDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (17-20) to (38-42) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 68, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedFireDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (21-24) to (43-48) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 75, group = "AddedFireDamageSpellsAndAttacks", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedColdDamageToSpellsAndAttacksUber1__"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-20) to (38-42) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 68, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (21-24) to (43-48) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 75, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedLightningDamageToSpellsAndAttacksUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (9-12) to (48-52) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 68, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["AddedLightningDamageToSpellsAndAttacksUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (13-16) to (56-60) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 75, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["IncreasedExperienceGainUber1"] = { type = "Prefix", affix = "The Shaper's", "(2-3)% increased Experience gain", statOrder = { 1603 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_shaper", "default", }, weightVal = { 50, 0 }, modTags = { "influence_mod" }, }, + ["LifeGainPerTargetUber1"] = { type = "Prefix", affix = "The Elder's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, + ["LifeGainPerTargetUber2"] = { type = "Prefix", affix = "The Elder's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, + ["ManaGainPerTargetUberShaper1"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, }, + ["ManaGainPerTargetUberElder1"] = { type = "Prefix", affix = "The Elder's", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "attack" }, }, + ["LifeGainedOnSpellHitUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, + ["LifeGainedOnSpellHitUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, + ["ManaGainedOnSpellHitUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (2-3) Mana per Enemy Hit with Spells", statOrder = { 8179 }, level = 68, group = "ManaGainedOnSpellHit", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana", "caster" }, }, + ["IncreasedAccuracyPercentUber1_"] = { type = "Suffix", affix = "of the Elder", "(6-10)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, + ["IncreasedAccuracyPercentUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, + ["IncreasedAccuracyPercentUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 82, group = "IncreasedAccuracyPercent", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, + ["CurseOnHitAssassinsMarkUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 758 }, level = 75, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitAssassinsMarkUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 758 }, level = 80, group = "CurseOnHitCriticalWeakness", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitPoachersMarkUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 759 }, level = 75, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitPoachersMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 759 }, level = 80, group = "CurseOnHitPoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitWarlordsMarkUber1_"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 761 }, level = 75, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitWarlordsMarkUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlords's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 761 }, level = 80, group = "CurseOnHitWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitAssassinsMarkNewUber1"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 8 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 798 }, level = 75, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitAssassinsMarkNewUber2"] = { type = "Suffix", affix = "of Shaping", "Trigger Level 12 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 798 }, level = 80, group = "TriggerOnRareAssassinsMark", weightKey = { "ring_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitPoachersMarkNewUber1__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 803 }, level = 75, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitPoachersMarkNewUber2__"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 803 }, level = 80, group = "TriggerOnRarePoachersMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitWarlordsMarkNewUber1"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 8 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 806 }, level = 75, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitWarlordsMarkNewUber2"] = { type = "Suffix", affix = "of the Elder", "Trigger Level 12 Warlord's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 806 }, level = 80, group = "TriggerOnRareWarlordsMark", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["GrantsHeraldOfAshSkillUber1"] = { type = "Suffix", affix = "of the Elder", "Grants Level 22 Herald of Ash Skill", statOrder = { 705 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsHeraldOfIceSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Ice Skill", statOrder = { 706 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsHeraldOfThunderSkillUber1"] = { type = "Suffix", affix = "of Shaping", "Grants Level 22 Herald of Thunder Skill", statOrder = { 709 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["AdditionalChanceToEvadeUber1__"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 68, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["AdditionalChanceToEvadeUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "ring_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["ChanceToIgniteAddedDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6884 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteAddedDamageUber2__"] = { type = "Prefix", affix = "The Elder's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6884 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_elder", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["ChanceToFreezeAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6883 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6883 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, + ["ChanceToShockAddedDamageUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6886 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["ChanceToShockAddedDamageUber2"] = { type = "Prefix", affix = "The Shaper's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6886 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["PhysicalAttackDamageTakenUber1_"] = { type = "Suffix", affix = "of Shaping", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, }, + ["PhysicalAttackDamageTakenUber2"] = { type = "Suffix", affix = "of Shaping", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "physical", "attack" }, }, + ["IncreasedCooldownRecoveryUber1"] = { type = "Suffix", affix = "of Shaping", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["IncreasedCooldownRecoveryUber2_"] = { type = "Suffix", affix = "of Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["MaximumLifeIncreasePercentBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(4-7)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeIncreasePercentBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(8-10)% increased maximum Life", statOrder = { 1571 }, level = 75, group = "MaximumLifeIncreasePercent", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["GlobalEnergyShieldPercentBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(4-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(8-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["FlaskEffectUber1"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, + ["FlaskEffectUber2"] = { type = "Prefix", affix = "The Elder's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2742 }, level = 81, group = "FlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, + ["AllResistancesBeltUber1"] = { type = "Suffix", affix = "of the Elder", "+(13-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["AllResistancesBeltUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["ReducedCriticalStrikeDamageTakenUber1"] = { type = "Prefix", affix = "The Shaper's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["ReducedCriticalStrikeDamageTakenUber2"] = { type = "Prefix", affix = "The Shaper's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["LifeRecoveryRateUber1"] = { type = "Suffix", affix = "of the Elder", "(7-9)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRecoveryRateUber2_"] = { type = "Suffix", affix = "of the Elder", "(10-12)% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["EnergyShieldRecoveryRateUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["ManaRecoveryRateUber1_"] = { type = "Suffix", affix = "of Shaping", "(7-9)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRecoveryRateUber2"] = { type = "Suffix", affix = "of Shaping", "(10-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["FlaskChanceToNotConsumeChargesUber1_"] = { type = "Prefix", affix = "The Elder's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 82, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_elder", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, + ["ChaosResistanceWhileUsingFlaskUber1"] = { type = "Suffix", affix = "of the Elder", "+(20-25)% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 68, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, }, + ["ChaosResistanceWhileUsingFlaskUber2_"] = { type = "Suffix", affix = "of the Elder", "+(26-30)% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 75, group = "ChaosResistanceWhileUsingFlask", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "chaos", "resistance" }, }, + ["MovementSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "speed" }, }, + ["FortifyOnMeleeStunUber1"] = { type = "Prefix", affix = "The Elder's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5678 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["GrantsEnduringCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Enduring Cry Skill", statOrder = { 702 }, level = 68, group = "EnduringCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsRallyingCrySkillUber1"] = { type = "Prefix", affix = "The Elder's", "Grants Level 22 Rallying Cry Skill", statOrder = { 718 }, level = 68, group = "RallyingCrySkill", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GrantsAbyssalCrySkillUber1"] = { type = "Prefix", affix = "The Shaper's", "Grants Level 22 Intimidating Cry Skill", statOrder = { 685 }, level = 68, group = "AbyssalCrySkill", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod" }, }, + ["RemoveIgniteOnFlaskUseUber1"] = { type = "Suffix", affix = "of the Elder", "Remove Ignite and Burning when you use a Flask", statOrder = { 9907 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, }, + ["RemoveFreezeOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Chill and Freeze when you use a Flask", statOrder = { 9903 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, }, + ["RemoveShockOnFlaskUseUber1_"] = { type = "Suffix", affix = "of Shaping", "Remove Shock when you use a Flask", statOrder = { 9917 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AttackSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3300 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, }, + ["CastSpeedDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5466 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "caster", "speed" }, }, + ["MeleeDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["MeleeDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["MeleeDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber2_"] = { type = "Suffix", affix = "of the Elder", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageDuringFlaskEffectUber3"] = { type = "Suffix", affix = "of the Elder", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_elder", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["SpellDamageDuringFlaskEffectUber1"] = { type = "Suffix", affix = "of Shaping", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageDuringFlaskEffectUber2"] = { type = "Suffix", affix = "of Shaping", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageDuringFlaskEffectUber3_"] = { type = "Suffix", affix = "of Shaping", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["PhysicalDamageBeltUber1"] = { type = "Prefix", affix = "The Elder's", "(16-20)% increased Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["PhysicalDamageBeltUber2"] = { type = "Prefix", affix = "The Elder's", "(21-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["PhysicalDamageBeltUber3___"] = { type = "Prefix", affix = "The Elder's", "(26-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 80, group = "PhysicalDamagePercentPrefix", weightKey = { "belt_elder", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["ElementalDamageBeltUber1"] = { type = "Prefix", affix = "The Shaper's", "(11-15)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalDamageBeltUber2"] = { type = "Prefix", affix = "The Shaper's", "(16-20)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalDamageBeltUber3"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Elemental Damage", statOrder = { 1980 }, level = 80, group = "ElementalDamagePercent", weightKey = { "belt_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ArmourDoubleArmourEffectUber1"] = { type = "Prefix", affix = "The Elder's", "(11-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 75, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["ArmourDoubleArmourEffectUber2"] = { type = "Prefix", affix = "The Elder's", "(21-30)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 80, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "belt_elder", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["IncreasedEnergyShieldFromBodyArmourUber1_"] = { type = "Prefix", affix = "The Shaper's", "(21-25)% increased Energy Shield from Equipped Body Armour", statOrder = { 9133 }, level = 75, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldFromBodyArmourUber2"] = { type = "Prefix", affix = "The Shaper's", "(26-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9133 }, level = 80, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "belt_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["AdditionalArrowUber1__"] = { type = "Prefix", affix = "The Shaper's", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["PoisonOnHitQuiverUber1_"] = { type = "Suffix", affix = "of the Elder", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, }, + ["PoisonOnHitQuiverUber2"] = { type = "Suffix", affix = "of the Elder", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, }, + ["BleedOnHitQuiverUber1"] = { type = "Suffix", affix = "of the Elder", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["BleedOnHitQuiverUber2_"] = { type = "Suffix", affix = "of the Elder", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["MaimOnHitQuiverUber1"] = { type = "Suffix", affix = "of Shaping", "Attacks have 15% chance to Maim on Hit", statOrder = { 8154 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, + ["MaimOnHitQuiverUber2"] = { type = "Suffix", affix = "of Shaping", "Attacks have 20% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "attack" }, }, + ["ChancetoGainPhasingOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["ChancetoGainPhasingOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 75, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["ChancetoGainPhasingOnKillUber3_"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["AddedColdDamagePerFrenzyChargeUber1"] = { type = "Prefix", affix = "The Elder's", "8 to 12 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["PhysicalAddedAsColdQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["MovementVelocityQuiverUber1"] = { type = "Prefix", affix = "The Shaper's", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementVelocityQuiverUber2"] = { type = "Prefix", affix = "The Shaper's", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "speed" }, }, + ["FrenzyChargeOnHittingRareOrUniqueUber1"] = { type = "Suffix", affix = "of the Elder", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6760 }, level = 75, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "quiver_elder", "default", }, weightVal = { 400, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["MaximumFireResistanceUber1"] = { type = "Prefix", affix = "The Elder's", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceUber2"] = { type = "Prefix", affix = "The Elder's", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 80, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceUber3_"] = { type = "Prefix", affix = "The Elder's", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 86, group = "MaximumFireResist", weightKey = { "shield_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumColdResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 80, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 86, group = "MaximumColdResist", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumLightningResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceUber2"] = { type = "Prefix", affix = "The Shaper's", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 80, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceUber3"] = { type = "Prefix", affix = "The Shaper's", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 86, group = "MaximumLightningResistance", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumAllResistanceUber1"] = { type = "Prefix", affix = "The Shaper's", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 80, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, }, + ["MaximumAllResistanceUber2__"] = { type = "Prefix", affix = "The Shaper's", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 85, group = "MaximumResistances", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "resistance" }, }, + ["SupportedByCastOnDamageTakenUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 5 Cast when Damage Taken", statOrder = { 239 }, level = 68, group = "SupportedByCastOnDamageTaken", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["MaximumLifeIncreasePercentShieldUber1"] = { type = "Prefix", affix = "The Elder's", "(3-6)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeIncreasePercentShieldUber2"] = { type = "Prefix", affix = "The Elder's", "(7-10)% increased maximum Life", statOrder = { 1571 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["DisplaySocketedGemsGetReducedReservationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 528 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, + ["DisplaySocketedGemsGetReducedReservationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 528 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, + ["BlockAppliesToSpellsShieldUber1_"] = { type = "Suffix", affix = "of Shaping", "(9-12)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 68, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockAppliesToSpellsShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(12-15)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 75, group = "BlockingBlocksSpells", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockOnShieldUber1"] = { type = "Suffix", affix = "of Shaping", "(7-9)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockOnShieldUber2_"] = { type = "Suffix", affix = "of Shaping", "(10-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["GainArmourIfBlockedRecentlyUber1"] = { type = "Prefix", affix = "The Elder's", "+(500-650) Armour if you've Blocked Recently", statOrder = { 4499 }, level = 68, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["GainArmourIfBlockedRecentlyUber2"] = { type = "Prefix", affix = "The Elder's", "+(651-800) Armour if you've Blocked Recently", statOrder = { 4499 }, level = 75, group = "GainArmourIfBlockedRecently", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["AdditionalBlockWith5NearbyEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "+(2-3)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4546 }, level = 68, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["AdditionalBlockWith5NearbyEnemiesUber2"] = { type = "Suffix", affix = "of the Elder", "+(4-5)% Chance to Block Attack Damage if there are at least 5 nearby Enemies", statOrder = { 4546 }, level = 75, group = "AdditionalBlockWith5NearbyEnemies", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod" }, }, + ["GainRandomChargeOnBlockUber1__"] = { type = "Suffix", affix = "of Shaping", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6812 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge", "influence_mod" }, }, + ["ChanceToDodgeIfBlockedRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "shield_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["DamagePerBlockChanceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6059 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_elder", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod", "damage" }, }, + ["ChanceToChillAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, + ["ChanceToChillAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, + ["ChanceToShockAttackersOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ChanceToShockAttackersOnBlockUber2"] = { type = "Suffix", affix = "of Shaping", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["RecoverLifePercentOnBlockUber1_"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Life when you Block", statOrder = { 3060 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, }, + ["RecoverManaPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8186 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, }, + ["RecoverEnergyShieldPercentOnBlockUber1"] = { type = "Suffix", affix = "of Shaping", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2467 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, }, + ["MaximumTotemUber1"] = { type = "Prefix", affix = "The Shaper's", "+1 to maximum number of Summoned Totems", statOrder = { 2254 }, level = 70, group = "AdditionalTotems", weightKey = { "shield_shaper", "default", }, weightVal = { 800, 0 }, modTags = { "influence_mod" }, }, + ["SupportedByEnduranceChargeOnStunWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Endurance Charge on Melee Stun", statOrder = { 526 }, level = 68, group = "SupportedByEnduranceChargeOnStunWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByOnslaughtWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Momentum", statOrder = { 344 }, level = 68, group = "SupportedByOnslaughtWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "bow_elder", "default", }, weightVal = { 0, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByPowerChargeOnCritWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 10 Power Charge On Critical Strike", statOrder = { 356 }, level = 68, group = "SupportedByPowerChargeOnCritWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByFortifyWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Fortify", statOrder = { 496 }, level = 68, group = "SupportedByFortifyWeapon", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 400, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByArcaneSurgeWeaponUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 226 }, level = 68, group = "SupportedByArcaneSurgeWeapon", weightKey = { "grants_2h_support", "staff_shaper", "default", }, weightVal = { 0, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByInspirationWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 1 Inspiration", statOrder = { 494 }, level = 68, group = "SupportedByInspirationWeapon", weightKey = { "grants_2h_support", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Melee Physical Damage", "(101-115)% increased Physical Damage", statOrder = { 468, 1232 }, level = 68, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Melee Physical Damage", "(116-126)% increased Physical Damage", statOrder = { 468, 1232 }, level = 75, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentMeleePhysicalUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Melee Physical Damage", "(127-134)% increased Physical Damage", statOrder = { 468, 1232 }, level = 80, group = "LocalPhysicalDamagePercentMeleePhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Brutality", "(101-115)% increased Physical Damage", statOrder = { 237, 1232 }, level = 68, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Brutality", "(116-126)% increased Physical Damage", statOrder = { 237, 1232 }, level = 75, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentBrutalityUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Brutality", "(127-134)% increased Physical Damage", statOrder = { 237, 1232 }, level = 80, group = "LocalPhysicalDamagePercentBrutality", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Added Fire Damage", "(101-115)% increased Physical Damage", statOrder = { 462, 1232 }, level = 68, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Added Fire Damage", "(116-126)% increased Physical Damage", statOrder = { 462, 1232 }, level = 75, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentAddedFireUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Added Fire Damage", "(127-134)% increased Physical Damage", statOrder = { 462, 1232 }, level = 80, group = "LocalPhysicalDamagePercentAddedFireDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Ruthless", "(101-115)% increased Physical Damage", statOrder = { 370, 1232 }, level = 68, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber2__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Ruthless", "(116-126)% increased Physical Damage", statOrder = { 370, 1232 }, level = 75, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentRuthlessUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Ruthless", "(127-134)% increased Physical Damage", statOrder = { 370, 1232 }, level = 80, group = "LocalPhysicalDamagePercentRuthless", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 100, 100, 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Momentum", "(101-115)% increased Physical Damage", statOrder = { 344, 1232 }, level = 68, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Momentum", "(116-126)% increased Physical Damage", statOrder = { 344, 1232 }, level = 75, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentOnslaughtUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Momentum", "(127-134)% increased Physical Damage", statOrder = { 344, 1232 }, level = 80, group = "LocalPhysicalDamagePercentOnslaught", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "default", }, weightVal = { 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Endurance Charge on Melee Stun", "(101-115)% increased Physical Damage", statOrder = { 526, 1232 }, level = 68, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Endurance Charge on Melee Stun", "(116-126)% increased Physical Damage", statOrder = { 526, 1232 }, level = 75, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentEnduranceChargeOnStunUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", "(127-134)% increased Physical Damage", statOrder = { 526, 1232 }, level = 80, group = "LocalPhysicalDamagePercentEnduranceChargeOnStun", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fortify", "(101-115)% increased Physical Damage", statOrder = { 496, 1232 }, level = 68, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fortify", "(116-126)% increased Physical Damage", statOrder = { 496, 1232 }, level = 75, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFortifyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fortify", "(127-134)% increased Physical Damage", statOrder = { 496, 1232 }, level = 80, group = "LocalPhysicalDamagePercentFortify", weightKey = { "grants_2h_support", "2h_sword_elder", "2h_axe_elder", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(101-115)% increased Physical Damage", statOrder = { 356, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(116-126)% increased Physical Damage", statOrder = { 356, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentPowerChargeOnCritUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(127-134)% increased Physical Damage", statOrder = { 356, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentPowerChargeOnCrit", weightKey = { "grants_2h_support", "staff_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Iron Grip", "(101-115)% increased Physical Damage", statOrder = { 319, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Iron Grip", "(116-126)% increased Physical Damage", statOrder = { 319, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentIronGripUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Iron Grip", "(127-134)% increased Physical Damage", statOrder = { 319, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentIronGrip", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 16 Faster Projectiles", "(101-115)% increased Physical Damage", statOrder = { 482, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 18 Faster Projectiles", "(116-126)% increased Physical Damage", statOrder = { 482, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentFasterProjectilesUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are supported by Level 20 Faster Projectiles", "(127-134)% increased Physical Damage", statOrder = { 482, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentFasterProjectiles", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Vicious Projectiles", "(101-115)% increased Physical Damage", statOrder = { 351, 1232 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Vicious Projectiles", "(116-126)% increased Physical Damage", statOrder = { 351, 1232 }, level = 75, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["LocalIncreasedPhysicalDamagePercentProjectileAttackDamageUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Vicious Projectiles", "(127-134)% increased Physical Damage", statOrder = { 351, 1232 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentProjectileAttackDamage", weightKey = { "grants_2h_support", "bow_elder", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "physical_damage", "influence_mod", "damage", "physical", "attack", "gem" }, }, + ["SupportedByMeleeSplashDamageUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 16 Melee Splash", "(23-27)% increased Area Damage", statOrder = { 471, 2035 }, level = 68, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByMeleeSplashDamageUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 18 Melee Splash", "(28-32)% increased Area Damage", statOrder = { 471, 2035 }, level = 75, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByMeleeSplashDamageUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are supported by Level 20 Melee Splash", "(33-37)% increased Area Damage", statOrder = { 471, 2035 }, level = 80, group = "SupportedByMeleeSplashDamage", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedBySpiritStrikeAreaUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Ancestral Call", "(5-8)% increased Area of Effect", statOrder = { 382, 1880 }, level = 68, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedBySpiritStrikeAreaUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Ancestral Call", "(9-12)% increased Area of Effect", statOrder = { 382, 1880 }, level = 75, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedBySpiritStrikeAreaUber3"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Ancestral Call", "(13-15)% increased Area of Effect", statOrder = { 382, 1880 }, level = 80, group = "SupportedBySpiritStrikeArea", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "gem" }, }, + ["LocalIncreasedAttackSpeedMultistrikeUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Multistrike", "(17-19)% increased Attack Speed", statOrder = { 481, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedMultistrikeUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Multistrike", "(20-21)% increased Attack Speed", statOrder = { 481, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedMultistrike", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(17-19)% increased Attack Speed", statOrder = { 469, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedFasterAttacksUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(20-21)% increased Attack Speed", statOrder = { 469, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedRangedOnslaughtUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Momentum", "(8-10)% increased Attack Speed", statOrder = { 344, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedRangedOnslaughtUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Momentum", "(11-12)% increased Attack Speed", statOrder = { 344, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedOnslaught", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedRangedFasterAttacksUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Attacks", "(8-10)% increased Attack Speed", statOrder = { 469, 1413 }, level = 68, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedRangedFasterAttacksUber2_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Attacks", "(11-12)% increased Attack Speed", statOrder = { 469, 1413 }, level = 75, group = "LocalIncreasedAttackSpeedFasterAttacks", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(17-19)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedTwoHandedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(20-21)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(17-19)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(20-21)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedDoubleDamageUber1"] = { type = "Suffix", affix = "of Shaping", "(8-10)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 68, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedDoubleDamageUber2"] = { type = "Suffix", affix = "of Shaping", "(11-12)% increased Attack Speed", "(4-6)% chance to deal Double Damage", statOrder = { 1413, 5659 }, level = 75, group = "AttackSpeedDoubleDamage", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "(8-10)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 68, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedKilledRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(11-12)% increased Attack Speed", "20% increased Attack Speed if you've Killed Recently", statOrder = { 1413, 4894 }, level = 75, group = "AttackSpeedKilledRecently", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "speed" }, }, + ["CriticalStrikeChanceSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(22-25)% increased Critical Strike Chance", statOrder = { 313, 1464 }, level = 68, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, }, + ["CriticalStrikeChanceSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(26-29)% increased Critical Strike Chance", statOrder = { 313, 1464 }, level = 75, group = "CriticalStrikeChanceSupported", weightKey = { "grants_crit_chance_support", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "attack", "critical", "gem" }, }, + ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "(22-25)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1464, 5925 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, }, + ["CriticalStrikeChanceTwoHandedCritChanceRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(26-29)% increased Critical Strike Chance", "50% increased Critical Strike Chance if you have Killed Recently", statOrder = { 1464, 5925 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritChanceRecently", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack", "critical" }, }, + ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber1_"] = { type = "Suffix", affix = "of the Elder", "(22-25)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1464, 5960 }, level = 68, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, }, + ["CriticalStrikeChanceTwoHandedCritMultiRecentlyUber2"] = { type = "Suffix", affix = "of the Elder", "(26-29)% increased Critical Strike Chance", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 1464, 5960 }, level = 75, group = "CriticalStrikeChanceTwoHandedCritMultiRecently", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "damage", "attack", "critical" }, }, + ["CriticalMultiplierSupportedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 18 Increased Critical Damage", "+(22-25)% to Global Critical Strike Multiplier", statOrder = { 485, 1488 }, level = 68, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["CriticalMultiplierSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are supported by Level 20 Increased Critical Damage", "+(26-29)% to Global Critical Strike Multiplier", statOrder = { 485, 1488 }, level = 75, group = "CriticalStrikeMultiplierSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["CriticalMultiplierSupportedTwoHandedUber1"] = { type = "Suffix", affix = "of Shaping", "+(22-25)% to Global Critical Strike Multiplier", "(5-8)% chance to gain a Power Charge on Critical Strike", statOrder = { 1488, 1830 }, level = 68, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, }, + ["CriticalMultiplierSupportedTwoHandedUber2"] = { type = "Suffix", affix = "of Shaping", "+(26-29)% to Global Critical Strike Multiplier", "(9-10)% chance to gain a Power Charge on Critical Strike", statOrder = { 1488, 1830 }, level = 75, group = "CriticalMultiplierSupportedTwoHanded", weightKey = { "bow_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod", "damage", "attack", "critical" }, }, + ["WeaponElementalDamageSupportedUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Elemental Damage with Attacks", "(28-32)% increased Elemental Damage with Attack Skills", statOrder = { 487, 6321 }, level = 68, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, }, + ["WeaponElementalDamageSupportedUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", "(33-37)% increased Elemental Damage with Attack Skills", statOrder = { 487, 6321 }, level = 75, group = "IncreasedWeaponElementalDamagePercentSupported", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "attack", "gem" }, }, + ["ChanceToMaimUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Maim", "15% chance to Maim on Hit", statOrder = { 331, 7988 }, level = 68, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["ChanceToMaimUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Maim", "20% chance to Maim on Hit", statOrder = { 331, 7988 }, level = 75, group = "ChanceToMaimSupported", weightKey = { "grants_2h_support", "2h_mace_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 0, 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", "grants_2h_support", }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["ChanceToPoisonUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance to Poison", "15% chance to Poison on Hit", statOrder = { 523, 8002 }, level = 68, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, }, + ["ChanceToPoisonUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance to Poison", "20% chance to Poison on Hit", statOrder = { 523, 8002 }, level = 75, group = "ChanceToPoisonSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "poison", "influence_mod", "chaos", "attack", "ailment", "gem" }, }, + ["ChanceToBleedUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Chance To Bleed", "10% chance to cause Bleeding on Hit", statOrder = { 244, 2483 }, level = 68, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, }, + ["ChanceToBleedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Chance To Bleed", "15% chance to cause Bleeding on Hit", statOrder = { 244, 2483 }, level = 75, group = "ChanceToBleedSupported", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "support", "bleed", "influence_mod", "physical", "attack", "ailment", "gem" }, }, + ["PhysicalAddedAsFireUber1_"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 80, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsColdUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 80, group = "PhysicalAddedAsCold", weightKey = { "bow_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsLightningUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningUber3"] = { type = "Prefix", affix = "The Shaper's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 80, group = "PhysicalAddedAsLightning", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["OnslaugtOnKillUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["OnslaugtOnKillUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 75, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["OnslaugtOnKillUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 83, group = "OnslaugtOnKillPercentChance", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "sword_shaper", "quiver_shaper", "axe_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillUber2_"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 75, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 84, group = "UnholyMightOnKillPercentChance", weightKey = { "claw_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["BlindOnHitUber1"] = { type = "Suffix", affix = "of the Elder", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitUber2"] = { type = "Suffix", affix = "of the Elder", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitUber3"] = { type = "Suffix", affix = "of the Elder", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "bow_elder", "2h_axe_elder", "2h_sword_elder", "sword_elder", "axe_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitShaperUber1"] = { type = "Suffix", affix = "of Shaping", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitShaperUber2"] = { type = "Suffix", affix = "of Shaping", "(7-8)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 75, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitShaperUber3"] = { type = "Suffix", affix = "of Shaping", "(9-10)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 81, group = "AttacksBlindOnHitChance", weightKey = { "quiver_shaper", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlockWhileDualWieldingUber1"] = { type = "Suffix", affix = "of Shaping", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockWhileDualWieldingUber2"] = { type = "Suffix", affix = "of Shaping", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 75, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockWhileDualWieldingUber3_"] = { type = "Suffix", affix = "of Shaping", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 80, group = "BlockWhileDualWielding", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, + ["PhysicalDamageWhileDualWieldingUber1"] = { type = "Suffix", affix = "of the Elder", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["PhysicalDamageWhileDualWieldingUber2"] = { type = "Suffix", affix = "of the Elder", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 75, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["PhysicalDamageWhileDualWieldingUber3"] = { type = "Suffix", affix = "of the Elder", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 80, group = "DualWieldingPhysicalDamage", weightKey = { "sword_elder", "axe_elder", "mace_elder", "claw_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["ElementalPenetrationWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2980 }, level = 75, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationWeaponUber3"] = { type = "Suffix", affix = "of Shaping", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2980 }, level = 83, group = "ElementalPenetration", weightKey = { "bow_shaper", "2h_axe_shaper", "2h_mace_shaper", "2h_sword_shaper", "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "wand_shaper", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2980 }, level = 75, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2980 }, level = 83, group = "ElementalPenetration", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationTwoWeaponNewUber1"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationTwoWeaponNewUber2"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2980 }, level = 75, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalPenetrationTwoWeaponNewUber3"] = { type = "Prefix", affix = "The Shaper's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2980 }, level = 83, group = "ElementalPenetration", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["WeaponSocketedAttacksDamageFinalUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Attack Damage", statOrder = { 546 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, }, + ["WeaponSocketedAttacksDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Attack Damage", statOrder = { 546 }, level = 83, group = "SocketedAttacksDamageFinal", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "influence_mod", "damage", "attack", "gem" }, }, + ["WeaponSocketedSpellsDamageFinalUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 40% more Spell Damage", statOrder = { 565 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["WeaponSocketedSpellsDamageFinalTwoHandUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Skills deal 20% more Spell Damage", statOrder = { 565 }, level = 83, group = "SocketedSpellsDamageFinal", weightKey = { "staff_shaper", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["ChanceForPoisonDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 83, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "attack", "ailment" }, }, + ["ChanceForBleedDamageFinalInflictedWithThisWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7870 }, level = 83, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["LocalBleedDamageOverTimeMultiplierUber1___"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7864 }, level = 68, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, + ["LocalBleedDamageOverTimeMultiplierUber2"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7864 }, level = 75, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, + ["LocalBleedDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7864 }, level = 83, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, + ["LocalPoisonDamageOverTimeMultiplierUber1__"] = { type = "Prefix", affix = "The Elder's", "+(37-42)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1264 }, level = 68, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, + ["LocalPoisonDamageOverTimeMultiplierUber2__"] = { type = "Prefix", affix = "The Elder's", "+(43-50)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1264 }, level = 75, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, + ["LocalPoisonDamageOverTimeMultiplierUber3"] = { type = "Prefix", affix = "The Elder's", "+(51-59)% to Damage over Time Multiplier for Poison inflicted with this Weapon", statOrder = { 1264 }, level = 83, group = "LocalPoisonDamageOverTimeMultiplier", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "poison", "influence_mod", "chaos", "attack", "ailment" }, }, + ["PhysicalDamageConvertedToChaosUber1"] = { type = "Suffix", affix = "of the Elder", "(10-15)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, + ["PhysicalDamageConvertedToChaosUber2"] = { type = "Suffix", affix = "of the Elder", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, + ["PhysicalDamageConvertedToChaosUber3"] = { type = "Suffix", affix = "of the Elder", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 85, group = "PhysicalDamageConvertedToChaos", weightKey = { "bow_elder", "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "sword_elder", "axe_elder", "mace_elder", "claw_elder", "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "influence_mod", "damage", "physical", "chaos" }, }, + ["AddedFireDamagePerStrengthUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_shaper", "axe_shaper", "mace_shaper", "sceptre_shaper", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamagePerStrengthTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["AddedColdDamagePerDexterityUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_shaper", "axe_shaper", "claw_shaper", "dagger_shaper", "rune_dagger_shaper", "bow_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamagePerDexterityTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamagePerIntelligenceUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_shaper", "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamagePerIntelligenceTwoHandedUber1"] = { type = "Prefix", affix = "The Shaper's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["SupportedByCastOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 18 Cast On Critical Strike", statOrder = { 472 }, level = 68, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByCastOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 472 }, level = 75, group = "SupportedByCastOnCritWeapon", weightKey = { "grants_2h_support", "bow_shaper", "2h_axe_shaper", "2h_sword_shaper", "default", }, weightVal = { 0, 350, 350, 350, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByCastOnMeleeKillUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast On Melee Kill", statOrder = { 240 }, level = 68, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByCastOnMeleeKillUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 240 }, level = 75, group = "SupportedByCastOnMeleeKillWeapon", weightKey = { "grants_2h_support", "2h_mace_shaper", "2h_axe_shaper", "2h_sword_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 250, 250, 250, 250, 250, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByCastWhileChannellingUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cast While Channelling", statOrder = { 242 }, level = 68, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByCastWhileChannellingUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 242 }, level = 75, group = "SupportedByCastWhileChannellingWeapon", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["CullingStrikeUber1"] = { type = "Suffix", affix = "of the Elder", "Culling Strike", statOrder = { 2039 }, level = 68, group = "CullingStrike", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["MeleeWeaponRangeUber1"] = { type = "Suffix", affix = "of the Elder", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 75, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["MeleeWeaponRangeUber2"] = { type = "Suffix", affix = "of the Elder", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 85, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["AreaOfEffectTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of the Elder", "(11-15)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectTwoHandedWeaponUber3"] = { type = "Suffix", affix = "of the Elder", "(16-20)% increased Area of Effect", statOrder = { 1880 }, level = 82, group = "AreaOfEffect", weightKey = { "2h_sword_elder", "2h_axe_elder", "2h_mace_elder", "bow_elder", "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["MovementVelocityTwoHandedWeaponUber1"] = { type = "Suffix", affix = "of Shaping", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementVelocityTwoHandedWeaponUber2"] = { type = "Suffix", affix = "of Shaping", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 84, group = "MovementVelocity", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "2h_mace_shaper", "bow_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "influence_mod", "speed" }, }, + ["AdditionalArrowsUber1"] = { type = "Suffix", affix = "of the Elder", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_elder", "2h_axe_elder", "staff_elder", "warstaff_elder", "bow_elder", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["AdditionalPierceRangedUber1"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 68, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["AdditionalPierceRangedUber2"] = { type = "Suffix", affix = "of Shaping", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "bow_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["SpellDamageOnWeaponControlledDestructionUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Controlled Destruction", "(45-52)% increased Spell Damage", statOrder = { 525, 1223 }, level = 68, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponControlledDestructionUber2_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Controlled Destruction", "(53-56)% increased Spell Damage", statOrder = { 525, 1223 }, level = 75, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponControlledDestructionUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Controlled Destruction", "(57-60)% increased Spell Damage", statOrder = { 525, 1223 }, level = 80, group = "WeaponSpellDamageControlledDestruction", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponEfficacyUber1_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Efficacy", "(45-52)% increased Spell Damage", statOrder = { 265, 1223 }, level = 68, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponEfficacyUber2"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Efficacy", "(53-56)% increased Spell Damage", statOrder = { 265, 1223 }, level = 75, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponEfficacyUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Efficacy", "(57-60)% increased Spell Damage", statOrder = { 265, 1223 }, level = 80, group = "WeaponSpellDamageEfficacy", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponArcaneSurgeUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Arcane Surge", "(67-78)% increased Spell Damage", statOrder = { 226, 1223 }, level = 68, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponArcaneSurgeUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Arcane Surge", "(79-83)% increased Spell Damage", statOrder = { 226, 1223 }, level = 75, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponArcaneSurgeUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Arcane Surge", "(84-87)% increased Spell Damage", statOrder = { 226, 1223 }, level = 80, group = "WeaponSpellDamageArcaneSurge", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponReducedManaUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Inspiration", "(67-78)% increased Spell Damage", statOrder = { 494, 1223 }, level = 68, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponReducedManaUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Inspiration", "(79-83)% increased Spell Damage", statOrder = { 494, 1223 }, level = 75, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponReducedManaUber3__"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Inspiration", "(84-87)% increased Spell Damage", statOrder = { 494, 1223 }, level = 80, group = "WeaponSpellDamageReducedMana", weightKey = { "grants_2h_support", "attack_staff", "staff_elder", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Power Charge On Critical Strike", "(67-78)% increased Spell Damage", statOrder = { 356, 1223 }, level = 68, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Power Charge On Critical Strike", "(79-83)% increased Spell Damage", statOrder = { 356, 1223 }, level = 75, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["SpellDamageOnWeaponPowerChargeOnCritUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", "(84-87)% increased Spell Damage", statOrder = { 356, 1223 }, level = 80, group = "WeaponSpellDamagePowerChargeOnCrit", weightKey = { "grants_2h_support", "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "caster_damage", "influence_mod", "damage", "caster", "gem" }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber1_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Elemental Focus", "(45-52)% increased Elemental Damage", statOrder = { 267, 1980 }, level = 68, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Elemental Focus", "(53-56)% increased Elemental Damage", statOrder = { 267, 1980 }, level = 75, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, + ["ElementalDamagePrefixOnWeaponElementalFocusUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Elemental Focus", "(57-60)% increased Elemental Damage", statOrder = { 267, 1980 }, level = 80, group = "ElementalDamagePrefixElementalFocus", weightKey = { "sceptre_shaper", "default", }, weightVal = { 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "gem" }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber1"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 16 Fire Penetration", "(45-52)% increased Fire Damage", statOrder = { 277, 1357 }, level = 68, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber2_"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 18 Fire Penetration", "(53-56)% increased Fire Damage", statOrder = { 277, 1357 }, level = 75, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["FireDamagePrefixOnWeaponFirePenetrationUber3"] = { type = "Prefix", affix = "The Elder's", "Socketed Gems are Supported by Level 20 Fire Penetration", "(57-60)% increased Fire Damage", statOrder = { 277, 1357 }, level = 80, group = "FireDamagePrefixFirePenetration", weightKey = { "sceptre_elder", "wand_elder", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Cold Penetration", "(45-52)% increased Cold Damage", statOrder = { 513, 1366 }, level = 68, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Cold Penetration", "(53-56)% increased Cold Damage", statOrder = { 513, 1366 }, level = 75, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, + ["ColdDamagePrefixOnWeaponColdPenetrationUber3"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Cold Penetration", "(57-60)% increased Cold Damage", statOrder = { 513, 1366 }, level = 80, group = "ColdDamagePrefixColdPenetration", weightKey = { "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "cold", "gem" }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber1"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 16 Lightning Penetration", "(45-52)% increased Lightning Damage", statOrder = { 326, 1377 }, level = 68, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber2"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 18 Lightning Penetration", "(53-56)% increased Lightning Damage", statOrder = { 326, 1377 }, level = 75, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, + ["LightningDamagePrefixOnWeaponLightningPenetrationUber3_"] = { type = "Prefix", affix = "The Shaper's", "Socketed Gems are Supported by Level 20 Lightning Penetration", "(57-60)% increased Lightning Damage", statOrder = { 326, 1377 }, level = 80, group = "LightningDamagePrefixLightningPenetration", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "gem" }, }, + ["IncreasedCastSpeedSpellEchoUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Spell Echo", "(15-17)% increased Cast Speed", statOrder = { 341, 1446 }, level = 68, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedSpellEchoUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Spell Echo", "(18-20)% increased Cast Speed", statOrder = { 341, 1446 }, level = 75, group = "IncreasedCastSpeedSpellEcho", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedFasterCastingUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Faster Casting", "(15-17)% increased Cast Speed", statOrder = { 500, 1446 }, level = 68, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedFasterCastingUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Faster Casting", "(18-20)% increased Cast Speed", statOrder = { 500, 1446 }, level = 75, group = "IncreasedCastSpeedFasterCasting", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber1"] = { type = "Suffix", affix = "of the Elder", "(15-17)% increased Cast Speed", "(15-25)% chance to Ignore Stuns while Casting", statOrder = { 1446, 1898 }, level = 68, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandedAvoidInterruptionUber2"] = { type = "Suffix", affix = "of the Elder", "(18-20)% increased Cast Speed", "(26-35)% chance to Ignore Stuns while Casting", statOrder = { 1446, 1898 }, level = 75, group = "IncreasedCastSpeedTwoHandedAvoidInterruption", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandedKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(15-17)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1446, 5467 }, level = 68, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandedKilledRecentlyUber2"] = { type = "Suffix", affix = "of Shaping", "(18-20)% increased Cast Speed", "20% increased Cast Speed if you've Killed Recently", statOrder = { 1446, 5467 }, level = 75, group = "IncreasedCastSpeedTwoHandedKilledRecently", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["CriticalStrikeChanceSpellsSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Increased Critical Strikes", "(60-74)% increased Spell Critical Strike Chance", statOrder = { 313, 1458 }, level = 68, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, }, + ["CriticalStrikeChanceSpellsSupportedUber2__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", "(75-82)% increased Spell Critical Strike Chance", statOrder = { 313, 1458 }, level = 75, group = "CriticalStrikeChanceSpellsSupported", weightKey = { "grants_crit_chance_support", "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "caster", "critical", "gem" }, }, + ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "(60-74)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1458, 1830 }, level = 68, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, }, + ["CriticalStrikeChanceSpellsTwoHandedPowerChargeUber2"] = { type = "Suffix", affix = "of Shaping", "(75-82)% increased Spell Critical Strike Chance", "10% chance to gain a Power Charge on Critical Strike", statOrder = { 1458, 1830 }, level = 75, group = "CriticalStrikeChanceSpellsTwoHandedPowerCharge", weightKey = { "attack_staff", "staff_shaper", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "power_charge", "influence_mod", "caster", "critical" }, }, + ["ChanceToFreezeShockIgniteProliferationUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Elemental Proliferation", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 466, 2801 }, level = 68, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, + ["ChanceToFreezeShockIgniteProliferationUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Elemental Proliferation", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 466, 2801 }, level = 75, group = "ChanceToFreezeShockIgniteProliferation", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, + ["ChanceToFreezeShockIgniteUnboundAilmentsUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Unbound Ailments", "(5-7)% chance to Freeze, Shock and Ignite", statOrder = { 393, 2801 }, level = 68, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, + ["ChanceToFreezeShockIgniteUnboundAilmentsUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Unbound Ailments", "(8-10)% chance to Freeze, Shock and Ignite", statOrder = { 393, 2801 }, level = 75, group = "ChanceToFreezeShockIgniteUnboundAilments", weightKey = { "sceptre_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "cold", "lightning", "ailment", "gem" }, }, + ["PoisonDamageWeaponSupportedUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Chance to Poison", "(19-23)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 68, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDamageWeaponSupportedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Chance to Poison", "(24-26)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 75, group = "PoisonDamageWeaponSupported", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDurationWeaponSupportedUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Critical Strike Affliction", "(6-9)% increased Poison Duration", statOrder = { 355, 3170 }, level = 68, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["PoisonDurationWeaponSupportedUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", "(10-14)% increased Poison Duration", statOrder = { 355, 3170 }, level = 75, group = "PoisonDurationWeaponSupported", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber1_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Increased Area of Effect", "(23-27)% increased Area Damage", statOrder = { 224, 2035 }, level = 68, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Increased Area of Effect", "(28-32)% increased Area Damage", statOrder = { 224, 2035 }, level = 75, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedByIncreasedAreaOfEffectDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Increased Area of Effect", "(33-37)% increased Area Damage", statOrder = { 224, 2035 }, level = 80, group = "SupportedByIncreasedAreaOfEffectDamage", weightKey = { "sceptre_elder", "dagger_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedBySpellCascadeAreaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Spell Cascade", "(5-8)% increased Area of Effect", statOrder = { 379, 1880 }, level = 68, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedBySpellCascadeAreaUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Spell Cascade", "(9-12)% increased Area of Effect", statOrder = { 379, 1880 }, level = 75, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedBySpellCascadeAreaUber3_"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Spell Cascade", "(13-15)% increased Area of Effect", statOrder = { 379, 1880 }, level = 80, group = "SupportedBySpellCascadeArea", weightKey = { "sceptre_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SupportedByLesserMultipleProjectilesDamageUber1"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 16 Multiple Projectiles", "(15-20)% increased Projectile Damage", statOrder = { 505, 1996 }, level = 68, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedByLesserMultipleProjectilesDamageUber2"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 18 Multiple Projectiles", "(21-25)% increased Projectile Damage", statOrder = { 505, 1996 }, level = 75, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedByLesserMultipleProjectilesDamageUber3_"] = { type = "Suffix", affix = "of the Elder", "Socketed Gems are Supported by Level 20 Multiple Projectiles", "(26-30)% increased Projectile Damage", statOrder = { 505, 1996 }, level = 80, group = "SupportedByLesserMultipleProjectilesDamage", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["SupportedByVolleySpeedUber1__"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 16 Volley", "(15-18)% increased Projectile Speed", statOrder = { 350, 1796 }, level = 68, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["SupportedByVolleySpeedUber2"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 18 Volley", "(19-22)% increased Projectile Speed", statOrder = { 350, 1796 }, level = 75, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["SupportedByVolleySpeedUber3"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems are Supported by Level 20 Volley", "(23-25)% increased Projectile Speed", statOrder = { 350, 1796 }, level = 80, group = "SupportedByVolleySpeed", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["ElementalDamagePercentAddedAsChaosUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (5-6)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, + ["ElementalDamagePercentAddedAsChaosUber2"] = { type = "Prefix", affix = "The Shaper's", "Gain (7-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "sceptre_shaper", "dagger_shaper", "rune_dagger_shaper", "wand_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, + ["ElementalDamagePercentAddedAsChaosStaffUber1"] = { type = "Prefix", affix = "The Shaper's", "Gain (10-12)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 75, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, + ["ElementalDamagePercentAddedAsChaosStaffUber2__"] = { type = "Prefix", affix = "The Shaper's", "Gain (13-15)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 85, group = "ElementalDamagePercentAddedAsChaos", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "chaos_damage", "influence_mod", "damage", "elemental", "chaos" }, }, + ["DisplaySocketedSkillsChainUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Gems Chain 1 additional times", statOrder = { 540 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_shaper", "default", }, weightVal = { 200, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, + ["SpellAddedPhysicalDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageWeaponUber2_"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Physical Damage to Spells", statOrder = { 1403 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber1_"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Physical Damage to Spells", statOrder = { 1403 }, level = 84, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (22-31) to (46-53) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (28-37) to (55-64) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageWeaponUber3_"] = { type = "Prefix", affix = "The Elder's", "Adds (32-44) to (66-76) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "sceptre_elder", "wand_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber1"] = { type = "Prefix", affix = "The Elder's", "Adds (37-49) to (75-86) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber2"] = { type = "Prefix", affix = "The Elder's", "Adds (44-58) to (88-103) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageTwoHandWeaponUber3"] = { type = "Prefix", affix = "The Elder's", "Adds (60-73) to (108-122) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["SpellDamagePer16StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Strength", statOrder = { 10156 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamagePer16DexterityUber1__"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10154 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_elder", "default", }, weightVal = { 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamagePer16IntelligenceUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10155 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_elder", "rune_dagger_elder", "wand_elder", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamagePer10StrengthUber1"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Strength", statOrder = { 10153 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamagePer10IntelligenceUber1_"] = { type = "Prefix", affix = "The Elder's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2738 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "attack_staff", "staff_elder", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["MaximumEnduranceChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 84, group = "MaximumEnduranceCharges", weightKey = { "2h_mace_shaper", "2h_sword_shaper", "2h_axe_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["MaximumFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 84, group = "MaximumFrenzyCharges", weightKey = { "2h_sword_shaper", "2h_axe_shaper", "bow_shaper", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["MaximumPowerChargeUber1"] = { type = "Suffix", affix = "of Shaping", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 84, group = "IncreasedMaximumPowerCharges", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PowerChargeOnBlockUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "25% chance to gain a Power Charge when you Block", statOrder = { 1151, 4270 }, level = 68, group = "PowerChargeOnBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "power_charge", "influence_mod" }, }, + ["CriticalStrikeMultiplierIfBlockedRecentlyUber1_"] = { type = "Suffix", affix = "of Shaping", "+5% Chance to Block Attack Damage while wielding a Staff", "+(35-45)% to Critical Strike Multiplier if you have Blocked Recently", statOrder = { 1151, 5963 }, level = 68, group = "CriticalStrikeMultiplierIfBlockedRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod", "damage", "critical" }, }, + ["BlockingBlocksSpellsUber1"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(12-18)% Chance to Block Spell Damage", statOrder = { 1151, 1155 }, level = 68, group = "BlockingBlocksSpellsUber", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockStaffUber1_"] = { type = "Suffix", affix = "of the Elder", "+5% Chance to Block Attack Damage while wielding a Staff", "(8-12)% Chance to Block Spell Damage", statOrder = { 1151, 1160 }, level = 68, group = "SpellBlockAndBlockUber", weightKey = { "staff_elder", "warstaff_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "block", "influence_mod" }, }, + ["CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "+(15-25)% to Global Critical Strike Multiplier", "(80-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 1488, 5927 }, level = 68, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyUber", weightKey = { "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["PowerChargeOnManaSpentUber1"] = { type = "Suffix", affix = "of Shaping", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7892 }, level = 68, group = "PowerChargeOnManaSpent", weightKey = { "wand_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["IncreasedDamagePerPowerChargeUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "wand_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, }, + ["ProjectileDamagePerEnemyPiercedUber1_"] = { type = "Suffix", affix = "of Shaping", "Projectiles deal (20-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9734 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage" }, }, + ["IncreaseProjectileAttackDamagePerAccuracyUber1"] = { type = "Suffix", affix = "of the Elder", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 4308 }, level = 68, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { "bow_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["CriticalStrikeChanceAgainstPoisonedEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(80-100)% increased Critical Strike Chance against Poisoned Enemies", statOrder = { 3292 }, level = 68, group = "CriticalStrikeChanceAgainstPoisonedEnemies", weightKey = { "dagger_elder", "rune_dagger_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeMultiplierAgainstEnemiesOnFullLifeUber1"] = { type = "Suffix", affix = "of Shaping", "+(50-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3433 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_shaper", "rune_dagger_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["GainRareMonsterModsOnKillChanceUber1"] = { type = "Suffix", affix = "of the Elder", "When you Kill a Rare Monster, (15-20)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6696 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, + ["EnemiesHaveReducedEvasionIfHitRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies have 20% reduced Evasion if you have Hit them Recently", statOrder = { 6417 }, level = 68, group = "EnemiesHaveReducedEvasionIfHitRecently", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["LifeGainPerBlindedEnemyHitUber1"] = { type = "Suffix", affix = "of the Elder", "Gain (35-50) Life per Blinded Enemy Hit with this Weapon", statOrder = { 7984 }, level = 68, group = "LifeGainPerBlindedEnemyHit", weightKey = { "claw_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, + ["CriticalChanceAgainstBlindedEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3406 }, level = 68, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { "claw_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, }, + ["AdditionalBlockChancePerEnduranceChargeUber1_"] = { type = "Suffix", affix = "of the Elder", "(20-25)% chance to gain an Endurance Charge when you Block", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 2124, 4542 }, level = 68, group = "AdditionalBlockChancePerEnduranceChargeUber", weightKey = { "sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "endurance_charge", "influence_mod" }, }, + ["AccuracyRatingPerFrenzyChargeUber1"] = { type = "Suffix", affix = "of Shaping", "5% increased Accuracy Rating per Frenzy Charge", "(20-25)% chance to gain a Frenzy Charge when you Block", statOrder = { 2050, 5690 }, level = 68, group = "AccuracyRatingPerFrenzyChargeUber", weightKey = { "sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "block", "frenzy_charge", "influence_mod", "attack" }, }, + ["MovementSkillsCostNoManaUber1"] = { type = "Suffix", affix = "of Shaping", "Socketed Movement Skills Cost no Mana", statOrder = { 560 }, level = 68, group = "DisplayMovementSkillsCostNoMana", weightKey = { "2h_sword_shaper", "sword_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "gem" }, }, + ["GainEnduranceChargeWhileStationaryUber1"] = { type = "Suffix", affix = "of the Elder", "Gain an Endurance Charge every 4 seconds while Stationary", statOrder = { 9532 }, level = 68, group = "GainEnduranceChargeWhileStationary", weightKey = { "2h_sword_elder", "sword_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["CullingStrikeOnBleedingEnemiesUber1"] = { type = "Suffix", affix = "of the Elder", "(30-49)% increased Physical Damage", "Hits with this Weapon have Culling Strike against Bleeding Enemies", statOrder = { 1232, 7884 }, level = 68, group = "CullingStrikeOnBleedingEnemiesUber", weightKey = { "2h_axe_elder", "axe_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["GainEnduranceChargeOnHittingBleedingEnemyUber1"] = { type = "Suffix", affix = "of the Elder", "(5-10)% chance to gain an Endurance Charge when you Hit a Bleeding Enemy", statOrder = { 5686 }, level = 68, group = "GainEnduranceChargeOnHittingBleedingEnemy", weightKey = { "axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["GainEnduranceChargeOnCritUber1"] = { type = "Suffix", affix = "of Shaping", "(15-20)% increased Critical Strike Chance", "(5-10)% chance to gain an Endurance Charge on Critical Strike", statOrder = { 1464, 1819 }, level = 68, group = "GainEnduranceChargeOnCritUber", weightKey = { "2h_axe_shaper", "axe_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "endurance_charge", "influence_mod", "attack", "critical" }, }, + ["CriticalStrikeChanceIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of Shaping", "(80-100)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5925 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "critical" }, }, + ["EnemiesExplodeOnDeathDealingFireUber1"] = { type = "Suffix", affix = "of Shaping", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2706 }, level = 68, group = "EnemiesExplodeOnDeath", weightKey = { "2h_mace_shaper", "mace_shaper", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["GainFortifyOnStunChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Melee Hits which Stun have (10-20)% chance to Fortify", statOrder = { 5678 }, level = 68, group = "GainFortifyOnStunChance", weightKey = { "mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, + ["AreaOfEffectPer50StrengthUber1"] = { type = "Suffix", affix = "of the Elder", "3% increased Area of Effect per 50 Strength", statOrder = { 4731 }, level = 68, group = "AreaOfEffectPer50Strength", weightKey = { "mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectIfStunnedEnemyRecentlyUber1___"] = { type = "Suffix", affix = "of the Elder", "(25-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_elder", "mace_elder", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["MeleeWeaponRangeIfKilledRecentlyUber1"] = { type = "Suffix", affix = "of the Elder", "+(0.1-0.2) metres to Melee Strike Range if you have Killed Recently", statOrder = { 9212 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "2h_sword_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, + ["MovementSkillsFortifyOnHitChanceUber1"] = { type = "Suffix", affix = "of Shaping", "Hits with Melee Movement Skills have (30-50)% chance to Fortify", statOrder = { 9194 }, level = 68, group = "MovementSkillsFortifyOnHitChance", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "attack" }, }, + ["GainEnduranceChargeOnTauntingEnemiesUber1_"] = { type = "Suffix", affix = "of Shaping", "(15-30)% chance to gain an Endurance Charge when you Taunt an Enemy", statOrder = { 5688 }, level = 68, group = "GainEnduranceChargeOnTauntingEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["RemoveBleedingOnWarcryUber1"] = { type = "Suffix", affix = "of the Elder", "Removes Bleeding when you use a Warcry", statOrder = { 9902 }, level = 68, group = "RemoveBleedingOnWarcry", weightKey = { "2h_axe_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, + ["AreaOfEffectPerEnduranceChargeUber1"] = { type = "Suffix", affix = "of the Elder", "5% increased Area of Effect per Endurance Charge", statOrder = { 4733 }, level = 68, group = "AreaOfEffectPerEnduranceCharge", weightKey = { "2h_mace_elder", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, + ["StunDurationAndThresholdUber1"] = { type = "Suffix", affix = "of Shaping", "(20-30)% reduced Enemy Stun Threshold", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod" }, }, + ["PhysicalDamageAddedAsRandomElementUber1"] = { type = "Suffix", affix = "of Shaping", "Gain (7-9)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["PhysicalDamageAddedAsRandomElementUber2"] = { type = "Suffix", affix = "of Shaping", "Gain (10-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 75, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["PhysicalDamageAddedAsRandomElementUber3"] = { type = "Suffix", affix = "of Shaping", "Gain (13-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 80, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "sceptre_shaper", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["GrantsCatAspectCrafted"] = { type = "Suffix", affix = "of Farrul", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 695 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsBirdAspectCrafted"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 690 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsSpiderAspectCrafted"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsCrabAspectCrafted"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, + ["GrantsCatAspectCrafted30"] = { type = "Suffix", affix = "of Farrul", "Grants Level 30 Aspect of the Cat Skill", statOrder = { 695 }, level = 20, group = "GrantsCatAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsBirdAspectCrafted30"] = { type = "Suffix", affix = "of Saqawal", "Grants Level 30 Aspect of the Avian Skill", statOrder = { 690 }, level = 20, group = "GrantsBirdAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsSpiderAspectCrafted30"] = { type = "Suffix", affix = "of Fenumus", "Grants Level 30 Aspect of the Spider Skill", statOrder = { 720 }, level = 20, group = "GrantsSpiderAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["GrantsCrabAspectCrafted30"] = { type = "Suffix", affix = "of Craiceann", "Grants Level 30 Aspect of the Crab Skill", statOrder = { 697 }, level = 20, group = "GrantsCrabAspect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "blue_herring", "skill" }, }, + ["DoubleModSellPrice1"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice1", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, + ["DoubleModSellPrice2"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice2", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["DoubleModSellPrice3_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice3", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, + ["DoubleModSellPrice4"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice4", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["DoubleModSellPrice5_"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice5", weightKey = { "default", }, weightVal = { 6000 }, modTags = { }, }, + ["DoubleModSellPrice6"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice6", weightKey = { "default", }, weightVal = { 10 }, modTags = { }, }, + ["DoubleModSellPrice7"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice7", weightKey = { "default", }, weightVal = { 2000 }, modTags = { }, }, + ["DoubleModSellPrice8"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice8", weightKey = { "default", }, weightVal = { 1 }, modTags = { }, }, + ["DoubleModSellPrice9"] = { type = "DelveImplicit", affix = "", "Item sells for much more to vendors", statOrder = { 7951 }, level = 1, group = "DoubleModSellPrice9", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["LocalIncreaseSocketedMinionGemLevelDelve"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 60, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["MaximumMinionCountZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MaximumMinionCountSkeletonDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MaximumMinionCountSpectreDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MinionDamageDelve"] = { type = "Suffix", affix = "of the Underground", "Minions deal (25-35)% increased Damage", statOrder = { 1973 }, level = 60, group = "MinionDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MaximumMinionCountAmuletZombieDelve"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MaximumMinionCountAmuletSkeletonDelve__"] = { type = "Prefix", affix = "Subterranean", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 60, group = "MaximumMinionCount", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["ReducedManaReservationsCostDelve_"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 60, group = "ReducedReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["LocalIncreaseSocketedAuraLevelDelve"] = { type = "Suffix", affix = "of the Underground", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 60, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura", "gem" }, }, + ["ReducedPhysicalDamageTakenDelve"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 60, group = "ReducedPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["BleedingDamageChanceDelve__"] = { type = "Suffix", affix = "of the Underground", "Attacks have 25% chance to cause Bleeding", "(30-50)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 60, group = "BleedingDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["CorruptedBloodImmunityDelve"] = { type = "Suffix", affix = "of the Underground", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["DoubleDamageChanceDelve"] = { type = "Suffix", affix = "of the Underground", "10% chance to deal Double Damage", statOrder = { 5659 }, level = 60, group = "DoubleDamageChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["SpellAddedPhysicalDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1231, 1403 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Global Physical Damage", "Adds (15-20) to (30-35) Physical Damage to Spells", statOrder = { 1231, 1403 }, level = 60, group = "SpellAddedPhysicalDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["CurseOnHitLevelVulnerabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 60, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["PhysicalDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 60, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenAsFireDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 60, group = "PhysicalDamageTakenAsFireUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["MaximumFireResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 60, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Fire Damage taken", statOrder = { 2242 }, level = 60, group = "FireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["LocalFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (18-24) to (36-42) Fire Damage", statOrder = { 1357, 1362 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (31-42) to (64-74) Fire Damage", statOrder = { 1357, 1362 }, level = 60, group = "LocalFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SpellAddedFireDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (14-20) to (29-34) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Fire Damage", "Adds (20-26) to (39-46) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 60, group = "SpellAddedFireDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["CurseOnHitLevelFlammabilityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 60, group = "FlammabilityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["FireDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 60, group = "FireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 60, group = "PhysicalDamageTakenAsColdUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["MaximumColdResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 60, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Cold Damage taken", statOrder = { 3389 }, level = 60, group = "ColdDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold" }, }, + ["LocalColdDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (15-20) to (30-35) Cold Damage", statOrder = { 1366, 1371 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (26-35) to (52-60) Cold Damage", statOrder = { 1366, 1371 }, level = 60, group = "LocalColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SpellAddedColdDamageHybridDelve_"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (12-16) to (24-28) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Cold Damage", "Adds (18-24) to (36-42) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 60, group = "SpellAddedColdDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["CurseOnHitLevelFrostbiteDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 60, group = "FrostbiteOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["ColdDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 60, group = "ColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsLightningDelve_"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 60, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["MaximumLightningResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 60, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Lightning Damage taken", statOrder = { 3388 }, level = 60, group = "LightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["LocalLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-5) to (63-66) Lightning Damage", statOrder = { 1377, 1382 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-9) to (110-116) Lightning Damage", statOrder = { 1377, 1382 }, level = 60, group = "LocalLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SpellAddedLightningDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (1-4) to (50-53) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(20-40)% increased Lightning Damage", "Adds (2-6) to (76-80) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 60, group = "SpellAddedLightningDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["CurseOnHitLevelConductivityDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 60, group = "ConductivityOnHitLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["LightningDamageLifeLeechDelve__"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 60, group = "LightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsChaosDelve"] = { type = "Suffix", affix = "of the Underground", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 60, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "chaos" }, }, + ["MaximumChaosResistDelve"] = { type = "Prefix", affix = "Subterranean", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 60, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosDamageTakenDelve"] = { type = "Prefix", affix = "Subterranean", "(4-6)% reduced Chaos Damage taken", statOrder = { 2243 }, level = 60, group = "ChaosDamageTakenPercentage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, + ["LocalChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (18-28) to (39-49) Chaos Damage", statOrder = { 1385, 1390 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (32-50) to (68-86) Chaos Damage", statOrder = { 1385, 1390 }, level = 60, group = "LocalChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SpellAddedChaosDamageHybridDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (11-15) to (23-26) Chaos Damage to Spells", statOrder = { 1385, 1407 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageHybridTwoHandDelve"] = { type = "Prefix", affix = "Subterranean", "(15-30)% increased Chaos Damage", "Adds (15-20) to (30-35) Chaos Damage to Spells", statOrder = { 1385, 1407 }, level = 60, group = "SpellAddedChaosDamageHybrid", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["CurseOnHitLevelDespairDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 60, group = "CurseOnHitDespairMod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["ChaosDamageLifeLeechDelve"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 60, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "chaos" }, }, + ["CurseEffectivenessDelve"] = { type = "Suffix", affix = "of the Underground", "(10-15)% increased Effect of your Curses", statOrder = { 2596 }, level = 60, group = "CurseEffectiveness", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["AdditionalCurseOnEnemiesDelve"] = { type = "Prefix", affix = "Subterranean", "You can apply an additional Curse", statOrder = { 2168 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["IncreaseSocketedCurseGemLevelDelve_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 60, group = "IncreaseSocketedCurseGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem", "curse" }, }, + ["CurseAreaOfEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(25-40)% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 60, group = "CurseAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["CurseDurationDelve"] = { type = "Suffix", affix = "of the Underground", "Curse Skills have (25-40)% increased Skill Effect Duration", statOrder = { 6000 }, level = 60, group = "CurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["IncreasedDamagePerCurseDelve"] = { type = "Prefix", affix = "Subterranean", "(8-10)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 3015 }, level = 60, group = "IncreasedDamagePerCurse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["ManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 60, group = "ManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["PercentDamageGoesToManaDelve"] = { type = "Suffix", affix = "of the Underground", "(5-8)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 60, group = "PercentDamageGoesToMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["AddedManaRegenerationDelve"] = { type = "Suffix", affix = "of the Underground", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 60, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["MaximumManaIncreasePercentDelve_"] = { type = "Prefix", affix = "Subterranean", "(10-15)% increased maximum Mana", statOrder = { 1580 }, level = 60, group = "MaximumManaIncreasePercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["ImpaleChanceDelve__"] = { type = "Prefix", affix = "Subterranean", "(5-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 60, group = "AttackImpaleChance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "attack" }, }, + ["FasterBleedDelve"] = { type = "Suffix", affix = "of the Underground", "Bleeding you inflict deals Damage (5-10)% faster", statOrder = { 6544 }, level = 60, group = "FasterBleedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["AddedPhysicalSpellDamageDelve___"] = { type = "Prefix", affix = "Subterranean", "Adds (11-22) to (34-46) Physical Damage to Spells", statOrder = { 1403 }, level = 60, group = "SpellAddedPhysicalDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["LightningAilmentEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of Lightning Ailments", statOrder = { 7433 }, level = 60, group = "LightningAilmentEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["PhysicalDamageConvertedToLightningDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ColdAilmentDurationDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Duration of Cold Ailments", statOrder = { 5796 }, level = 60, group = "ColdAilmentDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["PhysicalDamageConvertedToColdDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["FasterIgniteDelve_"] = { type = "Suffix", affix = "of the Underground", "Ignites you inflict deal Damage (5-10)% faster", statOrder = { 2564 }, level = 60, group = "FasterIgniteDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["PhysicalDamageConvertedToFireDelve"] = { type = "Prefix", affix = "Subterranean", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["FasterPoisonDelve_"] = { type = "Suffix", affix = "of the Underground", "Poisons you inflict deal Damage (5-10)% faster", statOrder = { 6545 }, level = 60, group = "FasterPoisonDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["ZeroChaosResistanceDelve"] = { type = "Suffix", affix = "of the Underground", "Chaos Resistance is Zero", statOrder = { 10726 }, level = 60, group = "ZeroChaosResistanceDelve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["MinionCriticalStrikeMultiplierDelve"] = { type = "Suffix", affix = "of the Underground", "Minions have +(30-38)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 60, group = "MinionCriticalStrikeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionLargerAggroRadiusDelve"] = { type = "Suffix", affix = "of the Underground", "Minions are Aggressive", statOrder = { 10760 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MinionAreaOfEffectDelve"] = { type = "Prefix", affix = "Subterranean", "Minions have (20-30)% increased Area of Effect", statOrder = { 3024 }, level = 60, group = "MinionAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MinionLeechDelve___"] = { type = "Prefix", affix = "Subterranean", "Minions Leech 1% of Damage as Life", statOrder = { 2910 }, level = 60, group = "MinionLifeLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "minion" }, }, + ["SpiritAndPhantasmRefreshOnUniqueDelve"] = { type = "Prefix", affix = "Subterranean", "Summoned Phantasms have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 5% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9614, 9802 }, level = 60, group = "SpiritAndPhantasmRefreshOnUnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["AuraEffectOnEnemiesDelve_____"] = { type = "Suffix", affix = "of the Underground", "(12-18)% increased Effect of Non-Curse Auras from your Skills on Enemies", statOrder = { 3567 }, level = 60, group = "AuraEffectOnEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, + ["LifeReservationEfficiencyDelve"] = { type = "Prefix", affix = "Subterranean", "10% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 60, group = "LifeReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["DoomGainRateDelve"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7151 }, level = 60, group = "HitAndAilmentDamageCursedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "curse" }, }, + ["MarkEffectDelve"] = { type = "Suffix", affix = "of the Underground", "(15-25)% increased Effect of your Marks", statOrder = { 2598 }, level = 60, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveArmourFireResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, + ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7914 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveArmourColdResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, + ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7912 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveArmourLightningResistance1"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistancePrefix", weightKey = { "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, + ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7916 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7874 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, + ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2235 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, + ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4584 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, + ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7918 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5041 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, + ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5734 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, + ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7911 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, + ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, + ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7950 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6496 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9117 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9133 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, + ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7870 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9250 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2494 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, + ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 226 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 562 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, + ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 568 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, + ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 331 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 561 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, + ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 549 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, + ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8199 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8199 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8211 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, + ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4530 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4815 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2181 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5396 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, + ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5412 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6760 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, + ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1769 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, + ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, + ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9486 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9486 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, + ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, + ["DelveMapMonsterPacksVaalMapWorlds1"] = { type = "Prefix", affix = "Subterranean", "Area is inhabited by the Vaal", "Found Items have 10% chance to drop Corrupted in Area", statOrder = { 8762, 10826 }, level = 1, group = "MapMonsterPacksVaalMapWorlds", weightKey = { "map", "expedition_logbook", "default", }, weightVal = { 1000, 0, 0 }, modTags = { }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h3___"] = { type = "Prefix", affix = "Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, + ["ColdDamageOverTimeMultiplier2h1_"] = { type = "Prefix", affix = "Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierUber2_"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["FireDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier2h2"] = { type = "Prefix", affix = "Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier2h5__"] = { type = "Prefix", affix = "Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1h2"] = { type = "Prefix", affix = "Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1h4"] = { type = "Prefix", affix = "Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierUber1___"] = { type = "Suffix", affix = "of Shaping", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierUber2"] = { type = "Suffix", affix = "of Shaping", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["PhysicalDamageOverTimeMultiplier2h1"] = { type = "Prefix", affix = "Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier2h2_"] = { type = "Prefix", affix = "Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier2h3"] = { type = "Prefix", affix = "Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier2h4"] = { type = "Prefix", affix = "Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier2h5"] = { type = "Prefix", affix = "Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1h1"] = { type = "Prefix", affix = "Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1h2_"] = { type = "Prefix", affix = "Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1h3"] = { type = "Prefix", affix = "Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1h4_"] = { type = "Prefix", affix = "Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1h5"] = { type = "Prefix", affix = "Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierUber1"] = { type = "Suffix", affix = "of the Elder", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierUber2__"] = { type = "Suffix", affix = "of the Elder", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 200, 400, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, + ["GlobalDamageOverTimeMultiplier1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier1h2_"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier1h4"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "one_hand_weapon", "amulet", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier2h1__"] = { type = "Suffix", affix = "of Acrimony", "+(16-21)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 44, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier2h2"] = { type = "Suffix", affix = "of Dispersion", "+(24-29)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 55, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier2h3___"] = { type = "Suffix", affix = "of Liquefaction", "+(31-35)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier2h4_"] = { type = "Suffix", affix = "of Melting", "+(36-40)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 76, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplier2h5____"] = { type = "Suffix", affix = "of Dissolution", "+(41-45)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 82, group = "GlobalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplierEssence1_"] = { type = "Suffix", affix = "of the Essence", "+10% to Damage over Time Multiplier", statOrder = { 1242 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplierRingEssence1"] = { type = "Suffix", affix = "of the Essence", "+(12-15)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 63, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h1"] = { type = "Suffix", affix = "of Acrimony", "+(7-11)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 44, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h2___"] = { type = "Suffix", affix = "of Dispersion", "+(12-15)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 55, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h3"] = { type = "Suffix", affix = "of Liquefaction", "+(16-19)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 68, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h4_"] = { type = "Suffix", affix = "of Melting", "+(20-23)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 76, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, + ["GlobalDamageOverTimeMultiplierWithAttacks1h5"] = { type = "Suffix", affix = "of Dissolution", "+(24-26)% to Damage over Time Multiplier with Attack Skills", statOrder = { 1246 }, level = 82, group = "GlobalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "damage", "attack" }, }, + ["ChaosDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of Waning", "+(26-35)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierTwoHand2__"] = { type = "Suffix", affix = "of Wasting", "+(36-45)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierTwoHand3_"] = { type = "Suffix", affix = "of Deteriorating", "+(46-55)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierTwoHand4__"] = { type = "Suffix", affix = "of Atrophying", "+(56-65)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierTwoHand5___"] = { type = "Suffix", affix = "of Disintegrating", "+(66-75)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplier1_"] = { type = "Suffix", affix = "of Waning", "+(14-18)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 4, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 400, 400, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Wasting", "+(19-23)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 12, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Deteriorating", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 200, 200, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Atrophying", "+(29-33)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 64, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 100, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Disintegrating", "+(34-38)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 78, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "dagger", "default", }, weightVal = { 50, 50, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Inclement", "+(26-35)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of the Bleak", "+(36-45)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Boreal", "+(46-55)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Gelid", "+(56-65)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Heartstopping", "+(66-75)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Inclement", "+(14-18)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 4, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 300, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Bleak", "+(19-23)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 12, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 220, 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Boreal", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 140, 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of the Gelid", "+(29-33)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 64, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 70, 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Heartstopping", "+(34-38)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 78, group = "ColdDamageOverTimeMultiplier", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 35, 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["FireDamageOverTimeMultiplierTwoHand1_"] = { type = "Suffix", affix = "of the Earnest", "+(26-35)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierTwoHand2_"] = { type = "Suffix", affix = "of the Fervid", "+(36-45)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of the Ardent", "+(46-55)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of the Zealous", "+(56-65)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierTwoHand5_"] = { type = "Suffix", affix = "of the Fanatical", "+(66-75)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of the Earnest", "+(14-18)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 4, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of the Fervid", "+(19-23)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 12, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 220, 220, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of the Ardent", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 36, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 140, 140, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier4__"] = { type = "Suffix", affix = "of the Zealous", "+(29-33)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 64, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 70, 70, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of the Fanatical", "+(34-38)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 78, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 35, 35, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["PhysicalDamageOverTimeMultiplierTwoHand1"] = { type = "Suffix", affix = "of Seeping", "+(26-35)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 400, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierTwoHand2"] = { type = "Suffix", affix = "of Spilling", "+(36-45)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierTwoHand3"] = { type = "Suffix", affix = "of Phlebotomising", "+(46-55)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierTwoHand4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(56-65)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierTwoHand5"] = { type = "Suffix", affix = "of Exsanguinating", "+(66-75)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 50, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier1__"] = { type = "Suffix", affix = "of Seeping", "+(14-18)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 4, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Spilling", "+(19-23)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 12, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 220, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier3__"] = { type = "Suffix", affix = "of Phlebotomising", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 36, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 140, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Hemorrhaging", "+(29-33)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 64, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 70, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Exsanguinating", "+(34-38)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 78, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "default", }, weightVal = { 35, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["IncreasedLifeEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Guatelitzi's", "+(70-79) to maximum Life", "2% increased maximum Life", statOrder = { 1569, 1571 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedLifeEnhancedLevel50BodyMod"] = { type = "Prefix", affix = "Guatelitzi's", "+(110-119) to maximum Life", "(8-10)% increased maximum Life", statOrder = { 1569, 1571 }, level = 50, group = "IncreasedLifeAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedManaEnhancedLevel50ModPercent"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(7-10)% increased maximum Mana", statOrder = { 1579, 1580 }, level = 50, group = "IncreasedManaAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedLevel50ModOnHit"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Gain (2-3) Mana per Enemy Hit with Attacks", statOrder = { 1579, 1744 }, level = 50, group = "IncreasedManaAndOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack" }, }, + ["IncreasedManaEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Regenerate (5-7) Mana per second", statOrder = { 1579, 1582 }, level = 50, group = "IncreasedManaAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedLevel50ModReservation_"] = { type = "Prefix", affix = "Xopec's", "+(69-73) to maximum Mana", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 1579, 2232 }, level = 50, group = "IncreasedManaAndReservation", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedLevel50ModCost"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "-(8-6) to Total Mana Cost of Skills", statOrder = { 1579, 1891 }, level = 50, group = "IncreasedManaAndCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedLevel50ModCostNew"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills have -(8-6) to Total Mana Cost", statOrder = { 1579, 10062 }, level = 50, group = "IncreasedManaAndCostNew", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedEnergyShieldEnhancedLevel50ModES_"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "3% increased maximum Energy Shield", statOrder = { 1558, 1561 }, level = 50, group = "EnergyShieldAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldEnhancedLevel50ModRegen"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Regenerate 0.4% of Energy Shield per second", statOrder = { 1558, 2646 }, level = 50, group = "EnergyShieldAndRegen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["AddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (11-13) Fire Damage to Attacks", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1360, 1955 }, level = 50, group = "FireDamagePhysConvertedToFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, + ["AddedColdDamageEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "Adds (5-7) to (10-12) Cold Damage to Attacks", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1369, 1957 }, level = 50, group = "ColdDamagePhysConvertedToCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, }, + ["AddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (1-2) to (22-23) Lightning Damage to Attacks", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1380, 1959 }, level = 50, group = "LightningDamagePhysConvertedToLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, + ["LocalIncreasedPhysicalDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(155-169)% increased Physical Damage", "Gain (3-5)% of Physical Damage as Extra Chaos Damage", statOrder = { 1232, 1935 }, level = 50, group = "LocalPhysicalDamagePercentAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, + ["LocalAddedFireDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (45-61) to (91-106) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 50, group = "LocalFireDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (79-106) to (159-186) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 50, group = "LocalFireDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedColdDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (37-50) to (74-87) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 50, group = "LocalColdDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (65-87) to (130-152) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 50, group = "LocalColdDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedLightningDamageEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "Adds (4-13) to (158-166) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 50, group = "LocalLightningDamageAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageEnhancedLevel50TwoHandMod"] = { type = "Prefix", affix = "Topotante's", "Adds (7-22) to (275-290) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 50, group = "LocalLightningDamageTwoHandAndPen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["MovementVelocityEnhancedLevel50ModSpeed"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "5% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3243 }, level = 50, group = "MovementVelocitySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MovementVelocityEnhancedLevel50ModDodge"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid Bleeding", statOrder = { 1798, 4216 }, level = 50, group = "MovementVelocityDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MovementVelocityEnhancedLevel50ModSpellDodge__"] = { type = "Prefix", affix = "Matatl's", "30% increased Movement Speed", "(10-15)% chance to Avoid being Poisoned", statOrder = { 1798, 1849 }, level = 50, group = "MovementVelocitySpellDodge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["SpellDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(70-74)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9488 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "(105-110)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9488 }, level = 50, group = "WeaponSpellDamageAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["TrapDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Trap Damage", statOrder = { 1194 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["TrapDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Trap Damage", statOrder = { 1194 }, level = 50, group = "TrapDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["MineDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(90-95)% increased Mine Damage", statOrder = { 1196 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["MineDamageOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Matatl's", "(133-138)% increased Mine Damage", statOrder = { 1196 }, level = 50, group = "MineDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["TrapThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 50, group = "TrapThrowSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MineThrowSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(20-22)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MineThrowSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(30-33)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 50, group = "MineLayingSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapCooldownRecoveryAndDurationEnhancedLevel50Mod__"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Trap Duration", "(14-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1923, 3461 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["TrapCooldownRecoveryAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Trap Duration", "(21-22)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 1923, 3461 }, level = 50, group = "TrapCooldownRecoveryAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MineDetonationSpeedAndDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "(17-20)% increased Mine Duration", "Mines have (14-15)% increased Detonation Speed", statOrder = { 1924, 9220 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MineDetonationSpeedAndDurationTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "(26-30)% increased Mine Duration", "Mines have (21-22)% increased Detonation Speed", statOrder = { 1924, 9220 }, level = 50, group = "MineDetonationSpeedAndDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (22-25)% increased Area of Effect", statOrder = { 3479 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["TrapAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Traps have (33-37)% increased Area of Effect", statOrder = { 3479 }, level = 50, group = "TrapAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MineAreaOfEffectEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (22-25)% increased Area of Effect", statOrder = { 9217 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MineAreaOfEffectTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Matatl", "Skills used by Mines have (33-37)% increased Area of Effect", statOrder = { 9217 }, level = 50, group = "MineAreaOfEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["LocalIncreaseSocketedTrapGemLevelEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Matatl's", "+2 to Level of Socketed Trap or Mine Gems", statOrder = { 187 }, level = 50, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, + ["MinionDamageOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (90-95)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (133-138)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (50-66)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1973, 9279 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEnhancedLevel50ModNew"] = { type = "Prefix", affix = "Citaqualotl's", "Minions deal (85-94)% increased Damage", "Minions have 5% chance to deal Double Damage", statOrder = { 1973, 9279 }, level = 50, group = "MinionDamageOnWeaponDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionAttackAndCastSpeedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (25-28)% increased Attack Speed", "Minions have (25-28)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeedTwoHandEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "Minions have (36-40)% increased Attack Speed", "Minions have (36-40)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 50, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionDurationEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(17-20)% increased Minion Duration", statOrder = { 5032 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MinionDurationTwoHandedEnhancedLevel50Mod_"] = { type = "Suffix", affix = "of Citaqualotl", "(27-30)% increased Minion Duration", statOrder = { 5032 }, level = 50, group = "MinionDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["LocalIncreaseSocketedMinionGemLevelEnhancedLevel50Mod"] = { type = "Prefix", affix = "Citaqualotl's", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 50, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "gem" }, }, + ["FireDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Fire Damage", "Adds (15-20) to (30-35) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 50, group = "FireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["FireDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod__"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Fire Damage", "Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1357, 1404 }, level = 50, group = "TwoHandFireDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["ColdDamagePrefixOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Cold Damage", "Adds (12-16) to (25-29) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 50, group = "ColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["ColdDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Cold Damage", "Adds (19-25) to (37-44) Cold Damage to Spells", statOrder = { 1366, 1405 }, level = 50, group = "TwoHandColdDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["LightningDamagePrefixOnWeaponEnhancedLevel50Mod_"] = { type = "Prefix", affix = "Topotante's", "(75-79)% increased Lightning Damage", "Adds (1-4) to (53-56) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 50, group = "LightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["LightningDamagePrefixOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Topotante's", "(111-115)% increased Lightning Damage", "Adds (2-6) to (79-84) Lightning Damage to Spells", statOrder = { 1377, 1406 }, level = 50, group = "TwoHandLightningDamageWeaponPrefixAndFlat", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["IncreasedCastSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(29-32)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, + ["IncreasedCastSpeedTwoHandEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (24-32) to (49-57) Chaos Damage to Spells", "(44-49)% increased Cast Speed", statOrder = { 1407, 1446 }, level = 50, group = "IncreasedCastSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster", "speed" }, }, + ["LocalIncreasedAttackSpeedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(26-27)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedRangedEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(14-16)% increased Attack Speed", statOrder = { 1390, 1413 }, level = 50, group = "LocalIncreasedAttackSpeedAddedChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack", "speed" }, }, + ["LifeRegenerationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Guatelitzi", "Regenerate (32-40) Life per second", "Regenerate 0.4% of Life per second", statOrder = { 1574, 1944 }, level = 50, group = "LifeRegenerationAndPercent", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["FireResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(3-5)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 1625, 2447 }, level = 50, group = "FireResistancePhysTakenAsFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedLevel50ModPhys_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(3-5)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 1631, 2448 }, level = 50, group = "ColdResistancePhysTakenAsCold", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedLevel50ModPhys"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(3-5)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 1636, 2449 }, level = 50, group = "LightningResistancePhysTakenAsLightning", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical", "elemental", "lightning", "resistance" }, }, + ["FireResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched as Life", statOrder = { 1625, 1670 }, level = 50, group = "FireResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched as Life", statOrder = { 1631, 1675 }, level = 50, group = "ColdResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedLevel50ModLeech"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1636, 1679 }, level = 50, group = "LightningResistanceLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, + ["FireResistEnhancedLevel50ModAilments_"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "(45-52) to (75-78) added Fire Damage against Burning Enemies", statOrder = { 1625, 10321 }, level = 50, group = "FireResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "(30-50)% increased Damage with Hits against Chilled Enemies", statOrder = { 1631, 6070 }, level = 50, group = "ColdResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedLevel50ModAilments"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "(40-60)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 1636, 5913 }, level = 50, group = "LightningResistanceAilments", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance", "critical" }, }, + ["ChaosResistEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "+(31-35)% to Chaos Resistance", "(5-7)% reduced Chaos Damage taken over time", statOrder = { 1641, 1948 }, level = 50, group = "ChaosResistanceDamageOverTime", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["PoisonDurationEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "(13-18)% increased Poison Duration", statOrder = { 1385, 3170 }, level = 50, group = "PoisonDurationChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["ChanceToPoisonEnhancedLevel50Mod"] = { type = "Suffix", affix = "of Tacati", "(26-30)% increased Chaos Damage", "30% chance to Poison on Hit", statOrder = { 1385, 8002 }, level = 50, group = "LocalChanceToPoisonOnHitChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamageEnhancedLevel50AttacksMod_"] = { type = "Suffix", affix = "of Tacati", "Adds (23-36) to (49-61) Chaos Damage", "(31-35)% increased Damage with Poison", statOrder = { 1390, 3181 }, level = 50, group = "PoisonDamageAddedChaosToAttacks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["PoisonDamageEnhancedLevel50SpellsMod"] = { type = "Suffix", affix = "of Tacati", "Adds (17-24) to (36-40) Chaos Damage to Spells", "(31-35)% increased Damage with Poison", statOrder = { 1407, 3181 }, level = 50, group = "PoisonDamageAddedChaosToSpells", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "ailment" }, }, + ["SynthesisImplicitLife1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLife2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Life", statOrder = { 1569 }, level = 15, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLife3"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Life", statOrder = { 1569 }, level = 24, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLife4_"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Life", statOrder = { 1569 }, level = 36, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLife5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Life", statOrder = { 1569 }, level = 48, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeJewel2"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLife1_"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLife2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1571 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLife3"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Life", statOrder = { 1571 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeTrinket1__"] = { type = "Synthesis", affix = "", "4% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeTrinket2"] = { type = "Synthesis", affix = "", "(5-6)% increased maximum Life", statOrder = { 1571 }, level = 15, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeTrinket3"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Life", statOrder = { 1571 }, level = 24, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeRegen1_"] = { type = "Synthesis", affix = "", "Regenerate (5-7) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitLifeRegen2_"] = { type = "Synthesis", affix = "", "Regenerate (7-11.7) Life per second", statOrder = { 1574 }, level = 15, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate (11.7-18.3) Life per second", statOrder = { 1574 }, level = 24, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitLifeRegen4"] = { type = "Synthesis", affix = "", "Regenerate (18.4-26.7) Life per second", statOrder = { 1574 }, level = 36, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitLifeRegen5_"] = { type = "Synthesis", affix = "", "Regenerate (26.7-40) Life per second", statOrder = { 1574 }, level = 48, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitHighLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (80-100) Life per second", statOrder = { 1574 }, level = 56, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SynthesisImplicitPercentLifeRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.93)% of Life per second", statOrder = { 1944 }, level = 15, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 24, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeRegenJewel1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLifeLeech2_"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 15, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLifeLeech3"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 24, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLocalLifeLeech1"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLocalLifeLeech2"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 15, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLocalLifeLeech3__"] = { type = "Synthesis", affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 24, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLifeLeechOneHanded1"] = { type = "Synthesis", affix = "", "1.5% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitLifeLeechTwoHanded1"] = { type = "Synthesis", affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 36, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["SynthesisImplicitAttackLifeLeech1_"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 36, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitAttackLifeLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitMaximumLifeLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 56, group = "MaximumLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitIncreasedLifeLeechRate1_"] = { type = "Synthesis", affix = "", "(8-10)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitIncreasedLifeLeechRate2_"] = { type = "Synthesis", affix = "", "(11-13)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 15, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitIncreasedLifeLeechRate3"] = { type = "Synthesis", affix = "", "(14-16)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 24, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeOnKill1_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeOnKill2"] = { type = "Synthesis", affix = "", "Gain (9-11) Life per Enemy Killed", statOrder = { 1748 }, level = 15, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeOnKill3"] = { type = "Synthesis", affix = "", "Gain (12-15) Life per Enemy Killed", statOrder = { 1748 }, level = 24, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitPercentLifeOnKill1_"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Life on Kill", statOrder = { 1749 }, level = 55, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitLifeOnHit1"] = { type = "Synthesis", affix = "", "Gain (4-5) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLifeOnHit2_"] = { type = "Synthesis", affix = "", "Gain (6-8) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 15, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLifeOnHit3"] = { type = "Synthesis", affix = "", "Gain (9-15) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 24, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLifeOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLocalLifeOnHit1_"] = { type = "Synthesis", affix = "", "Grants (4-5) Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLocalLifeOnHit2_"] = { type = "Synthesis", affix = "", "Grants (6-8) Life per Enemy Hit", statOrder = { 1738 }, level = 15, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLocalLifeOnHit3"] = { type = "Synthesis", affix = "", "Grants (9-15) Life per Enemy Hit", statOrder = { 1738 }, level = 24, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLifeOnHitOneHanded1"] = { type = "Synthesis", affix = "", "Grants (25-30) Life per Enemy Hit", statOrder = { 1738 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitLifeOnHitTwoHanded1_"] = { type = "Synthesis", affix = "", "Grants (45-50) Life per Enemy Hit", statOrder = { 1738 }, level = 36, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["SynthesisImplicitGlobalFlaskLifeRecovery1_"] = { type = "Synthesis", affix = "", "(7-10)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 56, group = "GlobalFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["SynthesisImplicitLifeRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Life Recovery rate", statOrder = { 1578 }, level = 60, group = "LifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitMana1"] = { type = "Synthesis", affix = "", "+(8-10) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitMana2"] = { type = "Synthesis", affix = "", "+(11-14) to maximum Mana", statOrder = { 1579 }, level = 15, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitMana3_"] = { type = "Synthesis", affix = "", "+(15-19) to maximum Mana", statOrder = { 1579 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitMana4"] = { type = "Synthesis", affix = "", "+(20-24) to maximum Mana", statOrder = { 1579 }, level = 36, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitMana5"] = { type = "Synthesis", affix = "", "+(25-30) to maximum Mana", statOrder = { 1579 }, level = 48, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaJewel1_"] = { type = "Synthesis", affix = "", "+(2-3) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitPercentMana1_"] = { type = "Synthesis", affix = "", "6% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitPercentMana2"] = { type = "Synthesis", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1580 }, level = 15, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitPercentMana3"] = { type = "Synthesis", affix = "", "(9-10)% increased maximum Mana", statOrder = { 1580 }, level = 24, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegeneration1"] = { type = "Synthesis", affix = "", "(16-18)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegeneration2"] = { type = "Synthesis", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 15, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegeneration3_"] = { type = "Synthesis", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 24, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegeneration4_"] = { type = "Synthesis", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 36, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegeneration5"] = { type = "Synthesis", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 48, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRegenerationJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegen1__"] = { type = "Synthesis", affix = "", "Regenerate (2-2.5) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegen2"] = { type = "Synthesis", affix = "", "Regenerate (2.5-3) Mana per second", statOrder = { 1582 }, level = 15, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegen3_____"] = { type = "Synthesis", affix = "", "Regenerate (3-4) Mana per second", statOrder = { 1582 }, level = 24, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithStaffJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per second while wielding a Staff", statOrder = { 8205 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while Dual Wielding", statOrder = { 8202 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithShieldJewel1"] = { type = "Synthesis", affix = "", "Regenerate (0.5-0.7) Mana per Second while holding a Shield", statOrder = { 8203 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithStaffJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per second while wielding a Staff", statOrder = { 8205 }, level = 1, group = "AddedManaRegenWithStaff", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while Dual Wielding", statOrder = { 8202 }, level = 1, group = "AddedManaRegenWithDualWield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAddedManaRegenWithShieldJewel2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-1) Mana per Second while holding a Shield", statOrder = { 8203 }, level = 1, group = "AddedManaRegenWithShield", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitBaseManaRegeneration1"] = { type = "Synthesis", affix = "", "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 56, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitBaseManaRegenerationOneHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Mana per second", statOrder = { 1581 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitBaseManaRegenerationOneHand2_"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Mana per second", statOrder = { 1581 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitBaseManaRegenerationTwoHand1"] = { type = "Synthesis", affix = "", "Regenerate 0.4% of Mana per second", statOrder = { 1581 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitBaseManaRegenerationTwoHand2"] = { type = "Synthesis", affix = "", "Regenerate 0.6% of Mana per second", statOrder = { 1581 }, level = 36, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 15, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 24, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitManaLeechJewel1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitLocalManaLeech1"] = { type = "Synthesis", affix = "", "0.1% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitLocalManaLeech2"] = { type = "Synthesis", affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 15, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitLocalManaLeech3"] = { type = "Synthesis", affix = "", "0.3% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 24, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitManaLeechOneHanded1"] = { type = "Synthesis", affix = "", "0.5% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitManaLeechTwoHanded1"] = { type = "Synthesis", affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 36, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SynthesisImplicitAttackManaLeech1"] = { type = "Synthesis", affix = "", "0.4% of Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 36, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["SynthesisImplicitMaximumManaLeechRate1_"] = { type = "Synthesis", affix = "", "10% increased Maximum total Mana Recovery per second from Leech", statOrder = { 1733 }, level = 56, group = "MaximumManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitIncreasedManaLeechRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased total Recovery per second from Mana Leech", statOrder = { 2158 }, level = 36, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaOnKill1_"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaOnKill2___"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Killed", statOrder = { 1763 }, level = 15, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaOnKill3"] = { type = "Synthesis", affix = "", "Gain 5 Mana per Enemy Killed", statOrder = { 1763 }, level = 24, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaOnHit1__"] = { type = "Synthesis", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["SynthesisImplicitManaOnHit2"] = { type = "Synthesis", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 15, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["SynthesisImplicitManaOnHit3"] = { type = "Synthesis", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 24, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["SynthesisImplicitManaOnHitJewel1_"] = { type = "Synthesis", affix = "", "Gain 1 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["SynthesisImplicitPercentManaOnKill1"] = { type = "Synthesis", affix = "", "Recover (1-2)% of Mana on Kill", statOrder = { 1751 }, level = 56, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaRecoveryRate1_"] = { type = "Synthesis", affix = "", "(10-15)% increased Mana Recovery rate", statOrder = { 1586 }, level = 60, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitTotalManaCost1_"] = { type = "Synthesis", affix = "", "-1 to Total Mana Cost of Skills", statOrder = { 1891 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitTotalManaCost2_"] = { type = "Synthesis", affix = "", "-2 to Total Mana Cost of Skills", statOrder = { 1891 }, level = 15, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitTotalManaCost3"] = { type = "Synthesis", affix = "", "-3 to Total Mana Cost of Skills", statOrder = { 1891 }, level = 24, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitReducedManaCost1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitReducedManaCost2"] = { type = "Synthesis", affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 15, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitReducedManaCost3"] = { type = "Synthesis", affix = "", "(4-5)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 24, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitReducedManaCostJewel1_"] = { type = "Synthesis", affix = "", "2% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitAttackDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4848 }, level = 36, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitAttackDamagePerMana2"] = { type = "Synthesis", affix = "", "(12-14)% increased Attack Damage per 500 Maximum Mana", statOrder = { 4848 }, level = 48, group = "AttackDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitSpellDamagePerMana1"] = { type = "Synthesis", affix = "", "(6-8)% increased Spell Damage per 500 Maximum Mana", statOrder = { 10146 }, level = 36, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamagePerMana2___"] = { type = "Synthesis", affix = "", "(12-14)% increased Spell Damage per 500 Maximum Mana", statOrder = { 10146 }, level = 48, group = "SpellDamagePerMana", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitPhysicalDamageTakenFromMana1"] = { type = "Synthesis", affix = "", "(2-3)% of Physical Damage is taken from Mana before Life", statOrder = { 4169 }, level = 36, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, }, + ["SynthesisImplicitPhysicalDamageTakenFromMana2_"] = { type = "Synthesis", affix = "", "(4-5)% of Physical Damage is taken from Mana before Life", statOrder = { 4169 }, level = 48, group = "PhysicalDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical" }, }, + ["SynthesisImplicitFireResist1"] = { type = "Synthesis", affix = "", "+8% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Fire Resistance", statOrder = { 1625 }, level = 15, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Fire Resistance", statOrder = { 1625 }, level = 24, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1625 }, level = 36, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1625 }, level = 48, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitFireResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitMaxFireResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 60, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitMaxFireResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 65, group = "MaximumFireResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["SynthesisImplicitPhysicalTakenAsFire1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 56, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["SynthesisImplicitFlatFireDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Fire Damage taken from Hits", statOrder = { 2237 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["SynthesisImplicitFlatFireDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Fire Damage taken from Hits", statOrder = { 2237 }, level = 15, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["SynthesisImplicitFlatFireDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Fire Damage taken from Hits", statOrder = { 2237 }, level = 24, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["SynthesisImplicitImmuneToIgnite1"] = { type = "Synthesis", affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 56, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitColdResist1"] = { type = "Synthesis", affix = "", "+8% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResist2_"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Resistance", statOrder = { 1631 }, level = 15, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Resistance", statOrder = { 1631 }, level = 24, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1631 }, level = 36, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1631 }, level = 48, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitColdResistJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitMaxColdResist1_"] = { type = "Synthesis", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 60, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitMaxColdResist2"] = { type = "Synthesis", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 65, group = "MaximumColdResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["SynthesisImplicitPhysicalTakenAsCold1__"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 56, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, + ["SynthesisImplicitFlatColdDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-10) Cold Damage taken from Hits", statOrder = { 5819 }, level = 1, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["SynthesisImplicitFlatColdDamageTaken2"] = { type = "Synthesis", affix = "", "-(40-16) Cold Damage taken from Hits", statOrder = { 5819 }, level = 15, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["SynthesisImplicitFlatColdDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Cold Damage taken from Hits", statOrder = { 5819 }, level = 24, group = "FlatColdDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["SynthesisImplicitImmuneToFreeze1"] = { type = "Synthesis", affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 56, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitLightningResist1"] = { type = "Synthesis", affix = "", "+8% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResist2"] = { type = "Synthesis", affix = "", "+(9-10)% to Lightning Resistance", statOrder = { 1636 }, level = 15, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResist3"] = { type = "Synthesis", affix = "", "+(11-12)% to Lightning Resistance", statOrder = { 1636 }, level = 24, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResist4"] = { type = "Synthesis", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1636 }, level = 36, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResist5"] = { type = "Synthesis", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1636 }, level = 48, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitLightningResistJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitMaxLightningResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 60, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitMaxLightningResist2____"] = { type = "Synthesis", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 65, group = "MaximumLightningResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["SynthesisImplicitPhysicalTakenAsLightning1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 56, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["SynthesisImplicitFlatLightningDamageTaken1"] = { type = "Synthesis", affix = "", "-(15-10) Lightning Damage taken from Hits", statOrder = { 7452 }, level = 1, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["SynthesisImplicitFlatLightningDamageTaken2_"] = { type = "Synthesis", affix = "", "-(40-16) Lightning Damage taken from Hits", statOrder = { 7452 }, level = 15, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["SynthesisImplicitFlatLightningDamageTaken3"] = { type = "Synthesis", affix = "", "-(80-40) Lightning Damage taken from Hits", statOrder = { 7452 }, level = 24, group = "FlatLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["SynthesisImplicitImmuneToShock1"] = { type = "Synthesis", affix = "", "Cannot be Shocked", statOrder = { 1841 }, level = 56, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitChaosResist1_"] = { type = "Synthesis", affix = "", "+(5-6)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitChaosResist2"] = { type = "Synthesis", affix = "", "+(7-8)% to Chaos Resistance", statOrder = { 1641 }, level = 15, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitChaosResist3"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Resistance", statOrder = { 1641 }, level = 24, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitChaosResistJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitMaxChaosResist1"] = { type = "Synthesis", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 60, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitMaxChaosResist2"] = { type = "Synthesis", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 65, group = "MaximumChaosResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SynthesisImplicitPhysicalTakenAsChaos1"] = { type = "Synthesis", affix = "", "(5-8)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 56, group = "PhysicalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, }, + ["SynthesisImplicitFlatChaosDamageTaken1"] = { type = "Synthesis", affix = "", "-(17-13) Chaos Damage taken", statOrder = { 2839 }, level = 15, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["SynthesisImplicitFlatChaosDamageTaken2"] = { type = "Synthesis", affix = "", "-(31-18) Chaos Damage taken", statOrder = { 2839 }, level = 24, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["SynthesisImplicitImmuneToPoison1"] = { type = "Synthesis", affix = "", "Cannot be Poisoned", statOrder = { 3369 }, level = 56, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitAllResist1__"] = { type = "Synthesis", affix = "", "+(3-4)% to all Elemental Resistances", statOrder = { 1619 }, level = 15, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitAllResist2_"] = { type = "Synthesis", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1619 }, level = 24, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitAllResist3"] = { type = "Synthesis", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 36, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitMaximumResistance1"] = { type = "Synthesis", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["SynthesisImplicitMaximumResistance2_"] = { type = "Synthesis", affix = "", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 65, group = "MaximumElementalResistanceImplicit", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["SynthesisImplicitLocalIncreaseSocketedGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitLocalCrit1"] = { type = "Synthesis", affix = "", "(5-6)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitLocalCrit2"] = { type = "Synthesis", affix = "", "(7-8)% increased Critical Strike Chance", statOrder = { 1464 }, level = 15, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitLocalCrit3"] = { type = "Synthesis", affix = "", "(9-10)% increased Critical Strike Chance", statOrder = { 1464 }, level = 24, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitLocalCrit4_"] = { type = "Synthesis", affix = "", "(11-12)% increased Critical Strike Chance", statOrder = { 1464 }, level = 36, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitLocalCrit5"] = { type = "Synthesis", affix = "", "(13-15)% increased Critical Strike Chance", statOrder = { 1464 }, level = 48, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitGlobalCrit1"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCrit2"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCrit3"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCrit4"] = { type = "Synthesis", affix = "", "(21-23)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCrit5"] = { type = "Synthesis", affix = "", "(24-26)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritQuiver1"] = { type = "Synthesis", affix = "", "(26-28)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritQuiver2"] = { type = "Synthesis", affix = "", "(29-31)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 15, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritQuiver3"] = { type = "Synthesis", affix = "", "(32-34)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 24, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritQuiver4"] = { type = "Synthesis", affix = "", "(35-37)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 36, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritQuiver5"] = { type = "Synthesis", affix = "", "(38-40)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 48, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritJewel1_"] = { type = "Synthesis", affix = "", "2% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitGlobalCritJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitMinorCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+12% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitMinorCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(13-14)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitMinorCriticalMultiplier3_"] = { type = "Synthesis", affix = "", "+(15-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitMinorCriticalMultiplier4_"] = { type = "Synthesis", affix = "", "+(17-18)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitMinorCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(19-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitSpellCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(29-31)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalStrikeChance2"] = { type = "Synthesis", affix = "", "(32-34)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 15, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalStrikeChance3_"] = { type = "Synthesis", affix = "", "(35-37)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 24, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalStrikeChance4"] = { type = "Synthesis", affix = "", "(38-41)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 36, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalStrikeChance5_"] = { type = "Synthesis", affix = "", "(42-45)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 48, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitCriticalMultiplier1"] = { type = "Synthesis", affix = "", "+(15-17)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplier2"] = { type = "Synthesis", affix = "", "+(18-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 15, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplier3"] = { type = "Synthesis", affix = "", "+(21-23)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplier4"] = { type = "Synthesis", affix = "", "+(24-26)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 36, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplier5"] = { type = "Synthesis", affix = "", "+(27-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 48, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+2% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(3-4)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitAdditionalCriticalStrikeChanceWithAttacks1_"] = { type = "Synthesis", affix = "", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4792 }, level = 65, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SynthesisImplicitAdditionalCriticalStrikeChanceWithSpells1"] = { type = "Synthesis", affix = "", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 65, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitMaceCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1494 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitAxeCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Axes", statOrder = { 1495 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitSwordCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Swords", statOrder = { 1497 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitBowCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitClawCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Claws", statOrder = { 1499 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitDaggerCriticalMultiplierJewel1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Daggers", statOrder = { 1493 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitWandCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Wands", statOrder = { 1498 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitStaffCriticalMultiplierJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier with Staves", statOrder = { 1500 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitMaceCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1494 }, level = 1, group = "MaceCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitAxeCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Axes", statOrder = { 1495 }, level = 1, group = "AxeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitSwordCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Swords", statOrder = { 1497 }, level = 1, group = "SwordCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitBowCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 1, group = "BowCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitClawCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Claws", statOrder = { 1499 }, level = 1, group = "ClawCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitDaggerCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Daggers", statOrder = { 1493 }, level = 1, group = "DaggerCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitWandCriticalMultiplierJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Wands", statOrder = { 1498 }, level = 1, group = "WandCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitStaffCriticalMultiplierJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier with Staves", statOrder = { 1500 }, level = 1, group = "StaffCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithStaffJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 5945 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 5943 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithShieldJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 5944 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithStaffJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while wielding a Staff", statOrder = { 5945 }, level = 1, group = "SpellCriticalChanceWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while Dual Wielding", statOrder = { 5943 }, level = 1, group = "SpellCriticalChanceWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalChanceWithShieldJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Critical Strike Chance for Spells while holding a Shield", statOrder = { 5944 }, level = 1, group = "SpellCriticalChanceWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 5972 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 5970 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel1"] = { type = "Synthesis", affix = "", "+(2-3)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 5971 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithStaffJewel2_"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while wielding a Staff", statOrder = { 5972 }, level = 1, group = "SpellCriticalMultiplierWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while Dual Wielding", statOrder = { 5970 }, level = 1, group = "SpellCriticalMultiplierWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitSpellCriticalMultiplierWithShieldJewel2__"] = { type = "Synthesis", affix = "", "+(4-5)% to Critical Strike Multiplier for Spells while holding a Shield", statOrder = { 5971 }, level = 1, group = "SpellCriticalMultiplierWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["SynthesisImplicitAdditionalArrow1"] = { type = "Synthesis", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 65, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAdditionalArrowPierce1_"] = { type = "Synthesis", affix = "", "Arrows Pierce an additional Target", statOrder = { 1791 }, level = 56, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAdditionalArrowPierce2_"] = { type = "Synthesis", affix = "", "Arrows Pierce 2 additional Targets", statOrder = { 1791 }, level = 61, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAdditionalArrowPierce3"] = { type = "Synthesis", affix = "", "Arrows Pierce 3 additional Targets", statOrder = { 1791 }, level = 65, group = "ArrowAdditionalPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAdditionalPierce1"] = { type = "Synthesis", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 56, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunDuration1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunDuration2"] = { type = "Synthesis", affix = "", "(18-25)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 15, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunDuration3_"] = { type = "Synthesis", affix = "", "(26-35)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 24, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitEnemyStunThreshold1"] = { type = "Synthesis", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitEnemyStunThreshold2"] = { type = "Synthesis", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 15, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitEnemyStunThreshold3"] = { type = "Synthesis", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 24, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecovery1"] = { type = "Synthesis", affix = "", "(10-12)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecovery2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 15, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecovery3_"] = { type = "Synthesis", affix = "", "(16-18)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 24, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecovery4"] = { type = "Synthesis", affix = "", "(19-21)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 36, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecovery5"] = { type = "Synthesis", affix = "", "(22-25)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 48, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunRecoveryJewel1"] = { type = "Synthesis", affix = "", "(6-7)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunDurationJewel1___"] = { type = "Synthesis", affix = "", "(2-3)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitStunDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitGlobalKnockbackChanceJewel1"] = { type = "Synthesis", affix = "", "(2-3)% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 1, group = "GlobalKnockbackChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidStun1"] = { type = "Synthesis", affix = "", "(10-11)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 15, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidStun2"] = { type = "Synthesis", affix = "", "(12-13)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 24, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidStun3"] = { type = "Synthesis", affix = "", "(14-15)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 36, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidStunJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidStunCastingJewel1_"] = { type = "Synthesis", affix = "", "(16-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAreaOfEffectOnStun1"] = { type = "Synthesis", affix = "", "(20-25)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 56, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitUnwaveringStance1"] = { type = "Synthesis", affix = "", "Unwavering Stance", statOrder = { 10820 }, level = 65, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitImmuneToBleed1____"] = { type = "Synthesis", affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4215 }, level = 56, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitSelfAilmentDuration1"] = { type = "Synthesis", affix = "", "(15-20)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 15, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["SynthesisImplicitSelfAilmentDuration2"] = { type = "Synthesis", affix = "", "(21-35)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 24, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["SynthesisImplicitSelfAilmentDuration3"] = { type = "Synthesis", affix = "", "(36-50)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 36, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["SynthesisImplicitSelfAilmentDurationJewel1_"] = { type = "Synthesis", affix = "", "(5-7)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["SynthesisImplicitSelfAilmentDurationJewel2"] = { type = "Synthesis", affix = "", "(8-10)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["SynthesisImplicitAilmentDamage1"] = { type = "Synthesis", affix = "", "8% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage with Ailments", statOrder = { 4983 }, level = 15, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage with Ailments", statOrder = { 4983 }, level = 24, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Damage with Ailments", statOrder = { 4983 }, level = 36, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Damage with Ailments", statOrder = { 4983 }, level = 48, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["SynthesisImplicitAilmentEffect1"] = { type = "Synthesis", affix = "", "6% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["SynthesisImplicitAilmentEffect2_"] = { type = "Synthesis", affix = "", "7% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 15, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["SynthesisImplicitAilmentEffect3"] = { type = "Synthesis", affix = "", "8% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 24, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["SynthesisImplicitAilmentEffect4"] = { type = "Synthesis", affix = "", "9% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 36, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["SynthesisImplicitAilmentEffect5"] = { type = "Synthesis", affix = "", "10% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 48, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["SynthesisImplicitChanceToIgnite1"] = { type = "Synthesis", affix = "", "6% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgnite2"] = { type = "Synthesis", affix = "", "7% chance to Ignite", statOrder = { 2026 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgnite3"] = { type = "Synthesis", affix = "", "8% chance to Ignite", statOrder = { 2026 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgniteTwoHand1_"] = { type = "Synthesis", affix = "", "(9-10)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgniteTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Ignite", statOrder = { 2026 }, level = 15, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgniteTwoHand3_"] = { type = "Synthesis", affix = "", "(13-15)% chance to Ignite", statOrder = { 2026 }, level = 24, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgniteJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToIgniteJewel2"] = { type = "Synthesis", affix = "", "3% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitIgniteDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 36, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitIgniteDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 48, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitFasterIgnite1__"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (7-10)% faster", statOrder = { 2564 }, level = 56, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitFasterIgniteWeapon1_"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (15-20)% faster", statOrder = { 2564 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitFasterIgniteWeapon2"] = { type = "Synthesis", affix = "", "Ignites you inflict deal Damage (30-35)% faster", statOrder = { 2564 }, level = 48, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitAvoidIgnite1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 15, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitAvoidIgnite2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 24, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitAvoidIgnite3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 36, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitAvoidIgniteJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitChanceToFreeze1"] = { type = "Synthesis", affix = "", "6% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreeze2"] = { type = "Synthesis", affix = "", "7% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreeze3"] = { type = "Synthesis", affix = "", "8% chance to Freeze", statOrder = { 2029 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreezeTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreezeTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Freeze", statOrder = { 2029 }, level = 15, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreezeTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Freeze", statOrder = { 2029 }, level = 24, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreezeJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToFreezeJewel2"] = { type = "Synthesis", affix = "", "3% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitFreezeDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 36, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitFreezeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 48, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidChill1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Chilled", statOrder = { 1844 }, level = 15, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidChill2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Chilled", statOrder = { 1844 }, level = 24, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidChill3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Chilled", statOrder = { 1844 }, level = 36, group = "AvoidChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidFreeze1_"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 15, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidFreeze2"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 24, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidFreeze3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 36, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitAvoidFreezeJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "AvoidFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChillDurationJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChillDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChillEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 36, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChillEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 48, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChillEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitChanceToShock1"] = { type = "Synthesis", affix = "", "6% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShock2"] = { type = "Synthesis", affix = "", "7% chance to Shock", statOrder = { 2033 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShock3"] = { type = "Synthesis", affix = "", "8% chance to Shock", statOrder = { 2033 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShockTwoHand1"] = { type = "Synthesis", affix = "", "(9-10)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShockTwoHand2"] = { type = "Synthesis", affix = "", "(11-12)% chance to Shock", statOrder = { 2033 }, level = 15, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShockTwoHand3"] = { type = "Synthesis", affix = "", "(13-15)% chance to Shock", statOrder = { 2033 }, level = 24, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShockJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitChanceToShockJewel2"] = { type = "Synthesis", affix = "", "3% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockDuration1"] = { type = "Synthesis", affix = "", "(8-10)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 36, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 48, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockDurationJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockDurationJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidShock1"] = { type = "Synthesis", affix = "", "(13-14)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 15, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidShock2_"] = { type = "Synthesis", affix = "", "(15-17)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 24, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidShock3"] = { type = "Synthesis", affix = "", "(18-20)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 36, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidShockJewel1____"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "AvoidShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockEffect1"] = { type = "Synthesis", affix = "", "(7-10)% increased Effect of Shock", statOrder = { 10008 }, level = 36, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockEffect2"] = { type = "Synthesis", affix = "", "(11-15)% increased Effect of Shock", statOrder = { 10008 }, level = 48, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitShockEffectJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Effect of Shock", statOrder = { 10008 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitBurnDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamage2__"] = { type = "Synthesis", affix = "", "(12-13)% increased Burning Damage", statOrder = { 1877 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Burning Damage", statOrder = { 1877 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageOneHand1"] = { type = "Synthesis", affix = "", "(14-18)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageOneHand2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Burning Damage", statOrder = { 1877 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageOneHand3"] = { type = "Synthesis", affix = "", "(24-28)% increased Burning Damage", statOrder = { 1877 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-27)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageTwoHand2"] = { type = "Synthesis", affix = "", "(28-35)% increased Burning Damage", statOrder = { 1877 }, level = 15, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageTwoHand3"] = { type = "Synthesis", affix = "", "(36-44)% increased Burning Damage", statOrder = { 1877 }, level = 24, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitBurnDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitPoisonDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitPoisonDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Poison", statOrder = { 3181 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitPoisonDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Poison", statOrder = { 3181 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitWeaponPoisonDamage1"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitWeaponPoisonDamage2"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Poison", statOrder = { 3181 }, level = 15, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitWeaponPoisonDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Poison", statOrder = { 3181 }, level = 24, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitPoisonDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitPoisonDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitLocalPoisonOnHit1_"] = { type = "Synthesis", affix = "", "(25-30)% chance to Poison on Hit", statOrder = { 8002 }, level = 50, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["SynthesisImplicitChanceToPoisonJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Poison on Hit", statOrder = { 3173 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitChanceToPoisonJewel2_"] = { type = "Synthesis", affix = "", "3% chance to Poison on Hit", statOrder = { 3173 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitPoisonDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Poison Duration", statOrder = { 3170 }, level = 55, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitFasterPoison1"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (7-10)% faster", statOrder = { 6545 }, level = 56, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitFasterPoisonWeapon1_"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (15-20)% faster", statOrder = { 6545 }, level = 36, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitFasterPoisonWeapon2__"] = { type = "Synthesis", affix = "", "Poisons you inflict deal Damage (30-35)% faster", statOrder = { 6545 }, level = 48, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["SynthesisImplicitAvoidPoison1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 24, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitAvoidPoison2"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 36, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitAvoidPoison3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 48, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitAvoidPoisonJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SynthesisImplicitBleedDamage1"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage with Bleeding", statOrder = { 3169 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitBleedDamage2"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage with Bleeding", statOrder = { 3169 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitBleedDamage3"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage with Bleeding", statOrder = { 3169 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitWeaponBleedDamage1_"] = { type = "Synthesis", affix = "", "(14-18)% increased Damage with Bleeding", statOrder = { 3169 }, level = 15, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitWeaponBleedDamage2_"] = { type = "Synthesis", affix = "", "(19-23)% increased Damage with Bleeding", statOrder = { 3169 }, level = 24, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitWeaponBleedDamage3"] = { type = "Synthesis", affix = "", "(24-28)% increased Damage with Bleeding", statOrder = { 3169 }, level = 36, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitBleedDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitBleedDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitLocalBleedOnHit1"] = { type = "Synthesis", affix = "", "(15-20)% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 50, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitChanceToBleedJewel1"] = { type = "Synthesis", affix = "", "Attacks have (1-2)% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitChanceToBleedJewel2__"] = { type = "Synthesis", affix = "", "Attacks have 3% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitFasterBleed1_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (7-10)% faster", statOrder = { 6544 }, level = 56, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitFasterBleedWeapon1"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (15-20)% faster", statOrder = { 6544 }, level = 36, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitFasterBleedWeapon2_"] = { type = "Synthesis", affix = "", "Bleeding you inflict deals Damage (30-35)% faster", statOrder = { 6544 }, level = 48, group = "FasterBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitBleedDuration1"] = { type = "Synthesis", affix = "", "(8-12)% increased Bleeding Duration", statOrder = { 4994 }, level = 55, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitAvoidBleed1"] = { type = "Synthesis", affix = "", "(14-16)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 15, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitAvoidBleed2_"] = { type = "Synthesis", affix = "", "(18-21)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 24, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitAvoidBleed3"] = { type = "Synthesis", affix = "", "(22-25)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 36, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitAvoidBleedJewel1"] = { type = "Synthesis", affix = "", "(8-10)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SynthesisImplicitAllDamage1_"] = { type = "Synthesis", affix = "", "7% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamage2"] = { type = "Synthesis", affix = "", "(8-9)% increased Damage", statOrder = { 1191 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamage3"] = { type = "Synthesis", affix = "", "(10-11)% increased Damage", statOrder = { 1191 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamage4"] = { type = "Synthesis", affix = "", "(12-13)% increased Damage", statOrder = { 1191 }, level = 36, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamage5"] = { type = "Synthesis", affix = "", "(14-15)% increased Damage", statOrder = { 1191 }, level = 48, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamage1"] = { type = "Synthesis", affix = "", "(15-18)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Damage", statOrder = { 1191 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamage3_"] = { type = "Synthesis", affix = "", "(23-26)% increased Damage", statOrder = { 1191 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamageTwoHand1_"] = { type = "Synthesis", affix = "", "(21-26)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamageTwoHand2"] = { type = "Synthesis", affix = "", "(27-32)% increased Damage", statOrder = { 1191 }, level = 15, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponAllDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Damage", statOrder = { 1191 }, level = 24, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamageJewel1"] = { type = "Synthesis", affix = "", "2% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAllDamageJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitFireDamage1_"] = { type = "Synthesis", affix = "", "8% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Fire Damage", statOrder = { 1357 }, level = 15, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Fire Damage", statOrder = { 1357 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Fire Damage", statOrder = { 1357 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Fire Damage", statOrder = { 1357 }, level = 56, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Attack Skills", statOrder = { 6576 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitFireDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Attack Skills", statOrder = { 6576 }, level = 1, group = "FireDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitFireDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Fire Damage with Spell Skills", statOrder = { 6577 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitFireDamageSpellsJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Fire Damage with Spell Skills", statOrder = { 6577 }, level = 1, group = "FireDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitPhysicalConvertedToFireMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 50, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitPhysicalConvertedToFire1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 55, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitPhysicalConvertedToFire2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 60, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitPhysicalConvertedToFireJewel1_"] = { type = "Synthesis", affix = "", "3% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFireImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitPhysicalAddedAsFire1"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 45, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitPhysicalAddedAsFire2"] = { type = "Synthesis", affix = "", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 55, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["SynthesisImplicitFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6563 }, level = 55, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireLeechMinor1__"] = { type = "Synthesis", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["SynthesisImplicitFireLeech1"] = { type = "Synthesis", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 55, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1357 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Fire Damage", statOrder = { 1357 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(29-32)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Fire Damage", statOrder = { 1357 }, level = 24, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Fire Damage", statOrder = { 1357 }, level = 36, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitWeaponFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Fire Damage", statOrder = { 1357 }, level = 48, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitLocalFireDamage1"] = { type = "Synthesis", affix = "", "Adds (4-8) to (9-15) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamage2"] = { type = "Synthesis", affix = "", "Adds (9-12) to (16-23) Fire Damage", statOrder = { 1362 }, level = 15, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamage3"] = { type = "Synthesis", affix = "", "Adds (13-18) to (24-31) Fire Damage", statOrder = { 1362 }, level = 24, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamage4"] = { type = "Synthesis", affix = "", "Adds (19-24) to (32-43) Fire Damage", statOrder = { 1362 }, level = 36, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamage5"] = { type = "Synthesis", affix = "", "Adds (25-30) to (44-53) Fire Damage", statOrder = { 1362 }, level = 48, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (15-24) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-22) to (26-41) Fire Damage", statOrder = { 1362 }, level = 15, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (23-31) to (42-56) Fire Damage", statOrder = { 1362 }, level = 24, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (32-41) to (57-74) Fire Damage", statOrder = { 1362 }, level = 36, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitLocalFireDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (42-52) to (75-93) Fire Damage", statOrder = { 1362 }, level = 48, group = "LocalFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitSpellAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamage2"] = { type = "Synthesis", affix = "", "Adds (7-9) to (12-17) Fire Damage to Spells", statOrder = { 1404 }, level = 15, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamage3"] = { type = "Synthesis", affix = "", "Adds (10-13) to (17-22) Fire Damage to Spells", statOrder = { 1404 }, level = 24, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamage4"] = { type = "Synthesis", affix = "", "Adds (14-17) to (23-31) Fire Damage to Spells", statOrder = { 1404 }, level = 36, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamage5"] = { type = "Synthesis", affix = "", "Adds (18-21) to (31-38) Fire Damage to Spells", statOrder = { 1404 }, level = 48, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (5-9) to (10-15) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (10-14) to (16-25) Fire Damage to Spells", statOrder = { 1404 }, level = 15, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (14-19) to (26-34) Fire Damage to Spells", statOrder = { 1404 }, level = 24, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (20-25) to (35-45) Fire Damage to Spells", statOrder = { 1404 }, level = 36, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitSpellAddedFireDamageTwoHand5__"] = { type = "Synthesis", affix = "", "Adds (26-32) to (46-56) Fire Damage to Spells", statOrder = { 1404 }, level = 48, group = "SpellAddedFireDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SynthesisImplicitGlobalAddedFireDamage1"] = { type = "Synthesis", affix = "", "Adds (13-18) to (28-33) Fire Damage", statOrder = { 1359 }, level = 50, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitFireAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 55, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["SynthesisImplicitFireAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 65, group = "FireAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["SynthesisImplicitColdDamage1"] = { type = "Synthesis", affix = "", "8% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Cold Damage", statOrder = { 1366 }, level = 15, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamage5_"] = { type = "Synthesis", affix = "", "(15-16)% increased Cold Damage", statOrder = { 1366 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Cold Damage", statOrder = { 1366 }, level = 56, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Attack Skills", statOrder = { 5821 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitColdDamageAttacksJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Attack Skills", statOrder = { 5821 }, level = 1, group = "ColdDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitColdDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Cold Damage with Spell Skills", statOrder = { 5822 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitColdDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Cold Damage with Spell Skills", statOrder = { 5822 }, level = 1, group = "ColdDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitPhysicalConvertedToColdMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 50, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["SynthesisImplicitPhysicalConvertedToCold1_"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 55, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["SynthesisImplicitPhysicalConvertedToCold2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 60, group = "ConvertPhysicalToColdImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamagePerFrenzyCharge1"] = { type = "Synthesis", affix = "", "4 to 7 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 55, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["SynthesisImplicitColdLeech1"] = { type = "Synthesis", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 55, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamage5"] = { type = "Synthesis", affix = "", "(27-30)% increased Cold Damage", statOrder = { 1366 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Cold Damage", statOrder = { 1366 }, level = 24, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Cold Damage", statOrder = { 1366 }, level = 36, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitWeaponColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "(41-44)% increased Cold Damage", statOrder = { 1366 }, level = 48, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitLocalColdDamage1"] = { type = "Synthesis", affix = "", "Adds (3-6) to (7-11) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamage2"] = { type = "Synthesis", affix = "", "Adds (7-10) to (12-18) Cold Damage", statOrder = { 1371 }, level = 15, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamage3"] = { type = "Synthesis", affix = "", "Adds (11-15) to (19-26) Cold Damage", statOrder = { 1371 }, level = 24, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamage4"] = { type = "Synthesis", affix = "", "Adds (16-20) to (27-35) Cold Damage", statOrder = { 1371 }, level = 36, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamage5"] = { type = "Synthesis", affix = "", "Adds (21-25) to (36-43) Cold Damage", statOrder = { 1371 }, level = 48, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamageTwoHand1__"] = { type = "Synthesis", affix = "", "Adds (6-9) to (13-21) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamageTwoHand2__"] = { type = "Synthesis", affix = "", "Adds (10-17) to (22-32) Cold Damage", statOrder = { 1371 }, level = 15, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamageTwoHand3_"] = { type = "Synthesis", affix = "", "Adds (19-26) to (34-45) Cold Damage", statOrder = { 1371 }, level = 24, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (27-35) to (46-61) Cold Damage", statOrder = { 1371 }, level = 36, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLocalColdDamageTwoHand5_"] = { type = "Synthesis", affix = "", "Adds (36-43) to (51-75) Cold Damage", statOrder = { 1371 }, level = 48, group = "LocalColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitSpellAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (3-5) to (5-8) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamage2_"] = { type = "Synthesis", affix = "", "Adds (5-7) to (9-13) Cold Damage to Spells", statOrder = { 1405 }, level = 15, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamage3"] = { type = "Synthesis", affix = "", "Adds (8-11) to (14-19) Cold Damage to Spells", statOrder = { 1405 }, level = 24, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamage4"] = { type = "Synthesis", affix = "", "Adds (12-14) to (19-25) Cold Damage to Spells", statOrder = { 1405 }, level = 36, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamage5"] = { type = "Synthesis", affix = "", "Adds (15-18) to (26-31) Cold Damage to Spells", statOrder = { 1405 }, level = 48, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds (4-6) to (8-13) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (7-11) to (14-20) Cold Damage to Spells", statOrder = { 1405 }, level = 15, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (12-16) to (21-28) Cold Damage to Spells", statOrder = { 1405 }, level = 24, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (17-21) to (28-38) Cold Damage to Spells", statOrder = { 1405 }, level = 36, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitSpellAddedColdDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (22-26) to (31-46) Cold Damage to Spells", statOrder = { 1405 }, level = 48, group = "SpellAddedColdDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SynthesisImplicitGlobalAddedColdDamage1_"] = { type = "Synthesis", affix = "", "Adds (12-16) to (24-28) Cold Damage", statOrder = { 1368 }, level = 50, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplier1"] = { type = "Synthesis", affix = "", "+(9-10)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand1_"] = { type = "Synthesis", affix = "", "+(21-23)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 15, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand2_"] = { type = "Synthesis", affix = "", "+(24-26)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 24, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdDamageOverTimeMultiplierTwoHand3_"] = { type = "Synthesis", affix = "", "+(27-30)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 36, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitColdAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 55, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["SynthesisImplicitColdAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 65, group = "ColdAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["SynthesisImplicitLightningDamage1"] = { type = "Synthesis", affix = "", "8% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Lightning Damage", statOrder = { 1377 }, level = 15, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Lightning Damage", statOrder = { 1377 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Lightning Damage", statOrder = { 1377 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Lightning Damage", statOrder = { 1377 }, level = 56, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningDamageAttacksJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Attack Skills", statOrder = { 7453 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLightningDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Attack Skills", statOrder = { 7453 }, level = 1, group = "LightningDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLightningDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Lightning Damage with Spell Skills", statOrder = { 7454 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitLightningDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Lightning Damage with Spell Skills", statOrder = { 7454 }, level = 1, group = "LightningDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitPhysicalConvertedToLightningMinor1"] = { type = "Synthesis", affix = "", "(7-10)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 50, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["SynthesisImplicitPhysicalConvertedToLightning1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 55, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["SynthesisImplicitPhysicalConvertedToLightning2"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 60, group = "ConvertPhysicalToLightningImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["SynthesisImplicitPhysicalAddedAsLightning1___"] = { type = "Synthesis", affix = "", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 55, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningLeech1"] = { type = "Synthesis", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 55, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamage1_"] = { type = "Synthesis", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamage3_"] = { type = "Synthesis", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1377 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamage4_"] = { type = "Synthesis", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamage5_"] = { type = "Synthesis", affix = "", "(27-30)% increased Lightning Damage", statOrder = { 1377 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "(29-32)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "(33-36)% increased Lightning Damage", statOrder = { 1377 }, level = 24, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Lightning Damage", statOrder = { 1377 }, level = 36, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitWeaponLightningDamageTwoHand5_"] = { type = "Synthesis", affix = "", "(41-44)% increased Lightning Damage", statOrder = { 1377 }, level = 48, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLocalLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (16-25) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (26-40) Lightning Damage", statOrder = { 1382 }, level = 15, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamage3_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (41-55) Lightning Damage", statOrder = { 1382 }, level = 24, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (56-70) Lightning Damage", statOrder = { 1382 }, level = 36, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-6) to (71-83) Lightning Damage", statOrder = { 1382 }, level = 48, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (29-46) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (1-3) to (48-75) Lightning Damage", statOrder = { 1382 }, level = 15, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-6) to (77-95) Lightning Damage", statOrder = { 1382 }, level = 24, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-8) to (96-123) Lightning Damage", statOrder = { 1382 }, level = 36, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitLocalLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-10) to (124-145) Lightning Damage", statOrder = { 1382 }, level = 48, group = "LocalLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitSpellAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to (12-18) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamage2"] = { type = "Synthesis", affix = "", "Adds (1-2) to (19-28) Lightning Damage to Spells", statOrder = { 1406 }, level = 15, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamage3"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-39) Lightning Damage to Spells", statOrder = { 1406 }, level = 24, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamage4"] = { type = "Synthesis", affix = "", "Adds (2-4) to (40-49) Lightning Damage to Spells", statOrder = { 1406 }, level = 36, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamage5"] = { type = "Synthesis", affix = "", "Adds (2-5) to (50-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 48, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds 1 to (18-28) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand2_"] = { type = "Synthesis", affix = "", "Adds (1-3) to (29-46) Lightning Damage to Spells", statOrder = { 1406 }, level = 15, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (2-4) to (47-58) Lightning Damage to Spells", statOrder = { 1406 }, level = 24, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand4"] = { type = "Synthesis", affix = "", "Adds (2-5) to (59-75) Lightning Damage to Spells", statOrder = { 1406 }, level = 36, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitSpellAddedLightningDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (3-7) to (75-88) Lightning Damage to Spells", statOrder = { 1406 }, level = 48, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SynthesisImplicitGlobalAddedLightningDamage1"] = { type = "Synthesis", affix = "", "Adds (1-5) to (50-52) Lightning Damage", statOrder = { 1379 }, level = 50, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitLightningAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 55, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["SynthesisImplicitLightningAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 65, group = "LightningAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["SynthesisImplicitPhysicalDamage1_"] = { type = "Synthesis", affix = "", "8% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Global Physical Damage", statOrder = { 1231 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamage3_"] = { type = "Synthesis", affix = "", "(11-12)% increased Global Physical Damage", statOrder = { 1231 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Global Physical Damage", statOrder = { 1231 }, level = 36, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Global Physical Damage", statOrder = { 1231 }, level = 48, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamage6"] = { type = "Synthesis", affix = "", "(17-20)% increased Global Physical Damage", statOrder = { 1231 }, level = 56, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamageJewel2__"] = { type = "Synthesis", affix = "", "(4-5)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamageAttacksJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Attack Skills", statOrder = { 9664 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitPhysicalDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Attack Skills", statOrder = { 9664 }, level = 1, group = "PhysicalDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitPhysicalDamageSpellsJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Spell Skills", statOrder = { 9665 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SynthesisImplicitPhysicalDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Spell Skills", statOrder = { 9665 }, level = 1, group = "PhysicalDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SynthesisImplicitAttackChanceToImpale1"] = { type = "Synthesis", affix = "", "(6-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, }, + ["SynthesisImplicitPhysicalLeech1"] = { type = "Synthesis", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 55, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamage1"] = { type = "Synthesis", affix = "", "(19-22)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamage2"] = { type = "Synthesis", affix = "", "(23-26)% increased Global Physical Damage", statOrder = { 1231 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamage3"] = { type = "Synthesis", affix = "", "(27-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamageTwoHand1"] = { type = "Synthesis", affix = "", "(27-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamageTwoHand2_"] = { type = "Synthesis", affix = "", "(33-38)% increased Global Physical Damage", statOrder = { 1231 }, level = 15, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitWeaponPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "(39-44)% increased Global Physical Damage", statOrder = { 1231 }, level = 24, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitLocalPhysicalDamage1"] = { type = "Synthesis", affix = "", "(13-14)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalPhysicalDamage2"] = { type = "Synthesis", affix = "", "(15-16)% increased Physical Damage", statOrder = { 1232 }, level = 15, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalPhysicalDamage3"] = { type = "Synthesis", affix = "", "(17-19)% increased Physical Damage", statOrder = { 1232 }, level = 24, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalPhysicalDamage4"] = { type = "Synthesis", affix = "", "(20-22)% increased Physical Damage", statOrder = { 1232 }, level = 36, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalPhysicalDamage5"] = { type = "Synthesis", affix = "", "(23-25)% increased Physical Damage", statOrder = { 1232 }, level = 48, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamage1"] = { type = "Synthesis", affix = "", "Adds 1 to 2 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamage2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (3-4) Physical Damage", statOrder = { 1276 }, level = 15, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamage3"] = { type = "Synthesis", affix = "", "Adds (3-4) to (5-6) Physical Damage", statOrder = { 1276 }, level = 24, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamage4"] = { type = "Synthesis", affix = "", "Adds (5-6) to (7-8) Physical Damage", statOrder = { 1276 }, level = 36, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamage5"] = { type = "Synthesis", affix = "", "Adds (6-7) to (9-10) Physical Damage", statOrder = { 1276 }, level = 48, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand1_"] = { type = "Synthesis", affix = "", "Adds 1 to (2-3) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Physical Damage", statOrder = { 1276 }, level = 15, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (4-5) to (6-7) Physical Damage", statOrder = { 1276 }, level = 24, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand4_"] = { type = "Synthesis", affix = "", "Adds (6-7) to (8-10) Physical Damage", statOrder = { 1276 }, level = 36, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitLocalAddedPhysicalDamageTwoHand5"] = { type = "Synthesis", affix = "", "Adds (8-9) to (11-13) Physical Damage", statOrder = { 1276 }, level = 48, group = "LocalPhysicalDamageTwoHanded", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAddedAsChaos1"] = { type = "Synthesis", affix = "", "Gain (4-6)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 55, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["SynthesisImplicitPhysicalAddedAsChaos2"] = { type = "Synthesis", affix = "", "Gain (7-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 65, group = "PhysicalAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["SynthesisImplicitChaosDamage1"] = { type = "Synthesis", affix = "", "8% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamage2_"] = { type = "Synthesis", affix = "", "(9-10)% increased Chaos Damage", statOrder = { 1385 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Chaos Damage", statOrder = { 1385 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Chaos Damage", statOrder = { 1385 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Chaos Damage", statOrder = { 1385 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamage6_"] = { type = "Synthesis", affix = "", "(17-20)% increased Chaos Damage", statOrder = { 1385 }, level = 56, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageAttacksJewel1___"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Attack Skills", statOrder = { 5749 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitChaosDamageAttacksJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Attack Skills", statOrder = { 5749 }, level = 1, group = "ChaosDamageAttackSkills", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitChaosDamageSpellsJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Chaos Damage with Spell Skills", statOrder = { 5750 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SynthesisImplicitChaosDamageSpellsJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Chaos Damage with Spell Skills", statOrder = { 5750 }, level = 1, group = "ChaosDamageSpellSkills", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SynthesisImplicitPhysicalConvertedToChaos1"] = { type = "Synthesis", affix = "", "(15-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 55, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["SynthesisImplicitPhysicalConvertedToChaos2_"] = { type = "Synthesis", affix = "", "(40-50)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 60, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["SynthesisImplicitChaosLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, + ["SynthesisImplicitChaosLeech1"] = { type = "Synthesis", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 55, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamage1"] = { type = "Synthesis", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1385 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamage2"] = { type = "Synthesis", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1385 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamage3"] = { type = "Synthesis", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1385 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamage4"] = { type = "Synthesis", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1385 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "(25-28)% increased Chaos Damage", statOrder = { 1385 }, level = 15, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamageTwoHand2___"] = { type = "Synthesis", affix = "", "(29-32)% increased Chaos Damage", statOrder = { 1385 }, level = 24, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamageTwoHand3_"] = { type = "Synthesis", affix = "", "(33-36)% increased Chaos Damage", statOrder = { 1385 }, level = 36, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitWeaponChaosDamageTwoHand4"] = { type = "Synthesis", affix = "", "(37-40)% increased Chaos Damage", statOrder = { 1385 }, level = 48, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitLocalChaosDamage1"] = { type = "Synthesis", affix = "", "Adds (4-9) to (11-21) Chaos Damage", statOrder = { 1390 }, level = 15, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitLocalChaosDamage2_"] = { type = "Synthesis", affix = "", "Adds (10-18) to (22-34) Chaos Damage", statOrder = { 1390 }, level = 24, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitLocalChaosDamage3"] = { type = "Synthesis", affix = "", "Adds (19-28) to (35-49) Chaos Damage", statOrder = { 1390 }, level = 36, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitLocalChaosDamageTwoHand1"] = { type = "Synthesis", affix = "", "Adds (8-14) to (17-30) Chaos Damage", statOrder = { 1390 }, level = 15, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitLocalChaosDamageTwoHand2"] = { type = "Synthesis", affix = "", "Adds (15-24) to (31-57) Chaos Damage", statOrder = { 1390 }, level = 24, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitLocalChaosDamageTwoHand3"] = { type = "Synthesis", affix = "", "Adds (26-50) to (58-86) Chaos Damage", statOrder = { 1390 }, level = 36, group = "LocalChaosDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SynthesisImplicitGlobalAddedChaosDamage1_"] = { type = "Synthesis", affix = "", "Adds (11-13) to (19-23) Chaos Damage", statOrder = { 1386 }, level = 50, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplier1_"] = { type = "Synthesis", affix = "", "+(9-10)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplier2"] = { type = "Synthesis", affix = "", "+(11-12)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplier3_"] = { type = "Synthesis", affix = "", "+(13-15)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand1"] = { type = "Synthesis", affix = "", "+(21-23)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 15, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand2"] = { type = "Synthesis", affix = "", "+(24-26)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 24, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitChaosDamageOverTimeMultiplierTwoHand3"] = { type = "Synthesis", affix = "", "+(27-30)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 36, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["SynthesisImplicitDegenerationDamage1_"] = { type = "Synthesis", affix = "", "(9-10)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDegenerationDamage2"] = { type = "Synthesis", affix = "", "(11-12)% increased Damage over Time", statOrder = { 1210 }, level = 15, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDegenerationDamage3"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage over Time", statOrder = { 1210 }, level = 24, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDegenerationDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDegenerationDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitWeaponElementalDamage1_"] = { type = "Synthesis", affix = "", "(12-13)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 15, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitWeaponElementalDamage2"] = { type = "Synthesis", affix = "", "(14-15)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 24, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitWeaponElementalDamage3"] = { type = "Synthesis", affix = "", "(16-18)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 36, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitWeaponElementalDamage4"] = { type = "Synthesis", affix = "", "(19-21)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 48, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitWeaponElementalDamage5"] = { type = "Synthesis", affix = "", "(22-24)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 56, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitPhysicalDamageAddedAsRandomElement1"] = { type = "Synthesis", affix = "", "Gain (8-10)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 65, group = "PhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, }, + ["SynthesisImplicitLocalElementalPen1_"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 2% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitLocalElementalPen2"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate 3% Elemental Resistances", statOrder = { 3761 }, level = 15, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitLocalElementalPen3"] = { type = "Synthesis", affix = "", "Attacks with this Weapon Penetrate (4-5)% Elemental Resistances", statOrder = { 3761 }, level = 24, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["SynthesisImplicitElementalDamage1"] = { type = "Synthesis", affix = "", "8% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamage2"] = { type = "Synthesis", affix = "", "(9-10)% increased Elemental Damage", statOrder = { 1980 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamage3"] = { type = "Synthesis", affix = "", "(11-12)% increased Elemental Damage", statOrder = { 1980 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamage4"] = { type = "Synthesis", affix = "", "(13-14)% increased Elemental Damage", statOrder = { 1980 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamage5"] = { type = "Synthesis", affix = "", "(15-16)% increased Elemental Damage", statOrder = { 1980 }, level = 48, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHigh1__"] = { type = "Synthesis", affix = "", "(17-19)% increased Elemental Damage", statOrder = { 1980 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHigh2"] = { type = "Synthesis", affix = "", "(20-22)% increased Elemental Damage", statOrder = { 1980 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHigh3__"] = { type = "Synthesis", affix = "", "(23-26)% increased Elemental Damage", statOrder = { 1980 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHighTwoHand1"] = { type = "Synthesis", affix = "", "(21-26)% increased Elemental Damage", statOrder = { 1980 }, level = 15, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHighTwoHand2_"] = { type = "Synthesis", affix = "", "(27-32)% increased Elemental Damage", statOrder = { 1980 }, level = 24, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageHighTwoHand3"] = { type = "Synthesis", affix = "", "(33-38)% increased Elemental Damage", statOrder = { 1980 }, level = 36, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitElementalLeechMinor1"] = { type = "Synthesis", affix = "", "0.2% of Elemental Damage Leeched as Life", statOrder = { 1686 }, level = 45, group = "ElementalDamageLeechedAsLifePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitFirePenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Fire Resistance", statOrder = { 2981 }, level = 60, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SynthesisImplicitColdPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Cold Resistance", statOrder = { 2983 }, level = 60, group = "ColdResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["SynthesisImplicitLightningPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Lightning Resistance", statOrder = { 2984 }, level = 60, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SynthesisImplicitFirePenetrationWeapon1"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Fire Resistance", statOrder = { 3590 }, level = 60, group = "FirePenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitColdPenetrationWeapon1_"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Cold Resistance", statOrder = { 3589 }, level = 60, group = "ColdPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitLightningPenetrationWeapon1__"] = { type = "Synthesis", affix = "", "Damage with Weapons Penetrates (4-6)% Lightning Resistance", statOrder = { 3591 }, level = 60, group = "LightningPenetrationWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitElementalPenetration1"] = { type = "Synthesis", affix = "", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2980 }, level = 60, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SynthesisImplicitMeleeDamageJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitMeleeDamageJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Maces or Sceptres", statOrder = { 1327 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Axes", statOrder = { 1303 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Swords", statOrder = { 1338 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitBowIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Bows", statOrder = { 1333 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitClawIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Claws", statOrder = { 1315 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Daggers", statOrder = { 1321 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitWandIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Wands", statOrder = { 1345 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Physical Damage with Staves", statOrder = { 1307 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitMaceIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Maces or Sceptres", statOrder = { 1327 }, level = 1, group = "MaceIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitAxeIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Axes", statOrder = { 1303 }, level = 1, group = "AxeIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitSwordIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Swords", statOrder = { 1338 }, level = 1, group = "SwordIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitBowIncreasedPhysicalDamageJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Bows", statOrder = { 1333 }, level = 1, group = "BowIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitClawIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Claws", statOrder = { 1315 }, level = 1, group = "ClawIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitDaggerIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Daggers", statOrder = { 1321 }, level = 1, group = "DaggerIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitWandIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Wands", statOrder = { 1345 }, level = 1, group = "WandIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitStaffIncreasedPhysicalDamageJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Physical Damage with Staves", statOrder = { 1307 }, level = 1, group = "StaffIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SynthesisImplicitSpellDamageWithStaffJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while wielding a Staff", statOrder = { 1227 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while Dual Wielding", statOrder = { 1230 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageWithShieldJewel1__"] = { type = "Synthesis", affix = "", "(3-4)% increased Spell Damage while holding a Shield", statOrder = { 1229 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageWithStaffJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while wielding a Staff", statOrder = { 1227 }, level = 1, group = "SpellDamageWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while Dual Wielding", statOrder = { 1230 }, level = 1, group = "SpellDamageWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageWithShieldJewel2"] = { type = "Synthesis", affix = "", "(5-6)% increased Spell Damage while holding a Shield", statOrder = { 1229 }, level = 1, group = "SpellDamageWithShield", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitAttackDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitAttackDamage2"] = { type = "Synthesis", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1198 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitAttackDamage3"] = { type = "Synthesis", affix = "", "(17-20)% increased Attack Damage", statOrder = { 1198 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamage1"] = { type = "Synthesis", affix = "", "(23-26)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamage2"] = { type = "Synthesis", affix = "", "(27-30)% increased Attack Damage", statOrder = { 1198 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamage3"] = { type = "Synthesis", affix = "", "(31-35)% increased Attack Damage", statOrder = { 1198 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamageTwoHand1"] = { type = "Synthesis", affix = "", "(29-35)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamageTwoHand2"] = { type = "Synthesis", affix = "", "(36-44)% increased Attack Damage", statOrder = { 1198 }, level = 15, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitWeaponAttackDamageTwoHand3"] = { type = "Synthesis", affix = "", "(45-51)% increased Attack Damage", statOrder = { 1198 }, level = 24, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitSpellDamage1"] = { type = "Synthesis", affix = "", "(12-13)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamage2_"] = { type = "Synthesis", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1223 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamage3_"] = { type = "Synthesis", affix = "", "(17-20)% increased Spell Damage", statOrder = { 1223 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamage1"] = { type = "Synthesis", affix = "", "(16-18)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamage2"] = { type = "Synthesis", affix = "", "(19-22)% increased Spell Damage", statOrder = { 1223 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamage3"] = { type = "Synthesis", affix = "", "(23-26)% increased Spell Damage", statOrder = { 1223 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamage4"] = { type = "Synthesis", affix = "", "(27-30)% increased Spell Damage", statOrder = { 1223 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamage5"] = { type = "Synthesis", affix = "", "(31-35)% increased Spell Damage", statOrder = { 1223 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamageTwoHand1"] = { type = "Synthesis", affix = "", "(22-24)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamageTwoHand2"] = { type = "Synthesis", affix = "", "(25-28)% increased Spell Damage", statOrder = { 1223 }, level = 15, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamageTwoHand3"] = { type = "Synthesis", affix = "", "(29-35)% increased Spell Damage", statOrder = { 1223 }, level = 24, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamageTwoHand4_"] = { type = "Synthesis", affix = "", "(36-44)% increased Spell Damage", statOrder = { 1223 }, level = 36, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitWeaponSpellDamageTwoHand5"] = { type = "Synthesis", affix = "", "(45-51)% increased Spell Damage", statOrder = { 1223 }, level = 48, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellsDoubleDamageChance1__"] = { type = "Synthesis", affix = "", "Spells have a (8-10)% chance to deal Double Damage", statOrder = { 10136 }, level = 60, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellsDoubleDamageChance2_"] = { type = "Synthesis", affix = "", "Spells have a (16-18)% chance to deal Double Damage", statOrder = { 10136 }, level = 65, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitStrength1"] = { type = "Synthesis", affix = "", "+(6-8) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrength2__"] = { type = "Synthesis", affix = "", "+(9-11) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrength3"] = { type = "Synthesis", affix = "", "+(12-14) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrength4"] = { type = "Synthesis", affix = "", "+(15-17) to Strength", statOrder = { 1177 }, level = 15, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrength5"] = { type = "Synthesis", affix = "", "+(18-20) to Strength", statOrder = { 1177 }, level = 24, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrengthJewel1__"] = { type = "Synthesis", affix = "", "+(2-3) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitStrengthJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrength1_"] = { type = "Synthesis", affix = "", "4% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrength2_"] = { type = "Synthesis", affix = "", "5% increased Strength", statOrder = { 1184 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrength3_"] = { type = "Synthesis", affix = "", "6% increased Strength", statOrder = { 1184 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrengthTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrengthTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Strength", statOrder = { 1184 }, level = 16, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentStrengthTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Strength", statOrder = { 1184 }, level = 24, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Strength", statOrder = { 6058 }, level = 60, group = "DamagePer15Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAddedFireDamagePerStrength1"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitAddedFireDamagePerStrength2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 55, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["SynthesisImplicitSpellDamagePerStrength1_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Strength", statOrder = { 10156 }, level = 55, group = "SpellDamagePer16Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamagePerStrength2_"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Strength", statOrder = { 10153 }, level = 55, group = "SpellDamagePer10Strength", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageTakenPer250Strength1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Strength", statOrder = { 6110 }, level = 60, group = "DamageTakenPer250Strength", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitDexterity1"] = { type = "Synthesis", affix = "", "+(6-8) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterity2"] = { type = "Synthesis", affix = "", "+(9-11) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterity3"] = { type = "Synthesis", affix = "", "+(12-14) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterity4"] = { type = "Synthesis", affix = "", "+(15-17) to Dexterity", statOrder = { 1178 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterity5"] = { type = "Synthesis", affix = "", "+(18-20) to Dexterity", statOrder = { 1178 }, level = 24, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterityJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDexterityJewel2_"] = { type = "Synthesis", affix = "", "+(4-5) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterity1"] = { type = "Synthesis", affix = "", "4% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterity2"] = { type = "Synthesis", affix = "", "5% increased Dexterity", statOrder = { 1185 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterity3_"] = { type = "Synthesis", affix = "", "6% increased Dexterity", statOrder = { 1185 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterityTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterityTrinket2"] = { type = "Synthesis", affix = "", "(10-12)% increased Dexterity", statOrder = { 1185 }, level = 16, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentDexterityTrinket3"] = { type = "Synthesis", affix = "", "(13-15)% increased Dexterity", statOrder = { 1185 }, level = 24, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 60, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAddedColdDamagePerDexterity1_"] = { type = "Synthesis", affix = "", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitAddedColdDamagePerDexterity2"] = { type = "Synthesis", affix = "", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 55, group = "AddedColdDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["SynthesisImplicitSpellDamagePerDexterity1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10154 }, level = 55, group = "SpellDamagePer16Dexterity", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageTakenPer250Dexterity1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Dexterity", statOrder = { 6108 }, level = 60, group = "DamageTakenPer250Dexterity", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitIntelligence1"] = { type = "Synthesis", affix = "", "+(6-8) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligence2_"] = { type = "Synthesis", affix = "", "+(9-11) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligence3_"] = { type = "Synthesis", affix = "", "+(12-14) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligence4"] = { type = "Synthesis", affix = "", "+(15-17) to Intelligence", statOrder = { 1179 }, level = 15, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligence5"] = { type = "Synthesis", affix = "", "+(18-20) to Intelligence", statOrder = { 1179 }, level = 24, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligenceJewel1"] = { type = "Synthesis", affix = "", "+(2-3) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitIntelligenceJewel2"] = { type = "Synthesis", affix = "", "+(4-5) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligence1"] = { type = "Synthesis", affix = "", "4% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligence2_"] = { type = "Synthesis", affix = "", "5% increased Intelligence", statOrder = { 1186 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligence3_"] = { type = "Synthesis", affix = "", "6% increased Intelligence", statOrder = { 1186 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligenceTrinket1"] = { type = "Synthesis", affix = "", "(7-9)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligenceTrinket2_"] = { type = "Synthesis", affix = "", "(10-12)% increased Intelligence", statOrder = { 1186 }, level = 16, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentIntelligenceTrinket3_"] = { type = "Synthesis", affix = "", "(13-15)% increased Intelligence", statOrder = { 1186 }, level = 24, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Damage per 15 Intelligence", statOrder = { 6057 }, level = 60, group = "DamagePer15Intelligence", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAddedLightningDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitAddedLightningDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 55, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SynthesisImplicitSpellDamagePerIntelligence1"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10155 }, level = 55, group = "SpellDamagePer16Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamagePerIntelligence2"] = { type = "Synthesis", affix = "", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2738 }, level = 55, group = "SpellDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageTakenPer250Intelligence1"] = { type = "Synthesis", affix = "", "1% reduced Damage taken per 250 Intelligence", statOrder = { 6109 }, level = 60, group = "DamageTakenPer250Intelligence", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAllAttributes1"] = { type = "Synthesis", affix = "", "+(6-7) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitAllAttributes2"] = { type = "Synthesis", affix = "", "+(8-9) to all Attributes", statOrder = { 1176 }, level = 15, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitAllAttributes3"] = { type = "Synthesis", affix = "", "+(10-12) to all Attributes", statOrder = { 1176 }, level = 24, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentAllAttributes1"] = { type = "Synthesis", affix = "", "2% increased Attributes", statOrder = { 1183 }, level = 48, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitPercentAllAttributes2"] = { type = "Synthesis", affix = "", "3% increased Attributes", statOrder = { 1183 }, level = 56, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["SynthesisImplicitAccuracy1"] = { type = "Synthesis", affix = "", "(10-11)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracy2"] = { type = "Synthesis", affix = "", "(12-13)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 15, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracy3"] = { type = "Synthesis", affix = "", "(14-15)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 24, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracy4"] = { type = "Synthesis", affix = "", "(16-17)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 36, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracy5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 48, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracyJewel1"] = { type = "Synthesis", affix = "", "+(21-35) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAccuracyJewel2"] = { type = "Synthesis", affix = "", "+(36-50) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitFlatAccuracy1_"] = { type = "Synthesis", affix = "", "+(150-250) to Accuracy Rating", statOrder = { 1433 }, level = 48, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitFlatAccuracy2"] = { type = "Synthesis", affix = "", "+(251-350) to Accuracy Rating", statOrder = { 1433 }, level = 56, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWeaponAccuracy1"] = { type = "Synthesis", affix = "", "(10-15)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWeaponAccuracy2"] = { type = "Synthesis", affix = "", "(20-25)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 15, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWeaponAccuracy3"] = { type = "Synthesis", affix = "", "(30-35)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 24, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWeaponAccuracyHigh1"] = { type = "Synthesis", affix = "", "100% increased Global Accuracy Rating", statOrder = { 1434 }, level = 65, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitMaceAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1442 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAxeAccuracyRatingJewel1__"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Axes", statOrder = { 1438 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitSwordAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Swords", statOrder = { 1444 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitBowAccuracyRatingJewel1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Bows", statOrder = { 1443 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitClawAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Claws", statOrder = { 1440 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitDaggerAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Daggers", statOrder = { 1441 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWandAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Wands", statOrder = { 1445 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitStaffAccuracyRatingJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Accuracy Rating with Staves", statOrder = { 1439 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitMaceAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1442 }, level = 1, group = "MaceIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAxeAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Axes", statOrder = { 1438 }, level = 1, group = "AxeIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitSwordAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Swords", statOrder = { 1444 }, level = 1, group = "SwordIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitBowAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Bows", statOrder = { 1443 }, level = 1, group = "BowIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitClawAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Claws", statOrder = { 1440 }, level = 1, group = "ClawIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitDaggerAccuracyRatingJewel2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Daggers", statOrder = { 1441 }, level = 1, group = "DaggerIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWandAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Wands", statOrder = { 1445 }, level = 1, group = "WandIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitStaffAccuracyRatingJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Accuracy Rating with Staves", statOrder = { 1439 }, level = 1, group = "StaffIncreasedAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitIncreasedArmour1_"] = { type = "Synthesis", affix = "", "(15-18)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitIncreasedArmour2_"] = { type = "Synthesis", affix = "", "(19-22)% increased Armour", statOrder = { 1542 }, level = 15, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitIncreasedArmour3"] = { type = "Synthesis", affix = "", "(23-26)% increased Armour", statOrder = { 1542 }, level = 24, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitIncreasedArmour4"] = { type = "Synthesis", affix = "", "(27-30)% increased Armour", statOrder = { 1542 }, level = 36, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitIncreasedArmour5_"] = { type = "Synthesis", affix = "", "(30-35)% increased Armour", statOrder = { 1542 }, level = 48, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitFlatArmour1"] = { type = "Synthesis", affix = "", "+(15-20) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitFlatArmour2"] = { type = "Synthesis", affix = "", "+(21-30) to Armour", statOrder = { 1540 }, level = 15, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitFlatArmour3"] = { type = "Synthesis", affix = "", "+(31-40) to Armour", statOrder = { 1540 }, level = 24, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitFlatArmour4"] = { type = "Synthesis", affix = "", "+(41-55) to Armour", statOrder = { 1540 }, level = 36, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitFlatArmour5"] = { type = "Synthesis", affix = "", "+(56-70) to Armour", statOrder = { 1540 }, level = 48, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitAdditionalPhysReduction1"] = { type = "Synthesis", affix = "", "2% additional Physical Damage Reduction", statOrder = { 2273 }, level = 36, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitAdditionalPhysReduction2"] = { type = "Synthesis", affix = "", "3% additional Physical Damage Reduction", statOrder = { 2273 }, level = 48, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitAdditionalPhysReduction3"] = { type = "Synthesis", affix = "", "4% additional Physical Damage Reduction", statOrder = { 2273 }, level = 56, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitGlobalArmour1"] = { type = "Synthesis", affix = "", "(7-9)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmour2"] = { type = "Synthesis", affix = "", "(10-12)% increased Armour", statOrder = { 1541 }, level = 15, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmour3"] = { type = "Synthesis", affix = "", "(13-15)% increased Armour", statOrder = { 1541 }, level = 24, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmourTwoHand1__"] = { type = "Synthesis", affix = "", "(14-16)% increased Armour", statOrder = { 1541 }, level = 36, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmourTwoHand2"] = { type = "Synthesis", affix = "", "(17-19)% increased Armour", statOrder = { 1541 }, level = 48, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmourTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Armour", statOrder = { 1541 }, level = 56, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmourJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitGlobalArmourJewel2_"] = { type = "Synthesis", affix = "", "(5-6)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitReducedDamageFromCrits1"] = { type = "Synthesis", affix = "", "You take (15-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 55, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SynthesisImplicitChanceForDoubleArmour1"] = { type = "Synthesis", affix = "", "(15-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 65, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SynthesisImplicitIncreasedEvasion1"] = { type = "Synthesis", affix = "", "(15-18)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitIncreasedEvasion2"] = { type = "Synthesis", affix = "", "(19-22)% increased Evasion Rating", statOrder = { 1550 }, level = 15, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitIncreasedEvasion3"] = { type = "Synthesis", affix = "", "(23-26)% increased Evasion Rating", statOrder = { 1550 }, level = 24, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitIncreasedEvasion4"] = { type = "Synthesis", affix = "", "(27-30)% increased Evasion Rating", statOrder = { 1550 }, level = 36, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitIncreasedEvasion5"] = { type = "Synthesis", affix = "", "(30-35)% increased Evasion Rating", statOrder = { 1550 }, level = 48, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitFlatEvasion1"] = { type = "Synthesis", affix = "", "+(15-20) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitFlatEvasion2"] = { type = "Synthesis", affix = "", "+(21-30) to Evasion Rating", statOrder = { 1548 }, level = 15, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitFlatEvasion3"] = { type = "Synthesis", affix = "", "+(31-40) to Evasion Rating", statOrder = { 1548 }, level = 24, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitFlatEvasion4"] = { type = "Synthesis", affix = "", "+(41-55) to Evasion Rating", statOrder = { 1548 }, level = 36, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitFlatEvasion5"] = { type = "Synthesis", affix = "", "+(56-70) to Evasion Rating", statOrder = { 1548 }, level = 48, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitAdditionalEvadeChance1"] = { type = "Synthesis", affix = "", "+2% chance to Evade Attack Hits", statOrder = { 5673 }, level = 36, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitAdditionalEvadeChance2"] = { type = "Synthesis", affix = "", "+3% chance to Evade Attack Hits", statOrder = { 5673 }, level = 48, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitAdditionalEvadeChance3"] = { type = "Synthesis", affix = "", "+4% chance to Evade Attack Hits", statOrder = { 5673 }, level = 56, group = "AdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasion1"] = { type = "Synthesis", affix = "", "(7-9)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasion2"] = { type = "Synthesis", affix = "", "(10-12)% increased Evasion Rating", statOrder = { 1549 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasion3"] = { type = "Synthesis", affix = "", "(13-15)% increased Evasion Rating", statOrder = { 1549 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasionTwoHand1_"] = { type = "Synthesis", affix = "", "(14-16)% increased Evasion Rating", statOrder = { 1549 }, level = 15, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasionTwoHand2_"] = { type = "Synthesis", affix = "", "(17-19)% increased Evasion Rating", statOrder = { 1549 }, level = 24, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasionTwoHand3"] = { type = "Synthesis", affix = "", "(20-22)% increased Evasion Rating", statOrder = { 1549 }, level = 36, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasionJewel1"] = { type = "Synthesis", affix = "", "(3-4)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitGlobalEvasionJewel2__"] = { type = "Synthesis", affix = "", "(5-6)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitAvoidStatusAilments1"] = { type = "Synthesis", affix = "", "(10-15)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidStatusAilments2"] = { type = "Synthesis", affix = "", "(16-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidStatusAilmentsMinor1"] = { type = "Synthesis", affix = "", "(10-12)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidStatusAilmentsMinor2"] = { type = "Synthesis", affix = "", "(13-15)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 55, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["SynthesisImplicitAvoidStatusAilmentsJewel1"] = { type = "Synthesis", affix = "", "(5-7)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["SynthesisImplicitBlindOnHit1"] = { type = "Synthesis", affix = "", "(10-15)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 65, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitIncreasedEnergyShield1"] = { type = "Synthesis", affix = "", "(15-16)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitIncreasedEnergyShield2"] = { type = "Synthesis", affix = "", "(17-18)% increased Energy Shield", statOrder = { 1560 }, level = 15, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitIncreasedEnergyShield3__"] = { type = "Synthesis", affix = "", "(19-20)% increased Energy Shield", statOrder = { 1560 }, level = 24, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitIncreasedEnergyShield4"] = { type = "Synthesis", affix = "", "(21-22)% increased Energy Shield", statOrder = { 1560 }, level = 36, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitIncreasedEnergyShield5"] = { type = "Synthesis", affix = "", "(23-25)% increased Energy Shield", statOrder = { 1560 }, level = 48, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShield1"] = { type = "Synthesis", affix = "", "+(10-12) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShield2"] = { type = "Synthesis", affix = "", "+(13-15) to maximum Energy Shield", statOrder = { 1559 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShield3"] = { type = "Synthesis", affix = "", "+(16-18) to maximum Energy Shield", statOrder = { 1559 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShield4"] = { type = "Synthesis", affix = "", "+(19-21) to maximum Energy Shield", statOrder = { 1559 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShield5_"] = { type = "Synthesis", affix = "", "+(22-25) to maximum Energy Shield", statOrder = { 1559 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShieldMinor1"] = { type = "Synthesis", affix = "", "+(6-7) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShieldMinor2_"] = { type = "Synthesis", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1559 }, level = 15, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShieldMinor3_"] = { type = "Synthesis", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1559 }, level = 24, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShieldMinor4"] = { type = "Synthesis", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1559 }, level = 36, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitFlatEnergyShieldMinor5_"] = { type = "Synthesis", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1559 }, level = 48, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRegen1"] = { type = "Synthesis", affix = "", "Regenerate (0.6-0.7)% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRegen2"] = { type = "Synthesis", affix = "", "Regenerate (0.8-0.9)% of Energy Shield per second", statOrder = { 2646 }, level = 15, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRegen3"] = { type = "Synthesis", affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 24, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRegenJewel1_"] = { type = "Synthesis", affix = "", "Regenerate 0.2% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldJewel1"] = { type = "Synthesis", affix = "", "+(3-4) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldJewel2_"] = { type = "Synthesis", affix = "", "+(5-6) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRechargeRate1"] = { type = "Synthesis", affix = "", "(8-9)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRechargeRate2_"] = { type = "Synthesis", affix = "", "(10-11)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 15, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRechargeRate3_"] = { type = "Synthesis", affix = "", "(12-15)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 24, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRechargeRateJewel1_"] = { type = "Synthesis", affix = "", "(3-5)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShield1"] = { type = "Synthesis", affix = "", "(4-5)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShield2"] = { type = "Synthesis", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShield3__"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShieldTwoHand1"] = { type = "Synthesis", affix = "", "(7-9)% increased maximum Energy Shield", statOrder = { 1561 }, level = 15, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShieldTwoHand2"] = { type = "Synthesis", affix = "", "(10-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 24, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitGlobalEnergyShieldTwoHand3___"] = { type = "Synthesis", affix = "", "(14-16)% increased maximum Energy Shield", statOrder = { 1561 }, level = 36, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldRecoveryRate1"] = { type = "Synthesis", affix = "", "(10-15)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 60, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldLeech1"] = { type = "Synthesis", affix = "", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 55, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldLeechJewel1"] = { type = "Synthesis", affix = "", "0.2% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitMaximumEnergyShieldLeechRate1"] = { type = "Synthesis", affix = "", "10% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 56, group = "MaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldOnHitJewel1"] = { type = "Synthesis", affix = "", "Gain (1-2) Energy Shield per Enemy Hit with Attacks", statOrder = { 1747 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "attack" }, }, + ["SynthesisImplicitEnergyShieldDelay1"] = { type = "Synthesis", affix = "", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 36, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitEnergyShieldDelay2"] = { type = "Synthesis", affix = "", "(7-10)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 48, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitLifeAddedAsEnergyShield1_"] = { type = "Synthesis", affix = "", "Gain 3% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9160 }, level = 65, group = "LifeAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitShieldAttackBlock1_"] = { type = "Synthesis", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitShieldAttackBlock2"] = { type = "Synthesis", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 15, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitShieldSpellBlock1"] = { type = "Synthesis", affix = "", "(2-3)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitShieldSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 15, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitAttackBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Attack Damage", statOrder = { 1138 }, level = 48, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitAttackBlock2"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 56, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitSpellBlock1"] = { type = "Synthesis", affix = "", "2% Chance to Block Spell Damage", statOrder = { 1160 }, level = 48, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitSpellBlock2_"] = { type = "Synthesis", affix = "", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 56, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitLifeOnBlock1_"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Life when you Block", statOrder = { 3060 }, level = 60, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["SynthesisImplicitManaOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8186 }, level = 60, group = "RecoverManaPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, + ["SynthesisImplicitEnergyShieldOnBlock1"] = { type = "Synthesis", affix = "", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2467 }, level = 60, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, }, + ["SynthesisImplicitMaximumAttackBlock1"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 65, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitMaximumSpellBlock1_"] = { type = "Synthesis", affix = "", "+(1-2)% to maximum Chance to Block Spell Damage", statOrder = { 1989 }, level = 65, group = "MaximumSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SynthesisImplicitFlatLifeOnBlock1"] = { type = "Synthesis", affix = "", "(15-25) Life gained when you Block", statOrder = { 1757 }, level = 15, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["SynthesisImplicitFlatLifeOnBlock2"] = { type = "Synthesis", affix = "", "(26-35) Life gained when you Block", statOrder = { 1757 }, level = 24, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["SynthesisImplicitFlatLifeOnBlockJewel1"] = { type = "Synthesis", affix = "", "(4-6) Life gained when you Block", statOrder = { 1757 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["SynthesisImplicitFlatManaOnBlock1"] = { type = "Synthesis", affix = "", "(5-10) Mana gained when you Block", statOrder = { 1758 }, level = 15, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, + ["SynthesisImplicitFlatManaOnBlock2"] = { type = "Synthesis", affix = "", "(11-15) Mana gained when you Block", statOrder = { 1758 }, level = 24, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, + ["SynthesisImplicitFlatManaOnBlockJewel1"] = { type = "Synthesis", affix = "", "(3-5) Mana gained when you Block", statOrder = { 1758 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, + ["SynthesisImplicitAttackDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAttackDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitSpellDodge1"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitSpellDodge2"] = { type = "Synthesis", affix = "", "+(6-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAttackDodgeMinor1"] = { type = "Synthesis", affix = "", "+1% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 48, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAttackDodgeMinor2"] = { type = "Synthesis", affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 56, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAvoidFire1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 60, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["SynthesisImplicitAvoidCold1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 60, group = "ColdDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["SynthesisImplicitAvoidLightning1"] = { type = "Synthesis", affix = "", "(3-5)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 60, group = "LightningDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["SynthesisImplicitMaximumAttackDodge1_"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitMaximumSpellDodge1"] = { type = "Synthesis", affix = "", "Prevent +(1-2)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitSpellDamageSuppressed1_"] = { type = "Synthesis", affix = "", "Prevent +(2-3)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 65, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitVitalityReservation1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10535 }, level = 48, group = "VitalityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitVitalityReservationEfficiency1"] = { type = "Synthesis", affix = "", "Vitality has 20% increased Mana Reservation Efficiency", statOrder = { 10536 }, level = 48, group = "VitalityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitDeterminationReservation1"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6172 }, level = 48, group = "DeterminationReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitDeterminationReservationEfficiency1_"] = { type = "Synthesis", affix = "", "Determination has 20% increased Mana Reservation Efficiency", statOrder = { 6173 }, level = 48, group = "DeterminationReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitGraceReservation1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6902 }, level = 48, group = "GraceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitGraceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Grace has 20% increased Mana Reservation Efficiency", statOrder = { 6903 }, level = 48, group = "GraceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitDisciplineReservation1_"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 6188 }, level = 48, group = "DisciplineReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitDisciplineReservationEfficiency1___"] = { type = "Synthesis", affix = "", "Discipline has 20% increased Mana Reservation Efficiency", statOrder = { 6189 }, level = 48, group = "DisciplineReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfFireReservation1_"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9768 }, level = 48, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfFireReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Fire has 20% increased Mana Reservation Efficiency", statOrder = { 9769 }, level = 48, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfFireReservation2_"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9768 }, level = 65, group = "PurityOfFireReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfFireReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Fire has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9769 }, level = 65, group = "PurityOfFireReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfIceReservation1_"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9771 }, level = 48, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfIceReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Ice has 20% increased Mana Reservation Efficiency", statOrder = { 9772 }, level = 48, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfIceReservation2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9771 }, level = 65, group = "PurityOfIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfIceReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Ice has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9772 }, level = 65, group = "PurityOfIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfLightningReservation1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9774 }, level = 48, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfLightningReservationEfficiency1"] = { type = "Synthesis", affix = "", "Purity of Lightning has 20% increased Mana Reservation Efficiency", statOrder = { 9775 }, level = 48, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfLightningReservation2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9774 }, level = 65, group = "PurityOfLightningReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitPurityOfLightningReservationEfficiency2"] = { type = "Synthesis", affix = "", "Purity of Lightning has (60-80)% increased Mana Reservation Efficiency", statOrder = { 9775 }, level = 65, group = "PurityOfLightningReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SynthesisImplicitSocketedGemReducedReservation1_"] = { type = "Synthesis", affix = "", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 528 }, level = 60, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["SynthesisImplicitSelfAuraEffect1_"] = { type = "Synthesis", affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 56, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["SynthesisImplicitDeterminationEffect1"] = { type = "Synthesis", affix = "", "Determination has (15-20)% increased Aura Effect", statOrder = { 3367 }, level = 55, group = "IncreasedAuraEffectDeterminationCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["SynthesisImplicitGraceEffect1"] = { type = "Synthesis", affix = "", "Grace has (15-20)% increased Aura Effect", statOrder = { 3363 }, level = 55, group = "IncreasedAuraEffectGraceCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["SynthesisImplicitDisciplineEffect1"] = { type = "Synthesis", affix = "", "Discipline has (15-20)% increased Aura Effect", statOrder = { 3368 }, level = 55, group = "IncreasedAuraEffectDisciplineCorrupted", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["SynthesisImplicitDeterminationPhysicalDamageReduction1"] = { type = "Synthesis", affix = "", "(4-6)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4579 }, level = 65, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitGraceAdditionalChanceToEvade1"] = { type = "Synthesis", affix = "", "+(4-6)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5675 }, level = 65, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitDisciplineEnergyShieldRegen1___"] = { type = "Synthesis", affix = "", "Regenerate (1.2-2.2)% of Energy Shield per Second while affected by Discipline", statOrder = { 6459 }, level = 65, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitReducedManaReservation1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 60, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitManaReservationEfficiency1"] = { type = "Synthesis", affix = "", "(6-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 60, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SynthesisImplicitSocketedSkillsManaMultiplier1"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 96% Cost & Reservation Multiplier", statOrder = { 530 }, level = 24, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, + ["SynthesisImplicitSocketedSkillsManaMultiplier2"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 94% Cost & Reservation Multiplier", statOrder = { 530 }, level = 36, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, + ["SynthesisImplicitSocketedSkillsManaMultiplier3"] = { type = "Synthesis", affix = "", "Socketed Skill Gems get a 92% Cost & Reservation Multiplier", statOrder = { 530 }, level = 48, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, + ["SynthesisImplicitGrantsPurityOfFire1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 623 }, level = 75, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsPurityOfIce1__"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 629 }, level = 75, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsPurityOfLightning1"] = { type = "Synthesis", affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 631 }, level = 75, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsAnger1"] = { type = "Synthesis", affix = "", "Grants Level 10 Anger Skill", statOrder = { 650 }, level = 45, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsAnger2"] = { type = "Synthesis", affix = "", "Grants Level 15 Anger Skill", statOrder = { 650 }, level = 62, group = "AngerSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsHatred1"] = { type = "Synthesis", affix = "", "Grants Level 10 Hatred Skill", statOrder = { 649 }, level = 45, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsHatred2"] = { type = "Synthesis", affix = "", "Grants Level 15 Hatred Skill", statOrder = { 649 }, level = 62, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsWrath1"] = { type = "Synthesis", affix = "", "Grants Level 10 Wrath Skill", statOrder = { 648 }, level = 45, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitGrantsWrath2_"] = { type = "Synthesis", affix = "", "Grants Level 15 Wrath Skill", statOrder = { 648 }, level = 62, group = "WrathSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SynthesisImplicitHasSocket1_"] = { type = "Synthesis", affix = "", "Has 1 Socket", statOrder = { 69 }, level = 75, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitCurseDuration1"] = { type = "Synthesis", affix = "", "Curse Skills have (10-15)% increased Skill Effect Duration", statOrder = { 6000 }, level = 36, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseDuration2"] = { type = "Synthesis", affix = "", "Curse Skills have (16-20)% increased Skill Effect Duration", statOrder = { 6000 }, level = 48, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffect1"] = { type = "Synthesis", affix = "", "(6-10)% increased Effect of your Curses", statOrder = { 2596 }, level = 60, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitFlammability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 45, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitFlammability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 56, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitFrostbite1_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 45, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitFrostbite2_"] = { type = "Synthesis", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 56, group = "FrostbiteOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitConductivity1"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 45, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitConductivity2"] = { type = "Synthesis", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 56, group = "ConductivityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitVulnerability1"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 45, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitVulnerability2"] = { type = "Synthesis", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 56, group = "CurseOnHitLevelVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitDespair1"] = { type = "Synthesis", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 45, group = "CurseOnHitDespair", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseOnHitElementalWeakness1__"] = { type = "Synthesis", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 45, group = "CurseOnHitLevelElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectFlammability1"] = { type = "Synthesis", affix = "", "(20-30)% increased Flammability Curse Effect", statOrder = { 4013 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectFlammabilityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Flammability Curse Effect", statOrder = { 4013 }, level = 55, group = "CurseEffectFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectFrostbite1"] = { type = "Synthesis", affix = "", "(20-30)% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectFrostbiteOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 55, group = "CurseEffectFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectConductivity1"] = { type = "Synthesis", affix = "", "(20-30)% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectConductivityOneHand1"] = { type = "Synthesis", affix = "", "(10-15)% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 55, group = "CurseEffectConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectVulnerability1_"] = { type = "Synthesis", affix = "", "(20-30)% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 55, group = "CurseEffectVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitCurseEffectElementalWeakness1"] = { type = "Synthesis", affix = "", "(20-30)% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 55, group = "CurseEffectElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitDamageAffectedByAuras1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (7-9)% increased Damage", statOrder = { 4069 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageAffectedByAuras2"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (10-12)% increased Damage", statOrder = { 4069 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageAffectedByAuras3_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-15)% increased Damage", statOrder = { 4069 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageAffectedByAurasTwoHand1"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (13-16)% increased Damage", statOrder = { 4069 }, level = 24, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageAffectedByAurasTwoHand2_"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (17-21)% increased Damage", statOrder = { 4069 }, level = 36, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageAffectedByAurasTwoHand3"] = { type = "Synthesis", affix = "", "You and nearby Allies deal (22-25)% increased Damage", statOrder = { 4069 }, level = 48, group = "DamageAffectedByAuras", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeeching1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage while Leeching", statOrder = { 3063 }, level = 36, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeeching2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage while Leeching", statOrder = { 3063 }, level = 48, group = "DamageWhileLeeching", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingLife1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Life", statOrder = { 1217 }, level = 1, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingLife2__"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Life", statOrder = { 1217 }, level = 15, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingLife3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Life", statOrder = { 1217 }, level = 24, group = "DamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingMana1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage while Leeching Mana", statOrder = { 1219 }, level = 1, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingMana2_"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage while Leeching Mana", statOrder = { 1219 }, level = 15, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageWhileLeechingMana3_"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage while Leeching Mana", statOrder = { 1219 }, level = 24, group = "DamageWhileLeechingMana", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageDuringFlaskEffect1"] = { type = "Synthesis", affix = "", "(10-12)% increased Damage during any Flask Effect", statOrder = { 4082 }, level = 36, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, }, + ["SynthesisImplicitDamageDuringFlaskEffect2"] = { type = "Synthesis", affix = "", "(13-15)% increased Damage during any Flask Effect", statOrder = { 4082 }, level = 48, group = "DamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, }, + ["SynthesisImplicitDamageWithTriggeredSpells1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (10-12)% increased Spell Damage", statOrder = { 10431 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageWithTriggeredSpells2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (13-15)% increased Spell Damage", statOrder = { 10431 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitVaalSkillDamage1"] = { type = "Synthesis", affix = "", "(13-16)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 24, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamage2"] = { type = "Synthesis", affix = "", "(17-21)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamage3"] = { type = "Synthesis", affix = "", "(22-25)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamageWeapon1"] = { type = "Synthesis", affix = "", "(25-30)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamageWeapon2"] = { type = "Synthesis", affix = "", "(31-35)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamageWeaponTwoHand1"] = { type = "Synthesis", affix = "", "(36-44)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 36, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitVaalSkillDamageWeaponTwoHand2"] = { type = "Synthesis", affix = "", "(45-51)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 48, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeapon1_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (19-22)% increased Spell Damage", statOrder = { 10431 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeapon2"] = { type = "Synthesis", affix = "", "Triggered Spells deal (23-26)% increased Spell Damage", statOrder = { 10431 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand1"] = { type = "Synthesis", affix = "", "Triggered Spells deal (27-32)% increased Spell Damage", statOrder = { 10431 }, level = 36, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDamageWithTriggeredSpellsWeaponTwoHand2_"] = { type = "Synthesis", affix = "", "Triggered Spells deal (33-38)% increased Spell Damage", statOrder = { 10431 }, level = 48, group = "DamageWithTriggeredSpells", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitDoubleDamageChanceOneHand1"] = { type = "Synthesis", affix = "", "2% chance to deal Double Damage", statOrder = { 5659 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDoubleDamageChanceOneHand2"] = { type = "Synthesis", affix = "", "3% chance to deal Double Damage", statOrder = { 5659 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDoubleDamageChanceTwoHand1"] = { type = "Synthesis", affix = "", "4% chance to deal Double Damage", statOrder = { 5659 }, level = 36, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDoubleDamageChanceTwoHand2_"] = { type = "Synthesis", affix = "", "5% chance to deal Double Damage", statOrder = { 5659 }, level = 48, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAreaDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Area Damage", statOrder = { 2035 }, level = 36, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitAreaDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Area Damage", statOrder = { 2035 }, level = 48, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitProjectileDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Projectile Damage", statOrder = { 1996 }, level = 36, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitProjectileDamage2_"] = { type = "Synthesis", affix = "", "(13-15)% increased Projectile Damage", statOrder = { 1996 }, level = 48, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitMeleeDamage1"] = { type = "Synthesis", affix = "", "(10-12)% increased Melee Damage", statOrder = { 1234 }, level = 36, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitMeleeDamage2"] = { type = "Synthesis", affix = "", "(13-15)% increased Melee Damage", statOrder = { 1234 }, level = 48, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitMinionDamage1"] = { type = "Synthesis", affix = "", "Minions deal 8% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamage2_"] = { type = "Synthesis", affix = "", "Minions deal (9-10)% increased Damage", statOrder = { 1973 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (11-12)% increased Damage", statOrder = { 1973 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamage4"] = { type = "Synthesis", affix = "", "Minions deal (13-14)% increased Damage", statOrder = { 1973 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamage5"] = { type = "Synthesis", affix = "", "Minions deal (15-16)% increased Damage", statOrder = { 1973 }, level = 48, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamage1_"] = { type = "Synthesis", affix = "", "Minions deal (19-22)% increased Damage", statOrder = { 1973 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamage2"] = { type = "Synthesis", affix = "", "Minions deal (23-26)% increased Damage", statOrder = { 1973 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamage3"] = { type = "Synthesis", affix = "", "Minions deal (27-30)% increased Damage", statOrder = { 1973 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamageTwoHand1"] = { type = "Synthesis", affix = "", "Minions deal (27-32)% increased Damage", statOrder = { 1973 }, level = 15, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamageTwoHand2"] = { type = "Synthesis", affix = "", "Minions deal (33-38)% increased Damage", statOrder = { 1973 }, level = 24, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitWeaponMinionDamageTwoHand3"] = { type = "Synthesis", affix = "", "Minions deal (39-44)% increased Damage", statOrder = { 1973 }, level = 36, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamageJewel1_"] = { type = "Synthesis", affix = "", "Minions deal (2-3)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitMinionDamageJewel2_"] = { type = "Synthesis", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitZombieDamage1"] = { type = "Synthesis", affix = "", "Raised Zombies deal (30-35)% increased Damage", statOrder = { 3643 }, level = 55, group = "ZombieIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitSkeletonDamage1_"] = { type = "Synthesis", affix = "", "Skeletons deal (30-35)% increased Damage", statOrder = { 3659 }, level = 55, group = "SkeletonDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitSpectreDamage1"] = { type = "Synthesis", affix = "", "Raised Spectres have (30-35)% increased Damage", statOrder = { 3457 }, level = 55, group = "SpectreDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["SynthesisImplicitAnimateGuardianResistances1"] = { type = "Synthesis", affix = "", "+15% to Animated Guardian Elemental Resistances", statOrder = { 3989 }, level = 55, group = "AnimateGuardianResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, + ["SynthesisImplicitItemDropsOnDeathAnimateGuardian1_"] = { type = "Synthesis", affix = "", "Item drops on Death if Equipped by an Animated Guardian", statOrder = { 2559 }, level = 60, group = "ItemDropsOnGuardianDeath", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitMinionLife1_"] = { type = "Synthesis", affix = "", "Minions have (7-9)% increased maximum Life", statOrder = { 1766 }, level = 15, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLife2__"] = { type = "Synthesis", affix = "", "Minions have (10-12)% increased maximum Life", statOrder = { 1766 }, level = 24, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLife3"] = { type = "Synthesis", affix = "", "Minions have (13-15)% increased maximum Life", statOrder = { 1766 }, level = 36, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLifeRegen1"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.3% of Life per second", statOrder = { 2911 }, level = 36, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLifeRegen2"] = { type = "Synthesis", affix = "", "Minions Regenerate 0.5% of Life per second", statOrder = { 2911 }, level = 48, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLifeJewel1"] = { type = "Synthesis", affix = "", "Minions have (2-3)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionLifeJewel2"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SynthesisImplicitMinionResistanceJewel1"] = { type = "Synthesis", affix = "", "Minions have +3% to all Elemental Resistances", statOrder = { 2912 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, + ["SynthesisImplicitMinionResistanceJewel2"] = { type = "Synthesis", affix = "", "Minions have +(4-5)% to all Elemental Resistances", statOrder = { 2912 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, + ["SynthesisImplicitMinionMovementSpeed1"] = { type = "Synthesis", affix = "", "Minions have (4-5)% increased Movement Speed", statOrder = { 1769 }, level = 24, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SynthesisImplicitMinionMovementSpeed2"] = { type = "Synthesis", affix = "", "Minions have (6-7)% increased Movement Speed", statOrder = { 1769 }, level = 36, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SynthesisImplicitMinionMovementSpeed3"] = { type = "Synthesis", affix = "", "Minions have (8-10)% increased Movement Speed", statOrder = { 1769 }, level = 48, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SynthesisImplicitMinionMovementSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SynthesisImplicitMinionMovementSpeedJewel2_"] = { type = "Synthesis", affix = "", "Minions have 3% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SynthesisImplicitMinionAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Attack Speed", statOrder = { 2907 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, }, + ["SynthesisImplicitMinionAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Attack Speed", statOrder = { 2907 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, }, + ["SynthesisImplicitMinionCastSpeedJewel1"] = { type = "Synthesis", affix = "", "Minions have (1-2)% increased Cast Speed", statOrder = { 2908 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, }, + ["SynthesisImplicitMinionCastSpeedJewel2"] = { type = "Synthesis", affix = "", "Minions have 3% increased Cast Speed", statOrder = { 2908 }, level = 1, group = "MinionCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, }, + ["SynthesisImplicitMinionAccuracyJewel1"] = { type = "Synthesis", affix = "", "2% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, + ["SynthesisImplicitMinionAccuracyJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 1, group = "MinionAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, + ["SynthesisImplicitEnduranceChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Endurance Charge Duration", statOrder = { 2125 }, level = 45, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitEnduranceChargeDuration2__"] = { type = "Synthesis", affix = "", "(12-15)% increased Endurance Charge Duration", statOrder = { 2125 }, level = 50, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitEnduranceChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 55, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitEnduranceChargeGeneration1"] = { type = "Synthesis", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6746 }, level = 60, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitMinimumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Endurance Charges", statOrder = { 1803 }, level = 55, group = "MinimumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitMaximumEnduranceCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 60, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["SynthesisImplicitDamagePerEnduranceChargeMinor1"] = { type = "Synthesis", affix = "", "2% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 40, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerEnduranceCharge1"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerEnduranceCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 55, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitLifeRegenPerEnduranceCharge1____"] = { type = "Synthesis", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 50, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitFrenzyChargeDuration1_"] = { type = "Synthesis", affix = "", "(8-11)% increased Frenzy Charge Duration", statOrder = { 2127 }, level = 45, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitFrenzyChargeDuration2_"] = { type = "Synthesis", affix = "", "(12-15)% increased Frenzy Charge Duration", statOrder = { 2127 }, level = 50, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitFrenzyChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 55, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitFrenzyChargeGeneration1"] = { type = "Synthesis", affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 60, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitMinimumFrenzyCharge1_"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Frenzy Charges", statOrder = { 1808 }, level = 55, group = "MinimumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitMaximumFrenzyCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 60, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SynthesisImplicitDamagePerFrenzyChargeMinor1_"] = { type = "Synthesis", affix = "", "2% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 40, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerFrenzyCharge2_"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 55, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitEvasionPerFrenzyCharge1_"] = { type = "Synthesis", affix = "", "6% increased Evasion Rating per Frenzy Charge", statOrder = { 1556 }, level = 50, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["SynthesisImplicitPowerChargeDuration1"] = { type = "Synthesis", affix = "", "(8-11)% increased Power Charge Duration", statOrder = { 2142 }, level = 45, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SynthesisImplicitPowerChargeDuration2"] = { type = "Synthesis", affix = "", "(12-15)% increased Power Charge Duration", statOrder = { 2142 }, level = 50, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SynthesisImplicitPowerChargeOnKill1"] = { type = "Synthesis", affix = "", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 55, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SynthesisImplicitPowerChargeGeneration1_"] = { type = "Synthesis", affix = "", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 60, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, }, + ["SynthesisImplicitMinimumPowerCharge1"] = { type = "Synthesis", affix = "", "+(1-2) to Minimum Power Charges", statOrder = { 1813 }, level = 55, group = "MinimumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SynthesisImplicitMaximumPowerCharge1"] = { type = "Synthesis", affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 60, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SynthesisImplicitDamagePerPowerChargeMinor1___"] = { type = "Synthesis", affix = "", "2% increased Damage per Power Charge", statOrder = { 6066 }, level = 40, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerPowerCharge1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Damage per Power Charge", statOrder = { 6066 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamagePerPowerCharge2"] = { type = "Synthesis", affix = "", "(4-5)% increased Damage per Power Charge", statOrder = { 6066 }, level = 55, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitSpellDamagePerPowerCharge1"] = { type = "Synthesis", affix = "", "6% increased Spell Damage per Power Charge", statOrder = { 2140 }, level = 50, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitMovementVelocity1"] = { type = "Synthesis", affix = "", "4% increased Movement Speed", statOrder = { 1798 }, level = 24, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMovementVelocity2"] = { type = "Synthesis", affix = "", "(5-6)% increased Movement Speed", statOrder = { 1798 }, level = 36, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMovementVelocity3___"] = { type = "Synthesis", affix = "", "(7-8)% increased Movement Speed", statOrder = { 1798 }, level = 48, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTrinketMovementVelocity1"] = { type = "Synthesis", affix = "", "(4-5)% increased Movement Speed", statOrder = { 1798 }, level = 45, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMovementVelocityJewel1___"] = { type = "Synthesis", affix = "", "1% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMovementVelocityJewel2"] = { type = "Synthesis", affix = "", "2% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitOnslaught1"] = { type = "Synthesis", affix = "", "Onslaught", statOrder = { 3597 }, level = 60, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitProjectileSpeed1"] = { type = "Synthesis", affix = "", "(9-10)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeed2"] = { type = "Synthesis", affix = "", "(11-12)% increased Projectile Speed", statOrder = { 1796 }, level = 15, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeed3"] = { type = "Synthesis", affix = "", "(13-14)% increased Projectile Speed", statOrder = { 1796 }, level = 24, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeed4"] = { type = "Synthesis", affix = "", "(15-17)% increased Projectile Speed", statOrder = { 1796 }, level = 36, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeed5_"] = { type = "Synthesis", affix = "", "(18-20)% increased Projectile Speed", statOrder = { 1796 }, level = 48, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitProjectileSpeedJewel2__"] = { type = "Synthesis", affix = "", "(3-5)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitAreaOfEffectJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAreaOfEffectJewel2"] = { type = "Synthesis", affix = "", "(3-5)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAttackSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAttackSpeed2_"] = { type = "Synthesis", affix = "", "4% increased Attack Speed", statOrder = { 1410 }, level = 15, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAttackSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack Speed", statOrder = { 1410 }, level = 24, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "2% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitLocalAttackSpeed1_"] = { type = "Synthesis", affix = "", "(3-4)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitLocalAttackSpeed2"] = { type = "Synthesis", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1413 }, level = 15, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitLocalAttackSpeed3"] = { type = "Synthesis", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1413 }, level = 24, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitMaceIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Maces or Sceptres", statOrder = { 1424 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAxeIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Axes", statOrder = { 1420 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitSwordIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Swords", statOrder = { 1426 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitBowIncreasedAttackSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Bows", statOrder = { 1425 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitClawIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Claws", statOrder = { 1422 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Daggers", statOrder = { 1423 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitWandIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Wands", statOrder = { 1427 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitStaffIncreasedAttackSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Attack Speed with Staves", statOrder = { 1421 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitMaceIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Maces or Sceptres", statOrder = { 1424 }, level = 1, group = "MaceIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitAxeIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Axes", statOrder = { 1420 }, level = 1, group = "AxeIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitSwordIncreasedAttackSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Swords", statOrder = { 1426 }, level = 1, group = "SwordIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitBowIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Bows", statOrder = { 1425 }, level = 1, group = "BowIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitClawIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Claws", statOrder = { 1422 }, level = 1, group = "ClawIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitDaggerIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Daggers", statOrder = { 1423 }, level = 1, group = "DaggerIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitWandIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Wands", statOrder = { 1427 }, level = 1, group = "WandIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitStaffIncreasedAttackSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Attack Speed with Staves", statOrder = { 1421 }, level = 1, group = "StaffIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["SynthesisImplicitCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Cast Speed", statOrder = { 1446 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedJewel2_"] = { type = "Synthesis", affix = "", "2% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitWeaponCastSpeed1_"] = { type = "Synthesis", affix = "", "(5-6)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(7-9)% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(10-12)% increased Cast Speed", statOrder = { 1446 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitTwoHandWeaponCastSpeed1"] = { type = "Synthesis", affix = "", "(11-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitTwoHandWeaponCastSpeed2"] = { type = "Synthesis", affix = "", "(13-15)% increased Cast Speed", statOrder = { 1446 }, level = 15, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitTwoHandWeaponCastSpeed3"] = { type = "Synthesis", affix = "", "(16-18)% increased Cast Speed", statOrder = { 1446 }, level = 24, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithStaffJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while wielding a Staff", statOrder = { 1449 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithDualWieldJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while Dual Wielding", statOrder = { 1447 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithShieldJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Cast Speed while holding a Shield", statOrder = { 1448 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithStaffJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while wielding a Staff", statOrder = { 1449 }, level = 1, group = "CastSpeedWithStaff", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithDualWieldJewel2"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while Dual Wielding", statOrder = { 1447 }, level = 1, group = "CastSpeedWithDualWield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitCastSpeedWithShieldJewel2_"] = { type = "Synthesis", affix = "", "3% increased Cast Speed while holding a Shield", statOrder = { 1448 }, level = 1, group = "CastSpeedWithShield", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeed1"] = { type = "Synthesis", affix = "", "3% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeed2"] = { type = "Synthesis", affix = "", "4% increased Attack and Cast Speed", statOrder = { 2046 }, level = 15, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeed3"] = { type = "Synthesis", affix = "", "5% increased Attack and Cast Speed", statOrder = { 2046 }, level = 24, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeedJewel1"] = { type = "Synthesis", affix = "", "1% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitTrapThrowingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 48, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTrapThrowingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 56, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTrapThrowingSpeedJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTrapThrowingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMineLayingSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 48, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMineLayingSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 56, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMineLayingSpeedJewel1_"] = { type = "Synthesis", affix = "", "(1-2)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMineLayingSpeedJewel2"] = { type = "Synthesis", affix = "", "3% increased Mine Throwing Speed", statOrder = { 1928 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTotemPlacementSpeed1"] = { type = "Synthesis", affix = "", "(2-3)% increased Totem Placement speed", statOrder = { 2578 }, level = 48, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTotemPlacementSpeed2"] = { type = "Synthesis", affix = "", "(4-5)% increased Totem Placement speed", statOrder = { 2578 }, level = 56, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTotemPlacementSpeedJewel1___"] = { type = "Synthesis", affix = "", "(1-2)% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitTotemPlacementSpeedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitBrandAttachmentRange1_"] = { type = "Synthesis", affix = "", "(2-3)% increased Brand Attachment range", statOrder = { 10043 }, level = 48, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["SynthesisImplicitBrandAttachmentRange2"] = { type = "Synthesis", affix = "", "(4-5)% increased Brand Attachment range", statOrder = { 10043 }, level = 56, group = "BrandAttachmentRange", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["SynthesisImplicitTauntOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitTauntOnHitJewel2_"] = { type = "Synthesis", affix = "", "(3-4)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 1, group = "AttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitBlindOnHitJewel1"] = { type = "Synthesis", affix = "", "(1-2)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitBlindOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitHinderOnHitJewel1__"] = { type = "Synthesis", affix = "", "(1-2)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["SynthesisImplicitHinderOnHitJewel2"] = { type = "Synthesis", affix = "", "(3-4)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 1, group = "SpellsHinderOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["SynthesisImplicitRarity1"] = { type = "Synthesis", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarity2"] = { type = "Synthesis", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1596 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarity3"] = { type = "Synthesis", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1596 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarity4"] = { type = "Synthesis", affix = "", "(16-17)% increased Rarity of Items found", statOrder = { 1596 }, level = 36, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarity5"] = { type = "Synthesis", affix = "", "(18-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 48, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarityRing1"] = { type = "Synthesis", affix = "", "(19-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarityRing2"] = { type = "Synthesis", affix = "", "(21-22)% increased Rarity of Items found", statOrder = { 1596 }, level = 15, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarityRing3"] = { type = "Synthesis", affix = "", "(23-25)% increased Rarity of Items found", statOrder = { 1596 }, level = 24, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarityJewel1"] = { type = "Synthesis", affix = "", "(1-2)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitRarityJewel2"] = { type = "Synthesis", affix = "", "(3-4)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitQuantity1"] = { type = "Synthesis", affix = "", "(1-3)% increased Quantity of Items found", statOrder = { 1592 }, level = 65, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SynthesisImplicitExperience1"] = { type = "Synthesis", affix = "", "2% increased Experience gain", statOrder = { 1603 }, level = 75, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitExplosion1_"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6372 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitExplosion2"] = { type = "Synthesis", affix = "", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 6372 }, level = 75, group = "EnemiesExplodeOnDeathPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitExplosionChance1_"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitExplosionChance2__"] = { type = "Synthesis", affix = "", "Enemies you Kill have a 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitLocalWeaponRange1_"] = { type = "Synthesis", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 36, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitLocalWeaponRange2"] = { type = "Synthesis", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 48, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitWeaponRange1"] = { type = "Synthesis", affix = "", "+0.1 metres to Melee Strike Range", statOrder = { 2534 }, level = 56, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitOnslaughtOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 55, group = "ChanceToGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitPhasingOnKill1__"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 55, group = "ChancetoGainPhasingOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitUnholyMightOnKill1"] = { type = "Synthesis", affix = "", "(5-8)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 55, group = "UnholyMightOnKillPercentChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitIntimidateOnHit1"] = { type = "Synthesis", affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4920 }, level = 65, group = "IntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitOnslaughtOnHit1"] = { type = "Synthesis", affix = "", "You gain Onslaught for 4 seconds on Hit", statOrder = { 6786 }, level = 65, group = "OnslaughtOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitArcaneSurgeOnHit1"] = { type = "Synthesis", affix = "", "Gain Arcane Surge on Hit with Spells", statOrder = { 6728 }, level = 65, group = "ArcaneSurgeOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAreaOfEffect1"] = { type = "Synthesis", affix = "", "(5-6)% increased Area of Effect", statOrder = { 1880 }, level = 36, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAreaOfEffect2"] = { type = "Synthesis", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1880 }, level = 48, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitAreaOfEffect3_"] = { type = "Synthesis", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1880 }, level = 56, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitUnaffectedByBurningGround1"] = { type = "Synthesis", affix = "", "Unaffected by Burning Ground", statOrder = { 10456 }, level = 65, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["SynthesisImplicitUnaffectedByChilledGround1"] = { type = "Synthesis", affix = "", "Unaffected by Chilled Ground", statOrder = { 10461 }, level = 65, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitUnaffectedByShockedGround1"] = { type = "Synthesis", affix = "", "Unaffected by Shocked Ground", statOrder = { 10481 }, level = 65, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitFlaskChargesGained1"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Charges gained", statOrder = { 2183 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitFlaskChargesGained2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Charges gained", statOrder = { 2183 }, level = 15, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitFlaskChargesGained3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Charges gained", statOrder = { 2183 }, level = 24, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitReducedFlaskChargesUsed1_"] = { type = "Synthesis", affix = "", "(10-11)% reduced Flask Charges used", statOrder = { 2184 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitReducedFlaskChargesUsed2"] = { type = "Synthesis", affix = "", "(12-13)% reduced Flask Charges used", statOrder = { 2184 }, level = 15, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitReducedFlaskChargesUsed3"] = { type = "Synthesis", affix = "", "(14-15)% reduced Flask Charges used", statOrder = { 2184 }, level = 24, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitFlaskDuration1_"] = { type = "Synthesis", affix = "", "(10-11)% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitFlaskDuration2"] = { type = "Synthesis", affix = "", "(12-13)% increased Flask Effect Duration", statOrder = { 2187 }, level = 15, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitFlaskDuration3"] = { type = "Synthesis", affix = "", "(14-15)% increased Flask Effect Duration", statOrder = { 2187 }, level = 24, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SynthesisImplicitRemoveIgniteOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Ignite and Burning when you use a Flask", statOrder = { 9907 }, level = 65, group = "RemoveIgniteOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, }, + ["SynthesisImplicitRemoveFreezeOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Chill and Freeze when you use a Flask", statOrder = { 9903 }, level = 65, group = "RemoveFreezeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, }, + ["SynthesisImplicitRemoveShockOnFlaskUse1"] = { type = "Synthesis", affix = "", "Remove Shock when you use a Flask", statOrder = { 9917 }, level = 65, group = "RemoveShockOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, + ["SynthesisImplicitGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Gems", statOrder = { 204 }, level = 40, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Gems", statOrder = { 204 }, level = 50, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 65, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitSupportGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 40, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitSupportGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 50, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitSupportGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 65, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitMinionGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Minion Gems", statOrder = { 218 }, level = 40, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitMinionGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Minion Gems", statOrder = { 218 }, level = 50, group = "SocketedMinionGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitMinionGemLevel1_"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 65, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["SynthesisImplicitFireGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Fire Gems", statOrder = { 214 }, level = 40, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitFireGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Fire Gems", statOrder = { 214 }, level = 50, group = "SocketedFireGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitFireGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 65, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, + ["SynthesisImplicitColdGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Cold Gems", statOrder = { 211 }, level = 40, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitColdGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Cold Gems", statOrder = { 211 }, level = 50, group = "SocketedColdGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitColdGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 65, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, + ["SynthesisImplicitLightningGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Lightning Gems", statOrder = { 216 }, level = 40, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitLightningGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Lightning Gems", statOrder = { 216 }, level = 50, group = "SocketedLightningGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitLightningGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 65, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, }, + ["SynthesisImplicitChaosGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Chaos Gems", statOrder = { 210 }, level = 40, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitChaosGemQuality2_"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Chaos Gems", statOrder = { 210 }, level = 50, group = "SocketedChaosGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitChaosGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 65, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, }, + ["SynthesisImplicitMeleeGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Melee Gems", statOrder = { 217 }, level = 40, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitMeleeGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Melee Gems", statOrder = { 217 }, level = 50, group = "SocketedMeleeGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitMeleeGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 65, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, + ["SynthesisImplicitBowGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Bow Gems", statOrder = { 209 }, level = 40, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitBowGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Bow Gems", statOrder = { 209 }, level = 50, group = "SocketedBowGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitBowGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 65, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, + ["SynthesisImplicitAuraGemQuality1_"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Aura Gems", statOrder = { 208 }, level = 40, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitAuraGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Aura Gems", statOrder = { 208 }, level = 50, group = "SocketedAuraGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitAuraGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 65, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, }, + ["SynthesisImplicitStrengthGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Strength Gems", statOrder = { 220 }, level = 40, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitStrengthGemQuality2__"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Strength Gems", statOrder = { 220 }, level = 50, group = "SocketedStrengthGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitStrengthGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 65, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitDexterityGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Dexterity Gems", statOrder = { 212 }, level = 40, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitDexterityGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Dexterity Gems", statOrder = { 212 }, level = 50, group = "SocketedDexterityGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitDexterityGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 65, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitIntelligenceGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Intelligence Gems", statOrder = { 215 }, level = 40, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitIntelligenceGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Intelligence Gems", statOrder = { 215 }, level = 50, group = "SocketedIntelligenceGemQuality", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitIntelligenceGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 65, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["SynthesisImplicitAoEGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed AoE Gems", statOrder = { 207 }, level = 40, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitAoEGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed AoE Gems", statOrder = { 207 }, level = 50, group = "SocketedAoEGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitAoEGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 176 }, level = 65, group = "IncreasedSocketedAoEGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitProjectileGemQuality1"] = { type = "Synthesis", affix = "", "+(2-3)% to Quality of Socketed Projectile Gems", statOrder = { 219 }, level = 40, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitProjectileGemQuality2"] = { type = "Synthesis", affix = "", "+(4-6)% to Quality of Socketed Projectile Gems", statOrder = { 219 }, level = 50, group = "SocketedProjectileGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitProjectileGemLevel1"] = { type = "Synthesis", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 177 }, level = 65, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SynthesisImplicitReducedDamageTaken1_"] = { type = "Synthesis", affix = "", "1% reduced Damage taken", statOrder = { 2238 }, level = 48, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitReducedDamageTaken2"] = { type = "Synthesis", affix = "", "2% reduced Damage taken", statOrder = { 2238 }, level = 56, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitPhysicalAttackDamageTaken1_"] = { type = "Synthesis", affix = "", "-(15-11) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 24, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAttackDamageTaken2"] = { type = "Synthesis", affix = "", "-(20-16) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 36, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAttackDamageTaken3"] = { type = "Synthesis", affix = "", "-(25-21) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 48, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAttackDamageTaken4"] = { type = "Synthesis", affix = "", "-(40-35) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 56, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAttackDamageTakenJewel1_"] = { type = "Synthesis", affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitPhysicalAttackDamageTakenJewel2___"] = { type = "Synthesis", affix = "", "-(10-8) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["SynthesisImplicitFortifyEffect1"] = { type = "Synthesis", affix = "", "+1 to maximum Fortification", statOrder = { 9117 }, level = 36, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitFortifyEffect2"] = { type = "Synthesis", affix = "", "+2 to maximum Fortification", statOrder = { 9117 }, level = 48, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitFortifyEffect3"] = { type = "Synthesis", affix = "", "+3 to maximum Fortification", statOrder = { 9117 }, level = 56, group = "FortifyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitArmourEvasionWithFortify1"] = { type = "Synthesis", affix = "", "+250 to Armour and Evasion Rating while Fortified", statOrder = { 4759 }, level = 36, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["SynthesisImplicitArmourEvasionWithFortify2"] = { type = "Synthesis", affix = "", "+500 to Armour and Evasion Rating while Fortified", statOrder = { 4759 }, level = 48, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["SynthesisImplicitArmourEvasionWithFortify3"] = { type = "Synthesis", affix = "", "+800 to Armour and Evasion Rating while Fortified", statOrder = { 4759 }, level = 56, group = "ArmourEvasionWithFortify", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["SynthesisImplicitDegenDamageTaken1_"] = { type = "Synthesis", affix = "", "3% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 65, group = "DegenDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitTotemElementalResistanceJewel1"] = { type = "Synthesis", affix = "", "Totems gain +3% to all Elemental Resistances", statOrder = { 2787 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitTotemElementalResistanceJewel2"] = { type = "Synthesis", affix = "", "Totems gain +(4-5)% to all Elemental Resistances", statOrder = { 2787 }, level = 1, group = "TotemElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitReflectDamageTaken1"] = { type = "Synthesis", affix = "", "You and your Minions take (5-8)% reduced Reflected Damage", statOrder = { 9882 }, level = 36, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitReflectDamageTaken2"] = { type = "Synthesis", affix = "", "You and your Minions take (9-12)% reduced Reflected Damage", statOrder = { 9882 }, level = 48, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitReflectDamageTaken3"] = { type = "Synthesis", affix = "", "You and your Minions take (13-15)% reduced Reflected Damage", statOrder = { 9882 }, level = 56, group = "ReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, ["SynthesisDamageCannotBeReflectedPercent1"] = { type = "Synthesis", affix = "", "(10-16)% of Damage from your Hits cannot be Reflected", statOrder = { 4 }, level = 36, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, }, ["SynthesisDamageCannotBeReflectedPercent2"] = { type = "Synthesis", affix = "", "(17-23)% of Damage from your Hits cannot be Reflected", statOrder = { 4 }, level = 48, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, }, ["SynthesisDamageCannotBeReflectedPercent3"] = { type = "Synthesis", affix = "", "(24-30)% of Damage from your Hits cannot be Reflected", statOrder = { 4 }, level = 56, group = "DamageCannotBeReflectedPercent", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitAttackerTakesDamageNoRange1_"] = { type = "Synthesis", affix = "", "Reflects (10-15) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitAttackerTakesDamageNoRange2"] = { type = "Synthesis", affix = "", "Reflects (16-40) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 15, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitAttackerTakesDamageNoRange3"] = { type = "Synthesis", affix = "", "Reflects (41-80) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 24, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitLightRadius1"] = { type = "Synthesis", affix = "", "10% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitLightRadius2"] = { type = "Synthesis", affix = "", "12% increased Light Radius", statOrder = { 2505 }, level = 15, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitLightRadius3"] = { type = "Synthesis", affix = "", "15% increased Light Radius", statOrder = { 2505 }, level = 24, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitIntimidateOnHitWeapon1"] = { type = "Synthesis", affix = "", "(4-5)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7879 }, level = 36, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitIntimidateOnHitWeapon2_"] = { type = "Synthesis", affix = "", "(6-7)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7879 }, level = 48, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitIntimidateOnHitWeapon3_"] = { type = "Synthesis", affix = "", "(8-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7879 }, level = 56, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["SynthesisImplicitAttackAndCastSpeedWithOnslaught1"] = { type = "Synthesis", affix = "", "(10-12)% increased Attack and Cast Speed during Onslaught", statOrder = { 3034 }, level = 65, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Attack and Cast Speed during Onslaught", statOrder = { 3034 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Attack and Cast Speed during Onslaught", statOrder = { 3034 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitPhysicalDamageWithUnholyMight1"] = { type = "Synthesis", affix = "", "(40-50)% increased Physical Damage while you have Unholy Might", statOrder = { 9644 }, level = 65, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel1"] = { type = "Synthesis", affix = "", "(6-8)% increased Physical Damage while you have Unholy Might", statOrder = { 9644 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel2"] = { type = "Synthesis", affix = "", "(9-10)% increased Physical Damage while you have Unholy Might", statOrder = { 9644 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["SynthesisImplicitMovementSpeedWhilePhasedJewel1_"] = { type = "Synthesis", affix = "", "2% increased Movement Speed while Phasing", statOrder = { 2615 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitMovementSpeedWhilePhasedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Movement Speed while Phasing", statOrder = { 2615 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitAdditionalVaalSoulOnKill1"] = { type = "Synthesis", affix = "", "(2-3)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 36, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, - ["SynthesisImplicitAdditionalVaalSoulOnKill2"] = { type = "Synthesis", affix = "", "(4-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 48, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, - ["SynthesisImplicitVaalSkillCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(21-30)% increased Vaal Skill Critical Strike Chance", statOrder = { 3112 }, level = 36, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, }, - ["SynthesisImplicitVaalSkillCriticalStrikeChance2_"] = { type = "Synthesis", affix = "", "(31-40)% increased Vaal Skill Critical Strike Chance", statOrder = { 3112 }, level = 48, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, }, - ["SynthesisImplicitVaalSkillDuration1"] = { type = "Synthesis", affix = "", "Vaal Skills have (5-8)% increased Skill Effect Duration", statOrder = { 3110 }, level = 36, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, - ["SynthesisImplicitVaalSkillDuration2"] = { type = "Synthesis", affix = "", "Vaal Skills have (9-12)% increased Skill Effect Duration", statOrder = { 3110 }, level = 48, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, - ["SynthesisImplicitMovementVelocityCorruptedItem1"] = { type = "Synthesis", affix = "", "(5-7)% increased Movement Speed if Corrupted", statOrder = { 8004 }, level = 60, group = "MovementVelocityCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SynthesisImplicitAttackAndCastSpeedCorruptedItem1___"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack and Cast Speed if Corrupted", statOrder = { 7861 }, level = 60, group = "AttackAndCastSpeedCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, - ["SynthesisImplicitAllElementalResistanceCorruptedItem1"] = { type = "Synthesis", affix = "", "+(8-12)% to all Elemental Resistances if Corrupted", statOrder = { 8009 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitAllElementalResistanceCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "+2% to all Elemental Resistances if Corrupted", statOrder = { 8009 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SynthesisImplicitDamageTakenCorruptedItem1"] = { type = "Synthesis", affix = "", "5% reduced Damage taken if Corrupted", statOrder = { 7891 }, level = 60, group = "DamageTakenCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SynthesisImplicitIncreasedLifeCorruptedItem1"] = { type = "Synthesis", affix = "", "(6-8)% increased maximum Life if Corrupted", statOrder = { 7998 }, level = 60, group = "IncreasedLifeCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SynthesisImplicitIncreasedEnergyShieldCorruptedItem1"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield if Corrupted", statOrder = { 7996 }, level = 60, group = "IncreasedEnergyShieldCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["SynthesisImplicitAllDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage if Corrupted", statOrder = { 7890 }, level = 60, group = "AllDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitGlobalCriticalStrikeChanceCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Global Critical Strike Chance if Corrupted", statOrder = { 7885 }, level = 60, group = "GlobalCriticalStrikeChanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SynthesisImplicitImmuneToCursesCorruptedItem1"] = { type = "Synthesis", affix = "", "Immune to Curses if Corrupted", statOrder = { 7949 }, level = 60, group = "ImmuneToCursesCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["SynthesisImplicitAttackDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Attack Damage if Corrupted", statOrder = { 7862 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitAttackDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Attack Damage if Corrupted", statOrder = { 7862 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitAttackDamageCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack Damage if Corrupted", statOrder = { 7862 }, level = 1, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["SynthesisImplicitSpellDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Spell Damage if Corrupted", statOrder = { 8032 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Spell Damage if Corrupted", statOrder = { 8032 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitSpellDamageCorruptedItemJewel1__"] = { type = "Synthesis", affix = "", "(5-7)% increased Spell Damage if Corrupted", statOrder = { 8032 }, level = 1, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SynthesisImplicitVaalSkillDamageAffectsSkillDamage1"] = { type = "Synthesis", affix = "", "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", statOrder = { 2695 }, level = 65, group = "VaalSkillDamageAffectsSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageVSAbyssMonsters1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6074 }, level = 40, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitDamageVSAbyssMonsters2"] = { type = "Synthesis", affix = "", "(21-25)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6074 }, level = 50, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters1"] = { type = "Synthesis", affix = "", "(2-3)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4583 }, level = 40, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters2"] = { type = "Synthesis", affix = "", "(4-5)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4583 }, level = 50, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SynthesisImplicitAbyssJewelEffect1"] = { type = "Synthesis", affix = "", "25% increased Effect of Socketed Abyss Jewels", statOrder = { 226 }, level = 70, group = "AbyssJewelEffect", weightKey = { }, weightVal = { }, modTags = { }, }, - ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["MinionDamageOnWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (10-19)% increased Damage", statOrder = { 1978 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (20-29)% increased Damage", statOrder = { 1978 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-39)% increased Damage", statOrder = { 1978 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon4_"] = { type = "Prefix", affix = "Countess's", "Minions deal (40-54)% increased Damage", statOrder = { 1978 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (55-69)% increased Damage", statOrder = { 1978 }, level = 46, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon6"] = { type = "Prefix", affix = "Princess's", "Minions deal (70-84)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon7"] = { type = "Prefix", affix = "Queen's", "Minions deal (85-99)% increased Damage", statOrder = { 1978 }, level = 64, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeapon8"] = { type = "Prefix", affix = "Empress's", "Minions deal (100-109)% increased Damage", statOrder = { 1978 }, level = 84, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (50-66)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (67-82)% increased Damage", statOrder = { 1978 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (83-94)% increased Damage", statOrder = { 1978 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (15-29)% increased Damage", statOrder = { 1978 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-44)% increased Damage", statOrder = { 1978 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Duchess's", "Minions deal (45-59)% increased Damage", statOrder = { 1978 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Queen's", "Minions deal (60-84)% increased Damage", statOrder = { 1978 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (85-106)% increased Damage", statOrder = { 1978 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (107-122)% increased Damage", statOrder = { 1978 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (123-144)% increased Damage", statOrder = { 1978 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Baron's", "+(17-20) to maximum Mana", "Minions deal (5-9)% increased Damage", statOrder = { 1584, 1978 }, level = 2, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon2_"] = { type = "Prefix", affix = "Viscount's", "+(21-24) to maximum Mana", "Minions deal (10-14)% increased Damage", statOrder = { 1584, 1978 }, level = 11, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Marquess's", "+(25-28) to maximum Mana", "Minions deal (15-19)% increased Damage", statOrder = { 1584, 1978 }, level = 23, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon4_"] = { type = "Prefix", affix = "Count's", "+(29-33) to maximum Mana", "Minions deal (20-24)% increased Damage", statOrder = { 1584, 1978 }, level = 35, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1600, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Duke's", "+(34-37) to maximum Mana", "Minions deal (25-29)% increased Damage", statOrder = { 1584, 1978 }, level = 46, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 800, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Prince's", "+(38-41) to maximum Mana", "Minions deal (30-34)% increased Damage", statOrder = { 1584, 1978 }, level = 58, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionDamageAndManaOnWeapon7_"] = { type = "Prefix", affix = "King's", "+(42-45) to maximum Mana", "Minions deal (35-39)% increased Damage", statOrder = { 1584, 1978 }, level = 80, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana", "minion" }, }, - ["MinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of Motivation", "Minions have (5-7)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 2, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Coercion", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 15, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Incitation", "Minions have (11-13)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 30, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed4"] = { type = "Suffix", affix = "of Agitation", "Minions have (14-16)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 40, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed5"] = { type = "Suffix", affix = "of Instigation", "Minions have (17-19)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 55, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed6__"] = { type = "Suffix", affix = "of Provocation", "Minions have (20-22)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionAttackAndCastSpeed7"] = { type = "Suffix", affix = "of Infuriation", "Minions have (23-25)% increased Attack and Cast Speed", statOrder = { 9273 }, level = 83, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["MinionGemLevel1h1"] = { type = "Prefix", affix = "Martinet's", "+1 to Level of all Minion Skill Gems", statOrder = { 1619 }, level = 60, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "minion", "gem" }, }, - ["MinionLifeWeapon1"] = { type = "Suffix", affix = "of the Administrator", "Minions have (13-17)% increased maximum Life", statOrder = { 1771 }, level = 10, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeWeapon2"] = { type = "Suffix", affix = "of the Rector", "Minions have (18-22)% increased maximum Life", statOrder = { 1771 }, level = 26, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeWeapon3"] = { type = "Suffix", affix = "of the Overseer", "Minions have (23-27)% increased maximum Life", statOrder = { 1771 }, level = 42, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeWeapon4__"] = { type = "Suffix", affix = "of the Taskmaster", "Minions have (28-32)% increased maximum Life", statOrder = { 1771 }, level = 58, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeWeapon5"] = { type = "Suffix", affix = "of the Slavedriver", "Minions have (33-36)% increased maximum Life", statOrder = { 1771 }, level = 74, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeWeapon6_"] = { type = "Suffix", affix = "of the Despot", "Minions have (37-40)% increased maximum Life", statOrder = { 1771 }, level = 82, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Coordination", "Minions have (6-10)% increased Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Collaboration", "Minions have (11-15)% increased Movement Speed", statOrder = { 1774 }, level = 15, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Integration", "Minions have (16-20)% increased Movement Speed", statOrder = { 1774 }, level = 30, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Orchestration", "Minions have (21-25)% increased Movement Speed", statOrder = { 1774 }, level = 40, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionMovementSpeed5"] = { type = "Suffix", affix = "of Harmony", "Minions have (26-30)% increased Movement Speed", statOrder = { 1774 }, level = 55, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionDamagePercent1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (5-10)% increased Damage", statOrder = { 1978 }, level = 4, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamagePercent2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (11-20)% increased Damage", statOrder = { 1978 }, level = 15, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamagePercent3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (21-30)% increased Damage", statOrder = { 1978 }, level = 30, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamagePercent4"] = { type = "Prefix", affix = "Countess's", "Minions deal (31-36)% increased Damage", statOrder = { 1978 }, level = 60, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamagePercent5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (37-42)% increased Damage", statOrder = { 1978 }, level = 81, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, - ["MinionResistancesWeapon1_"] = { type = "Suffix", affix = "of Adjustment", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2917 }, level = 8, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionResistancesWeapon2"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(16-20)% to all Elemental Resistances", statOrder = { 2917 }, level = 24, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionResistancesWeapon3"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(21-23)% to all Elemental Resistances", statOrder = { 2917 }, level = 37, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionResistancesWeapon4"] = { type = "Suffix", affix = "of Evolution", "Minions have +(24-26)% to all Elemental Resistances", statOrder = { 2917 }, level = 50, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionResistancesWeapon5"] = { type = "Suffix", affix = "of Metamorphosis", "Minions have +(27-30)% to all Elemental Resistances", statOrder = { 2917 }, level = 61, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionAccuracyRatingWeapon1_"] = { type = "Suffix", affix = "of the Instructor", "Minions have +(80-130) to Accuracy Rating", statOrder = { 9267 }, level = 1, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyRatingWeapon2"] = { type = "Suffix", affix = "of the Tutor", "Minions have +(131-215) to Accuracy Rating", statOrder = { 9267 }, level = 20, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyRatingWeapon3"] = { type = "Suffix", affix = "of the Commander", "Minions have +(216-325) to Accuracy Rating", statOrder = { 9267 }, level = 40, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyRatingWeapon4"] = { type = "Suffix", affix = "of the Magnate", "Minions have +(326-455) to Accuracy Rating", statOrder = { 9267 }, level = 60, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyRatingWeapon5"] = { type = "Suffix", affix = "of the Ruler", "Minions have +(456-545) to Accuracy Rating", statOrder = { 9267 }, level = 75, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, - ["MinionAccuracyRatingWeapon6"] = { type = "Suffix", affix = "of the Monarch", "Minions have +(546-624) to Accuracy Rating", statOrder = { 9267 }, level = 85, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, - ["MinionMaxElementalResistance1"] = { type = "Suffix", affix = "of Impermeability", "Minions have +(3-4)% to all maximum Elemental Resistances", statOrder = { 9321 }, level = 68, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, - ["MinionMaxElementalResistance2"] = { type = "Suffix", affix = "of Countervailing", "Minions have +(5-6)% to all maximum Elemental Resistances", statOrder = { 9321 }, level = 75, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, - ["MinionMaxElementalResistance3"] = { type = "Suffix", affix = "of Imperviousness", "Minions have +(7-8)% to all maximum Elemental Resistances", statOrder = { 9321 }, level = 81, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, - ["MinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Guard", "Minions have (7-9)% additional Physical Damage Reduction", statOrder = { 2279 }, level = 68, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, - ["MinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Brigade", "Minions have (10-12)% additional Physical Damage Reduction", statOrder = { 2279 }, level = 75, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, - ["MinionPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Phalanx", "Minions have (13-15)% additional Physical Damage Reduction", statOrder = { 2279 }, level = 81, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, - ["MinionCriticalStrikeChanceIncrease1"] = { type = "Suffix", affix = "of Luck", "Minions have (10-19)% increased Critical Strike Chance", statOrder = { 9292 }, level = 11, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeChanceIncrease2"] = { type = "Suffix", affix = "of Fortune", "Minions have (20-39)% increased Critical Strike Chance", statOrder = { 9292 }, level = 21, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeChanceIncrease3"] = { type = "Suffix", affix = "of Providence", "Minions have (40-59)% increased Critical Strike Chance", statOrder = { 9292 }, level = 28, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeChanceIncrease4"] = { type = "Suffix", affix = "of Serendipity", "Minions have (60-79)% increased Critical Strike Chance", statOrder = { 9292 }, level = 41, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeChanceIncrease5"] = { type = "Suffix", affix = "of Determinism", "Minions have (80-99)% increased Critical Strike Chance", statOrder = { 9292 }, level = 59, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeChanceIncrease6"] = { type = "Suffix", affix = "of Destiny", "Minions have (100-109)% increased Critical Strike Chance", statOrder = { 9292 }, level = 76, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of the Foray", "Minions have +(10-14)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 8, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of the Horde", "Minions have +(15-19)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 21, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of the Throng", "Minions have +(20-24)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of the Swarm", "Minions have +(25-29)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of the Invasion", "Minions have +(30-34)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 59, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of the Legion", "Minions have +(35-38)% to Critical Strike Multiplier", statOrder = { 9294 }, level = 73, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, - ["MinionGrantsConvocation1"] = { type = "Suffix", affix = "of the Convocation", "Grants Level 1 Convocation Skill", statOrder = { 689 }, level = 45, group = "MinionGrantsConvocation", weightKey = { "focus_can_roll_minion_modifiers", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["TrapAndMineThrowSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Trap and Mine Throwing Speed", statOrder = { 10413 }, level = 42, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapAndMineThrowSpeedEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-13)% increased Trap and Mine Throwing Speed", statOrder = { 10413 }, level = 58, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapAndMineThrowSpeedEssence3_"] = { type = "Suffix", affix = "of the Essence", "(14-17)% increased Trap and Mine Throwing Speed", statOrder = { 10413 }, level = 74, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["TrapAndMineThrowSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(18-21)% increased Trap and Mine Throwing Speed", statOrder = { 10413 }, level = 82, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["UnaffectedByShockedGroundInfluence1"] = { type = "Prefix", affix = "Crusader's", "Unaffected by Shocked Ground", statOrder = { 10480 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["SocketedLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, - ["MaximumFireResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["PhysicalAddedAsExtraLightningBootsInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningBootsInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (6-8)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["CooldownRecoveryInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-10)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["CooldownRecoveryInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AvoidIgniteInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 68, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["AvoidIgniteInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 70, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["AvoidIgniteInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["AvoidFreezeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 68, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["AvoidFreezeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 70, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["AvoidFreezeInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["AvoidShockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 68, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AvoidShockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 70, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AvoidShockInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AvoidProjectilesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-9)% chance to avoid Projectiles", statOrder = { 4998 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AvoidProjectilesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(10-12)% chance to avoid Projectiles", statOrder = { 4998 }, level = 73, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["UnaffectedByBurningGroundInfluence1"] = { type = "Prefix", affix = "Warlord's", "Unaffected by Burning Ground", statOrder = { 10455 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, - ["SocketedFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, - ["MaximumEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 75, group = "MaximumEnduranceCharges", weightKey = { "boots_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["PhysicalAddedAsExtraFireBootsInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireBootsInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["AvoidStunInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 68, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["AvoidStunInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(21-25)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 70, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["AvoidStunInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, - ["AvoidFireDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 68, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, - ["AvoidFireDamageInfluence2__"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 80, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, - ["AvoidColdDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 68, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, }, - ["AvoidColdDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 80, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, }, - ["AvoidLightningDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 68, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, }, - ["AvoidLightningDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 80, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, }, - ["LifeRegenerationPercentInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (0.8-1.2)% of Life per second", statOrder = { 1949 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRegenerationPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (1.3-1.5)% of Life per second", statOrder = { 1949 }, level = 73, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["AdditionalPhysicalDamageReductionInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(2-4)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["UnaffectedByChilledGroundInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Unaffected by Chilled Ground", statOrder = { 10460 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["SocketedColdGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, - ["EnduranceChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["EnduranceChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 80, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["PhysicalAddedAsExtraColdBootsInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdBootsInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (6-8)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ElusiveOnCriticalStrikeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% chance to gain Elusive on Critical Strike", statOrder = { 4286 }, level = 75, group = "ElusiveOnCriticalStrike", weightKey = { "boots_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "critical" }, }, - ["ChanceToDodgeAttacksInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeAttacksInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeAttacksInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsInfluence2___"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["IncreasedAilmentEffectOnEnemiesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(30-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(35-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 73, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, }, - ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["UnaffectedByDesecratedGroundInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Unaffected by Desecrated Ground", statOrder = { 10466 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos" }, }, - ["SocketedChaosGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+2 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "gem" }, }, - ["AdditionalPierceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "boots_basilisk", "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, - ["AdditionalPierceInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 80, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["PercentageStrengthInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Strength", statOrder = { 1189 }, level = 68, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["PercentageStrengthInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Strength", statOrder = { 1189 }, level = 75, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["AvoidBleedAndPoisonInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% chance to Avoid being Poisoned", "(21-25)% chance to Avoid Bleeding", statOrder = { 1854, 4221 }, level = 68, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, - ["AvoidBleedAndPoisonInfluence2____"] = { type = "Suffix", affix = "of the Hunt", "(26-30)% chance to Avoid being Poisoned", "(26-30)% chance to Avoid Bleeding", statOrder = { 1854, 4221 }, level = 70, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, - ["AvoidBleedAndPoisonInfluence3"] = { type = "Suffix", affix = "of the Hunt", "(41-50)% chance to Avoid being Poisoned", "(41-50)% chance to Avoid Bleeding", statOrder = { 1854, 4221 }, level = 75, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, - ["TailwindOnCriticalStrikeInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10347 }, level = 75, group = "TailwindOnCriticalStrike", weightKey = { "boots_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["FasterIgniteInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (7-9)% faster", statOrder = { 2569 }, level = 68, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (10-12)% faster", statOrder = { 2569 }, level = 73, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterBleedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (7-9)% faster", statOrder = { 6549 }, level = 68, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (10-12)% faster", statOrder = { 6549 }, level = 73, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterPoisonInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (7-9)% faster", statOrder = { 6550 }, level = 68, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (10-12)% faster", statOrder = { 6550 }, level = 73, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["MaximumColdResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceInfluence1New"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceInfluence2New"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["ConvertPhysicalToFireInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["MaximumLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 75, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumEnergyShieldLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1739 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["MaximumEnergyShieldLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1739 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["AvoidInterruptionWhileCastingInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AvoidInterruptionWhileCastingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 70, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AvoidInterruptionWhileCastingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["GlobalCriticalStrikeChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 68, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["GlobalCriticalStrikeChanceInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 70, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["GlobalCriticalStrikeChanceInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 75, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["MaximumFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 75, group = "MaximumFrenzyCharges", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["MeleeDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Melee Damage", statOrder = { 1239 }, level = 68, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Melee Damage", statOrder = { 1239 }, level = 70, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Melee Damage", statOrder = { 1239 }, level = 73, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 70, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 73, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["SpellDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Spell Damage", statOrder = { 1228 }, level = 70, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Spell Damage", statOrder = { 1228 }, level = 73, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["DamageOverTimeInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Damage over Time", statOrder = { 1215 }, level = 68, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageOverTimeInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Damage over Time", statOrder = { 1215 }, level = 70, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageOverTimeInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Damage over Time", statOrder = { 1215 }, level = 73, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["MeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range", statOrder = { 2539 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["BlockPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(2-3)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 68, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(4-5)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 80, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["CullingStrikeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Culling Strike", statOrder = { 2044 }, level = 73, group = "CullingStrike", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 250, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["FrenzyChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["FrenzyChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 80, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["AddedPhysicalDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9251 }, level = 68, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["AddedPhysicalDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9251 }, level = 73, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["AddedFireDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9239 }, level = 68, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["AddedFireDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9239 }, level = 73, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["AddedColdDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9234 }, level = 68, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["AddedColdDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9234 }, level = 73, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["AddedLightningDamageCritRecentlyInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9245 }, level = 68, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9245 }, level = 73, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["MinionDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-22)% increased Damage", statOrder = { 1978 }, level = 68, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["MinionDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (23-26)% increased Damage", statOrder = { 1978 }, level = 70, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["MinionDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (27-30)% increased Damage", statOrder = { 1978 }, level = 73, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["IncreasedAccuracyPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["IncreasedAccuracyPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 80, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["GlobalChanceToBlindOnHitInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(8-11)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["GlobalChanceToBlindOnHitInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 80, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["AdditionalChanceToEvadeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["ChanceToIntimidateOnHitInfluence1"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 85, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitInfluence1___"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 85, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["StrikeSkillsAdditionalTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 80, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, }, - ["ChanceToImpaleInfluence1"] = { type = "Prefix", affix = "Hunter's", "(13-16)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 68, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, - ["ChanceToImpaleInfluence2"] = { type = "Prefix", affix = "Hunter's", "(17-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 80, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, - ["AilmentDurationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(10-12)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["AilmentDurationInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 80, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["PercentageDexterityInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Dexterity", statOrder = { 1190 }, level = 68, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["PercentageDexterityInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Dexterity", statOrder = { 1190 }, level = 75, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["FireDamageOverTimeMultiplierInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ChaosDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["PhysicalDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["MaximumLightningResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumManaInfluence1"] = { type = "Prefix", affix = "Crusader's", "(9-11)% increased maximum Mana", statOrder = { 1585 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumManaInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(12-15)% increased maximum Mana", statOrder = { 1585 }, level = 80, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["PhysTakenAsLightningHelmInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["PhysTakenAsLightningHelmInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["EnemyLightningResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7921 }, level = 85, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, }, - ["SpellBlockPercentInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(3-4)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockPercentInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["FortifyEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+(3-4) to maximum Fortification", statOrder = { 9121 }, level = 75, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["FortifyEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(4.2-5) to maximum Fortification", statOrder = { 9121 }, level = 80, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["EnergyShieldRegenInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2651 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["ReducedIgniteDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 68, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 70, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationInfluence3__"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["ReducedFreezeDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 70, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ReducedShockEffectInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 70, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["MaximumPowerChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 75, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PhysTakenAsFireHelmetInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["PhysTakenAsFireHelmetInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["ElementalDamageInfluence1____"] = { type = "Prefix", affix = "Warlord's", "(12-14)% increased Elemental Damage", statOrder = { 1985 }, level = 68, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(15-18)% increased Elemental Damage", statOrder = { 1985 }, level = 70, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["ElementalDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(19-22)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["WarcryAreaOfEffectInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (21-25)% increased Area of Effect", statOrder = { 10573 }, level = 68, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["WarcryAreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10573 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["EnemyFireResistanceAuraInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7919 }, level = 85, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, }, - ["CriticalStrikeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(11-13)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 70, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierInfluence3"] = { type = "Suffix", affix = "of the Conquest", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["ManaRegenerationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["GainAccuracyEqualToStrengthInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain Accuracy Rating equal to your Strength", statOrder = { 6717 }, level = 75, group = "GainAccuracyEqualToStrength", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["MinionLifeInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Minions have (21-26)% increased maximum Life", statOrder = { 1771 }, level = 68, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, - ["MinionLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Minions have (27-30)% increased maximum Life", statOrder = { 1771 }, level = 70, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, - ["MinionLifeInfluence3"] = { type = "Suffix", affix = "of the Conquest", "Minions have (31-35)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, - ["PowerChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PowerChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 80, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PhysTakenAsColdHelmetInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["PhysTakenAsColdHelmetInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10719 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, - ["EnemyColdResistanceAuraInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7917 }, level = 85, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, }, - ["ReducedManaReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 68, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaReservationEfficiencyInfluence1___"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ReducedManaReservationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 75, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaReservationEfficiencyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["IgniteChanceAndDamageInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(15-17)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1882, 2031 }, level = 68, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["IgniteChanceAndDamageInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(18-20)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1882, 2031 }, level = 75, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1863, 2034 }, level = 68, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1863, 2034 }, level = 75, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ShockChanceAndEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 2038, 7438 }, level = 68, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ShockChanceAndEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(13-15)% increased Effect of Lightning Ailments", statOrder = { 2038, 7438 }, level = 75, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AddedManaRegenerationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Regenerate (3-5) Mana per second", statOrder = { 1587 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AddedManaRegenerationInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Regenerate (6-8) Mana per second", statOrder = { 1587 }, level = 75, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["SpellAddedFireDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1409 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1409 }, level = 70, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1410 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1410 }, level = 70, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1411 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1411 }, level = 70, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1408 }, level = 70, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1412 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1412 }, level = 70, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["EnemyChaosResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7916 }, level = 85, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["PercentageIntelligenceInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Intelligence", statOrder = { 1191 }, level = 68, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["PercentageIntelligenceInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Intelligence", statOrder = { 1191 }, level = 75, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["IgnitingConfluxInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 6826 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["ChillingConfluxInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 6826 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["ShockingConfluxInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 6826 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["PhysTakenAsLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["PhysTakenAsLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["ConsecratedGroundStationaryInfluence1_"] = { type = "Prefix", affix = "Crusader's", "You have Consecrated Ground around you while stationary", statOrder = { 5861 }, level = 75, group = "ConsecratedGroundStationary", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["HolyPhysicalExplosionInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6377 }, level = 85, group = "EnemiesExplodeOnDeathPhysical", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["HolyPhysicalExplosionChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3309 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["HolyPhysicalExplosionChanceInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3309 }, level = 85, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 25, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["PercentageIntelligenceBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-8)% increased Intelligence", statOrder = { 1191 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageIntelligenceBodyInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "(9-12)% increased Intelligence", statOrder = { 1191 }, level = 75, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["AddPowerChargeOnCritInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1835 }, level = 80, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, }, - ["EnergyShieldOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1755 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldOnKillPercentInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1755 }, level = 80, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(8-11)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(12-15)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 80, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["PhysTakenAsFireInfluence1"] = { type = "Prefix", affix = "Warlord's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["PhysTakenAsFireInfluence2"] = { type = "Prefix", affix = "Warlord's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["SocketedActiveGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of Socketed Skill Gems", statOrder = { 195 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, }, - ["ReflectedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Warlord's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["SynthesisImplicitAttackerTakesDamageNoRange1_"] = { type = "Synthesis", affix = "", "Reflects (10-15) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitAttackerTakesDamageNoRange2"] = { type = "Synthesis", affix = "", "Reflects (16-40) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 15, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitAttackerTakesDamageNoRange3"] = { type = "Synthesis", affix = "", "Reflects (41-80) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 24, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitLightRadius1"] = { type = "Synthesis", affix = "", "10% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitLightRadius2"] = { type = "Synthesis", affix = "", "12% increased Light Radius", statOrder = { 2500 }, level = 15, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitLightRadius3"] = { type = "Synthesis", affix = "", "15% increased Light Radius", statOrder = { 2500 }, level = 24, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitIntimidateOnHitWeapon1"] = { type = "Synthesis", affix = "", "(4-5)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7874 }, level = 36, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitIntimidateOnHitWeapon2_"] = { type = "Synthesis", affix = "", "(6-7)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7874 }, level = 48, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitIntimidateOnHitWeapon3_"] = { type = "Synthesis", affix = "", "(8-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7874 }, level = 56, group = "LocalChanceToIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SynthesisImplicitAttackAndCastSpeedWithOnslaught1"] = { type = "Synthesis", affix = "", "(10-12)% increased Attack and Cast Speed during Onslaught", statOrder = { 3029 }, level = 65, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel1"] = { type = "Synthesis", affix = "", "(2-3)% increased Attack and Cast Speed during Onslaught", statOrder = { 3029 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeedWithOnslaughtJewel2"] = { type = "Synthesis", affix = "", "(4-5)% increased Attack and Cast Speed during Onslaught", statOrder = { 3029 }, level = 1, group = "AttackAndCastSpeedWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitPhysicalDamageWithUnholyMight1"] = { type = "Synthesis", affix = "", "(40-50)% increased Physical Damage while you have Unholy Might", statOrder = { 9645 }, level = 65, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel1"] = { type = "Synthesis", affix = "", "(6-8)% increased Physical Damage while you have Unholy Might", statOrder = { 9645 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitPhysicalDamageWithUnholyMightJewel2"] = { type = "Synthesis", affix = "", "(9-10)% increased Physical Damage while you have Unholy Might", statOrder = { 9645 }, level = 1, group = "PhysicalDamageWithUnholyMight", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SynthesisImplicitMovementSpeedWhilePhasedJewel1_"] = { type = "Synthesis", affix = "", "2% increased Movement Speed while Phasing", statOrder = { 2610 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitMovementSpeedWhilePhasedJewel2_"] = { type = "Synthesis", affix = "", "3% increased Movement Speed while Phasing", statOrder = { 2610 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitAdditionalVaalSoulOnKill1"] = { type = "Synthesis", affix = "", "(2-3)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 36, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["SynthesisImplicitAdditionalVaalSoulOnKill2"] = { type = "Synthesis", affix = "", "(4-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 48, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["SynthesisImplicitVaalSkillCriticalStrikeChance1"] = { type = "Synthesis", affix = "", "(21-30)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 36, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, }, + ["SynthesisImplicitVaalSkillCriticalStrikeChance2_"] = { type = "Synthesis", affix = "", "(31-40)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 48, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, }, + ["SynthesisImplicitVaalSkillDuration1"] = { type = "Synthesis", affix = "", "Vaal Skills have (5-8)% increased Skill Effect Duration", statOrder = { 3105 }, level = 36, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["SynthesisImplicitVaalSkillDuration2"] = { type = "Synthesis", affix = "", "Vaal Skills have (9-12)% increased Skill Effect Duration", statOrder = { 3105 }, level = 48, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["SynthesisImplicitMovementVelocityCorruptedItem1"] = { type = "Synthesis", affix = "", "(5-7)% increased Movement Speed if Corrupted", statOrder = { 7999 }, level = 60, group = "MovementVelocityCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SynthesisImplicitAttackAndCastSpeedCorruptedItem1___"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack and Cast Speed if Corrupted", statOrder = { 7856 }, level = 60, group = "AttackAndCastSpeedCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SynthesisImplicitAllElementalResistanceCorruptedItem1"] = { type = "Synthesis", affix = "", "+(8-12)% to all Elemental Resistances if Corrupted", statOrder = { 8004 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitAllElementalResistanceCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "+2% to all Elemental Resistances if Corrupted", statOrder = { 8004 }, level = 60, group = "AllElementalResistanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SynthesisImplicitDamageTakenCorruptedItem1"] = { type = "Synthesis", affix = "", "5% reduced Damage taken if Corrupted", statOrder = { 7886 }, level = 60, group = "DamageTakenCorruptedItem", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SynthesisImplicitIncreasedLifeCorruptedItem1"] = { type = "Synthesis", affix = "", "(6-8)% increased maximum Life if Corrupted", statOrder = { 7993 }, level = 60, group = "IncreasedLifeCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SynthesisImplicitIncreasedEnergyShieldCorruptedItem1"] = { type = "Synthesis", affix = "", "(8-10)% increased maximum Energy Shield if Corrupted", statOrder = { 7991 }, level = 60, group = "IncreasedEnergyShieldCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SynthesisImplicitAllDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage if Corrupted", statOrder = { 7885 }, level = 60, group = "AllDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitGlobalCriticalStrikeChanceCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Global Critical Strike Chance if Corrupted", statOrder = { 7880 }, level = 60, group = "GlobalCriticalStrikeChanceCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SynthesisImplicitImmuneToCursesCorruptedItem1"] = { type = "Synthesis", affix = "", "Immune to Curses if Corrupted", statOrder = { 7944 }, level = 60, group = "ImmuneToCursesCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SynthesisImplicitAttackDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Attack Damage if Corrupted", statOrder = { 7857 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitAttackDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Attack Damage if Corrupted", statOrder = { 7857 }, level = 60, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitAttackDamageCorruptedItemJewel1"] = { type = "Synthesis", affix = "", "(5-7)% increased Attack Damage if Corrupted", statOrder = { 7857 }, level = 1, group = "AttackDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SynthesisImplicitSpellDamageCorruptedItem1"] = { type = "Synthesis", affix = "", "(40-50)% increased Spell Damage if Corrupted", statOrder = { 8027 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageCorruptedItem2"] = { type = "Synthesis", affix = "", "(60-70)% increased Spell Damage if Corrupted", statOrder = { 8027 }, level = 60, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitSpellDamageCorruptedItemJewel1__"] = { type = "Synthesis", affix = "", "(5-7)% increased Spell Damage if Corrupted", statOrder = { 8027 }, level = 1, group = "SpellDamageCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SynthesisImplicitVaalSkillDamageAffectsSkillDamage1"] = { type = "Synthesis", affix = "", "Increases and Reductions to Damage with Vaal Skills also apply to Non-Vaal Skills", statOrder = { 2690 }, level = 65, group = "VaalSkillDamageAffectsSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageVSAbyssMonsters1"] = { type = "Synthesis", affix = "", "(15-20)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6069 }, level = 40, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitDamageVSAbyssMonsters2"] = { type = "Synthesis", affix = "", "(21-25)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6069 }, level = 50, group = "DamageVSAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters1"] = { type = "Synthesis", affix = "", "(2-3)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4578 }, level = 40, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitReducedPhysicalDamageTakenVsAbyssMonsters2"] = { type = "Synthesis", affix = "", "(4-5)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4578 }, level = 50, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SynthesisImplicitAbyssJewelEffect1"] = { type = "Synthesis", affix = "", "25% increased Effect of Socketed Abyss Jewels", statOrder = { 221 }, level = 70, group = "AbyssJewelEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponFireAddedAsChaos1h1"] = { type = "Prefix", affix = "Acidic", "Gain (5-7)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponFireAddedAsChaos1h2"] = { type = "Prefix", affix = "Dissolving", "Gain (8-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponFireAddedAsChaos1h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (11-13)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponColdAddedAsChaos1h1"] = { type = "Prefix", affix = "Atrophic", "Gain (5-7)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponColdAddedAsChaos1h2"] = { type = "Prefix", affix = "Festering", "Gain (8-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponColdAddedAsChaos1h3_"] = { type = "Prefix", affix = "Mortifying", "Gain (11-13)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponLightningAddedAsChaos1h1"] = { type = "Prefix", affix = "Agonizing", "Gain (5-7)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponLightningAddedAsChaos1h2"] = { type = "Prefix", affix = "Harrowing", "Gain (8-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponLightningAddedAsChaos1h3_"] = { type = "Prefix", affix = "Excruciating", "Gain (11-13)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos1h1____"] = { type = "Prefix", affix = "Pernicious", "Gain (5-7)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos1h2"] = { type = "Prefix", affix = "Inimical", "Gain (8-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos1h3_"] = { type = "Prefix", affix = "Baleful", "Gain (11-13)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["WeaponFireAddedAsChaos2h1_"] = { type = "Prefix", affix = "Acidic", "Gain (10-14)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 66, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponFireAddedAsChaos2h2"] = { type = "Prefix", affix = "Dissolving", "Gain (15-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 72, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponFireAddedAsChaos2h3_"] = { type = "Prefix", affix = "Corrosive", "Gain (21-26)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 80, group = "FireAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["WeaponColdAddedAsChaos2h1"] = { type = "Prefix", affix = "Atrophic", "Gain (10-14)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 66, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponColdAddedAsChaos2h2"] = { type = "Prefix", affix = "Festering", "Gain (15-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 72, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponColdAddedAsChaos2h3"] = { type = "Prefix", affix = "Mortifying", "Gain (21-26)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 80, group = "ColdAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["WeaponLightningAddedAsChaos2h1"] = { type = "Prefix", affix = "Agonizing", "Gain (10-14)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 66, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponLightningAddedAsChaos2h2"] = { type = "Prefix", affix = "Harrowing", "Gain (15-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 72, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponLightningAddedAsChaos2h3"] = { type = "Prefix", affix = "Excruciating", "Gain (21-26)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 80, group = "LightningAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos2h1"] = { type = "Prefix", affix = "Pernicious", "Gain (10-14)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 66, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos2h2"] = { type = "Prefix", affix = "Inimical", "Gain (15-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 72, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["WeaponPhysicalAddedAsChaos2h3"] = { type = "Prefix", affix = "Baleful", "Gain (21-26)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 80, group = "PhysicalAddedAsChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["MinionDamageOnWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (10-19)% increased Damage", statOrder = { 1973 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (20-29)% increased Damage", statOrder = { 1973 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-39)% increased Damage", statOrder = { 1973 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 3000, 3000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon4_"] = { type = "Prefix", affix = "Countess's", "Minions deal (40-54)% increased Damage", statOrder = { 1973 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1200, 1200, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (55-69)% increased Damage", statOrder = { 1973 }, level = 46, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon6"] = { type = "Prefix", affix = "Princess's", "Minions deal (70-84)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon7"] = { type = "Prefix", affix = "Queen's", "Minions deal (85-99)% increased Damage", statOrder = { 1973 }, level = 64, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 160, 160, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeapon8"] = { type = "Prefix", affix = "Empress's", "Minions deal (100-109)% increased Damage", statOrder = { 1973 }, level = 84, group = "MinionDamageOnWeapon", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (50-66)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (67-82)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (83-94)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeapon1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (15-29)% increased Damage", statOrder = { 1973 }, level = 2, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeapon2"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 11, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeapon3"] = { type = "Prefix", affix = "Duchess's", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 23, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeapon4"] = { type = "Prefix", affix = "Queen's", "Minions deal (60-84)% increased Damage", statOrder = { 1973 }, level = 35, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEssence5"] = { type = "Prefix", affix = "Essences", "Minions deal (85-106)% increased Damage", statOrder = { 1973 }, level = 58, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEssence6"] = { type = "Prefix", affix = "Essences", "Minions deal (107-122)% increased Damage", statOrder = { 1973 }, level = 74, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageOnTwoHandWeaponEssence7"] = { type = "Prefix", affix = "Essences", "Minions deal (123-144)% increased Damage", statOrder = { 1973 }, level = 82, group = "MinionDamageOnWeapon", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageAndManaOnWeapon1"] = { type = "Prefix", affix = "Baron's", "+(17-20) to maximum Mana", "Minions deal (5-9)% increased Damage", statOrder = { 1579, 1973 }, level = 2, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon2_"] = { type = "Prefix", affix = "Viscount's", "+(21-24) to maximum Mana", "Minions deal (10-14)% increased Damage", statOrder = { 1579, 1973 }, level = 11, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon3"] = { type = "Prefix", affix = "Marquess's", "+(25-28) to maximum Mana", "Minions deal (15-19)% increased Damage", statOrder = { 1579, 1973 }, level = 23, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon4_"] = { type = "Prefix", affix = "Count's", "+(29-33) to maximum Mana", "Minions deal (20-24)% increased Damage", statOrder = { 1579, 1973 }, level = 35, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1600, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon5"] = { type = "Prefix", affix = "Duke's", "+(34-37) to maximum Mana", "Minions deal (25-29)% increased Damage", statOrder = { 1579, 1973 }, level = 46, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 800, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon6"] = { type = "Prefix", affix = "Prince's", "+(38-41) to maximum Mana", "Minions deal (30-34)% increased Damage", statOrder = { 1579, 1973 }, level = 58, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionDamageAndManaOnWeapon7_"] = { type = "Prefix", affix = "King's", "+(42-45) to maximum Mana", "Minions deal (35-39)% increased Damage", statOrder = { 1579, 1973 }, level = 80, group = "MinionDamageOnWeaponAndMana", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana", "minion" }, }, + ["MinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of Motivation", "Minions have (5-7)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 2, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Coercion", "Minions have (8-10)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 15, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Incitation", "Minions have (11-13)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 30, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed4"] = { type = "Suffix", affix = "of Agitation", "Minions have (14-16)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 40, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed5"] = { type = "Suffix", affix = "of Instigation", "Minions have (17-19)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 55, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed6__"] = { type = "Suffix", affix = "of Provocation", "Minions have (20-22)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 72, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAttackAndCastSpeed7"] = { type = "Suffix", affix = "of Infuriation", "Minions have (23-25)% increased Attack and Cast Speed", statOrder = { 9269 }, level = 83, group = "MinionAttackSpeedAndCastSpeed", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionGemLevel1h1"] = { type = "Prefix", affix = "Martinet's", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 60, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "minion", "gem" }, }, + ["MinionLifeWeapon1"] = { type = "Suffix", affix = "of the Administrator", "Minions have (13-17)% increased maximum Life", statOrder = { 1766 }, level = 10, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeWeapon2"] = { type = "Suffix", affix = "of the Rector", "Minions have (18-22)% increased maximum Life", statOrder = { 1766 }, level = 26, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeWeapon3"] = { type = "Suffix", affix = "of the Overseer", "Minions have (23-27)% increased maximum Life", statOrder = { 1766 }, level = 42, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeWeapon4__"] = { type = "Suffix", affix = "of the Taskmaster", "Minions have (28-32)% increased maximum Life", statOrder = { 1766 }, level = 58, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeWeapon5"] = { type = "Suffix", affix = "of the Slavedriver", "Minions have (33-36)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeWeapon6_"] = { type = "Suffix", affix = "of the Despot", "Minions have (37-40)% increased maximum Life", statOrder = { 1766 }, level = 82, group = "MinionLife", weightKey = { "two_hand_weapon", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionMovementSpeed1"] = { type = "Suffix", affix = "of Coordination", "Minions have (6-10)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionMovementSpeed2"] = { type = "Suffix", affix = "of Collaboration", "Minions have (11-15)% increased Movement Speed", statOrder = { 1769 }, level = 15, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionMovementSpeed3"] = { type = "Suffix", affix = "of Integration", "Minions have (16-20)% increased Movement Speed", statOrder = { 1769 }, level = 30, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionMovementSpeed4"] = { type = "Suffix", affix = "of Orchestration", "Minions have (21-25)% increased Movement Speed", statOrder = { 1769 }, level = 40, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionMovementSpeed5"] = { type = "Suffix", affix = "of Harmony", "Minions have (26-30)% increased Movement Speed", statOrder = { 1769 }, level = 55, group = "MinionMovementSpeed", weightKey = { "two_hand_weapon", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionDamagePercent1"] = { type = "Prefix", affix = "Baroness's", "Minions deal (5-10)% increased Damage", statOrder = { 1973 }, level = 4, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamagePercent2"] = { type = "Prefix", affix = "Viscountess's", "Minions deal (11-20)% increased Damage", statOrder = { 1973 }, level = 15, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamagePercent3"] = { type = "Prefix", affix = "Marchioness's", "Minions deal (21-30)% increased Damage", statOrder = { 1973 }, level = 30, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamagePercent4"] = { type = "Prefix", affix = "Countess's", "Minions deal (31-36)% increased Damage", statOrder = { 1973 }, level = 60, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamagePercent5"] = { type = "Prefix", affix = "Duchess's", "Minions deal (37-42)% increased Damage", statOrder = { 1973 }, level = 81, group = "MinionDamage", weightKey = { "ring_can_roll_minion_modifiers", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "minion" }, }, + ["MinionResistancesWeapon1_"] = { type = "Suffix", affix = "of Adjustment", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2912 }, level = 8, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionResistancesWeapon2"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(16-20)% to all Elemental Resistances", statOrder = { 2912 }, level = 24, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionResistancesWeapon3"] = { type = "Suffix", affix = "of Adaptation", "Minions have +(21-23)% to all Elemental Resistances", statOrder = { 2912 }, level = 37, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionResistancesWeapon4"] = { type = "Suffix", affix = "of Evolution", "Minions have +(24-26)% to all Elemental Resistances", statOrder = { 2912 }, level = 50, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionResistancesWeapon5"] = { type = "Suffix", affix = "of Metamorphosis", "Minions have +(27-30)% to all Elemental Resistances", statOrder = { 2912 }, level = 61, group = "MinionElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "ring_can_roll_minion_modifiers", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionAccuracyRatingWeapon1_"] = { type = "Suffix", affix = "of the Instructor", "Minions have +(80-130) to Accuracy Rating", statOrder = { 9263 }, level = 1, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyRatingWeapon2"] = { type = "Suffix", affix = "of the Tutor", "Minions have +(131-215) to Accuracy Rating", statOrder = { 9263 }, level = 20, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyRatingWeapon3"] = { type = "Suffix", affix = "of the Commander", "Minions have +(216-325) to Accuracy Rating", statOrder = { 9263 }, level = 40, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyRatingWeapon4"] = { type = "Suffix", affix = "of the Magnate", "Minions have +(326-455) to Accuracy Rating", statOrder = { 9263 }, level = 60, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyRatingWeapon5"] = { type = "Suffix", affix = "of the Ruler", "Minions have +(456-545) to Accuracy Rating", statOrder = { 9263 }, level = 75, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionAccuracyRatingWeapon6"] = { type = "Suffix", affix = "of the Monarch", "Minions have +(546-624) to Accuracy Rating", statOrder = { 9263 }, level = 85, group = "MinionFlatAccuracyRating", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "minion" }, }, + ["MinionMaxElementalResistance1"] = { type = "Suffix", affix = "of Impermeability", "Minions have +(3-4)% to all maximum Elemental Resistances", statOrder = { 9317 }, level = 68, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, + ["MinionMaxElementalResistance2"] = { type = "Suffix", affix = "of Countervailing", "Minions have +(5-6)% to all maximum Elemental Resistances", statOrder = { 9317 }, level = 75, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, + ["MinionMaxElementalResistance3"] = { type = "Suffix", affix = "of Imperviousness", "Minions have +(7-8)% to all maximum Elemental Resistances", statOrder = { 9317 }, level = 81, group = "MinionMaxElementalResistance", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "minion" }, }, + ["MinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Guard", "Minions have (7-9)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 68, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, + ["MinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Brigade", "Minions have (10-12)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 75, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, + ["MinionPhysicalDamageReduction3"] = { type = "Suffix", affix = "of the Phalanx", "Minions have (13-15)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 81, group = "MinionPhysicalDamageReduction", weightKey = { "focus_can_roll_minion_modifiers", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "minion" }, }, + ["MinionCriticalStrikeChanceIncrease1"] = { type = "Suffix", affix = "of Luck", "Minions have (10-19)% increased Critical Strike Chance", statOrder = { 9288 }, level = 11, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeChanceIncrease2"] = { type = "Suffix", affix = "of Fortune", "Minions have (20-39)% increased Critical Strike Chance", statOrder = { 9288 }, level = 21, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeChanceIncrease3"] = { type = "Suffix", affix = "of Providence", "Minions have (40-59)% increased Critical Strike Chance", statOrder = { 9288 }, level = 28, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeChanceIncrease4"] = { type = "Suffix", affix = "of Serendipity", "Minions have (60-79)% increased Critical Strike Chance", statOrder = { 9288 }, level = 41, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeChanceIncrease5"] = { type = "Suffix", affix = "of Determinism", "Minions have (80-99)% increased Critical Strike Chance", statOrder = { 9288 }, level = 59, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeChanceIncrease6"] = { type = "Suffix", affix = "of Destiny", "Minions have (100-109)% increased Critical Strike Chance", statOrder = { 9288 }, level = 76, group = "MinionCriticalStrikeChanceIncrease", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "focus_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 2000, 0 }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of the Foray", "Minions have +(10-14)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 8, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of the Horde", "Minions have +(15-19)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 21, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of the Throng", "Minions have +(20-24)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 30, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of the Swarm", "Minions have +(25-29)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 44, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of the Invasion", "Minions have +(30-34)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 59, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionCriticalStrikeMultiplier6"] = { type = "Suffix", affix = "of the Legion", "Minions have +(35-38)% to Critical Strike Multiplier", statOrder = { 9290 }, level = 73, group = "MinionCriticalStrikeMultiplier", weightKey = { "two_hand_weapon", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "damage", "minion", "critical" }, }, + ["MinionGrantsConvocation1"] = { type = "Suffix", affix = "of the Convocation", "Grants Level 1 Convocation Skill", statOrder = { 684 }, level = 45, group = "MinionGrantsConvocation", weightKey = { "focus_can_roll_minion_modifiers", "weapon_can_roll_minion_modifiers", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["TrapAndMineThrowSpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(7-10)% increased Trap and Mine Throwing Speed", statOrder = { 10414 }, level = 42, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapAndMineThrowSpeedEssence2_"] = { type = "Suffix", affix = "of the Essence", "(11-13)% increased Trap and Mine Throwing Speed", statOrder = { 10414 }, level = 58, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapAndMineThrowSpeedEssence3_"] = { type = "Suffix", affix = "of the Essence", "(14-17)% increased Trap and Mine Throwing Speed", statOrder = { 10414 }, level = 74, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["TrapAndMineThrowSpeedEssence4"] = { type = "Suffix", affix = "of the Essence", "(18-21)% increased Trap and Mine Throwing Speed", statOrder = { 10414 }, level = 82, group = "TrapAndMineThrowSpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["UnaffectedByShockedGroundInfluence1"] = { type = "Prefix", affix = "Crusader's", "Unaffected by Shocked Ground", statOrder = { 10481 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["SocketedLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, + ["MaximumFireResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 85, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["PhysicalAddedAsExtraLightningBootsInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningBootsInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (6-8)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["CooldownRecoveryInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(6-10)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["CooldownRecoveryInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 80, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AvoidIgniteInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 68, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["AvoidIgniteInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 70, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["AvoidIgniteInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["AvoidFreezeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 68, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["AvoidFreezeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 70, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["AvoidFreezeInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["AvoidShockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 68, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AvoidShockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 70, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AvoidShockInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AvoidProjectilesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-9)% chance to avoid Projectiles", statOrder = { 4993 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AvoidProjectilesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(10-12)% chance to avoid Projectiles", statOrder = { 4993 }, level = 73, group = "ChanceToAvoidProjectiles", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["UnaffectedByBurningGroundInfluence1"] = { type = "Prefix", affix = "Warlord's", "Unaffected by Burning Ground", statOrder = { 10456 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, + ["SocketedFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, + ["MaximumEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 75, group = "MaximumEnduranceCharges", weightKey = { "boots_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["PhysicalAddedAsExtraFireBootsInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireBootsInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (6-8)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["AvoidStunInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 68, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["AvoidStunInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(21-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 70, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["AvoidStunInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "influence_mod" }, }, + ["AvoidFireDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 68, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, + ["AvoidFireDamageInfluence2__"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 80, group = "FireDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "fire" }, }, + ["AvoidColdDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 68, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, }, + ["AvoidColdDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 80, group = "ColdDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "cold" }, }, + ["AvoidLightningDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 68, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, }, + ["AvoidLightningDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 80, group = "LightningDamageAvoidance", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "lightning" }, }, + ["LifeRegenerationPercentInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (0.8-1.2)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRegenerationPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate (1.3-1.5)% of Life per second", statOrder = { 1944 }, level = 73, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["AdditionalPhysicalDamageReductionInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(2-4)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["UnaffectedByChilledGroundInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Unaffected by Chilled Ground", statOrder = { 10461 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["SocketedColdGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, + ["EnduranceChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["EnduranceChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 80, group = "EnduranceChargeOnKillChance", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["PhysicalAddedAsExtraColdBootsInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdBootsInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (6-8)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ElusiveOnCriticalStrikeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(5-10)% chance to gain Elusive on Critical Strike", statOrder = { 4281 }, level = 75, group = "ElusiveOnCriticalStrike", weightKey = { "boots_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "critical" }, }, + ["ChanceToDodgeAttacksInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeAttacksInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeAttacksInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(4-7)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 68, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsInfluence2___"] = { type = "Suffix", affix = "of Redemption", "+(9-12)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 73, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 80, group = "ChanceToSuppressSpellsOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["IncreasedAilmentEffectOnEnemiesInfluence1"] = { type = "Suffix", affix = "of Redemption", "(30-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesInfluence2"] = { type = "Suffix", affix = "of Redemption", "(35-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 73, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "ailment" }, }, + ["OnslaughtOnKillInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 75, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["OnslaughtOnKillInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["UnaffectedByDesecratedGroundInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Unaffected by Desecrated Ground", statOrder = { 10467 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos" }, }, + ["SocketedChaosGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "gem" }, }, + ["AdditionalPierceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "boots_basilisk", "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, + ["AdditionalPierceInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 80, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["PercentageStrengthInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["PercentageStrengthInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Strength", statOrder = { 1184 }, level = 75, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["AvoidBleedAndPoisonInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% chance to Avoid being Poisoned", "(21-25)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 68, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, + ["AvoidBleedAndPoisonInfluence2____"] = { type = "Suffix", affix = "of the Hunt", "(26-30)% chance to Avoid being Poisoned", "(26-30)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 70, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, + ["AvoidBleedAndPoisonInfluence3"] = { type = "Suffix", affix = "of the Hunt", "(41-50)% chance to Avoid being Poisoned", "(41-50)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 75, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, + ["TailwindOnCriticalStrikeInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10348 }, level = 75, group = "TailwindOnCriticalStrike", weightKey = { "boots_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["FasterIgniteInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (7-9)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (10-12)% faster", statOrder = { 2564 }, level = 73, group = "FasterIgniteDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterBleedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (7-9)% faster", statOrder = { 6544 }, level = 68, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (10-12)% faster", statOrder = { 6544 }, level = 73, group = "FasterBleedDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterPoisonInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (7-9)% faster", statOrder = { 6545 }, level = 68, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (10-12)% faster", statOrder = { 6545 }, level = 73, group = "FasterPoisonDamage", weightKey = { "boots_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["MaximumColdResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceInfluence1New"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceInfluence2New"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 85, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["ConvertPhysicalToFireInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(18-21)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["MaximumLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "10% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 75, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumEnergyShieldLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["MaximumEnergyShieldLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 75, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["AvoidInterruptionWhileCastingInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 68, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AvoidInterruptionWhileCastingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 70, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AvoidInterruptionWhileCastingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 75, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["GlobalCriticalStrikeChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["GlobalCriticalStrikeChanceInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 70, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["GlobalCriticalStrikeChanceInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 75, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["MaximumFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 75, group = "MaximumFrenzyCharges", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["MeleeDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Melee Damage", statOrder = { 1234 }, level = 68, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Melee Damage", statOrder = { 1234 }, level = 70, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Melee Damage", statOrder = { 1234 }, level = 73, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 70, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 73, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["SpellDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Spell Damage", statOrder = { 1223 }, level = 70, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Spell Damage", statOrder = { 1223 }, level = 73, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["DamageOverTimeInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(18-22)% increased Damage over Time", statOrder = { 1210 }, level = 68, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageOverTimeInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(23-26)% increased Damage over Time", statOrder = { 1210 }, level = 70, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageOverTimeInfluence3"] = { type = "Prefix", affix = "Warlord's", "(27-30)% increased Damage over Time", statOrder = { 1210 }, level = 73, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["MeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range", statOrder = { 2534 }, level = 82, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["BlockPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(2-3)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 68, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(4-5)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 80, group = "BlockPercent", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["CullingStrikeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Culling Strike", statOrder = { 2039 }, level = 73, group = "CullingStrike", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 250, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["FrenzyChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["FrenzyChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 80, group = "FrenzyChargeOnKillChance", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["AddedPhysicalDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (4-5) to (6-8) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9247 }, level = 68, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["AddedPhysicalDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (6-8) to (9-11) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9247 }, level = 73, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["AddedFireDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9235 }, level = 68, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["AddedFireDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9235 }, level = 73, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["AddedColdDamageCritRecentlyInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-20) to (22-25) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9230 }, level = 68, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["AddedColdDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-25) to (26-35) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9230 }, level = 73, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["AddedLightningDamageCritRecentlyInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (41-47) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9241 }, level = 68, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageCritRecentlyInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds 1 to (48-60) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9241 }, level = 73, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["MinionDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-22)% increased Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["MinionDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (23-26)% increased Damage", statOrder = { 1973 }, level = 70, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["MinionDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (27-30)% increased Damage", statOrder = { 1973 }, level = 73, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["IncreasedAccuracyPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["IncreasedAccuracyPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 80, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["GlobalChanceToBlindOnHitInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(8-11)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["GlobalChanceToBlindOnHitInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 80, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["AdditionalChanceToEvadeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["ChanceToIntimidateOnHitInfluence1"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 85, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitInfluence1___"] = { type = "Prefix", affix = "Hunter's", "(7-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 85, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["StrikeSkillsAdditionalTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 80, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack" }, }, + ["ChanceToImpaleInfluence1"] = { type = "Prefix", affix = "Hunter's", "(13-16)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 68, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, + ["ChanceToImpaleInfluence2"] = { type = "Prefix", affix = "Hunter's", "(17-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 80, group = "AttackImpaleChance", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, + ["AilmentDurationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(10-12)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["AilmentDurationInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 80, group = "IncreasedAilmentDuration", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["PercentageDexterityInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["PercentageDexterityInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Dexterity", statOrder = { 1185 }, level = 75, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["FireDamageOverTimeMultiplierInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 80, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 80, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ChaosDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 80, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["PhysicalDamageOverTimeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(11-15)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 80, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["MaximumLightningResistanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceInfluence1New_"] = { type = "Suffix", affix = "of the Crusade", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceInfluence2New_"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 85, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 125, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumManaInfluence1"] = { type = "Prefix", affix = "Crusader's", "(9-11)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumManaInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(12-15)% increased maximum Mana", statOrder = { 1580 }, level = 80, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["PhysTakenAsLightningHelmInfluence1"] = { type = "Prefix", affix = "Crusader's", "(4-6)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["PhysTakenAsLightningHelmInfluence2"] = { type = "Prefix", affix = "Crusader's", "(7-10)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["EnemyLightningResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7916 }, level = 85, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, }, + ["SpellBlockPercentInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockPercentInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 80, group = "SpellBlockPercentage", weightKey = { "helmet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["FortifyEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+(3-4) to maximum Fortification", statOrder = { 9117 }, level = 75, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["FortifyEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(4.2-5) to maximum Fortification", statOrder = { 9117 }, level = 80, group = "FortifyEffect", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["EnergyShieldRegenInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2646 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["ReducedIgniteDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 68, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 70, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationInfluence3__"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedBurnDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["ReducedFreezeDurationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 70, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ReducedShockEffectInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 70, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(51-60)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "helmet_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["MaximumPowerChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 75, group = "IncreasedMaximumPowerCharges", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 125, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PhysTakenAsFireHelmetInfluence1"] = { type = "Prefix", affix = "Warlord's", "(4-6)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["PhysTakenAsFireHelmetInfluence2"] = { type = "Prefix", affix = "Warlord's", "(7-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["ElementalDamageInfluence1____"] = { type = "Prefix", affix = "Warlord's", "(12-14)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(15-18)% increased Elemental Damage", statOrder = { 1980 }, level = 70, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(19-22)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["WarcryAreaOfEffectInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (21-25)% increased Area of Effect", statOrder = { 10574 }, level = 68, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["WarcryAreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10574 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["EnemyFireResistanceAuraInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7914 }, level = 85, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, }, + ["CriticalStrikeMultiplierInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(11-13)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 70, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierInfluence3"] = { type = "Suffix", affix = "of the Conquest", "+(17-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["ManaRegenerationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(41-55)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(56-70)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["GainAccuracyEqualToStrengthInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain Accuracy Rating equal to your Strength", statOrder = { 6712 }, level = 75, group = "GainAccuracyEqualToStrength", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["MinionLifeInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Minions have (21-26)% increased maximum Life", statOrder = { 1766 }, level = 68, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, + ["MinionLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Minions have (27-30)% increased maximum Life", statOrder = { 1766 }, level = 70, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, + ["MinionLifeInfluence3"] = { type = "Suffix", affix = "of the Conquest", "Minions have (31-35)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, + ["PowerChargeOnKillInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PowerChargeOnKillInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 80, group = "PowerChargeOnKillChance", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PhysTakenAsColdHelmetInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(4-6)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["PhysTakenAsColdHelmetInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(7-10)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["SpellsAdditionalUnleashSealInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10720 }, level = 80, group = "SpellsAdditionalUnleashSeal", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, + ["EnemyColdResistanceAuraInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7912 }, level = 85, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, }, + ["ReducedManaReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 68, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaReservationEfficiencyInfluence1___"] = { type = "Suffix", affix = "of Redemption", "(4-6)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ReducedManaReservationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 75, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaReservationEfficiencyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["IgniteChanceAndDamageInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(15-17)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1877, 2026 }, level = 68, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["IgniteChanceAndDamageInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(18-20)% increased Burning Damage", "(6-8)% chance to Ignite", statOrder = { 1877, 2026 }, level = 75, group = "IgniteChanceAndDamage", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["FreezeChanceAndDurationInfluence1____"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1858, 2029 }, level = 68, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["FreezeChanceAndDurationInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Freeze Duration on Enemies", "(6-8)% chance to Freeze", statOrder = { 1858, 2029 }, level = 75, group = "FreezeChanceAndDuration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ShockChanceAndEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(8-12)% increased Effect of Lightning Ailments", statOrder = { 2033, 7433 }, level = 68, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ShockChanceAndEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(6-8)% chance to Shock", "(13-15)% increased Effect of Lightning Ailments", statOrder = { 2033, 7433 }, level = 75, group = "ShockChanceAndEffect", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AddedManaRegenerationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AddedManaRegenerationInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Regenerate (6-8) Mana per second", statOrder = { 1582 }, level = 75, group = "AddedManaRegeneration", weightKey = { "helmet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["SpellAddedFireDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Fire Damage to Spells", statOrder = { 1404 }, level = 70, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Cold Damage to Spells", statOrder = { 1405 }, level = 70, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-5) to (58-61) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (2-6) to (73-77) Lightning Damage to Spells", statOrder = { 1406 }, level = 70, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (2-7) to (88-93) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (17-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (42-49) Physical Damage to Spells", statOrder = { 1403 }, level = 70, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (25-34) to (51-59) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (14-18) to (27-32) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (17-23) to (34-40) Chaos Damage to Spells", statOrder = { 1407 }, level = 70, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (21-28) to (41-48) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["EnemyChaosResistanceAuraInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7911 }, level = 85, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["PercentageIntelligenceInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(6-8)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["PercentageIntelligenceInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Intelligence", statOrder = { 1186 }, level = 75, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["IgnitingConfluxInfluence1"] = { type = "Suffix", affix = "of the Hunt", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 6821 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["ChillingConfluxInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 6821 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["ShockingConfluxInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 6821 }, level = 80, group = "SingleConflux", weightKey = { "helmet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["PhysTakenAsLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "(8-12)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["PhysTakenAsLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "(13-15)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 83, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["ConsecratedGroundStationaryInfluence1_"] = { type = "Prefix", affix = "Crusader's", "You have Consecrated Ground around you while stationary", statOrder = { 5856 }, level = 75, group = "ConsecratedGroundStationary", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["HolyPhysicalExplosionInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill Explode, dealing 3% of their Life as Physical Damage", statOrder = { 6372 }, level = 85, group = "EnemiesExplodeOnDeathPhysical", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["HolyPhysicalExplosionChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (11-20)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 75, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["HolyPhysicalExplosionChanceInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Enemies you Kill have a (21-30)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 85, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 25, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["PercentageIntelligenceBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-8)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageIntelligenceBodyInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "(9-12)% increased Intelligence", statOrder = { 1186 }, level = 75, group = "PercentageIntelligence", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["AddPowerChargeOnCritInfluence1"] = { type = "Suffix", affix = "of the Crusade", "15% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 80, group = "PowerChargeOnCriticalStrikeChance", weightKey = { "body_armour_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, }, + ["EnergyShieldOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-4)% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldOnKillPercentInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Recover (5-6)% of Energy Shield on Kill", statOrder = { 1750 }, level = 80, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(8-11)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(12-15)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 80, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["PhysTakenAsFireInfluence1"] = { type = "Prefix", affix = "Warlord's", "(8-12)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["PhysTakenAsFireInfluence2"] = { type = "Prefix", affix = "Warlord's", "(13-15)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 83, group = "PhysicalDamageTakenAsFireUber", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["SocketedActiveGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, }, + ["ReflectedPhysicalDamageInfluence1__"] = { type = "Prefix", affix = "Warlord's", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, ["PhysicalDamageCannotBeReflectedPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AllResistancesInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(10-12)% to all Elemental Resistances", statOrder = { 1624 }, level = 68, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["AllResistancesInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(13-15)% to all Elemental Resistances", statOrder = { 1624 }, level = 70, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["AllResistancesInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(16-18)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["PercentageStrengthBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-8)% increased Strength", statOrder = { 1189 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageStrengthBodyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(9-12)% increased Strength", statOrder = { 1189 }, level = 75, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["EnduranceChargeIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6751 }, level = 80, group = "EnduranceChargeIfHitRecently", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["LifeOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-4)% of Life on Kill", statOrder = { 1754 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeOnKillPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Recover (5-6)% of Life on Kill", statOrder = { 1754 }, level = 80, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(8-11)% increased Life Recovery rate", statOrder = { 1583 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(12-15)% increased Life Recovery rate", statOrder = { 1583 }, level = 80, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["SocketedAttacksManaCostInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 554 }, level = 85, group = "SocketedAttacksManaCost", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, }, - ["PhysTakenAsColdInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["PhysTakenAsColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["SocketedSupportGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of Socketed Support Gems", statOrder = { 194 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, }, - ["ReflectedElementalDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["AllResistancesInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(10-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["AllResistancesInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(13-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 70, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["AllResistancesInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(16-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["PercentageStrengthBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-8)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageStrengthBodyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(9-12)% increased Strength", statOrder = { 1184 }, level = 75, group = "PercentageStrength", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["EnduranceChargeIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6746 }, level = 80, group = "EnduranceChargeIfHitRecently", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["LifeOnKillPercentInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-4)% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeOnKillPercentInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Recover (5-6)% of Life on Kill", statOrder = { 1749 }, level = 80, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRecoveryRateBodyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(8-11)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(12-15)% increased Life Recovery rate", statOrder = { 1578 }, level = 80, group = "LifeRecoveryRate", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["SocketedAttacksManaCostInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 549 }, level = 85, group = "SocketedAttacksManaCost", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, }, + ["PhysTakenAsColdInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(8-12)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["PhysTakenAsColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 83, group = "PhysicalDamageTakenAsColdUber", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["SocketedSupportGemLevelInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 80, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "gem" }, }, + ["ReflectedElementalDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, ["ElementalDamageCannotBeReflectedPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrder = { 3401 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["PercentageDexterityBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-8)% increased Dexterity", statOrder = { 1190 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["PercentageDexterityBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(9-12)% increased Dexterity", statOrder = { 1190 }, level = 75, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, - ["FrenzyChargeOnHitChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1838 }, level = 80, group = "FrenzyChargeOnHitChance", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["ManaOnKillPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "Recover (3-4)% of Mana on Kill", statOrder = { 1756 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaOnKillPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "Recover (5-6)% of Mana on Kill", statOrder = { 1756 }, level = 80, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRecoveryRateBodyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Mana Recovery rate", statOrder = { 1591 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Mana Recovery rate", statOrder = { 1591 }, level = 80, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AuraEffectBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, }, - ["AuraEffectBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 80, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, }, - ["MaximumLifeBodyInfluence1"] = { type = "Prefix", affix = "Hunter's", "(5-8)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["MaximumLifeBodyInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(9-12)% increased maximum Life", statOrder = { 1576 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["PhysTakenAsChaosInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(8-12)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysTakenAsChaosInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 83, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, }, - ["AdditionalCurseOnEnemiesInfluence1"] = { type = "Prefix", affix = "Hunter's", "You can apply an additional Curse", statOrder = { 2173 }, level = 82, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, }, - ["RegenerateLifeOver1SecondInfluence1"] = { type = "Prefix", affix = "Hunter's", "Every 4 seconds, Regenerate 15% of Life over one second", statOrder = { 3791 }, level = 80, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life" }, }, - ["OfferingEffectInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% increased effect of Offerings", statOrder = { 4068 }, level = 68, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["OfferingEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% increased effect of Offerings", statOrder = { 4068 }, level = 80, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AdditionalCritWithAttacksInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4797 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, }, - ["AdditionalCritWithAttacksInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4797 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, }, - ["AdditionalCritWithSpellsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, }, - ["AdditionalCritWithSpellsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, }, - ["LifeRegenerationPercentBodyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1-1.5)% of Life per second", statOrder = { 1949 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentBodyInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1949 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["MaximumLightningResistanceHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceHighInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 80, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceHighInfluence3_"] = { type = "Prefix", affix = "Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 86, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["DamagePerBlockChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6064 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["MinimumPowerChargeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+1 to Minimum Power Charges", statOrder = { 1818 }, level = 68, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["MinimumPowerChargeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+2 to Minimum Power Charges", statOrder = { 1818 }, level = 80, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["RecoverEnergyShieldPercentOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2472 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRegenHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1.5-2.5)% of Energy Shield per second", statOrder = { 2651 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "shield_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["ChanceToChillAttackersOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, - ["ChanceToChillAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, - ["ChanceToShockAttackersOnBlockInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ChanceToShockAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["SpellBlockIfBlockedSpellsInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10132 }, level = 68, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockIfBlockedSpellsInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10132 }, level = 75, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["WarcryBuffEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 68, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["WarcryBuffEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["MaximumFireResistanceHighInfluence1__"] = { type = "Prefix", affix = "Warlord's", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceHighInfluence2__"] = { type = "Prefix", affix = "Warlord's", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 80, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceHighInfluence3"] = { type = "Prefix", affix = "Warlord's", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 86, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AreaOfEffectInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Area of Effect", statOrder = { 1885 }, level = 68, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Area of Effect", statOrder = { 1885 }, level = 80, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["MinimumEnduranceChargeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+1 to Minimum Endurance Charges", statOrder = { 1808 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["MinimumEnduranceChargeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+2 to Minimum Endurance Charges", statOrder = { 1808 }, level = 80, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["RecoverLifePercentOnBlockInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-5)% of Life when you Block", statOrder = { 3065 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, }, - ["AttackBlockIfBlockedAttacksInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5235 }, level = 68, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["AttackBlockIfBlockedAttacksInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5235 }, level = 75, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["AdditionalPhysicalDamageReductionHighInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(3-5)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "shield_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["MaximumColdResistanceHighInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 80, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceHighInfluence3__"] = { type = "Prefix", affix = "Redeemer's", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 86, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["EnergyShieldDelayHighInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 68, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldDelayHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 75, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldDelayHighInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 80, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["WeaponElementalDamageInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, - ["WeaponElementalDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 80, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, - ["MinimumFrenzyChargeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+1 to Minimum Frenzy Charges", statOrder = { 1813 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["MinimumFrenzyChargeInfluence2"] = { type = "Suffix", affix = "of Redemption", "+2 to Minimum Frenzy Charges", statOrder = { 1813 }, level = 80, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["RecoverManaPercentOnBlockInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8191 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, }, - ["AdditionalChanceToEvadeHighInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(3-5)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "shield_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["AvoidPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to Avoid Physical Damage from Hits", statOrder = { 3376 }, level = 68, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["AvoidPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to Avoid Physical Damage from Hits", statOrder = { 3376 }, level = 80, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["CurseEffectivenessInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Effect of your Curses", statOrder = { 2601 }, level = 73, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseEffectivenessInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Effect of your Curses", statOrder = { 2601 }, level = 80, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["AuraEffectInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 73, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["AuraEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 80, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["IncreasedAilmentEffectLowInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, }, - ["IncreasedAilmentEffectLowInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, }, - ["MaximumResistancesInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 80, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to all maximum Resistances", statOrder = { 1647 }, level = 85, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, }, - ["MaximumChaosResistanceHighInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceHighInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 80, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceHighInfluence3"] = { type = "Prefix", affix = "Hunter's", "+3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 86, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumLifeInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["MaximumLifeInfluence2"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased maximum Life", statOrder = { 1576 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["NoExtraDamageFromBleedMovingInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3197 }, level = 75, group = "NoExtraDamageFromBleedMoving", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["GainRandomChargeOnBlockInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6817 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["SocketedGemsReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 533 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, }, - ["SocketedGemsReducedReservationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 533 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, }, - ["DegenDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(4-6)% reduced Damage taken from Damage Over Time", statOrder = { 2250 }, level = 68, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["DegenDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% reduced Damage taken from Damage Over Time", statOrder = { 2250 }, level = 80, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["LifeRegenerationPercentHighInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.1-1.5)% of Life per second", statOrder = { 1949 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentHighInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1949 }, level = 80, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["PhysicalAddedAsExtraLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (5-10)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (11-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["AdditionalArrowInfluence1"] = { type = "Prefix", affix = "Warlord's", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["PhysicalAddedAsExtraFireInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Gain (5-10)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireInfluence2_____"] = { type = "Prefix", affix = "Warlord's", "Gain (11-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["MaimOnHitInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to Maim on Hit", statOrder = { 8159 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["MaimOnHitInfluence2___"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 20% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["ChancetoGainPhasingOnKillInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChancetoGainPhasingOnKillInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChancetoGainPhasingOnKillInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2494, 3174 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["PhysicalAddedAsExtraColdInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["MovementVelocityExtraInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityExtraInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased Movement Speed", statOrder = { 1803 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["ManaGainPerTargetInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ChaosDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1266 }, level = 68, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, }, - ["ChaosDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1266 }, level = 80, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, }, - ["PhysicalDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1255 }, level = 68, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, }, - ["PhysicalDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1255 }, level = 80, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, }, - ["FireDamageOverTimeMultiplierQuiverInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1258 }, level = 68, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["FireDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1258 }, level = 80, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["PoisonOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3178, 3186 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonOnHitDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3178, 3186 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["GlobalEnergyShieldPercentInfluence1"] = { type = "Prefix", affix = "Crusader's", "(7-9)% increased maximum Energy Shield", statOrder = { 1566 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentInfluence2"] = { type = "Prefix", affix = "Crusader's", "(10-12)% increased maximum Energy Shield", statOrder = { 1566 }, level = 78, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentInfluence3"] = { type = "Prefix", affix = "Crusader's", "(13-15)% increased maximum Energy Shield", statOrder = { 1566 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["CriticalStrikeChanceShockedEnemiesInfluence1"] = { type = "Prefix", affix = "Crusader's", "(30-34)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5918 }, level = 68, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeChanceShockedEnemiesInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-39)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5918 }, level = 75, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeChanceShockedEnemiesInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(40-45)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5918 }, level = 80, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["LightningDamageInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(16-20)% increased Lightning Damage", statOrder = { 1382 }, level = 68, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(21-25)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningDamageInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(26-30)% increased Lightning Damage", statOrder = { 1382 }, level = 80, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["FortifyOnMeleeStunInfluence1"] = { type = "Prefix", affix = "Crusader's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5683 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, - ["CooldownRecoveryHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, - ["CooldownRecoveryHighInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, - ["SpellDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10147 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, - ["EnergyShieldRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["RemoveShockOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Remove Shock when you use a Flask", statOrder = { 9916 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, }, - ["GlobalArmourPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Armour", statOrder = { 1546 }, level = 68, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["GlobalArmourPercentInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Armour", statOrder = { 1546 }, level = 78, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["GlobalArmourPercentInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Armour", statOrder = { 1546 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["FireDamageBurningEnemiesInfluence1"] = { type = "Prefix", affix = "Warlord's", "(22-27) to (41-46) added Fire Damage against Burning Enemies", statOrder = { 10320 }, level = 68, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireDamageBurningEnemiesInfluence2"] = { type = "Prefix", affix = "Warlord's", "(28-32) to (47-51) added Fire Damage against Burning Enemies", statOrder = { 10320 }, level = 75, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireDamageBurningEnemiesInfluence3"] = { type = "Prefix", affix = "Warlord's", "(33-39) to (52-55) added Fire Damage against Burning Enemies", statOrder = { 10320 }, level = 80, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Fire Damage", statOrder = { 1362 }, level = 68, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(26-30)% increased Fire Damage", statOrder = { 1362 }, level = 80, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["ReducedCriticalStrikeDamageTakenInfluence1"] = { type = "Prefix", affix = "Warlord's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["ReducedCriticalStrikeDamageTakenInfluence2_"] = { type = "Prefix", affix = "Warlord's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["AllDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(11-15)% increased Damage", statOrder = { 1196 }, level = 75, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["AllDamageInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Damage", statOrder = { 1196 }, level = 80, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["AllDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Damage", statOrder = { 1196 }, level = 85, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["MeleeDamageDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["MeleeDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["MeleeDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9194 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["LifeRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(7-9)% increased Life Recovery rate", statOrder = { 1583 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(10-12)% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["RemoveIgniteOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Remove Ignite and Burning when you use a Flask", statOrder = { 9906 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, }, - ["GlobalEvasionPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(7-9)% increased Evasion Rating", statOrder = { 1554 }, level = 68, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["GlobalEvasionPercentInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(10-12)% increased Evasion Rating", statOrder = { 1554 }, level = 78, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["GlobalEvasionPercentInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% increased Evasion Rating", statOrder = { 1554 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, - ["DamageChilledEnemiesInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Damage with Hits against Chilled Enemies", statOrder = { 6075 }, level = 68, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageChilledEnemiesInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Damage with Hits against Chilled Enemies", statOrder = { 6075 }, level = 75, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageChilledEnemiesInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Damage with Hits against Chilled Enemies", statOrder = { 6075 }, level = 80, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["FlaskEffectInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, - ["FlaskEffectInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2747 }, level = 81, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, - ["ColdDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% increased Cold Damage", statOrder = { 1371 }, level = 68, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdDamageInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Cold Damage", statOrder = { 1371 }, level = 80, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["AttackSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3305 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9727 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, - ["ManaRecoveryRateInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-9)% increased Mana Recovery rate", statOrder = { 1591 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRecoveryRateInfluence2__"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["RemoveFreezeOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of Redemption", "Remove Chill and Freeze when you use a Flask", statOrder = { 9902 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, }, - ["FlaskChanceToNotConsumeChargesInfluence1"] = { type = "Prefix", affix = "Hunter's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4235 }, level = 80, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, - ["FlaskChargeOnCritInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 3396 }, level = 75, group = "FlaskChargeOnCrit", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "critical" }, }, - ["ChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "(16-20)% increased Chaos Damage", statOrder = { 1390 }, level = 68, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(21-25)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "(26-30)% increased Chaos Damage", statOrder = { 1390 }, level = 80, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["PercentageAllAttributesInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-9)% increased Attributes", statOrder = { 1188 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["PercentageAllAttributesInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(10-12)% increased Attributes", statOrder = { 1188 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["CastSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5471 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "caster", "speed" }, }, - ["ArmourPenetrationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, - ["MovementSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3191 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "speed" }, }, - ["PhysicalAttackDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, - ["PhysicalAttackDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2239 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, - ["ChanceToShockAddedDamageInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6891 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["ChanceToShockAddedDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6891 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["AddedLightningDamagePerPowerChargeInfluence1__"] = { type = "Prefix", affix = "Crusader's", "1 to (6-8) Lightning Damage per Power Charge", statOrder = { 9246 }, level = 75, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(1-2) to (9-11) Lightning Damage per Power Charge", statOrder = { 9246 }, level = 80, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["SpellDamageRingInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(15-17)% increased Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageRingInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellDamageRingInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(22-25)% increased Spell Damage", statOrder = { 1228 }, level = 80, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["IncreasedLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["IncreasedLifeLeechRateInfluence2"] = { type = "Prefix", affix = "Crusader's", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["IncreasedLifeLeechRateInfluence3"] = { type = "Prefix", affix = "Crusader's", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["IncreasedLifeLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["IncreasedLifeLeechRateSuffixInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["IncreasedLifeLeechRateSuffixInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2162 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["ReducedCurseEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["ReducedCurseEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitConductivityInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2532 }, level = 75, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitConductivityInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2532 }, level = 80, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["LifeGainedOnSpellHitInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1744 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, - ["LifeGainedOnSpellHitInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1744 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, - ["GlobalCriticalStrikeChanceRingInfluence1___"] = { type = "Suffix", affix = "of the Crusade", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["GlobalCriticalStrikeChanceRingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["GlobalCriticalStrikeChanceRingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["ChanceToIgniteAddedDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6889 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteAddedDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6889 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["AddedFireDamagePerEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "(2-3) to (4-5) Fire Damage per Endurance Charge", statOrder = { 9241 }, level = 75, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["AddedFireDamagePerEnduranceChargeInfluence2__"] = { type = "Prefix", affix = "Warlord's", "(3-4) to (6-7) Fire Damage per Endurance Charge", statOrder = { 9241 }, level = 80, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["MeleeDamageRingInfluence1"] = { type = "Prefix", affix = "Warlord's", "(15-17)% increased Melee Damage", statOrder = { 1239 }, level = 68, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageRingInfluence2"] = { type = "Prefix", affix = "Warlord's", "(18-21)% increased Melee Damage", statOrder = { 1239 }, level = 75, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MeleeDamageRingInfluence3"] = { type = "Prefix", affix = "Warlord's", "(22-25)% increased Melee Damage", statOrder = { 1239 }, level = 80, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["CurseOnHitFlammabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2535 }, level = 75, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitFlammabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2535 }, level = 80, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitVulnerabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 75, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitVulnerabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2528 }, level = 80, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CriticalStrikeMultiplierRingInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierRingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierRingInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["BleedDamageAndDurationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(8-12)% increased Damage with Bleeding", "(5-6)% increased Bleeding Duration", statOrder = { 3174, 4999 }, level = 68, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["BleedDamageAndDurationInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(13-17)% increased Damage with Bleeding", "(7-8)% increased Bleeding Duration", statOrder = { 3174, 4999 }, level = 75, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["BleedDamageAndDurationInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(18-22)% increased Damage with Bleeding", "(9-10)% increased Bleeding Duration", statOrder = { 3174, 4999 }, level = 80, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, - ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6888 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6888 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, - ["AddedColdDamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(2-3) to (4-5) Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 75, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["AddedColdDamagePerFrenzyChargeInfluence2__"] = { type = "Prefix", affix = "Redeemer's", "(3-4) to (6-7) Added Cold Damage per Frenzy Charge", statOrder = { 4278 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ProjectileAttackDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-17)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageRingInfluence2___"] = { type = "Prefix", affix = "Redeemer's", "(18-21)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(22-25)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 80, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["MinionDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (15-17)% increased Damage", statOrder = { 1978 }, level = 68, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["MinionDamageRingInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-21)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["MinionDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (22-25)% increased Damage", statOrder = { 1978 }, level = 80, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["EnergyShieldRechargeDelayInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRechargeDelayInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["CurseOnHitFrostbiteInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2536 }, level = 75, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitFrostbiteInfluence2"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2536 }, level = 80, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["AttackSpeedHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Attack Speed if you've been Hit Recently", statOrder = { 4900 }, level = 75, group = "AttackSpeedHitRecently", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["IncreasedExperienceGainInfluence1"] = { type = "Prefix", affix = "Hunter's", "(2-3)% increased Experience gain", statOrder = { 1608 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_basilisk", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["ReflectedPhysicalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, }, - ["ReflectedPhysicalDamageRingInfluence2_"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, }, + ["NearbyEnemiesAreBlindedInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 75, group = "NearbyEnemiesAreBlinded", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["PercentageDexterityBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-8)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["PercentageDexterityBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(9-12)% increased Dexterity", statOrder = { 1185 }, level = 75, group = "PercentageDexterity", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attribute" }, }, + ["FrenzyChargeOnHitChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 80, group = "FrenzyChargeOnHitChance", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["ManaOnKillPercentInfluence1"] = { type = "Suffix", affix = "of Redemption", "Recover (3-4)% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaOnKillPercentInfluence2"] = { type = "Suffix", affix = "of Redemption", "Recover (5-6)% of Mana on Kill", statOrder = { 1751 }, level = 80, group = "MaximumManaOnKillPercent", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRecoveryRateBodyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRecoveryRateBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% increased Mana Recovery rate", statOrder = { 1586 }, level = 80, group = "ManaRecoveryRate", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AuraEffectBodyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, }, + ["AuraEffectBodyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 80, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "aura" }, }, + ["MaximumLifeBodyInfluence1"] = { type = "Prefix", affix = "Hunter's", "(5-8)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["MaximumLifeBodyInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(9-12)% increased maximum Life", statOrder = { 1571 }, level = 85, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["PhysTakenAsChaosInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(8-12)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysTakenAsChaosInfluence2"] = { type = "Prefix", affix = "Hunter's", "(13-15)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 83, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "chaos" }, }, + ["AdditionalCurseOnEnemiesInfluence1"] = { type = "Prefix", affix = "Hunter's", "You can apply an additional Curse", statOrder = { 2168 }, level = 82, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, }, + ["RegenerateLifeOver1SecondInfluence1"] = { type = "Prefix", affix = "Hunter's", "Every 4 seconds, Regenerate 15% of Life over one second", statOrder = { 3786 }, level = 80, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life" }, }, + ["OfferingEffectInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% increased effect of Offerings", statOrder = { 4063 }, level = 68, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["OfferingEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% increased effect of Offerings", statOrder = { 4063 }, level = 80, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AdditionalCritWithAttacksInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(0.5-1)% to Critical Strike Chance", statOrder = { 4792 }, level = 68, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, }, + ["AdditionalCritWithAttacksInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Attacks have +(1.1-1.5)% to Critical Strike Chance", statOrder = { 4792 }, level = 84, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "critical" }, }, + ["AdditionalCritWithSpellsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(0.5-1)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 68, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, }, + ["AdditionalCritWithSpellsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(1.1-1.5)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 84, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "critical" }, }, + ["LifeRegenerationPercentBodyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1-1.5)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentBodyInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 75, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["MaximumLightningResistanceHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceHighInfluence2"] = { type = "Prefix", affix = "Crusader's", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 80, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceHighInfluence3_"] = { type = "Prefix", affix = "Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 86, group = "MaximumLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["DamagePerBlockChanceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 1% Chance to Block Attack Damage", statOrder = { 6059 }, level = 68, group = "DamagePerBlockChance", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["MinimumPowerChargeInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+1 to Minimum Power Charges", statOrder = { 1813 }, level = 68, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["MinimumPowerChargeInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+2 to Minimum Power Charges", statOrder = { 1813 }, level = 80, group = "MinimumPowerCharges", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["RecoverEnergyShieldPercentOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Recover (3-5)% of Energy Shield when you Block", statOrder = { 2467 }, level = 68, group = "RecoverEnergyShieldPercentOnBlock", weightKey = { "shield_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRegenHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Regenerate (1.5-2.5)% of Energy Shield per second", statOrder = { 2646 }, level = 75, group = "EnergyShieldRegenerationPerMinute", weightKey = { "shield_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["ChanceToChillAttackersOnBlockInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, + ["ChanceToChillAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 75, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "red_herring", "influence_mod", "elemental", "cold", "ailment" }, }, + ["ChanceToShockAttackersOnBlockInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(25-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ChanceToShockAttackersOnBlockInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 75, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["SpellBlockIfBlockedSpellsInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "+(7-9)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10133 }, level = 68, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockIfBlockedSpellsInfluence2"] = { type = "Suffix", affix = "of the Crusade", "+(10-12)% Chance to Block Spell Damage if you have Blocked Spell Damage Recently", statOrder = { 10133 }, level = 75, group = "SpellBlockIfBlockedSpellRecently", weightKey = { "shield_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["WarcryBuffEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 68, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["WarcryBuffEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "shield_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["MaximumFireResistanceHighInfluence1__"] = { type = "Prefix", affix = "Warlord's", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceHighInfluence2__"] = { type = "Prefix", affix = "Warlord's", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 80, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceHighInfluence3"] = { type = "Prefix", affix = "Warlord's", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 86, group = "MaximumFireResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AreaOfEffectInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectInfluence2"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Area of Effect", statOrder = { 1880 }, level = 80, group = "AreaOfEffect", weightKey = { "shield_adjudicator", "quiver_adjudicator", "ring_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["MinimumEnduranceChargeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+1 to Minimum Endurance Charges", statOrder = { 1803 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["MinimumEnduranceChargeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+2 to Minimum Endurance Charges", statOrder = { 1803 }, level = 80, group = "MinimumEnduranceCharges", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["RecoverLifePercentOnBlockInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Recover (3-5)% of Life when you Block", statOrder = { 3060 }, level = 68, group = "RecoverLifePercentOnBlock", weightKey = { "shield_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "life" }, }, + ["AttackBlockIfBlockedAttacksInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(5-6)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5230 }, level = 68, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["AttackBlockIfBlockedAttacksInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(7-8)% Chance to Block Attack Damage if you have Blocked Attack Damage Recently", statOrder = { 5230 }, level = 75, group = "AttackBlockIfBlockedAttackRecently", weightKey = { "shield_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["AdditionalPhysicalDamageReductionHighInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 75, group = "ReducedPhysicalDamageTaken", weightKey = { "shield_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["MaximumColdResistanceHighInfluence1"] = { type = "Prefix", affix = "Redeemer's", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 80, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceHighInfluence3__"] = { type = "Prefix", affix = "Redeemer's", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 86, group = "MaximumColdResist", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["EnergyShieldDelayHighInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 68, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldDelayHighInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 75, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldDelayHighInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 80, group = "EnergyShieldDelay", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["WeaponElementalDamageInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 75, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 80, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "attack" }, }, + ["MinimumFrenzyChargeInfluence1"] = { type = "Suffix", affix = "of Redemption", "+1 to Minimum Frenzy Charges", statOrder = { 1808 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["MinimumFrenzyChargeInfluence2"] = { type = "Suffix", affix = "of Redemption", "+2 to Minimum Frenzy Charges", statOrder = { 1808 }, level = 80, group = "MinimumFrenzyCharges", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["RecoverManaPercentOnBlockInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Recover (3-5)% of your maximum Mana when you Block", statOrder = { 8186 }, level = 68, group = "RecoverManaPercentOnBlock", weightKey = { "shield_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "block", "resource", "influence_mod", "mana" }, }, + ["AdditionalChanceToEvadeHighInfluence1"] = { type = "Suffix", affix = "of Redemption", "+(3-5)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 75, group = "AdditionalChanceToEvade", weightKey = { "shield_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["AvoidPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to Avoid Physical Damage from Hits", statOrder = { 3371 }, level = 68, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["AvoidPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to Avoid Physical Damage from Hits", statOrder = { 3371 }, level = 80, group = "PhysicalDamageAvoidance", weightKey = { "shield_eyrie", "quiver_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["CurseEffectivenessInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-11)% increased Effect of your Curses", statOrder = { 2596 }, level = 73, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseEffectivenessInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Effect of your Curses", statOrder = { 2596 }, level = 80, group = "CurseEffectiveness", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["AuraEffectInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 73, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["AuraEffectInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 80, group = "AuraEffect", weightKey = { "shield_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["IncreasedAilmentEffectLowInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, }, + ["IncreasedAilmentEffectLowInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "shield_eyrie", "quiver_eyrie", "ring_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "ailment" }, }, + ["MaximumResistancesInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 80, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 85, group = "MaximumResistances", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resistance" }, }, + ["MaximumChaosResistanceHighInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceHighInfluence2"] = { type = "Prefix", affix = "Hunter's", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 80, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceHighInfluence3"] = { type = "Prefix", affix = "Hunter's", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 86, group = "MaximumChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumLifeInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["MaximumLifeInfluence2"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased maximum Life", statOrder = { 1571 }, level = 84, group = "MaximumLifeIncreasePercent", weightKey = { "shield_basilisk", "belt_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["NoExtraDamageFromBleedMovingInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 75, group = "NoExtraDamageFromBleedMoving", weightKey = { "shield_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["GainRandomChargeOnBlockInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain an Endurance, Frenzy or Power charge when you Block", statOrder = { 6812 }, level = 68, group = "GainRandomChargeOnBlock", weightKey = { "shield_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "block", "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["SocketedGemsReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 20% increased Reservation Efficiency", statOrder = { 528 }, level = 68, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, }, + ["SocketedGemsReducedReservationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 528 }, level = 80, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "skill", "gem" }, }, + ["DegenDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(4-6)% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 68, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["DegenDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% reduced Damage taken from Damage Over Time", statOrder = { 2245 }, level = 80, group = "DegenDamageTaken", weightKey = { "shield_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["LifeRegenerationPercentHighInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.1-1.5)% of Life per second", statOrder = { 1944 }, level = 68, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentHighInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 80, group = "LifeRegenerationRatePercentage", weightKey = { "shield_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["PhysicalAddedAsExtraLightningInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (5-10)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (11-15)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "quiver_crusader", "amulet_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["AdditionalArrowInfluence1"] = { type = "Prefix", affix = "Warlord's", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 80, group = "AdditionalArrows", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["PhysicalAddedAsExtraFireInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Gain (5-10)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireInfluence2_____"] = { type = "Prefix", affix = "Warlord's", "Gain (11-15)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "quiver_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["MaimOnHitInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to Maim on Hit", statOrder = { 8154 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["MaimOnHitInfluence2___"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 20% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["ChancetoGainPhasingOnKillInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(5-6)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChancetoGainPhasingOnKillInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(7-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChancetoGainPhasingOnKillInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(9-10)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["BleedOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 10% chance to cause Bleeding", "(15-25)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 68, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["BleedOnHitDamageInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Attacks have 15% chance to cause Bleeding", "(26-30)% increased Damage with Bleeding", statOrder = { 2489, 3169 }, level = 75, group = "BleedOnHitAndDamage", weightKey = { "quiver_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["PhysicalAddedAsExtraColdInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (5-10)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (11-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "quiver_eyrie", "amulet_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["MovementVelocityExtraInfluence1"] = { type = "Prefix", affix = "Hunter's", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityExtraInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 80, group = "MovementVelocity", weightKey = { "quiver_basilisk", "amulet_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["ManaGainPerTargetInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ChaosDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1261 }, level = 68, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, }, + ["ChaosDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Chaos Damage over Time Multiplier with Attack Skills", statOrder = { 1261 }, level = 80, group = "ChaosDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos", "attack" }, }, + ["PhysicalDamageOverTimeMultiplierQuiverInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1250 }, level = 68, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, }, + ["PhysicalDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Physical Damage over Time Multiplier with Attack Skills", statOrder = { 1250 }, level = 80, group = "PhysicalDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical", "attack" }, }, + ["FireDamageOverTimeMultiplierQuiverInfluence1"] = { type = "Suffix", affix = "of the Hunt", "+(16-20)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1253 }, level = 68, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["FireDamageOverTimeMultiplierQuiverInfluence2"] = { type = "Suffix", affix = "of the Hunt", "+(21-25)% to Fire Damage over Time Multiplier with Attack Skills", statOrder = { 1253 }, level = 80, group = "FireDamageOverTimeMultiplierWithAttacks", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["PoisonOnHitDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "15% chance to Poison on Hit", "(15-25)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 68, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonOnHitDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "20% chance to Poison on Hit", "(26-30)% increased Damage with Poison", statOrder = { 3173, 3181 }, level = 75, group = "PoisonOnHitAndDamage", weightKey = { "quiver_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["GlobalEnergyShieldPercentInfluence1"] = { type = "Prefix", affix = "Crusader's", "(7-9)% increased maximum Energy Shield", statOrder = { 1561 }, level = 68, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentInfluence2"] = { type = "Prefix", affix = "Crusader's", "(10-12)% increased maximum Energy Shield", statOrder = { 1561 }, level = 78, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentInfluence3"] = { type = "Prefix", affix = "Crusader's", "(13-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 82, group = "GlobalEnergyShieldPercent", weightKey = { "belt_crusader", "ring_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["CriticalStrikeChanceShockedEnemiesInfluence1"] = { type = "Prefix", affix = "Crusader's", "(30-34)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 68, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeChanceShockedEnemiesInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-39)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 75, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeChanceShockedEnemiesInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(40-45)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 5913 }, level = 80, group = "CritChanceShockedEnemies", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["LightningDamageInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(16-20)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "(21-25)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningDamageInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(26-30)% increased Lightning Damage", statOrder = { 1377 }, level = 80, group = "LightningDamagePercentagePrefix", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["FortifyOnMeleeStunInfluence1"] = { type = "Prefix", affix = "Crusader's", "Melee Hits which Stun have (8-12)% chance to Fortify", statOrder = { 5678 }, level = 68, group = "FortifyOnMeleeStun", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, + ["CooldownRecoveryHighInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, + ["CooldownRecoveryHighInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 84, group = "GlobalCooldownRecovery", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, + ["SpellDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(20-25)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 68, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 75, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Spell Damage during any Flask Effect", statOrder = { 10148 }, level = 80, group = "SpellDamageDuringFlaskEffect", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "caster_damage", "influence_mod", "damage", "caster" }, }, + ["EnergyShieldRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(7-9)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "belt_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["RemoveShockOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Remove Shock when you use a Flask", statOrder = { 9917 }, level = 75, group = "RemoveShockOnFlaskUse", weightKey = { "belt_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "lightning", "ailment" }, }, + ["GlobalArmourPercentInfluence1"] = { type = "Prefix", affix = "Warlord's", "(7-9)% increased Armour", statOrder = { 1541 }, level = 68, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["GlobalArmourPercentInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(10-12)% increased Armour", statOrder = { 1541 }, level = 78, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["GlobalArmourPercentInfluence3"] = { type = "Prefix", affix = "Warlord's", "(13-15)% increased Armour", statOrder = { 1541 }, level = 82, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "belt_adjudicator", "ring_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["FireDamageBurningEnemiesInfluence1"] = { type = "Prefix", affix = "Warlord's", "(22-27) to (41-46) added Fire Damage against Burning Enemies", statOrder = { 10321 }, level = 68, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageBurningEnemiesInfluence2"] = { type = "Prefix", affix = "Warlord's", "(28-32) to (47-51) added Fire Damage against Burning Enemies", statOrder = { 10321 }, level = 75, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageBurningEnemiesInfluence3"] = { type = "Prefix", affix = "Warlord's", "(33-39) to (52-55) added Fire Damage against Burning Enemies", statOrder = { 10321 }, level = 80, group = "AddedFireBurningEnemies", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(26-30)% increased Fire Damage", statOrder = { 1357 }, level = 80, group = "FireDamagePercentagePrefix", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["ReducedCriticalStrikeDamageTakenInfluence1"] = { type = "Prefix", affix = "Warlord's", "You take (15-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["ReducedCriticalStrikeDamageTakenInfluence2_"] = { type = "Prefix", affix = "Warlord's", "You take (21-30)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 75, group = "ReducedCriticalStrikeDamageTaken", weightKey = { "belt_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["AllDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "(11-15)% increased Damage", statOrder = { 1191 }, level = 75, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["AllDamageInfluence2___"] = { type = "Prefix", affix = "Warlord's", "(16-20)% increased Damage", statOrder = { 1191 }, level = 80, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["AllDamageInfluence3"] = { type = "Prefix", affix = "Warlord's", "(21-25)% increased Damage", statOrder = { 1191 }, level = 85, group = "AllDamage", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["MeleeDamageDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(20-25)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 68, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["MeleeDamageDuringFlaskEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(26-30)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 75, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["MeleeDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(31-35)% increased Melee Damage during any Flask Effect", statOrder = { 9190 }, level = 80, group = "MeleeDamageDuringFlaskEffect", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["LifeRecoveryRateInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(7-9)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRecoveryRateInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(10-12)% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "belt_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["RemoveIgniteOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Remove Ignite and Burning when you use a Flask", statOrder = { 9907 }, level = 75, group = "RemoveIgniteOnFlaskUse", weightKey = { "belt_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "fire", "ailment" }, }, + ["GlobalEvasionPercentInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(7-9)% increased Evasion Rating", statOrder = { 1549 }, level = 68, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["GlobalEvasionPercentInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(10-12)% increased Evasion Rating", statOrder = { 1549 }, level = 78, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["GlobalEvasionPercentInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "(13-15)% increased Evasion Rating", statOrder = { 1549 }, level = 82, group = "GlobalEvasionRatingPercent", weightKey = { "belt_eyrie", "ring_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["DamageChilledEnemiesInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Damage with Hits against Chilled Enemies", statOrder = { 6070 }, level = 68, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageChilledEnemiesInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(31-35)% increased Damage with Hits against Chilled Enemies", statOrder = { 6070 }, level = 75, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageChilledEnemiesInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(36-40)% increased Damage with Hits against Chilled Enemies", statOrder = { 6070 }, level = 80, group = "DamageChilledEnemies", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["FlaskEffectInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (4-7)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, + ["FlaskEffectInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Flasks applied to you have (8-10)% increased Effect", statOrder = { 2742 }, level = 81, group = "FlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "influence_mod" }, }, + ["ColdDamageInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(16-20)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(21-25)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdDamageInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(26-30)% increased Cold Damage", statOrder = { 1366 }, level = 80, group = "ColdDamagePercentagePrefix", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["AttackSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "(8-14)% increased Attack Speed during any Flask Effect", statOrder = { 3300 }, level = 68, group = "AttackSpeedDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "influence_mod", "attack", "speed" }, }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(20-25)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 68, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 75, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageDuringFlaskEffectInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Projectile Attack Damage during any Flask Effect", statOrder = { 9728 }, level = 80, group = "ProjectileAttackDamageDuringFlaskEffect", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "damage", "attack" }, }, + ["ManaRecoveryRateInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-9)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRecoveryRateInfluence2__"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "belt_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["RemoveFreezeOnFlaskUseInfluence1"] = { type = "Suffix", affix = "of Redemption", "Remove Chill and Freeze when you use a Flask", statOrder = { 9903 }, level = 75, group = "RemoveFreezeOnFlaskUse", weightKey = { "belt_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "influence_mod", "elemental", "cold", "ailment" }, }, + ["FlaskChanceToNotConsumeChargesInfluence1"] = { type = "Prefix", affix = "Hunter's", "(6-10)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 80, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "flask" }, }, + ["FlaskChargeOnCritInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 3391 }, level = 75, group = "FlaskChargeOnCrit", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "critical" }, }, + ["ChaosDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "(16-20)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(21-25)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "(26-30)% increased Chaos Damage", statOrder = { 1385 }, level = 80, group = "IncreasedChaosDamagePrefix", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["PercentageAllAttributesInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-9)% increased Attributes", statOrder = { 1183 }, level = 68, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["PercentageAllAttributesInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(10-12)% increased Attributes", statOrder = { 1183 }, level = 75, group = "PercentageAllAttributes", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["CastSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(8-14)% increased Cast Speed during any Flask Effect", statOrder = { 5466 }, level = 68, group = "CastSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "flask", "caster", "speed" }, }, + ["ArmourPenetrationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (40-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, + ["MovementSpeedDuringFlaskEffectInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(6-10)% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 81, group = "MovementSpeedDuringFlaskEffect", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "speed" }, }, + ["PhysicalAttackDamageTakenInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "-(35-25) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 68, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, + ["PhysicalAttackDamageTakenInfluence2"] = { type = "Suffix", affix = "of the Hunt", "-(45-36) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 75, group = "PhysicalAttackDamageTaken", weightKey = { "belt_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical", "attack" }, }, + ["ChanceToShockAddedDamageInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (3-7) to (68-73) Lightning Damage against Shocked Enemies", statOrder = { 6886 }, level = 68, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["ChanceToShockAddedDamageInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (4-8) to (82-86) Lightning Damage against Shocked Enemies", statOrder = { 6886 }, level = 75, group = "ChanceToShockAddedDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["AddedLightningDamagePerPowerChargeInfluence1__"] = { type = "Prefix", affix = "Crusader's", "1 to (6-8) Lightning Damage per Power Charge", statOrder = { 9242 }, level = 75, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(1-2) to (9-11) Lightning Damage per Power Charge", statOrder = { 9242 }, level = 80, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["SpellDamageRingInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(15-17)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageRingInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(18-21)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellDamageRingInfluence3__"] = { type = "Prefix", affix = "Crusader's", "(22-25)% increased Spell Damage", statOrder = { 1223 }, level = 80, group = "SpellDamage", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["IncreasedLifeLeechRateInfluence1"] = { type = "Prefix", affix = "Crusader's", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["IncreasedLifeLeechRateInfluence2"] = { type = "Prefix", affix = "Crusader's", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["IncreasedLifeLeechRateInfluence3"] = { type = "Prefix", affix = "Crusader's", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["IncreasedLifeLeechRateSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 68, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["IncreasedLifeLeechRateSuffixInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 75, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["IncreasedLifeLeechRateSuffixInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(46-50)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 80, group = "IncreasedLifeLeechRate", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["ReducedCurseEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["ReducedCurseEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(35-40)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 75, group = "ReducedCurseEffect", weightKey = { "ring_crusader", "default", }, weightVal = { 1000, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitConductivityInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 75, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitConductivityInfluence2___"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 80, group = "ConductivityOnHitLevel", weightKey = { "ring_crusader", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["LifeGainedOnSpellHitInfluence1"] = { type = "Prefix", affix = "Crusader's", "Gain (8-12) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 68, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, + ["LifeGainedOnSpellHitInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-15) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 75, group = "LifeGainedOnSpellHit", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "caster" }, }, + ["GlobalCriticalStrikeChanceRingInfluence1___"] = { type = "Suffix", affix = "of the Crusade", "(15-17)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["GlobalCriticalStrikeChanceRingInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(18-21)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 75, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["GlobalCriticalStrikeChanceRingInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 80, group = "CriticalStrikeChance", weightKey = { "ring_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["ChanceToIgniteAddedDamageInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (19-26) to (38-46) Fire Damage against Ignited Enemies", statOrder = { 6884 }, level = 68, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteAddedDamageInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (47-54) Fire Damage against Ignited Enemies", statOrder = { 6884 }, level = 75, group = "ChanceToIgniteAddedDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["AddedFireDamagePerEnduranceChargeInfluence1"] = { type = "Prefix", affix = "Warlord's", "(2-3) to (4-5) Fire Damage per Endurance Charge", statOrder = { 9237 }, level = 75, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["AddedFireDamagePerEnduranceChargeInfluence2__"] = { type = "Prefix", affix = "Warlord's", "(3-4) to (6-7) Fire Damage per Endurance Charge", statOrder = { 9237 }, level = 80, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["MeleeDamageRingInfluence1"] = { type = "Prefix", affix = "Warlord's", "(15-17)% increased Melee Damage", statOrder = { 1234 }, level = 68, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageRingInfluence2"] = { type = "Prefix", affix = "Warlord's", "(18-21)% increased Melee Damage", statOrder = { 1234 }, level = 75, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MeleeDamageRingInfluence3"] = { type = "Prefix", affix = "Warlord's", "(22-25)% increased Melee Damage", statOrder = { 1234 }, level = 80, group = "MeleeDamage", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["CurseOnHitFlammabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 75, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitFlammabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 80, group = "FlammabilityOnHitLevel", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitVulnerabilityInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 75, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitVulnerabilityInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Vulnerability on Hit", statOrder = { 2523 }, level = 80, group = "CurseOnHitLevelVulnerabilityMod", weightKey = { "ring_adjudicator", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CriticalStrikeMultiplierRingInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(14-16)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierRingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 75, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierRingInfluence3_"] = { type = "Suffix", affix = "of the Conquest", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 80, group = "CriticalStrikeMultiplier", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["BleedDamageAndDurationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(8-12)% increased Damage with Bleeding", "(5-6)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 68, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["BleedDamageAndDurationInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(13-17)% increased Damage with Bleeding", "(7-8)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 75, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["BleedDamageAndDurationInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(18-22)% increased Damage with Bleeding", "(9-10)% increased Bleeding Duration", statOrder = { 3169, 4994 }, level = 80, group = "BleedDamageAndDuration", weightKey = { "ring_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["ChanceToFreezeAddedDamageInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (35-41) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6883 }, level = 68, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeAddedDamageInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (20-26) to (41-48) Cold Damage against Chilled or Frozen Enemies", statOrder = { 6883 }, level = 75, group = "ChanceToFreezeAddedDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "ailment" }, }, + ["AddedColdDamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(2-3) to (4-5) Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 75, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["AddedColdDamagePerFrenzyChargeInfluence2__"] = { type = "Prefix", affix = "Redeemer's", "(3-4) to (6-7) Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 80, group = "AddedColdDamagePerFrenzyCharge", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ProjectileAttackDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-17)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 68, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageRingInfluence2___"] = { type = "Prefix", affix = "Redeemer's", "(18-21)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 75, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "(22-25)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 80, group = "ProjectileAttackDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["MinionDamageRingInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (15-17)% increased Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["MinionDamageRingInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (18-21)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["MinionDamageRingInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Minions deal (22-25)% increased Damage", statOrder = { 1973 }, level = 80, group = "MinionDamage", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["EnergyShieldRechargeDelayInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRechargeDelayInfluence2"] = { type = "Prefix", affix = "Redeemer's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["CurseOnHitFrostbiteInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 75, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitFrostbiteInfluence2"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 80, group = "FrostbiteOnHitLevel", weightKey = { "ring_eyrie", "default", }, weightVal = { 200, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["AttackSpeedHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "(8-12)% increased Attack Speed if you've been Hit Recently", statOrder = { 4895 }, level = 75, group = "AttackSpeedHitRecently", weightKey = { "ring_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["IncreasedExperienceGainInfluence1"] = { type = "Prefix", affix = "Hunter's", "(2-3)% increased Experience gain", statOrder = { 1603 }, level = 85, group = "ExperienceIncrease", weightKey = { "ring_basilisk", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["ReflectedPhysicalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, }, + ["ReflectedPhysicalDamageRingInfluence2_"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 75, group = "ReducedPhysicalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical" }, }, ["PhysicalDamageCannotBeReflectedPercentRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "(40-55)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 68, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, ["PhysicalDamageCannotBeReflectedPercentRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "(56-75)% of Physical Hit Damage from you and your Minions cannot be Reflected", statOrder = { 3 }, level = 75, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["ReflectedElementalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, }, - ["ReflectedElementalDamageRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, }, + ["ReflectedElementalDamageRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (31-45)% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, }, + ["ReflectedElementalDamageRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "You and your Minions take (46-55)% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 75, group = "ReducedElementalReflectTaken", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental" }, }, ["ElementalDamageCannotBeReflectedPercentRingInfluence1"] = { type = "Prefix", affix = "Hunter's", "(40-55)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 68, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, ["ElementalDamageCannotBeReflectedPercentRingInfluence2"] = { type = "Prefix", affix = "Hunter's", "(56-75)% of Elemental Hit Damage from you and your Minions cannot be Reflected", statOrder = { 2 }, level = 75, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercent", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["EnergyShieldDelayInfluence1"] = { type = "Prefix", affix = "Hunter's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldDelayInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["LifeGainPerTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, - ["LifeGainPerTargetInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, - ["ExertedAttackDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (25-27)% increased Damage", statOrder = { 6361 }, level = 68, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (28-31)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (32-35)% increased Damage", statOrder = { 6361 }, level = 80, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["CurseOnHitElementalWeaknessInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2530 }, level = 75, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["CurseOnHitElementalWeaknessInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2530 }, level = 80, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, - ["CurseOnHitDespairInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 75, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["CurseOnHitDespairInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 80, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, - ["PoisonDamageAndDurationInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(5-6)% increased Poison Duration", "(8-12)% increased Damage with Poison", statOrder = { 3175, 3186 }, level = 68, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamageAndDurationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-8)% increased Poison Duration", "(13-17)% increased Damage with Poison", statOrder = { 3175, 3186 }, level = 75, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamageAndDurationInfluence3__"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Poison Duration", "(18-22)% increased Damage with Poison", statOrder = { 3175, 3186 }, level = 80, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["LightningDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, - ["LightningDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, - ["LightningDamageESLeechInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5022 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, }, - ["LightningDamageESLeechSufffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5022 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, }, - ["DamagePer15IntelligenceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 15 Intelligence", statOrder = { 6062 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeInfluence1"] = { type = "Prefix", affix = "Crusader's", "(3-4)% increased Damage per Power Charge", statOrder = { 6071 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(5-6)% increased Damage per Power Charge", statOrder = { 6071 }, level = 80, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["GlobalLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7470 }, level = 82, group = "GlobalLightningGemLevel", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, - ["LightningPenetrationInfluence1__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningPenetrationInfluence2__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (8-10)% Lightning Resistance", statOrder = { 2989 }, level = 82, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["MaximumLifeLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLifeLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumEnergyShieldLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1739 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["MaximumEnergyShieldLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1739 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["MaximumSpellBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Chance to Block Spell Damage", statOrder = { 1994 }, level = 68, group = "MaximumSpellBlockChance", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, }, - ["WrathReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10628 }, level = 75, group = "WrathReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["WrathReservationEfficiencyInfluence1________"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10629 }, level = 75, group = "WrathReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["DisciplineReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6193 }, level = 75, group = "DisciplineReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["DisciplineReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6194 }, level = 75, group = "DisciplineReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfLightningReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9773 }, level = 75, group = "PurityOfLightningReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfLightningReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9774 }, level = 75, group = "PurityOfLightningReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["ZealotryReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10721 }, level = 75, group = "ZealotryReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["ZealotryReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10722 }, level = 75, group = "ZealotryReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["SpellBlockAmuletInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(4-5)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockAmuletInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(6-7)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 80, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["FireDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, - ["FireDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, - ["FireDamageESLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5021 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, }, - ["FireDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5021 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, }, - ["DamagePer15StrengthInfluence1"] = { type = "Prefix", affix = "Warlord's", "1% increased Damage per 15 Strength", statOrder = { 6063 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerEnduranceChargeInfluence1__"] = { type = "Prefix", affix = "Warlord's", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerEnduranceChargeInfluence2"] = { type = "Prefix", affix = "Warlord's", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 80, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["GlobalFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Fire Skill Gems", statOrder = { 6591 }, level = 82, group = "GlobalFireGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, - ["GlobalPhysicalGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Physical Skill Gems", statOrder = { 9670 }, level = 82, group = "GlobalPhysicalGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "gem" }, }, - ["FirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (8-10)% Fire Resistance", statOrder = { 2986 }, level = 82, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["MaximumAttackBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, }, - ["AngerReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4691 }, level = 75, group = "AngerReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["AngerReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4692 }, level = 75, group = "AngerReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["DeterminationReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6177 }, level = 75, group = "DeterminationReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["DeterminationReservationEfficiencyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6178 }, level = 75, group = "DeterminationReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfFireReducedReservationInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9767 }, level = 75, group = "PurityOfFireReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfFireReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9768 }, level = 75, group = "PurityOfFireReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PrideReducedReservationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9713 }, level = 75, group = "PrideReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PrideReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9714 }, level = 75, group = "PrideReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["ColdDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, - ["ColdDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, - ["ColdDamageESLeechInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5019 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, }, - ["ColdDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5019 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, }, - ["DamagePer15DexterityInfluence1"] = { type = "Prefix", affix = "Redeemer's", "1% increased Damage per 15 Dexterity", statOrder = { 6061 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerFrenzyChargeInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 80, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["GlobalColdGemLevelInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of all Cold Skill Gems", statOrder = { 5841 }, level = 82, group = "GlobalColdGemLevel", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, - ["ColdPenetrationInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (8-10)% Cold Resistance", statOrder = { 2988 }, level = 82, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["MaximumAttackDodgeChanceInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1146 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["MaximumSpellDodgeChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1146 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["SpellDamageSuppressedInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +(3-5)% of Suppressed Spell Damage", statOrder = { 1146 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, - ["HatredReducedReservationInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6946 }, level = 75, group = "HatredReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["HatredReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6947 }, level = 75, group = "HatredReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["GraceReducedReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6907 }, level = 75, group = "GraceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["GraceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6908 }, level = 75, group = "GraceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfIceReducedReservationInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9770 }, level = 75, group = "PurityOfIceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["PurityOfIceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9771 }, level = 75, group = "PurityOfIceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, - ["WarcrySpeedInfluence1"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Warcry Speed", statOrder = { 3282 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["WarcrySpeedInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["WarcrySpeedInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Warcry Speed", statOrder = { 3282 }, level = 80, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["WarcrySpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-20)% increased Warcry Speed", statOrder = { 3282 }, level = 42, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Warcry Speed", statOrder = { 3282 }, level = 58, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Warcry Speed", statOrder = { 3282 }, level = 74, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEssence4_"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Warcry Speed", statOrder = { 3282 }, level = 82, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["DoubleDamageStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5666 }, level = 75, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DoubleDamageStunnedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5666 }, level = 83, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["PhysicalDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "physical" }, }, - ["ChaosDamageLifeLeechInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["ChaosDamageLifeLeechSuffixInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["GlobalChaosGemLevelInfluence1__"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5761 }, level = 82, group = "GlobalChaosGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, }, - ["GlobalStrengthGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Strength Skill Gems", statOrder = { 10256 }, level = 82, group = "GlobalStrengthGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, - ["GlobalDexterityGemLevelInfluence1_"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Dexterity Skill Gems", statOrder = { 6182 }, level = 82, group = "GlobalDexterityGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, - ["GlobalIntelligenceGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Intelligence Skill Gems", statOrder = { 7297 }, level = 82, group = "GlobalIntelligenceGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, - ["ElementalPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (3-4)% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2985 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["MalevolenceReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8166 }, level = 75, group = "MalevolenceReservation", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, }, - ["MalevolenceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8167 }, level = 75, group = "MalevolenceReservationEfficiency", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "aura" }, }, - ["RandomChargeOnKillInfluence1___"] = { type = "Suffix", affix = "of the Hunt", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3617 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["RandomChargeOnKillInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3617 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["ReducedAttributeRequirementsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2557 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["ReducedAttributeRequirementsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2557 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1237, 1656 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1237, 1656 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1237, 1656 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1237, 1656 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1237, 1656 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1237, 1418 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1237, 1418 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1237, 1418 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1237, 1418 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1237, 1418 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1237, 1469 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1237, 1469 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1237, 1469 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1237, 1469 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1237, 1469 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1237, 1493 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1237, 1493 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1237, 1493 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1237, 1493 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1237, 1493 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1237, 1522 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1237, 1522 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1237, 1522 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1237, 1522 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1237, 1522 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1237, 1885 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1237, 1885 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1237, 1885 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1237, 1885 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1237, 1885 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1237, 1801 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1237, 1801 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1237, 1801 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1237, 1801 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1237, 1801 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1237, 1795 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1237, 1795 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1237, 1795 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1237, 1795 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1237, 1795 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-10) to (15-18) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (12-16) to (24-28) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (26-35) to (53-61) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (15-19) to (28-34) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (22-30) to (44-52) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (31-41) to (61-72) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (39-52) to (78-90) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedFireDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (49-65) to (99-114) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1367, 3767 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (7-9) to (14-16) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-25) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (15-20) to (30-35) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (19-25) to (38-44) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (23-32) to (48-55) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (13-16) to (26-30) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-26) to (41-46) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Adds (28-37) to (56-65) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (35-46) to (71-81) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedColdDamageAndPenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Redeemer's", "Adds (43-59) to (89-102) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1376, 3768 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds 2 to (25-29) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (40-45) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (55-63) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (70-79) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (89-99) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Adds 3 to (46-53) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (74-84) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (102-117) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (3-12) to (130-146) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (6-15) to (165-183) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1387, 3769 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (5-7) to (11-13) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (9-11) to (17-20) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (12-16) to (24-28) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (15-20) to (30-35) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (18-25) to (38-44) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (9-13) to (21-24) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (16-21) to (32-37) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (22-29) to (44-52) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (28-37) to (57-65) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (35-48) to (72-81) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1395, 7880 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["SpellAddedFireDamagePenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (6-8) to (12-14) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1409, 2986 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (10-13) to (19-22) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1409, 2986 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (13-18) to (27-31) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1409, 2986 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1409, 2986 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1409, 2986 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-11) to (17-19) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1409, 2986 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (13-17) to (26-30) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1409, 2986 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Adds (18-24) to (36-42) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1409, 2986 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (45-53) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1409, 2986 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Warlord's", "Adds (28-38) to (57-66) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1409, 2986 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamagePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (5-7) to (10-12) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1410, 2988 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (16-18) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1410, 2988 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-15) to (22-25) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1410, 2988 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (14-18) to (27-32) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1410, 2988 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (34-40) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1410, 2988 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (15-18) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1410, 2988 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (12-16) to (23-27) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1410, 2988 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-22) to (33-38) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1410, 2988 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence4_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-27) to (41-48) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1410, 2988 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamagePenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (26-34) to (52-60) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1410, 2988 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamagePenetrationInfluence1___"] = { type = "Prefix", affix = "Crusader's", "Adds (1-2) to (21-22) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1411, 2989 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (33-35) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1411, 2989 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (46-49) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1411, 2989 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationInfluence4_"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (58-61) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1411, 2989 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (73-77) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1411, 2989 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (32-34) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1411, 2989 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (49-52) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1411, 2989 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (69-73) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1411, 2989 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence4__"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (87-92) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1411, 2989 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (109-115) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1411, 2989 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["LocalWeaponFirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (9-10)% Fire Resistance", statOrder = { 3767 }, level = 68, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalWeaponFirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (11-12)% Fire Resistance", statOrder = { 3767 }, level = 73, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalWeaponFirePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 3767 }, level = 78, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, - ["LocalWeaponColdPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (9-10)% Cold Resistance", statOrder = { 3768 }, level = 68, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalWeaponColdPenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (11-12)% Cold Resistance", statOrder = { 3768 }, level = 73, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalWeaponColdPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 3768 }, level = 78, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, - ["LocalWeaponLightningPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance", statOrder = { 3769 }, level = 68, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalWeaponLightningPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance", statOrder = { 3769 }, level = 73, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalWeaponLightningPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 3769 }, level = 78, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, - ["LocalWeaponChaosPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7880 }, level = 68, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalWeaponChaosPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance", statOrder = { 7880 }, level = 73, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalWeaponChaosPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance", statOrder = { 7880 }, level = 78, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["LocalWeaponElementalPenetrationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3766 }, level = 68, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["LocalWeaponElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances", statOrder = { 3766 }, level = 73, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["LocalWeaponElementalPenetrationInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances", statOrder = { 3766 }, level = 78, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["FireResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 7% Fire Resistance", statOrder = { 2986 }, level = 73, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 78, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (10-11)% Fire Resistance", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (12-13)% Fire Resistance", statOrder = { 2986 }, level = 73, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (14-15)% Fire Resistance", statOrder = { 2986 }, level = 78, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["ColdResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 7% Cold Resistance", statOrder = { 2988 }, level = 73, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 78, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (10-11)% Cold Resistance", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (12-13)% Cold Resistance", statOrder = { 2988 }, level = 73, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (14-15)% Cold Resistance", statOrder = { 2988 }, level = 78, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["LightningResistancePenetrationInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2989 }, level = 73, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 78, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (10-11)% Lightning Resistance", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (12-13)% Lightning Resistance", statOrder = { 2989 }, level = 73, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationTwoHandInfluence3__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (14-15)% Lightning Resistance", statOrder = { 2989 }, level = 78, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["ElementalResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalResistancePenetrationInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2985 }, level = 73, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2985 }, level = 78, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2985 }, level = 68, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2985 }, level = 73, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["ElementalResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2985 }, level = 78, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["PhysicalAddedAsExtraFireWeaponInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireWeaponInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireWeaponInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence1__"] = { type = "Prefix", affix = "Warlord's", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence2__"] = { type = "Prefix", affix = "Warlord's", "Gain (21-26)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Warlord's", "Gain (27-30)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsExtraColdWeaponInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (21-26)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (27-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsExtraLightningWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningWeaponInfluence3_"] = { type = "Prefix", affix = "Crusader's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (21-26)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Crusader's", "Gain (27-30)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["AddedFireDamagePerStrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4874 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "sceptre_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamagePerStrengthTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4874 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedColdDamagePerDexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4929 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamagePerDexterityTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4929 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedLightningDamagePerIntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamagePerIntelligenceTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4877 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["SpellDamagePer16StrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Strength", statOrder = { 10155 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamagePer16DexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10153 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamagePer16IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10154 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamagePer10StrengthInfluence1_"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Strength", statOrder = { 10152 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamagePer10IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2743 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["BurningDamagePrefixInfluence1___"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Burning Damage", statOrder = { 1882 }, level = 68, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Burning Damage", statOrder = { 1882 }, level = 71, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixInfluence3"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Burning Damage", statOrder = { 1882 }, level = 75, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Burning Damage", statOrder = { 1882 }, level = 78, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Burning Damage", statOrder = { 1882 }, level = 68, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixTwoHandInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Burning Damage", statOrder = { 1882 }, level = 71, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Burning Damage", statOrder = { 1882 }, level = 75, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BurningDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Burning Damage", statOrder = { 1882 }, level = 78, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["BleedingDamagePrefixInfluence1"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Physical Damage over Time", statOrder = { 1216 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Physical Damage over Time", statOrder = { 1216 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Physical Damage over Time", statOrder = { 1216 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Physical Damage over Time", statOrder = { 1216 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Physical Damage over Time", statOrder = { 1216 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Physical Damage over Time", statOrder = { 1216 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Physical Damage over Time", statOrder = { 1216 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["BleedingDamagePrefixTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Physical Damage over Time", statOrder = { 1216 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, - ["PoisonDamagePrefixInfluence1__"] = { type = "Prefix", affix = "Hunter's", "(60-69)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(70-79)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixInfluence3"] = { type = "Prefix", affix = "Hunter's", "(80-89)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixInfluence4"] = { type = "Prefix", affix = "Hunter's", "(90-94)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "(100-109)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixTwoHandInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(110-119)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "(120-129)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["PoisonDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(130-134)% increased Chaos Damage over Time", statOrder = { 1219 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterIgniteDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-12)% faster", statOrder = { 2569 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (13-15)% faster", statOrder = { 2569 }, level = 73, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (18-21)% faster", statOrder = { 2569 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (22-25)% faster", statOrder = { 2569 }, level = 73, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterBleedDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-12)% faster", statOrder = { 6549 }, level = 68, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (13-15)% faster", statOrder = { 6549 }, level = 73, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (18-21)% faster", statOrder = { 6549 }, level = 68, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (22-25)% faster", statOrder = { 6549 }, level = 73, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterPoisonDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-12)% faster", statOrder = { 6550 }, level = 68, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (13-15)% faster", statOrder = { 6550 }, level = 73, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (18-21)% faster", statOrder = { 6550 }, level = 68, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (22-25)% faster", statOrder = { 6550 }, level = 73, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["ImpaleEffectWeaponInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(12-16)% increased Impale Effect", statOrder = { 7247 }, level = 68, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ImpaleEffectWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(17-21)% increased Impale Effect", statOrder = { 7247 }, level = 71, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ImpaleEffectWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Impale Effect", statOrder = { 7247 }, level = 75, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ImpaleEffectTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% increased Impale Effect", statOrder = { 7247 }, level = 68, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ImpaleEffectTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(30-34)% increased Impale Effect", statOrder = { 7247 }, level = 71, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ImpaleEffectTwoHandWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(35-38)% increased Impale Effect", statOrder = { 7247 }, level = 75, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ConvertPhysicalToFireInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosInfluenceWeapon1"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosInfluenceWeapon2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 71, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ArmourPenetrationWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7944 }, level = 68, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["ArmourPenetrationWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7944 }, level = 71, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["ArmourPenetrationTwoHandWeaponInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7944 }, level = 68, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["ArmourPenetrationTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7944 }, level = 71, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["ArmourPenetrationSpellWeaponInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationSpellWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationSpellTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationSpellTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, - ["FireExposureOnHitWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(11-15)% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, level = 75, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["FireExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, level = 80, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["ColdExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(11-15)% chance to inflict Cold Exposure on Hit", statOrder = { 5031 }, level = 75, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["ColdExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% chance to inflict Cold Exposure on Hit", statOrder = { 5031 }, level = 80, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["LightningExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 5033 }, level = 75, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["LightningExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 5033 }, level = 80, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToUnnerveOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 78, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitWeaponInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 81, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7879 }, level = 78, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, }, - ["ChanceToIntimidateOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7879 }, level = 81, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, }, - ["DamageFromAurasWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3463 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, }, - ["DamageFromAurasTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3463 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, }, - ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrder = { 1237, 7993 }, level = 68, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrder = { 1237, 7993 }, level = 70, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrder = { 1237, 7993 }, level = 73, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["BlindOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 70, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["BlindOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 73, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["OnslaugtOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["OnslaugtOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 70, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["OnslaugtOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 73, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["PhasingOnKillWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["PhasingOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["PhasingOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 70, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["UnholyMightOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 73, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, - ["BlockWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockWhileDualWieldingInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 70, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlockWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 73, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["PhysicalDamageWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["PhysicalDamageWhileDualWieldingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 70, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["PhysicalDamageWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1284 }, level = 73, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, - ["LocalMeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 68, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["LocalMeleeWeaponRangeInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Weapon Range", statOrder = { 2750 }, level = 73, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, - ["MovementVelocityWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-6)% increased Movement Speed", statOrder = { 1803 }, level = 68, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementVelocityWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Movement Speed", statOrder = { 1803 }, level = 73, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["SpellsDoubleDamageChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Spells have a (4-5)% chance to deal Double Damage", statOrder = { 10135 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellsDoubleDamageChanceInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (6-7)% chance to deal Double Damage", statOrder = { 10135 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellsDoubleDamageChanceTwoHandInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Spells have a (10-11)% chance to deal Double Damage", statOrder = { 10135 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["SpellsDoubleDamageChanceTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (12-14)% chance to deal Double Damage", statOrder = { 10135 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["DamagePerEnduranceChargeWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerEnduranceChargeWeaponInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerFrenzyChargeWeaponInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerFrenzyChargeWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 73, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(5-7)% increased Damage per Power Charge", statOrder = { 6071 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(8-10)% increased Damage per Power Charge", statOrder = { 6071 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerEnduranceChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerEnduranceChargeTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-17)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-13)% increased Damage per Power Charge", statOrder = { 6071 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamagePerPowerChargeTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(14-17)% increased Damage per Power Charge", statOrder = { 6071 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["BaseManaRegenerationInfluence1_____"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.3% of Mana per second", statOrder = { 1586 }, level = 68, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["BaseManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.4% of Mana per second", statOrder = { 1586 }, level = 73, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["BaseManaRegenerationTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.7% of Mana per second", statOrder = { 1586 }, level = 68, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["BaseManaRegenerationTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.8% of Mana per second", statOrder = { 1586 }, level = 73, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AngerAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (28-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["AngerAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Anger has (34-40)% increased Aura Effect", statOrder = { 3361 }, level = 80, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["AngerAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (48-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["AngerAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Anger has (55-60)% increased Aura Effect", statOrder = { 3361 }, level = 80, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["HatredAuraEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (28-33)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["HatredAuraEffectInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (34-40)% increased Aura Effect", statOrder = { 3371 }, level = 80, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["HatredAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (48-54)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["HatredAuraEffectTwoHandInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (55-60)% increased Aura Effect", statOrder = { 3371 }, level = 80, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["WrathAuraEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (28-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["WrathAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (34-40)% increased Aura Effect", statOrder = { 3366 }, level = 80, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["WrathAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (48-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["WrathAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (55-60)% increased Aura Effect", statOrder = { 3366 }, level = 80, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["MalevolenceAuraEffectInfluence1____"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (28-33)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (34-40)% increased Aura Effect", statOrder = { 6166 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (48-54)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (55-60)% increased Aura Effect", statOrder = { 6166 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (28-33)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["ZealotryAuraEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (34-40)% increased Aura Effect", statOrder = { 10720 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["ZealotryAuraEffectTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (48-54)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["ZealotryAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (55-60)% increased Aura Effect", statOrder = { 10720 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, - ["DamageWhileLeechingWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(18-22)% increased Damage while Leeching", statOrder = { 3068 }, level = 68, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageWhileLeechingWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% increased Damage while Leeching", statOrder = { 3068 }, level = 70, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageWhileLeechingWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% increased Damage while Leeching", statOrder = { 3068 }, level = 73, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageWhileLeechingWeaponTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(32-36)% increased Damage while Leeching", statOrder = { 3068 }, level = 68, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageWhileLeechingWeaponTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(37-41)% increased Damage while Leeching", statOrder = { 3068 }, level = 70, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["DamageWhileLeechingWeaponTwoHandInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(42-45)% increased Damage while Leeching", statOrder = { 3068 }, level = 73, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["AttackSpeedWithFortifyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Attack Speed while Fortified", statOrder = { 3220 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedWithFortifyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Attack Speed while Fortified", statOrder = { 3220 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedWithFortifyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Attack Speed while Fortified", statOrder = { 3220 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedWithFortifyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-25)% increased Attack Speed while Fortified", statOrder = { 3220 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["MeleeWeaponRangeIfKilledRecentlyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9216 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["MeleeWeaponRangeIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9216 }, level = 73, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["TauntOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["TauntOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(7-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 70, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["TauntOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(9-10)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 73, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, - ["AttackSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(13-16)% increased Attack Speed if you've Killed Recently", statOrder = { 4899 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Attack Speed if you've Killed Recently", statOrder = { 4899 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(23-26)% increased Attack Speed if you've Killed Recently", statOrder = { 4899 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["AttackSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(27-30)% increased Attack Speed if you've Killed Recently", statOrder = { 4899 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, - ["CastSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(13-16)% increased Cast Speed if you've Killed Recently", statOrder = { 5472 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["CastSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(17-20)% increased Cast Speed if you've Killed Recently", statOrder = { 5472 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["CastSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(23-26)% increased Cast Speed if you've Killed Recently", statOrder = { 5472 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["CastSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(27-30)% increased Cast Speed if you've Killed Recently", statOrder = { 5472 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, - ["WarcryCooldownSpeedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WarcryCooldownSpeedInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["WarcryCooldownSpeedTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(35-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, - ["WarcryCooldownSpeedTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(41-45)% increased Warcry Cooldown Recovery Rate", statOrder = { 3334 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, - ["CriticalStrikeChanceIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-40)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5930 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeChanceIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5930 }, level = 73, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CriticalStrikeMultiplierIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(26-30)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5962 }, level = 68, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(31-35)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5962 }, level = 73, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierAgainstFullLifeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3438 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["CriticalStrikeMultiplierAgainstFullLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3438 }, level = 73, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["GainRareMonsterModsOnKillChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6701 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["GainRareMonsterModsOnKillChanceInfluence2"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6701 }, level = 73, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["StunDurationAndThresholdInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% reduced Enemy Stun Threshold", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1522, 1868 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["StunDurationAndThresholdInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% reduced Enemy Stun Threshold", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1522, 1868 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["StunDurationAndThresholdTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% reduced Enemy Stun Threshold", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1522, 1868 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["StunDurationAndThresholdTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% reduced Enemy Stun Threshold", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1522, 1868 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectIfStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4733 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectIfStunnedRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4733 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4733 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4733 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["EnemiesExplodeOnDeathDealingFireInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2711 }, level = 78, group = "EnemiesExplodeOnDeath", weightKey = { "mace_eyrie", "2h_mace_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["ChanceForDoubleStunDurationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-11)% chance to double Stun Duration", statOrder = { 3569 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceForDoubleStunDurationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% chance to double Stun Duration", statOrder = { 3569 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceForDoubleStunDurationTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(17-21)% chance to double Stun Duration", statOrder = { 3569 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["ChanceForDoubleStunDurationTwoHandInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(22-25)% chance to double Stun Duration", statOrder = { 3569 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, - ["MovementSpeedIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementSpeedIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementSpeedIfHitRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["MovementSpeedIfHitRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, - ["AreaOfEffectIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Area of Effect if you've Killed Recently", statOrder = { 4224 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AreaOfEffectIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Area of Effect if you've Killed Recently", statOrder = { 4224 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AreaOfEffectIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(27-31)% increased Area of Effect if you've Killed Recently", statOrder = { 4224 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AreaOfEffectIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(32-35)% increased Area of Effect if you've Killed Recently", statOrder = { 4224 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["ChanceToBlockIfDamagedRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3221 }, level = 68, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["ChanceToBlockIfDamagedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3221 }, level = 73, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockChanceIfHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5656 }, level = 68, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["SpellBlockChanceIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5656 }, level = 73, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, - ["AdditionalProjectileWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Skills fire an additional Projectile", statOrder = { 1797 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "influence_mod" }, }, - ["SocketedSkillsChainInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Socketed Gems Chain 1 additional times", statOrder = { 545 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, - ["SocketedSkillsForkInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles from Socketed Gems Fork", statOrder = { 569 }, level = 85, group = "DisplaySocketedSkillsFork", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, - ["ProjectileDamagePerEnemyPiercedInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9733 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["ProjectileDamagePerEnemyPiercedInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9733 }, level = 70, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["ProjectileDamagePerEnemyPiercedInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9733 }, level = 73, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, - ["PhysicalDamageAddedAsRandomElementInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Gain (7-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["PhysicalDamageAddedAsRandomElementInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Gain (9-11)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 73, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["PhysicalDamageAddedAsRandomElementInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Gain (12-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 78, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, - ["ArcaneSurgeOnCritInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6730 }, level = 75, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["ArcaneSurgeOnCritInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6730 }, level = 80, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, - ["CurseOnHitFlammabilityWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2535 }, level = 78, group = "FlammabilityOnHitLevel", weightKey = { "wand_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitFrostbiteWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2536 }, level = 78, group = "FrostbiteOnHitLevel", weightKey = { "wand_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitConductivityWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2532 }, level = 78, group = "ConductivityOnHitLevel", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, - ["CurseOnHitDespairWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 78, group = "CurseOnHitDespair", weightKey = { "wand_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["ImpaleEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "(12-16)% increased Impale Effect", statOrder = { 7247 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ImpaleEffectEssence2__"] = { type = "Suffix", affix = "of the Essence", "(17-21)% increased Impale Effect", statOrder = { 7247 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ImpaleEffectEssence3"] = { type = "Suffix", affix = "of the Essence", "(22-25)% increased Impale Effect", statOrder = { 7247 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ImpaleEffectTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "(25-29)% increased Impale Effect", statOrder = { 7247 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ImpaleEffectTwoHandEssence2_"] = { type = "Suffix", affix = "of the Essence", "(30-34)% increased Impale Effect", statOrder = { 7247 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["ImpaleEffectTwoHandEssence3_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% increased Impale Effect", statOrder = { 7247 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["BreachBodyChaosDamageAsPortionOfFireDamage1_"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, - ["BreachBodyChaosDamageAsPortionOfColdDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, - ["BreachBodyChaosDamageAsPortionOfLightningDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, - ["BreachBodyAllDefences1"] = { type = "Prefix", affix = "Chayula's", "50% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, }, - ["BreachBodyLifeGainedOnHittingIgnitedEnemies1"] = { type = "Suffix", affix = "of Xoph", "Gain (20-30) Life for each Ignited Enemy hit with Attacks", statOrder = { 1748 }, level = 1, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["BreachBodyNoExtraBleedDamageWhileMoving1_"] = { type = "Suffix", affix = "of Uul-Netol", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3197 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["BreachBodyAddedColdDamagePerPowerCharge1"] = { type = "Prefix", affix = "Tul's", "Adds 10 to 15 Cold Damage to Spells per Power Charge", statOrder = { 1830 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["BreachBodyGainPowerChargeOnKillingFrozenEnemy1"] = { type = "Suffix", affix = "of Tul", "25% chance to gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1829 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, }, - ["BreachBodyIncreasedAttackSpeedPerDexterity1"] = { type = "Suffix", affix = "of Esh", "1% increased Attack Speed per 25 Dexterity", statOrder = { 4907 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, - ["BreachBodyPhysicalDamageReductionWhileNotMoving1"] = { type = "Suffix", affix = "of Uul-Netol", "6% additional Physical Damage Reduction while stationary", statOrder = { 4318 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["BreachBodyAddedLightningDamagePerShockedEnemyKilled1"] = { type = "Prefix", affix = "Esh's", "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 9247 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["BreachBodyReflectsShocks1"] = { type = "Suffix", affix = "of Esh", "Shock Reflection", statOrder = { 9883 }, level = 1, group = "ReflectsShocks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["BreachBodyChaosDamageDoesNotBypassESNotLowLifeOrMana1_"] = { type = "Prefix", affix = "Esh's", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5734 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, - ["BreachBodyOnHitBlindChilledEnemies1"] = { type = "Suffix", affix = "of Tul", "Blind Chilled Enemies on Hit", statOrder = { 5221 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["BreachBodyVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Uul-Netol", "25% chance to Curse Enemies with Vulnerability on Hit", statOrder = { 2529 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["BreachBodyGrantsEnvy1"] = { type = "Prefix", affix = "Chayula's", "Grants Level 15 Envy Skill", statOrder = { 660 }, level = 1, group = "GrantsEnvy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, - ["BreachBodyEnemiesBlockedAreIntimidated1"] = { type = "Prefix", affix = "Uul-Netol's", "Permanently Intimidate Enemies on Block", statOrder = { 9609 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["BreachBodyMinionsPoisonEnemiesOnHit1_"] = { type = "Suffix", affix = "of Chayula", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3179 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, }, - ["BreachBodyArmourIncreasedByUncappedFireResistance1____"] = { type = "Prefix", affix = "Xoph's", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4768 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, - ["BreachBodyEvasionIncreasedByUncappedColdResistance1"] = { type = "Prefix", affix = "Tul's", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6491 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, - ["BreachBodyCriticalChanceIncreasedByUncappedLightningResistance1"] = { type = "Suffix", affix = "of Esh", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 5924 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["BreachBodyCoverInAshWhenHit1__"] = { type = "Prefix", affix = "Xoph's", "Cover Enemies in Ash when they Hit you", statOrder = { 4700 }, level = 1, group = "CoverInAshWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["BreachBodyChillEnemiesWhenHit1"] = { type = "Suffix", affix = "of Tul", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3145 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["BreachBodyArcticArmourReservationCost1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4719 }, level = 1, group = "ArcticArmourReservationCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["BreachBodyArcticArmourReservationEfficiency1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4720 }, level = 1, group = "ArcticArmourReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["BreachBodyMaximumLifeConvertedToEnergyShield1___"] = { type = "Prefix", affix = "Chayula's", "10% of Maximum Life Converted to Energy Shield", statOrder = { 9165 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LocalIncreaseSocketedActiveGemLevelUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 195, 211 }, level = 90, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, - ["LocalIncreaseSocketedSupportGemLevelUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 194, 210 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, - ["PhysicalDamageTakenAsFirePercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2452, 6576 }, level = 94, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2453, 5823 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsLightningPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2454, 7456 }, level = 92, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, }, - ["ReducedElementalReflectTakenUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3298, 6339 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["ReducedPhysicalReflectTakenUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2246, 9669 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["ElementalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3298 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["PhysicalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2246 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["MaximumLifeUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(13-15)% increased maximum Life", statOrder = { 1576 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumManaBodyUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% increased maximum Mana", statOrder = { 1585 }, level = 85, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["DamageTakenFromManaBeforeLifeUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(11-15)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 90, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, }, - ["MaximumLifeOnKillPercentUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1754, 7398 }, level = 85, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumManaOnKillPercentUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1756, 8196 }, level = 85, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["MaximumEnergyShieldOnKillPercentUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1755, 6455 }, level = 85, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["PercentageStrengthUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 163, 1189 }, level = 93, group = "PercentageStrengthMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["PercentageDexterityUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 165, 1190 }, level = 93, group = "PercentageDexterityMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["PercentageIntelligenceUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 166, 1191 }, level = 93, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["LifeRegenerationRatePercentUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Regenerate (2.1-3)% of Life per second", statOrder = { 1949 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["SupportedByItemRarityUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 20 Item Rarity", "(19-25)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 326, 10503 }, level = 95, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, - ["AdditionalCriticalStrikeChanceWithAttacksUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4797 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, - ["AdditionalCriticalStrikeChanceWithSpellsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, - ["MaximumManaInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% increased maximum Mana", statOrder = { 1585 }, level = 90, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["PhysTakenAsLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2454, 7456 }, level = 93, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, }, - ["ConsecratedGroundStationaryInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "You have Consecrated Ground around you while stationary", "Effects of Consecrated Ground you create Linger for 1 second", statOrder = { 5861, 10688 }, level = 85, group = "ConsecratedGroundStationaryMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["HolyPhysicalExplosionInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 1885, 6377 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["HolyPhysicalExplosionChanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 1885, 3309 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["PercentageIntelligenceBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 166, 1191 }, level = 85, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["AddPowerChargeOnCritInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "15% chance to gain a Power Charge on Critical Strike", "3% increased Damage per Power Charge", statOrder = { 1835, 6071 }, level = 90, group = "PowerChargeOnCriticalStrikeChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, }, - ["EnergyShieldOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1755, 6455 }, level = 90, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(12-15)% increased Energy Shield Recovery rate", "Regenerate (50-100) Energy Shield per second", statOrder = { 1573, 2650 }, level = 90, group = "EnergyShieldRecoveryRateMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["PhysTakenAsFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2452, 6576 }, level = 93, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, }, - ["SocketedActiveGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 195, 211 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, - ["ReflectedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2246, 9669 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["PhysicalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2246 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, - ["AllResistancesInfluenceMaven____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(19-22)% to all Elemental Resistances", "+1% to all maximum Elemental Resistances", statOrder = { 1624, 1648 }, level = 85, group = "AllResistancesMaven", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, - ["PercentageStrengthBodyInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 163, 1189 }, level = 85, group = "PercentageStrengthMaven", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["EnduranceChargeIfHitRecentlyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "3% increased Area of Effect per Endurance Charge", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 4738, 6751 }, level = 90, group = "EnduranceChargeIfHitRecentlyMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["LifeOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1754, 7398 }, level = 90, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["LifeRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(12-15)% increased Life Recovery rate", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 1583, 7352 }, level = 90, group = "LifeRecoveryRateMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "life" }, }, - ["SocketedAttacksManaCostInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Ignore Stuns while using Socketed Attack Skills", "Socketed Attacks have -20 to Total Mana Cost", statOrder = { 550, 554 }, level = 95, group = "SocketedAttacksManaCostMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, }, - ["PhysTakenAsColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2453, 5823 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, }, - ["SocketedSupportGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 194, 210 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, - ["ReflectedElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3298, 6339 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["ElementalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3298 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, - ["NearbyEnemiesAreBlindedInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Cannot be Blinded", "Nearby Enemies are Blinded", statOrder = { 2979, 3401 }, level = 85, group = "NearbyEnemiesAreBlindedMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["PercentageDexterityBodyInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 165, 1190 }, level = 85, group = "PercentageDexterityMaven", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, - ["FrenzyChargeOnHitChanceInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "1% increased Movement Speed per Frenzy Charge", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1807, 1838 }, level = 90, group = "FrenzyChargeOnHitChanceMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod", "speed" }, }, - ["ManaOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1756, 8196 }, level = 90, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-15)% increased Mana Recovery rate", "(20-35)% increased Mana Recovery from Flasks", statOrder = { 1591, 2065 }, level = 90, group = "ManaRecoveryRateMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, - ["AuraEffectBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(26-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 90, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "aura" }, }, - ["MaximumLifeBodyInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased maximum Life", statOrder = { 1576 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["PhysTakenAsChaosInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "+1% to maximum Chaos Resistance", "(16-18)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1645, 2456 }, level = 93, group = "PhysicalDamageTakenAsChaosUberMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos", "resistance" }, }, - ["AdditionalCurseOnEnemiesInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2173, 5999 }, level = 92, group = "OLDAdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, }, - ["AdditionalCurseOnEnemiesInfluenceMavenV2___"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2173, 6000 }, level = 92, group = "AdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, }, - ["RegenerateLifeOverMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Every 4 seconds, Regenerate 25% of Life over one second", statOrder = { 3791 }, level = 90, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["OfferingEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(26-35)% increased effect of Offerings", statOrder = { 4068 }, level = 90, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["AdditionalCritWithAttacksInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4797 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, }, - ["AdditionalCritWithSpellsInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10124 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "critical" }, }, - ["LifeRegenerationPercentBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Regenerate (2.1-3)% of Life per second", statOrder = { 1949 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["AreaDamageSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 458, 2040 }, level = 92, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["AreaOfEffectSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 229, 1885 }, level = 93, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["MaximumManaUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(12-15)% increased maximum Mana", "Transfiguration of Mind", statOrder = { 1585, 4608 }, level = 85, group = "MaximumManaIncreasePercentMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "damage" }, }, - ["MinionDamageSupportedUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 511, 1978 }, level = 93, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, - ["MinionLifeSupportedUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 509, 1771 }, level = 90, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, - ["AdditionalMinesPlacedSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "Throw an additional Mine", statOrder = { 502, 3554 }, level = 95, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["MineDamageUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 502, 1201 }, level = 90, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["MineDamageTrapUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 462, 1201 }, level = 90, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["IncreasedChillEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 516, 5803 }, level = 90, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, - ["IncreasedShockEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 526, 7438 }, level = 90, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, - ["IgniteDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 314, 1864 }, level = 90, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, - ["IncreasedBurningDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 317, 1882 }, level = 92, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, - ["ChanceToGainPowerChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2147, 2638 }, level = 94, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["SupportedByLessDurationUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Less Duration", statOrder = { 370 }, level = 78, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SpellAddedFireDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1409 }, level = 92, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1410 }, level = 93, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1411 }, level = 94, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedPhysicalDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1408 }, level = 95, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1412 }, level = 95, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, - ["ManaRegenerationUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1589, 4321 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["AddedManaRegenerationUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1587, 8180 }, level = 90, group = "AddedManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, - ["AdditionalSpellBlockChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1165, 1994 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["SocketedSpellCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +4% to Critical Strike Chance", statOrder = { 571 }, level = 94, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, - ["SocketedAttackCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +4% to Critical Strike Chance", statOrder = { 552 }, level = 93, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, - ["EnemyPhysicalDamageTakenAuraUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Nearby Enemies take 12% increased Physical Damage", statOrder = { 7923 }, level = 95, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["EnemyElementalDamageTakenAuraUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Nearby Enemies take 9% increased Elemental Damage", statOrder = { 7918 }, level = 95, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["LifeRegenerationPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Regenerate (1.6-2)% of Life per second", statOrder = { 1949 }, level = 83, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumLightningResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["PhysTakenAsLightningHelmInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(11-13)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 93, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, - ["EnemyLightningResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Nearby Enemies have -12% to Lightning Resistance", statOrder = { 7921 }, level = 95, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, }, - ["SpellBlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1165, 1994 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["FortifyEffectInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "+500 to Armour while Fortified", "+(4.2-5) to maximum Fortification", statOrder = { 4772, 9121 }, level = 90, group = "FortifyEffectMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, - ["EnergyShieldRegenInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(15-25)% increased Energy Shield Recharge Rate", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 1570, 2651 }, level = 85, group = "EnergyShieldRegenerationPerMinuteMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["ReducedIgniteDurationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Ignite Duration on you", "(36-50)% increased Damage if you've been Ignited Recently", statOrder = { 1880, 6050 }, level = 85, group = "ReducedBurnDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["ReducedFreezeDurationInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Freeze Duration on you", "(4-7)% reduced Damage taken if you've been Frozen Recently", statOrder = { 1879, 6122 }, level = 85, group = "ReducedFreezeDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ReducedShockEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(45-75)% increased Critical Strike Chance if you've been Shocked Recently", "(51-60)% reduced Effect of Shock on you", statOrder = { 5931, 10018 }, level = 85, group = "ReducedShockEffectOnSelfMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "critical", "ailment" }, }, - ["MaximumPowerChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Power Charges", "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 1819, 6780, 6780.1 }, level = 85, group = "IncreasedMaximumPowerChargesMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PhysTakenAsFireHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(11-13)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 93, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, - ["ElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(19-22)% increased Elemental Damage", "Damage Penetrates (2-3)% of Enemy Elemental Resistances", statOrder = { 1985, 3564 }, level = 85, group = "ElementalDamagePercentMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, - ["WarcryAreaOfEffectInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "15% increased Warcry Buff Effect", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10565, 10573 }, level = 85, group = "WarcryAreaOfEffectMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["EnemyFireResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Nearby Enemies have -12% to Fire Resistance", statOrder = { 7919 }, level = 95, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, }, - ["CriticalStrikeMultiplierInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(21-24)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 85, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, - ["ManaRegenerationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1589, 4321 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["GainAccuracyEqualToStrengthInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "1% increased Critical Strike Chance per 10 Strength", "Gain Accuracy Rating equal to your Strength", statOrder = { 5935, 6717 }, level = 85, group = "GainAccuracyEqualToStrengthMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, - ["MinionLifeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Minions have (36-40)% increased maximum Life", "Minions Regenerate (1-1.5)% of Life per second", statOrder = { 1771, 2916 }, level = 85, group = "MinionLifeMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, - ["PowerChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2147, 2638 }, level = 90, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, - ["PhysTakenAsColdHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-13)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 93, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, - ["SpellsAdditionalUnleashSealInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Redeemer's", "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10136, 10719 }, level = 90, group = "SpellsAdditionalUnleashSealMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, - ["EnemyColdResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Nearby Enemies have -12% to Cold Resistance", statOrder = { 7917 }, level = 95, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, }, - ["ReducedManaReservationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 85, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["ManaReservationEfficiencyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 85, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, - ["IgniteChanceAndDamageInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Ignite", "Ignites you inflict deal Damage (10-15)% faster", statOrder = { 2031, 2569 }, level = 85, group = "IgniteChanceAndDamageMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, - ["FreezeChanceAndDurationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Freeze", "Freeze Enemies as though dealing (30-50)% more Damage", statOrder = { 2034, 7107 }, level = 85, group = "FreezeChanceAndDurationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ShockChanceAndEffectInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Shock", "Shock Enemies as though dealing (30-50)% more Damage", statOrder = { 2038, 7108 }, level = 85, group = "ShockChanceAndEffectMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AddedManaRegenerationInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1587, 8180 }, level = 85, group = "AddedManaRegenerationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, - ["SpellAddedFireDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1409 }, level = 85, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1410 }, level = 85, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1411 }, level = 85, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1408 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1412 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["EnemyChaosResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Nearby Enemies have -12% to Chaos Resistance", statOrder = { 7916 }, level = 95, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["PercentageIntelligenceInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Intelligence", statOrder = { 1191 }, level = 85, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, - ["IgnitingConfluxInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Ignite Duration on Enemies", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 1864, 6826 }, level = 90, group = "IgnitingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChillingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Chill Duration on Enemies", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 1861, 6826 }, level = 90, group = "ChillingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ShockingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Shock Duration on Enemies", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 1862, 6826 }, level = 90, group = "ShockingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IncreasedAttackSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 474, 1415 }, level = 92, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, - ["IncreasedCastSpeedUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 505, 1451 }, level = 94, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, - ["IncreasedAttackAndCastSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-14)% increased Attack and Cast Speed", "(5-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2051, 2998 }, level = 95, group = "IncreasedAttackAndCastSpeedSupportedMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, - ["SupportedByManaLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 20 Mana Leech", "(20-30)% increased Maximum total Mana Recovery per second from Leech", statOrder = { 519, 1738 }, level = 78, group = "DisplaySupportedByManaLeechMaven", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "mana", "gem" }, }, - ["ProjectileSpeedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are supported by Level 25 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 487, 1801 }, level = 92, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["ProjectileDamageUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 382, 2001 }, level = 93, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["ChanceToAvoidInterruptionWhileCastingUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 90, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["IncreasedMeleeWeaponRangeUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2539 }, level = 95, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["IncreasedMeleeWeaponRangeAndMeleeDamageUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-16)% increased Melee Damage", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 1239, 2539 }, level = 95, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["AdditionalTrapsThrownSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 459, 9527 }, level = 94, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapDamageUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "(31-35)% increased Trap Damage", statOrder = { 459, 1199 }, level = 90, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapDamageCooldownUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 395, 1199 }, level = 90, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TrapSpeedCooldownUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 395, 1932 }, level = 90, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["TrapDamageMineUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 462, 1199 }, level = 90, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["PoisonDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 528, 3186 }, level = 90, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, - ["PoisonDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 528, 3175 }, level = 90, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, - ["BleedingDamageUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 249, 3174 }, level = 90, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, - ["ChanceToGainFrenzyChargeOnKillUberElderMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2132, 2636 }, level = 94, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["IncreasedAccuracySupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are supported by Level 25 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 485, 1439 }, level = 93, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, - ["AdditionalBlockChanceUberMaven___"] = { type = "Suffix", affix = "of the Elevated Elder", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1143, 1993 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["BlindOnHitSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are supported by Level 25 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 475, 2963 }, level = 90, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["SocketedSpellCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +90% to Critical Strike Multiplier", statOrder = { 572 }, level = 93, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, - ["SocketedAttackCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +90% to Critical Strike Multiplier", statOrder = { 553 }, level = 94, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, - ["ChaosNonAilmentDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, - ["ColdDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["FireDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["PhysicalDamageOverTimeMultiplierUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, - ["AvoidStunInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "(36-50)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 85, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["MaximumColdResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["ConvertPhysicalToFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1937, 1960 }, level = 81, group = "ConvertPhysicalToFireMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1938, 1962 }, level = 81, group = "ConvertPhysicalToColdMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1939, 1964 }, level = 81, group = "ConvertPhysicalToLightningMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["MaximumLifeLeechRateInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1736 }, level = 85, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, - ["MaximumEnergyShieldLeechRateInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "30% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1739 }, level = 85, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, - ["AvoidInterruptionWhileCastingInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 85, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["GlobalCriticalStrikeChanceInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 85, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, }, - ["MaximumFrenzyChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Frenzy Charges", "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 1814, 6778 }, level = 85, group = "MaximumFrenzyChargesMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["MeleeDamageInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Melee Damage", statOrder = { 1239 }, level = 83, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["ProjectileAttackDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Projectile Attack Damage", statOrder = { 2002 }, level = 83, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, - ["SpellDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Spell Damage", statOrder = { 1228 }, level = 83, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, - ["DamageOverTimeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Damage over Time", statOrder = { 1215 }, level = 83, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, }, - ["MeleeWeaponRangeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2539 }, level = 92, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["BlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1143, 1993 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, - ["CullingStrikeInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "Culling Strike", "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently", statOrder = { 2044, 4730 }, level = 83, group = "CullingStrikeMaven", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["FrenzyChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2132, 2636 }, level = 90, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, - ["AddedPhysicalDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9251 }, level = 83, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, - ["AddedFireDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9239 }, level = 83, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, - ["AddedColdDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9234 }, level = 83, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, - ["AddedLightningDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9245 }, level = 83, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, - ["MinionDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Minions deal (31-45)% increased Damage", statOrder = { 1978 }, level = 83, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, - ["IncreasedAccuracyPercentInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(21-30)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 90, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod", "attack" }, }, - ["GlobalChanceToBlindOnHitInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2816, 2963 }, level = 90, group = "GlobalChanceToBlindOnHitMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "damage" }, }, - ["AdditionalChanceToEvadeInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently", "+(2-4)% chance to Evade Attack Hits", statOrder = { 4821, 5678 }, level = 85, group = "AdditionalChanceToEvadeMaven", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion", "attack", "caster", "speed" }, }, - ["ChanceToIntimidateOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 95, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 95, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["StrikeSkillsAdditionalTargetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 90, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, - ["ChanceToImpaleInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "(21-25)% chance to Impale Enemies on Hit with Attacks", "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy", statOrder = { 4923, 9253 }, level = 90, group = "AttackImpaleChanceMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "attack" }, }, - ["AilmentDurationInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased Duration of Ailments on Enemies", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 1865, 9498 }, level = 90, group = "IncreasedAilmentDurationMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "ailment" }, }, - ["PercentageDexterityInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Dexterity", statOrder = { 1190 }, level = 85, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, - ["FireDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamageOverTimeMultiplierInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ChaosDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["PhysicalDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["ManaGainPerTargetInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", "(10-20)% increased Attack Speed while not on Low Mana", statOrder = { 1749, 4911 }, level = 78, group = "ManaGainPerTargetMaven", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack", "speed" }, }, - ["IncreasedDurationBootsUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 20 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 319, 1900 }, level = 78, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["IncreasedCooldownRecoveryBootsUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["SupportedByFortifyUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Fortify", statOrder = { 501 }, level = 78, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["ImmuneToChilledGroundUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Chill", statOrder = { 10457 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["ImmuneToBurningGroundUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Ignite", statOrder = { 10472 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["ImmuneToShockedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Shock", statOrder = { 10476 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["ImmuneToDesecratedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Poison", statOrder = { 5060 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "influence_mod", "chaos", "ailment" }, }, - ["ChanceToDodgeUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 94, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 93, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidStunUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(36-50)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 92, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToAvoidElementalAilmentsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(36-45)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 91, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["ChanceToAvoidProjectilesUberMaven___"] = { type = "Suffix", affix = "of Elevated Shaping", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4955, 4998 }, level = 94, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToGainEnduranceChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2130, 2634 }, level = 93, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["TotemDamageSpellUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 469, 1198 }, level = 90, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemSpeedSpellUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 469, 2583 }, level = 90, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["TotemDamageAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 367, 1198 }, level = 90, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, - ["TotemSpeedAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 367, 2583 }, level = 90, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, - ["SupportedByLifeLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 488 }, level = 78, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, - ["GrantsDecoyTotemSkillUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Grants Level 25 Decoy Totem Skill", statOrder = { 705 }, level = 78, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod" }, }, - ["GlobalRaiseSpectreGemLevelUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+2 to Level of all Raise Spectre Gems", statOrder = { 1621 }, level = 85, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, }, - ["UnaffectedByShockedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Unaffected by Shock", statOrder = { 10476 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["SocketedLightningGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+2 to Level of Socketed Lightning Gems", "+(3-7)% to Quality of Socketed Lightning Gems", statOrder = { 174, 221 }, level = 78, group = "LocalIncreaseSocketedLightningGemLevelMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, - ["MaximumFireResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["PhysicalAddedAsExtraLightningBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (9-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 85, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, - ["CooldownRecoveryInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["AvoidIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 85, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["AvoidFreezeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 85, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["AvoidShockInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 85, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, - ["AvoidProjectilesInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4955, 4998 }, level = 83, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["UnaffectedByBurningGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "Unaffected by Ignite", statOrder = { 10472 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, - ["SocketedFireGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+2 to Level of Socketed Fire Gems", "+(3-7)% to Quality of Socketed Fire Gems", statOrder = { 172, 219 }, level = 78, group = "LocalIncreaseSocketedFireGemLevelMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, - ["MaximumEnduranceChargeInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Endurance Charges", "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 1809, 4244 }, level = 85, group = "MaximumEnduranceChargesMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["PhysicalAddedAsExtraFireBootsInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Warlord's", "Gain (9-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 85, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, - ["AvoidFireDamageInfluenceMaven_____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Fire Resistance", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 1630, 3378 }, level = 90, group = "FireDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, - ["AvoidColdDamageInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Cold Resistance", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 1636, 3379 }, level = 90, group = "ColdDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, - ["AvoidLightningDamageInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Lightning Resistance", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 1641, 3380 }, level = 90, group = "LightningDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, - ["AdditionalPhysicalDamageReductionInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(15-20)% increased Armour", "(2-4)% additional Physical Damage Reduction", statOrder = { 1546, 2278 }, level = 85, group = "ReducedPhysicalDamageTakenMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour", "physical" }, }, - ["UnaffectedByChilledGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Unaffected by Chill", statOrder = { 10457 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, - ["SocketedColdGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+2 to Level of Socketed Cold Gems", "+(3-7)% to Quality of Socketed Cold Gems", statOrder = { 173, 216 }, level = 78, group = "LocalIncreaseSocketedColdGemLevelMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, - ["EnduranceChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2130, 2634 }, level = 90, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, - ["PhysicalAddedAsExtraColdBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Gain (9-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 85, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, - ["ElusiveOnCriticalStrikeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-20)% chance to gain Elusive on Critical Strike", "(5-10)% increased Elusive Effect", statOrder = { 4286, 6354 }, level = 85, group = "ElusiveOnCriticalStrikeMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, }, - ["ChanceToDodgeAttacksInfluenceMaven__"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["ChanceToDodgeSpellsInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, - ["IncreasedAilmentEffectOnEnemiesInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(41-60)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 83, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "ailment" }, }, - ["OnslaughtOnKillInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught", statOrder = { 2998, 4844 }, level = 90, group = "ChanceToGainOnslaughtOnKillMaven", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, - ["UnaffectedByDesecratedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unaffected by Poison", statOrder = { 5060 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["SocketedChaosGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "+2 to Level of Socketed Chaos Gems", "+(3-7)% to Quality of Socketed Chaos Gems", statOrder = { 175, 215 }, level = 78, group = "LocalIncreaseSocketedChaosGemLevelMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, }, - ["AdditionalPierceInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "Projectiles Pierce (3-5) additional Targets", statOrder = { 1795 }, level = 90, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["PercentageStrengthInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Strength", statOrder = { 1189 }, level = 85, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, - ["AvoidBleedAndPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(61-70)% chance to Avoid being Poisoned", "(61-70)% chance to Avoid Bleeding", statOrder = { 1854, 4221 }, level = 85, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, - ["TailwindOnCriticalStrikeInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-25)% increased Effect of Tailwind on you", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10345, 10347 }, level = 85, group = "TailwindOnCriticalStrikeMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["FasterIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Ignite Duration on Enemies", "Ignites you inflict deal Damage (11-15)% faster", statOrder = { 1864, 2569 }, level = 83, group = "FasterIgniteDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterBleedInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Bleeding Duration", "Bleeding you inflict deals Damage (11-15)% faster", statOrder = { 4999, 6549 }, level = 83, group = "FasterBleedDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Poison Duration", "Poisons you inflict deal Damage (11-15)% faster", statOrder = { 3175, 6550 }, level = 83, group = "FasterPoisonDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["LocalIncreasedWard1"] = { type = "Prefix", affix = "Farrier's", "+(5-9) to Ward", statOrder = { 1533 }, level = 3, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard2"] = { type = "Prefix", affix = "Brownsmith's", "+(10-15) to Ward", statOrder = { 1533 }, level = 11, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard3_"] = { type = "Prefix", affix = "Coppersmith's", "+(16-23) to Ward", statOrder = { 1533 }, level = 17, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard4"] = { type = "Prefix", affix = "Blacksmith's", "+(24-35) to Ward", statOrder = { 1533 }, level = 23, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard5___"] = { type = "Prefix", affix = "Silversmith's", "+(36-52) to Ward", statOrder = { 1533 }, level = 29, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard6_"] = { type = "Prefix", affix = "Goldsmith's", "+(52-69) to Ward", statOrder = { 1533 }, level = 35, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard7"] = { type = "Prefix", affix = "Whitesmith's", "+(70-84) to Ward", statOrder = { 1533 }, level = 43, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard8__"] = { type = "Prefix", affix = "Engraver's", "+(85-99) to Ward", statOrder = { 1533 }, level = 51, group = "LocalWard", weightKey = { "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard9"] = { type = "Prefix", affix = "Runesmith's", "+(100-119) to Ward", statOrder = { 1533 }, level = 60, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard10____"] = { type = "Prefix", affix = "Runemaster's", "+(120-139) to Ward", statOrder = { 1533 }, level = 69, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWard11"] = { type = "Prefix", affix = "Artificer's", "+(140-159) to Ward", statOrder = { 1533 }, level = 75, group = "LocalWard", weightKey = { "shield", "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent1"] = { type = "Prefix", affix = "Chiseled", "(11-28)% increased Ward", statOrder = { 1535 }, level = 3, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent2"] = { type = "Prefix", affix = "Etched", "(27-42)% increased Ward", statOrder = { 1535 }, level = 18, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent3"] = { type = "Prefix", affix = "Engraved", "(43-55)% increased Ward", statOrder = { 1535 }, level = 30, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent4"] = { type = "Prefix", affix = "Embedded", "(56-67)% increased Ward", statOrder = { 1535 }, level = 44, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent5"] = { type = "Prefix", affix = "Inscribed", "(68-79)% increased Ward", statOrder = { 1535 }, level = 60, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent6"] = { type = "Prefix", affix = "Lettered", "(80-91)% increased Ward", statOrder = { 1535 }, level = 72, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent7"] = { type = "Prefix", affix = "Runed", "(92-100)% increased Ward", statOrder = { 1535 }, level = 84, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercent8"] = { type = "Prefix", affix = "Calligraphic", "(101-110)% increased Ward", statOrder = { 1535 }, level = 86, group = "LocalWardPercent", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery1______"] = { type = "Prefix", affix = "Improved", "(6-13)% increased Ward", "(6-7)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 3, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery2_"] = { type = "Prefix", affix = "Enhanced", "(14-20)% increased Ward", "(8-9)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 18, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery3"] = { type = "Prefix", affix = "Bolstered", "(21-26)% increased Ward", "(10-11)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 30, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery4"] = { type = "Prefix", affix = "Elegant", "(27-32)% increased Ward", "(12-13)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 44, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery5"] = { type = "Prefix", affix = "Exquisite", "(33-38)% increased Ward", "(14-15)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 60, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalIncreasedWardPercentAndStunRecovery6_"] = { type = "Prefix", affix = "Masterwork", "(39-42)% increased Ward", "(16-17)% increased Stun and Block Recovery", statOrder = { 1535, 1907 }, level = 78, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["LocalBaseWardAndLife1__"] = { type = "Prefix", affix = "Annest's", "+(15-20) to Ward", "+(18-23) to maximum Life", statOrder = { 1533, 1574 }, level = 30, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, }, - ["LocalBaseWardAndLife2"] = { type = "Prefix", affix = "Owen's", "+(21-30) to Ward", "+(24-28) to maximum Life", statOrder = { 1533, 1574 }, level = 46, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, }, - ["LocalBaseWardAndLife3_"] = { type = "Prefix", affix = "Gwayne's", "+(31-40) to Ward", "+(29-33) to maximum Life", statOrder = { 1533, 1574 }, level = 62, group = "LocalBaseWardAndLife", weightKey = { "boots", "gloves", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "resource", "life", "defences" }, }, - ["LocalBaseWardAndLife4_"] = { type = "Prefix", affix = "Cadigan's", "+(41-50) to Ward", "+(34-38) to maximum Life", statOrder = { 1533, 1574 }, level = 78, group = "LocalBaseWardAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "resource", "life", "defences" }, }, - ["FasterStartOfWardRecharge1"] = { type = "Suffix", affix = "of Artifice", "(33-37)% faster Restoration of Ward", statOrder = { 1536 }, level = 46, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["FasterStartOfWardRecharge2"] = { type = "Suffix", affix = "of Etching", "(38-42)% faster Restoration of Ward", statOrder = { 1536 }, level = 57, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["FasterStartOfWardRecharge3"] = { type = "Suffix", affix = "of Engraving", "(43-47)% faster Restoration of Ward", statOrder = { 1536 }, level = 68, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["FasterStartOfWardRecharge4"] = { type = "Suffix", affix = "of Inscription", "(48-52)% faster Restoration of Ward", statOrder = { 1536 }, level = 76, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["FasterStartOfWardRecharge5"] = { type = "Suffix", affix = "of Runes", "(53-58)% faster Restoration of Ward", statOrder = { 1536 }, level = 85, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, - ["HellscapeUpsideIncreasedLife1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideIncreasedLife2_"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Life", statOrder = { 1574 }, level = 45, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideIncreasedLife3_"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Life", statOrder = { 1574 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideIncreasedLife4"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Life", statOrder = { 1574 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots1__"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots2"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Armour", statOrder = { 1545 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Armour", statOrder = { 1545 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Armour", statOrder = { 1545 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield2__"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Armour", statOrder = { 1545 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Armour", statOrder = { 1545 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield4_"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Armour", statOrder = { 1545 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Armour", statOrder = { 1545 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Armour", statOrder = { 1545 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Armour", statOrder = { 1545 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Armour", statOrder = { 1545 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots1"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots2___"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Evasion Rating", statOrder = { 1553 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots3_"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Evasion Rating", statOrder = { 1553 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Evasion Rating", statOrder = { 1553 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Evasion Rating", statOrder = { 1553 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Evasion Rating", statOrder = { 1553 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Evasion Rating", statOrder = { 1553 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Evasion Rating", statOrder = { 1553 }, level = 1, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Evasion Rating", statOrder = { 1553 }, level = 45, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Evasion Rating", statOrder = { 1553 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideLocalEvasionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Evasion Rating", statOrder = { 1553 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideEnergyShieldGlovesBoots1_"] = { type = "ScourgeUpside", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldGlovesBoots2__"] = { type = "ScourgeUpside", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1564 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1564 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldGlovesBoots4"] = { type = "ScourgeUpside", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1564 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldHelmetShield1_"] = { type = "ScourgeUpside", affix = "", "+(11-12) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(13-14) to maximum Energy Shield", statOrder = { 1564 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(15-16) to maximum Energy Shield", statOrder = { 1564 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(17-18) to maximum Energy Shield", statOrder = { 1564 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(15-18) to maximum Energy Shield", statOrder = { 1564 }, level = 1, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldBodyArmour2_"] = { type = "ScourgeUpside", affix = "", "+(19-22) to maximum Energy Shield", statOrder = { 1564 }, level = 45, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldBodyArmour3_"] = { type = "ScourgeUpside", affix = "", "+(23-26) to maximum Energy Shield", statOrder = { 1564 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldBodyArmour4"] = { type = "ScourgeUpside", affix = "", "+(27-30) to maximum Energy Shield", statOrder = { 1564 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsFirePercent3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsFirePercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsCold3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsCold4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent3_"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsChaos3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, }, - ["HellscapeUpsidePhysicalDamageTakenAsChaos4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, }, - ["HellscapeUpsideBaseFreezeDurationOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideBaseFreezeDurationOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillEffectivenessOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Chill on you", statOrder = { 1650 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillEffectivenessOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Chill on you", statOrder = { 1650 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideReducedShockEffectOnSelf3"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideReducedShockEffectOnSelf4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideReducedCurseEffect3"] = { type = "ScourgeUpside", affix = "", "(16-20)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideReducedCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(21-25)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks1"] = { type = "ScourgeUpside", affix = "", "Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you", statOrder = { 5438 }, level = 45, group = "CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideReducedBurnDuration3__"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideReducedBurnDuration4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidBleeding2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 45, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidBleeding3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidBleeding4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChillEnemiesWhenHit3"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 4 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3145 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 5 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3145 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideDamageTakenGainedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideDamageTakenGainedAsLife3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideDamageTakenGainedAsLife4"] = { type = "ScourgeUpside", affix = "", "(11-12)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage1h2__"] = { type = "ScourgeUpside", affix = "", "3% chance to deal Triple Damage", statOrder = { 5005 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage1h3__"] = { type = "ScourgeUpside", affix = "", "4% chance to deal Triple Damage", statOrder = { 5005 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage1h4__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 5005 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage2h2__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 5005 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage2h3_"] = { type = "ScourgeUpside", affix = "", "6% chance to deal Triple Damage", statOrder = { 5005 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideBaseChanceToDealTripleDamage2h4"] = { type = "ScourgeUpside", affix = "", "7% chance to deal Triple Damage", statOrder = { 5005 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideOnslaughtWhenHitForDuration2"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 2 seconds when Hit", statOrder = { 2832 }, level = 45, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideOnslaughtWhenHitForDuration3"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 3 seconds when Hit", statOrder = { 2832 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideOnslaughtWhenHitForDuration4"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 4 seconds when Hit", statOrder = { 2832 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit2"] = { type = "ScourgeUpside", affix = "", "Deal (8-11)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3792 }, level = 45, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit3"] = { type = "ScourgeUpside", affix = "", "Deal (12-15)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3792 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit4"] = { type = "ScourgeUpside", affix = "", "Deal (16-19)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3792 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideConsecrateGroundFor3SecondsWhenHit1"] = { type = "ScourgeUpside", affix = "", "Create Consecrated Ground when Hit, lasting 8 seconds", statOrder = { 3558 }, level = 45, group = "ConsecrateGroundFor3SecondsWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance1h2"] = { type = "ScourgeUpside", affix = "", "5% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance1h3"] = { type = "ScourgeUpside", affix = "", "6% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance1h4___"] = { type = "ScourgeUpside", affix = "", "7% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance2h2_"] = { type = "ScourgeUpside", affix = "", "8% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance2h3_"] = { type = "ScourgeUpside", affix = "", "9% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideUnholyMightOnKillPercentChance2h4"] = { type = "ScourgeUpside", affix = "", "10% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3382 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideElusiveEffect2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Elusive Effect", statOrder = { 6354 }, level = 45, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideElusiveEffect3___"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Elusive Effect", statOrder = { 6354 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideElusiveEffect4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Elusive Effect", statOrder = { 6354 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideBasePenetrateElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% of Enemy Elemental Resistances", statOrder = { 3564 }, level = 45, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, - ["HellscapeUpsideBasePenetrateElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% of Enemy Elemental Resistances", statOrder = { 3564 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, - ["HellscapeUpsideBasePenetrateElementalResistances4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% of Enemy Elemental Resistances", statOrder = { 3564 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, - ["HellscapeUpsideMinimumEnduranceCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Endurance Charges", statOrder = { 1808 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeUpsideMinimumPowerCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Power Charges", statOrder = { 1818 }, level = 68, group = "MinimumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "power_charge" }, }, - ["HellscapeUpsideMinimumFrenzyCharges1___"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Frenzy Charges", statOrder = { 1813 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeUpsideCannotBeSlowedBelowValue3"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (75-79)% of base value", statOrder = { 3200 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideCannotBeSlowedBelowValue4_"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (70-74)% of base value", statOrder = { 3200 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMonsterNemesisOndarsGuile1__"] = { type = "ScourgeUpside", affix = "", "Arrow Dancing", statOrder = { 10803 }, level = 68, group = "MonsterNemesisOndarsGuile", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideConduit1"] = { type = "ScourgeUpside", affix = "", "Conduit", statOrder = { 10774 }, level = 68, group = "Conduit", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["HellscapeUpsideIronReflexes1__"] = { type = "ScourgeUpside", affix = "", "Iron Reflexes", statOrder = { 10792 }, level = 68, group = "IronReflexes", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["HellscapeUpsideUnwaveringStance1"] = { type = "ScourgeUpside", affix = "", "Unwavering Stance", statOrder = { 10819 }, level = 68, group = "UnwaveringStance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideEternalYouth1_"] = { type = "ScourgeUpside", affix = "", "Eternal Youth", statOrder = { 10783 }, level = 68, group = "EternalYouth", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["HellscapeUpsideWindDancer1"] = { type = "ScourgeUpside", affix = "", "Wind Dancer", statOrder = { 10824 }, level = 68, group = "WindDancer", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, - ["HellscapeUpsideGlancingBlows1"] = { type = "ScourgeUpside", affix = "", "Glancing Blows", statOrder = { 10787 }, level = 68, group = "GlancingBlows", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideSacredBastion1_"] = { type = "ScourgeUpside", affix = "", "Imbalanced Guard", statOrder = { 10808 }, level = 68, group = "SacredBastion", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour" }, }, - ["HellscapeUpsideManaShield1_"] = { type = "ScourgeUpside", affix = "", "Mind Over Matter", statOrder = { 10795 }, level = 68, group = "ManaShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, }, - ["HellscapeUpsideWickedWard1"] = { type = "ScourgeUpside", affix = "", "Wicked Ward", statOrder = { 10823 }, level = 68, group = "WickedWard", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideZealotsOath1"] = { type = "ScourgeUpside", affix = "", "Zealot's Oath", statOrder = { 10805 }, level = 68, group = "ZealotsOath", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["HellscapeUpsideBlindEnemiesWhenHit2"] = { type = "ScourgeUpside", affix = "", "(11-20)% chance to Blind Enemies when they Hit you", statOrder = { 5225 }, level = 45, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideBlindEnemiesWhenHit3_"] = { type = "ScourgeUpside", affix = "", "(21-30)% chance to Blind Enemies when they Hit you", statOrder = { 5225 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideBlindEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "(31-40)% chance to Blind Enemies when they Hit you", statOrder = { 5225 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideGuardSkillCooldownRecovery3"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (14-16)% increased Cooldown Recovery Rate", statOrder = { 6924 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideGuardSkillCooldownRecovery4___"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (17-19)% increased Cooldown Recovery Rate", statOrder = { 6924 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideMinionChanceToTauntOnHit2___"] = { type = "ScourgeUpside", affix = "", "Minions have (11-13)% chance to Taunt on Hit with Attacks", statOrder = { 3436 }, level = 45, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, - ["HellscapeUpsideMinionChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "Minions have (14-16)% chance to Taunt on Hit with Attacks", statOrder = { 3436 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, - ["HellscapeUpsideMinionChanceToTauntOnHit4"] = { type = "ScourgeUpside", affix = "", "Minions have (17-19)% chance to Taunt on Hit with Attacks", statOrder = { 3436 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, - ["HellscapeUpsideIncreaseSocketedSupportGemQuality3"] = { type = "ScourgeUpside", affix = "", "+(9-10)% to Quality of Socketed Support Gems", statOrder = { 210 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideIncreaseSocketedSupportGemQuality4_"] = { type = "ScourgeUpside", affix = "", "+(11-12)% to Quality of Socketed Support Gems", statOrder = { 210 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideGainManaAsExtraEnergyShield3"] = { type = "ScourgeUpside", affix = "", "Gain 5% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2180 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideGainManaAsExtraEnergyShield4_"] = { type = "ScourgeUpside", affix = "", "Gain 6% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2180 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideAreaOfEffect1_"] = { type = "ScourgeUpside", affix = "", "10% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideAreaOfEffect2"] = { type = "ScourgeUpside", affix = "", "11% increased Area of Effect", statOrder = { 1885 }, level = 45, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideAreaOfEffect3____"] = { type = "ScourgeUpside", affix = "", "12% increased Area of Effect", statOrder = { 1885 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideAreaOfEffect4"] = { type = "ScourgeUpside", affix = "", "13% increased Area of Effect", statOrder = { 1885 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideProjectileSpeed1"] = { type = "ScourgeUpside", affix = "", "(14-16)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideProjectileSpeed2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Projectile Speed", statOrder = { 1801 }, level = 45, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideProjectileSpeed3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Projectile Speed", statOrder = { 1801 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideProjectileSpeed4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Projectile Speed", statOrder = { 1801 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMinionLife2___"] = { type = "ScourgeUpside", affix = "", "Minions have (10-11)% increased maximum Life", statOrder = { 1771 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLife3"] = { type = "ScourgeUpside", affix = "", "Minions have (12-13)% increased maximum Life", statOrder = { 1771 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLife4_"] = { type = "ScourgeUpside", affix = "", "Minions have (14-15)% increased maximum Life", statOrder = { 1771 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideFireResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideFireResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Fire Resistance", statOrder = { 1630 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideFireResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Fire Resistance", statOrder = { 1630 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideFireResistance4__"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Fire Resistance", statOrder = { 1630 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideColdResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideColdResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Cold Resistance", statOrder = { 1636 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideColdResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Cold Resistance", statOrder = { 1636 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideColdResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Cold Resistance", statOrder = { 1636 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideLightningResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideLightningResistance2__"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Lightning Resistance", statOrder = { 1641 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideLightningResistance3"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Lightning Resistance", statOrder = { 1641 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideLightningResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Lightning Resistance", statOrder = { 1641 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideElementalResistance1__"] = { type = "ScourgeUpside", affix = "", "+6% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideElementalResistance2"] = { type = "ScourgeUpside", affix = "", "+8% to all Elemental Resistances", statOrder = { 1624 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideElementalResistance3"] = { type = "ScourgeUpside", affix = "", "+10% to all Elemental Resistances", statOrder = { 1624 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideElementalResistance4_"] = { type = "ScourgeUpside", affix = "", "+12% to all Elemental Resistances", statOrder = { 1624 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideChaosResistance1_"] = { type = "ScourgeUpside", affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 1646 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeUpsideChaosResistance2_"] = { type = "ScourgeUpside", affix = "", "+(14-17)% to Chaos Resistance", statOrder = { 1646 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeUpsideChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "+(18-21)% to Chaos Resistance", statOrder = { 1646 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeUpsideChaosResistance4_"] = { type = "ScourgeUpside", affix = "", "+(22-25)% to Chaos Resistance", statOrder = { 1646 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeUpsideMinionElementalResistance2"] = { type = "ScourgeUpside", affix = "", "Minions have +(10-11)% to all Elemental Resistances", statOrder = { 2917 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["HellscapeUpsideMinionElementalResistance3"] = { type = "ScourgeUpside", affix = "", "Minions have +(12-13)% to all Elemental Resistances", statOrder = { 2917 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["HellscapeUpsideMinionElementalResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-15)% to all Elemental Resistances", statOrder = { 2917 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["HellscapeUpsideMinionChaosResistance2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-17)% to Chaos Resistance", statOrder = { 2918 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["HellscapeUpsideMinionChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "Minions have +(18-21)% to Chaos Resistance", statOrder = { 2918 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["HellscapeUpsideMinionChaosResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(22-25)% to Chaos Resistance", statOrder = { 2918 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["HellscapeUpsideStunAndBlockRecovery2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 45, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideStunAndBlockRecovery3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideStunAndBlockRecovery4__"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToAvoidFreezeAndChill2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Chilled", "(26-30)% chance to Avoid being Frozen", statOrder = { 1849, 1850 }, level = 45, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidFreezeAndChill3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Chilled", "(31-35)% chance to Avoid being Frozen", statOrder = { 1849, 1850 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidFreezeAndChill4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Chilled", "(36-40)% chance to Avoid being Frozen", statOrder = { 1849, 1850 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidShock2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 45, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidShock3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidShock4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidIgniteAndBurning2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 45, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidIgniteAndBurning3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidIgniteAndBurning4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidPoison2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 45, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidPoison3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidPoison4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideChanceToAvoidStun2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 45, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToAvoidStun3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToAvoidStun4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideAvoidElementalStatusAilments2__"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["HellscapeUpsideAvoidElementalStatusAilments3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["HellscapeUpsideAvoidElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["HellscapeUpsideReducedDurationOfElementalStatusAilments2"] = { type = "ScourgeUpside", affix = "", "(17-19)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, - ["HellscapeUpsideReducedDurationOfElementalStatusAilments3"] = { type = "ScourgeUpside", affix = "", "(20-22)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, - ["HellscapeUpsideReducedDurationOfElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, - ["HellscapeUpsideGainLifeOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Life gained when you Block", statOrder = { 1762 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, - ["HellscapeUpsideGainLifeOnBlock3_"] = { type = "ScourgeUpside", affix = "", "(41-50) Life gained when you Block", statOrder = { 1762 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, - ["HellscapeUpsideGainLifeOnBlock4___"] = { type = "ScourgeUpside", affix = "", "(51-60) Life gained when you Block", statOrder = { 1762 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, - ["HellscapeUpsideGainManaOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Mana gained when you Block", statOrder = { 1763 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, - ["HellscapeUpsideGainManaOnBlock3"] = { type = "ScourgeUpside", affix = "", "(41-50) Mana gained when you Block", statOrder = { 1763 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, - ["HellscapeUpsideGainManaOnBlock4"] = { type = "ScourgeUpside", affix = "", "(51-60) Mana gained when you Block", statOrder = { 1763 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, - ["HellscapeUpsideGainEnergyShieldOnBlock2"] = { type = "ScourgeUpside", affix = "", "Gain (31-40) Energy Shield when you Block", statOrder = { 1764 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, - ["HellscapeUpsideGainEnergyShieldOnBlock3___"] = { type = "ScourgeUpside", affix = "", "Gain (41-50) Energy Shield when you Block", statOrder = { 1764 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, - ["HellscapeUpsideGainEnergyShieldOnBlock4_"] = { type = "ScourgeUpside", affix = "", "Gain (51-60) Energy Shield when you Block", statOrder = { 1764 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, - ["HellscapeUpsideBlockAttacks1"] = { type = "ScourgeUpside", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2463 }, level = 1, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockAttacks2_"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2463 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Attack Damage", statOrder = { 2463 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockAttacks4__"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Attack Damage", statOrder = { 2463 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockSpells2"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Spell Damage", statOrder = { 1163 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockSpells3_"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Spell Damage", statOrder = { 1163 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideBlockSpells4"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Spell Damage", statOrder = { 1163 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideMinionBlockAttacks2"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Attack Damage", statOrder = { 2908 }, level = 45, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideMinionBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Attack Damage", statOrder = { 2908 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideMinionBlockAttacks4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Attack Damage", statOrder = { 2908 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideMinionBlockSpells2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Spell Damage", statOrder = { 2909 }, level = 45, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideMinionBlockSpells3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Spell Damage", statOrder = { 2909 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideMinionBlockSpells4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Spell Damage", statOrder = { 2909 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, - ["HellscapeUpsideChanceToSuppressSpells2"] = { type = "ScourgeUpside", affix = "", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToSuppressSpells3_"] = { type = "ScourgeUpside", affix = "", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToSuppressSpells4_"] = { type = "ScourgeUpside", affix = "", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, - ["HellscapeUpsideAttackerTakesDamageNoRange1_"] = { type = "ScourgeUpside", affix = "", "Reflects (20-40) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideAttackerTakesDamageNoRange2_"] = { type = "ScourgeUpside", affix = "", "Reflects (41-60) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideAttackerTakesDamageNoRange3"] = { type = "ScourgeUpside", affix = "", "Reflects (61-80) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideAttackerTakesDamageNoRange4"] = { type = "ScourgeUpside", affix = "", "Reflects (81-100) Physical Damage to Melee Attackers", statOrder = { 2207 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideLocalColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (18-23) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (28-33) Cold Damage", statOrder = { 1376 }, level = 45, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (27-33) to (38-43) Cold Damage", statOrder = { 1376 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (37-43) to (51-57) Cold Damage", statOrder = { 1376 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (16-20) to (30-35) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamageRanged2_____"] = { type = "ScourgeUpside", affix = "", "Adds (24-29) to (41-46) Cold Damage", statOrder = { 1376 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (31-36) to (50-57) Cold Damage", statOrder = { 1376 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (37-45) to (60-67) Cold Damage", statOrder = { 1376 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (35-39) Cold Damage", statOrder = { 1376 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage2h2_____"] = { type = "ScourgeUpside", affix = "", "Adds (30-35) to (53-61) Cold Damage", statOrder = { 1376 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (41-48) to (63-72) Cold Damage", statOrder = { 1376 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalColdDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (50-61) to (75-87) Cold Damage", statOrder = { 1376 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["HellscapeUpsideLocalFireDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (11-14) to (23-27) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (21-26) to (31-38) Fire Damage", statOrder = { 1367 }, level = 45, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage1h3___"] = { type = "ScourgeUpside", affix = "", "Adds (29-35) to (43-48) Fire Damage", statOrder = { 1367 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (40-45) to (56-62) Fire Damage", statOrder = { 1367 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (18-22) to (35-39) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (27-34) to (46-53) Fire Damage", statOrder = { 1367 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (36-41) to (56-64) Fire Damage", statOrder = { 1367 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamageRanged4______"] = { type = "ScourgeUpside", affix = "", "Adds (43-57) to (66-72) Fire Damage", statOrder = { 1367 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (22-26) to (38-44) Fire Damage", statOrder = { 1367 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage2h2__"] = { type = "ScourgeUpside", affix = "", "Adds (34-43) to (59-67) Fire Damage", statOrder = { 1367 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage2h3______"] = { type = "ScourgeUpside", affix = "", "Adds (48-56) to (69-78) Fire Damage", statOrder = { 1367 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalFireDamage2h4______"] = { type = "ScourgeUpside", affix = "", "Adds (59-72) to (80-91) Fire Damage", statOrder = { 1367 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (1-3) to (40-45) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (54-68) Lightning Damage", statOrder = { 1387 }, level = 45, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (76-90) Lightning Damage", statOrder = { 1387 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (98-111) Lightning Damage", statOrder = { 1387 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (1-5) to (60-66) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamageRanged2_"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (81-102) Lightning Damage", statOrder = { 1387 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (4-9) to (114-134) Lightning Damage", statOrder = { 1387 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamageRanged4_"] = { type = "ScourgeUpside", affix = "", "Adds (5-12) to (147-166) Lightning Damage", statOrder = { 1387 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage2h1__"] = { type = "ScourgeUpside", affix = "", "Adds (2-6) to (74-86) Lightning Damage", statOrder = { 1387 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (103-129) Lightning Damage", statOrder = { 1387 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (5-10) to (145-170) Lightning Damage", statOrder = { 1387 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (6-15) to (186-211) Lightning Damage", statOrder = { 1387 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (1-2) to (6-7) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (3-4) to (8-9) Physical Damage", statOrder = { 1281 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (10-11) Physical Damage", statOrder = { 1281 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (7-8) to (12-13) Physical Damage", statOrder = { 1281 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (11-13) Physical Damage", statOrder = { 1281 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (6-8) to (15-17) Physical Damage", statOrder = { 1281 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (19-21) Physical Damage", statOrder = { 1281 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalPhysicalDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (14-16) to (23-25) Physical Damage", statOrder = { 1281 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (13-17) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-21) Chaos Damage", statOrder = { 1395 }, level = 45, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage1h3____"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (23-27) Chaos Damage", statOrder = { 1395 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (29-33) Chaos Damage", statOrder = { 1395 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-25) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (10-14) to (28-31) Chaos Damage", statOrder = { 1395 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (15-19) to (34-40) Chaos Damage", statOrder = { 1395 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (20-22) to (43-49) Chaos Damage", statOrder = { 1395 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (10-11) to (25-32) Chaos Damage", statOrder = { 1395 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-17) to (36-40) Chaos Damage", statOrder = { 1395 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage2h3_____"] = { type = "ScourgeUpside", affix = "", "Adds (19-23) to (44-51) Chaos Damage", statOrder = { 1395 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideLocalChaosDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (25-29) to (55-63) Chaos Damage", statOrder = { 1395 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent1"] = { type = "ScourgeUpside", affix = "", "(8-12)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent2_"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 45, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent3"] = { type = "ScourgeUpside", affix = "", "(17-20)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["HellscapeUpsideIncreasedWeaponElementalDamagePercent4"] = { type = "ScourgeUpside", affix = "", "(21-24)% increased Elemental Damage with Attack Skills", statOrder = { 6326 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["HellscapeUpsideSpellAddedColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Cold Damage to Spells", statOrder = { 1410 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Cold Damage to Spells", statOrder = { 1410 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Cold Damage to Spells", statOrder = { 1410 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Cold Damage to Spells", statOrder = { 1410 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Cold Damage to Spells", statOrder = { 1410 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Cold Damage to Spells", statOrder = { 1410 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedColdDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Cold Damage to Spells", statOrder = { 1410 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Fire Damage to Spells", statOrder = { 1409 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Fire Damage to Spells", statOrder = { 1409 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Fire Damage to Spells", statOrder = { 1409 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Fire Damage to Spells", statOrder = { 1409 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Fire Damage to Spells", statOrder = { 1409 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Fire Damage to Spells", statOrder = { 1409 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedFireDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Fire Damage to Spells", statOrder = { 1409 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (4-6) to (31-34) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (36-39) Lightning Damage to Spells", statOrder = { 1411 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (42-45) Lightning Damage to Spells", statOrder = { 1411 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (47-50) Lightning Damage to Spells", statOrder = { 1411 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (6-9) to (46-51) Lightning Damage to Spells", statOrder = { 1411 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (54-59) Lightning Damage to Spells", statOrder = { 1411 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (15-18) to (63-67) Lightning Damage to Spells", statOrder = { 1411 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (70-75) Lightning Damage to Spells", statOrder = { 1411 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Physical Damage to Spells", statOrder = { 1408 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Physical Damage to Spells", statOrder = { 1408 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (32-36) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (36-40) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Physical Damage to Spells", statOrder = { 1408 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Physical Damage to Spells", statOrder = { 1408 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellAddedPhysicalDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Physical Damage to Spells", statOrder = { 1408 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["HellscapeUpsideSpellDamage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Spell Damage", statOrder = { 1228 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Spell Damage", statOrder = { 1228 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage1h2b___"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Spell Damage", statOrder = { 1228 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h1___"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Spell Damage", statOrder = { 1228 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h2_"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Spell Damage", statOrder = { 1228 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Spell Damage", statOrder = { 1228 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideSpellDamage2h4___"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideColdDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Cold Damage", statOrder = { 1371 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Cold Damage", statOrder = { 1371 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Cold Damage", statOrder = { 1371 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage1h3___"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Cold Damage", statOrder = { 1371 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Cold Damage", statOrder = { 1371 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Cold Damage", statOrder = { 1371 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Cold Damage", statOrder = { 1371 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Cold Damage", statOrder = { 1371 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Cold Damage", statOrder = { 1371 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Cold Damage", statOrder = { 1371 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideFireDamagePercentage1h1__"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Fire Damage", statOrder = { 1362 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage1h2___"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Fire Damage", statOrder = { 1362 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Fire Damage", statOrder = { 1362 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage1h3__"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Fire Damage", statOrder = { 1362 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Fire Damage", statOrder = { 1362 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h1b____"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Fire Damage", statOrder = { 1362 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h2__"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Fire Damage", statOrder = { 1362 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Fire Damage", statOrder = { 1362 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Fire Damage", statOrder = { 1362 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Fire Damage", statOrder = { 1362 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideLightningDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage1h1b__"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Lightning Damage", statOrder = { 1382 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Lightning Damage", statOrder = { 1382 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage1h2b__"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Lightning Damage", statOrder = { 1382 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Lightning Damage", statOrder = { 1382 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Lightning Damage", statOrder = { 1382 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Lightning Damage", statOrder = { 1382 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Lightning Damage", statOrder = { 1382 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Lightning Damage", statOrder = { 1382 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Lightning Damage", statOrder = { 1382 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Lightning Damage", statOrder = { 1382 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Global Physical Damage", statOrder = { 1236 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h2__"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Global Physical Damage", statOrder = { 1236 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Global Physical Damage", statOrder = { 1236 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Global Physical Damage", statOrder = { 1236 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Global Physical Damage", statOrder = { 1236 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Global Physical Damage", statOrder = { 1236 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Global Physical Damage", statOrder = { 1236 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h2b__"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Global Physical Damage", statOrder = { 1236 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Global Physical Damage", statOrder = { 1236 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Global Physical Damage", statOrder = { 1236 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideElementalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Elemental Damage", statOrder = { 1985 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Elemental Damage", statOrder = { 1985 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage1h3_"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Elemental Damage", statOrder = { 1985 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Elemental Damage", statOrder = { 1985 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Elemental Damage", statOrder = { 1985 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Elemental Damage", statOrder = { 1985 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Elemental Damage", statOrder = { 1985 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideElementalDamagePercentage2h4__"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Elemental Damage", statOrder = { 1985 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideChaosDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage1h1b_"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Chaos Damage", statOrder = { 1390 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Chaos Damage", statOrder = { 1390 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Chaos Damage", statOrder = { 1390 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Chaos Damage", statOrder = { 1390 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Chaos Damage", statOrder = { 1390 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Chaos Damage", statOrder = { 1390 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Chaos Damage", statOrder = { 1390 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h2b___"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Chaos Damage", statOrder = { 1390 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Chaos Damage", statOrder = { 1390 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Chaos Damage", statOrder = { 1390 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideMinionDamagePercentage1__"] = { type = "ScourgeUpside", affix = "", "Minions deal (8-9)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeUpsideMinionDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "Minions deal (10-11)% increased Damage", statOrder = { 1978 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeUpsideMinionDamagePercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions deal (12-13)% increased Damage", statOrder = { 1978 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeUpsideMinionDamagePercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions deal (14-15)% increased Damage", statOrder = { 1978 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeUpsideProjectileDamagePercentage1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideProjectileDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Projectile Damage", statOrder = { 2001 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideProjectileDamagePercentage3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Projectile Damage", statOrder = { 2001 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideProjectileDamagePercentage4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Projectile Damage", statOrder = { 2001 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideCriticalStrikeChance2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, - ["HellscapeUpsideCriticalStrikeChance3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, - ["HellscapeUpsideCriticalStrikeChance4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplier3"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeUpsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeUpsideCriticalStrikeChanceWithBows4_"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplierWithBows3__"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["HellscapeUpsideCriticalStrikeMultiplierWithBows4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["HellscapeUpsideFireDamageOverTimeMultiplier1h3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamageOverTimeMultiplier1h4__"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideColdDamageOverTimeMultiplier1h3___"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h3____"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h3_"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h4_"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier1h3__"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier1h4___"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideChaosDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["HellscapeUpsideDamageOverTimeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(8-10)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, - ["HellscapeUpsideDamageOverTimeMultiplier3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, - ["HellscapeUpsideDamageOverTimeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, - ["HellscapeUpsideIncreasedAttackSpeed1_"] = { type = "ScourgeUpside", affix = "", "4% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeUpsideIncreasedAttackSpeed2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1415 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeUpsideIncreasedAttackSpeed3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1415 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeUpsideIncreasedAttackSpeed4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Attack Speed", statOrder = { 1415 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeUpsideIncreasedCastSpeed1"] = { type = "ScourgeUpside", affix = "", "5% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeUpsideIncreasedCastSpeed2"] = { type = "ScourgeUpside", affix = "", "6% increased Cast Speed", statOrder = { 1451 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeUpsideIncreasedCastSpeed3_"] = { type = "ScourgeUpside", affix = "", "7% increased Cast Speed", statOrder = { 1451 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeUpsideIncreasedCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "8% increased Cast Speed", statOrder = { 1451 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeUpsideMinionAttackAndCastSpeed1"] = { type = "ScourgeUpside", affix = "", "Minions have 5% increased Attack Speed", "Minions have 5% increased Cast Speed", statOrder = { 2912, 2913 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeUpsideMinionAttackAndCastSpeed2"] = { type = "ScourgeUpside", affix = "", "Minions have 6% increased Attack Speed", "Minions have 6% increased Cast Speed", statOrder = { 2912, 2913 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeUpsideMinionAttackAndCastSpeed3____"] = { type = "ScourgeUpside", affix = "", "Minions have (7-8)% increased Attack Speed", "Minions have (7-8)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeUpsideMinionAttackAndCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "Minions have (9-10)% increased Attack Speed", "Minions have (9-10)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeUpsideMaximumLifeOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Life on Kill", statOrder = { 1754 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideMaximumLifeOnKillPercent4___"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Life on Kill", statOrder = { 1754 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideMaximumManaOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Mana on Kill", statOrder = { 1756 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideMaximumManaOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Mana on Kill", statOrder = { 1756 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideMaximumEnergyShieldOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Energy Shield on Kill", statOrder = { 1755 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideMaximumEnergyShieldOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Energy Shield on Kill", statOrder = { 1755 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideIncreasedAccuracyPercent2"] = { type = "ScourgeUpside", affix = "", "(11-14)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideIncreasedAccuracyPercent3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideIncreasedAccuracyPercent4__"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideLocalIncreaseSocketedAreaOfEffectGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 181 }, level = 68, group = "IncreasedSocketedAoEGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedAuraGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 186 }, level = 68, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "aura", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedCurseGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Curse Gems", statOrder = { 189 }, level = 68, group = "IncreaseSocketedCurseGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "caster", "gem", "curse" }, }, - ["HellscapeUpsideLocalIncreaseSocketedDurationGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Duration Gems", statOrder = { 180 }, level = 68, group = "IncreaseSocketedDurationGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Gems", statOrder = { 167 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 5, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedProjectileGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 182 }, level = 68, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedTrapAndMineGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Trap or Mine Gems", statOrder = { 192 }, level = 68, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedWarcryGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 198 }, level = 68, group = "LocalSocketedWarcryGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedSupportGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 194 }, level = 68, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedLightningGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedChaosGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "chaos", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedFireGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedColdGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedMinionGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 185 }, level = 68, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, }, - ["HellscapeUpsideLocalIncreaseSocketedMeleeGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 184 }, level = 68, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "attack", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1618 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "chaos", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel2h__"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1618 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "chaos", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1617 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1617 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1615 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1615 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1616 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel1h__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1614 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "physical", "caster", "gem" }, }, - ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Physical Spell Skill Gems", statOrder = { 1614 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "physical", "caster", "gem" }, }, - ["HellscapeUpsideAdditionalRaisedZombie1_"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2165 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, }, - ["HellscapeUpsideAdditionalSkeleton1__"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Skeletons", statOrder = { 2167 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, }, - ["HellscapeUpsideWeaponRange1"] = { type = "ScourgeUpside", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2750 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideWeaponRange2"] = { type = "ScourgeUpside", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2750 }, level = 45, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideWeaponRange3"] = { type = "ScourgeUpside", affix = "", "+0.3 metres to Weapon Range", statOrder = { 2750 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideWeaponRange4"] = { type = "ScourgeUpside", affix = "", "+0.4 metres to Weapon Range", statOrder = { 2750 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideAreaDamage1"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Area Damage", statOrder = { 2040 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideAreaDamage2_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Area Damage", statOrder = { 2040 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideAreaDamage3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Area Damage", statOrder = { 2040 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideAreaDamage4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Area Damage", statOrder = { 2040 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideReducedAttributeRequirement2"] = { type = "ScourgeUpside", affix = "", "(12-14)% reduced Attribute Requirements", statOrder = { 1080 }, level = 45, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideReducedAttributeRequirement3"] = { type = "ScourgeUpside", affix = "", "(15-17)% reduced Attribute Requirements", statOrder = { 1080 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideReducedAttributeRequirement4"] = { type = "ScourgeUpside", affix = "", "(18-20)% reduced Attribute Requirements", statOrder = { 1080 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideRarityOfItemsFound1_"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, - ["HellscapeUpsideRarityOfItemsFound2_"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1601 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, - ["HellscapeUpsideRarityOfItemsFound3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1601 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, - ["HellscapeUpsideRarityOfItemsFound4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1601 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, - ["HellscapeUpsideLifeRegenerationRate2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Life Regeneration rate", statOrder = { 1582 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifeRegenerationRate3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Life Regeneration rate", statOrder = { 1582 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifeRegenerationRate4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Life Regeneration rate", statOrder = { 1582 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration1"] = { type = "ScourgeUpside", affix = "", "Regenerate (10.8-11.7) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration1b_"] = { type = "ScourgeUpside", affix = "", "Regenerate (12.5-13.3) Life per second", statOrder = { 1579 }, level = 25, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration1c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (14.2-15) Life per second", statOrder = { 1579 }, level = 35, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (15.8-16.7) Life per second", statOrder = { 1579 }, level = 45, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (17.5-18.3) Life per second", statOrder = { 1579 }, level = 52, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration2c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (19.2-20) Life per second", statOrder = { 1579 }, level = 59, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration3__"] = { type = "ScourgeUpside", affix = "", "Regenerate (20.8-21.7) Life per second", statOrder = { 1579 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration3b"] = { type = "ScourgeUpside", affix = "", "Regenerate (22.5-23.3) Life per second", statOrder = { 1579 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 200 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration3c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (24.2-25) Life per second", statOrder = { 1579 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 100 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideLifeRegeneration4_"] = { type = "ScourgeUpside", affix = "", "Regenerate (25.8-26.7) Life per second", statOrder = { 1579 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["HellscapeUpsideMinionLifeRegenPercentage2"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2% of Life per second", statOrder = { 2916 }, level = 45, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLifeRegenPercentage2b_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2.5% of Life per second", statOrder = { 2916 }, level = 55, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLifeRegenPercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3% of Life per second", statOrder = { 2916 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLifeRegenPercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3.5% of Life per second", statOrder = { 2916 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideEnergyShieldRechargeRate2"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 45, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldRechargeRate3"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldRechargeRate4"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideMovementVelocity1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMovementVelocity2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Movement Speed", statOrder = { 1803 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMovementVelocity3_"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Movement Speed", statOrder = { 1803 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMovementVelocity4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Movement Speed", statOrder = { 1803 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMaximumMana1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideMaximumMana2"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Mana", statOrder = { 1584 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideMaximumMana3"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Mana", statOrder = { 1584 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideMaximumMana4_"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Mana", statOrder = { 1584 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration1"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration2"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration2b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration3"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration3b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegeneration4"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat1"] = { type = "ScourgeUpside", affix = "", "Regenerate 0.8 Mana per second", statOrder = { 1587 }, level = 1, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat1b"] = { type = "ScourgeUpside", affix = "", "Regenerate (1.5-1.7) Mana per second", statOrder = { 1587 }, level = 15, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat1c"] = { type = "ScourgeUpside", affix = "", "Regenerate (2.6-2.8) Mana per second", statOrder = { 1587 }, level = 25, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat1d__"] = { type = "ScourgeUpside", affix = "", "Regenerate (4-4.3) Mana per second", statOrder = { 1587 }, level = 35, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (5.1-5.7) Mana per second", statOrder = { 1587 }, level = 45, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (6.3-6.7) Mana per second", statOrder = { 1587 }, level = 55, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat3"] = { type = "ScourgeUpside", affix = "", "Regenerate (8-8.3) Mana per second", statOrder = { 1587 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRegenFlat4"] = { type = "ScourgeUpside", affix = "", "Regenerate (8.8-9.2) Mana per second", statOrder = { 1587 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideAttackLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 45, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["HellscapeUpsideAttackLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["HellscapeUpsideAttackLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["HellscapeUpsideAttackManaLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 45, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["HellscapeUpsideAttackManaLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["HellscapeUpsideAttackManaLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["HellscapeUpsideMinionLifeLeech2"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.2-0.3)% of Damage as Life", statOrder = { 2915 }, level = 45, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLifeLeech3_"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.4-0.5)% of Damage as Life", statOrder = { 2915 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideMinionLifeLeech4___"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.6-0.7)% of Damage as Life", statOrder = { 2915 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeUpsideFlaskChargesGained2_"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Flask Charges gained", statOrder = { 2188 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeUpsideFlaskChargesGained3_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Charges gained", statOrder = { 2188 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeUpsideFlaskChargesGained4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Flask Charges gained", statOrder = { 2188 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeUpsideStunThreshold2"] = { type = "ScourgeUpside", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 45, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideStunThreshold3____"] = { type = "ScourgeUpside", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideStunThreshold4"] = { type = "ScourgeUpside", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideStunDuration2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 45, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideStunDuration3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideStunDuration4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideFlaskLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 45, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["HellscapeUpsideFlaskLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["HellscapeUpsideFlaskLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Life Recovery rate", statOrder = { 2194 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["HellscapeUpsideFlaskManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 45, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["HellscapeUpsideFlaskManaRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["HellscapeUpsideFlaskManaRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Mana Recovery rate", statOrder = { 2195 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["HellscapeUpsideAdditionalDexterity1__"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Dexterity", statOrder = { 1183 }, level = 1, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalDexterity2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Dexterity", statOrder = { 1183 }, level = 45, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalDexterity3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Dexterity", statOrder = { 1183 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalDexterity4_"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Dexterity", statOrder = { 1183 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalIntelligence1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Intelligence", statOrder = { 1184 }, level = 1, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalIntelligence2__"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Intelligence", statOrder = { 1184 }, level = 45, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalIntelligence3_"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Intelligence", statOrder = { 1184 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalIntelligence4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Intelligence", statOrder = { 1184 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalStrength1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Strength", statOrder = { 1182 }, level = 1, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalStrength2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Strength", statOrder = { 1182 }, level = 45, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalStrength3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Strength", statOrder = { 1182 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideAdditionalStrength4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Strength", statOrder = { 1182 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideChanceToFreeze1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Freeze", statOrder = { 2034 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToFreeze1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Freeze", statOrder = { 2034 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToFreeze1h4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Freeze", statOrder = { 2034 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToFreeze2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Freeze", statOrder = { 2034 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToFreeze2h3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Freeze", statOrder = { 2034 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToFreeze2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Freeze", statOrder = { 2034 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Ignite", statOrder = { 2031 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite1h3_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Ignite", statOrder = { 2031 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite1h4___"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Ignite", statOrder = { 2031 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Ignite", statOrder = { 2031 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Ignite", statOrder = { 2031 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToIgnite2h4___"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Ignite", statOrder = { 2031 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideChanceToShock1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Shock", statOrder = { 2038 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToShock1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Shock", statOrder = { 2038 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToShock1h4"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Shock", statOrder = { 2038 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToShock2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Shock", statOrder = { 2038 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToShock2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Shock", statOrder = { 2038 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToShock2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Shock", statOrder = { 2038 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideChanceToBleed2__"] = { type = "ScourgeUpside", affix = "", "Attacks have (12-14)% chance to cause Bleeding", statOrder = { 2494 }, level = 45, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChanceToBleed3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (15-17)% chance to cause Bleeding", statOrder = { 2494 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChanceToBleed4"] = { type = "ScourgeUpside", affix = "", "Attacks have (18-20)% chance to cause Bleeding", statOrder = { 2494 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideChanceToPoison2"] = { type = "ScourgeUpside", affix = "", "(12-14)% chance to Poison on Hit", statOrder = { 3178 }, level = 45, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideChanceToPoison3"] = { type = "ScourgeUpside", affix = "", "(15-17)% chance to Poison on Hit", statOrder = { 3178 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideChanceToPoison4"] = { type = "ScourgeUpside", affix = "", "(18-20)% chance to Poison on Hit", statOrder = { 3178 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["HellscapeUpsideLightRadius1_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Light Radius", statOrder = { 2505 }, level = 1, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideLightRadius2_"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Light Radius", statOrder = { 2505 }, level = 45, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideLightRadius3______"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Light Radius", statOrder = { 2505 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideLightRadius4"] = { type = "ScourgeUpside", affix = "", "(31-35)% increased Light Radius", statOrder = { 2505 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideCooldownRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(3-4)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideCooldownRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToNotConsumeFlaskCharges3"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance for Flasks you use to not consume Charges", statOrder = { 4235 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["HellscapeUpsideChanceToNotConsumeFlaskCharges4_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance for Flasks you use to not consume Charges", statOrder = { 4235 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, - ["HellscapeUpsideLifePercentage3_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifePercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideManaPercentage3"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Mana", statOrder = { 1585 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaPercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1585 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideReducedReflectedPhysicalDamage3_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideReducedReflectedPhysicalDamage4_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Physical Damage", statOrder = { 9669 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideReducedReflectedElementalDamage3_____"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, }, - ["HellscapeUpsideReducedReflectedElementalDamage4"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Elemental Damage", statOrder = { 6339 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill2__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 45, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToGainOnslaughtOnKill4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToGainPhasingOnKill2"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 45, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToGainPhasingOnKill3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToGainPhasingOnKill4"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToTauntOnHit2__"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 45, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideChanceToTauntOnHit4___"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideMaximumColdResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideMaximumFireResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideMaximumLightningResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideMaximumChaosResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1645 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeUpsideMaximumElementalResistance1"] = { type = "ScourgeUpside", affix = "", "+1% to all maximum Elemental Resistances", statOrder = { 1648 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 50, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideTotemPlacementSpeed2"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Totem Placement speed", statOrder = { 2583 }, level = 45, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideTotemPlacementSpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Totem Placement speed", statOrder = { 2583 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideTotemPlacementSpeed4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Totem Placement speed", statOrder = { 2583 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideTotemElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Totems gain +(21-25)% to all Elemental Resistances", statOrder = { 2792 }, level = 45, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideTotemElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Totems gain +(26-30)% to all Elemental Resistances", statOrder = { 2792 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideTotemElementalResistances4"] = { type = "ScourgeUpside", affix = "", "Totems gain +(31-35)% to all Elemental Resistances", statOrder = { 2792 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeUpsideTotemDuration2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Totem Duration", statOrder = { 1783 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemDuration3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Totem Duration", statOrder = { 1783 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemDuration4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Totem Duration", statOrder = { 1783 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemPhysicalDamageReduction2___"] = { type = "ScourgeUpside", affix = "", "Totems have (11-15)% additional Physical Damage Reduction", statOrder = { 2794 }, level = 45, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemPhysicalDamageReduction3___"] = { type = "ScourgeUpside", affix = "", "Totems have (16-20)% additional Physical Damage Reduction", statOrder = { 2794 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemPhysicalDamageReduction4_"] = { type = "ScourgeUpside", affix = "", "Totems have (21-25)% additional Physical Damage Reduction", statOrder = { 2794 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideTotemLife2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Totem Life", statOrder = { 1779 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideTotemLife3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Totem Life", statOrder = { 1779 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideTotemLife4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Totem Life", statOrder = { 1779 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideBrandDuration2"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (12-14)% increased Duration", statOrder = { 10037 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideBrandDuration3"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (15-17)% increased Duration", statOrder = { 10037 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideBrandDuration4"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (18-20)% increased Duration", statOrder = { 10037 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideBrandAttachmentRange2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Brand Attachment range", statOrder = { 10042 }, level = 45, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideBrandAttachmentRange3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Brand Attachment range", statOrder = { 10042 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideBrandAttachmentRange4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Brand Attachment range", statOrder = { 10042 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Life Recovery rate", statOrder = { 1583 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Life Recovery rate", statOrder = { 1583 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Life Recovery rate", statOrder = { 1583 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Mana Recovery rate", statOrder = { 1591 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Mana Recovery rate", statOrder = { 1591 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideManaRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Mana Recovery rate", statOrder = { 1591 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideEnergyShieldRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideEnergyShieldRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes2"] = { type = "ScourgeUpside", affix = "", "You take (13-15)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeUpside", affix = "", "You take (18-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes4"] = { type = "ScourgeUpside", affix = "", "You take (23-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeUpsideChanceToBlindOnHit2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 45, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToBlindOnHit3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToBlindOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToMaimOnHit2"] = { type = "ScourgeUpside", affix = "", "Attacks have (7-8)% chance to Maim on Hit", statOrder = { 8159 }, level = 45, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideChanceToMaimOnHit3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (9-10)% chance to Maim on Hit", statOrder = { 8159 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideChanceToMaimOnHit4"] = { type = "ScourgeUpside", affix = "", "Attacks have (11-12)% chance to Maim on Hit", statOrder = { 8159 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideChanceToHinderOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 45, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideChanceToHinderOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideChanceToHinderOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideChanceToIntimidateOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 45, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToIntimidateOnHit3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToIntimidateOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToUnnerveOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 45, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToUnnerveOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToUnnerveOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChanceToImpaleOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 45, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, - ["HellscapeUpsideChanceToImpaleOnHit3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, - ["HellscapeUpsideChanceToImpaleOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, - ["HellscapeUpsideEnemiesExplodeOnDeathPhysical4_"] = { type = "ScourgeUpside", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3309 }, level = 68, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideColdPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Cold Resistance", statOrder = { 2988 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdPenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Cold Resistance", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideColdPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeUpsideFirePenetration1h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Fire Resistance", statOrder = { 2986 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFirePenetration1h3___"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFirePenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFirePenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFirePenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Fire Resistance", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideFirePenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideLightningPenetration1h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Lightning Resistance", statOrder = { 2989 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningPenetration1h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeUpsideChaosPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Chaos Resistance", statOrder = { 9874 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, - ["HellscapeUpsideChaosPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Chaos Resistance", statOrder = { 9874 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, - ["HellscapeUpsideChaosPenetration1h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Chaos Resistance", statOrder = { 9874 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, - ["HellscapeUpsideChaosPenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Chaos Resistance", statOrder = { 9874 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["HellscapeUpsideChaosPenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Chaos Resistance", statOrder = { 9874 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["HellscapeUpsideChaosPenetration2h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Chaos Resistance", statOrder = { 9874 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["HellscapeUpsideCullingStrike1"] = { type = "ScourgeUpside", affix = "", "Culling Strike", statOrder = { 2044 }, level = 1, group = "CullingStrike", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeUpsideCurseOnHitDespair1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2520 }, level = 68, group = "CurseOnHitDespairChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitElementalWeakness1___"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2521 }, level = 68, group = "CurseOnHitLevelElementalWeaknessChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitEnfeeble1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2518 }, level = 68, group = "EnfeebleOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitTemporalChains1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2524 }, level = 68, group = "TemporalChainsOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitVulnerability1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2525 }, level = 68, group = "VulnerabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitConductivity1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2519 }, level = 68, group = "CurseOnHitConductivityChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitFlammability1______"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2522 }, level = 68, group = "FlammabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseOnHitFrostbite1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2523 }, level = 68, group = "FrostbiteOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill1__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 45, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeUpsideChanceToGainEnduranceChargeOnKill4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain an Endurance Charge on Kill", statOrder = { 2634 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 45, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, - ["HellscapeUpsideChanceToGainPowerChargeOnKill4___"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Power Charge on Kill", statOrder = { 2638 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 45, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeUpsideChanceToGainFrenzyChargeOnKill4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Frenzy Charge on Kill", statOrder = { 2636 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeUpsideTrapThrowingSpeed2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 45, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideTrapThrowingSpeed3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideTrapThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMineThrowingSpeed2___"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 45, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMineThrowingSpeed3_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideMineThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideAdditionalArrow1"] = { type = "ScourgeUpside", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1799 }, level = 68, group = "AdditionalArrows", weightKey = { "bow", "quiver", "default", }, weightVal = { 50, 5, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideAdditionalChainChance1__"] = { type = "ScourgeUpside", affix = "", "Skills Chain +1 times", statOrder = { 1794 }, level = 68, group = "AdditionalChain", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, - ["HellscapeUpsideAdditionalPierceChance1__"] = { type = "ScourgeUpside", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 68, group = "AdditionalPierce", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, - ["HellscapeUpsideAdditionalSplitChance1_"] = { type = "ScourgeUpside", affix = "", "Projectiles Split towards +1 targets", statOrder = { 9739 }, level = 68, group = "ProjectilesSplitCount", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, - ["HellscapeUpsideAdditionalReturn1___"] = { type = "ScourgeUpside", affix = "", "Attack Projectiles Return to you", statOrder = { 2829 }, level = 68, group = "ReturningAttackProjectiles", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { "attack" }, }, - ["HellscapeUpsideStrengthPercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Strength", statOrder = { 1189 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideStrengthPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Strength", statOrder = { 1189 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideDexterityPercent3_"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Dexterity", statOrder = { 1190 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideDexterityPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Dexterity", statOrder = { 1190 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideIntelligencePercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Intelligence", statOrder = { 1191 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsideIntelligencePercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Intelligence", statOrder = { 1191 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["HellscapeUpsidePoisonDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (4-5)% faster", statOrder = { 6550 }, level = 45, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsidePoisonDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (6-7)% faster", statOrder = { 6550 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsidePoisonDamageFaster1h4"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6550 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsidePoisonDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6550 }, level = 45, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsidePoisonDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (10-11)% faster", statOrder = { 6550 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsidePoisonDamageFaster2h4_"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (12-13)% faster", statOrder = { 6550 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (4-5)% faster", statOrder = { 2569 }, level = 45, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (6-7)% faster", statOrder = { 2569 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster1h4__"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2569 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster2h2_"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2569 }, level = 45, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (10-11)% faster", statOrder = { 2569 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideIgniteDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (12-13)% faster", statOrder = { 2569 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (4-5)% faster", statOrder = { 6549 }, level = 45, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (6-7)% faster", statOrder = { 6549 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster1h4_"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6549 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6549 }, level = 45, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (10-11)% faster", statOrder = { 6549 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideBleedingDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (12-13)% faster", statOrder = { 6549 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsidePhysicalConvertedToCold1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["HellscapeUpsidePhysicalConvertedToFire1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["HellscapeUpsidePhysicalConvertedToLightning1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["HellscapeUpsidePhysicalConvertedToChaos1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["HellscapeUpsideAilmentDuration2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideAilmentDuration3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideAilmentDuration4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideNonDamagingAilmentEffect2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideNonDamagingAilmentEffect3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideNonDamagingAilmentEffect4_"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 3% increased Physical Damage", statOrder = { 7923 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 4% increased Physical Damage", statOrder = { 7923 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage3__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Fire Resistance", statOrder = { 7919 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Fire Resistance", statOrder = { 7919 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage3___"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Cold Resistance", statOrder = { 7917 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage4__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Cold Resistance", statOrder = { 7917 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Lightning Resistance", statOrder = { 7921 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage4_"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Lightning Resistance", statOrder = { 7921 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Chaos Resistance", statOrder = { 7916 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Chaos Resistance", statOrder = { 7916 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["HellscapeUpsideCurseEffect3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Effect of your Curses", statOrder = { 2601 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Effect of your Curses", statOrder = { 2601 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeUpsideNonCurseAuraEffect2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, - ["HellscapeUpsideNonCurseAuraEffect3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, - ["HellscapeUpsideNonCurseAuraEffect4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, - ["HellscapeUpsideImpaleEffect1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Impale Effect", statOrder = { 7247 }, level = 45, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideImpaleEffect1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Impale Effect", statOrder = { 7247 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideImpaleEffect1h4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Impale Effect", statOrder = { 7247 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideImpaleEffect2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Impale Effect", statOrder = { 7247 }, level = 45, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideImpaleEffect2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Impale Effect", statOrder = { 7247 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideImpaleEffect2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Impale Effect", statOrder = { 7247 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, - ["HellscapeUpsideInflictColdExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Cold Exposure on Hit", statOrder = { 5031 }, level = 45, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictColdExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Cold Exposure on Hit", statOrder = { 5031 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictColdExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Cold Exposure on Hit", statOrder = { 5031 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictColdExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Cold Exposure on Hit", statOrder = { 5031 }, level = 45, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictColdExposureOnHit2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Cold Exposure on Hit", statOrder = { 5031 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictColdExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Cold Exposure on Hit", statOrder = { 5031 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, level = 45, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, level = 45, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit2h3_____"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictFireExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Fire Exposure on Hit", statOrder = { 5032 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Lightning Exposure on Hit", statOrder = { 5033 }, level = 45, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Lightning Exposure on Hit", statOrder = { 5033 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 5033 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 5033 }, level = 45, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit2h3__"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 5033 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideInflictLightningExposureOnHit2h4__"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Lightning Exposure on Hit", statOrder = { 5033 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["HellscapeUpsideKnockbackOnHit2"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Knock Enemies Back on hit", statOrder = { 2000 }, level = 45, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideKnockbackOnHit3__"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Knock Enemies Back on hit", statOrder = { 2000 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideKnockbackOnHit4"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Knock Enemies Back on hit", statOrder = { 2000 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeUpsideReservationEfficiency3__"] = { type = "ScourgeUpside", affix = "", "(6-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideReservationEfficiency4_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeUpsideWarcrySpeed2__"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Warcry Speed", statOrder = { 3282 }, level = 45, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideWarcrySpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Warcry Speed", statOrder = { 3282 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideWarcrySpeed4_"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Warcry Speed", statOrder = { 3282 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, - ["HellscapeUpsideColdDamageLeechedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["HellscapeUpsideColdDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["HellscapeUpsideFireDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["HellscapeUpsideFireDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["HellscapeUpsideLightningDamageLeechedAsLife2__"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamageLeechedAsLife3_"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["HellscapeUpsideLightningDamageLeechedAsLife4_"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["HellscapeUpsideChaosDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["HellscapeUpsideChaosDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["HellscapeUpsideChaosDamageLeechedAsLife4__"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["HellscapeUpsidePhysicalDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, - ["HellscapeUpsidePhysicalDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, - ["HellscapeUpsidePhysicalDamageLeechedAsLife4____"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, - ["HellscapeUpsideKeystoneMinionInstability"] = { type = "ScourgeUpside", affix = "", "Minion Instability", statOrder = { 10797 }, level = 68, group = "MinionInstability", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["HellscapeUpsideKeystoneResoluteTechnique"] = { type = "ScourgeUpside", affix = "", "Resolute Technique", statOrder = { 10827 }, level = 68, group = "ResoluteTechnique", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeUpsideKeystoneBloodMagic"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10771 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, }, - ["HellscapeUpsideKeystonePainAttunement"] = { type = "ScourgeUpside", affix = "", "Pain Attunement", statOrder = { 10799 }, level = 68, group = "PainAttunement", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeUpsideKeystoneElementalEquilibrium_"] = { type = "ScourgeUpside", affix = "", "Elemental Equilibrium", statOrder = { 10780 }, level = 68, group = "ElementalEquilibrium", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeUpsideKeystoneIronGrip"] = { type = "ScourgeUpside", affix = "", "Iron Grip", statOrder = { 10815 }, level = 68, group = "IronGrip", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, }, - ["HellscapeUpsideKeystonePointBlank"] = { type = "ScourgeUpside", affix = "", "Point Blank", statOrder = { 10800 }, level = 68, group = "PointBlank", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, }, - ["HellscapeUpsideKeystoneAcrobatics___"] = { type = "ScourgeUpside", affix = "", "Acrobatics", statOrder = { 10766 }, level = 68, group = "Acrobatics", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, - ["HellscapeUpsideKeystoneGhostReaver"] = { type = "ScourgeUpside", affix = "", "Ghost Reaver", statOrder = { 10786 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["HellscapeUpsideKeystoneVaalPact"] = { type = "ScourgeUpside", affix = "", "Vaal Pact", statOrder = { 10820 }, level = 68, group = "VaalPact", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeUpsideKeystoneElementalOverload"] = { type = "ScourgeUpside", affix = "", "Elemental Overload", statOrder = { 10781 }, level = 68, group = "ElementalOverload", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, - ["HellscapeUpsideKeystoneAvatarOfFire"] = { type = "ScourgeUpside", affix = "", "Avatar of Fire", statOrder = { 10769 }, level = 68, group = "AvatarOfFire", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeUpsideKeystoneEldritchBattery_"] = { type = "ScourgeUpside", affix = "", "Eldritch Battery", statOrder = { 10779 }, level = 68, group = "EldritchBattery", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideKeystoneAncestralBond"] = { type = "ScourgeUpside", affix = "", "Ancestral Bond", statOrder = { 10768 }, level = 68, group = "AncestralBond", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage" }, }, - ["HellscapeUpsideKeystoneCrimsonDance_"] = { type = "ScourgeUpside", affix = "", "Crimson Dance", statOrder = { 10776 }, level = 68, group = "CrimsonDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["HellscapeUpsideKeystonePerfectAgony_"] = { type = "ScourgeUpside", affix = "", "Perfect Agony", statOrder = { 10767 }, level = 68, group = "PerfectAgony", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "critical", "ailment" }, }, - ["HellscapeUpsideKeystoneRunebinder___"] = { type = "ScourgeUpside", affix = "", "Runebinder", statOrder = { 10807 }, level = 68, group = "Runebinder", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideKeystoneMortalConviction_"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10771 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["HellscapeUpsideKeystoneCallToArms"] = { type = "ScourgeUpside", affix = "", "Call to Arms", statOrder = { 10772 }, level = 68, group = "CallToArms", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, - ["HellscapeUpsideKeystoneTheAgnostic_"] = { type = "ScourgeUpside", affix = "", "The Agnostic", statOrder = { 10798 }, level = 68, group = "TheAgnostic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, - ["HellscapeUpsideKeystoneSupremeEgo_"] = { type = "ScourgeUpside", affix = "", "Supreme Ego", statOrder = { 10816 }, level = 68, group = "SupremeEgo", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "mana", "aura" }, }, - ["HellscapeUpsideKeystoneTheImpaler_"] = { type = "ScourgeUpside", affix = "", "The Impaler", statOrder = { 10791 }, level = 68, group = "Impaler", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeUpsideKeystoneDoomsday"] = { type = "ScourgeUpside", affix = "", "Hex Master", statOrder = { 10789 }, level = 68, group = "HexMaster", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "curse" }, }, - ["HellscapeUpsideKeystoneLetheShade1_"] = { type = "ScourgeUpside", affix = "", "Lethe Shade", statOrder = { 10793 }, level = 68, group = "LetheShade", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideKeystoneGhostDance"] = { type = "ScourgeUpside", affix = "", "Ghost Dance", statOrder = { 10785 }, level = 68, group = "GhostDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["HellscapeUpsideKeystoneVersatileCombatant___"] = { type = "ScourgeUpside", affix = "", "Versatile Combatant", statOrder = { 10821 }, level = 68, group = "VersatileCombatant", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, }, - ["HellscapeUpsideKeystoneMagebane"] = { type = "ScourgeUpside", affix = "", "Magebane", statOrder = { 10794 }, level = 68, group = "Magebane", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, - ["HellscapeUpsideKeystoneSolipsism"] = { type = "ScourgeUpside", affix = "", "Solipsism", statOrder = { 10813 }, level = 68, group = "Solipsism", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, }, - ["HellscapeUpsideKeystoneDivineShield"] = { type = "ScourgeUpside", affix = "", "Divine Shield", statOrder = { 10778 }, level = 68, group = "DivineShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeUpsideKeystoneIronWill"] = { type = "ScourgeUpside", affix = "", "Iron Will", statOrder = { 10828 }, level = 68, group = "IronWill", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, }, - ["HellscapeUpsideLifeGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 1, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, - ["HellscapeUpsideLifeGainOnHitWithAttacks2_"] = { type = "ScourgeUpside", affix = "", "Gain (3-4) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 45, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, - ["HellscapeUpsideLifeGainOnHitWithAttacks3"] = { type = "ScourgeUpside", affix = "", "Gain (5-7) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, - ["HellscapeUpsideLifeGainOnHitWithAttacks4_"] = { type = "ScourgeUpside", affix = "", "Gain (8-10) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, - ["HellscapeUpsideManaGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 1, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["HellscapeUpsideManaGainOnHitWithAttacks2__"] = { type = "ScourgeUpside", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 45, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["HellscapeUpsideManaGainOnHitWithAttacks3_"] = { type = "ScourgeUpside", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["HellscapeUpsideManaGainOnHitWithAttacks4__"] = { type = "ScourgeUpside", affix = "", "Gain 5 Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Lightning Damage", statOrder = { 472 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedLightningDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Lightning Damage", statOrder = { 472 }, level = 45, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Lightning Damage", statOrder = { 472 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Lightning Damage", statOrder = { 472 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedColdDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Cold Damage", statOrder = { 523 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Cold Damage", statOrder = { 523 }, level = 45, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Cold Damage", statOrder = { 523 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Cold Damage", statOrder = { 523 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Chaos Damage", statOrder = { 463 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedChaosDamage_____"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 463 }, level = 45, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Chaos Damage", statOrder = { 463 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedChaosDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Chaos Damage", statOrder = { 463 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, - ["HellscapeUpsideCannotBeFrozen___"] = { type = "ScourgeUpside", affix = "", "Cannot be Frozen", statOrder = { 1843 }, level = 1, group = "CannotBeFrozen", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideGainLifeChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 7352 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideGainManaChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 8180 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeUpsideChillOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillOnBlock2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 45, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillOnBlock3"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideChillOnBlock4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5771 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, - ["HellscapeUpsideShockOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideShockOnBlock2___"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 45, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideShockOnBlock3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideShockOnBlock4__"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10004 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, - ["HellscapeUpsideSocketedStrengthGems___"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 163 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, }, - ["HellscapeUpsideSocketedDexterityGems"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 165 }, level = 1, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, }, - ["HellscapeUpsideSocketedIntelligenceGems__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 166 }, level = 1, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, }, - ["HellscapeUpsideGrantsLevel1HeraldOfIce__"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ice Skill", statOrder = { 711 }, level = 1, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ice Skill", statOrder = { 711 }, level = 45, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ice Skill", statOrder = { 711 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ice Skill", statOrder = { 711 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel1HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ash Skill", statOrder = { 710 }, level = 1, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ash Skill", statOrder = { 710 }, level = 45, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ash Skill", statOrder = { 710 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ash Skill", statOrder = { 710 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel1HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Thunder Skill", statOrder = { 714 }, level = 1, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Thunder Skill", statOrder = { 714 }, level = 45, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20HeraldOfThunder_"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Thunder Skill", statOrder = { 714 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Thunder Skill", statOrder = { 714 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel1HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Purity Skill", statOrder = { 712 }, level = 1, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Purity Skill", statOrder = { 712 }, level = 45, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20HeraldOfPurity_____"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Purity Skill", statOrder = { 712 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22HeraldOfPurity_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Purity Skill", statOrder = { 712 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel1HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Agony Skill", statOrder = { 709 }, level = 1, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Agony Skill", statOrder = { 709 }, level = 45, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Agony Skill", statOrder = { 709 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Agony Skill", statOrder = { 709 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel1SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Sniper's Mark Skill", statOrder = { 663 }, level = 1, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel10SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Sniper's Mark Skill", statOrder = { 663 }, level = 45, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel20SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Sniper's Mark Skill", statOrder = { 663 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideGrantsLevel22SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Sniper's Mark Skill", statOrder = { 663 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, - ["HellscapeUpsideDaytimeFishSize___"] = { type = "ScourgeUpside", affix = "", "(10-30)% increased Size of Fish caught during Daytime", statOrder = { 6137 }, level = 1, group = "DaytimeFishSize", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideFishingCastDistance"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Fishing Range", statOrder = { 2853 }, level = 45, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideFishingRarity"] = { type = "ScourgeUpside", affix = "", "(20-25)% increased Rarity of Fish Caught", statOrder = { 2855 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, - ["HellscapeUpsideStrengthAppliesToFishingReelSpeed_"] = { type = "ScourgeUpside", affix = "", "Strength's Damage bonus also applies to Reeling Speed at 20% of its value", statOrder = { 10254 }, level = 1, group = "StrengthAppliesToFishingReelSpeed", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["HellscapeUpsideCanCatchScourgedFish"] = { type = "ScourgeUpside", affix = "", "You can catch Scourged Fish", statOrder = { 5391 }, level = 68, group = "CanCatchScourgedFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, }, - ["HellscapeDownsideStrengthRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Strength Requirement", statOrder = { 1090 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideStrengthRequirement1"] = { type = "ScourgeDownside", affix = "", "+(36-50) Strength Requirement", statOrder = { 1090 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideStrengthRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Strength Requirement", statOrder = { 1090 }, level = 45, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideStrengthRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Strength Requirement", statOrder = { 1090 }, level = 68, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideDexterityRequirement0__"] = { type = "ScourgeDownside", affix = "", "+(21-30) Dexterity Requirement", statOrder = { 1082 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideDexterityRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Dexterity Requirement", statOrder = { 1082 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideDexterityRequirement2_"] = { type = "ScourgeDownside", affix = "", "+(75-125) Dexterity Requirement", statOrder = { 1082 }, level = 45, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideDexterityRequirement3__"] = { type = "ScourgeDownside", affix = "", "+(150-200) Dexterity Requirement", statOrder = { 1082 }, level = 68, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideIntelligenceRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Intelligence Requirement", statOrder = { 1084 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideIntelligenceRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Intelligence Requirement", statOrder = { 1084 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideIntelligenceRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Intelligence Requirement", statOrder = { 1084 }, level = 45, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideIntelligenceRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Intelligence Requirement", statOrder = { 1084 }, level = 68, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotCrit_"] = { type = "ScourgeDownside", affix = "", "Never deal Critical Strikes", statOrder = { 2183 }, level = 45, group = "HellscapeDownsideCannotCrit", weightKey = { "body_armour", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotBlock"] = { type = "ScourgeDownside", affix = "", "Cannot Block Attack Damage", "Cannot Block Spell Damage", statOrder = { 2263, 5433 }, level = 45, group = "HellscapeDownsideCannotBlock", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotEvade_"] = { type = "ScourgeDownside", affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1923 }, level = 45, group = "HellscapeDownsideCannotEvade", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideReducedFireResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeDownsideReducedFireResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeDownsideReducedFireResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Fire Resistance", statOrder = { 1630 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeDownsideReducedFireResistance3_"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Fire Resistance", statOrder = { 1630 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["HellscapeDownsideReducedColdResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeDownsideReducedColdResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeDownsideReducedColdResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Cold Resistance", statOrder = { 1636 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeDownsideReducedColdResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Cold Resistance", statOrder = { 1636 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["HellscapeDownsideReducedLightningResistance0_"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeDownsideReducedLightningResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeDownsideReducedLightningResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Lightning Resistance", statOrder = { 1641 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeDownsideReducedLightningResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Lightning Resistance", statOrder = { 1641 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["HellscapeDownsideReducedChaosResistance0_"] = { type = "ScourgeDownside", affix = "", "-(13-10)% to Chaos Resistance", statOrder = { 1646 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeDownsideReducedChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-(17-14)% to Chaos Resistance", statOrder = { 1646 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeDownsideReducedChaosResistance2_"] = { type = "ScourgeDownside", affix = "", "-(21-18)% to Chaos Resistance", statOrder = { 1646 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeDownsideReducedChaosResistance3___"] = { type = "ScourgeDownside", affix = "", "-(25-22)% to Chaos Resistance", statOrder = { 1646 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeDownsideReducedElementalResistances0_"] = { type = "ScourgeDownside", affix = "", "-5% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeDownsideReducedElementalResistances1_"] = { type = "ScourgeDownside", affix = "", "-(7-6)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeDownsideReducedElementalResistances2_"] = { type = "ScourgeDownside", affix = "", "-(9-8)% to all Elemental Resistances", statOrder = { 1624 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 750, 750, 750, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeDownsideReducedElementalResistances3_"] = { type = "ScourgeDownside", affix = "", "-(11-10)% to all Elemental Resistances", statOrder = { 1624 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeDownsideMinusMaximumLife0"] = { type = "ScourgeDownside", affix = "", "-(20-16) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideMinusMaximumLife1_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideMinusMaximumLife2"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Life", statOrder = { 1574 }, level = 45, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideMinusMaximumLife3_"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Life", statOrder = { 1574 }, level = 68, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideMinusMaximumMana0_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideMinusMaximumMana1"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideMinusMaximumMana2__"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Mana", statOrder = { 1584 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideMinusMaximumMana3_"] = { type = "ScourgeDownside", affix = "", "-(40-36) to maximum Mana", statOrder = { 1584 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideReducedGlobalDefences0"] = { type = "ScourgeDownside", affix = "", "(6-10)% reduced Global Defences", statOrder = { 2838 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideReducedGlobalDefences1"] = { type = "ScourgeDownside", affix = "", "(11-15)% reduced Global Defences", statOrder = { 2838 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideReducedGlobalDefences2"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Global Defences", statOrder = { 2838 }, level = 45, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideReducedGlobalDefences3__"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Global Defences", statOrder = { 2838 }, level = 68, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideDealNoDamageYourself_"] = { type = "ScourgeDownside", affix = "", "You can't deal Damage with your Skills yourself", statOrder = { 2255 }, level = 68, group = "HellscapeDownsideDealNoDamageYourself", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideReducedMinionLife2_"] = { type = "ScourgeDownside", affix = "", "Minions have (30-33)% reduced maximum Life", statOrder = { 1771 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeDownsideReducedMinionLife3_"] = { type = "ScourgeDownside", affix = "", "Minions have (36-39)% reduced maximum Life", statOrder = { 1771 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["HellscapeDownsideReservationEfficiency3"] = { type = "ScourgeDownside", affix = "", "(18-24)% reduced Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideIncreasedChanceToBeCrit3__"] = { type = "ScourgeDownside", affix = "", "Hits have +10% additional Critical Strike Chance against you", statOrder = { 3136 }, level = 68, group = "HellscapeDownsideIncreasedChanceToBeCrit", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideHinderedOnHitBySpells3__"] = { type = "ScourgeDownside", affix = "", "Spell Hits Hinder you", statOrder = { 5645 }, level = 68, group = "HellscapeDownsideHinderedOnHitBySpells", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideChanceToBeSilencedWhenHit3__"] = { type = "ScourgeDownside", affix = "", "(21-30)% chance to Curse you with Silence when Hit", statOrder = { 6012 }, level = 68, group = "HellscapeDownsideChanceToBeSilencedWhenHit", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent0__"] = { type = "ScourgeDownside", affix = "", "(21-30)% reduced Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent1_"] = { type = "ScourgeDownside", affix = "", "(31-40)% reduced Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent2_"] = { type = "ScourgeDownside", affix = "", "(41-50)% reduced Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 45, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent3"] = { type = "ScourgeDownside", affix = "", "(51-60)% reduced Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 68, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["HellscapeDownsideMaximumElementalResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to all maximum Elemental Resistances", statOrder = { 1648 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["HellscapeDownsideMaximumChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to maximum Chaos Resistance", statOrder = { 1645 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos", "resistance" }, }, - ["HellscapeDownsideElementalResistanceMinion2__"] = { type = "ScourgeDownside", affix = "", "Minions have -(33-30)% to all Elemental Resistances", statOrder = { 2917 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["HellscapeDownsideElementalResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(39-36)% to all Elemental Resistances", statOrder = { 2917 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["HellscapeDownsideChaosResistanceMinion2"] = { type = "ScourgeDownside", affix = "", "Minions have -(51-42)% to Chaos Resistance", statOrder = { 2918 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["HellscapeDownsideChaosResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(63-54)% to Chaos Resistance", statOrder = { 2918 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["HellscapeDownsideAllAilmentDuration2"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Duration of Ailments on Enemies", statOrder = { 1865 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, }, - ["HellscapeDownsideAllAilmentDuration3__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Duration of Ailments on Enemies", statOrder = { 1865 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, }, - ["HellscapeDownsideElementalDurationOnSelf2"] = { type = "ScourgeDownside", affix = "", "(17-19)% increased Elemental Ailment Duration on you", statOrder = { 1872 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["HellscapeDownsideElementalDurationOnSelf3__"] = { type = "ScourgeDownside", affix = "", "(20-22)% increased Elemental Ailment Duration on you", statOrder = { 1872 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["HellscapeDownsideLifeOnBlock2__"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Life when you Block", statOrder = { 1762 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, - ["HellscapeDownsideLifeOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Life when you Block", statOrder = { 1762 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, - ["HellscapeDownsideManaOnBlock2_"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Mana when you Block", statOrder = { 1763 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, - ["HellscapeDownsideManaOnBlock3_____"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Mana when you Block", statOrder = { 1763 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, - ["HellscapeDownsideEnergyShieldOnBlock2___"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Energy Shield when you Block", statOrder = { 1764 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, - ["HellscapeDownsideEnergyShieldOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Energy Shield when you Block", statOrder = { 1764 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, - ["HellscapeDownsideChanceToBlockAttacks2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Attack Damage", statOrder = { 2463 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["HellscapeDownsideChanceToBlockAttacks3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Attack Damage", statOrder = { 2463 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, - ["HellscapeDownsideChanceToBlockSpells2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Spell Damage", statOrder = { 1163 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, }, - ["HellscapeDownsideChanceToBlockSpells3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Spell Damage", statOrder = { 1163 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, }, - ["HellscapeDownsideChanceToSuppressSpells2"] = { type = "ScourgeDownside", affix = "", "-(18-15)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, }, - ["HellscapeDownsideChanceToSuppressSpells3"] = { type = "ScourgeDownside", affix = "", "-(24-21)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, }, - ["HellscapeDownsideSpellDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage1h1b_"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Spell Damage", statOrder = { 1228 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Spell Damage", statOrder = { 1228 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Spell Damage", statOrder = { 1228 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h1b_"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Spell Damage", statOrder = { 1228 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h2____"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Spell Damage", statOrder = { 1228 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Spell Damage", statOrder = { 1228 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideSpellDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Spell Damage", statOrder = { 1228 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["HellscapeDownsideColdDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Cold Damage", statOrder = { 1371 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Cold Damage", statOrder = { 1371 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage1h2b_______"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Cold Damage", statOrder = { 1371 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Cold Damage", statOrder = { 1371 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h0__"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Cold Damage", statOrder = { 1371 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Cold Damage", statOrder = { 1371 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h2b_"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Cold Damage", statOrder = { 1371 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Cold Damage", statOrder = { 1371 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideFireDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Fire Damage", statOrder = { 1362 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Fire Damage", statOrder = { 1362 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Fire Damage", statOrder = { 1362 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Fire Damage", statOrder = { 1362 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h1__"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Fire Damage", statOrder = { 1362 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Fire Damage", statOrder = { 1362 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Fire Damage", statOrder = { 1362 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFireDamage2h3____"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Fire Damage", statOrder = { 1362 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideLightningDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Lightning Damage", statOrder = { 1382 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Lightning Damage", statOrder = { 1382 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage1h2b_"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Lightning Damage", statOrder = { 1382 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Lightning Damage", statOrder = { 1382 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Lightning Damage", statOrder = { 1382 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h2___"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Lightning Damage", statOrder = { 1382 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Lightning Damage", statOrder = { 1382 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Lightning Damage", statOrder = { 1382 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsidePhysicalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Global Physical Damage", statOrder = { 1236 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Global Physical Damage", statOrder = { 1236 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Global Physical Damage", statOrder = { 1236 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Global Physical Damage", statOrder = { 1236 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Global Physical Damage", statOrder = { 1236 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Global Physical Damage", statOrder = { 1236 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h2b__"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Global Physical Damage", statOrder = { 1236 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsidePhysicalDamage2h3______"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Global Physical Damage", statOrder = { 1236 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsideElementalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage1h1b__"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Elemental Damage", statOrder = { 1985 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Elemental Damage", statOrder = { 1985 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage1h3__"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Elemental Damage", statOrder = { 1985 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Elemental Damage", statOrder = { 1985 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Elemental Damage", statOrder = { 1985 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideElementalDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Elemental Damage", statOrder = { 1985 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["HellscapeDownsideChaosDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Chaos Damage", statOrder = { 1390 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Chaos Damage", statOrder = { 1390 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Chaos Damage", statOrder = { 1390 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Chaos Damage", statOrder = { 1390 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Chaos Damage", statOrder = { 1390 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Chaos Damage", statOrder = { 1390 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Chaos Damage", statOrder = { 1390 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideChaosDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Chaos Damage", statOrder = { 1390 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideMinionDamage0"] = { type = "ScourgeDownside", affix = "", "Minions deal (18-21)% reduced Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeDownsideMinionDamage1"] = { type = "ScourgeDownside", affix = "", "Minions deal (24-27)% reduced Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeDownsideMinionDamage2"] = { type = "ScourgeDownside", affix = "", "Minions deal (30-33)% reduced Damage", statOrder = { 1978 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeDownsideMinionDamage3"] = { type = "ScourgeDownside", affix = "", "Minions deal (36-39)% reduced Damage", statOrder = { 1978 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, - ["HellscapeDownsideProjectileDamagePercentage0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideProjectileDamagePercentage1__"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Projectile Damage", statOrder = { 2001 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideProjectileDamagePercentage2_"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Projectile Damage", statOrder = { 2001 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideProjectileDamagePercentage3_"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Projectile Damage", statOrder = { 2001 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideCriticalStrikeChance2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Global Critical Strike Chance", statOrder = { 1464 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, }, - ["HellscapeDownsideCriticalStrikeChance3_"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Global Critical Strike Chance", statOrder = { 1464 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, }, - ["HellscapeDownsideCriticalStrikeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeDownsideCriticalStrikeMultiplier3__"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeDownsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Critical Strike Chance with Bows", statOrder = { 1470 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeDownsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Critical Strike Chance with Bows", statOrder = { 1470 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, - ["HellscapeDownsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["HellscapeDownsideCriticalStrikeMultiplierWithBows3"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["HellscapeDownsideDamageOverTimeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(30-24)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, }, - ["HellscapeDownsideDamageOverTimeMultiplier3"] = { type = "ScourgeDownside", affix = "", "-(39-33)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, }, - ["HellscapeDownsideAttackSpeed0"] = { type = "ScourgeDownside", affix = "", "(9-12)% reduced Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeDownsideAttackSpeed1__"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeDownsideAttackSpeed2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Attack Speed", statOrder = { 1415 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeDownsideAttackSpeed3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Attack Speed", statOrder = { 1415 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["HellscapeDownsideCastSpeed0"] = { type = "ScourgeDownside", affix = "", "12% reduced Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeDownsideCastSpeed1_"] = { type = "ScourgeDownside", affix = "", "15% reduced Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeDownsideCastSpeed2"] = { type = "ScourgeDownside", affix = "", "18% reduced Cast Speed", statOrder = { 1451 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeDownsideCastSpeed3"] = { type = "ScourgeDownside", affix = "", "21% reduced Cast Speed", statOrder = { 1451 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, - ["HellscapeDownsideAttackAndCastSpeedMinion2_"] = { type = "ScourgeDownside", affix = "", "Minions have (21-24)% reduced Attack Speed", "Minions have (21-24)% reduced Cast Speed", statOrder = { 2912, 2913 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeDownsideAttackAndCastSpeedMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have (27-30)% reduced Attack Speed", "Minions have (27-30)% reduced Cast Speed", statOrder = { 2912, 2913 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["HellscapeDownsideLifeOnKill3__"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Life on Kill", statOrder = { 1754 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideManaOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Mana on Kill", statOrder = { 1756 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideEnergyShieldOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Energy Shield on Kill", statOrder = { 1755 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeDownsideAccuracyPercent2"] = { type = "ScourgeDownside", affix = "", "(33-42)% reduced Global Accuracy Rating", statOrder = { 1439 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, }, - ["HellscapeDownsideAccuracyPercent3__"] = { type = "ScourgeDownside", affix = "", "(45-51)% reduced Global Accuracy Rating", statOrder = { 1439 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, }, - ["HellscapeDownsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeDownside", affix = "", "-2 to Level of Socketed Gems", statOrder = { 167 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "gem" }, }, - ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel1h"] = { type = "ScourgeDownside", affix = "", "-2 to Level of all Spell Skill Gems", statOrder = { 1613 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "caster", "gem" }, }, - ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel2h"] = { type = "ScourgeDownside", affix = "", "-4 to Level of all Spell Skill Gems", statOrder = { 1613 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "gem" }, }, - ["HellscapeDownsideAdditionalRaisedZombie1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Raised Zombies", statOrder = { 2165 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, }, - ["HellscapeDownsideAdditionalSkeleton1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Skeletons", statOrder = { 2167 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, }, - ["HellscapeDownsideAreaDamage0___"] = { type = "ScourgeDownside", affix = "", "(24-30)% reduced Area Damage", statOrder = { 2040 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideAreaDamage1"] = { type = "ScourgeDownside", affix = "", "(33-45)% reduced Area Damage", statOrder = { 2040 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideAreaDamage2_"] = { type = "ScourgeDownside", affix = "", "(48-60)% reduced Area Damage", statOrder = { 2040 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideAreaDamage3"] = { type = "ScourgeDownside", affix = "", "(63-75)% reduced Area Damage", statOrder = { 2040 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["HellscapeDownsideRarityOfItemsFound0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, - ["HellscapeDownsideRarityOfItemsFound1_"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, - ["HellscapeDownsideRarityOfItemsFound2"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Rarity of Items found", statOrder = { 1601 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, - ["HellscapeDownsideRarityOfItemsFound3"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Rarity of Items found", statOrder = { 1601 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, - ["HellscapeDownsideLifeRegeneration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Life Regeneration rate", statOrder = { 1582 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideLifeRegeneration3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Life Regeneration rate", statOrder = { 1582 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideMovementVelocity0"] = { type = "ScourgeDownside", affix = "", "(6-7)% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeDownsideMovementVelocity1_"] = { type = "ScourgeDownside", affix = "", "(8-9)% reduced Movement Speed", statOrder = { 1803 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeDownsideMovementVelocity2"] = { type = "ScourgeDownside", affix = "", "(10-11)% reduced Movement Speed", statOrder = { 1803 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeDownsideMovementVelocity3"] = { type = "ScourgeDownside", affix = "", "(12-13)% reduced Movement Speed", statOrder = { 1803 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, - ["HellscapeDownsideMovementSkillsAreDisabled1_"] = { type = "ScourgeDownside", affix = "", "Your Movement Skills are Disabled", statOrder = { 10691 }, level = 68, group = "MovementSkillsAreDisabled", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegeneration0"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegeneration2__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Mana Regeneration Rate", statOrder = { 1589 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegeneration2b"] = { type = "ScourgeDownside", affix = "", "(31-35)% reduced Mana Regeneration Rate", statOrder = { 1589 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegeneration3"] = { type = "ScourgeDownside", affix = "", "(36-40)% reduced Mana Regeneration Rate", statOrder = { 1589 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegeneration3b"] = { type = "ScourgeDownside", affix = "", "(46-50)% reduced Mana Regeneration Rate", statOrder = { 1589 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRegenFlat0________"] = { type = "ScourgeDownside", affix = "", "Lose (3.3-4.2) Mana per Second", statOrder = { 8176 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat1"] = { type = "ScourgeDownside", affix = "", "Lose (4.6-5.7) Mana per Second", statOrder = { 8176 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat1b_"] = { type = "ScourgeDownside", affix = "", "Lose (5.8-6.7) Mana per Second", statOrder = { 8176 }, level = 15, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat1c"] = { type = "ScourgeDownside", affix = "", "Lose (7.7-8.3) Mana per Second", statOrder = { 8176 }, level = 25, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat1d"] = { type = "ScourgeDownside", affix = "", "Lose (9.3-10) Mana per Second", statOrder = { 8176 }, level = 35, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat2"] = { type = "ScourgeDownside", affix = "", "Lose (11-11.7) Mana per Second", statOrder = { 8176 }, level = 45, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat2b"] = { type = "ScourgeDownside", affix = "", "Lose (12.7-13.3) Mana per Second", statOrder = { 8176 }, level = 55, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideManaRegenFlat3"] = { type = "ScourgeDownside", affix = "", "Lose (14.3-15) Mana per Second", statOrder = { 8176 }, level = 68, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotLeechLife1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Life", statOrder = { 2572 }, level = 68, group = "CannotLeechLife", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideCannotLeechMana1_"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Mana", statOrder = { 2573 }, level = 68, group = "CannotLeechMana", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotLeechEnergyShield1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Energy Shield", statOrder = { 5004 }, level = 68, group = "CannotLeechEnergyShield", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideFlaskChargesGained2_"] = { type = "ScourgeDownside", affix = "", "(22-30)% reduced Flask Charges gained", statOrder = { 2188 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeDownsideFlaskChargesGained3__"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Flask Charges gained", statOrder = { 2188 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeDownsideFlaskChargesUsed2"] = { type = "ScourgeDownside", affix = "", "(32-40)% increased Flask Charges used", statOrder = { 2189 }, level = 45, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeDownsideFlaskChargesUsed3"] = { type = "ScourgeDownside", affix = "", "(42-50)% increased Flask Charges used", statOrder = { 2189 }, level = 68, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, - ["HellscapeDownsideFlaskLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Life Recovery from Flasks", statOrder = { 2064 }, level = 45, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["HellscapeDownsideFlaskLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Life Recovery from Flasks", statOrder = { 2064 }, level = 68, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, - ["HellscapeDownsideFlaskManaRecoveryRate2_"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Mana Recovery from Flasks", statOrder = { 2065 }, level = 45, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["HellscapeDownsideFlaskManaRecoveryRate3___"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Mana Recovery from Flasks", statOrder = { 2065 }, level = 68, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, - ["HellscapeDownsideCannotApplyBleed1"] = { type = "ScourgeDownside", affix = "", "Attacks cannot cause Bleeding", statOrder = { 2494 }, level = 68, group = "CannotCauseBleeding", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotApplyPoison1_"] = { type = "ScourgeDownside", affix = "", "Your Chaos Damage cannot Poison", "Your Physical Damage cannot Poison", statOrder = { 2893, 2895 }, level = 68, group = "CannotCausePoison", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotApplyStun1"] = { type = "ScourgeDownside", affix = "", "Your Hits cannot Stun Enemies", statOrder = { 1860 }, level = 68, group = "CannotStun", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCooldownRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(12-16)% reduced Cooldown Recovery Rate", statOrder = { 5010 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideLifePercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Life", statOrder = { 1576 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideManaPercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Mana", statOrder = { 1585 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideCursedWithDespair1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Despair", statOrder = { 10648 }, level = 68, group = "SelfCurseDespair", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithElementalWeakness1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Elemental Weakness", statOrder = { 10649 }, level = 68, group = "SelfCurseElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithEnfeeble1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Enfeeble", statOrder = { 10650 }, level = 68, group = "SelfCurseEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithTemporalChains1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Temporal Chains", statOrder = { 10653 }, level = 68, group = "SelfCurseTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithVulnerability1____"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Vulnerability", statOrder = { 10654 }, level = 68, group = "SelfCurseVulnerability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithConductivity1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Conductivity", statOrder = { 10647 }, level = 68, group = "SelfCurseConductivity", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithFlammability1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Flammability", statOrder = { 10651 }, level = 68, group = "SelfCurseFlammability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsideCursedWithFrostbite1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Frostbite", statOrder = { 10652 }, level = 68, group = "SelfCurseFrostbite", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["HellscapeDownsidePhysicalDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Physical Damage taken", statOrder = { 2246 }, level = 45, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, }, - ["HellscapeDownsidePhysicalDamageTaken3____"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Physical Damage taken", statOrder = { 2246 }, level = 68, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, }, - ["HellscapeDownsideFireDamageTaken2_"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Fire Damage taken", statOrder = { 2247 }, level = 45, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, }, - ["HellscapeDownsideFireDamageTaken3_"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Fire Damage taken", statOrder = { 2247 }, level = 68, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, }, - ["HellscapeDownsideColdDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Cold Damage taken", statOrder = { 3394 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, }, - ["HellscapeDownsideColdDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Cold Damage taken", statOrder = { 3394 }, level = 68, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, }, - ["HellscapeDownsideLightningDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Lightning Damage taken", statOrder = { 3393 }, level = 45, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, }, - ["HellscapeDownsideLightningDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Lightning Damage taken", statOrder = { 3393 }, level = 68, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, }, - ["HellscapeDownsideChaosDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Chaos Damage taken", statOrder = { 2248 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, }, - ["HellscapeDownsideChaosDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Chaos Damage taken", statOrder = { 2248 }, level = 68, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, }, - ["HellscapeDownsideTotemDuration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Duration", statOrder = { 1783 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["HellscapeDownsideTotemDuration3_"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Duration", statOrder = { 1783 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["HellscapeDownsideTotemLife2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Life", statOrder = { 1779 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideTotemLife3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Life", statOrder = { 1779 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideBrandDuration2"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (36-42)% reduced Duration", statOrder = { 10037 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, }, - ["HellscapeDownsideBrandDuration3_"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (45-51)% reduced Duration", statOrder = { 10037 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, }, - ["HellscapeDownsideNoLifeRegeneration1__"] = { type = "ScourgeDownside", affix = "", "You have no Life Regeneration", statOrder = { 2276 }, level = 45, group = "NoLifeRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideNoManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "You have no Mana Regeneration", statOrder = { 2277 }, level = 45, group = "NoManaRegeneration", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideNoEnergyShieldRegeneration1"] = { type = "ScourgeDownside", affix = "", "You cannot Regenerate Energy Shield", statOrder = { 5450 }, level = 45, group = "NoEnergyShieldRegen", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeDownsideNoEnergyShieldRecharge1"] = { type = "ScourgeDownside", affix = "", "You cannot Recharge Energy Shield", statOrder = { 5449 }, level = 45, group = "NoEnergyShieldRecharge", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeDownsideLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Life Recovery rate", statOrder = { 1583 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Life Recovery rate", statOrder = { 1583 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["HellscapeDownsideManaRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Mana Recovery rate", statOrder = { 1591 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideManaRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Mana Recovery rate", statOrder = { 1591 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, - ["HellscapeDownsideEnergyShieldRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Energy Shield Recovery rate", statOrder = { 1573 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeDownsideEnergyShieldRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Energy Shield Recovery rate", statOrder = { 1573 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes2_"] = { type = "ScourgeDownside", affix = "", "You take (22-30)% increased Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeDownside", affix = "", "You take (32-40)% increased Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, }, - ["HellscapeDownsideDamageIsUnlucky1___"] = { type = "ScourgeDownside", affix = "", "Damage with Hits is Unlucky", statOrder = { 5024 }, level = 45, group = "DamageIsUnlucky", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideColdPenetration1h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 2988 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 14% higher than actual value", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 16% higher than actual value", statOrder = { 2988 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideColdPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 20% higher than actual value", statOrder = { 2988 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideFirePenetration1h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 10% higher than actual value", statOrder = { 2986 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFirePenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 14% higher than actual value", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFirePenetration2h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 16% higher than actual value", statOrder = { 2986 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideFirePenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 20% higher than actual value", statOrder = { 2986 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["HellscapeDownsideLightningPenetration1h2__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 10% higher than actual value", statOrder = { 2989 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 14% higher than actual value", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 16% higher than actual value", statOrder = { 2989 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideLightningPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 20% higher than actual value", statOrder = { 2989 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["HellscapeDownsideChaosPenetration1h2___"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 10% higher than actual value", statOrder = { 9874 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, }, - ["HellscapeDownsideChaosPenetration1h3__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 14% higher than actual value", statOrder = { 9874 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, }, - ["HellscapeDownsideChaosPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 16% higher than actual value", statOrder = { 9874 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideChaosPenetration2h3_____"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 20% higher than actual value", statOrder = { 9874 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotCurse"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Curses", statOrder = { 10659 }, level = 45, group = "CannotCurse", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotApplyAilments1___"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Elemental Ailments", statOrder = { 1867 }, level = 45, group = "CannotApplyFireAilments", weightKey = { "sceptre", "wand", "staff", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, - ["HellscapeDownsideAdditionalTraps1"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Traps placed at a time", statOrder = { 2260 }, level = 45, group = "TrapsAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["HellscapeDownsideAdditionalMines1_"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Remote Mines placed at a time", statOrder = { 2261 }, level = 45, group = "AdditionalRemoteMinesAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["HellscapeDownsideEffectOfNonDamagingAilments2"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeDownsideEffectOfNonDamagingAilments3"] = { type = "ScourgeDownside", affix = "", "(50-60)% reduced Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, - ["HellscapeDownsideNearbyEnemiesTakeReducedPhysicalDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies take 9% reduced Physical Damage", statOrder = { 7923 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsideNearbyEnemiesTakeReducedFireDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Fire Resistance", statOrder = { 7919 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["HellscapeDownsideNearbyEnemiesTakeReducedColdDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Cold Resistance", statOrder = { 7917 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["HellscapeDownsideNearbyEnemiesTakeReducedLightningDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Lightning Resistance", statOrder = { 7921 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["HellscapeDownsideNearbyEnemiesTakeReducedChaosDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Chaos Resistance", statOrder = { 7916 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["HellscapeDownsideCurseEffect2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Effect of your Curses", statOrder = { 2601 }, level = 45, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeDownsideCurseEffect3__"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Effect of your Curses", statOrder = { 2601 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeDownsideAuraEffectOfNonCurseSkills2"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, - ["HellscapeDownsideAuraEffectOfNonCurseSkills3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, - ["HellscapeDownsideAdditionalCurse1__"] = { type = "ScourgeDownside", affix = "", "You can apply one fewer Curse", statOrder = { 2173 }, level = 68, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, - ["HellscapeDownsideMaximumEnduranceCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge" }, }, - ["HellscapeDownsideMaximumFrenzyCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge" }, }, - ["HellscapeDownsideMaximumPowerCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Power Charges", statOrder = { 1819 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge" }, }, - ["HellscapeDownsideDealNoPhysicalDamage___"] = { type = "ScourgeDownside", affix = "", "Deal no Physical Damage", statOrder = { 2795 }, level = 1, group = "DealNoPhysicalDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["HellscapeDownsideDealNoFireDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Fire Damage", statOrder = { 5013 }, level = 1, group = "DealNoFireDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, }, - ["HellscapeDownsideDealNoColdDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Cold Damage", statOrder = { 2797 }, level = 1, group = "DealNoColdDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HellscapeDownsideDealNoLightningDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Lightning Damage", statOrder = { 5014 }, level = 1, group = "DealNoLightningDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, }, - ["HellscapeDownsideDealNoChaosDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Chaos Damage", statOrder = { 5012 }, level = 1, group = "DealNoChaosDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["HellscapeDownsideCannotGainCharges"] = { type = "ScourgeDownside", affix = "", "Cannot gain Charges", statOrder = { 5437 }, level = 68, group = "CannotGainCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["HellscapeDownsideCriticalStrikesDealNoExtraDamage"] = { type = "ScourgeDownside", affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2683 }, level = 45, group = "CriticalStrikesDealNoExtraDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideDamageTakenOnFullLife2"] = { type = "ScourgeDownside", affix = "", "12% increased Damage taken while on Full Life", statOrder = { 6124 }, level = 45, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideDamageTakenOnFullLife3_"] = { type = "ScourgeDownside", affix = "", "20% increased Damage taken while on Full Life", statOrder = { 6124 }, level = 68, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideFishingLineStrength"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Fishing Line Strength", statOrder = { 2849 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideFishingPoolConsumption"] = { type = "ScourgeDownside", affix = "", "(50-100)% increased Fishing Pool Consumption", statOrder = { 2850 }, level = 45, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["HellscapeDownsideFishRotWhenCaught"] = { type = "ScourgeDownside", affix = "", "Fish Rot upon being Caught", statOrder = { 6603 }, level = 1, group = "FishRotWhenCaught", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideFishingReelStability"] = { type = "ScourgeDownside", affix = "", "(30-60)% reduced Reeling Stability", statOrder = { 6616 }, level = 1, group = "FishingReelStability", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["HellscapeDownsideCannotFishFromWater_______"] = { type = "ScourgeDownside", affix = "", "Cannot Fish while standing in Water", statOrder = { 5436 }, level = 68, group = "CannotFishFromWater", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["IncreasedAttackSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, - ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Attack Speed", statOrder = { 1415 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, - ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Critical Strike Chance for Attacks", statOrder = { 4849 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, - ["AddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (3-5) to (7-9) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-12) to (18-21) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Physical Damage to Attacks", statOrder = { 1271 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-8) to (13-15) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-16) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-42) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-49) Fire Damage to Attacks", statOrder = { 1365 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (28-33) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-21) to (32-38) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-44) Cold Damage to Attacks", statOrder = { 1374 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (1-2) to (22-24) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (1-3) to (24-26) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (1-3) to (27-28) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-6) to (55-59) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (63-68) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Attacks", statOrder = { 1385 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Chaos Damage to Attacks", statOrder = { 1392 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["HeraldBonusAshEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ash has (15-17)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ash has (18-20)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ash has (21-23)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ash has (27-28)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ash has (29-30)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (27-29)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (30-32)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (36-37)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (38-39)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (36-38)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (39-41)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (42-44)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (45-46)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (47-48)% increased Buff Effect", statOrder = { 7116 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ice has (15-17)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ice has (18-20)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ice has (21-23)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ice has (27-28)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ice has (29-30)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (27-29)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (30-32)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (36-37)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (38-39)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (36-38)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (39-41)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (42-44)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (45-46)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (47-48)% increased Buff Effect", statOrder = { 7120 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Thunder has (15-17)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Thunder has (18-20)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Thunder has (21-23)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Thunder has (27-28)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Thunder has (29-30)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (27-29)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (30-32)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (36-37)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (38-39)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (36-38)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (39-41)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (42-44)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (45-46)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (47-48)% increased Buff Effect", statOrder = { 7130 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Purity has (15-17)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Purity has (18-20)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Purity has (21-23)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Purity has (27-28)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Purity has (29-30)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (27-29)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (30-32)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (36-37)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (38-39)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (36-38)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (39-41)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (42-44)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (45-46)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (47-48)% increased Buff Effect", statOrder = { 7124 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Agony has (15-17)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Agony has (18-20)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Agony has (21-23)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Agony has (27-28)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Agony has (29-30)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (27-29)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (30-32)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (36-37)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (38-39)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (36-38)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (39-41)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (42-44)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (45-46)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (47-48)% increased Buff Effect", statOrder = { 7112 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IgniteProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.2 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.3 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.4 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.1 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.2 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["IgniteProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.3 metres", statOrder = { 2223 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FreezeProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.2 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.3 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.4 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FreezeProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.1 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.2 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["FreezeProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.3 metres", statOrder = { 2226 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ShockProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.2 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.3 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.4 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.1 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.2 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ShockProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.3 metres", statOrder = { 2227 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["StunThresholdReductionEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["StunThresholdReductionEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% reduced Enemy Stun Threshold", statOrder = { 1522 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["MinionDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions deal (14-16)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions deal (17-19)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions deal (20-22)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions deal (23-25)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions deal (26-27)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions deal (28-29)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (26-28)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (29-31)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (32-34)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (35-37)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (38-39)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (40-41)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (38-40)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (41-43)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (44-46)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (47-49)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (50-51)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, - ["MinionDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (52-53)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, - ["TrapThrowSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["TrapThrowSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Trap Throwing Speed", statOrder = { 1932 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["MineLayingSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Mine Throwing Speed", statOrder = { 1933 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["ExtinguishOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["ExtinguishOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% chance to Extinguish Enemies on Hit", statOrder = { 6534 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["DamagePerFrenzyChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit1"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit2"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit3"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit4"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit5"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicit6"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, - ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9188 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnHitImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6894 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, - ["RageOnAttackHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6843 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, - ["ChanceToIntimidateOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidate Enemies for 4 seconds on Hit", statOrder = { 5720 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Unnerve Enemies for 4 seconds on Hit", statOrder = { 5730 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit1"] = { type = "Eater", affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit2"] = { type = "Eater", affix = "", "+6% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit3"] = { type = "Eater", affix = "", "+7% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit4"] = { type = "Eater", affix = "", "+8% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit5"] = { type = "Eater", affix = "", "+9% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicit6"] = { type = "Eater", affix = "", "+10% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +7% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +8% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +9% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +13% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +14% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, - ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +15% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6490 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["FireExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -20% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -21% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, - ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -22% to Fire Resistance", statOrder = { 6584 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, - ["ColdExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -20% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -21% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, - ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -22% to Cold Resistance", statOrder = { 5828 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, - ["LightningExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, - ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance", statOrder = { 7463 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, - ["ArmourPenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, - ["ArmourPenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, - ["WitherExpireSpeedEldritchImplicit1"] = { type = "Eater", affix = "", "Withered you Inflict expires (10-12)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicit2"] = { type = "Eater", affix = "", "Withered you Inflict expires (13-15)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicit3"] = { type = "Eater", affix = "", "Withered you Inflict expires (16-18)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicit4"] = { type = "Eater", affix = "", "Withered you Inflict expires (19-20)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicit5"] = { type = "Eater", affix = "", "Withered you Inflict expires (21-22)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicit6"] = { type = "Eater", affix = "", "Withered you Inflict expires (23-24)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (19-21)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (22-24)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (25-27)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (28-29)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (30-31)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (32-33)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (28-30)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (31-33)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (34-36)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (37-39)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (40-42)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, - ["WitherExpireSpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (43-45)% slower", statOrder = { 10622 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, - ["ConvertPhysicalToFireEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ConvertPhysicalToColdEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["ConvertPhysicalToLightningEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["ConvertPhysicalToChaosEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Chaos Damage", statOrder = { 1967 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["FireDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["FireDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Fire Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Cold Damage Leeched as Life", statOrder = { 1682 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Lightning Damage Leeched as Life", statOrder = { 1686 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Physical Damage Leeched as Life", statOrder = { 1673 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Chaos Damage Leeched as Life", statOrder = { 1689 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100STREldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100STREldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6059 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100DEXEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6057 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["DamagePer100INTEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["DamagePer100INTEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6058 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, - ["BlindEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BlindEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Blind Effect", statOrder = { 5224 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ExertedAttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Exerted Attacks deal (20-22)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Exerted Attacks deal (23-25)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Exerted Attacks deal (32-33)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Exerted Attacks deal (34-35)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (38-39)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (40-41)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (38-40)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (41-43)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (44-45)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, - ["ExertedAttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (46-47)% increased Damage", statOrder = { 6361 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 15% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 20% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 25% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 30% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 35% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 40% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 45% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 50% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 55% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 60% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 65% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 70% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 75% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 80% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 85% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 90% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 95% chance to Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, - ["GlobalMaimOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks always Maim on Hit", statOrder = { 8159 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit1"] = { type = "Eater", affix = "", "15% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit2"] = { type = "Eater", affix = "", "20% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit3"] = { type = "Eater", affix = "", "25% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit4"] = { type = "Eater", affix = "", "30% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit5"] = { type = "Eater", affix = "", "35% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicit6"] = { type = "Eater", affix = "", "40% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, - ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, - ["IncreasedAccuracyPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(9-10)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(11-12)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(13-14)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(15-16)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(17-18)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(19-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["MarkEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, - ["MarkEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of your Marks", statOrder = { 2603 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit1"] = { type = "Eater", affix = "", "+(43-45) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit2"] = { type = "Eater", affix = "", "+(46-48) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit3"] = { type = "Eater", affix = "", "+(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit4"] = { type = "Eater", affix = "", "+(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit5"] = { type = "Eater", affix = "", "+(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicit6"] = { type = "Eater", affix = "", "+(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(67-69) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(70-72) to Accuracy Rating per Frenzy Charge", statOrder = { 4522 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, - ["AdditionalPierceEldritchImplicit1"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicit2"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicit3"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicit4"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicit5"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicit6"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AdditionalPierceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1795 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["PoisonOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["PoisonOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Poison on Hit", statOrder = { 3178 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToBleedEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 5% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 10% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 20% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 30% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 15% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 20% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 45% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 50% chance to cause Bleeding", statOrder = { 2494 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4613 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AttackImpaleChanceEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, - ["AttackImpaleChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, - ["IncreasedCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, - ["IncreasedCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Cast Speed", statOrder = { 1451 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(28-30)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(31-33)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(34-36)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(37-39)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(40-42)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(43-45)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, - ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, - ["SpellAddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (27-35) to (54-63) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (31-40) to (63-72) Fire Damage to Spells", statOrder = { 1409 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (9-11) to (17-20) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-12) to (19-22) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-24) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-50) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (24-32) to (48-57) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (28-36) to (56-65) Cold Damage to Spells", statOrder = { 1410 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (2-4) to (34-36) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (2-4) to (37-40) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (2-4) to (41-44) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-8) to (83-90) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-10) to (96-103) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (5-11) to (110-119) Lightning Damage to Spells", statOrder = { 1411 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-25) to (39-44) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (22-28) to (45-51) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (25-33) to (51-59) Physical Damage to Spells", statOrder = { 1408 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-17) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-19) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-11) to (18-20) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-23) to (36-41) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Chaos Damage to Spells", statOrder = { 1412 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Fire Damage taken Recouped as Life", statOrder = { 6576 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Cold Damage taken Recouped as Life", statOrder = { 5823 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7456 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, - ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Physical Damage taken Recouped as Life", statOrder = { 9662 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, - ["CurseEffectFlammabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Flammability Curse Effect", statOrder = { 4018 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Frostbite Curse Effect", statOrder = { 4019 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectConductivityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Conductivity Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Vulnerability Curse Effect", statOrder = { 4021 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Elemental Weakness Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectDespairEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Despair Curse Effect", statOrder = { 6173 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Temporal Chains Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Enfeeble Curse Effect", statOrder = { 4017 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["CurseEffectPunishmentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Punishment Curse Effect", statOrder = { 4020 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, - ["ReducedAttackManaCostEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["ReducedAttackManaCostEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% reduced Mana Cost of Attacks", statOrder = { 4873 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6071 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["MinionLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (14-16)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (17-19)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (20-22)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (23-25)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (26-27)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (28-29)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (20-22)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (23-25)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (32-33)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (34-35)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (32-34)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (35-37)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (38-39)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (40-41)% increased maximum Life", statOrder = { 1771 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, - ["MinionRunSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (11-12)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (13-14)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (15-16)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (17-18)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (19-20)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (21-22)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (13-15)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (16-18)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (25-26)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (27-28)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (25-27)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (28-30)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (31-32)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, - ["MinionRunSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (33-34)% increased Movement Speed", statOrder = { 1774 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, - ["AreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Area of Effect", statOrder = { 1885 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["EnergyShieldRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "21% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "22% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "23% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "24% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "25% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "26% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 24% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 26% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 31% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 32% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6435 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["FireResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2986 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2988 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["LightningResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2989 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["IncreasedAilmentDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(13-14)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(15-16)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(17-18)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(19-20)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(21-22)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(23-24)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Duration of Ailments on Enemies", statOrder = { 1865 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-33)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-35)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (32-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-37)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-39)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (40-41)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2453 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2454 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2456 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, - ["ManaReservationEfficiencyEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, - ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, - ["ChanceToIgniteEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToIgniteEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Ignite", statOrder = { 2031 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToFreezeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Freeze", statOrder = { 2034 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToShockEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ChanceToShockEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Shock", statOrder = { 2038 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ManaRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "(31-33)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "(34-36)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["EnemyLifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate", statOrder = { 6426 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit2"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit3"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit4"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit5"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit6"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1984 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, - ["AttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, - ["AttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Attack Damage", statOrder = { 1203 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, - ["SpellDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["SpellDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Spell Damage", statOrder = { 1228 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["ArcaneSurgeEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["MovementVelocityEldritchImplicit1"] = { type = "Exarch", affix = "", "5% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicit2"] = { type = "Exarch", affix = "", "6% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicit3"] = { type = "Exarch", affix = "", "7% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicit4"] = { type = "Exarch", affix = "", "8% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicit5"] = { type = "Exarch", affix = "", "9% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicit6"] = { type = "Exarch", affix = "", "10% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, - ["MovementVelocityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Movement Speed", statOrder = { 1803 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, - ["ActionSpeedImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4532 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, - ["ScorchedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 2 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 3 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 10 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 11 seconds", statOrder = { 5265 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 2 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 3 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 10 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 11 seconds", statOrder = { 5263 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 2 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 3 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 10 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 11 seconds", statOrder = { 5264 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, - ["FireResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["FireResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Resistance", statOrder = { 1630 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["ColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["ColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Resistance", statOrder = { 1636 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["LightningResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["LightningResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Lightning Resistance", statOrder = { 1641 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["ChaosResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(6-7)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-9)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(10-11)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(12-13)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(14-15)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(16-17)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(12-13)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-15)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(16-17)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(24-25)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-27)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, - ["ChaosResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(28-29)% to Chaos Resistance", statOrder = { 1646 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, - ["DamagePerEnduranceChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["SummonTotemCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Totem Placement speed", statOrder = { 2583 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["BrandAttachmentRangeEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["BrandAttachmentRangeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Brand Attachment range", statOrder = { 10042 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FireGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4102 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IceGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4103 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4104 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RockGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4101 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4105 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 5002 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh Offering has (6-7)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh Offering has (8-9)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh Offering has (10-11)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh Offering has (12-13)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh Offering has (14-15)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh Offering has (16-17)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (12-13)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (14-15)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (16-17)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (24-25)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (26-27)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (28-29)% increased Effect", statOrder = { 1178 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Bone Offering has (6-7)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Bone Offering has (8-9)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Bone Offering has (10-11)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Bone Offering has (12-13)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Bone Offering has (14-15)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Bone Offering has (16-17)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (12-13)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (14-15)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (16-17)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (24-25)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (26-27)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BoneOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (28-29)% increased Effect", statOrder = { 1177 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Spirit Offering has (6-7)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Spirit Offering has (8-9)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Spirit Offering has (10-11)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Spirit Offering has (12-13)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Spirit Offering has (14-15)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Spirit Offering has (16-17)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (12-13)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (14-15)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (16-17)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (24-25)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (26-27)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SpiritOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (28-29)% increased Effect", statOrder = { 1179 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AvoidIgniteEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidIgniteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidFreezeEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidFreezeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidShockEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidShockEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidStunEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AvoidStunEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["OnslaughtEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["LifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Life Regeneration rate", statOrder = { 1582 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, - ["ArmourFromHelmetGlovesEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, - ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4767 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, - ["FasterIgniteDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 5% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 6% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 7% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 8% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 9% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 10% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 8% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 9% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 10% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 14% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 15% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterIgniteDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 16% faster", statOrder = { 2569 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 5% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 6% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 7% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 8% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 9% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 10% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 8% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 9% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 10% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 14% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 15% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterPoisonDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 16% faster", statOrder = { 6550 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 5% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 6% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 7% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 8% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 9% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 10% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 8% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 9% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 10% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 14% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 15% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["FasterBleedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 16% faster", statOrder = { 6549 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["PhysicalAddedAsFireEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1937 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, - ["PhysicalAddedAsColdEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1938 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, - ["PhysicalAddedAsLightningEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1939 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, - ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit1"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit2"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit3"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit4"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit5"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit6"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, - ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1581 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, - ["IncreasedStunThresholdEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["IncreasedStunThresholdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Stun Threshold", statOrder = { 3277 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4386 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["WarcrySpeedEldritchImplicit1"] = { type = "Eater", affix = "", "(15-16)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicit2"] = { type = "Eater", affix = "", "(17-18)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicit3"] = { type = "Eater", affix = "", "(19-20)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicit4"] = { type = "Eater", affix = "", "(21-22)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicit5"] = { type = "Eater", affix = "", "(23-24)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicit6"] = { type = "Eater", affix = "", "(25-26)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["WarcrySpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Speed", statOrder = { 3282 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Enduring Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Enduring Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Enduring Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 3892 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 7304 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (38-39)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (40-41)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (38-40)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (41-43)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (44-45)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (46-47)% increased Damage", statOrder = { 9966 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage", statOrder = { 4675 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Rallying Cry Buff Effect", statOrder = { 4119 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Battlemage's Cry Buff Effect", statOrder = { 5064 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Infernal Cry has (15-17)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Infernal Cry has (18-20)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Infernal Cry has (21-23)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (42-44)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (45-47)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (48-50)% increased Area of Effect", statOrder = { 7272 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "General's Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "General's Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "General's Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 6862 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, - ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid Elemental Ailments", statOrder = { 1848 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["GlobalCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "6% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "7% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "8% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "9% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "10% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ElusiveEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Elusive Effect", statOrder = { 6354 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1496 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["FireDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["FireDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Fire Damage", statOrder = { 1362 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ColdDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Cold Damage", statOrder = { 1371 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["LightningDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["LightningDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Lightning Damage", statOrder = { 1382 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["IncreasedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["IncreasedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Chaos Damage", statOrder = { 1390 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["PhysicalDamagePercentEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PhysicalDamagePercentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Global Physical Damage", statOrder = { 1236 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["ArcticArmourBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Arctic Armour Buff Effect", statOrder = { 4027 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh and Stone has (15-17)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh and Stone has (18-20)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh and Stone has (21-23)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (42-44)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (45-47)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (48-50)% increased Area of Effect", statOrder = { 6653 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Tempest Shield has (15-17)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Tempest Shield has (18-20)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Tempest Shield has (21-23)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (42-44)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (45-47)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (48-50)% increased Buff Effect", statOrder = { 10364 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "5% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "6% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "7% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "8% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "9% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, - ["AuraEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["AuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, - ["CurseEffectivenessEldritchImplicit1"] = { type = "Exarch", affix = "", "7% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicit2"] = { type = "Exarch", affix = "", "8% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicit3"] = { type = "Exarch", affix = "", "9% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicit4"] = { type = "Exarch", affix = "", "10% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicit5"] = { type = "Exarch", affix = "", "11% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicit6"] = { type = "Exarch", affix = "", "12% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, - ["CurseEffectivenessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, - ["OfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(21-22)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(23-24)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["OfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Offerings", statOrder = { 4068 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["WarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FlaskEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks applied to you have (6-7)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks applied to you have (8-9)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks applied to you have (10-11)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks applied to you have (12-13)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks applied to you have (14-15)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks applied to you have (16-17)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (12-13)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (14-15)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (16-17)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (24-25)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (26-27)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, - ["FlaskEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (28-29)% increased Effect", statOrder = { 2747 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(8-9)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(10-11)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(12-13)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(14-15)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(16-17)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(18-19)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-31)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["FlaskGainPerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FlaskGainPerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3483 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["MaximumResistancesEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, - ["MaximumResistancesEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1647 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1628 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1634 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1639 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1645 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["EnduranceChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 15 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 14 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 13 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 12 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 11 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 10 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 11 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 10 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 9 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 8 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 5 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 4 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 3 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 2 seconds", statOrder = { 5252 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 15 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 14 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 13 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 12 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 11 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 10 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 11 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 10 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 9 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 8 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 5 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 4 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 3 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 2 seconds", statOrder = { 5253 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Power Charge every 15 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Power Charge every 14 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Power Charge every 13 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Power Charge every 12 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Power Charge every 11 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Power Charge every 10 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 11 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 10 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 9 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 8 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 5 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 4 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 3 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["PowerChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 2 seconds", statOrder = { 5254 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["BlockPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["BlockPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Attack Damage", statOrder = { 1143 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["SpellBlockPercentageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Spell Damage", statOrder = { 1165 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Armour", statOrder = { 1546 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Evasion Rating", statOrder = { 1554 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased maximum Energy Shield", statOrder = { 1566 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["PlayerReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["PlayerReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Damage from your Hits cannot be Reflected", statOrder = { 8 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["MinionReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9359 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Anger has (19-21)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Anger has (22-24)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Anger has (25-27)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Anger has (28-30)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Anger has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Anger has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (37-39)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (40-42)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (49-51)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (52-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (55-57)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["AngerAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (58-60)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Hatred has (19-21)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Hatred has (22-24)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Hatred has (25-27)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Hatred has (28-30)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Hatred has (31-33)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Hatred has (34-36)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (31-33)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (34-36)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (37-39)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (40-42)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (49-51)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (52-54)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (55-57)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HatredAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (58-60)% increased Aura Effect", statOrder = { 3371 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Wrath has (19-21)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Wrath has (22-24)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Wrath has (25-27)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Wrath has (28-30)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Wrath has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Wrath has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (37-39)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (40-42)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (49-51)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (52-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (55-57)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["WrathAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (58-60)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Malevolence has (19-21)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Malevolence has (22-24)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Malevolence has (25-27)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Malevolence has (28-30)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Malevolence has (31-33)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Malevolence has (34-36)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (31-33)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (34-36)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (37-39)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (40-42)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (49-51)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (52-54)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (55-57)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (58-60)% increased Aura Effect", statOrder = { 6166 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Zealotry has (19-21)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Zealotry has (22-24)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Zealotry has (25-27)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Zealotry has (28-30)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Zealotry has (31-33)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Zealotry has (34-36)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (31-33)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (34-36)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (37-39)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (40-42)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (49-51)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (52-54)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (55-57)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["ZealotryAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (58-60)% increased Aura Effect", statOrder = { 10720 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Pride has (19-21)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Pride has (22-24)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Pride has (25-27)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Pride has (28-30)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Pride has (31-33)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Pride has (34-36)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (31-33)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (34-36)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (37-39)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (40-42)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (49-51)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (52-54)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (55-57)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PrideAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (58-60)% increased Aura Effect", statOrder = { 9709 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Determination has (19-21)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Determination has (22-24)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Determination has (25-27)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Determination has (28-30)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Determination has (31-33)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Determination has (34-36)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (31-33)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (34-36)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (37-39)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (40-42)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (49-51)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (52-54)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (55-57)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DeterminationAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (58-60)% increased Aura Effect", statOrder = { 3372 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Grace has (19-21)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Grace has (22-24)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Grace has (25-27)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Grace has (28-30)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Grace has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Grace has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (37-39)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (40-42)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (49-51)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (52-54)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (55-57)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["GraceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (58-60)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Discipline has (19-21)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Discipline has (22-24)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Discipline has (25-27)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Discipline has (28-30)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Discipline has (31-33)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Discipline has (34-36)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (31-33)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (34-36)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (37-39)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (40-42)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (49-51)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (52-54)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (55-57)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["DisciplineAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (58-60)% increased Aura Effect", statOrder = { 3373 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Haste has (19-21)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Haste has (22-24)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Haste has (25-27)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Haste has (28-30)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Haste has (31-33)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Haste has (34-36)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (31-33)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (34-36)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (37-39)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (40-42)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (49-51)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (52-54)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (55-57)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["HasteAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (58-60)% increased Aura Effect", statOrder = { 3369 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Elements has (19-21)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Elements has (22-24)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Elements has (25-27)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Elements has (28-30)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (37-39)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (40-42)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (49-51)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (52-54)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (55-57)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfElementsEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (58-60)% increased Aura Effect", statOrder = { 3362 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Fire has (19-21)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Fire has (22-24)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Fire has (25-27)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Fire has (28-30)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (37-39)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (40-42)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (49-51)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (52-54)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (55-57)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfFireEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (58-60)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Ice has (19-21)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Ice has (22-24)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Ice has (25-27)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Ice has (28-30)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (37-39)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (40-42)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (49-51)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (52-54)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (55-57)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (58-60)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Lightning has (19-21)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Lightning has (22-24)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Lightning has (25-27)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Lightning has (28-30)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (37-39)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (40-42)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (49-51)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (52-54)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (55-57)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["PurityOfLightningEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (58-60)% increased Aura Effect", statOrder = { 3365 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, - ["FortifyOnMeleeHitEldritchImplicit1"] = { type = "Eater", affix = "", "Melee Hits have (6-7)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicit2"] = { type = "Eater", affix = "", "Melee Hits have (8-9)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicit3"] = { type = "Eater", affix = "", "Melee Hits have (10-11)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicit4"] = { type = "Eater", affix = "", "Melee Hits have (12-13)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicit5"] = { type = "Eater", affix = "", "Melee Hits have (14-15)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicit6"] = { type = "Eater", affix = "", "Melee Hits have (16-17)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (12-13)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (14-15)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (16-17)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (24-25)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (26-27)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, - ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (28-29)% chance to Fortify", statOrder = { 2269 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, - ["AllResistancesEldritchImplicit1"] = { type = "Eater", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicit2"] = { type = "Eater", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicit3"] = { type = "Eater", affix = "", "+(9-10)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicit4"] = { type = "Eater", affix = "", "+(11-12)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicit5"] = { type = "Eater", affix = "", "+(13-14)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicit6"] = { type = "Eater", affix = "", "+(15-16)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(11-12)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(13-14)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(15-16)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-24)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, - ["AllResistancesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to all Elemental Resistances", statOrder = { 1624 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, - ["LifeRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["LifeRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Recovery rate", statOrder = { 1583 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, - ["ManaRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, - ["ManaRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Recovery rate", statOrder = { 1591 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Energy Shield Recovery rate", statOrder = { 1573 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DamageTakenPerStrengthEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Strength", statOrder = { 5251 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Dexterity", statOrder = { 5249 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Intelligence", statOrder = { 5250 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(7-8)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(9-10)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(11-12)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence1"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence2"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence3"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence4"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence5"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["SkillEffectDurationUniquePresence6"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence1"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence2"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence3"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence4"] = { type = "Eater", affix = "", "(25-26)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence5"] = { type = "Eater", affix = "", "(27-28)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["SkillEffectDurationPinnaclePresence6"] = { type = "Eater", affix = "", "(29-30)% increased Skill Effect Duration", statOrder = { 1900 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, - ["RecombinatorSpecialMaximumEnduranceCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge" }, }, - ["RecombinatorSpecialMaximumFrenzyCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge" }, }, - ["RecombinatorSpecialMaximumPowerCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, }, - ["RecombinatorSpecialKeystoneMinionInstability"] = { type = "Suffix", affix = "of the Sentinel", "Minion Instability", statOrder = { 10797 }, level = 68, group = "MinionInstability", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["RecombinatorSpecialKeystoneResoluteTechnique"] = { type = "Suffix", affix = "of the Sentinel", "Resolute Technique", statOrder = { 10827 }, level = 68, group = "ResoluteTechnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, }, - ["RecombinatorSpecialKeystoneBloodMagic"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10771 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, - ["RecombinatorSpecialKeystonePainAttunement"] = { type = "Suffix", affix = "of the Sentinel", "Pain Attunement", statOrder = { 10799 }, level = 68, group = "PainAttunement", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["RecombinatorSpecialKeystoneElementalEquilibrium"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Equilibrium", statOrder = { 10780 }, level = 68, group = "ElementalEquilibrium", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["RecombinatorSpecialKeystoneIronGrip"] = { type = "Suffix", affix = "of the Sentinel", "Iron Grip", statOrder = { 10815 }, level = 68, group = "IronGrip", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["RecombinatorSpecialKeystonePointBlank"] = { type = "Suffix", affix = "of the Sentinel", "Point Blank", statOrder = { 10800 }, level = 68, group = "PointBlank", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, - ["RecombinatorSpecialKeystoneAcrobatics"] = { type = "Suffix", affix = "of the Sentinel", "Acrobatics", statOrder = { 10766 }, level = 68, group = "Acrobatics", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialKeystoneGhostReaver"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Reaver", statOrder = { 10786 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["RecombinatorSpecialKeystoneVaalPact"] = { type = "Suffix", affix = "of the Sentinel", "Vaal Pact", statOrder = { 10820 }, level = 68, group = "VaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["RecombinatorSpecialKeystoneElementalOverload"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Overload", statOrder = { 10781 }, level = 68, group = "ElementalOverload", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, - ["RecombinatorSpecialKeystoneAvatarOfFire"] = { type = "Suffix", affix = "of the Sentinel", "Avatar of Fire", statOrder = { 10769 }, level = 68, group = "AvatarOfFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["RecombinatorSpecialKeystoneEldritchBattery"] = { type = "Suffix", affix = "of the Sentinel", "Eldritch Battery", statOrder = { 10779 }, level = 68, group = "EldritchBattery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["RecombinatorSpecialKeystoneAncestralBond"] = { type = "Suffix", affix = "of the Sentinel", "Ancestral Bond", statOrder = { 10768 }, level = 68, group = "AncestralBond", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["RecombinatorSpecialKeystoneCrimsonDance"] = { type = "Suffix", affix = "of the Sentinel", "Crimson Dance", statOrder = { 10776 }, level = 68, group = "CrimsonDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["RecombinatorSpecialKeystonePerfectAgony"] = { type = "Suffix", affix = "of the Sentinel", "Perfect Agony", statOrder = { 10767 }, level = 68, group = "PerfectAgony", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, }, - ["RecombinatorSpecialKeystoneRunebinder"] = { type = "Suffix", affix = "of the Sentinel", "Runebinder", statOrder = { 10807 }, level = 68, group = "Runebinder", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, }, - ["RecombinatorSpecialKeystoneMortalConviction"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10771 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, - ["RecombinatorSpecialKeystoneCallToArms"] = { type = "Suffix", affix = "of the Sentinel", "Call to Arms", statOrder = { 10772 }, level = 68, group = "CallToArms", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialKeystoneTheAgnostic"] = { type = "Suffix", affix = "of the Sentinel", "The Agnostic", statOrder = { 10798 }, level = 68, group = "TheAgnostic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, - ["RecombinatorSpecialKeystoneSupremeEgo"] = { type = "Suffix", affix = "of the Sentinel", "Supreme Ego", statOrder = { 10816 }, level = 68, group = "SupremeEgo", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "aura" }, }, - ["RecombinatorSpecialKeystoneTheImpaler"] = { type = "Suffix", affix = "of the Sentinel", "The Impaler", statOrder = { 10791 }, level = 68, group = "Impaler", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["RecombinatorSpecialKeystoneDoomsday"] = { type = "Suffix", affix = "of the Sentinel", "Hex Master", statOrder = { 10789 }, level = 68, group = "HexMaster", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, - ["RecombinatorSpecialKeystoneLetheShade1"] = { type = "Suffix", affix = "of the Sentinel", "Lethe Shade", statOrder = { 10793 }, level = 68, group = "LetheShade", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, }, - ["RecombinatorSpecialKeystoneGhostDance"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Dance", statOrder = { 10785 }, level = 68, group = "GhostDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["RecombinatorSpecialKeystoneVersatileCombatant"] = { type = "Suffix", affix = "of the Sentinel", "Versatile Combatant", statOrder = { 10821 }, level = 68, group = "VersatileCombatant", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, - ["RecombinatorSpecialKeystoneMagebane"] = { type = "Suffix", affix = "of the Sentinel", "Magebane", statOrder = { 10794 }, level = 68, group = "Magebane", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialKeystoneSolipsism"] = { type = "Suffix", affix = "of the Sentinel", "Solipsism", statOrder = { 10813 }, level = 68, group = "Solipsism", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, }, - ["RecombinatorSpecialKeystoneDivineShield"] = { type = "Suffix", affix = "of the Sentinel", "Divine Shield", statOrder = { 10778 }, level = 68, group = "DivineShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["RecombinatorSpecialKeystoneIronWill"] = { type = "Suffix", affix = "of the Sentinel", "Iron Will", statOrder = { 10828 }, level = 68, group = "IronWill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, }, - ["RecombinatorSpecialMagicUtilityFlaskEffect"] = { type = "Prefix", affix = "Sentinel's", "Magic Utility Flasks applied to you have (20-25)% increased Effect", statOrder = { 2748 }, level = 68, group = "MagicUtilityFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, - ["RecombinatorSpecialAuraEffect"] = { type = "Suffix", affix = "of the Sentinel", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 68, group = "AuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, - ["RecombinatorSpecialFireDamageToAttacksPerStrength"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Fire Damage to Attacks per 10 Strength", statOrder = { 9243 }, level = 68, group = "FireDamageToAttacksPerStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, }, - ["RecombinatorSpecialColdDamageToAttacksPerDexterity"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9235 }, level = 68, group = "ColdDamageToAttacksPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, }, - ["RecombinatorSpecialLightningDamageToAttacksPerIntelligence"] = { type = "Prefix", affix = "Sentinel's", "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9248 }, level = 68, group = "LightningDamageToAttacksPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, }, - ["RecombinatorSpecialAllFireDamageCanShock"] = { type = "Suffix", affix = "of the Sentinel", "Your Fire Damage can Shock", statOrder = { 2881 }, level = 68, group = "AllFireDamageCanShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "lightning", "ailment" }, }, - ["RecombinatorSpecialAllColdDamageCanIgnite"] = { type = "Suffix", affix = "of the Sentinel", "Your Cold Damage can Ignite", statOrder = { 2876 }, level = 68, group = "AllColdDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "ailment" }, }, - ["RecombinatorSpecialAllLightningDamageCanFreeze"] = { type = "Suffix", affix = "of the Sentinel", "Your Lightning Damage can Freeze", statOrder = { 2888 }, level = 68, group = "AllLightningDamageCanFreeze", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, - ["RecombinatorSpecialMarkEffect"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of your Marks", statOrder = { 2603 }, level = 68, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["RecombinatorSpecialArcaneSurgeEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialArcaneSurgeEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Arcane Surge on you", statOrder = { 3293 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialOnslaughtEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialOnslaughtEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies1H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (10-15)% increased Damage", statOrder = { 10355 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies2H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (20-25)% increased Damage", statOrder = { 10355 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["RecombinatorSpecialSupportedByLevelFourEnlighten"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enlighten", statOrder = { 277 }, level = 68, group = "SupportedByEnlighten", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, - ["RecombinatorSpecialSupportedByLevelFourEnhance"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enhance", statOrder = { 276 }, level = 68, group = "SupportedByEnhance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, - ["RecombinatorSpecialSupportedByLevelFourEmpower"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Empower", statOrder = { 274 }, level = 68, group = "SupportedByEmpower", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, - ["RecombinatorSpecialTriggerSkillsDoubleDamage"] = { type = "Prefix", affix = "Sentinel's", "Socketed Triggered Skills deal Double Damage", statOrder = { 414 }, level = 68, group = "SocketedTriggeredSkillsDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "damage", "gem" }, }, - ["LifeRegeneration1Inverted"] = { type = "Suffix", affix = "of the Newt", "Lose (1-2) Life per second", statOrder = { 1580 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration2Inverted"] = { type = "Suffix", affix = "of the Lizard", "Lose (2.1-8) Life per second", statOrder = { 1580 }, level = 7, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration3Inverted"] = { type = "Suffix", affix = "of the Flatworm", "Lose (8.1-16) Life per second", statOrder = { 1580 }, level = 19, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration4Inverted"] = { type = "Suffix", affix = "of the Starfish", "Lose (16.1-24) Life per second", statOrder = { 1580 }, level = 31, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration5Inverted"] = { type = "Suffix", affix = "of the Hydra", "Lose (24.1-32) Life per second", statOrder = { 1580 }, level = 44, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration6Inverted"] = { type = "Suffix", affix = "of the Troll", "Lose (32.1-48) Life per second", statOrder = { 1580 }, level = 55, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration7Inverted"] = { type = "Suffix", affix = "of Ryslatha", "Lose (48.1-64) Life per second", statOrder = { 1580 }, level = 68, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["LifeRegeneration8Inverted"] = { type = "Suffix", affix = "of the Phoenix", "Lose (64.1-96) Life per second", statOrder = { 1580 }, level = 74, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["AddedPhysicalDamage1Inverted"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks against you", statOrder = { 1272 }, level = 5, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage2Inverted"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 13, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage3Inverted"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 19, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage4Inverted"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 28, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage5Inverted"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 35, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage6Inverted"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 44, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage7Inverted"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 52, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage8Inverted"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 64, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamage9Inverted"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 76, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedFireDamage1Inverted"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks against you", statOrder = { 1366 }, level = 1, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage2Inverted"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 12, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage3Inverted"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 20, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage4Inverted"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 28, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage5Inverted"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 35, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage6Inverted"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 44, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage7Inverted"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 52, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage8Inverted"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 64, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedFireDamage9Inverted"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 76, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedColdDamage1Inverted"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks against you", statOrder = { 1375 }, level = 2, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage2Inverted"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 13, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage3Inverted"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 21, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage4Inverted"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 29, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage5Inverted"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 36, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage6Inverted"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 45, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage7Inverted"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 53, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage8Inverted"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 65, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedColdDamage9Inverted"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 77, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedLightningDamage1Inverted"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 3, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage2Inverted"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 13, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage3Inverted"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 22, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage4Inverted"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 28, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage5Inverted"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 35, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage6Inverted"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 44, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage7Inverted"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 52, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage8Inverted"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 64, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AddedLightningDamage9Inverted"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 76, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["LifeLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriad3Inverted"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffix3Inverted"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1653 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["ManaLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1703 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1703 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1703 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1703 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["LifeRegenerationEnhancedLevel50ModInverted"] = { type = "Suffix", affix = "of Guatelitzi", "Lose (32-40) Life per second", "Lose 0.4% of Life per second", statOrder = { 1580, 1948 }, level = 50, group = "LifeDegenerationAndPercentGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["IncreasedEnergyShieldEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Lose 0.4% of Energy Shield per second", statOrder = { 1563, 2652 }, level = 50, group = "EnergyShieldAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["FireResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1630, 1676 }, level = 50, group = "FireResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, - ["ColdResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1636, 1681 }, level = 50, group = "ColdResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, - ["LightningResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1641, 1685 }, level = 50, group = "LightningResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, - ["IncreasedManaEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Lose (5-7) Mana per second", statOrder = { 1584, 1588 }, level = 50, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaEnhancedLevel50ModCostNewInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills Cost -(8-6) Mana", statOrder = { 1584, 10062 }, level = 50, group = "IncreasedManaAndBaseCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["AddedPhysicalDamageEssenceAmulet7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing5Inverted"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 58, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing6Inverted"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 74, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedPhysicalDamageEssenceRing7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks against you", statOrder = { 1272 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AddedFireDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks against you", statOrder = { 1366 }, level = 82, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AddedColdDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks against you", statOrder = { 1375 }, level = 82, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AddedLightningDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks against you", statOrder = { 1386 }, level = 82, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["FireDamageAsPortionOfPhysicalDamageEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Hits against you gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1936 }, level = 63, group = "SelfPhysAsExtraFireTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["AddedColdDamagePerFrenzyChargeEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge", statOrder = { 4277 }, level = 63, group = "SelfColdDamageTakenPerFrenzy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["ChanceToRecoverManaOnSkillUseEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "10% chance to lose 10% of Mana when you use a Skill", statOrder = { 3479 }, level = 63, group = "ChanceToLoseManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["DamageCannotBeReflectedPercentEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 60% increased Reflected Damage", statOrder = { 9881 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["PhysicalDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched by Enemy as Life", statOrder = { 1672 }, level = 60, group = "EnemyPhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["FireDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1676 }, level = 60, group = "EnemyFireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ColdDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1681 }, level = 60, group = "EnemyColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["LightningDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1685 }, level = 60, group = "EnemyLightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChaosDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched by Enemy as Life", statOrder = { 1688 }, level = 60, group = "EnemyChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["AddedManaRegenerationDelveInverted"] = { type = "Suffix", affix = "of the Underground", "Lose (3-5) Mana per second", statOrder = { 1588 }, level = 60, group = "ManaDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["NecropolisCraftingAllResistancesWithChaos"] = { type = "Suffix", affix = "of Haunting", "+(12-16)% to All Resistances", statOrder = { 9921 }, level = 12, group = "AllResistancesWithChaos", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "resistance" }, }, - ["NecropolisCraftingFireResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Fire Resistance cannot be Penetrated", statOrder = { 6589 }, level = 68, group = "FireResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "resistance" }, }, - ["NecropolisCraftingColdResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Cold Resistance cannot be Penetrated", statOrder = { 5838 }, level = 68, group = "ColdResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "resistance" }, }, - ["NecropolisCraftingLightningResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Lightning Resistance cannot be Penetrated", statOrder = { 7466 }, level = 68, group = "LightningResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "resistance" }, }, - ["NecropolisCraftingLocalNoAttributeRequirements"] = { type = "Suffix", affix = "of Haunting", "Has no Attribute Requirements", statOrder = { 1087 }, level = 50, group = "LocalNoAttributeRequirements", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingDamageTakenGainedAsLife"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, - ["NecropolisCraftingPercentDamageGoesToMana"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingLocalCanSocketIgnoringColour"] = { type = "Suffix", affix = "of Haunting", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 96 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingReducedExtraDamageFromCrits"] = { type = "Suffix", affix = "of Haunting", "You take (40-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 24, group = "ReducedExtraDamageFromCrits", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, - ["NecropolisCraftingManaReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(10-15)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 24, group = "ManaReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingLifeReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(20-30)% increased Life Reservation Efficiency of Skills", statOrder = { 2231 }, level = 34, group = "LifeReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, - ["NecropolisCraftingCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Haunting", "Corrupted Blood cannot be inflicted on you", statOrder = { 5413 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, - ["NecropolisCraftingIncreasedStunThreshold"] = { type = "Suffix", affix = "of Haunting", "(80-120)% increased Stun Threshold", statOrder = { 3277 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "necropolis_boots", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCannotBeKnockedBack"] = { type = "Prefix", affix = "Haunted", "Cannot be Knocked Back", statOrder = { 1526 }, level = 50, group = "CannotBeKnockedBack", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingMaximumEnduranceCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 16, group = "MaximumEnduranceCharges", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingNoExtraBleedDamageWhileMoving"] = { type = "Suffix", affix = "of Haunting", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3197 }, level = 34, group = "NoExtraBleedDamageWhileMoving", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingAvoidIgnite"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 16, group = "AvoidIgnite", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "ailment" }, }, - ["NecropolisCraftingAvoidFreeze"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 16, group = "AvoidFreeze", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, - ["NecropolisCraftingAvoidShock"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 16, group = "AvoidShock", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, - ["NecropolisCraftingReducedBleedDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Bleed Duration on you", statOrder = { 9968 }, level = 24, group = "ReducedBleedDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, - ["NecropolisCraftingReducedPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Poison Duration on you", statOrder = { 9977 }, level = 24, group = "ReducedPoisonDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingBurningGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Burning Ground", statOrder = { 10455 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire" }, }, - ["NecropolisCraftingShockedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Shocked Ground", statOrder = { 10480 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, - ["NecropolisCraftingChilledGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Chilled Ground", statOrder = { 10460 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, - ["NecropolisCraftingDesecratedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Desecrated Ground", statOrder = { 10466 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "chaos" }, }, - ["NecropolisCraftingMovementCannotBeSlowedBelowBase"] = { type = "Prefix", affix = "Haunted", "Movement Speed cannot be modified to below Base Value", statOrder = { 3201 }, level = 45, group = "MovementCannotBeSlowedBelowBase", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "speed" }, }, - ["NecropolisCraftingWarcriesOpenChests"] = { type = "Prefix", affix = "Haunted", "Your Warcries open Chests", statOrder = { 9558 }, level = 24, group = "WarcriesOpenChests", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingIncreasedMaximumPowerCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 16, group = "IncreasedMaximumPowerCharges", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCriticalStrikeChance"] = { type = "Suffix", affix = "of Haunting", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "critical" }, }, - ["NecropolisCraftingManaRegeneration"] = { type = "Suffix", affix = "of Haunting", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingImmunityToBlind"] = { type = "Suffix", affix = "of Haunting", "Cannot be Blinded", statOrder = { 2979 }, level = 38, group = "ImmunityToBlind", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingManaPer2Intelligence"] = { type = "Prefix", affix = "Haunted", "+1 to maximum Mana per 2 Intelligence", statOrder = { 9175 }, level = 68, group = "ManaPer2Intelligence", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingAccuracyPer2Dexterity"] = { type = "Suffix", affix = "of Haunting", "+2 to Accuracy Rating per 2 Dexterity", statOrder = { 4521 }, level = 68, group = "AccuracyPer2Dexterity", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellDamage"] = { type = "Prefix", affix = "Haunted", "(20-30)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "caster_damage", "necropolis_exclusive_mod", "damage", "caster" }, }, - ["NecropolisCraftingIncreasedCastSpeed"] = { type = "Suffix", affix = "of Haunting", "(8-12)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "speed" }, }, - ["NecropolisCraftingArcaneSurgeOnSpendingMana"] = { type = "Suffix", affix = "of Haunting", "Gain Arcane Surge after Spending a total of 400 Mana", statOrder = { 7146 }, level = 34, group = "ArcaneSurgeOnSpendingMana", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingAreaOfEffect"] = { type = "Suffix", affix = "of Haunting", "(15-25)% increased Area of Effect", statOrder = { 1885 }, level = 12, group = "AreaOfEffect", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCurseEffectiveness"] = { type = "Suffix", affix = "of Haunting", "(5-8)% increased Effect of your Curses", statOrder = { 2601 }, level = 24, group = "CurseEffectiveness", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "curse" }, }, - ["NecropolisCraftingMaximumFrenzyCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 16, group = "MaximumFrenzyCharges", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingChaosDamage"] = { type = "Prefix", affix = "Haunted", "Adds (13-17) to (23-29) Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 750, 0 }, modTags = { "chaos_damage", "necropolis_exclusive_mod", "damage", "chaos", "attack" }, }, - ["NecropolisCraftingCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Haunting", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, - ["NecropolisCraftingPoisonOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Poison on Hit", statOrder = { 3178 }, level = 16, group = "PoisonOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(12-20)% increased Poison Duration", statOrder = { 3175 }, level = 38, group = "PoisonDuration", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2494 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingFasterBleedDamage"] = { type = "Suffix", affix = "of Haunting", "Bleeding you inflict deals Damage (12-20)% faster", statOrder = { 6549 }, level = 38, group = "FasterBleedDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "physical_damage", "bleed", "necropolis_exclusive_mod", "damage", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 16, group = "GlobalChanceToBlindOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingGlobalMaimOnHit"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to Maim on Hit", statOrder = { 8159 }, level = 34, group = "GlobalMaimOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellsHinderOnHitChance"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 34, group = "SpellsHinderOnHitChance", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, - ["NecropolisCraftingMeleeKnockback"] = { type = "Suffix", affix = "of Haunting", "Melee Attacks Knock Enemies Back on Hit", statOrder = { 9197 }, level = 45, group = "MeleeKnockback", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingIntimidateOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4925 }, level = 38, group = "IntimidateOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellUnnerveOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells", statOrder = { 5731 }, level = 38, group = "SpellUnnerveOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, - ["WeaponSpellDamageTriggerSkillOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(70-74)% increased Spell Damage", statOrder = { 837, 837.1, 1228 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["WeaponSpellDamageTriggerSkillOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(105-110)% increased Spell Damage", statOrder = { 837, 837.1, 1228 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["MercenaryModLightningSkillManaCostWhileShocked"] = { type = "Suffix", affix = "of Infamy", "40% less Mana cost of Lightning Skills while Shocked", statOrder = { 7471 }, level = 68, group = "LightningSkillManaCostWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "elemental", "lightning" }, }, - ["MercenaryModTravelSkillCrit"] = { type = "Prefix", affix = "Infamous", "Your Travel Skills Critically Strike once every 3 uses", statOrder = { 10423 }, level = 68, group = "TravelSkillCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["MercenaryModRecoupWhileFrozen"] = { type = "Suffix", affix = "of Infamy", "(50-90)% of Damage taken while Frozen Recouped as Life", statOrder = { 6129 }, level = 68, group = "RecoupWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["MercenaryModSkipSacrifice"] = { type = "Suffix", affix = "of Infamy", "(20-40)% chance on Skill use to not Sacrifice Life but", "still gain benefits as though you had", statOrder = { 10070, 10070.1 }, level = 68, group = "SkipSacrifice", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["MercenaryModMinionFireConvertToChaos"] = { type = "Prefix", affix = "Infamous", "Minions convert 100% of Fire Damage to Chaos Damage", statOrder = { 9281 }, level = 68, group = "MinionFireConvertToChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "chaos", "minion" }, }, - ["MercenaryModRecentMinionCrit"] = { type = "Suffix", affix = "of Infamy", "Minions created Recently have (60-100)% increased Critical Hit Chance", statOrder = { 9342 }, level = 68, group = "RecentMinionCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "critical" }, }, - ["MercenaryModTrapMineChain"] = { type = "Suffix", affix = "of Infamy", "Skills used by your Traps and Mines Chain 2 additional times", statOrder = { 10415 }, level = 68, group = "TrapMineChain", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MercenaryModMineLifeReserve"] = { type = "Prefix", affix = "Infamous", "Your Skills that throw Mines reserve Life instead of Mana", statOrder = { 10069 }, level = 68, group = "MineLifeReserve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["MercenaryModProjSpeedVariance"] = { type = "Suffix", affix = "of Infamy", "Each Projectile created by Attacks you make with a Melee Weapon has", "between 50% more and 50% less Projectile Speed at random", statOrder = { 9744, 9744.1 }, level = 68, group = "MeleeProjSpeedVariance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, - ["MercenaryModMaxBlades"] = { type = "Prefix", affix = "Infamous", "Skills that leave Lingering Blades have +(5-10) to Maximum Lingering Blades", statOrder = { 9178 }, level = 68, group = "MaxBlades", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MercenaryModDebilitate"] = { type = "Prefix", affix = "Infamous", "Debuffs on you expire (80-100)% faster", "You are Debilitated", statOrder = { 6156, 9973 }, level = 68, group = "SelfDebilitate", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MercenaryModAshWarcries"] = { type = "Suffix", affix = "of Infamy", "Your Warcries cover Enemies in Ash for 5 seconds", statOrder = { 10558 }, level = 68, group = "CoverInAshWarcry", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, - ["MercenaryModRageDecaySpeed"] = { type = "Prefix", affix = "Infamous", "Inherent loss of Rage is 20% slower", statOrder = { 9792 }, level = 68, group = "RageDecaySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MercenaryModAddCritPerExert"] = { type = "Suffix", affix = "of Infamy", "Skills have +(2-3)% to Critical Strike Chance for each Warcry Exerting them", statOrder = { 4556 }, level = 68, group = "AddCritPerExert", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["MercenaryModLGOHIgnitedEnemies"] = { type = "Suffix", affix = "of Infamy", "Gain (5-10) Life for each Ignited Enemy hit with Attacks", statOrder = { 1748 }, level = 68, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["MercenaryModFortificationDamageAura"] = { type = "Suffix", affix = "of Infamy", "Nearby Enemies take 1% increased Physical Damage per two Fortification on you", statOrder = { 9462 }, level = 68, group = "FortificationDamageAura", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["MercenaryModLifeCostOnLowLife"] = { type = "Suffix", affix = "of Infamy", "30% less Life cost of Skills while on Low Life", statOrder = { 10057 }, level = 68, group = "LifeCostOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["MercenaryModMinionCDR"] = { type = "Suffix", affix = "of Infamy", "Minions have 20% increased Cooldown Recovery Rate", statOrder = { 9291 }, level = 68, group = "MinionCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MercenaryModConsecratedChaosRes"] = { type = "Suffix", affix = "of Infamy", "Consecrated Ground you create grants +(1-3)% maximum Chaos Resistance to you and Allies", statOrder = { 10687 }, level = 68, group = "ConsecratedChaosRes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, - ["MercenaryModImpaleEffectFromDistance"] = { type = "Suffix", affix = "of Infamy", "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to 40% increased effect", statOrder = { 7254 }, level = 68, group = "ImpaleEffectFromDistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, - ["MercenaryModClonesInheritGloves"] = { type = "Prefix", affix = "Infamous", "Your Blink and Mirror arrow clones use your Gloves", statOrder = { 5228 }, level = 68, group = "ClonesInheritGloves", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, - ["MercenaryModSingleProjAOE"] = { type = "Suffix", affix = "of Infamy", "30% more Area of Effect with Bow Attacks that fire a single Projectile", statOrder = { 4728 }, level = 68, group = "SingleProjAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MercenaryModSpellslingerReservation"] = { type = "Suffix", affix = "of Infamy", "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", statOrder = { 10198 }, level = 68, group = "EnchantmentSpellslingerManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack", "caster" }, }, - ["MercenaryModMaimDOT"] = { type = "Suffix", affix = "of Infamy", "Enemies Maimed by you take 10% increased Damage Over Time", statOrder = { 6419 }, level = 68, group = "EnchantmentMaim", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["MercenaryModUnaffectedShock"] = { type = "Suffix", affix = "of Infamy", "Unaffected by Shock while Channelling", statOrder = { 10478 }, level = 68, group = "UnaffectedByShockWhileChannel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, - ["MercenaryModCurseEffect"] = { type = "Prefix", affix = "Infamous", "20% reduced Curse Duration", "15% increased Effect of your Curses", statOrder = { 1786, 2601 }, level = 68, group = "CurseEffectReduceCurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, - ["MercenaryModCurseChillingAreas"] = { type = "Prefix", affix = "Infamous", "Curses on Enemies in your Chilling Areas have 15% increased Effect", statOrder = { 5782 }, level = 68, group = "CurseEffectChillingAreas", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, - ["MagicSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Searching Eye Jewels", statOrder = { 8027 }, level = 50, group = "MagicSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MagicMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Murderous Eye Jewels", statOrder = { 8026 }, level = 50, group = "MagicMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MagicHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Hypnotic Eye Jewels", statOrder = { 8025 }, level = 50, group = "MagicHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["MagicGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Ghastly Eye Jewels", statOrder = { 8024 }, level = 50, group = "MagicGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RareSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Searching Eye Jewels", statOrder = { 8031 }, level = 50, group = "RareSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RareMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Murderous Eye Jewels", statOrder = { 8030 }, level = 50, group = "RareMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RareHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Hypnotic Eye Jewels", statOrder = { 8029 }, level = 50, group = "RareHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["RareGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Ghastly Eye Jewels", statOrder = { 8028 }, level = 50, group = "RareGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["EnergyShieldDelayInfluence1"] = { type = "Prefix", affix = "Hunter's", "(15-20)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 68, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldDelayInfluence2_"] = { type = "Prefix", affix = "Hunter's", "(20-24)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 75, group = "EnergyShieldDelay", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["LifeGainPerTargetInfluence1"] = { type = "Prefix", affix = "Hunter's", "Gain (10-15) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 68, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Gain (16-20) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 75, group = "LifeGainPerTarget", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, + ["ExertedAttackDamageInfluence1"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (25-27)% increased Damage", statOrder = { 6356 }, level = 68, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageInfluence2__"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (28-31)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageInfluence3"] = { type = "Prefix", affix = "Hunter's", "Exerted Attacks deal (32-35)% increased Damage", statOrder = { 6356 }, level = 80, group = "ExertedAttackDamage", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["CurseOnHitElementalWeaknessInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 75, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["CurseOnHitElementalWeaknessInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2525 }, level = 80, group = "CurseOnHitLevelElementalWeaknessMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, + ["CurseOnHitDespairInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 75, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["CurseOnHitDespairInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 80, group = "CurseOnHitDespairMod", weightKey = { "ring_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, + ["PoisonDamageAndDurationInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(5-6)% increased Poison Duration", "(8-12)% increased Damage with Poison", statOrder = { 3170, 3181 }, level = 68, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamageAndDurationInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-8)% increased Poison Duration", "(13-17)% increased Damage with Poison", statOrder = { 3170, 3181 }, level = 75, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamageAndDurationInfluence3__"] = { type = "Suffix", affix = "of the Hunt", "(9-10)% increased Poison Duration", "(18-22)% increased Damage with Poison", statOrder = { 3170, 3181 }, level = 80, group = "PoisonDamageAndDuration", weightKey = { "ring_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["LightningDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, + ["LightningDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.3-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "lightning" }, }, + ["LightningDamageESLeechInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5017 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, }, + ["LightningDamageESLeechSufffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(0.2-0.4)% of Lightning Damage Leeched as Energy Shield", statOrder = { 5017 }, level = 68, group = "LightningDamageESLeech", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "lightning" }, }, + ["DamagePer15IntelligenceInfluence1"] = { type = "Prefix", affix = "Crusader's", "1% increased Damage per 15 Intelligence", statOrder = { 6057 }, level = 80, group = "DamagePer15Intelligence", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeInfluence1"] = { type = "Prefix", affix = "Crusader's", "(3-4)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeInfluence2"] = { type = "Prefix", affix = "Crusader's", "(5-6)% increased Damage per Power Charge", statOrder = { 6066 }, level = 80, group = "IncreasedDamagePerPowerCharge", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["GlobalLightningGemLevelInfluence1_"] = { type = "Prefix", affix = "Crusader's", "+1 to Level of all Lightning Skill Gems", statOrder = { 7465 }, level = 82, group = "GlobalLightningGemLevel", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, + ["LightningPenetrationInfluence1__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (4-7)% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningPenetrationInfluence2__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (8-10)% Lightning Resistance", statOrder = { 2984 }, level = 82, group = "LightningResistancePenetration", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["MaximumLifeLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLifeLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 68, group = "MaximumLifeLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumEnergyShieldLeechRateHighInfluence1"] = { type = "Prefix", affix = "Crusader's", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["MaximumEnergyShieldLeechRateHighSuffixInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(15-25)% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 68, group = "MaximumEnergyShieldLeechRate", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["MaximumSpellBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Crusade", "+2% to maximum Chance to Block Spell Damage", statOrder = { 1989 }, level = 68, group = "MaximumSpellBlockChance", weightKey = { "amulet_crusader", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, }, + ["WrathReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10629 }, level = 75, group = "WrathReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["WrathReservationEfficiencyInfluence1________"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10630 }, level = 75, group = "WrathReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["DisciplineReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6188 }, level = 75, group = "DisciplineReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["DisciplineReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Discipline has (50-60)% increased Mana Reservation Efficiency", statOrder = { 6189 }, level = 75, group = "DisciplineReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfLightningReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9774 }, level = 75, group = "PurityOfLightningReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfLightningReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Purity of Lightning has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9775 }, level = 75, group = "PurityOfLightningReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["ZealotryReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10722 }, level = 75, group = "ZealotryReservation", weightKey = { "amulet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["ZealotryReservationEfficiencyInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (40-50)% increased Mana Reservation Efficiency", statOrder = { 10723 }, level = 75, group = "ZealotryReservationEfficiency", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["SpellBlockAmuletInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(4-5)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 68, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockAmuletInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(6-7)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 80, group = "SpellBlockPercentage", weightKey = { "amulet_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["FireDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, + ["FireDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.3-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "fire" }, }, + ["FireDamageESLeechInfluence1"] = { type = "Prefix", affix = "Warlord's", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5016 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, }, + ["FireDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(0.2-0.4)% of Fire Damage Leeched as Energy Shield", statOrder = { 5016 }, level = 68, group = "FireDamageESLeech", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "fire" }, }, + ["DamagePer15StrengthInfluence1"] = { type = "Prefix", affix = "Warlord's", "1% increased Damage per 15 Strength", statOrder = { 6058 }, level = 80, group = "DamagePer15Strength", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerEnduranceChargeInfluence1__"] = { type = "Prefix", affix = "Warlord's", "(3-4)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerEnduranceChargeInfluence2"] = { type = "Prefix", affix = "Warlord's", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 80, group = "DamagePerEnduranceCharge", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["GlobalFireGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Fire Skill Gems", statOrder = { 6586 }, level = 82, group = "GlobalFireGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, + ["GlobalPhysicalGemLevelInfluence1"] = { type = "Prefix", affix = "Warlord's", "+1 to Level of all Physical Skill Gems", statOrder = { 9671 }, level = 82, group = "GlobalPhysicalGemLevel", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "gem" }, }, + ["FirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (4-7)% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (8-10)% Fire Resistance", statOrder = { 2981 }, level = 82, group = "FireResistancePenetration", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["MaximumAttackBlockChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+2% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 68, group = "MaximumBlockChance", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 250, 0 }, modTags = { "block", "influence_mod" }, }, + ["AngerReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4686 }, level = 75, group = "AngerReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["AngerReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (40-50)% increased Mana Reservation Efficiency", statOrder = { 4687 }, level = 75, group = "AngerReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["DeterminationReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6172 }, level = 75, group = "DeterminationReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["DeterminationReservationEfficiencyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Determination has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6173 }, level = 75, group = "DeterminationReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfFireReducedReservationInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9768 }, level = 75, group = "PurityOfFireReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfFireReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Purity of Fire has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9769 }, level = 75, group = "PurityOfFireReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PrideReducedReservationInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9714 }, level = 75, group = "PrideReservation", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PrideReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Pride has (40-50)% increased Mana Reservation Efficiency", statOrder = { 9715 }, level = 75, group = "PrideReservationEfficiency", weightKey = { "amulet_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["ColdDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, + ["ColdDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.3-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "life", "elemental", "cold" }, }, + ["ColdDamageESLeechInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5014 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, }, + ["ColdDamageESLeechSuffixInfluence1"] = { type = "Suffix", affix = "of Redemption", "(0.2-0.4)% of Cold Damage Leeched as Energy Shield", statOrder = { 5014 }, level = 68, group = "ColdDamageESLeech", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "defences", "energy_shield", "elemental", "cold" }, }, + ["DamagePer15DexterityInfluence1"] = { type = "Prefix", affix = "Redeemer's", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 80, group = "DamagePer15Dexterity", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerFrenzyChargeInfluence1"] = { type = "Prefix", affix = "Redeemer's", "(3-4)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerFrenzyChargeInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 80, group = "DamagePerFrenzyCharge", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["GlobalColdGemLevelInfluence1__"] = { type = "Prefix", affix = "Redeemer's", "+1 to Level of all Cold Skill Gems", statOrder = { 5836 }, level = 82, group = "GlobalColdGemLevel", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, + ["ColdPenetrationInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (4-7)% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (8-10)% Cold Resistance", statOrder = { 2983 }, level = 82, group = "ColdResistancePenetration", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["MaximumAttackDodgeChanceInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1141 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["MaximumSpellDodgeChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +2% of Suppressed Spell Damage", statOrder = { 1141 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["SpellDamageSuppressedInfluence1"] = { type = "Suffix", affix = "of Redemption", "Prevent +(3-5)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 68, group = "SpellDamageSuppressed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 250, 0 }, modTags = { "influence_mod" }, }, + ["HatredReducedReservationInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6941 }, level = 75, group = "HatredReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["HatredReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6942 }, level = 75, group = "HatredReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["GraceReducedReservationInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6902 }, level = 75, group = "GraceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["GraceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Grace has (40-50)% increased Mana Reservation Efficiency", statOrder = { 6903 }, level = 75, group = "GraceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfIceReducedReservationInfluence1__"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9771 }, level = 75, group = "PurityOfIceReservation", weightKey = { "amulet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["PurityOfIceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of Redemption", "Purity of Ice has (50-60)% increased Mana Reservation Efficiency", statOrder = { 9772 }, level = 75, group = "PurityOfIceReservationEfficiency", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana", "aura" }, }, + ["WarcrySpeedInfluence1"] = { type = "Suffix", affix = "of Redemption", "(21-25)% increased Warcry Speed", statOrder = { 3277 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["WarcrySpeedInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(26-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["WarcrySpeedInfluence3"] = { type = "Suffix", affix = "of Redemption", "(31-35)% increased Warcry Speed", statOrder = { 3277 }, level = 80, group = "WarcrySpeed", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["WarcrySpeedEssence1"] = { type = "Suffix", affix = "of the Essence", "(15-20)% increased Warcry Speed", statOrder = { 3277 }, level = 42, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEssence2"] = { type = "Suffix", affix = "of the Essence", "(21-25)% increased Warcry Speed", statOrder = { 3277 }, level = 58, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEssence3"] = { type = "Suffix", affix = "of the Essence", "(26-30)% increased Warcry Speed", statOrder = { 3277 }, level = 74, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEssence4_"] = { type = "Suffix", affix = "of the Essence", "(31-35)% increased Warcry Speed", statOrder = { 3277 }, level = 82, group = "WarcrySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["DoubleDamageStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5661 }, level = 75, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DoubleDamageStunnedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% chance to deal Double Damage if you have Stunned an Enemy Recently", statOrder = { 5661 }, level = 83, group = "DoubleDamageStunnedRecently", weightKey = { "amulet_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["PhysicalDamageLifeLeechInfluence1"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageLifeLeechSuffixInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "physical" }, }, + ["ChaosDamageLifeLeechInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["ChaosDamageLifeLeechSuffixInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "(0.3-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["GlobalChaosGemLevelInfluence1__"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Chaos Skill Gems", statOrder = { 5756 }, level = 82, group = "GlobalChaosGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, }, + ["GlobalStrengthGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Strength Skill Gems", statOrder = { 10257 }, level = 82, group = "GlobalStrengthGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, + ["GlobalDexterityGemLevelInfluence1_"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Dexterity Skill Gems", statOrder = { 6177 }, level = 82, group = "GlobalDexterityGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, + ["GlobalIntelligenceGemLevelInfluence1"] = { type = "Prefix", affix = "Hunter's", "+1 to Level of all Intelligence Skill Gems", statOrder = { 7292 }, level = 82, group = "GlobalIntelligenceGemLevel", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute", "gem" }, }, + ["ElementalPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (3-4)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (5-6)% Elemental Resistances", statOrder = { 2980 }, level = 82, group = "ElementalPenetration", weightKey = { "amulet_basilisk", "default", }, weightVal = { 250, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["MalevolenceReducedReservationInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8161 }, level = 75, group = "MalevolenceReservation", weightKey = { "amulet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "aura" }, }, + ["MalevolenceReservationEfficiencyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (40-50)% increased Mana Reservation Efficiency", statOrder = { 8162 }, level = 75, group = "MalevolenceReservationEfficiency", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "aura" }, }, + ["RandomChargeOnKillInfluence1___"] = { type = "Suffix", affix = "of the Hunt", "(3-6)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 68, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["RandomChargeOnKillInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(7-10)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 75, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["ReducedAttributeRequirementsInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2552 }, level = 68, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["ReducedAttributeRequirementsInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Items and Gems have (11-15)% reduced Attribute Requirements", statOrder = { 2552 }, level = 75, group = "GlobalItemAttributeRequirements", weightKey = { "amulet_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndLeechInfluence5_"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1232, 1651 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndLeech", weightKey = { "sword_crusader", "axe_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "resource", "influence_mod", "life", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence3"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAttackSpeedInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(3-4)% increased Attack Speed", statOrder = { 1232, 1413 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndAttackSpeed", weightKey = { "sword_adjudicator", "axe_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence1_"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritChanceInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(8-10)% increased Critical Strike Chance", statOrder = { 1232, 1464 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritChance", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence1"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence2"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndCritMultiInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "+(10-15)% to Global Critical Strike Multiplier", statOrder = { 1232, 1488 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndCritMulti", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "critical" }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence1__"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence2"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence3"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndStunInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(6-8)% reduced Enemy Stun Threshold", statOrder = { 1232, 1517 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndStun", weightKey = { "mace_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "2h_mace_crusader", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence1_"] = { type = "Prefix", affix = "Warlord's", "(25-34)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(35-44)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(45-54)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 150, 150, 150, 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence4"] = { type = "Prefix", affix = "Warlord's", "(55-64)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndAreaInfluence5"] = { type = "Prefix", affix = "Warlord's", "(65-69)% increased Physical Damage", "(10-15)% increased Area of Effect", statOrder = { 1232, 1880 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndArea", weightKey = { "mace_adjudicator", "sceptre_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 50, 50, 50, 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence1"] = { type = "Prefix", affix = "Crusader's", "(25-34)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence2_"] = { type = "Prefix", affix = "Crusader's", "(35-44)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence3_"] = { type = "Prefix", affix = "Crusader's", "(45-54)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence4"] = { type = "Prefix", affix = "Crusader's", "(55-64)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndProjSpeedInfluence5"] = { type = "Prefix", affix = "Crusader's", "(65-69)% increased Physical Damage", "(20-25)% increased Projectile Speed", statOrder = { 1232, 1796 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndProjSpeed", weightKey = { "wand_crusader", "bow_crusader", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack", "speed" }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence1_"] = { type = "Prefix", affix = "Hunter's", "(25-34)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 68, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence2"] = { type = "Prefix", affix = "Hunter's", "(35-44)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 71, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 250, 250, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence3"] = { type = "Prefix", affix = "Hunter's", "(45-54)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 74, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 150, 150, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(55-64)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 77, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentAndPierceInfluence5_"] = { type = "Prefix", affix = "Hunter's", "(65-69)% increased Physical Damage", "Projectiles Pierce an additional Target", statOrder = { 1232, 1790 }, level = 80, group = "LocalIncreasedPhysicalDamagePercentAndPierce", weightKey = { "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 50, 50, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-10) to (15-18) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (12-16) to (24-28) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (26-35) to (53-61) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Adds (15-19) to (28-34) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 68, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (22-30) to (44-52) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 71, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (31-41) to (61-72) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 74, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (39-52) to (78-90) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 77, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (49-65) to (99-114) Fire Damage", "Attacks with this Weapon Penetrate (5-7)% Fire Resistance", statOrder = { 1362, 3762 }, level = 80, group = "LocalFireDamagePenetrationHybrid", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (7-9) to (14-16) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-14) to (22-25) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (15-20) to (30-35) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (19-25) to (38-44) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (23-32) to (48-55) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (13-16) to (26-30) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 68, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-26) to (41-46) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 71, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Adds (28-37) to (56-65) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 74, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (35-46) to (71-81) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 77, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageAndPenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Redeemer's", "Adds (43-59) to (89-102) Cold Damage", "Attacks with this Weapon Penetrate (5-7)% Cold Resistance", statOrder = { 1371, 3763 }, level = 80, group = "LocalColdDamagePenetrationHybrid", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds 2 to (25-29) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (40-45) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (55-63) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (70-79) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (3-8) to (89-99) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "bow_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Adds 3 to (46-53) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 68, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (74-84) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 71, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (102-117) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 74, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Crusader's", "Adds (3-12) to (130-146) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 77, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (6-15) to (165-183) Lightning Damage", "Attacks with this Weapon Penetrate (5-7)% Lightning Resistance", statOrder = { 1382, 3764 }, level = 80, group = "LocalLightningDamagePenetrationHybrid", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (5-7) to (11-13) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (9-11) to (17-20) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (12-16) to (24-28) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (15-20) to (30-35) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (18-25) to (38-44) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence1__"] = { type = "Prefix", affix = "Hunter's", "Adds (9-13) to (21-24) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 68, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Adds (16-21) to (32-37) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 71, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Adds (22-29) to (44-52) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 74, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Hunter's", "Adds (28-37) to (57-65) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 77, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageAndPenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Hunter's", "Adds (35-48) to (72-81) Chaos Damage", "Attacks with this Weapon Penetrate (4-6)% Chaos Resistance", statOrder = { 1390, 7875 }, level = 80, group = "LocalChaosDamagePenetrationHybrid", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SpellAddedFireDamagePenetrationInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (6-8) to (12-14) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (10-13) to (19-22) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Adds (13-18) to (27-31) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (17-22) to (33-39) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Warlord's", "Adds (21-28) to (42-49) Fire Damage to Spells", "Damage Penetrates 4% Fire Resistance", statOrder = { 1404, 2981 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Warlord's", "Adds (8-11) to (17-19) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 68, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Adds (13-17) to (26-30) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 71, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Adds (18-24) to (36-42) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 74, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "Adds (23-30) to (45-53) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 77, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Warlord's", "Adds (28-38) to (57-66) Fire Damage to Spells", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 1404, 2981 }, level = 80, group = "SpellAddedFireDamagePenetrationHybrid", weightKey = { "staff_adjudicator", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamagePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (5-7) to (10-12) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (16-18) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (11-15) to (22-25) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationInfluence4"] = { type = "Prefix", affix = "Redeemer's", "Adds (14-18) to (27-32) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (17-23) to (34-40) Cold Damage to Spells", "Damage Penetrates 4% Cold Resistance", statOrder = { 1405, 2983 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Adds (8-10) to (15-18) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 68, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Adds (12-16) to (23-27) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 71, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Adds (16-22) to (33-38) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 74, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence4_"] = { type = "Prefix", affix = "Redeemer's", "Adds (21-27) to (41-48) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 77, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamagePenetrationTwoHandInfluence5"] = { type = "Prefix", affix = "Redeemer's", "Adds (26-34) to (52-60) Cold Damage to Spells", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 1405, 2983 }, level = 80, group = "SpellAddedColdDamagePenetrationHybrid", weightKey = { "staff_eyrie", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamagePenetrationInfluence1___"] = { type = "Prefix", affix = "Crusader's", "Adds (1-2) to (21-22) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (33-35) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (46-49) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationInfluence4_"] = { type = "Prefix", affix = "Crusader's", "Adds (2-5) to (58-61) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationInfluence5"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (73-77) Lightning Damage to Spells", "Damage Penetrates 4% Lightning Resistance", statOrder = { 1406, 2984 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Crusader's", "Adds (1-3) to (32-34) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 68, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Crusader's", "Adds (1-4) to (49-52) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 71, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Crusader's", "Adds (2-6) to (69-73) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 74, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence4__"] = { type = "Prefix", affix = "Crusader's", "Adds (2-7) to (87-92) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 77, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamagePenetrationTwoHandInfluence5_"] = { type = "Prefix", affix = "Crusader's", "Adds (3-9) to (109-115) Lightning Damage to Spells", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 1406, 2984 }, level = 80, group = "SpellAddedLightningDamagePenetrationHybrid", weightKey = { "staff_crusader", "default", }, weightVal = { 300, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["LocalWeaponFirePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (9-10)% Fire Resistance", statOrder = { 3762 }, level = 68, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalWeaponFirePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (11-12)% Fire Resistance", statOrder = { 3762 }, level = 73, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalWeaponFirePenetrationInfluence3"] = { type = "Prefix", affix = "Warlord's", "Attacks with this Weapon Penetrate (13-15)% Fire Resistance", statOrder = { 3762 }, level = 78, group = "LocalFirePenetration", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "attack" }, }, + ["LocalWeaponColdPenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (9-10)% Cold Resistance", statOrder = { 3763 }, level = 68, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalWeaponColdPenetrationInfluence2_"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (11-12)% Cold Resistance", statOrder = { 3763 }, level = 73, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalWeaponColdPenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Attacks with this Weapon Penetrate (13-15)% Cold Resistance", statOrder = { 3763 }, level = 78, group = "LocalColdPenetration", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "attack" }, }, + ["LocalWeaponLightningPenetrationInfluence1"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (9-10)% Lightning Resistance", statOrder = { 3764 }, level = 68, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalWeaponLightningPenetrationInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (11-12)% Lightning Resistance", statOrder = { 3764 }, level = 73, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalWeaponLightningPenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Attacks with this Weapon Penetrate (13-15)% Lightning Resistance", statOrder = { 3764 }, level = 78, group = "LocalLightningPenetration", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "sceptre_crusader", "wand_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "bow_crusader", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "attack" }, }, + ["LocalWeaponChaosPenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Chaos Resistance", statOrder = { 7875 }, level = 68, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalWeaponChaosPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Chaos Resistance", statOrder = { 7875 }, level = 73, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalWeaponChaosPenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Chaos Resistance", statOrder = { 7875 }, level = 78, group = "LocalChaosPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalWeaponElementalPenetrationInfluence1_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (6-7)% Elemental Resistances", statOrder = { 3761 }, level = 68, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["LocalWeaponElementalPenetrationInfluence2"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (8-9)% Elemental Resistances", statOrder = { 3761 }, level = 73, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["LocalWeaponElementalPenetrationInfluence3_"] = { type = "Prefix", affix = "Hunter's", "Attacks with this Weapon Penetrate (10-12)% Elemental Resistances", statOrder = { 3761 }, level = 78, group = "LocalElementalPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["FireResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 73, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 78, group = "FireResistancePenetration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (10-11)% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (12-13)% Fire Resistance", statOrder = { 2981 }, level = 73, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "Damage Penetrates (14-15)% Fire Resistance", statOrder = { 2981 }, level = 78, group = "FireResistancePenetration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["ColdResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 73, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 78, group = "ColdResistancePenetration", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (10-11)% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (12-13)% Cold Resistance", statOrder = { 2983 }, level = 73, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationTwoHandInfluence3_"] = { type = "Prefix", affix = "Redeemer's", "Damage Penetrates (14-15)% Cold Resistance", statOrder = { 2983 }, level = 78, group = "ColdResistancePenetration", weightKey = { "staff_eyrie", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["LightningResistancePenetrationInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationInfluence2"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 73, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 78, group = "LightningResistancePenetration", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (10-11)% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandInfluence2_"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (12-13)% Lightning Resistance", statOrder = { 2984 }, level = 73, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationTwoHandInfluence3__"] = { type = "Prefix", affix = "Crusader's", "Damage Penetrates (14-15)% Lightning Resistance", statOrder = { 2984 }, level = 78, group = "LightningResistancePenetration", weightKey = { "staff_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["ElementalResistancePenetrationInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalResistancePenetrationInfluence2_"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 5% Elemental Resistances", statOrder = { 2980 }, level = 73, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalResistancePenetrationInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2980 }, level = 78, group = "ElementalPenetration", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalResistancePenetrationTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (7-8)% Elemental Resistances", statOrder = { 2980 }, level = 68, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalResistancePenetrationTwoHandInfluence2"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (9-10)% Elemental Resistances", statOrder = { 2980 }, level = 73, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalResistancePenetrationTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "Damage Penetrates (11-12)% Elemental Resistances", statOrder = { 2980 }, level = 78, group = "ElementalPenetration", weightKey = { "staff_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["PhysicalAddedAsExtraFireWeaponInfluence1"] = { type = "Prefix", affix = "Warlord's", "Gain (7-12)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireWeaponInfluence2"] = { type = "Prefix", affix = "Warlord's", "Gain (13-17)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireWeaponInfluence3_"] = { type = "Prefix", affix = "Warlord's", "Gain (18-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence1__"] = { type = "Prefix", affix = "Warlord's", "Gain (16-20)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 68, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence2__"] = { type = "Prefix", affix = "Warlord's", "Gain (21-26)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 73, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraFireTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Warlord's", "Gain (27-30)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 78, group = "PhysicalAddedAsFire", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsExtraColdWeaponInfluence1_"] = { type = "Prefix", affix = "Redeemer's", "Gain (7-12)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (13-17)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (18-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence1"] = { type = "Prefix", affix = "Redeemer's", "Gain (16-20)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 68, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Redeemer's", "Gain (21-26)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 73, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraColdTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Redeemer's", "Gain (27-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 78, group = "PhysicalAddedAsCold", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsExtraLightningWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (7-12)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (13-17)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningWeaponInfluence3_"] = { type = "Prefix", affix = "Crusader's", "Gain (18-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "wand_crusader", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence1_"] = { type = "Prefix", affix = "Crusader's", "Gain (16-20)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 68, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence2"] = { type = "Prefix", affix = "Crusader's", "Gain (21-26)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 73, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsExtraLightningTwoHandWeaponInfluence3"] = { type = "Prefix", affix = "Crusader's", "Gain (27-30)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 78, group = "PhysicalAddedAsLightning", weightKey = { "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 400, 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["AddedFireDamagePerStrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "sceptre_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamagePerStrengthTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 68, group = "AddedFireDamagePerStrength", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedColdDamagePerDexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (1-2) to (3-4) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamagePerDexterityTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds (2-3) to (4-5) Cold Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4924 }, level = 68, group = "AddedColdDamagePerDexterity", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamagePerIntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (5-6) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamagePerIntelligenceTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "Adds 1 to (7-8) Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 68, group = "AddedLightningDamagePerIntelligence", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 200, 200, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["SpellDamagePer16StrengthInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Strength", statOrder = { 10156 }, level = 68, group = "SpellDamagePer16Strength", weightKey = { "sceptre_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamagePer16DexterityInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Dexterity", statOrder = { 10154 }, level = 68, group = "SpellDamagePer16Dexterity", weightKey = { "rune_dagger_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamagePer16IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 16 Intelligence", statOrder = { 10155 }, level = 68, group = "SpellDamagePer16Intelligence", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamagePer10StrengthInfluence1_"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Strength", statOrder = { 10153 }, level = 68, group = "SpellDamagePer10Strength", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamagePer10IntelligenceInfluence1"] = { type = "Prefix", affix = "Hunter's", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2738 }, level = 68, group = "SpellDamagePer10Intelligence", weightKey = { "staff_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["BurningDamagePrefixInfluence1___"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Burning Damage", statOrder = { 1877 }, level = 68, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Burning Damage", statOrder = { 1877 }, level = 71, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixInfluence3"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Burning Damage", statOrder = { 1877 }, level = 75, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Burning Damage", statOrder = { 1877 }, level = 78, group = "BurnDamagePrefix", weightKey = { "sceptre_adjudicator", "wand_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Burning Damage", statOrder = { 1877 }, level = 68, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixTwoHandInfluence2_"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Burning Damage", statOrder = { 1877 }, level = 71, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Burning Damage", statOrder = { 1877 }, level = 75, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 200, 200, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BurningDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Burning Damage", statOrder = { 1877 }, level = 78, group = "BurnDamagePrefix", weightKey = { "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 100, 100, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["BleedingDamagePrefixInfluence1"] = { type = "Prefix", affix = "Warlord's", "(60-69)% increased Physical Damage over Time", statOrder = { 1211 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 400, 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixInfluence2"] = { type = "Prefix", affix = "Warlord's", "(70-79)% increased Physical Damage over Time", statOrder = { 1211 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 300, 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixInfluence3_"] = { type = "Prefix", affix = "Warlord's", "(80-89)% increased Physical Damage over Time", statOrder = { 1211 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixInfluence4"] = { type = "Prefix", affix = "Warlord's", "(90-94)% increased Physical Damage over Time", statOrder = { 1211 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 100, 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Warlord's", "(100-109)% increased Physical Damage over Time", statOrder = { 1211 }, level = 68, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 400, 400, 400, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixTwoHandInfluence2"] = { type = "Prefix", affix = "Warlord's", "(110-119)% increased Physical Damage over Time", statOrder = { 1211 }, level = 71, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 300, 300, 300, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Warlord's", "(120-129)% increased Physical Damage over Time", statOrder = { 1211 }, level = 75, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["BleedingDamagePrefixTwoHandInfluence4"] = { type = "Prefix", affix = "Warlord's", "(130-134)% increased Physical Damage over Time", statOrder = { 1211 }, level = 78, group = "PhysicalDamageOverTimePrefix", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "default", }, weightVal = { 100, 100, 100, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "ailment" }, }, + ["PoisonDamagePrefixInfluence1__"] = { type = "Prefix", affix = "Hunter's", "(60-69)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 400, 400, 400, 400, 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(70-79)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 300, 300, 300, 300, 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixInfluence3"] = { type = "Prefix", affix = "Hunter's", "(80-89)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixInfluence4"] = { type = "Prefix", affix = "Hunter's", "(90-94)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "bow_basilisk", "default", }, weightVal = { 100, 100, 100, 100, 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixTwoHandInfluence1"] = { type = "Prefix", affix = "Hunter's", "(100-109)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 68, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 400, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixTwoHandInfluence2__"] = { type = "Prefix", affix = "Hunter's", "(110-119)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 71, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 300, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixTwoHandInfluence3"] = { type = "Prefix", affix = "Hunter's", "(120-129)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 75, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 200, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamagePrefixTwoHandInfluence4_"] = { type = "Prefix", affix = "Hunter's", "(130-134)% increased Chaos Damage over Time", statOrder = { 1214 }, level = 78, group = "ChaosDamageOverTimePrefix", weightKey = { "2h_sword_basilisk", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterIgniteDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (8-12)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (13-15)% faster", statOrder = { 2564 }, level = 73, group = "FasterIgniteDamage", weightKey = { "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (18-21)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Ignites you inflict deal Damage (22-25)% faster", statOrder = { 2564 }, level = 73, group = "FasterIgniteDamage", weightKey = { "staff_basilisk", "warstaff_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterBleedDamageInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (8-12)% faster", statOrder = { 6544 }, level = 68, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (13-15)% faster", statOrder = { 6544 }, level = 73, group = "FasterBleedDamage", weightKey = { "sword_basilisk", "axe_basilisk", "mace_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (18-21)% faster", statOrder = { 6544 }, level = 68, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Bleeding you inflict deals Damage (22-25)% faster", statOrder = { 6544 }, level = 73, group = "FasterBleedDamage", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterPoisonDamageInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (8-12)% faster", statOrder = { 6545 }, level = 68, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (13-15)% faster", statOrder = { 6545 }, level = 73, group = "FasterPoisonDamage", weightKey = { "sword_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (18-21)% faster", statOrder = { 6545 }, level = 68, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Poisons you inflict deal Damage (22-25)% faster", statOrder = { 6545 }, level = 73, group = "FasterPoisonDamage", weightKey = { "2h_sword_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["ImpaleEffectWeaponInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "(12-16)% increased Impale Effect", statOrder = { 7242 }, level = 68, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ImpaleEffectWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(17-21)% increased Impale Effect", statOrder = { 7242 }, level = 71, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ImpaleEffectWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(22-25)% increased Impale Effect", statOrder = { 7242 }, level = 75, group = "ImpaleEffect", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "mace_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ImpaleEffectTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(25-29)% increased Impale Effect", statOrder = { 7242 }, level = 68, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ImpaleEffectTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(30-34)% increased Impale Effect", statOrder = { 7242 }, level = 71, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ImpaleEffectTwoHandWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(35-38)% increased Impale Effect", statOrder = { 7242 }, level = 75, group = "ImpaleEffect", weightKey = { "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "bow_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ConvertPhysicalToFireInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 71, group = "ConvertPhysicalToFire", weightKey = { "sword_crusader", "axe_crusader", "mace_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "2h_mace_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 71, group = "ConvertPhysicalToCold", weightKey = { "sword_crusader", "axe_crusader", "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "2h_sword_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningInfluenceWeapon1"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningInfluenceWeapon2_"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 71, group = "ConvertPhysicalToLightning", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "sceptre_crusader", "staff_crusader", "warstaff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosInfluenceWeapon1"] = { type = "Suffix", affix = "of the Hunt", "(16-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosInfluenceWeapon2"] = { type = "Suffix", affix = "of the Hunt", "(21-25)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 71, group = "PhysicalDamageConvertedToChaos", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ArmourPenetrationWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7939 }, level = 68, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["ArmourPenetrationWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7939 }, level = 71, group = "LocalArmourPenetration", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["ArmourPenetrationTwoHandWeaponInfluence1_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (50-65)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7939 }, level = 68, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["ArmourPenetrationTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "Hits with this Weapon have (66-80)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7939 }, level = 71, group = "LocalArmourPenetration", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["ArmourPenetrationSpellWeaponInfluence1__"] = { type = "Suffix", affix = "of the Hunt", "Hits have (25-29)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationSpellWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (30-35)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationSpellTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Hits have (50-59)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 68, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationSpellTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Hits have (60-70)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 71, group = "ChanceToIgnoreEnemyArmour", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "physical" }, }, + ["FireExposureOnHitWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(11-15)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 75, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["FireExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(16-20)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 80, group = "FireExposureOnHit", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "staff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["ColdExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(11-15)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 75, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["ColdExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(16-20)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 80, group = "ColdExposureOnHit", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "staff_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["LightningExposureOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 75, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["LightningExposureOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 80, group = "LightningExposureOnHit", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "staff_crusader", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToUnnerveOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 78, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitWeaponInfluence2__"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 81, group = "ChanceToUnnerveOnHit", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "staff_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(7-11)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7874 }, level = 78, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, }, + ["ChanceToIntimidateOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(12-15)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7874 }, level = 81, group = "LocalChanceToIntimidateOnHit", weightKey = { "sword_basilisk", "axe_basilisk", "claw_basilisk", "dagger_basilisk", "rune_dagger_basilisk", "mace_basilisk", "sceptre_basilisk", "wand_basilisk", "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "staff_basilisk", "warstaff_basilisk", "bow_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attack" }, }, + ["DamageFromAurasWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3458 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "sceptre_eyrie", "wand_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, }, + ["DamageFromAurasTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3458 }, level = 82, group = "IncreasedDamageFromAuras", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 400, 400, 400, 400, 400, 400, 0 }, modTags = { "influence_mod", "damage", "aura" }, }, + ["LocalChanceToMaimPhysicalDamageInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Physical Damage", "10% chance to Maim on Hit", statOrder = { 1232, 7988 }, level = 68, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalChanceToMaimPhysicalDamageInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-16)% increased Physical Damage", "15% chance to Maim on Hit", statOrder = { 1232, 7988 }, level = 70, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalChanceToMaimPhysicalDamageInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Physical Damage", "20% chance to Maim on Hit", statOrder = { 1232, 7988 }, level = 73, group = "LocalChanceToMaimPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "mace_adjudicator", "sceptre_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["BlindOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 68, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 70, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["BlindOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 73, group = "AttacksBlindOnHitChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["OnslaugtOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(15-18)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 68, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["OnslaugtOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(19-22)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 70, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["OnslaugtOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of Redemption", "(23-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 73, group = "OnslaugtOnKillPercentChance", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "wand_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["PhasingOnKillWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["PhasingOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 70, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["PhasingOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 73, group = "ChancetoGainPhasingOnKill", weightKey = { "wand_adjudicator", "bow_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(15-18)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(19-22)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 70, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["UnholyMightOnKillWeaponInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(23-25)% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 73, group = "UnholyMightOnKillPercentChance", weightKey = { "wand_adjudicator", "claw_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "influence_mod" }, }, + ["BlockWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of Redemption", "+(2-4)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 68, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockWhileDualWieldingInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(5-7)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 70, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlockWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of Redemption", "+(8-9)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 73, group = "BlockWhileDualWielding", weightKey = { "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "mace_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["PhysicalDamageWhileDualWieldingInfluence1__"] = { type = "Suffix", affix = "of the Conquest", "(23-27)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 68, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["PhysicalDamageWhileDualWieldingInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(28-32)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 70, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["PhysicalDamageWhileDualWieldingInfluence3"] = { type = "Suffix", affix = "of the Conquest", "(33-37)% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 73, group = "DualWieldingPhysicalDamage", weightKey = { "sword_adjudicator", "axe_adjudicator", "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "mace_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["LocalMeleeWeaponRangeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 68, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["LocalMeleeWeaponRangeInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 73, group = "LocalWeaponRangeUber", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "default", }, weightVal = { 500, 500, 500, 500, 500, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "influence_mod", "attack" }, }, + ["MovementVelocityWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementVelocityWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(7-10)% increased Movement Speed", statOrder = { 1798 }, level = 73, group = "MovementVelocity", weightKey = { "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "bow_eyrie", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["SpellsDoubleDamageChanceInfluence1"] = { type = "Suffix", affix = "of Redemption", "Spells have a (4-5)% chance to deal Double Damage", statOrder = { 10136 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellsDoubleDamageChanceInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (6-7)% chance to deal Double Damage", statOrder = { 10136 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellsDoubleDamageChanceTwoHandInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Spells have a (10-11)% chance to deal Double Damage", statOrder = { 10136 }, level = 75, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["SpellsDoubleDamageChanceTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "Spells have a (12-14)% chance to deal Double Damage", statOrder = { 10136 }, level = 80, group = "SpellsDoubleDamageChance", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["DamagePerEnduranceChargeWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(5-7)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerEnduranceChargeWeaponInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "(8-10)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "sceptre_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerFrenzyChargeWeaponInfluence1__"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 68, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerFrenzyChargeWeaponInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 73, group = "DamagePerFrenzyCharge", weightKey = { "rune_dagger_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(5-7)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(8-10)% increased Damage per Power Charge", statOrder = { 6066 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerEnduranceChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(10-13)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 68, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerEnduranceChargeTwoHandWeaponInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(14-17)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 73, group = "DamagePerEnduranceCharge", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeTwoHandWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-13)% increased Damage per Power Charge", statOrder = { 6066 }, level = 68, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamagePerPowerChargeTwoHandWeaponInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(14-17)% increased Damage per Power Charge", statOrder = { 6066 }, level = 73, group = "IncreasedDamagePerPowerCharge", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["BaseManaRegenerationInfluence1_____"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.3% of Mana per second", statOrder = { 1581 }, level = 68, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["BaseManaRegenerationInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.4% of Mana per second", statOrder = { 1581 }, level = 73, group = "BaseManaRegeneration", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["BaseManaRegenerationTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.7% of Mana per second", statOrder = { 1581 }, level = 68, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["BaseManaRegenerationTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Regenerate 0.8% of Mana per second", statOrder = { 1581 }, level = 73, group = "BaseManaRegeneration", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AngerAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (28-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["AngerAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Conquest", "Anger has (34-40)% increased Aura Effect", statOrder = { 3356 }, level = 80, group = "AngerAuraEffect", weightKey = { "sceptre_adjudicator", "rune_dagger_adjudicator", "wand_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["AngerAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Anger has (48-54)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["AngerAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "Anger has (55-60)% increased Aura Effect", statOrder = { 3356 }, level = 80, group = "AngerAuraEffect", weightKey = { "staff_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["HatredAuraEffectInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (28-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["HatredAuraEffectInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (34-40)% increased Aura Effect", statOrder = { 3366 }, level = 80, group = "HatredAuraEffect", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["HatredAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "Hatred has (48-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["HatredAuraEffectTwoHandInfluence2__"] = { type = "Suffix", affix = "of Redemption", "Hatred has (55-60)% increased Aura Effect", statOrder = { 3366 }, level = 80, group = "HatredAuraEffect", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["WrathAuraEffectInfluence1__"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (28-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["WrathAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (34-40)% increased Aura Effect", statOrder = { 3361 }, level = 80, group = "WrathAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["WrathAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (48-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["WrathAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Wrath has (55-60)% increased Aura Effect", statOrder = { 3361 }, level = 80, group = "WrathAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["MalevolenceAuraEffectInfluence1____"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (28-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (34-40)% increased Aura Effect", statOrder = { 6161 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "sceptre_basilisk", "rune_dagger_basilisk", "wand_basilisk", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (48-54)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "Malevolence has (55-60)% increased Aura Effect", statOrder = { 6161 }, level = 80, group = "MalevolenceAuraEffect", weightKey = { "staff_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (28-33)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["ZealotryAuraEffectInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (34-40)% increased Aura Effect", statOrder = { 10721 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "sceptre_crusader", "rune_dagger_crusader", "wand_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["ZealotryAuraEffectTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (48-54)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["ZealotryAuraEffectTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Zealotry has (55-60)% increased Aura Effect", statOrder = { 10721 }, level = 80, group = "ZealotryAuraEffect", weightKey = { "staff_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "aura" }, }, + ["DamageWhileLeechingWeaponInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(18-22)% increased Damage while Leeching", statOrder = { 3063 }, level = 68, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageWhileLeechingWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-26)% increased Damage while Leeching", statOrder = { 3063 }, level = 70, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageWhileLeechingWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(27-30)% increased Damage while Leeching", statOrder = { 3063 }, level = 73, group = "DamageWhileLeeching", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageWhileLeechingWeaponTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(32-36)% increased Damage while Leeching", statOrder = { 3063 }, level = 68, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageWhileLeechingWeaponTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(37-41)% increased Damage while Leeching", statOrder = { 3063 }, level = 70, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["DamageWhileLeechingWeaponTwoHandInfluence3_"] = { type = "Suffix", affix = "of the Crusade", "(42-45)% increased Damage while Leeching", statOrder = { 3063 }, level = 73, group = "DamageWhileLeeching", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["AttackSpeedWithFortifyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(10-12)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedWithFortifyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(13-15)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedWithFortifyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(20-22)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 68, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedWithFortifyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(23-25)% increased Attack Speed while Fortified", statOrder = { 3215 }, level = 73, group = "AttackSpeedWithFortify", weightKey = { "2h_sword_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["MeleeWeaponRangeIfKilledRecentlyInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "+0.2 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9212 }, level = 68, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["MeleeWeaponRangeIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+0.3 metres to Melee Strike Range if you have Killed Recently", statOrder = { 9212 }, level = 73, group = "MeleeWeaponRangeIfKilledRecently", weightKey = { "sword_adjudicator", "2h_sword_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["TauntOnHitWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(5-6)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["TauntOnHitWeaponInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(7-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 70, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["TauntOnHitWeaponInfluence3"] = { type = "Suffix", affix = "of the Crusade", "(9-10)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 73, group = "AttacksTauntOnHitChance", weightKey = { "axe_crusader", "2h_axe_crusader", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "attack" }, }, + ["AttackSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(13-16)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(17-20)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Conquest", "(23-26)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 68, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AttackSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Conquest", "(27-30)% increased Attack Speed if you've Killed Recently", statOrder = { 4894 }, level = 73, group = "AttackSpeedIfEnemyKilledRecently", weightKey = { "2h_axe_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["CastSpeedIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(13-16)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["CastSpeedIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(17-20)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "sceptre_eyrie", "rune_dagger_eyrie", "wand_eyrie", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["CastSpeedIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(23-26)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 68, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["CastSpeedIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(27-30)% increased Cast Speed if you've Killed Recently", statOrder = { 5467 }, level = 73, group = "CastSpeedIfEnemyKilledRecently", weightKey = { "staff_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "speed" }, }, + ["WarcryCooldownSpeedInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WarcryCooldownSpeedInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "axe_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["WarcryCooldownSpeedTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(35-40)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 68, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, + ["WarcryCooldownSpeedTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(41-45)% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 73, group = "WarcryCooldownSpeed", weightKey = { "2h_sword_basilisk", "2h_axe_basilisk", "2h_mace_basilisk", "shield_basilisk", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { }, }, + ["CriticalStrikeChanceIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(31-40)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5925 }, level = 68, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeChanceIfKilledRecentlyInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(41-50)% increased Critical Strike Chance if you have Killed Recently", statOrder = { 5925 }, level = 73, group = "CriticalStrikeChanceIfKilledRecently", weightKey = { "claw_crusader", "dagger_crusader", "rune_dagger_crusader", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CriticalStrikeMultiplierIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(26-30)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5957 }, level = 68, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Conquest", "+(31-35)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5957 }, level = 73, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "claw_adjudicator", "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierAgainstFullLifeInfluence1"] = { type = "Suffix", affix = "of the Conquest", "+(41-50)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3433 }, level = 68, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeMultiplierAgainstFullLifeInfluence2"] = { type = "Suffix", affix = "of the Conquest", "+(51-60)% to Critical Strike Multiplier against Enemies that are on Full Life", statOrder = { 3433 }, level = 73, group = "CriticalStrikeMultiplierAgainstEnemiesOnFullLife", weightKey = { "dagger_adjudicator", "rune_dagger_adjudicator", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["GainRareMonsterModsOnKillChanceInfluence1"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (21-30)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6696 }, level = 68, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["GainRareMonsterModsOnKillChanceInfluence2"] = { type = "Suffix", affix = "of the Conquest", "When you Kill a Rare Monster, (31-40)% chance to gain one of its Modifiers for 10 seconds", statOrder = { 6696 }, level = 73, group = "GainRareMonsterModsOnKillChance", weightKey = { "claw_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["StunDurationAndThresholdInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(11-15)% reduced Enemy Stun Threshold", "(11-15)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["StunDurationAndThresholdInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(16-20)% reduced Enemy Stun Threshold", "(16-20)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["StunDurationAndThresholdTwoHandInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(21-25)% reduced Enemy Stun Threshold", "(21-25)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 68, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["StunDurationAndThresholdTwoHandInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% reduced Enemy Stun Threshold", "(26-30)% increased Stun Duration on Enemies", statOrder = { 1517, 1863 }, level = 73, group = "StunDurationAndThresholdUber", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectIfStunnedRecentlyInfluence1"] = { type = "Suffix", affix = "of the Crusade", "(26-30)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectIfStunnedRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(31-35)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(36-40)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 68, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["AreaOfEffectIfStunnedRecentlyTwoHandInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "(41-45)% increased Area of Effect if you have Stunned an Enemy Recently", statOrder = { 4728 }, level = 73, group = "AreaOfEffectIfStunnedEnemyRecently", weightKey = { "2h_mace_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["EnemiesExplodeOnDeathDealingFireInfluence1_"] = { type = "Suffix", affix = "of Redemption", "Enemies Killed with Attack or Spell Hits Explode, dealing 5% of their Life as Fire Damage", statOrder = { 2706 }, level = 78, group = "EnemiesExplodeOnDeath", weightKey = { "mace_eyrie", "2h_mace_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["ChanceForDoubleStunDurationInfluence1"] = { type = "Suffix", affix = "of Redemption", "(7-11)% chance to double Stun Duration", statOrder = { 3564 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceForDoubleStunDurationInfluence2"] = { type = "Suffix", affix = "of Redemption", "(12-15)% chance to double Stun Duration", statOrder = { 3564 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceForDoubleStunDurationTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(17-21)% chance to double Stun Duration", statOrder = { 3564 }, level = 68, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["ChanceForDoubleStunDurationTwoHandInfluence2_"] = { type = "Suffix", affix = "of Redemption", "(22-25)% chance to double Stun Duration", statOrder = { 3564 }, level = 73, group = "ChanceForDoubleStunDuration", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod" }, }, + ["MovementSpeedIfHitRecentlyInfluence1"] = { type = "Suffix", affix = "of Redemption", "(5-7)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementSpeedIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "(8-10)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "mace_eyrie", "sceptre_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementSpeedIfHitRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of Redemption", "(10-12)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 68, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MovementSpeedIfHitRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of Redemption", "(13-15)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 73, group = "MovementSpeedIfHitRecently", weightKey = { "2h_mace_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "speed" }, }, + ["AreaOfEffectIfKilledRecentlyInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(17-21)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AreaOfEffectIfKilledRecentlyInfluence2_"] = { type = "Suffix", affix = "of the Hunt", "(22-25)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AreaOfEffectIfKilledRecentlyTwoHandInfluence1"] = { type = "Suffix", affix = "of the Hunt", "(27-31)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 68, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AreaOfEffectIfKilledRecentlyTwoHandInfluence2"] = { type = "Suffix", affix = "of the Hunt", "(32-35)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 73, group = "AreaOfEffectIfKilledRecently", weightKey = { "2h_mace_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["ChanceToBlockIfDamagedRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3216 }, level = 68, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["ChanceToBlockIfDamagedRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3216 }, level = 73, group = "ChanceToBlockIfDamagedRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockChanceIfHitRecentlyInfluence1_"] = { type = "Suffix", affix = "of Redemption", "+(10-12)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5651 }, level = 68, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["SpellBlockChanceIfHitRecentlyInfluence2"] = { type = "Suffix", affix = "of Redemption", "+(13-15)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5651 }, level = 73, group = "SpellBlockChanceIfHitRecently", weightKey = { "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 500, 500, 0 }, modTags = { "block", "influence_mod" }, }, + ["AdditionalProjectileWeaponInfluence1_"] = { type = "Suffix", affix = "of the Conquest", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 82, group = "AdditionalProjectiles", weightKey = { "2h_sword_adjudicator", "2h_axe_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 200, 200, 200, 200, 200, 0 }, modTags = { "influence_mod" }, }, + ["SocketedSkillsChainInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Socketed Gems Chain 1 additional times", statOrder = { 540 }, level = 85, group = "DisplaySocketedSkillsChain", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, + ["SocketedSkillsForkInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles from Socketed Gems Fork", statOrder = { 564 }, level = 85, group = "DisplaySocketedSkillsFork", weightKey = { "bow_crusader", "default", }, weightVal = { 100, 0 }, modTags = { "skill", "influence_mod", "gem" }, }, + ["ProjectileDamagePerEnemyPiercedInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (15-20)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9734 }, level = 68, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["ProjectileDamagePerEnemyPiercedInfluence2_"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (21-25)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9734 }, level = 70, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["ProjectileDamagePerEnemyPiercedInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Projectiles deal (26-30)% increased Damage with Hits and Ailments for each Enemy Pierced", statOrder = { 9734 }, level = 73, group = "ProjectileDamagePerEnemyPierced", weightKey = { "bow_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "damage" }, }, + ["PhysicalDamageAddedAsRandomElementInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Gain (7-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 68, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["PhysicalDamageAddedAsRandomElementInfluence2"] = { type = "Suffix", affix = "of the Crusade", "Gain (9-11)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 73, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["PhysicalDamageAddedAsRandomElementInfluence3"] = { type = "Suffix", affix = "of the Crusade", "Gain (12-15)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 78, group = "PhysicalDamageAddedAsRandomElement", weightKey = { "bow_crusader", "default", }, weightVal = { 400, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental" }, }, + ["ArcaneSurgeOnCritInfluence1_"] = { type = "Suffix", affix = "of the Crusade", "(11-20)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6725 }, level = 75, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["ArcaneSurgeOnCritInfluence2"] = { type = "Suffix", affix = "of the Crusade", "(21-30)% chance to Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6725 }, level = 80, group = "GainArcaneSurgeOnCrit", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "critical" }, }, + ["CurseOnHitFlammabilityWeaponInfluence1"] = { type = "Suffix", affix = "of the Conquest", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 78, group = "FlammabilityOnHitLevel", weightKey = { "wand_adjudicator", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitFrostbiteWeaponInfluence1"] = { type = "Suffix", affix = "of Redemption", "Curse Enemies with Frostbite on Hit", statOrder = { 2531 }, level = 78, group = "FrostbiteOnHitLevel", weightKey = { "wand_eyrie", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitConductivityWeaponInfluence1"] = { type = "Suffix", affix = "of the Crusade", "Curse Enemies with Conductivity on Hit", statOrder = { 2527 }, level = 78, group = "ConductivityOnHitLevel", weightKey = { "wand_crusader", "default", }, weightVal = { 500, 0 }, modTags = { "influence_mod", "caster", "curse" }, }, + ["CurseOnHitDespairWeaponInfluence1"] = { type = "Suffix", affix = "of the Hunt", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 78, group = "CurseOnHitDespair", weightKey = { "wand_basilisk", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["ImpaleEffectEssence1"] = { type = "Suffix", affix = "of the Essence", "(12-16)% increased Impale Effect", statOrder = { 7242 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ImpaleEffectEssence2__"] = { type = "Suffix", affix = "of the Essence", "(17-21)% increased Impale Effect", statOrder = { 7242 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ImpaleEffectEssence3"] = { type = "Suffix", affix = "of the Essence", "(22-25)% increased Impale Effect", statOrder = { 7242 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ImpaleEffectTwoHandEssence1"] = { type = "Suffix", affix = "of the Essence", "(25-29)% increased Impale Effect", statOrder = { 7242 }, level = 58, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ImpaleEffectTwoHandEssence2_"] = { type = "Suffix", affix = "of the Essence", "(30-34)% increased Impale Effect", statOrder = { 7242 }, level = 74, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["ImpaleEffectTwoHandEssence3_"] = { type = "Suffix", affix = "of the Essence", "(35-38)% increased Impale Effect", statOrder = { 7242 }, level = 82, group = "ImpaleEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["BreachBodyChaosDamageAsPortionOfFireDamage1_"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["BreachBodyChaosDamageAsPortionOfColdDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["BreachBodyChaosDamageAsPortionOfLightningDamage1"] = { type = "Prefix", affix = "Chayula's", "Gain 10% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["BreachBodyAllDefences1"] = { type = "Prefix", affix = "Chayula's", "50% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, }, + ["BreachBodyLifeGainedOnHittingIgnitedEnemies1"] = { type = "Suffix", affix = "of Xoph", "Gain (20-30) Life for each Ignited Enemy hit with Attacks", statOrder = { 1743 }, level = 1, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["BreachBodyNoExtraBleedDamageWhileMoving1_"] = { type = "Suffix", affix = "of Uul-Netol", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["BreachBodyAddedColdDamagePerPowerCharge1"] = { type = "Prefix", affix = "Tul's", "Adds 10 to 15 Cold Damage to Spells per Power Charge", statOrder = { 1825 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["BreachBodyGainPowerChargeOnKillingFrozenEnemy1"] = { type = "Suffix", affix = "of Tul", "25% chance to gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1824 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, }, + ["BreachBodyIncreasedAttackSpeedPerDexterity1"] = { type = "Suffix", affix = "of Esh", "1% increased Attack Speed per 25 Dexterity", statOrder = { 4902 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "speed" }, }, + ["BreachBodyPhysicalDamageReductionWhileNotMoving1"] = { type = "Suffix", affix = "of Uul-Netol", "6% additional Physical Damage Reduction while stationary", statOrder = { 4313 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["BreachBodyAddedLightningDamagePerShockedEnemyKilled1"] = { type = "Prefix", affix = "Esh's", "Adds 1 to 5 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 9243 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["BreachBodyReflectsShocks1"] = { type = "Suffix", affix = "of Esh", "Shock Reflection", statOrder = { 9884 }, level = 1, group = "ReflectsShocks", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["BreachBodyChaosDamageDoesNotBypassESNotLowLifeOrMana1_"] = { type = "Prefix", affix = "Esh's", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5729 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, + ["BreachBodyOnHitBlindChilledEnemies1"] = { type = "Suffix", affix = "of Tul", "Blind Chilled Enemies on Hit", statOrder = { 5216 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["BreachBodyVulnerabilityOnHit1"] = { type = "Suffix", affix = "of Uul-Netol", "25% chance to Curse Enemies with Vulnerability on Hit", statOrder = { 2524 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["BreachBodyGrantsEnvy1"] = { type = "Prefix", affix = "Chayula's", "Grants Level 15 Envy Skill", statOrder = { 655 }, level = 1, group = "GrantsEnvy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill" }, }, + ["BreachBodyEnemiesBlockedAreIntimidated1"] = { type = "Prefix", affix = "Uul-Netol's", "Permanently Intimidate Enemies on Block", statOrder = { 9610 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["BreachBodyMinionsPoisonEnemiesOnHit1_"] = { type = "Suffix", affix = "of Chayula", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3174 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, }, + ["BreachBodyArmourIncreasedByUncappedFireResistance1____"] = { type = "Prefix", affix = "Xoph's", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4763 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour" }, }, + ["BreachBodyEvasionIncreasedByUncappedColdResistance1"] = { type = "Prefix", affix = "Tul's", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6486 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion" }, }, + ["BreachBodyCriticalChanceIncreasedByUncappedLightningResistance1"] = { type = "Suffix", affix = "of Esh", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 5919 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["BreachBodyCoverInAshWhenHit1__"] = { type = "Prefix", affix = "Xoph's", "Cover Enemies in Ash when they Hit you", statOrder = { 4695 }, level = 1, group = "CoverInAshWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["BreachBodyChillEnemiesWhenHit1"] = { type = "Suffix", affix = "of Tul", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3140 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["BreachBodyArcticArmourReservationCost1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4714 }, level = 1, group = "ArcticArmourReservationCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["BreachBodyArcticArmourReservationEfficiency1"] = { type = "Suffix", affix = "of Tul", "Arctic Armour has 100% increased Mana Reservation Efficiency", statOrder = { 4715 }, level = 1, group = "ArcticArmourReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["BreachBodyMaximumLifeConvertedToEnergyShield1___"] = { type = "Prefix", affix = "Chayula's", "10% of Maximum Life Converted to Energy Shield", statOrder = { 9161 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalIncreaseSocketedActiveGemLevelUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 190, 206 }, level = 90, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, + ["LocalIncreaseSocketedSupportGemLevelUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 189, 205 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, + ["PhysicalDamageTakenAsFirePercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2447, 6571 }, level = 94, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2448, 5818 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsLightningPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2449, 7451 }, level = 92, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, }, + ["ReducedElementalReflectTakenUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3293, 6334 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["ReducedPhysicalReflectTakenUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2241, 9670 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["ElementalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3293 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["PhysicalDamageCannotBeReflectedPercentUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2241 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["MaximumLifeUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(13-15)% increased maximum Life", statOrder = { 1571 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumManaBodyUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(16-18)% increased maximum Mana", statOrder = { 1580 }, level = 85, group = "MaximumManaIncreaseShaper", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["DamageTakenFromManaBeforeLifeUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "(11-15)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 90, group = "DamageRemovedFromManaBeforeLife", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "mana" }, }, + ["MaximumLifeOnKillPercentUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1749, 7393 }, level = 85, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumManaOnKillPercentUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1751, 8191 }, level = 85, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["MaximumEnergyShieldOnKillPercentUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1750, 6450 }, level = 85, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["PercentageStrengthUberMaven__"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 158, 1184 }, level = 93, group = "PercentageStrengthMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["PercentageDexterityUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 160, 1185 }, level = 93, group = "PercentageDexterityMaven", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["PercentageIntelligenceUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 161, 1186 }, level = 93, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["LifeRegenerationRatePercentUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Regenerate (2.1-3)% of Life per second", statOrder = { 1944 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["SupportedByItemRarityUberMaven__"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 20 Item Rarity", "(19-25)% increased Rarity of Items found from Slain Unique Enemies", statOrder = { 321, 10504 }, level = 95, group = "SupportedByItemRarityUnique", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem", "drop" }, }, + ["AdditionalCriticalStrikeChanceWithAttacksUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4792 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, + ["AdditionalCriticalStrikeChanceWithSpellsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, + ["MaximumManaInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% increased maximum Mana", statOrder = { 1580 }, level = 90, group = "MaximumManaIncreasePercent", weightKey = { "helmet_crusader", "body_armour_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["PhysTakenAsLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(16-18)% of Physical Damage from Hits taken as Lightning Damage", "(7-10)% of Lightning Damage taken Recouped as Life", statOrder = { 2449, 7451 }, level = 93, group = "PhysicalDamageTakenAsLightningUberMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "lightning" }, }, + ["ConsecratedGroundStationaryInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "You have Consecrated Ground around you while stationary", "Effects of Consecrated Ground you create Linger for 1 second", statOrder = { 5856, 10689 }, level = 85, group = "ConsecratedGroundStationaryMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["HolyPhysicalExplosionInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill Explode, dealing 5% of their Life as Physical Damage", statOrder = { 1880, 6372 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["HolyPhysicalExplosionChanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(8-12)% increased Area of Effect", "Enemies you Kill have a (31-35)% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 1880, 3304 }, level = 95, group = "EnemiesExplodeOnDeathPhysicalChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["PercentageIntelligenceBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "+1 to Level of Socketed Intelligence Gems", "(9-12)% increased Intelligence", statOrder = { 161, 1186 }, level = 85, group = "PercentageIntelligenceMaven", weightKey = { "body_armour_crusader", "amulet_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["AddPowerChargeOnCritInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "15% chance to gain a Power Charge on Critical Strike", "3% increased Damage per Power Charge", statOrder = { 1830, 6066 }, level = 90, group = "PowerChargeOnCriticalStrikeChanceMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod", "critical" }, }, + ["EnergyShieldOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Recover (5-6)% of Energy Shield on Kill", "(5-10)% increased Energy Shield Recovery Rate if you haven't Killed Recently", statOrder = { 1750, 6450 }, level = 90, group = "MaximumEnergyShieldOnKillPercentMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(12-15)% increased Energy Shield Recovery rate", "Regenerate (50-100) Energy Shield per second", statOrder = { 1568, 2645 }, level = 90, group = "EnergyShieldRecoveryRateMaven", weightKey = { "body_armour_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["PhysTakenAsFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(16-18)% of Physical Damage from Hits taken as Fire Damage", "(7-10)% of Fire Damage taken Recouped as Life", statOrder = { 2447, 6571 }, level = 93, group = "PhysicalDamageTakenAsFireUberMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "fire" }, }, + ["SocketedActiveGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Level of Socketed Skill Gems", "+(5-10)% to Quality of Socketed Skill Gems", statOrder = { 190, 206 }, level = 80, group = "LocalIncreaseSocketedActiveSkillGemLevelMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, + ["ReflectedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(3-5)% reduced Physical Damage taken", "You and your Minions take 100% reduced Reflected Physical Damage", statOrder = { 2241, 9670 }, level = 85, group = "ReducedPhysicalReflectTakenMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["PhysicalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "100% of Physical Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Physical Damage taken", statOrder = { 3, 2241 }, level = 85, group = "PhysicalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical" }, }, + ["AllResistancesInfluenceMaven____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(19-22)% to all Elemental Resistances", "+1% to all maximum Elemental Resistances", statOrder = { 1619, 1643 }, level = 85, group = "AllResistancesMaven", weightKey = { "body_armour_adjudicator", "belt_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "resistance" }, }, + ["PercentageStrengthBodyInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+1 to Level of Socketed Strength Gems", "(9-12)% increased Strength", statOrder = { 158, 1184 }, level = 85, group = "PercentageStrengthMaven", weightKey = { "body_armour_adjudicator", "amulet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["EnduranceChargeIfHitRecentlyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "3% increased Area of Effect per Endurance Charge", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 4733, 6746 }, level = 90, group = "EnduranceChargeIfHitRecentlyMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["LifeOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Recover (5-6)% of Life on Kill", "(5-10)% increased Life Recovery Rate if you haven't Killed Recently", statOrder = { 1749, 7393 }, level = 90, group = "MaximumLifeOnKillPercentMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["LifeRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(12-15)% increased Life Recovery rate", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 1578, 7347 }, level = 90, group = "LifeRecoveryRateMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "life" }, }, + ["SocketedAttacksManaCostInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Ignore Stuns while using Socketed Attack Skills", "Socketed Attacks have -20 to Total Mana Cost", statOrder = { 545, 549 }, level = 95, group = "SocketedAttacksManaCostMaven", weightKey = { "body_armour_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "resource", "influence_mod", "mana", "attack", "gem" }, }, + ["PhysTakenAsColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(16-18)% of Physical Damage from Hits taken as Cold Damage", "(7-10)% of Cold Damage taken Recouped as Life", statOrder = { 2448, 5818 }, level = 93, group = "PhysicalDamageTakenAsColdUberMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "physical", "elemental", "cold" }, }, + ["SocketedSupportGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+1 to Level of Socketed Support Gems", "+(5-10)% to Quality of Socketed Support Gems", statOrder = { 189, 205 }, level = 90, group = "LocalIncreaseSocketedSupportGemLevelMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "gem" }, }, + ["ReflectedElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(3-5)% reduced Elemental Damage taken", "You and your Minions take 100% reduced Reflected Elemental Damage", statOrder = { 3293, 6334 }, level = 85, group = "ReducedElementalReflectTakenMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["ElementalDamageCannotBeReflectedPercentInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "100% of Elemental Hit Damage from you and your Minions cannot be Reflected", "(3-5)% reduced Elemental Damage taken", statOrder = { 2, 3293 }, level = 85, group = "ElementalDamageOfYouAndMinionsCannotBeReflectedPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["NearbyEnemiesAreBlindedInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Cannot be Blinded", "Nearby Enemies are Blinded", statOrder = { 2974, 3396 }, level = 85, group = "NearbyEnemiesAreBlindedMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["PercentageDexterityBodyInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "+1 to Level of Socketed Dexterity Gems", "(9-12)% increased Dexterity", statOrder = { 160, 1185 }, level = 85, group = "PercentageDexterityMaven", weightKey = { "body_armour_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attribute", "gem" }, }, + ["FrenzyChargeOnHitChanceInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "1% increased Movement Speed per Frenzy Charge", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1802, 1833 }, level = 90, group = "FrenzyChargeOnHitChanceMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod", "speed" }, }, + ["ManaOnKillPercentInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Recover (5-6)% of Mana on Kill", "(5-10)% increased Mana Recovery Rate if you haven't Killed Recently", statOrder = { 1751, 8191 }, level = 90, group = "MaximumManaOnKillPercentMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaRecoveryRateBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-15)% increased Mana Recovery rate", "(20-35)% increased Mana Recovery from Flasks", statOrder = { 1586, 2060 }, level = 90, group = "ManaRecoveryRateMaven", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, + ["AuraEffectBodyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(26-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 90, group = "AuraEffect", weightKey = { "body_armour_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "aura" }, }, + ["MaximumLifeBodyInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased maximum Life", statOrder = { 1571 }, level = 95, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["PhysTakenAsChaosInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "+1% to maximum Chaos Resistance", "(16-18)% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 1640, 2451 }, level = 93, group = "PhysicalDamageTakenAsChaosUberMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "chaos", "resistance" }, }, + ["AdditionalCurseOnEnemiesInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2168, 5994 }, level = 92, group = "OLDAdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, }, + ["AdditionalCurseOnEnemiesInfluenceMavenV2___"] = { type = "Prefix", affix = "Elevated Hunter's", "You can apply an additional Curse", "20% increased Mana Reservation Efficiency of Curse Aura Skills", statOrder = { 2168, 5995 }, level = 92, group = "AdditionalCurseOnEnemiesMaven", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana", "caster", "aura", "curse" }, }, + ["RegenerateLifeOverMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Every 4 seconds, Regenerate 25% of Life over one second", statOrder = { 3786 }, level = 90, group = "RegenerateLifeOver1Second", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["OfferingEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(26-35)% increased effect of Offerings", statOrder = { 4063 }, level = 90, group = "OfferingEffect", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["AdditionalCritWithAttacksInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Attacks have +(1.6-2)% to Critical Strike Chance", statOrder = { 4792 }, level = 94, group = "AdditionalCriticalStrikeChanceWithAttacks", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "critical" }, }, + ["AdditionalCritWithSpellsInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(1.6-2)% to Spell Critical Strike Chance", statOrder = { 10125 }, level = 94, group = "AdditionalCriticalStrikeChanceWithSpells", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "critical" }, }, + ["LifeRegenerationPercentBodyInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Regenerate (2.1-3)% of Life per second", statOrder = { 1944 }, level = 85, group = "LifeRegenerationRatePercentage", weightKey = { "body_armour_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["AreaDamageSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Concentrated Effect", "(23-25)% increased Area Damage", statOrder = { 453, 2035 }, level = 92, group = "AreaDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["AreaOfEffectSupportedUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Increased Area of Effect", "(13-15)% increased Area of Effect", statOrder = { 224, 1880 }, level = 93, group = "AreaOfEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["MaximumManaUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "(12-15)% increased maximum Mana", "Transfiguration of Mind", statOrder = { 1580, 4603 }, level = 85, group = "MaximumManaIncreasePercentMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana", "damage" }, }, + ["MinionDamageSupportedUberMaven___"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Damage", "Minions deal (23-25)% increased Damage", statOrder = { 506, 1973 }, level = 93, group = "MinionDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "minion", "gem" }, }, + ["MinionLifeSupportedUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Minion Life", "Minions have (23-25)% increased maximum Life", statOrder = { 504, 1766 }, level = 90, group = "MinionLifeSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "life", "minion", "gem" }, }, + ["AdditionalMinesPlacedSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "Throw an additional Mine", statOrder = { 497, 3549 }, level = 95, group = "AdditionalMinesPlacedSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["MineDamageUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Blastchain Mine", "(31-35)% increased Mine Damage", statOrder = { 497, 1196 }, level = 90, group = "MineDamageSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["MineDamageTrapUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Mine Damage", statOrder = { 457, 1196 }, level = 90, group = "MineDamageTrapSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["IncreasedChillEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Hypothermia", "(17-20)% increased Effect of Cold Ailments", statOrder = { 511, 5798 }, level = 90, group = "ChillEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "cold", "ailment", "gem" }, }, + ["IncreasedShockEffectSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Innervate", "(17-20)% increased Effect of Lightning Ailments", statOrder = { 521, 7433 }, level = 90, group = "ShockEffectSupported", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "lightning", "ailment", "gem" }, }, + ["IgniteDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Immolate", "(17-20)% increased Ignite Duration on Enemies", statOrder = { 309, 1859 }, level = 90, group = "IgniteDurationSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "elemental", "fire", "ailment", "gem" }, }, + ["IncreasedBurningDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Burning Damage", "(31-35)% increased Burning Damage", statOrder = { 312, 1877 }, level = 92, group = "BurningDamageSupported", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "elemental_damage", "influence_mod", "damage", "elemental", "fire", "gem" }, }, + ["ChanceToGainPowerChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2142, 2633 }, level = 94, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_shaper", "staff_shaper", "warstaff_shaper", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["SupportedByLessDurationUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Less Duration", statOrder = { 365 }, level = 78, group = "SupportedByLessDuration", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SpellAddedFireDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1404 }, level = 92, group = "SpellAddedFireDamageUber", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1405 }, level = 93, group = "SpellAddedColdDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1406 }, level = 94, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "influence_mod", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedPhysicalDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1403 }, level = 95, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "influence_mod", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1407 }, level = 95, group = "SpellAddedChaosDamage", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "influence_mod", "damage", "chaos", "caster" }, }, + ["ManaRegenerationUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1584, 4316 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["AddedManaRegenerationUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1582, 8175 }, level = 90, group = "AddedManaRegenerationMaven", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, + ["AdditionalSpellBlockChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1160, 1989 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["SocketedSpellCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +4% to Critical Strike Chance", statOrder = { 566 }, level = 94, group = "SocketedSpellCriticalStrikeChance", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "caster", "critical", "gem" }, }, + ["SocketedAttackCriticalStrikeChanceUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +4% to Critical Strike Chance", statOrder = { 547 }, level = 93, group = "SocketedAttackCriticalStrikeChance", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "attack", "critical", "gem" }, }, + ["EnemyPhysicalDamageTakenAuraUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Nearby Enemies take 12% increased Physical Damage", statOrder = { 7918 }, level = 95, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["EnemyElementalDamageTakenAuraUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Nearby Enemies take 9% increased Elemental Damage", statOrder = { 7913 }, level = 95, group = "NearbyEnemyElementalDamageTaken", weightKey = { "helmet_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["LifeRegenerationPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Regenerate (1.6-2)% of Life per second", statOrder = { 1944 }, level = 83, group = "LifeRegenerationRatePercentage", weightKey = { "boots_adjudicator", "helmet_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumLightningResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 95, group = "MaximumLightningResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["PhysTakenAsLightningHelmInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "(11-13)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 93, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "lightning" }, }, + ["EnemyLightningResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "Nearby Enemies have -12% to Lightning Resistance", statOrder = { 7916 }, level = 95, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning", "resistance" }, }, + ["SpellBlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(5-6)% Chance to Block Spell Damage", "+1% to maximum Chance to Block Spell Damage", statOrder = { 1160, 1989 }, level = 90, group = "SpellBlockPercentageMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["FortifyEffectInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "+500 to Armour while Fortified", "+(4.2-5) to maximum Fortification", statOrder = { 4767, 9117 }, level = 90, group = "FortifyEffectMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour" }, }, + ["EnergyShieldRegenInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(15-25)% increased Energy Shield Recharge Rate", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 1565, 2646 }, level = 85, group = "EnergyShieldRegenerationPerMinuteMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["ReducedIgniteDurationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Ignite Duration on you", "(36-50)% increased Damage if you've been Ignited Recently", statOrder = { 1875, 6045 }, level = 85, group = "ReducedBurnDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["ReducedFreezeDurationInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Crusade", "(51-60)% reduced Freeze Duration on you", "(4-7)% reduced Damage taken if you've been Frozen Recently", statOrder = { 1874, 6117 }, level = 85, group = "ReducedFreezeDurationMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ReducedShockEffectInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(45-75)% increased Critical Strike Chance if you've been Shocked Recently", "(51-60)% reduced Effect of Shock on you", statOrder = { 5926, 10019 }, level = 85, group = "ReducedShockEffectOnSelfMaven", weightKey = { "helmet_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "critical", "ailment" }, }, + ["MaximumPowerChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Power Charges", "10% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 1814, 6775, 6775.1 }, level = 85, group = "IncreasedMaximumPowerChargesMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PhysTakenAsFireHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(11-13)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 93, group = "PhysicalDamageTakenAsFireUber", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "fire" }, }, + ["ElementalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(19-22)% increased Elemental Damage", "Damage Penetrates (2-3)% of Enemy Elemental Resistances", statOrder = { 1980, 3559 }, level = 85, group = "ElementalDamagePercentMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["WarcryAreaOfEffectInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "15% increased Warcry Buff Effect", "Warcry Skills have (26-30)% increased Area of Effect", statOrder = { 10566, 10574 }, level = 85, group = "WarcryAreaOfEffectMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["EnemyFireResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Nearby Enemies have -12% to Fire Resistance", statOrder = { 7914 }, level = 95, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "resistance" }, }, + ["CriticalStrikeMultiplierInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(21-24)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 85, group = "CriticalStrikeMultiplier", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["ManaRegenerationInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(56-70)% increased Mana Regeneration Rate", "20% increased Mana Regeneration Rate while stationary", statOrder = { 1584, 4316 }, level = 85, group = "ManaRegenerationMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["GainAccuracyEqualToStrengthInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "1% increased Critical Strike Chance per 10 Strength", "Gain Accuracy Rating equal to your Strength", statOrder = { 5930, 6712 }, level = 85, group = "GainAccuracyEqualToStrengthMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, + ["MinionLifeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "Minions have (36-40)% increased maximum Life", "Minions Regenerate (1-1.5)% of Life per second", statOrder = { 1766, 2911 }, level = 85, group = "MinionLifeMaven", weightKey = { "helmet_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "minion" }, }, + ["PowerChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Power Charge Duration", "(11-15)% chance to gain a Power Charge on Kill", statOrder = { 2142, 2633 }, level = 90, group = "PowerChargeOnKillChanceMaven", weightKey = { "helmet_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "sceptre_eyrie", "wand_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "power_charge", "influence_mod" }, }, + ["PhysTakenAsColdHelmetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-13)% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 93, group = "PhysicalDamageTakenAsColdUber", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "physical", "elemental", "cold" }, }, + ["SpellsAdditionalUnleashSealInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Redeemer's", "(50-75)% increased Critical Strike Chance with Spells which remove the maximum number of Seals", "Skills supported by Unleash have +1 to maximum number of Seals", statOrder = { 10137, 10720 }, level = 90, group = "SpellsAdditionalUnleashSealMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "caster", "critical" }, }, + ["EnemyColdResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "Nearby Enemies have -12% to Cold Resistance", statOrder = { 7912 }, level = 95, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold", "resistance" }, }, + ["ReducedManaReservationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(12-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 85, group = "ReducedReservation", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["ManaReservationEfficiencyInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-14)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 85, group = "ManaReservationEfficiency", weightKey = { "helmet_eyrie", "amulet_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "influence_mod", "mana" }, }, + ["IgniteChanceAndDamageInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Ignite", "Ignites you inflict deal Damage (10-15)% faster", statOrder = { 2026, 2564 }, level = 85, group = "IgniteChanceAndDamageMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire", "ailment" }, }, + ["FreezeChanceAndDurationInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Freeze", "Freeze Enemies as though dealing (30-50)% more Damage", statOrder = { 2029, 7102 }, level = 85, group = "FreezeChanceAndDurationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ShockChanceAndEffectInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(10-15)% chance to Shock", "Shock Enemies as though dealing (30-50)% more Damage", statOrder = { 2033, 7103 }, level = 85, group = "ShockChanceAndEffectMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AddedManaRegenerationInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "Regenerate (6-8) Mana per second", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 1582, 8175 }, level = 85, group = "AddedManaRegenerationMaven", weightKey = { "helmet_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "influence_mod", "mana" }, }, + ["SpellAddedFireDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Fire Damage to Spells", statOrder = { 1404 }, level = 85, group = "SpellAddedFireDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Cold Damage to Spells", statOrder = { 1405 }, level = 85, group = "SpellAddedColdDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (2-8) to (101-121) Lightning Damage to Spells", statOrder = { 1406 }, level = 85, group = "SpellAddedLightningDamageUber", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedPhysicalDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (35-49) to (60-73) Physical Damage to Spells", statOrder = { 1403 }, level = 85, group = "SpellAddedPhysicalDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "Adds (29-39) to (49-61) Chaos Damage to Spells", statOrder = { 1407 }, level = 85, group = "SpellAddedChaosDamage", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["EnemyChaosResistanceAuraInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Nearby Enemies have -12% to Chaos Resistance", statOrder = { 7911 }, level = 95, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["PercentageIntelligenceInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Intelligence", statOrder = { 1186 }, level = 85, group = "PercentageIntelligence", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, + ["IgnitingConfluxInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Ignite Duration on Enemies", "You have Igniting Conflux for 3 seconds every 8 seconds", statOrder = { 1859, 6821 }, level = 90, group = "IgnitingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChillingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Chill Duration on Enemies", "You have Chilling Conflux for 3 seconds every 8 seconds", statOrder = { 1856, 6821 }, level = 90, group = "ChillingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ShockingConfluxInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(20-30)% increased Shock Duration on Enemies", "You have Shocking Conflux for 3 seconds every 8 seconds", statOrder = { 1857, 6821 }, level = 90, group = "ShockingConfluxMaven", weightKey = { "helmet_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IncreasedAttackSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Faster Attacks", "(13-14)% increased Attack Speed", statOrder = { 469, 1410 }, level = 92, group = "IncreasedAttackSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "speed", "gem" }, }, + ["IncreasedCastSpeedUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Faster Casting", "(13-14)% increased Cast Speed", statOrder = { 500, 1446 }, level = 94, group = "IncreasedCastSpeedSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "caster", "speed", "gem" }, }, + ["IncreasedAttackAndCastSpeedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-14)% increased Attack and Cast Speed", "(5-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2046, 2993 }, level = 95, group = "IncreasedAttackAndCastSpeedSupportedMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, + ["SupportedByManaLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 20 Mana Leech", "(20-30)% increased Maximum total Mana Recovery per second from Leech", statOrder = { 514, 1733 }, level = 78, group = "DisplaySupportedByManaLeechMaven", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "resource", "influence_mod", "mana", "gem" }, }, + ["ProjectileSpeedUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are supported by Level 25 Faster Projectiles", "(26-30)% increased Projectile Speed", statOrder = { 482, 1796 }, level = 92, group = "ProjectileSpeedSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["ProjectileDamageUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are Supported by Level 25 Slower Projectiles", "(23-25)% increased Projectile Damage", statOrder = { 377, 1996 }, level = 93, group = "ProjectileDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["ChanceToAvoidInterruptionWhileCastingUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 90, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["IncreasedMeleeWeaponRangeUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2534 }, level = 95, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["IncreasedMeleeWeaponRangeAndMeleeDamageUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "(13-16)% increased Melee Damage", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 95, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["AdditionalTrapsThrownSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "Skills which Throw Traps throw up to 1 additional Trap", statOrder = { 454, 9528 }, level = 94, group = "AdditionalTrapsThrownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapDamageUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap", "(31-35)% increased Trap Damage", statOrder = { 454, 1194 }, level = 90, group = "TrapDamageSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapDamageCooldownUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(31-35)% increased Trap Damage", statOrder = { 390, 1194 }, level = 90, group = "TrapDamageCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TrapSpeedCooldownUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Advanced Traps", "(17-20)% increased Trap Throwing Speed", statOrder = { 390, 1927 }, level = 90, group = "TrapSpeedCooldownSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["TrapDamageMineUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Trap And Mine Damage", "(31-35)% increased Trap Damage", statOrder = { 457, 1194 }, level = 90, group = "TrapDamageMineSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["PoisonDamageSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(31-35)% increased Damage with Poison", statOrder = { 523, 3181 }, level = 90, group = "PoisonDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment", "gem" }, }, + ["PoisonDurationSupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance to Poison", "(17-20)% increased Poison Duration", statOrder = { 523, 3170 }, level = 90, group = "PoisonDurationSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "poison", "influence_mod", "chaos", "ailment", "gem" }, }, + ["BleedingDamageUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Chance To Bleed", "(31-35)% increased Damage with Bleeding", statOrder = { 244, 3169 }, level = 90, group = "BleedingDamageSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment", "gem" }, }, + ["ChanceToGainFrenzyChargeOnKillUberElderMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2127, 2631 }, level = 94, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["IncreasedAccuracySupportedUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are supported by Level 25 Additional Accuracy", "(16-20)% increased Global Accuracy Rating", statOrder = { 480, 1434 }, level = 93, group = "IncreasedAccuracyPercentSupported", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "attack", "gem" }, }, + ["AdditionalBlockChanceUberMaven___"] = { type = "Suffix", affix = "of the Elevated Elder", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1138, 1988 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["BlindOnHitSupportedUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are supported by Level 25 Blind", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 470, 2958 }, level = 90, group = "BlindOnHitSupported", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["SocketedSpellCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Spells have +90% to Critical Strike Multiplier", statOrder = { 567 }, level = 93, group = "SocketedSpellCriticalMultiplier", weightKey = { "gloves_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "caster_damage", "influence_mod", "damage", "caster", "critical", "gem" }, }, + ["SocketedAttackCriticalMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Attacks have +90% to Critical Strike Multiplier", statOrder = { 548 }, level = 94, group = "SocketedAttackCriticalMultiplier", weightKey = { "gloves_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "damage", "attack", "critical", "gem" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "influence_mod", "damage", "chaos" }, }, + ["ColdDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["FireDamageOverTimeMultiplierUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(17-24)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_shaper", "amulet_shaper", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["PhysicalDamageOverTimeMultiplierUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(17-24)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_elder", "amulet_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "influence_mod", "damage", "physical" }, }, + ["AvoidStunInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "(36-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 85, group = "AvoidStun", weightKey = { "boots_adjudicator", "gloves_adjudicator", "quiver_adjudicator", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["MaximumColdResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 95, group = "MaximumColdResist", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["ConvertPhysicalToFireInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Fire Damage", "(22-25)% of Physical Damage Converted to Fire Damage", statOrder = { 1932, 1955 }, level = 81, group = "ConvertPhysicalToFireMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Cold Damage", "(22-25)% of Physical Damage Converted to Cold Damage", statOrder = { 1933, 1957 }, level = 81, group = "ConvertPhysicalToColdMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (3-5)% of Physical Damage as Extra Lightning Damage", "(22-25)% of Physical Damage Converted to Lightning Damage", statOrder = { 1934, 1959 }, level = 81, group = "ConvertPhysicalToLightningMaven", weightKey = { "gloves_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["MaximumLifeLeechRateInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "20% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 85, group = "MaximumLifeLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life" }, }, + ["MaximumEnergyShieldLeechRateInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Crusader's", "30% increased Maximum total Energy Shield Recovery per second from Leech", statOrder = { 1734 }, level = 85, group = "MaximumEnergyShieldLeechRate", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "energy_shield" }, }, + ["AvoidInterruptionWhileCastingInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 85, group = "AvoidInterruptionWhileCasting", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["GlobalCriticalStrikeChanceInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(31-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 85, group = "CriticalStrikeChance", weightKey = { "gloves_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, }, + ["MaximumFrenzyChargeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Frenzy Charges", "10% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 1809, 6773 }, level = 85, group = "MaximumFrenzyChargesMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["MeleeDamageInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Melee Damage", statOrder = { 1234 }, level = 83, group = "MeleeDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["ProjectileAttackDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 83, group = "ProjectileAttackDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "attack" }, }, + ["SpellDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Spell Damage", statOrder = { 1223 }, level = 83, group = "SpellDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "caster_damage", "influence_mod", "damage", "caster" }, }, + ["DamageOverTimeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "(31-38)% increased Damage over Time", statOrder = { 1210 }, level = 83, group = "DegenerationDamage", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, }, + ["MeleeWeaponRangeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(0.3-0.4) metres to Melee Strike Range", statOrder = { 2534 }, level = 92, group = "MeleeWeaponAndUnarmedRange", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["BlockPercentInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(4-5)% Chance to Block Attack Damage", "+1% to maximum Chance to Block Attack Damage", statOrder = { 1138, 1988 }, level = 90, group = "BlockPercentMaven", weightKey = { "gloves_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["CullingStrikeInfluenceMaven__"] = { type = "Suffix", affix = "of the Elevated Conquest", "Culling Strike", "(15-25)% increased Area of Effect if you've dealt a Culling Strike Recently", statOrder = { 2039, 4725 }, level = 83, group = "CullingStrikeMaven", weightKey = { "gloves_adjudicator", "2h_sword_adjudicator", "2h_axe_adjudicator", "2h_mace_adjudicator", "staff_adjudicator", "warstaff_adjudicator", "bow_adjudicator", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["FrenzyChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Frenzy Charge Duration", "(7-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2127, 2631 }, level = 90, group = "FrenzyChargeOnKillChanceMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "sword_eyrie", "axe_eyrie", "claw_eyrie", "dagger_eyrie", "rune_dagger_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "bow_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "frenzy_charge", "influence_mod" }, }, + ["AddedPhysicalDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (9-12) to (13-16) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9247 }, level = 83, group = "AddedPhysicalDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical" }, }, + ["AddedFireDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9235 }, level = 83, group = "AddedFireDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "fire" }, }, + ["AddedColdDamageCritRecentlyInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds (26-30) to (36-45) Cold Damage if you've dealt a Critical Strike Recently", statOrder = { 9230 }, level = 83, group = "AddedColdDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "cold" }, }, + ["AddedLightningDamageCritRecentlyInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Adds 1 to (61-90) Lightning Damage if you've dealt a Critical Strike Recently", statOrder = { 9241 }, level = 83, group = "AddedLightningDamageIfCritRecently", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental", "lightning" }, }, + ["MinionDamageInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Minions deal (31-45)% increased Damage", statOrder = { 1973 }, level = 83, group = "MinionDamage", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "minion" }, }, + ["IncreasedAccuracyPercentInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(21-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 90, group = "IncreasedAccuracyPercent", weightKey = { "gloves_eyrie", "quiver_eyrie", "ring_eyrie", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["GlobalChanceToBlindOnHitInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(20-30)% increased Damage with Hits and Ailments against Blinded Enemies", "(12-15)% Global chance to Blind Enemies on hit", statOrder = { 2811, 2958 }, level = 90, group = "GlobalChanceToBlindOnHitMaven", weightKey = { "gloves_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "damage" }, }, + ["AdditionalChanceToEvadeInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(7-12)% increased Attack and Cast Speed if you haven't been Hit Recently", "+(2-4)% chance to Evade Attack Hits", statOrder = { 4816, 5673 }, level = 85, group = "AdditionalChanceToEvadeMaven", weightKey = { "gloves_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion", "attack", "caster", "speed" }, }, + ["ChanceToIntimidateOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 95, group = "ChanceToIntimidateOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 95, group = "ChanceToUnnerveOnHit", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["StrikeSkillsAdditionalTargetInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 90, group = "StrikeSkillsAdditionalTarget", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["ChanceToImpaleInfluenceMaven_"] = { type = "Prefix", affix = "Elevated Hunter's", "(21-25)% chance to Impale Enemies on Hit with Attacks", "Adds (1-2) to (3-5) Physical Damage for each Impale on Enemy", statOrder = { 4918, 9249 }, level = 90, group = "AttackImpaleChanceMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical", "attack" }, }, + ["AilmentDurationInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "(13-15)% increased Duration of Ailments on Enemies", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 1860, 9499 }, level = 90, group = "IncreasedAilmentDurationMaven", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "ailment" }, }, + ["PercentageDexterityInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Dexterity", statOrder = { 1185 }, level = 85, group = "PercentageDexterity", weightKey = { "gloves_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, + ["FireDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 90, group = "FireDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamageOverTimeMultiplierInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 90, group = "ColdDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ChaosDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 90, group = "ChaosDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["PhysicalDamageOverTimeMultiplierInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "+(21-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 90, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "gloves_basilisk", "amulet_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["ManaGainPerTargetInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "Gain (3-5) Mana per Enemy Hit with Attacks", "(10-20)% increased Attack Speed while not on Low Mana", statOrder = { 1744, 4906 }, level = 78, group = "ManaGainPerTargetMaven", weightKey = { "gloves_basilisk", "quiver_basilisk", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack", "speed" }, }, + ["IncreasedDurationBootsUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 20 More Duration", "(10-15)% increased Skill Effect Duration", statOrder = { 314, 1895 }, level = 78, group = "SkillEffectDurationSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["IncreasedCooldownRecoveryBootsUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["SupportedByFortifyUberMaven_"] = { type = "Prefix", affix = "Elevated Elder's", "Socketed Gems are Supported by Level 25 Fortify", statOrder = { 496 }, level = 78, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["ImmuneToChilledGroundUberMaven"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Chill", statOrder = { 10458 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["ImmuneToBurningGroundUberMaven_"] = { type = "Prefix", affix = "Elevated Shaper's", "Unaffected by Ignite", statOrder = { 10473 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["ImmuneToShockedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Shock", statOrder = { 10477 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["ImmuneToDesecratedGroundUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "Unaffected by Poison", statOrder = { 5055 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "influence_mod", "chaos", "ailment" }, }, + ["ChanceToDodgeUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 94, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 93, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidStunUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "(36-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 92, group = "AvoidStun", weightKey = { "boots_elder", "quiver_elder", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToAvoidElementalAilmentsUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "(36-45)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 91, group = "AvoidElementalStatusAilments", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToAvoidProjectilesUberMaven___"] = { type = "Suffix", affix = "of Elevated Shaping", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4950, 4993 }, level = 94, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToGainEnduranceChargeOnKillUberMaven"] = { type = "Prefix", affix = "Elevated Elder's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2125, 2629 }, level = 93, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "2h_axe_elder", "2h_mace_elder", "2h_sword_elder", "staff_elder", "warstaff_elder", "boots_elder", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["TotemDamageSpellUberMaven_"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(31-35)% increased Totem Damage", statOrder = { 464, 1193 }, level = 90, group = "TotemDamageSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemSpeedSpellUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "Socketed Gems are Supported by Level 25 Spell Totem", "(17-20)% increased Totem Placement speed", statOrder = { 464, 2578 }, level = 90, group = "TotemSpeedSpellSupported", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["TotemDamageAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(31-35)% increased Totem Damage", statOrder = { 362, 1193 }, level = 90, group = "TotemDamageAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "damage", "gem" }, }, + ["TotemSpeedAttackUberMaven"] = { type = "Suffix", affix = "of Elevated Shaping", "Socketed Gems are Supported by Level 25 Ballista Totem", "(17-20)% increased Totem Placement speed", statOrder = { 362, 2578 }, level = 90, group = "TotemSpeedAttackSupported", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "speed", "gem" }, }, + ["SupportedByLifeLeechUberMaven__"] = { type = "Prefix", affix = "Elevated Shaper's", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 483 }, level = 78, group = "SupportedByLifeLeech", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "support", "influence_mod", "gem" }, }, + ["GrantsDecoyTotemSkillUberMaven_"] = { type = "Suffix", affix = "of Elevated Shaping", "Grants Level 25 Decoy Totem Skill", statOrder = { 700 }, level = 78, group = "DecoyTotemSkill", weightKey = { "boots_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod" }, }, + ["GlobalRaiseSpectreGemLevelUberMaven"] = { type = "Suffix", affix = "of the Elevated Elder", "+2 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 85, group = "MinionGlobalSkillLevel", weightKey = { "boots_elder", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "influence_mod", "minion", "gem" }, }, + ["UnaffectedByShockedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Unaffected by Shock", statOrder = { 10477 }, level = 78, group = "ShockedGroundEffectEffectivenessMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["SocketedLightningGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+2 to Level of Socketed Lightning Gems", "+(3-7)% to Quality of Socketed Lightning Gems", statOrder = { 169, 216 }, level = 78, group = "LocalIncreaseSocketedLightningGemLevelMaven", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "gem" }, }, + ["MaximumFireResistanceInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceInfluenceMavenNew"] = { type = "Suffix", affix = "of the Elevated Crusade", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 95, group = "MaximumFireResist", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["PhysicalAddedAsExtraLightningBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Crusader's", "Gain (9-11)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 85, group = "PhysicalAddedAsLightning", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "lightning" }, }, + ["CooldownRecoveryInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Crusade", "(16-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 90, group = "GlobalCooldownRecovery", weightKey = { "boots_crusader", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["AvoidIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 85, group = "AvoidIgnite", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["AvoidFreezeInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 85, group = "AvoidFreeze", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["AvoidShockInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Crusade", "(71-80)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 85, group = "AvoidShock", weightKey = { "boots_crusader", "quiver_crusader", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "ailment" }, }, + ["AvoidProjectilesInfluenceMaven_"] = { type = "Suffix", affix = "of Elevated Redemption", "(11-15)% chance to avoid Projectiles if you've taken Projectile Damage Recently", "(10-12)% chance to avoid Projectiles", statOrder = { 4950, 4993 }, level = 83, group = "ChanceToAvoidProjectilesMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["UnaffectedByBurningGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "Unaffected by Ignite", statOrder = { 10473 }, level = 78, group = "BurningGroundEffectEffectivenessMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "ailment" }, }, + ["SocketedFireGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Warlord's", "+2 to Level of Socketed Fire Gems", "+(3-7)% to Quality of Socketed Fire Gems", statOrder = { 167, 214 }, level = 78, group = "LocalIncreaseSocketedFireGemLevelMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "gem" }, }, + ["MaximumEnduranceChargeInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Warlord's", "+1 to Maximum Endurance Charges", "10% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 1804, 4239 }, level = 85, group = "MaximumEnduranceChargesMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["PhysicalAddedAsExtraFireBootsInfluenceMaven___"] = { type = "Prefix", affix = "Elevated Warlord's", "Gain (9-11)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 85, group = "PhysicalAddedAsFire", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "fire" }, }, + ["AvoidFireDamageInfluenceMaven_____"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Fire Resistance", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 1625, 3373 }, level = 90, group = "FireDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "fire", "resistance" }, }, + ["AvoidColdDamageInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Cold Resistance", "(8-10)% chance to Avoid Cold Damage from Hits", statOrder = { 1631, 3374 }, level = 90, group = "ColdDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "resistance" }, }, + ["AvoidLightningDamageInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "+(20-30)% to Lightning Resistance", "(8-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 1636, 3375 }, level = 90, group = "LightningDamageAvoidanceMaven", weightKey = { "boots_adjudicator", "shield_adjudicator", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "elemental", "lightning", "resistance" }, }, + ["AdditionalPhysicalDamageReductionInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Conquest", "(15-20)% increased Armour", "(2-4)% additional Physical Damage Reduction", statOrder = { 1541, 2273 }, level = 85, group = "ReducedPhysicalDamageTakenMaven", weightKey = { "boots_adjudicator", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "armour", "physical" }, }, + ["UnaffectedByChilledGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Unaffected by Chill", statOrder = { 10458 }, level = 78, group = "ChilledGroundEffectEffectivenessMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "ailment" }, }, + ["SocketedColdGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "+2 to Level of Socketed Cold Gems", "+(3-7)% to Quality of Socketed Cold Gems", statOrder = { 168, 211 }, level = 78, group = "LocalIncreaseSocketedColdGemLevelMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental", "cold", "gem" }, }, + ["EnduranceChargeOnKillInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "50% increased Endurance Charge Duration", "(7-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2125, 2629 }, level = 90, group = "EnduranceChargeOnKillChanceMaven", weightKey = { "boots_eyrie", "sword_eyrie", "axe_eyrie", "mace_eyrie", "sceptre_eyrie", "2h_sword_eyrie", "2h_axe_eyrie", "2h_mace_eyrie", "staff_eyrie", "warstaff_eyrie", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["PhysicalAddedAsExtraColdBootsInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "Gain (9-11)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 85, group = "PhysicalAddedAsCold", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "elemental_damage", "influence_mod", "damage", "physical", "elemental", "cold" }, }, + ["ElusiveOnCriticalStrikeInfluenceMaven"] = { type = "Prefix", affix = "Elevated Redeemer's", "(11-20)% chance to gain Elusive on Critical Strike", "(5-10)% increased Elusive Effect", statOrder = { 4281, 6349 }, level = 85, group = "ElusiveOnCriticalStrikeMaven", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, }, + ["ChanceToDodgeAttacksInfluenceMaven__"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ChanceToDodgeSpellsInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "+(16-18)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 90, group = "ChanceToSuppressSpellsMavenOld", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["IncreasedAilmentEffectOnEnemiesInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(41-60)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 83, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots_eyrie", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "ailment" }, }, + ["OnslaughtOnKillInfluenceMaven"] = { type = "Suffix", affix = "of Elevated Redemption", "(8-10)% chance to gain Onslaught for 4 seconds on Kill", "(3-10)% increased Attack, Cast and Movement Speed while you have Onslaught", statOrder = { 2993, 4839 }, level = 90, group = "ChanceToGainOnslaughtOnKillMaven", weightKey = { "boots_eyrie", "quiver_eyrie", "default", }, weightVal = { 0, 0, 0 }, modTags = { "influence_mod", "attack", "caster", "speed" }, }, + ["UnaffectedByDesecratedGroundInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "Unaffected by Poison", statOrder = { 5055 }, level = 78, group = "DesecratedGroundEffectEffectivenessMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["SocketedChaosGemLevelInfluenceMaven"] = { type = "Prefix", affix = "Elevated Hunter's", "+2 to Level of Socketed Chaos Gems", "+(3-7)% to Quality of Socketed Chaos Gems", statOrder = { 170, 210 }, level = 78, group = "LocalIncreaseSocketedChaosGemLevelMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "gem" }, }, + ["AdditionalPierceInfluenceMaven__"] = { type = "Prefix", affix = "Elevated Hunter's", "Projectiles Pierce (3-5) additional Targets", statOrder = { 1790 }, level = 90, group = "AdditionalPierce", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["PercentageStrengthInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(11-12)% increased Strength", statOrder = { 1184 }, level = 85, group = "PercentageStrength", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "attribute" }, }, + ["AvoidBleedAndPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(61-70)% chance to Avoid being Poisoned", "(61-70)% chance to Avoid Bleeding", statOrder = { 1849, 4216 }, level = 85, group = "AvoidBleedAndPoison", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, + ["TailwindOnCriticalStrikeInfluenceMaven_"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-25)% increased Effect of Tailwind on you", "You have Tailwind if you have dealt a Critical Strike Recently", statOrder = { 10346, 10348 }, level = 85, group = "TailwindOnCriticalStrikeMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["FasterIgniteInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Ignite Duration on Enemies", "Ignites you inflict deal Damage (11-15)% faster", statOrder = { 1859, 2564 }, level = 83, group = "FasterIgniteDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterBleedInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Bleeding Duration", "Bleeding you inflict deals Damage (11-15)% faster", statOrder = { 4994, 6544 }, level = 83, group = "FasterBleedDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterPoisonInfluenceMaven"] = { type = "Suffix", affix = "of the Elevated Hunt", "(10-20)% increased Poison Duration", "Poisons you inflict deal Damage (11-15)% faster", statOrder = { 3170, 6545 }, level = 83, group = "FasterPoisonDamageMaven", weightKey = { "boots_basilisk", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["LocalIncreasedWard1"] = { type = "Prefix", affix = "Farrier's", "+(5-9) to Ward", statOrder = { 1528 }, level = 3, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard2"] = { type = "Prefix", affix = "Brownsmith's", "+(10-15) to Ward", statOrder = { 1528 }, level = 11, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard3_"] = { type = "Prefix", affix = "Coppersmith's", "+(16-23) to Ward", statOrder = { 1528 }, level = 17, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard4"] = { type = "Prefix", affix = "Blacksmith's", "+(24-35) to Ward", statOrder = { 1528 }, level = 23, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard5___"] = { type = "Prefix", affix = "Silversmith's", "+(36-52) to Ward", statOrder = { 1528 }, level = 29, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard6_"] = { type = "Prefix", affix = "Goldsmith's", "+(52-69) to Ward", statOrder = { 1528 }, level = 35, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard7"] = { type = "Prefix", affix = "Whitesmith's", "+(70-84) to Ward", statOrder = { 1528 }, level = 43, group = "LocalWard", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard8__"] = { type = "Prefix", affix = "Engraver's", "+(85-99) to Ward", statOrder = { 1528 }, level = 51, group = "LocalWard", weightKey = { "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard9"] = { type = "Prefix", affix = "Runesmith's", "+(100-119) to Ward", statOrder = { 1528 }, level = 60, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard10____"] = { type = "Prefix", affix = "Runemaster's", "+(120-139) to Ward", statOrder = { 1528 }, level = 69, group = "LocalWard", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWard11"] = { type = "Prefix", affix = "Artificer's", "+(140-159) to Ward", statOrder = { 1528 }, level = 75, group = "LocalWard", weightKey = { "shield", "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent1"] = { type = "Prefix", affix = "Chiseled", "(11-28)% increased Ward", statOrder = { 1530 }, level = 3, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent2"] = { type = "Prefix", affix = "Etched", "(27-42)% increased Ward", statOrder = { 1530 }, level = 18, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent3"] = { type = "Prefix", affix = "Engraved", "(43-55)% increased Ward", statOrder = { 1530 }, level = 30, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent4"] = { type = "Prefix", affix = "Embedded", "(56-67)% increased Ward", statOrder = { 1530 }, level = 44, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent5"] = { type = "Prefix", affix = "Inscribed", "(68-79)% increased Ward", statOrder = { 1530 }, level = 60, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent6"] = { type = "Prefix", affix = "Lettered", "(80-91)% increased Ward", statOrder = { 1530 }, level = 72, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent7"] = { type = "Prefix", affix = "Runed", "(92-100)% increased Ward", statOrder = { 1530 }, level = 84, group = "LocalWardPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercent8"] = { type = "Prefix", affix = "Calligraphic", "(101-110)% increased Ward", statOrder = { 1530 }, level = 86, group = "LocalWardPercent", weightKey = { "helmet", "gloves", "boots", "ward_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery1______"] = { type = "Prefix", affix = "Improved", "(6-13)% increased Ward", "(6-7)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 3, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery2_"] = { type = "Prefix", affix = "Enhanced", "(14-20)% increased Ward", "(8-9)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 18, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery3"] = { type = "Prefix", affix = "Bolstered", "(21-26)% increased Ward", "(10-11)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 30, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery4"] = { type = "Prefix", affix = "Elegant", "(27-32)% increased Ward", "(12-13)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 44, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery5"] = { type = "Prefix", affix = "Exquisite", "(33-38)% increased Ward", "(14-15)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 60, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentAndStunRecovery6_"] = { type = "Prefix", affix = "Masterwork", "(39-42)% increased Ward", "(16-17)% increased Stun and Block Recovery", statOrder = { 1530, 1902 }, level = 78, group = "LocalWardAndStunRecoveryPercent", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["LocalBaseWardAndLife1__"] = { type = "Prefix", affix = "Annest's", "+(15-20) to Ward", "+(18-23) to maximum Life", statOrder = { 1528, 1569 }, level = 30, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, }, + ["LocalBaseWardAndLife2"] = { type = "Prefix", affix = "Owen's", "+(21-30) to Ward", "+(24-28) to maximum Life", statOrder = { 1528, 1569 }, level = 46, group = "LocalBaseWardAndLife", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "defences" }, }, + ["LocalBaseWardAndLife3_"] = { type = "Prefix", affix = "Gwayne's", "+(31-40) to Ward", "+(29-33) to maximum Life", statOrder = { 1528, 1569 }, level = 62, group = "LocalBaseWardAndLife", weightKey = { "boots", "gloves", "ward_armour", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "resource", "life", "defences" }, }, + ["LocalBaseWardAndLife4_"] = { type = "Prefix", affix = "Cadigan's", "+(41-50) to Ward", "+(34-38) to maximum Life", statOrder = { 1528, 1569 }, level = 78, group = "LocalBaseWardAndLife", weightKey = { "shield", "boots", "gloves", "helmet", "ward_armour", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "resource", "life", "defences" }, }, + ["FasterStartOfWardRecharge1"] = { type = "Suffix", affix = "of Artifice", "(33-37)% faster Restoration of Ward", statOrder = { 1531 }, level = 46, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["FasterStartOfWardRecharge2"] = { type = "Suffix", affix = "of Etching", "(38-42)% faster Restoration of Ward", statOrder = { 1531 }, level = 57, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["FasterStartOfWardRecharge3"] = { type = "Suffix", affix = "of Engraving", "(43-47)% faster Restoration of Ward", statOrder = { 1531 }, level = 68, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["FasterStartOfWardRecharge4"] = { type = "Suffix", affix = "of Inscription", "(48-52)% faster Restoration of Ward", statOrder = { 1531 }, level = 76, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["FasterStartOfWardRecharge5"] = { type = "Suffix", affix = "of Runes", "(53-58)% faster Restoration of Ward", statOrder = { 1531 }, level = 85, group = "WardDelayRecovery", weightKey = { "ward_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences" }, }, + ["HellscapeUpsideIncreasedLife1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideIncreasedLife2_"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Life", statOrder = { 1569 }, level = 45, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideIncreasedLife3_"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Life", statOrder = { 1569 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideIncreasedLife4"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Life", statOrder = { 1569 }, level = 68, group = "IncreasedLife", weightKey = { "fishing_rod", "weapon", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 1000 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots1__"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots2"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Armour", statOrder = { 1540 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "helmet", "shield", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield2__"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Armour", statOrder = { 1540 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingHelmetShield4_"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "body_armour", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Armour", statOrder = { 1540 }, level = 45, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalPhysicalDamageReductionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Armour", statOrder = { 1540 }, level = 68, group = "LocalPhysicalDamageReductionRating", weightKey = { "helmet", "shield", "gloves", "boots", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots1"] = { type = "ScourgeUpside", affix = "", "+(30-33) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots2___"] = { type = "ScourgeUpside", affix = "", "+(34-37) to Evasion Rating", statOrder = { 1548 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots3_"] = { type = "ScourgeUpside", affix = "", "+(38-41) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingGlovesBoots4_"] = { type = "ScourgeUpside", affix = "", "+(42-45) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "helmet", "shield", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield1"] = { type = "ScourgeUpside", affix = "", "+(33-39) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(40-46) to Evasion Rating", statOrder = { 1548 }, level = 45, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(47-53) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(54-60) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(31-60) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour2"] = { type = "ScourgeUpside", affix = "", "+(61-90) to Evasion Rating", statOrder = { 1548 }, level = 45, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour3"] = { type = "ScourgeUpside", affix = "", "+(91-120) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideLocalEvasionRatingBodyArmour4_"] = { type = "ScourgeUpside", affix = "", "+(121-150) to Evasion Rating", statOrder = { 1548 }, level = 68, group = "LocalEvasionRating", weightKey = { "helmet", "shield", "gloves", "boots", "dex_armour", "str_dex_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideEnergyShieldGlovesBoots1_"] = { type = "ScourgeUpside", affix = "", "+(8-9) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldGlovesBoots2__"] = { type = "ScourgeUpside", affix = "", "+(10-11) to maximum Energy Shield", statOrder = { 1559 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldGlovesBoots3"] = { type = "ScourgeUpside", affix = "", "+(12-13) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldGlovesBoots4"] = { type = "ScourgeUpside", affix = "", "+(14-15) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "helmet", "shield", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldHelmetShield1_"] = { type = "ScourgeUpside", affix = "", "+(11-12) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldHelmetShield2"] = { type = "ScourgeUpside", affix = "", "+(13-14) to maximum Energy Shield", statOrder = { 1559 }, level = 45, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldHelmetShield3"] = { type = "ScourgeUpside", affix = "", "+(15-16) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldHelmetShield4"] = { type = "ScourgeUpside", affix = "", "+(17-18) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "body_armour", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldBodyArmour1"] = { type = "ScourgeUpside", affix = "", "+(15-18) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldBodyArmour2_"] = { type = "ScourgeUpside", affix = "", "+(19-22) to maximum Energy Shield", statOrder = { 1559 }, level = 45, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldBodyArmour3_"] = { type = "ScourgeUpside", affix = "", "+(23-26) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldBodyArmour4"] = { type = "ScourgeUpside", affix = "", "+(27-30) to maximum Energy Shield", statOrder = { 1559 }, level = 68, group = "LocalEnergyShield", weightKey = { "helmet", "shield", "gloves", "boots", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsFirePercent3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsFirePercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 68, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsCold3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsCold4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 68, group = "PhysicalDamageTakenAsCold", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent3_"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsLightningPercent4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 68, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsChaos3"] = { type = "ScourgeUpside", affix = "", "4% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, }, + ["HellscapeUpsidePhysicalDamageTakenAsChaos4"] = { type = "ScourgeUpside", affix = "", "5% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 68, group = "PhysicalDamageTakenAsChaos", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical", "chaos" }, }, + ["HellscapeUpsideBaseFreezeDurationOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideBaseFreezeDurationOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 68, group = "ReducedFreezeDuration", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillEffectivenessOnSelf3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillEffectivenessOnSelf4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 68, group = "ChillEffectivenessOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideReducedShockEffectOnSelf3"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideReducedShockEffectOnSelf4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 68, group = "ReducedShockEffectOnSelf", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideReducedCurseEffect3"] = { type = "ScourgeUpside", affix = "", "(16-20)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideReducedCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(21-25)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 68, group = "ReducedCurseEffect", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks1"] = { type = "ScourgeUpside", affix = "", "Corrupted Blood cannot be inflicted on you if you have at least 5 Corrupted Blood Debuffs on you", statOrder = { 5433 }, level = 45, group = "CannotGainCorruptedBloodWhileYouHaveAtLeast5Stacks", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideReducedBurnDuration3__"] = { type = "ScourgeUpside", affix = "", "(31-35)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideReducedBurnDuration4"] = { type = "ScourgeUpside", affix = "", "(36-40)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 68, group = "ReducedBurnDuration", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidBleeding2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 45, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidBleeding3_"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidBleeding4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 68, group = "ChanceToAvoidBleeding", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChillEnemiesWhenHit3"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 4 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3140 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "Chill Enemy for 5 seconds when Hit, reducing their Action Speed by 30%", statOrder = { 3140 }, level = 68, group = "ChillEnemiesWhenHit", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideDamageTakenGainedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideDamageTakenGainedAsLife3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideDamageTakenGainedAsLife4"] = { type = "ScourgeUpside", affix = "", "(11-12)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 68, group = "DamageTakenGainedAsLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage1h2__"] = { type = "ScourgeUpside", affix = "", "3% chance to deal Triple Damage", statOrder = { 5000 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage1h3__"] = { type = "ScourgeUpside", affix = "", "4% chance to deal Triple Damage", statOrder = { 5000 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage1h4__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 5000 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage2h2__"] = { type = "ScourgeUpside", affix = "", "5% chance to deal Triple Damage", statOrder = { 5000 }, level = 45, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage2h3_"] = { type = "ScourgeUpside", affix = "", "6% chance to deal Triple Damage", statOrder = { 5000 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideBaseChanceToDealTripleDamage2h4"] = { type = "ScourgeUpside", affix = "", "7% chance to deal Triple Damage", statOrder = { 5000 }, level = 68, group = "BaseChanceToDealTripleDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideOnslaughtWhenHitForDuration2"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 2 seconds when Hit", statOrder = { 2827 }, level = 45, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideOnslaughtWhenHitForDuration3"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 3 seconds when Hit", statOrder = { 2827 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideOnslaughtWhenHitForDuration4"] = { type = "ScourgeUpside", affix = "", "You gain Onslaught for 4 seconds when Hit", statOrder = { 2827 }, level = 68, group = "OnslaughtWhenHitForDuration", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit2"] = { type = "ScourgeUpside", affix = "", "Deal (8-11)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3787 }, level = 45, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit3"] = { type = "ScourgeUpside", affix = "", "Deal (12-15)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3787 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideBaseMaximumLifeInflictedAsAoeFireDamageWhenHit4"] = { type = "ScourgeUpside", affix = "", "Deal (16-19)% of your maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3787 }, level = 68, group = "BaseMaximumLifeInflictedAsAoeFireDamageWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideConsecrateGroundFor3SecondsWhenHit1"] = { type = "ScourgeUpside", affix = "", "Create Consecrated Ground when Hit, lasting 8 seconds", statOrder = { 3553 }, level = 45, group = "ConsecrateGroundFor3SecondsWhenHit", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance1h2"] = { type = "ScourgeUpside", affix = "", "5% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance1h3"] = { type = "ScourgeUpside", affix = "", "6% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance1h4___"] = { type = "ScourgeUpside", affix = "", "7% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "staff", "warstaff", "wand", "claw", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance2h2_"] = { type = "ScourgeUpside", affix = "", "8% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 45, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance2h3_"] = { type = "ScourgeUpside", affix = "", "9% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideUnholyMightOnKillPercentChance2h4"] = { type = "ScourgeUpside", affix = "", "10% chance to gain Unholy Might for 3 seconds on Kill", statOrder = { 3377 }, level = 68, group = "UnholyMightOnKillPercentChance", weightKey = { "wand", "claw", "staff", "warstaff", "default", }, weightVal = { 0, 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideElusiveEffect2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Elusive Effect", statOrder = { 6349 }, level = 45, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideElusiveEffect3___"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Elusive Effect", statOrder = { 6349 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideElusiveEffect4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Elusive Effect", statOrder = { 6349 }, level = 68, group = "ElusiveEffect", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideBasePenetrateElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% of Enemy Elemental Resistances", statOrder = { 3559 }, level = 45, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, + ["HellscapeUpsideBasePenetrateElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% of Enemy Elemental Resistances", statOrder = { 3559 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, + ["HellscapeUpsideBasePenetrateElementalResistances4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% of Enemy Elemental Resistances", statOrder = { 3559 }, level = 68, group = "BasePenetrateElementalResistances", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental" }, }, + ["HellscapeUpsideMinimumEnduranceCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Endurance Charges", statOrder = { 1803 }, level = 68, group = "MinimumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeUpsideMinimumPowerCharges1"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Power Charges", statOrder = { 1813 }, level = 68, group = "MinimumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "power_charge" }, }, + ["HellscapeUpsideMinimumFrenzyCharges1___"] = { type = "ScourgeUpside", affix = "", "+1 to Minimum Frenzy Charges", statOrder = { 1808 }, level = 68, group = "MinimumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 100, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeUpsideCannotBeSlowedBelowValue3"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (75-79)% of base value", statOrder = { 3195 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideCannotBeSlowedBelowValue4_"] = { type = "ScourgeUpside", affix = "", "Action Speed cannot be modified to below (70-74)% of base value", statOrder = { 3195 }, level = 68, group = "CannotBeSlowedBelowValue", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMonsterNemesisOndarsGuile1__"] = { type = "ScourgeUpside", affix = "", "Arrow Dancing", statOrder = { 10804 }, level = 68, group = "MonsterNemesisOndarsGuile", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideConduit1"] = { type = "ScourgeUpside", affix = "", "Conduit", statOrder = { 10775 }, level = 68, group = "Conduit", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["HellscapeUpsideIronReflexes1__"] = { type = "ScourgeUpside", affix = "", "Iron Reflexes", statOrder = { 10793 }, level = 68, group = "IronReflexes", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["HellscapeUpsideUnwaveringStance1"] = { type = "ScourgeUpside", affix = "", "Unwavering Stance", statOrder = { 10820 }, level = 68, group = "UnwaveringStance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideEternalYouth1_"] = { type = "ScourgeUpside", affix = "", "Eternal Youth", statOrder = { 10784 }, level = 68, group = "EternalYouth", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["HellscapeUpsideWindDancer1"] = { type = "ScourgeUpside", affix = "", "Wind Dancer", statOrder = { 10825 }, level = 68, group = "WindDancer", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion" }, }, + ["HellscapeUpsideGlancingBlows1"] = { type = "ScourgeUpside", affix = "", "Glancing Blows", statOrder = { 10788 }, level = 68, group = "GlancingBlows", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideSacredBastion1_"] = { type = "ScourgeUpside", affix = "", "Imbalanced Guard", statOrder = { 10809 }, level = 68, group = "SacredBastion", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "armour" }, }, + ["HellscapeUpsideManaShield1_"] = { type = "ScourgeUpside", affix = "", "Mind Over Matter", statOrder = { 10796 }, level = 68, group = "ManaShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, }, + ["HellscapeUpsideWickedWard1"] = { type = "ScourgeUpside", affix = "", "Wicked Ward", statOrder = { 10824 }, level = 68, group = "WickedWard", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideZealotsOath1"] = { type = "ScourgeUpside", affix = "", "Zealot's Oath", statOrder = { 10806 }, level = 68, group = "ZealotsOath", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["HellscapeUpsideBlindEnemiesWhenHit2"] = { type = "ScourgeUpside", affix = "", "(11-20)% chance to Blind Enemies when they Hit you", statOrder = { 5220 }, level = 45, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideBlindEnemiesWhenHit3_"] = { type = "ScourgeUpside", affix = "", "(21-30)% chance to Blind Enemies when they Hit you", statOrder = { 5220 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideBlindEnemiesWhenHit4"] = { type = "ScourgeUpside", affix = "", "(31-40)% chance to Blind Enemies when they Hit you", statOrder = { 5220 }, level = 68, group = "BlindEnemiesWhenHit", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideGuardSkillCooldownRecovery3"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (14-16)% increased Cooldown Recovery Rate", statOrder = { 6919 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideGuardSkillCooldownRecovery4___"] = { type = "ScourgeUpside", affix = "", "Guard Skills have (17-19)% increased Cooldown Recovery Rate", statOrder = { 6919 }, level = 68, group = "GuardSkillCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideMinionChanceToTauntOnHit2___"] = { type = "ScourgeUpside", affix = "", "Minions have (11-13)% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 45, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, + ["HellscapeUpsideMinionChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "Minions have (14-16)% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, + ["HellscapeUpsideMinionChanceToTauntOnHit4"] = { type = "ScourgeUpside", affix = "", "Minions have (17-19)% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 68, group = "MinionAttacksTauntOnHitChance", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "attack", "minion" }, }, + ["HellscapeUpsideIncreaseSocketedSupportGemQuality3"] = { type = "ScourgeUpside", affix = "", "+(9-10)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideIncreaseSocketedSupportGemQuality4_"] = { type = "ScourgeUpside", affix = "", "+(11-12)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 68, group = "IncreaseSocketedSupportGemQuality", weightKey = { "weapon", "shield", "default", }, weightVal = { 500, 250, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideGainManaAsExtraEnergyShield3"] = { type = "ScourgeUpside", affix = "", "Gain 5% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideGainManaAsExtraEnergyShield4_"] = { type = "ScourgeUpside", affix = "", "Gain 6% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 68, group = "GainManaAsExtraEnergyShield", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideAreaOfEffect1_"] = { type = "ScourgeUpside", affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideAreaOfEffect2"] = { type = "ScourgeUpside", affix = "", "11% increased Area of Effect", statOrder = { 1880 }, level = 45, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideAreaOfEffect3____"] = { type = "ScourgeUpside", affix = "", "12% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideAreaOfEffect4"] = { type = "ScourgeUpside", affix = "", "13% increased Area of Effect", statOrder = { 1880 }, level = 68, group = "AreaOfEffect", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideProjectileSpeed1"] = { type = "ScourgeUpside", affix = "", "(14-16)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideProjectileSpeed2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Projectile Speed", statOrder = { 1796 }, level = 45, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideProjectileSpeed3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Projectile Speed", statOrder = { 1796 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideProjectileSpeed4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Projectile Speed", statOrder = { 1796 }, level = 68, group = "ProjectileSpeed", weightKey = { "ranged", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMinionLife2___"] = { type = "ScourgeUpside", affix = "", "Minions have (10-11)% increased maximum Life", statOrder = { 1766 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLife3"] = { type = "ScourgeUpside", affix = "", "Minions have (12-13)% increased maximum Life", statOrder = { 1766 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLife4_"] = { type = "ScourgeUpside", affix = "", "Minions have (14-15)% increased maximum Life", statOrder = { 1766 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideFireResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideFireResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Fire Resistance", statOrder = { 1625 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideFireResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Fire Resistance", statOrder = { 1625 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideFireResistance4__"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Fire Resistance", statOrder = { 1625 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideColdResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideColdResistance2"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Cold Resistance", statOrder = { 1631 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideColdResistance3_"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Cold Resistance", statOrder = { 1631 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideColdResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Cold Resistance", statOrder = { 1631 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideLightningResistance1"] = { type = "ScourgeUpside", affix = "", "+(18-20)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideLightningResistance2__"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Lightning Resistance", statOrder = { 1636 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideLightningResistance3"] = { type = "ScourgeUpside", affix = "", "+(28-30)% to Lightning Resistance", statOrder = { 1636 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideLightningResistance4"] = { type = "ScourgeUpside", affix = "", "+(33-35)% to Lightning Resistance", statOrder = { 1636 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 300, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideElementalResistance1__"] = { type = "ScourgeUpside", affix = "", "+6% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideElementalResistance2"] = { type = "ScourgeUpside", affix = "", "+8% to all Elemental Resistances", statOrder = { 1619 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideElementalResistance3"] = { type = "ScourgeUpside", affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideElementalResistance4_"] = { type = "ScourgeUpside", affix = "", "+12% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideChaosResistance1_"] = { type = "ScourgeUpside", affix = "", "+(10-13)% to Chaos Resistance", statOrder = { 1641 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeUpsideChaosResistance2_"] = { type = "ScourgeUpside", affix = "", "+(14-17)% to Chaos Resistance", statOrder = { 1641 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeUpsideChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "+(18-21)% to Chaos Resistance", statOrder = { 1641 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeUpsideChaosResistance4_"] = { type = "ScourgeUpside", affix = "", "+(22-25)% to Chaos Resistance", statOrder = { 1641 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 75, 250, 250, 250, 250, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeUpsideMinionElementalResistance2"] = { type = "ScourgeUpside", affix = "", "Minions have +(10-11)% to all Elemental Resistances", statOrder = { 2912 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["HellscapeUpsideMinionElementalResistance3"] = { type = "ScourgeUpside", affix = "", "Minions have +(12-13)% to all Elemental Resistances", statOrder = { 2912 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["HellscapeUpsideMinionElementalResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-15)% to all Elemental Resistances", statOrder = { 2912 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["HellscapeUpsideMinionChaosResistance2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-17)% to Chaos Resistance", statOrder = { 2913 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["HellscapeUpsideMinionChaosResistance3_"] = { type = "ScourgeUpside", affix = "", "Minions have +(18-21)% to Chaos Resistance", statOrder = { 2913 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["HellscapeUpsideMinionChaosResistance4"] = { type = "ScourgeUpside", affix = "", "Minions have +(22-25)% to Chaos Resistance", statOrder = { 2913 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["HellscapeUpsideStunAndBlockRecovery2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 45, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideStunAndBlockRecovery3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideStunAndBlockRecovery4__"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 68, group = "StunRecovery", weightKey = { "gloves", "armour", "belt", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToAvoidFreezeAndChill2_"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Chilled", "(26-30)% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 45, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidFreezeAndChill3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Chilled", "(31-35)% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidFreezeAndChill4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Chilled", "(36-40)% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 68, group = "ChanceToAvoidFreezeAndChill", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidShock2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 45, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidShock3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidShock4_"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 68, group = "AvoidShock", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidIgniteAndBurning2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 45, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidIgniteAndBurning3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidIgniteAndBurning4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 68, group = "AvoidIgnite", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidPoison2"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 45, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidPoison3"] = { type = "ScourgeUpside", affix = "", "(31-35)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidPoison4"] = { type = "ScourgeUpside", affix = "", "(36-40)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 68, group = "ChanceToAvoidPoison", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideChanceToAvoidStun2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 45, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToAvoidStun3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToAvoidStun4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 68, group = "AvoidStun", weightKey = { "helmet", "gloves", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideAvoidElementalStatusAilments2__"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 45, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["HellscapeUpsideAvoidElementalStatusAilments3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["HellscapeUpsideAvoidElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 68, group = "AvoidElementalStatusAilments", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["HellscapeUpsideReducedDurationOfElementalStatusAilments2"] = { type = "ScourgeUpside", affix = "", "(17-19)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, + ["HellscapeUpsideReducedDurationOfElementalStatusAilments3"] = { type = "ScourgeUpside", affix = "", "(20-22)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, + ["HellscapeUpsideReducedDurationOfElementalStatusAilments4"] = { type = "ScourgeUpside", affix = "", "(23-25)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "ailment" }, }, + ["HellscapeUpsideGainLifeOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Life gained when you Block", statOrder = { 1757 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, + ["HellscapeUpsideGainLifeOnBlock3_"] = { type = "ScourgeUpside", affix = "", "(41-50) Life gained when you Block", statOrder = { 1757 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, + ["HellscapeUpsideGainLifeOnBlock4___"] = { type = "ScourgeUpside", affix = "", "(51-60) Life gained when you Block", statOrder = { 1757 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, + ["HellscapeUpsideGainManaOnBlock2"] = { type = "ScourgeUpside", affix = "", "(31-40) Mana gained when you Block", statOrder = { 1758 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, + ["HellscapeUpsideGainManaOnBlock3"] = { type = "ScourgeUpside", affix = "", "(41-50) Mana gained when you Block", statOrder = { 1758 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, + ["HellscapeUpsideGainManaOnBlock4"] = { type = "ScourgeUpside", affix = "", "(51-60) Mana gained when you Block", statOrder = { 1758 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, + ["HellscapeUpsideGainEnergyShieldOnBlock2"] = { type = "ScourgeUpside", affix = "", "Gain (31-40) Energy Shield when you Block", statOrder = { 1759 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, + ["HellscapeUpsideGainEnergyShieldOnBlock3___"] = { type = "ScourgeUpside", affix = "", "Gain (41-50) Energy Shield when you Block", statOrder = { 1759 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, + ["HellscapeUpsideGainEnergyShieldOnBlock4_"] = { type = "ScourgeUpside", affix = "", "Gain (51-60) Energy Shield when you Block", statOrder = { 1759 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, + ["HellscapeUpsideBlockAttacks1"] = { type = "ScourgeUpside", affix = "", "+(2-3)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 1, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockAttacks2_"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockAttacks4__"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockSpells2"] = { type = "ScourgeUpside", affix = "", "+(4-5)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockSpells3_"] = { type = "ScourgeUpside", affix = "", "+(6-7)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideBlockSpells4"] = { type = "ScourgeUpside", affix = "", "+(8-9)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideMinionBlockAttacks2"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Attack Damage", statOrder = { 2903 }, level = 45, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideMinionBlockAttacks3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Attack Damage", statOrder = { 2903 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideMinionBlockAttacks4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Attack Damage", statOrder = { 2903 }, level = 68, group = "MinionBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideMinionBlockSpells2__"] = { type = "ScourgeUpside", affix = "", "Minions have +(11-13)% Chance to Block Spell Damage", statOrder = { 2904 }, level = 45, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideMinionBlockSpells3"] = { type = "ScourgeUpside", affix = "", "Minions have +(14-16)% Chance to Block Spell Damage", statOrder = { 2904 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideMinionBlockSpells4"] = { type = "ScourgeUpside", affix = "", "Minions have +(17-19)% Chance to Block Spell Damage", statOrder = { 2904 }, level = 68, group = "MinionSpellBlockChance", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "block", "minion" }, }, + ["HellscapeUpsideChanceToSuppressSpells2"] = { type = "ScourgeUpside", affix = "", "+(5-6)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToSuppressSpells3_"] = { type = "ScourgeUpside", affix = "", "+(7-8)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToSuppressSpells4_"] = { type = "ScourgeUpside", affix = "", "+(9-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { }, }, + ["HellscapeUpsideAttackerTakesDamageNoRange1_"] = { type = "ScourgeUpside", affix = "", "Reflects (20-40) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideAttackerTakesDamageNoRange2_"] = { type = "ScourgeUpside", affix = "", "Reflects (41-60) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideAttackerTakesDamageNoRange3"] = { type = "ScourgeUpside", affix = "", "Reflects (61-80) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideAttackerTakesDamageNoRange4"] = { type = "ScourgeUpside", affix = "", "Reflects (81-100) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 68, group = "AttackerTakesDamageNoRange", weightKey = { "body_armour", "shield", "belt", "helmet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideLocalColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (18-23) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (28-33) Cold Damage", statOrder = { 1371 }, level = 45, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (27-33) to (38-43) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (37-43) to (51-57) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (16-20) to (30-35) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamageRanged2_____"] = { type = "ScourgeUpside", affix = "", "Adds (24-29) to (41-46) Cold Damage", statOrder = { 1371 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (31-36) to (50-57) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (37-45) to (60-67) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (19-24) to (35-39) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage2h2_____"] = { type = "ScourgeUpside", affix = "", "Adds (30-35) to (53-61) Cold Damage", statOrder = { 1371 }, level = 45, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (41-48) to (63-72) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalColdDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (50-61) to (75-87) Cold Damage", statOrder = { 1371 }, level = 68, group = "LocalColdDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["HellscapeUpsideLocalFireDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (11-14) to (23-27) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (21-26) to (31-38) Fire Damage", statOrder = { 1362 }, level = 45, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage1h3___"] = { type = "ScourgeUpside", affix = "", "Adds (29-35) to (43-48) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (40-45) to (56-62) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (18-22) to (35-39) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (27-34) to (46-53) Fire Damage", statOrder = { 1362 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (36-41) to (56-64) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamageRanged4______"] = { type = "ScourgeUpside", affix = "", "Adds (43-57) to (66-72) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (22-26) to (38-44) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage2h2__"] = { type = "ScourgeUpside", affix = "", "Adds (34-43) to (59-67) Fire Damage", statOrder = { 1362 }, level = 45, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage2h3______"] = { type = "ScourgeUpside", affix = "", "Adds (48-56) to (69-78) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalFireDamage2h4______"] = { type = "ScourgeUpside", affix = "", "Adds (59-72) to (80-91) Fire Damage", statOrder = { 1362 }, level = 68, group = "LocalFireDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (1-3) to (40-45) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (54-68) Lightning Damage", statOrder = { 1382 }, level = 45, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (76-90) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (98-111) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamageRanged1__"] = { type = "ScourgeUpside", affix = "", "Adds (1-5) to (60-66) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamageRanged2_"] = { type = "ScourgeUpside", affix = "", "Adds (3-6) to (81-102) Lightning Damage", statOrder = { 1382 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamageRanged3___"] = { type = "ScourgeUpside", affix = "", "Adds (4-9) to (114-134) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamageRanged4_"] = { type = "ScourgeUpside", affix = "", "Adds (5-12) to (147-166) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage2h1__"] = { type = "ScourgeUpside", affix = "", "Adds (2-6) to (74-86) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (4-8) to (103-129) Lightning Damage", statOrder = { 1382 }, level = 45, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (5-10) to (145-170) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (6-15) to (186-211) Lightning Damage", statOrder = { 1382 }, level = 68, group = "LocalLightningDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (1-2) to (6-7) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (3-4) to (8-9) Physical Damage", statOrder = { 1276 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage1h3__"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (10-11) Physical Damage", statOrder = { 1276 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (7-8) to (12-13) Physical Damage", statOrder = { 1276 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (2-4) to (11-13) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (6-8) to (15-17) Physical Damage", statOrder = { 1276 }, level = 45, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage2h3__"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (19-21) Physical Damage", statOrder = { 1276 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalPhysicalDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (14-16) to (23-25) Physical Damage", statOrder = { 1276 }, level = 68, group = "LocalPhysicalDamage", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (5-6) to (13-17) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-21) Chaos Damage", statOrder = { 1390 }, level = 45, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage1h3____"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (23-27) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (29-33) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "one_hand_weapon", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamageRanged1_"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (19-25) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamageRanged2"] = { type = "ScourgeUpside", affix = "", "Adds (10-14) to (28-31) Chaos Damage", statOrder = { 1390 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamageRanged3_"] = { type = "ScourgeUpside", affix = "", "Adds (15-19) to (34-40) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamageRanged4"] = { type = "ScourgeUpside", affix = "", "Adds (20-22) to (43-49) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (10-11) to (25-32) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-17) to (36-40) Chaos Damage", statOrder = { 1390 }, level = 45, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage2h3_____"] = { type = "ScourgeUpside", affix = "", "Adds (19-23) to (44-51) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideLocalChaosDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (25-29) to (55-63) Chaos Damage", statOrder = { 1390 }, level = 68, group = "LocalChaosDamage", weightKey = { "bow", "two_hand_weapon", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent1"] = { type = "ScourgeUpside", affix = "", "(8-12)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent2_"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 45, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent3"] = { type = "ScourgeUpside", affix = "", "(17-20)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["HellscapeUpsideIncreasedWeaponElementalDamagePercent4"] = { type = "ScourgeUpside", affix = "", "(21-24)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 68, group = "IncreasedWeaponElementalDamagePercent", weightKey = { "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["HellscapeUpsideSpellAddedColdDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Cold Damage to Spells", statOrder = { 1405 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Cold Damage to Spells", statOrder = { 1405 }, level = 45, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedColdDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Cold Damage to Spells", statOrder = { 1405 }, level = 68, group = "SpellAddedColdDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage1h1_"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Fire Damage to Spells", statOrder = { 1404 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage1h3"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (33-36) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (37-40) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage2h2"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Fire Damage to Spells", statOrder = { 1404 }, level = 45, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage2h3_"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedFireDamage2h4"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Fire Damage to Spells", statOrder = { 1404 }, level = 68, group = "SpellAddedFireDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (4-6) to (31-34) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage1h2"] = { type = "ScourgeUpside", affix = "", "Adds (7-9) to (36-39) Lightning Damage to Spells", statOrder = { 1406 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (10-12) to (42-45) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage1h4_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (47-50) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage2h1"] = { type = "ScourgeUpside", affix = "", "Adds (6-9) to (46-51) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (10-13) to (54-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 45, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (15-18) to (63-67) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedLightningDamage2h4_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (70-75) Lightning Damage to Spells", statOrder = { 1406 }, level = 68, group = "SpellAddedLightningDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h1"] = { type = "ScourgeUpside", affix = "", "Adds (9-12) to (25-27) Physical Damage to Spells", statOrder = { 1403 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h2_"] = { type = "ScourgeUpside", affix = "", "Adds (13-15) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h3_"] = { type = "ScourgeUpside", affix = "", "Adds (16-18) to (32-36) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage1h4"] = { type = "ScourgeUpside", affix = "", "Adds (19-21) to (36-40) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h1_"] = { type = "ScourgeUpside", affix = "", "Adds (13-18) to (37-40) Physical Damage to Spells", statOrder = { 1403 }, level = 1, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h2_"] = { type = "ScourgeUpside", affix = "", "Adds (19-22) to (42-48) Physical Damage to Spells", statOrder = { 1403 }, level = 45, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h3"] = { type = "ScourgeUpside", affix = "", "Adds (23-27) to (49-54) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellAddedPhysicalDamage2h4__"] = { type = "ScourgeUpside", affix = "", "Adds (28-31) to (55-60) Physical Damage to Spells", statOrder = { 1403 }, level = 68, group = "SpellAddedPhysicalDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["HellscapeUpsideSpellDamage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Spell Damage", statOrder = { 1223 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Spell Damage", statOrder = { 1223 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage1h2b___"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Spell Damage", statOrder = { 1223 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 200, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h1___"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Spell Damage", statOrder = { 1223 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h2_"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Spell Damage", statOrder = { 1223 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Spell Damage", statOrder = { 1223 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideSpellDamage2h4___"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideColdDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Cold Damage", statOrder = { 1366 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Cold Damage", statOrder = { 1366 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Cold Damage", statOrder = { 1366 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage1h3___"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Cold Damage", statOrder = { 1366 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Cold Damage", statOrder = { 1366 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Cold Damage", statOrder = { 1366 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideFireDamagePercentage1h1__"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Fire Damage", statOrder = { 1357 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage1h2___"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Fire Damage", statOrder = { 1357 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Fire Damage", statOrder = { 1357 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage1h3__"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h1b____"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Fire Damage", statOrder = { 1357 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h2__"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Fire Damage", statOrder = { 1357 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Fire Damage", statOrder = { 1357 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h3___"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideLightningDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage1h1b__"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Lightning Damage", statOrder = { 1377 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Lightning Damage", statOrder = { 1377 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage1h2b__"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Lightning Damage", statOrder = { 1377 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Lightning Damage", statOrder = { 1377 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Lightning Damage", statOrder = { 1377 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Lightning Damage", statOrder = { 1377 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h2__"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Global Physical Damage", statOrder = { 1231 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h2b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Global Physical Damage", statOrder = { 1231 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Global Physical Damage", statOrder = { 1231 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h2b__"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Global Physical Damage", statOrder = { 1231 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideElementalDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage1h1b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage1h2"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Elemental Damage", statOrder = { 1980 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Elemental Damage", statOrder = { 1980 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage1h3_"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage1h4"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h1_"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h1b_"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Elemental Damage", statOrder = { 1980 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h2b"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Elemental Damage", statOrder = { 1980 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h3"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideElementalDamagePercentage2h4__"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideChaosDamagePercentage1h1"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage1h1b_"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Chaos Damage", statOrder = { 1385 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage1h2_"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Chaos Damage", statOrder = { 1385 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage1h2b_"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Chaos Damage", statOrder = { 1385 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage1h3"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage1h4_"] = { type = "ScourgeUpside", affix = "", "(48-50)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h1"] = { type = "ScourgeUpside", affix = "", "(34-40)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h1b"] = { type = "ScourgeUpside", affix = "", "(41-47)% increased Chaos Damage", statOrder = { 1385 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h2"] = { type = "ScourgeUpside", affix = "", "(48-54)% increased Chaos Damage", statOrder = { 1385 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h2b___"] = { type = "ScourgeUpside", affix = "", "(55-61)% increased Chaos Damage", statOrder = { 1385 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h3_"] = { type = "ScourgeUpside", affix = "", "(62-68)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamagePercentage2h4"] = { type = "ScourgeUpside", affix = "", "(69-75)% increased Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideMinionDamagePercentage1__"] = { type = "ScourgeUpside", affix = "", "Minions deal (8-9)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeUpsideMinionDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "Minions deal (10-11)% increased Damage", statOrder = { 1973 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeUpsideMinionDamagePercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions deal (12-13)% increased Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeUpsideMinionDamagePercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions deal (14-15)% increased Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeUpsideProjectileDamagePercentage1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideProjectileDamagePercentage2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Projectile Damage", statOrder = { 1996 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideProjectileDamagePercentage3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Projectile Damage", statOrder = { 1996 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideProjectileDamagePercentage4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Projectile Damage", statOrder = { 1996 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideCriticalStrikeChance2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, + ["HellscapeUpsideCriticalStrikeChance3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, + ["HellscapeUpsideCriticalStrikeChance4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplier3"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeUpsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeUpsideCriticalStrikeChanceWithBows4_"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeUpside", affix = "", "+(17-19)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplierWithBows3__"] = { type = "ScourgeUpside", affix = "", "+(20-22)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["HellscapeUpsideCriticalStrikeMultiplierWithBows4"] = { type = "ScourgeUpside", affix = "", "+(23-25)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["HellscapeUpsideFireDamageOverTimeMultiplier1h3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamageOverTimeMultiplier1h4__"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 68, group = "FireDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideColdDamageOverTimeMultiplier1h3___"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 68, group = "ColdDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h3____"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier1h4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h3_"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsidePhysicalDamageOverTimeMultiplier2h4_"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 68, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier1h3__"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier1h4___"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "wand", "sceptre", "default", }, weightVal = { 500, 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier2h3"] = { type = "ScourgeUpside", affix = "", "+(16-19)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideChaosDamageOverTimeMultiplier2h4__"] = { type = "ScourgeUpside", affix = "", "+(21-24)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 68, group = "ChaosDamageOverTimeMultiplier", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["HellscapeUpsideDamageOverTimeMultiplier2_"] = { type = "ScourgeUpside", affix = "", "+(8-10)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, + ["HellscapeUpsideDamageOverTimeMultiplier3_"] = { type = "ScourgeUpside", affix = "", "+(11-13)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, + ["HellscapeUpsideDamageOverTimeMultiplier4"] = { type = "ScourgeUpside", affix = "", "+(14-16)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 100, 0 }, modTags = { "dot_multi", "damage" }, }, + ["HellscapeUpsideIncreasedAttackSpeed1_"] = { type = "ScourgeUpside", affix = "", "4% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeUpsideIncreasedAttackSpeed2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Attack Speed", statOrder = { 1410 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeUpsideIncreasedAttackSpeed3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Attack Speed", statOrder = { 1410 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeUpsideIncreasedAttackSpeed4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Attack Speed", statOrder = { 1410 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeUpsideIncreasedCastSpeed1"] = { type = "ScourgeUpside", affix = "", "5% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeUpsideIncreasedCastSpeed2"] = { type = "ScourgeUpside", affix = "", "6% increased Cast Speed", statOrder = { 1446 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeUpsideIncreasedCastSpeed3_"] = { type = "ScourgeUpside", affix = "", "7% increased Cast Speed", statOrder = { 1446 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeUpsideIncreasedCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "8% increased Cast Speed", statOrder = { 1446 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeUpsideMinionAttackAndCastSpeed1"] = { type = "ScourgeUpside", affix = "", "Minions have 5% increased Attack Speed", "Minions have 5% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeUpsideMinionAttackAndCastSpeed2"] = { type = "ScourgeUpside", affix = "", "Minions have 6% increased Attack Speed", "Minions have 6% increased Cast Speed", statOrder = { 2907, 2908 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeUpsideMinionAttackAndCastSpeed3____"] = { type = "ScourgeUpside", affix = "", "Minions have (7-8)% increased Attack Speed", "Minions have (7-8)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeUpsideMinionAttackAndCastSpeed4_"] = { type = "ScourgeUpside", affix = "", "Minions have (9-10)% increased Attack Speed", "Minions have (9-10)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeUpsideMaximumLifeOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideMaximumLifeOnKillPercent4___"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideMaximumManaOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideMaximumManaOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideMaximumEnergyShieldOnKillPercent3"] = { type = "ScourgeUpside", affix = "", "Recover 3% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideMaximumEnergyShieldOnKillPercent4"] = { type = "ScourgeUpside", affix = "", "Recover 4% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideIncreasedAccuracyPercent2"] = { type = "ScourgeUpside", affix = "", "(11-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideIncreasedAccuracyPercent3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideIncreasedAccuracyPercent4__"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideLocalIncreaseSocketedAreaOfEffectGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed AoE Gems", statOrder = { 176 }, level = 68, group = "IncreasedSocketedAoEGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedAuraGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 68, group = "LocalIncreaseSocketedAuraLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "aura", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedCurseGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 68, group = "IncreaseSocketedCurseGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "caster", "gem", "curse" }, }, + ["HellscapeUpsideLocalIncreaseSocketedDurationGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Duration Gems", statOrder = { 175 }, level = 68, group = "IncreaseSocketedDurationGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 5, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedProjectileGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 177 }, level = 68, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedTrapAndMineGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Trap or Mine Gems", statOrder = { 187 }, level = 68, group = "IncreasedSocketedTrapOrMineGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedWarcryGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 68, group = "LocalSocketedWarcryGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedSupportGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 68, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedLightningGemLevel__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 68, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedChaosGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 68, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "chaos", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedFireGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 68, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedColdGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 68, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedMinionGemLevel"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 68, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "minion", "gem" }, }, + ["HellscapeUpsideLocalIncreaseSocketedMeleeGemLevel_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 68, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 25, 0 }, modTags = { "attack", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "chaos", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseChaosSpellSkillGemLevel2h__"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 68, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "chaos", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseLightningSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 68, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel1h"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseFireSpellSkillGemLevel2h_"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 68, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel1h_"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreaseColdSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 68, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel1h__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_dagger", "sceptre", "wand", "dagger", "default", }, weightVal = { 0, 50, 50, 50, 0 }, modTags = { "physical", "caster", "gem" }, }, + ["HellscapeUpsideGlobalIncreasePhysicalSpellSkillGemLevel2h"] = { type = "ScourgeUpside", affix = "", "+2 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 68, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 50, 0 }, modTags = { "physical", "caster", "gem" }, }, + ["HellscapeUpsideAdditionalRaisedZombie1_"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, }, + ["HellscapeUpsideAdditionalSkeleton1__"] = { type = "ScourgeUpside", affix = "", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 100, 0 }, modTags = { "minion" }, }, + ["HellscapeUpsideWeaponRange1"] = { type = "ScourgeUpside", affix = "", "+0.1 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideWeaponRange2"] = { type = "ScourgeUpside", affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 45, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideWeaponRange3"] = { type = "ScourgeUpside", affix = "", "+0.3 metres to Weapon Range", statOrder = { 2745 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideWeaponRange4"] = { type = "ScourgeUpside", affix = "", "+0.4 metres to Weapon Range", statOrder = { 2745 }, level = 68, group = "LocalMeleeWeaponRange", weightKey = { "wand", "bow", "weapon", "default", }, weightVal = { 0, 0, 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideAreaDamage1"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideAreaDamage2_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Area Damage", statOrder = { 2035 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideAreaDamage3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Area Damage", statOrder = { 2035 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideAreaDamage4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Area Damage", statOrder = { 2035 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideReducedAttributeRequirement2"] = { type = "ScourgeUpside", affix = "", "(12-14)% reduced Attribute Requirements", statOrder = { 1075 }, level = 45, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideReducedAttributeRequirement3"] = { type = "ScourgeUpside", affix = "", "(15-17)% reduced Attribute Requirements", statOrder = { 1075 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideReducedAttributeRequirement4"] = { type = "ScourgeUpside", affix = "", "(18-20)% reduced Attribute Requirements", statOrder = { 1075 }, level = 68, group = "LocalAttributeRequirements", weightKey = { "weapon", "body_armour", "helmet", "shield", "gloves", "boots", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideRarityOfItemsFound1_"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, + ["HellscapeUpsideRarityOfItemsFound2_"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Rarity of Items found", statOrder = { 1596 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, + ["HellscapeUpsideRarityOfItemsFound3"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Rarity of Items found", statOrder = { 1596 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, + ["HellscapeUpsideRarityOfItemsFound4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Rarity of Items found", statOrder = { 1596 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 500, 500, 0 }, modTags = { "drop" }, }, + ["HellscapeUpsideLifeRegenerationRate2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Life Regeneration rate", statOrder = { 1577 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifeRegenerationRate3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Life Regeneration rate", statOrder = { 1577 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifeRegenerationRate4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Life Regeneration rate", statOrder = { 1577 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration1"] = { type = "ScourgeUpside", affix = "", "Regenerate (10.8-11.7) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration1b_"] = { type = "ScourgeUpside", affix = "", "Regenerate (12.5-13.3) Life per second", statOrder = { 1574 }, level = 25, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration1c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (14.2-15) Life per second", statOrder = { 1574 }, level = 35, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (15.8-16.7) Life per second", statOrder = { 1574 }, level = 45, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (17.5-18.3) Life per second", statOrder = { 1574 }, level = 52, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration2c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (19.2-20) Life per second", statOrder = { 1574 }, level = 59, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration3__"] = { type = "ScourgeUpside", affix = "", "Regenerate (20.8-21.7) Life per second", statOrder = { 1574 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 333 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration3b"] = { type = "ScourgeUpside", affix = "", "Regenerate (22.5-23.3) Life per second", statOrder = { 1574 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 200 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration3c_"] = { type = "ScourgeUpside", affix = "", "Regenerate (24.2-25) Life per second", statOrder = { 1574 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 100 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideLifeRegeneration4_"] = { type = "ScourgeUpside", affix = "", "Regenerate (25.8-26.7) Life per second", statOrder = { 1574 }, level = 68, group = "LifeRegeneration", weightKey = { "fishing_rod", "weapon", "quiver", "flask", "map", "default", }, weightVal = { 0, 0, 0, 0, 0, 1000 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["HellscapeUpsideMinionLifeRegenPercentage2"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2% of Life per second", statOrder = { 2911 }, level = 45, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLifeRegenPercentage2b_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 2.5% of Life per second", statOrder = { 2911 }, level = 55, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLifeRegenPercentage3__"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3% of Life per second", statOrder = { 2911 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLifeRegenPercentage4_"] = { type = "ScourgeUpside", affix = "", "Minions Regenerate 3.5% of Life per second", statOrder = { 2911 }, level = 68, group = "MinionLifeRegeneration", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideEnergyShieldRechargeRate2"] = { type = "ScourgeUpside", affix = "", "(11-15)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 45, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldRechargeRate3"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldRechargeRate4"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 68, group = "EnergyShieldRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "int_armour", "dex_int_armour", "str_int_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideMovementVelocity1"] = { type = "ScourgeUpside", affix = "", "(8-9)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMovementVelocity2"] = { type = "ScourgeUpside", affix = "", "(10-11)% increased Movement Speed", statOrder = { 1798 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMovementVelocity3_"] = { type = "ScourgeUpside", affix = "", "(12-13)% increased Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMovementVelocity4"] = { type = "ScourgeUpside", affix = "", "(14-15)% increased Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMaximumMana1__"] = { type = "ScourgeUpside", affix = "", "+(23-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideMaximumMana2"] = { type = "ScourgeUpside", affix = "", "+(28-30) to maximum Mana", statOrder = { 1579 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideMaximumMana3"] = { type = "ScourgeUpside", affix = "", "+(33-35) to maximum Mana", statOrder = { 1579 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideMaximumMana4_"] = { type = "ScourgeUpside", affix = "", "+(38-40) to maximum Mana", statOrder = { 1579 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration1"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration2"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration2b"] = { type = "ScourgeUpside", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration3"] = { type = "ScourgeUpside", affix = "", "(33-35)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration3b"] = { type = "ScourgeUpside", affix = "", "(38-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegeneration4"] = { type = "ScourgeUpside", affix = "", "(43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat1"] = { type = "ScourgeUpside", affix = "", "Regenerate 0.8 Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat1b"] = { type = "ScourgeUpside", affix = "", "Regenerate (1.5-1.7) Mana per second", statOrder = { 1582 }, level = 15, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat1c"] = { type = "ScourgeUpside", affix = "", "Regenerate (2.6-2.8) Mana per second", statOrder = { 1582 }, level = 25, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat1d__"] = { type = "ScourgeUpside", affix = "", "Regenerate (4-4.3) Mana per second", statOrder = { 1582 }, level = 35, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat2_"] = { type = "ScourgeUpside", affix = "", "Regenerate (5.1-5.7) Mana per second", statOrder = { 1582 }, level = 45, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat2b"] = { type = "ScourgeUpside", affix = "", "Regenerate (6.3-6.7) Mana per second", statOrder = { 1582 }, level = 55, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat3"] = { type = "ScourgeUpside", affix = "", "Regenerate (8-8.3) Mana per second", statOrder = { 1582 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRegenFlat4"] = { type = "ScourgeUpside", affix = "", "Regenerate (8.8-9.2) Mana per second", statOrder = { 1582 }, level = 68, group = "AddedManaRegeneration", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideAttackLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 45, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["HellscapeUpsideAttackLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["HellscapeUpsideAttackLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 68, group = "LifeLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["HellscapeUpsideAttackManaLifeLeech2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 45, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["HellscapeUpsideAttackManaLifeLeech3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["HellscapeUpsideAttackManaLifeLeech4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 68, group = "ManaLeechPermyriad", weightKey = { "ring", "amulet", "gloves", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["HellscapeUpsideMinionLifeLeech2"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.2-0.3)% of Damage as Life", statOrder = { 2910 }, level = 45, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLifeLeech3_"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.4-0.5)% of Damage as Life", statOrder = { 2910 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideMinionLifeLeech4___"] = { type = "ScourgeUpside", affix = "", "Minions Leech (0.6-0.7)% of Damage as Life", statOrder = { 2910 }, level = 68, group = "MinionLifeLeech", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeUpsideFlaskChargesGained2_"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Flask Charges gained", statOrder = { 2183 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeUpsideFlaskChargesGained3_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Charges gained", statOrder = { 2183 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeUpsideFlaskChargesGained4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Flask Charges gained", statOrder = { 2183 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeUpsideStunThreshold2"] = { type = "ScourgeUpside", affix = "", "(5-6)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 45, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideStunThreshold3____"] = { type = "ScourgeUpside", affix = "", "(7-8)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideStunThreshold4"] = { type = "ScourgeUpside", affix = "", "(9-10)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 68, group = "StunThresholdReduction", weightKey = { "mace", "sceptre", "staff", "sword", "axe", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideStunDuration2"] = { type = "ScourgeUpside", affix = "", "(17-19)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 45, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideStunDuration3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideStunDuration4"] = { type = "ScourgeUpside", affix = "", "(23-25)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 68, group = "StunDurationIncreasePercent", weightKey = { "weapon", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideFlaskLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 45, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["HellscapeUpsideFlaskLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["HellscapeUpsideFlaskLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 68, group = "BeltFlaskLifeRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["HellscapeUpsideFlaskManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 45, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["HellscapeUpsideFlaskManaRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["HellscapeUpsideFlaskManaRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 68, group = "BeltFlaskManaRecoveryRate", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["HellscapeUpsideAdditionalDexterity1__"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalDexterity2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Dexterity", statOrder = { 1178 }, level = 45, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalDexterity3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Dexterity", statOrder = { 1178 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalDexterity4_"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Dexterity", statOrder = { 1178 }, level = 68, group = "DexterityImplicit", weightKey = { "ring", "amulet", "gloves", "quiver", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalIntelligence1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalIntelligence2__"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Intelligence", statOrder = { 1179 }, level = 45, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalIntelligence3_"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Intelligence", statOrder = { 1179 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalIntelligence4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Intelligence", statOrder = { 1179 }, level = 68, group = "IntelligenceImplicit", weightKey = { "ring", "amulet", "helmet", "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalStrength1"] = { type = "ScourgeUpside", affix = "", "+(20-23) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalStrength2"] = { type = "ScourgeUpside", affix = "", "+(24-27) to Strength", statOrder = { 1177 }, level = 45, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalStrength3"] = { type = "ScourgeUpside", affix = "", "+(28-31) to Strength", statOrder = { 1177 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideAdditionalStrength4"] = { type = "ScourgeUpside", affix = "", "+(32-35) to Strength", statOrder = { 1177 }, level = 68, group = "StrengthImplicit", weightKey = { "ring", "amulet", "belt", "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideChanceToFreeze1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToFreeze1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToFreeze1h4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToFreeze2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Freeze", statOrder = { 2029 }, level = 45, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToFreeze2h3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToFreeze2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Freeze", statOrder = { 2029 }, level = 68, group = "ChanceToFreeze", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Ignite", statOrder = { 2026 }, level = 45, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite1h3_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Ignite", statOrder = { 2026 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite1h4___"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Ignite", statOrder = { 2026 }, level = 68, group = "ChanceToIgnite", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Ignite", statOrder = { 2026 }, level = 45, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Ignite", statOrder = { 2026 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToIgnite2h4___"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Ignite", statOrder = { 2026 }, level = 68, group = "ChanceToIgnite", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideChanceToShock1h2"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToShock1h3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Shock", statOrder = { 2033 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToShock1h4"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Shock", statOrder = { 2033 }, level = 68, group = "ChanceToShock", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToShock2h2"] = { type = "ScourgeUpside", affix = "", "(7-9)% chance to Shock", statOrder = { 2033 }, level = 45, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToShock2h3"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to Shock", statOrder = { 2033 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToShock2h4"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to Shock", statOrder = { 2033 }, level = 68, group = "ChanceToShock", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideChanceToBleed2__"] = { type = "ScourgeUpside", affix = "", "Attacks have (12-14)% chance to cause Bleeding", statOrder = { 2489 }, level = 45, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChanceToBleed3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (15-17)% chance to cause Bleeding", statOrder = { 2489 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChanceToBleed4"] = { type = "ScourgeUpside", affix = "", "Attacks have (18-20)% chance to cause Bleeding", statOrder = { 2489 }, level = 68, group = "ChanceToBleed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideChanceToPoison2"] = { type = "ScourgeUpside", affix = "", "(12-14)% chance to Poison on Hit", statOrder = { 3173 }, level = 45, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideChanceToPoison3"] = { type = "ScourgeUpside", affix = "", "(15-17)% chance to Poison on Hit", statOrder = { 3173 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideChanceToPoison4"] = { type = "ScourgeUpside", affix = "", "(18-20)% chance to Poison on Hit", statOrder = { 3173 }, level = 68, group = "PoisonOnHit", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["HellscapeUpsideLightRadius1_"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideLightRadius2_"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Light Radius", statOrder = { 2500 }, level = 45, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideLightRadius3______"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Light Radius", statOrder = { 2500 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideLightRadius4"] = { type = "ScourgeUpside", affix = "", "(31-35)% increased Light Radius", statOrder = { 2500 }, level = 68, group = "LightRadius", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideCooldownRecoveryRate3_"] = { type = "ScourgeUpside", affix = "", "(3-4)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideCooldownRecoveryRate4_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToNotConsumeFlaskCharges3"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["HellscapeUpsideChanceToNotConsumeFlaskCharges4_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 68, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask" }, }, + ["HellscapeUpsideLifePercentage3_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifePercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideManaPercentage3"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaPercentage4"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideReducedReflectedPhysicalDamage3_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideReducedReflectedPhysicalDamage4_"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Physical Damage", statOrder = { 9670 }, level = 68, group = "ReducedPhysicalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideReducedReflectedElementalDamage3_____"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (41-50)% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, }, + ["HellscapeUpsideReducedReflectedElementalDamage4"] = { type = "ScourgeUpside", affix = "", "You and your Minions take (51-60)% reduced Reflected Elemental Damage", statOrder = { 6334 }, level = 68, group = "ReducedElementalReflectTaken", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental" }, }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill2__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 45, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill3"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToGainOnslaughtOnKill4_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 68, group = "ChanceToGainOnslaughtOnKill", weightKey = { "boots", "quiver", "default", }, weightVal = { 100, 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToGainPhasingOnKill2"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 45, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToGainPhasingOnKill3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToGainPhasingOnKill4"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 68, group = "ChancetoGainPhasingOnKill", weightKey = { "quiver", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToTauntOnHit2__"] = { type = "ScourgeUpside", affix = "", "(11-15)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 45, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideChanceToTauntOnHit3"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideChanceToTauntOnHit4___"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 68, group = "AttacksTauntOnHitChance", weightKey = { "axe", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideMaximumColdResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 68, group = "MaximumColdResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideMaximumFireResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 68, group = "MaximumFireResist", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideMaximumLightningResistance1_"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 68, group = "MaximumLightningResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideMaximumChaosResistance1__"] = { type = "ScourgeUpside", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeUpsideMaximumElementalResistance1"] = { type = "ScourgeUpside", affix = "", "+1% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 50, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideTotemPlacementSpeed2"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Totem Placement speed", statOrder = { 2578 }, level = 45, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideTotemPlacementSpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Totem Placement speed", statOrder = { 2578 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideTotemPlacementSpeed4"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Totem Placement speed", statOrder = { 2578 }, level = 68, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideTotemElementalResistances2"] = { type = "ScourgeUpside", affix = "", "Totems gain +(21-25)% to all Elemental Resistances", statOrder = { 2787 }, level = 45, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideTotemElementalResistances3"] = { type = "ScourgeUpside", affix = "", "Totems gain +(26-30)% to all Elemental Resistances", statOrder = { 2787 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideTotemElementalResistances4"] = { type = "ScourgeUpside", affix = "", "Totems gain +(31-35)% to all Elemental Resistances", statOrder = { 2787 }, level = 68, group = "TotemElementalResistances", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeUpsideTotemDuration2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Totem Duration", statOrder = { 1778 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemDuration3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Totem Duration", statOrder = { 1778 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemDuration4"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Totem Duration", statOrder = { 1778 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemPhysicalDamageReduction2___"] = { type = "ScourgeUpside", affix = "", "Totems have (11-15)% additional Physical Damage Reduction", statOrder = { 2789 }, level = 45, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemPhysicalDamageReduction3___"] = { type = "ScourgeUpside", affix = "", "Totems have (16-20)% additional Physical Damage Reduction", statOrder = { 2789 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemPhysicalDamageReduction4_"] = { type = "ScourgeUpside", affix = "", "Totems have (21-25)% additional Physical Damage Reduction", statOrder = { 2789 }, level = 68, group = "TotemPhysicalDamageReduction", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideTotemLife2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Totem Life", statOrder = { 1774 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideTotemLife3__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Totem Life", statOrder = { 1774 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideTotemLife4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Totem Life", statOrder = { 1774 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideBrandDuration2"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (12-14)% increased Duration", statOrder = { 10038 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideBrandDuration3"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (15-17)% increased Duration", statOrder = { 10038 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideBrandDuration4"] = { type = "ScourgeUpside", affix = "", "Brand Skills have (18-20)% increased Duration", statOrder = { 10038 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideBrandAttachmentRange2"] = { type = "ScourgeUpside", affix = "", "(12-14)% increased Brand Attachment range", statOrder = { 10043 }, level = 45, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideBrandAttachmentRange3"] = { type = "ScourgeUpside", affix = "", "(15-17)% increased Brand Attachment range", statOrder = { 10043 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideBrandAttachmentRange4_"] = { type = "ScourgeUpside", affix = "", "(18-20)% increased Brand Attachment range", statOrder = { 10043 }, level = 68, group = "BrandAttachmentRange", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 500, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideLifeRecoveryRate2_"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Life Recovery rate", statOrder = { 1578 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifeRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideLifeRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideManaRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Mana Recovery rate", statOrder = { 1586 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideManaRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideEnergyShieldRecoveryRate2"] = { type = "ScourgeUpside", affix = "", "(5-6)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldRecoveryRate3"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideEnergyShieldRecoveryRate4"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes2"] = { type = "ScourgeUpside", affix = "", "You take (13-15)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeUpside", affix = "", "You take (18-20)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideReducedExtraDamageTakenFromCriticalStrikes4"] = { type = "ScourgeUpside", affix = "", "You take (23-25)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 200, 200, 200, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeUpsideChanceToBlindOnHit2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 45, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToBlindOnHit3___"] = { type = "ScourgeUpside", affix = "", "(9-10)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToBlindOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 68, group = "GlobalChanceToBlindOnHit", weightKey = { "gloves", "quiver", "default", }, weightVal = { 200, 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToMaimOnHit2"] = { type = "ScourgeUpside", affix = "", "Attacks have (7-8)% chance to Maim on Hit", statOrder = { 8154 }, level = 45, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideChanceToMaimOnHit3_"] = { type = "ScourgeUpside", affix = "", "Attacks have (9-10)% chance to Maim on Hit", statOrder = { 8154 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideChanceToMaimOnHit4"] = { type = "ScourgeUpside", affix = "", "Attacks have (11-12)% chance to Maim on Hit", statOrder = { 8154 }, level = 68, group = "GlobalMaimOnHit", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideChanceToHinderOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 45, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideChanceToHinderOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideChanceToHinderOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 68, group = "SpellsHinderOnHitChance", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideChanceToIntimidateOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 45, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToIntimidateOnHit3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToIntimidateOnHit4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 68, group = "ChanceToIntimidateOnHit", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToUnnerveOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 45, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToUnnerveOnHit3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToUnnerveOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 68, group = "ChanceToUnnerveOnHit", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChanceToImpaleOnHit2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 45, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, + ["HellscapeUpsideChanceToImpaleOnHit3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, + ["HellscapeUpsideChanceToImpaleOnHit4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 68, group = "MonsterImpaleOnHit", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical", "attack" }, }, + ["HellscapeUpsideEnemiesExplodeOnDeathPhysical4_"] = { type = "ScourgeUpside", affix = "", "Enemies you Kill have a 15% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", statOrder = { 3304 }, level = 68, group = "EnemiesExplodeOnDeathPhysicalChance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideColdPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Cold Resistance", statOrder = { 2983 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdPenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideColdPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeUpsideFirePenetration1h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Fire Resistance", statOrder = { 2981 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFirePenetration1h3___"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFirePenetration1h4__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFirePenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFirePenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideFirePenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideLightningPenetration1h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Lightning Resistance", statOrder = { 2984 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningPenetration1h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningPenetration2h2"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningPenetration2h3_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningPenetration2h4"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeUpsideChaosPenetration1h2_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 3% Chaos Resistance", statOrder = { 9875 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, + ["HellscapeUpsideChaosPenetration1h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 4% Chaos Resistance", statOrder = { 9875 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, + ["HellscapeUpsideChaosPenetration1h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 5% Chaos Resistance", statOrder = { 9875 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 50, 250, 250, 250, 0 }, modTags = { }, }, + ["HellscapeUpsideChaosPenetration2h2__"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 6% Chaos Resistance", statOrder = { 9875 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["HellscapeUpsideChaosPenetration2h3"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 7% Chaos Resistance", statOrder = { 9875 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["HellscapeUpsideChaosPenetration2h4_"] = { type = "ScourgeUpside", affix = "", "Damage Penetrates 8% Chaos Resistance", statOrder = { 9875 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["HellscapeUpsideCullingStrike1"] = { type = "ScourgeUpside", affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { "weapon", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeUpsideCurseOnHitDespair1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Despair on Hit", statOrder = { 2515 }, level = 68, group = "CurseOnHitDespairChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitElementalWeakness1___"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Elemental Weakness on Hit", statOrder = { 2516 }, level = 68, group = "CurseOnHitLevelElementalWeaknessChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitEnfeeble1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2513 }, level = 68, group = "EnfeebleOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitTemporalChains1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 68, group = "TemporalChainsOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitVulnerability1_"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2520 }, level = 68, group = "VulnerabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitConductivity1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Conductivity on Hit", statOrder = { 2514 }, level = 68, group = "CurseOnHitConductivityChance", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitFlammability1______"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2517 }, level = 68, group = "FlammabilityOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseOnHitFrostbite1"] = { type = "ScourgeUpside", affix = "", "Curse Enemies with Frostbite on Hit", statOrder = { 2518 }, level = 68, group = "FrostbiteOnHit", weightKey = { "gloves", "default", }, weightVal = { 50, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill1__"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 45, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeUpsideChanceToGainEnduranceChargeOnKill4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 68, group = "EnduranceChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 45, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, + ["HellscapeUpsideChanceToGainPowerChargeOnKill4___"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 68, group = "PowerChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "power_charge" }, }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill1"] = { type = "ScourgeUpside", affix = "", "(5-6)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 45, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeUpsideChanceToGainFrenzyChargeOnKill4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 68, group = "FrenzyChargeOnKillChance", weightKey = { "ring", "default", }, weightVal = { 200, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeUpsideTrapThrowingSpeed2"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 45, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideTrapThrowingSpeed3"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideTrapThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 68, group = "TrapThrowSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMineThrowingSpeed2___"] = { type = "ScourgeUpside", affix = "", "(7-9)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 45, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMineThrowingSpeed3_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideMineThrowingSpeed4"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 68, group = "MineLayingSpeed", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideAdditionalArrow1"] = { type = "ScourgeUpside", affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 68, group = "AdditionalArrows", weightKey = { "bow", "quiver", "default", }, weightVal = { 50, 5, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideAdditionalChainChance1__"] = { type = "ScourgeUpside", affix = "", "Skills Chain +1 times", statOrder = { 1789 }, level = 68, group = "AdditionalChain", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, + ["HellscapeUpsideAdditionalPierceChance1__"] = { type = "ScourgeUpside", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 68, group = "AdditionalPierce", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, + ["HellscapeUpsideAdditionalSplitChance1_"] = { type = "ScourgeUpside", affix = "", "Projectiles Split towards +1 targets", statOrder = { 9740 }, level = 68, group = "ProjectilesSplitCount", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { }, }, + ["HellscapeUpsideAdditionalReturn1___"] = { type = "ScourgeUpside", affix = "", "Attack Projectiles Return to you", statOrder = { 2824 }, level = 68, group = "ReturningAttackProjectiles", weightKey = { "quiver", "default", }, weightVal = { 5, 0 }, modTags = { "attack" }, }, + ["HellscapeUpsideStrengthPercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideStrengthPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Strength", statOrder = { 1184 }, level = 68, group = "PercentageStrength", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideDexterityPercent3_"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideDexterityPercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Dexterity", statOrder = { 1185 }, level = 68, group = "PercentageDexterity", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideIntelligencePercent3"] = { type = "ScourgeUpside", affix = "", "(4-5)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsideIntelligencePercent4_"] = { type = "ScourgeUpside", affix = "", "(6-7)% increased Intelligence", statOrder = { 1186 }, level = 68, group = "PercentageIntelligence", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["HellscapeUpsidePoisonDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (4-5)% faster", statOrder = { 6545 }, level = 45, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsidePoisonDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (6-7)% faster", statOrder = { 6545 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsidePoisonDamageFaster1h4"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6545 }, level = 68, group = "FasterPoisonDamage", weightKey = { "two_hand_weapon", "sword", "claw", "dagger", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsidePoisonDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (8-9)% faster", statOrder = { 6545 }, level = 45, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsidePoisonDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (10-11)% faster", statOrder = { 6545 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsidePoisonDamageFaster2h4_"] = { type = "ScourgeUpside", affix = "", "Poisons you inflict deal Damage (12-13)% faster", statOrder = { 6545 }, level = 68, group = "FasterPoisonDamage", weightKey = { "one_hand_weapon", "sword", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (4-5)% faster", statOrder = { 2564 }, level = 45, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (6-7)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster1h4__"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "sceptre", "wand", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster2h2_"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (8-9)% faster", statOrder = { 2564 }, level = 45, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (10-11)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideIgniteDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Ignites you inflict deal Damage (12-13)% faster", statOrder = { 2564 }, level = 68, group = "FasterIgniteDamage", weightKey = { "staff", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster1h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (4-5)% faster", statOrder = { 6544 }, level = 45, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster1h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (6-7)% faster", statOrder = { 6544 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster1h4_"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6544 }, level = 68, group = "FasterBleedDamage", weightKey = { "two_hand_weapon", "sword", "axe", "mace", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster2h2"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (8-9)% faster", statOrder = { 6544 }, level = 45, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster2h3"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (10-11)% faster", statOrder = { 6544 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideBleedingDamageFaster2h4"] = { type = "ScourgeUpside", affix = "", "Bleeding you inflict deals Damage (12-13)% faster", statOrder = { 6544 }, level = 68, group = "FasterBleedDamage", weightKey = { "one_hand_weapon", "sword", "axe", "mace", "bow", "default", }, weightVal = { 0, 500, 500, 500, 500, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsidePhysicalConvertedToCold1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 68, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["HellscapeUpsidePhysicalConvertedToFire1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 68, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["HellscapeUpsidePhysicalConvertedToLightning1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 68, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["HellscapeUpsidePhysicalConvertedToChaos1"] = { type = "ScourgeUpside", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 68, group = "PhysicalDamageConvertedToChaos", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["HellscapeUpsideAilmentDuration2_"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideAilmentDuration3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideAilmentDuration4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideNonDamagingAilmentEffect2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideNonDamagingAilmentEffect3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideNonDamagingAilmentEffect4_"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 3% increased Physical Damage", statOrder = { 7918 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedPhysicalDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies take 4% increased Physical Damage", statOrder = { 7918 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage3__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Fire Resistance", statOrder = { 7914 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedFireDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Fire Resistance", statOrder = { 7914 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage3___"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Cold Resistance", statOrder = { 7912 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedColdDamage4__"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Cold Resistance", statOrder = { 7912 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Lightning Resistance", statOrder = { 7916 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedLightningDamage4_"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Lightning Resistance", statOrder = { 7916 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage3"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -3% to Chaos Resistance", statOrder = { 7911 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["HellscapeUpsideNearbyEnemiesTakeIncreasedChaosDamage4"] = { type = "ScourgeUpside", affix = "", "Nearby Enemies have -4% to Chaos Resistance", statOrder = { 7911 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 100, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["HellscapeUpsideCurseEffect3_"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Effect of your Curses", statOrder = { 2596 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideCurseEffect4"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Effect of your Curses", statOrder = { 2596 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeUpsideNonCurseAuraEffect2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, + ["HellscapeUpsideNonCurseAuraEffect3__"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, + ["HellscapeUpsideNonCurseAuraEffect4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "aura" }, }, + ["HellscapeUpsideImpaleEffect1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% increased Impale Effect", statOrder = { 7242 }, level = 45, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideImpaleEffect1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% increased Impale Effect", statOrder = { 7242 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideImpaleEffect1h4_"] = { type = "ScourgeUpside", affix = "", "(11-12)% increased Impale Effect", statOrder = { 7242 }, level = 68, group = "ImpaleEffect", weightKey = { "two_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideImpaleEffect2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Impale Effect", statOrder = { 7242 }, level = 45, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideImpaleEffect2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% increased Impale Effect", statOrder = { 7242 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideImpaleEffect2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% increased Impale Effect", statOrder = { 7242 }, level = 68, group = "ImpaleEffect", weightKey = { "one_hand_weapon", "sword", "axe", "claw", "dagger", "mace", "bow", "default", }, weightVal = { 0, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "physical" }, }, + ["HellscapeUpsideInflictColdExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 45, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictColdExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictColdExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 68, group = "ColdExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictColdExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 45, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictColdExposureOnHit2h3"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictColdExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 68, group = "ColdExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 45, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 68, group = "FireExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit2h2__"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 45, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit2h3_____"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictFireExposureOnHit2h4"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 68, group = "FireExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit1h2"] = { type = "ScourgeUpside", affix = "", "(7-8)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 45, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit1h3"] = { type = "ScourgeUpside", affix = "", "(9-10)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit1h4"] = { type = "ScourgeUpside", affix = "", "(11-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 68, group = "LightningExposureOnHit", weightKey = { "attack_dagger", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit2h2_"] = { type = "ScourgeUpside", affix = "", "(10-12)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 45, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit2h3__"] = { type = "ScourgeUpside", affix = "", "(13-15)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideInflictLightningExposureOnHit2h4__"] = { type = "ScourgeUpside", affix = "", "(16-18)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 68, group = "LightningExposureOnHit", weightKey = { "warstaff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["HellscapeUpsideKnockbackOnHit2"] = { type = "ScourgeUpside", affix = "", "(16-20)% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 45, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideKnockbackOnHit3__"] = { type = "ScourgeUpside", affix = "", "(21-25)% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideKnockbackOnHit4"] = { type = "ScourgeUpside", affix = "", "(26-30)% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 68, group = "GlobalKnockbackChance", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeUpsideReservationEfficiency3__"] = { type = "ScourgeUpside", affix = "", "(6-8)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideReservationEfficiency4_"] = { type = "ScourgeUpside", affix = "", "(10-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 68, group = "ReducedReservation", weightKey = { "amulet", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeUpsideWarcrySpeed2__"] = { type = "ScourgeUpside", affix = "", "(16-20)% increased Warcry Speed", statOrder = { 3277 }, level = 45, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideWarcrySpeed3"] = { type = "ScourgeUpside", affix = "", "(21-25)% increased Warcry Speed", statOrder = { 3277 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideWarcrySpeed4_"] = { type = "ScourgeUpside", affix = "", "(26-30)% increased Warcry Speed", statOrder = { 3277 }, level = 68, group = "WarcrySpeed", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "speed" }, }, + ["HellscapeUpsideColdDamageLeechedAsLife2_"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 45, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["HellscapeUpsideColdDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 68, group = "ColdDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["HellscapeUpsideFireDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 45, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["HellscapeUpsideFireDamageLeechedAsLife4"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 68, group = "FireDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["HellscapeUpsideLightningDamageLeechedAsLife2__"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 45, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamageLeechedAsLife3_"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["HellscapeUpsideLightningDamageLeechedAsLife4_"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 68, group = "LightningDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["HellscapeUpsideChaosDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 45, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["HellscapeUpsideChaosDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["HellscapeUpsideChaosDamageLeechedAsLife4__"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 68, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["HellscapeUpsidePhysicalDamageLeechedAsLife2"] = { type = "ScourgeUpside", affix = "", "(0.2-0.3)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 45, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, + ["HellscapeUpsidePhysicalDamageLeechedAsLife3"] = { type = "ScourgeUpside", affix = "", "(0.3-0.4)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, + ["HellscapeUpsidePhysicalDamageLeechedAsLife4____"] = { type = "ScourgeUpside", affix = "", "(0.4-0.5)% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 68, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "physical" }, }, + ["HellscapeUpsideKeystoneMinionInstability"] = { type = "ScourgeUpside", affix = "", "Minion Instability", statOrder = { 10798 }, level = 68, group = "MinionInstability", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["HellscapeUpsideKeystoneResoluteTechnique"] = { type = "ScourgeUpside", affix = "", "Resolute Technique", statOrder = { 10828 }, level = 68, group = "ResoluteTechnique", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeUpsideKeystoneBloodMagic"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10772 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana" }, }, + ["HellscapeUpsideKeystonePainAttunement"] = { type = "ScourgeUpside", affix = "", "Pain Attunement", statOrder = { 10800 }, level = 68, group = "PainAttunement", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeUpsideKeystoneElementalEquilibrium_"] = { type = "ScourgeUpside", affix = "", "Elemental Equilibrium", statOrder = { 10781 }, level = 68, group = "ElementalEquilibrium", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeUpsideKeystoneIronGrip"] = { type = "ScourgeUpside", affix = "", "Iron Grip", statOrder = { 10816 }, level = 68, group = "IronGrip", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, }, + ["HellscapeUpsideKeystonePointBlank"] = { type = "ScourgeUpside", affix = "", "Point Blank", statOrder = { 10801 }, level = 68, group = "PointBlank", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "attack" }, }, + ["HellscapeUpsideKeystoneAcrobatics___"] = { type = "ScourgeUpside", affix = "", "Acrobatics", statOrder = { 10767 }, level = 68, group = "Acrobatics", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, + ["HellscapeUpsideKeystoneGhostReaver"] = { type = "ScourgeUpside", affix = "", "Ghost Reaver", statOrder = { 10787 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["HellscapeUpsideKeystoneVaalPact"] = { type = "ScourgeUpside", affix = "", "Vaal Pact", statOrder = { 10821 }, level = 68, group = "VaalPact", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeUpsideKeystoneElementalOverload"] = { type = "ScourgeUpside", affix = "", "Elemental Overload", statOrder = { 10782 }, level = 68, group = "ElementalOverload", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["HellscapeUpsideKeystoneAvatarOfFire"] = { type = "ScourgeUpside", affix = "", "Avatar of Fire", statOrder = { 10770 }, level = 68, group = "AvatarOfFire", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeUpsideKeystoneEldritchBattery_"] = { type = "ScourgeUpside", affix = "", "Eldritch Battery", statOrder = { 10780 }, level = 68, group = "EldritchBattery", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideKeystoneAncestralBond"] = { type = "ScourgeUpside", affix = "", "Ancestral Bond", statOrder = { 10769 }, level = 68, group = "AncestralBond", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage" }, }, + ["HellscapeUpsideKeystoneCrimsonDance_"] = { type = "ScourgeUpside", affix = "", "Crimson Dance", statOrder = { 10777 }, level = 68, group = "CrimsonDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["HellscapeUpsideKeystonePerfectAgony_"] = { type = "ScourgeUpside", affix = "", "Perfect Agony", statOrder = { 10768 }, level = 68, group = "PerfectAgony", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "damage", "critical", "ailment" }, }, + ["HellscapeUpsideKeystoneRunebinder___"] = { type = "ScourgeUpside", affix = "", "Runebinder", statOrder = { 10808 }, level = 68, group = "Runebinder", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideKeystoneMortalConviction_"] = { type = "ScourgeUpside", affix = "", "Blood Magic", statOrder = { 10772 }, level = 68, group = "BloodMagic", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["HellscapeUpsideKeystoneCallToArms"] = { type = "ScourgeUpside", affix = "", "Call to Arms", statOrder = { 10773 }, level = 68, group = "CallToArms", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, + ["HellscapeUpsideKeystoneTheAgnostic_"] = { type = "ScourgeUpside", affix = "", "The Agnostic", statOrder = { 10799 }, level = 68, group = "TheAgnostic", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, + ["HellscapeUpsideKeystoneSupremeEgo_"] = { type = "ScourgeUpside", affix = "", "Supreme Ego", statOrder = { 10817 }, level = 68, group = "SupremeEgo", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "resource", "mana", "aura" }, }, + ["HellscapeUpsideKeystoneTheImpaler_"] = { type = "ScourgeUpside", affix = "", "The Impaler", statOrder = { 10792 }, level = 68, group = "Impaler", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeUpsideKeystoneDoomsday"] = { type = "ScourgeUpside", affix = "", "Hex Master", statOrder = { 10790 }, level = 68, group = "HexMaster", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "curse" }, }, + ["HellscapeUpsideKeystoneLetheShade1_"] = { type = "ScourgeUpside", affix = "", "Lethe Shade", statOrder = { 10794 }, level = 68, group = "LetheShade", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideKeystoneGhostDance"] = { type = "ScourgeUpside", affix = "", "Ghost Dance", statOrder = { 10786 }, level = 68, group = "GhostDance", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["HellscapeUpsideKeystoneVersatileCombatant___"] = { type = "ScourgeUpside", affix = "", "Versatile Combatant", statOrder = { 10822 }, level = 68, group = "VersatileCombatant", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "block" }, }, + ["HellscapeUpsideKeystoneMagebane"] = { type = "ScourgeUpside", affix = "", "Magebane", statOrder = { 10795 }, level = 68, group = "Magebane", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { }, }, + ["HellscapeUpsideKeystoneSolipsism"] = { type = "ScourgeUpside", affix = "", "Solipsism", statOrder = { 10814 }, level = 68, group = "Solipsism", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "ailment" }, }, + ["HellscapeUpsideKeystoneDivineShield"] = { type = "ScourgeUpside", affix = "", "Divine Shield", statOrder = { 10779 }, level = 68, group = "DivineShield", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeUpsideKeystoneIronWill"] = { type = "ScourgeUpside", affix = "", "Iron Will", statOrder = { 10829 }, level = 68, group = "IronWill", weightKey = { "body_armour", "default", }, weightVal = { 10, 0 }, modTags = { "caster" }, }, + ["HellscapeUpsideLifeGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, + ["HellscapeUpsideLifeGainOnHitWithAttacks2_"] = { type = "ScourgeUpside", affix = "", "Gain (3-4) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 45, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, + ["HellscapeUpsideLifeGainOnHitWithAttacks3"] = { type = "ScourgeUpside", affix = "", "Gain (5-7) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, + ["HellscapeUpsideLifeGainOnHitWithAttacks4_"] = { type = "ScourgeUpside", affix = "", "Gain (8-10) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 68, group = "LifeGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life", "attack" }, }, + ["HellscapeUpsideManaGainOnHitWithAttacks1"] = { type = "ScourgeUpside", affix = "", "Gain 2 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["HellscapeUpsideManaGainOnHitWithAttacks2__"] = { type = "ScourgeUpside", affix = "", "Gain 3 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 45, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["HellscapeUpsideManaGainOnHitWithAttacks3_"] = { type = "ScourgeUpside", affix = "", "Gain 4 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["HellscapeUpsideManaGainOnHitWithAttacks4__"] = { type = "ScourgeUpside", affix = "", "Gain 5 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 68, group = "ManaGainPerTarget", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Lightning Damage", statOrder = { 467 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedLightningDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Lightning Damage", statOrder = { 467 }, level = 45, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Lightning Damage", statOrder = { 467 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedLightningDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Lightning Damage", statOrder = { 467 }, level = 68, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedColdDamage_"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Cold Damage", statOrder = { 518 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Cold Damage", statOrder = { 518 }, level = 45, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Cold Damage", statOrder = { 518 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedColdDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Cold Damage", statOrder = { 518 }, level = 68, group = "DisplaySupportedByAddedColdDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel1AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 1 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel10AddedChaosDamage_____"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 458 }, level = 45, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel20AddedChaosDamage"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 20 Added Chaos Damage", statOrder = { 458 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideSocketedGemsAreSupportedByLevel22AddedChaosDamage__"] = { type = "ScourgeUpside", affix = "", "Socketed Gems are Supported by Level 22 Added Chaos Damage", statOrder = { 458 }, level = 68, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { "support", "gem" }, }, + ["HellscapeUpsideCannotBeFrozen___"] = { type = "ScourgeUpside", affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideGainLifeChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 7347 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideGainManaChargeEvery3Seconds"] = { type = "ScourgeUpside", affix = "", "Mana Flasks gain 1 Charge every 3 seconds", statOrder = { 8175 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { "belt", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeUpsideChillOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillOnBlock2"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 45, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillOnBlock3"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideChillOnBlock4"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 68, group = "ChanceToChillAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, + ["HellscapeUpsideShockOnBlock1"] = { type = "ScourgeUpside", affix = "", "(14-16)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideShockOnBlock2___"] = { type = "ScourgeUpside", affix = "", "(17-19)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 45, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideShockOnBlock3__"] = { type = "ScourgeUpside", affix = "", "(20-22)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideShockOnBlock4__"] = { type = "ScourgeUpside", affix = "", "(23-25)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 68, group = "ChanceToShockAttackersOnBlock", weightKey = { "shield", "default", }, weightVal = { 200, 0 }, modTags = { "block", "elemental", "lightning", "ailment" }, }, + ["HellscapeUpsideSocketedStrengthGems___"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, }, + ["HellscapeUpsideSocketedDexterityGems"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, }, + ["HellscapeUpsideSocketedIntelligenceGems__"] = { type = "ScourgeUpside", affix = "", "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 1, group = "LocalIncreaseSocketedIntelligenceGemLevel", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "attribute", "gem" }, }, + ["HellscapeUpsideGrantsLevel1HeraldOfIce__"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ice Skill", statOrder = { 706 }, level = 1, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ice Skill", statOrder = { 706 }, level = 45, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ice Skill", statOrder = { 706 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22HeraldOfIce"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ice Skill", statOrder = { 706 }, level = 68, group = "HeraldOfIceSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel1HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Ash Skill", statOrder = { 705 }, level = 1, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Ash Skill", statOrder = { 705 }, level = 45, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20HeraldOfAsh"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Ash Skill", statOrder = { 705 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22HeraldOfAsh_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Ash Skill", statOrder = { 705 }, level = 68, group = "HeraldOfAshSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel1HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Thunder Skill", statOrder = { 709 }, level = 1, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Thunder Skill", statOrder = { 709 }, level = 45, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20HeraldOfThunder_"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Thunder Skill", statOrder = { 709 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22HeraldOfThunder"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Thunder Skill", statOrder = { 709 }, level = 68, group = "HeraldOfThunderSkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel1HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Purity Skill", statOrder = { 707 }, level = 1, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10HeraldOfPurity"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Purity Skill", statOrder = { 707 }, level = 45, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20HeraldOfPurity_____"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Purity Skill", statOrder = { 707 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22HeraldOfPurity_"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Purity Skill", statOrder = { 707 }, level = 68, group = "HeraldOfPuritySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel1HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Herald of Agony Skill", statOrder = { 704 }, level = 1, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 100, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10HeraldOfAgony"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Herald of Agony Skill", statOrder = { 704 }, level = 45, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 150, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Herald of Agony Skill", statOrder = { 704 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22HeraldOfAgony__"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Herald of Agony Skill", statOrder = { 704 }, level = 68, group = "HeraldOfAgonySkill", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel1SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 1 Sniper's Mark Skill", statOrder = { 658 }, level = 1, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel10SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 10 Sniper's Mark Skill", statOrder = { 658 }, level = 45, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel20SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 20 Sniper's Mark Skill", statOrder = { 658 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideGrantsLevel22SnipersMark"] = { type = "ScourgeUpside", affix = "", "Grants Level 22 Sniper's Mark Skill", statOrder = { 658 }, level = 68, group = "ProjectileWeaknessSkill", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "skill" }, }, + ["HellscapeUpsideDaytimeFishSize___"] = { type = "ScourgeUpside", affix = "", "(10-30)% increased Size of Fish caught during Daytime", statOrder = { 6132 }, level = 1, group = "DaytimeFishSize", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideFishingCastDistance"] = { type = "ScourgeUpside", affix = "", "(13-16)% increased Fishing Range", statOrder = { 2848 }, level = 45, group = "FishingCastDistance", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideFishingRarity"] = { type = "ScourgeUpside", affix = "", "(20-25)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { "drop" }, }, + ["HellscapeUpsideStrengthAppliesToFishingReelSpeed_"] = { type = "ScourgeUpside", affix = "", "Strength's Damage bonus also applies to Reeling Speed at 20% of its value", statOrder = { 10255 }, level = 1, group = "StrengthAppliesToFishingReelSpeed", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["HellscapeUpsideCanCatchScourgedFish"] = { type = "ScourgeUpside", affix = "", "You can catch Scourged Fish", statOrder = { 5386 }, level = 68, group = "CanCatchScourgedFish", weightKey = { "fishing_rod", "default", }, weightVal = { 1, 0 }, modTags = { }, }, + ["HellscapeDownsideStrengthRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Strength Requirement", statOrder = { 1085 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideStrengthRequirement1"] = { type = "ScourgeDownside", affix = "", "+(36-50) Strength Requirement", statOrder = { 1085 }, level = 1, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideStrengthRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Strength Requirement", statOrder = { 1085 }, level = 45, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideStrengthRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Strength Requirement", statOrder = { 1085 }, level = 68, group = "HellscapeDownsideStrengthRequirement", weightKey = { "str_armour", "str_dex_armour", "str_int_armour", "str_dex_int_armour", "sword", "mace", "sceptre", "staff", "axe", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideDexterityRequirement0__"] = { type = "ScourgeDownside", affix = "", "+(21-30) Dexterity Requirement", statOrder = { 1077 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideDexterityRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Dexterity Requirement", statOrder = { 1077 }, level = 1, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideDexterityRequirement2_"] = { type = "ScourgeDownside", affix = "", "+(75-125) Dexterity Requirement", statOrder = { 1077 }, level = 45, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideDexterityRequirement3__"] = { type = "ScourgeDownside", affix = "", "+(150-200) Dexterity Requirement", statOrder = { 1077 }, level = 68, group = "HellscapeDownsideDexterityRequirement", weightKey = { "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "bow", "sword", "axe", "claw", "dagger", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideIntelligenceRequirement0_"] = { type = "ScourgeDownside", affix = "", "+(21-30) Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideIntelligenceRequirement1_"] = { type = "ScourgeDownside", affix = "", "+(36-50) Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideIntelligenceRequirement2"] = { type = "ScourgeDownside", affix = "", "+(75-125) Intelligence Requirement", statOrder = { 1079 }, level = 45, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideIntelligenceRequirement3"] = { type = "ScourgeDownside", affix = "", "+(150-200) Intelligence Requirement", statOrder = { 1079 }, level = 68, group = "HellscapeDownsideIntelligenceRequirement", weightKey = { "int_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "wand", "dagger", "claw", "staff", "sceptre", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotCrit_"] = { type = "ScourgeDownside", affix = "", "Never deal Critical Strikes", statOrder = { 2178 }, level = 45, group = "HellscapeDownsideCannotCrit", weightKey = { "body_armour", "quiver", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotBlock"] = { type = "ScourgeDownside", affix = "", "Cannot Block Attack Damage", "Cannot Block Spell Damage", statOrder = { 2258, 5428 }, level = 45, group = "HellscapeDownsideCannotBlock", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotEvade_"] = { type = "ScourgeDownside", affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1918 }, level = 45, group = "HellscapeDownsideCannotEvade", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideReducedFireResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeDownsideReducedFireResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeDownsideReducedFireResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Fire Resistance", statOrder = { 1625 }, level = 45, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeDownsideReducedFireResistance3_"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Fire Resistance", statOrder = { 1625 }, level = 68, group = "FireResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["HellscapeDownsideReducedColdResistance0"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeDownsideReducedColdResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeDownsideReducedColdResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Cold Resistance", statOrder = { 1631 }, level = 45, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeDownsideReducedColdResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Cold Resistance", statOrder = { 1631 }, level = 68, group = "ColdResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["HellscapeDownsideReducedLightningResistance0_"] = { type = "ScourgeDownside", affix = "", "-(15-11)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeDownsideReducedLightningResistance1"] = { type = "ScourgeDownside", affix = "", "-(20-16)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeDownsideReducedLightningResistance2"] = { type = "ScourgeDownside", affix = "", "-(25-21)% to Lightning Resistance", statOrder = { 1636 }, level = 45, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeDownsideReducedLightningResistance3"] = { type = "ScourgeDownside", affix = "", "-(30-26)% to Lightning Resistance", statOrder = { 1636 }, level = 68, group = "LightningResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HellscapeDownsideReducedChaosResistance0_"] = { type = "ScourgeDownside", affix = "", "-(13-10)% to Chaos Resistance", statOrder = { 1641 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeDownsideReducedChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-(17-14)% to Chaos Resistance", statOrder = { 1641 }, level = 16, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeDownsideReducedChaosResistance2_"] = { type = "ScourgeDownside", affix = "", "-(21-18)% to Chaos Resistance", statOrder = { 1641 }, level = 45, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 750, 750, 750, 750, 750, 750, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeDownsideReducedChaosResistance3___"] = { type = "ScourgeDownside", affix = "", "-(25-22)% to Chaos Resistance", statOrder = { 1641 }, level = 68, group = "ChaosResistance", weightKey = { "weapon", "armour", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeDownsideReducedElementalResistances0_"] = { type = "ScourgeDownside", affix = "", "-5% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeDownsideReducedElementalResistances1_"] = { type = "ScourgeDownside", affix = "", "-(7-6)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeDownsideReducedElementalResistances2_"] = { type = "ScourgeDownside", affix = "", "-(9-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 45, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 750, 750, 750, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeDownsideReducedElementalResistances3_"] = { type = "ScourgeDownside", affix = "", "-(11-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 68, group = "AllResistances", weightKey = { "shield", "ring", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeDownsideMinusMaximumLife0"] = { type = "ScourgeDownside", affix = "", "-(20-16) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideMinusMaximumLife1_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideMinusMaximumLife2"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Life", statOrder = { 1569 }, level = 45, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideMinusMaximumLife3_"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Life", statOrder = { 1569 }, level = 68, group = "IncreasedLife", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideMinusMaximumMana0_"] = { type = "ScourgeDownside", affix = "", "-(25-21) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideMinusMaximumMana1"] = { type = "ScourgeDownside", affix = "", "-(30-26) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideMinusMaximumMana2__"] = { type = "ScourgeDownside", affix = "", "-(35-31) to maximum Mana", statOrder = { 1579 }, level = 45, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideMinusMaximumMana3_"] = { type = "ScourgeDownside", affix = "", "-(40-36) to maximum Mana", statOrder = { 1579 }, level = 68, group = "IncreasedMana", weightKey = { "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideReducedGlobalDefences0"] = { type = "ScourgeDownside", affix = "", "(6-10)% reduced Global Defences", statOrder = { 2833 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideReducedGlobalDefences1"] = { type = "ScourgeDownside", affix = "", "(11-15)% reduced Global Defences", statOrder = { 2833 }, level = 1, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideReducedGlobalDefences2"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Global Defences", statOrder = { 2833 }, level = 45, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideReducedGlobalDefences3__"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Global Defences", statOrder = { 2833 }, level = 68, group = "HellscapeDownsideReducedGlobalDefences", weightKey = { "armour", "ring", "amulet", "belt", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideDealNoDamageYourself_"] = { type = "ScourgeDownside", affix = "", "You can't deal Damage with your Skills yourself", statOrder = { 2250 }, level = 68, group = "HellscapeDownsideDealNoDamageYourself", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideReducedMinionLife2_"] = { type = "ScourgeDownside", affix = "", "Minions have (30-33)% reduced maximum Life", statOrder = { 1766 }, level = 45, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeDownsideReducedMinionLife3_"] = { type = "ScourgeDownside", affix = "", "Minions have (36-39)% reduced maximum Life", statOrder = { 1766 }, level = 68, group = "MinionLife", weightKey = { "helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["HellscapeDownsideReservationEfficiency3"] = { type = "ScourgeDownside", affix = "", "(18-24)% reduced Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 68, group = "ManaReservationEfficiency", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideIncreasedChanceToBeCrit3__"] = { type = "ScourgeDownside", affix = "", "Hits have +10% additional Critical Strike Chance against you", statOrder = { 3131 }, level = 68, group = "HellscapeDownsideIncreasedChanceToBeCrit", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideHinderedOnHitBySpells3__"] = { type = "ScourgeDownside", affix = "", "Spell Hits Hinder you", statOrder = { 5640 }, level = 68, group = "HellscapeDownsideHinderedOnHitBySpells", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideChanceToBeSilencedWhenHit3__"] = { type = "ScourgeDownside", affix = "", "(21-30)% chance to Curse you with Silence when Hit", statOrder = { 6007 }, level = 68, group = "HellscapeDownsideChanceToBeSilencedWhenHit", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent0__"] = { type = "ScourgeDownside", affix = "", "(21-30)% reduced Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent1_"] = { type = "ScourgeDownside", affix = "", "(31-40)% reduced Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent2_"] = { type = "ScourgeDownside", affix = "", "(41-50)% reduced Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 45, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["HellscapeDownsideMinusLocalEvasionArmourEnergyShieldPercent3"] = { type = "ScourgeDownside", affix = "", "(51-60)% reduced Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 68, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { "armour", "default", }, weightVal = { 1000, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["HellscapeDownsideMaximumElementalResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 68, group = "MaximumElementalResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["HellscapeDownsideMaximumChaosResistance1"] = { type = "ScourgeDownside", affix = "", "-1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 68, group = "MaximumChaosResistance", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "chaos", "resistance" }, }, + ["HellscapeDownsideElementalResistanceMinion2__"] = { type = "ScourgeDownside", affix = "", "Minions have -(33-30)% to all Elemental Resistances", statOrder = { 2912 }, level = 45, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["HellscapeDownsideElementalResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(39-36)% to all Elemental Resistances", statOrder = { 2912 }, level = 68, group = "MinionElementalResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["HellscapeDownsideChaosResistanceMinion2"] = { type = "ScourgeDownside", affix = "", "Minions have -(51-42)% to Chaos Resistance", statOrder = { 2913 }, level = 45, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["HellscapeDownsideChaosResistanceMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have -(63-54)% to Chaos Resistance", statOrder = { 2913 }, level = 68, group = "MinionChaosResistance", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["HellscapeDownsideAllAilmentDuration2"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Duration of Ailments on Enemies", statOrder = { 1860 }, level = 45, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, }, + ["HellscapeDownsideAllAilmentDuration3__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Duration of Ailments on Enemies", statOrder = { 1860 }, level = 68, group = "IncreasedAilmentDuration", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "ailment" }, }, + ["HellscapeDownsideElementalDurationOnSelf2"] = { type = "ScourgeDownside", affix = "", "(17-19)% increased Elemental Ailment Duration on you", statOrder = { 1867 }, level = 45, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["HellscapeDownsideElementalDurationOnSelf3__"] = { type = "ScourgeDownside", affix = "", "(20-22)% increased Elemental Ailment Duration on you", statOrder = { 1867 }, level = 68, group = "SelfStatusAilmentDuration", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["HellscapeDownsideLifeOnBlock2__"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Life when you Block", statOrder = { 1757 }, level = 45, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, + ["HellscapeDownsideLifeOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Life when you Block", statOrder = { 1757 }, level = 68, group = "GainLifeOnBlock", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "life" }, }, + ["HellscapeDownsideManaOnBlock2_"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Mana when you Block", statOrder = { 1758 }, level = 45, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, + ["HellscapeDownsideManaOnBlock3_____"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Mana when you Block", statOrder = { 1758 }, level = 68, group = "GainManaOnBlock", weightKey = { "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "resource", "mana" }, }, + ["HellscapeDownsideEnergyShieldOnBlock2___"] = { type = "ScourgeDownside", affix = "", "Lose (31-40) Energy Shield when you Block", statOrder = { 1759 }, level = 45, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, + ["HellscapeDownsideEnergyShieldOnBlock3"] = { type = "ScourgeDownside", affix = "", "Lose (41-50) Energy Shield when you Block", statOrder = { 1759 }, level = 68, group = "GainEnergyShieldOnBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "block", "defences", "energy_shield" }, }, + ["HellscapeDownsideChanceToBlockAttacks2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 45, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["HellscapeDownsideChanceToBlockAttacks3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 68, group = "AdditionalBlock", weightKey = { "shield", "default", }, weightVal = { 1000, 0 }, modTags = { "block" }, }, + ["HellscapeDownsideChanceToBlockSpells2"] = { type = "ScourgeDownside", affix = "", "-(10-8)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 45, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, }, + ["HellscapeDownsideChanceToBlockSpells3"] = { type = "ScourgeDownside", affix = "", "-(14-12)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 68, group = "AdditionalSpellBlock", weightKey = { "focus", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 0 }, modTags = { "block" }, }, + ["HellscapeDownsideChanceToSuppressSpells2"] = { type = "ScourgeDownside", affix = "", "-(18-15)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 45, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, }, + ["HellscapeDownsideChanceToSuppressSpells3"] = { type = "ScourgeDownside", affix = "", "-(24-21)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 68, group = "ChanceToSuppressSpells", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { }, }, + ["HellscapeDownsideSpellDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage1h1b_"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Spell Damage", statOrder = { 1223 }, level = 25, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Spell Damage", statOrder = { 1223 }, level = 45, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Spell Damage", statOrder = { 1223 }, level = 55, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h1b_"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Spell Damage", statOrder = { 1223 }, level = 25, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h2____"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Spell Damage", statOrder = { 1223 }, level = 45, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Spell Damage", statOrder = { 1223 }, level = 55, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideSpellDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Spell Damage", statOrder = { 1223 }, level = 68, group = "SpellDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["HellscapeDownsideColdDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Cold Damage", statOrder = { 1366 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Cold Damage", statOrder = { 1366 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage1h2b_______"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Cold Damage", statOrder = { 1366 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h0__"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Cold Damage", statOrder = { 1366 }, level = 25, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Cold Damage", statOrder = { 1366 }, level = 45, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h2b_"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Cold Damage", statOrder = { 1366 }, level = 55, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Cold Damage", statOrder = { 1366 }, level = 68, group = "ColdDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideFireDamage1h0_"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage1h1_"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Fire Damage", statOrder = { 1357 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Fire Damage", statOrder = { 1357 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Fire Damage", statOrder = { 1357 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage1h3_"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h1__"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Fire Damage", statOrder = { 1357 }, level = 25, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Fire Damage", statOrder = { 1357 }, level = 45, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Fire Damage", statOrder = { 1357 }, level = 55, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFireDamage2h3____"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Fire Damage", statOrder = { 1357 }, level = 68, group = "FireDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideLightningDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Lightning Damage", statOrder = { 1377 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Lightning Damage", statOrder = { 1377 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage1h2b_"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Lightning Damage", statOrder = { 1377 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Lightning Damage", statOrder = { 1377 }, level = 25, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h2___"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Lightning Damage", statOrder = { 1377 }, level = 45, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Lightning Damage", statOrder = { 1377 }, level = 55, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamage2h3__"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Lightning Damage", statOrder = { 1377 }, level = 68, group = "LightningDamagePercentage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsidePhysicalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage1h1b___"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Global Physical Damage", statOrder = { 1231 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Global Physical Damage", statOrder = { 1231 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Global Physical Damage", statOrder = { 1231 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 333, 333, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h1_"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Global Physical Damage", statOrder = { 1231 }, level = 25, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Global Physical Damage", statOrder = { 1231 }, level = 45, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h2b__"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Global Physical Damage", statOrder = { 1231 }, level = 55, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsidePhysicalDamage2h3______"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Global Physical Damage", statOrder = { 1231 }, level = 68, group = "PhysicalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 333, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsideElementalDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage1h1b__"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage1h2"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Elemental Damage", statOrder = { 1980 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Elemental Damage", statOrder = { 1980 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage1h3__"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h2"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Elemental Damage", statOrder = { 1980 }, level = 45, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Elemental Damage", statOrder = { 1980 }, level = 55, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideElementalDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Elemental Damage", statOrder = { 1980 }, level = 68, group = "ElementalDamagePercent", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["HellscapeDownsideChaosDamage1h0"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage1h1"] = { type = "ScourgeDownside", affix = "", "(42-50)% reduced Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage1h1b"] = { type = "ScourgeDownside", affix = "", "(52-60)% reduced Chaos Damage", statOrder = { 1385 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage1h2_"] = { type = "ScourgeDownside", affix = "", "(62-70)% reduced Chaos Damage", statOrder = { 1385 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage1h2b"] = { type = "ScourgeDownside", affix = "", "(72-80)% reduced Chaos Damage", statOrder = { 1385 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage1h3"] = { type = "ScourgeDownside", affix = "", "(82-90)% reduced Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_dagger", "wand", "sceptre", "dagger", "default", }, weightVal = { 0, 250, 250, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h0"] = { type = "ScourgeDownside", affix = "", "(54-66)% reduced Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h1"] = { type = "ScourgeDownside", affix = "", "(68-80)% reduced Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h1b"] = { type = "ScourgeDownside", affix = "", "(82-94)% reduced Chaos Damage", statOrder = { 1385 }, level = 25, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h2_"] = { type = "ScourgeDownside", affix = "", "(96-108)% reduced Chaos Damage", statOrder = { 1385 }, level = 45, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h2b"] = { type = "ScourgeDownside", affix = "", "(110-122)% reduced Chaos Damage", statOrder = { 1385 }, level = 55, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideChaosDamage2h3"] = { type = "ScourgeDownside", affix = "", "(124-136)% reduced Chaos Damage", statOrder = { 1385 }, level = 68, group = "IncreasedChaosDamage", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideMinionDamage0"] = { type = "ScourgeDownside", affix = "", "Minions deal (18-21)% reduced Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeDownsideMinionDamage1"] = { type = "ScourgeDownside", affix = "", "Minions deal (24-27)% reduced Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeDownsideMinionDamage2"] = { type = "ScourgeDownside", affix = "", "Minions deal (30-33)% reduced Damage", statOrder = { 1973 }, level = 45, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeDownsideMinionDamage3"] = { type = "ScourgeDownside", affix = "", "Minions deal (36-39)% reduced Damage", statOrder = { 1973 }, level = 68, group = "MinionDamage", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "minion" }, }, + ["HellscapeDownsideProjectileDamagePercentage0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideProjectileDamagePercentage1__"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Projectile Damage", statOrder = { 1996 }, level = 45, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideProjectileDamagePercentage2_"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Projectile Damage", statOrder = { 1996 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideProjectileDamagePercentage3_"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Projectile Damage", statOrder = { 1996 }, level = 68, group = "ProjectileDamage", weightKey = { "gloves", "default", }, weightVal = { 250, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideCriticalStrikeChance2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Global Critical Strike Chance", statOrder = { 1459 }, level = 45, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, }, + ["HellscapeDownsideCriticalStrikeChance3_"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Global Critical Strike Chance", statOrder = { 1459 }, level = 68, group = "CriticalStrikeChance", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "critical" }, }, + ["HellscapeDownsideCriticalStrikeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 45, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeDownsideCriticalStrikeMultiplier3__"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 68, group = "CriticalStrikeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeDownsideCriticalStrikeChanceWithBows2"] = { type = "ScourgeDownside", affix = "", "(51-57)% reduced Critical Strike Chance with Bows", statOrder = { 1465 }, level = 45, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeDownsideCriticalStrikeChanceWithBows3"] = { type = "ScourgeDownside", affix = "", "(60-66)% reduced Critical Strike Chance with Bows", statOrder = { 1465 }, level = 68, group = "CriticalStrikeChanceWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "critical" }, }, + ["HellscapeDownsideCriticalStrikeMultiplierWithBows2"] = { type = "ScourgeDownside", affix = "", "-(57-51)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 45, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["HellscapeDownsideCriticalStrikeMultiplierWithBows3"] = { type = "ScourgeDownside", affix = "", "-(66-60)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 68, group = "CriticalStrikeMultiplierWithBows", weightKey = { "quiver", "default", }, weightVal = { 200, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["HellscapeDownsideDamageOverTimeMultiplier2"] = { type = "ScourgeDownside", affix = "", "-(30-24)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 45, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, }, + ["HellscapeDownsideDamageOverTimeMultiplier3"] = { type = "ScourgeDownside", affix = "", "-(39-33)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 68, group = "GlobalDamageOverTimeMultiplier", weightKey = { "amulet", "default", }, weightVal = { 250, 0 }, modTags = { "dot_multi", "damage" }, }, + ["HellscapeDownsideAttackSpeed0"] = { type = "ScourgeDownside", affix = "", "(9-12)% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeDownsideAttackSpeed1__"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeDownsideAttackSpeed2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Attack Speed", statOrder = { 1410 }, level = 45, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeDownsideAttackSpeed3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Attack Speed", statOrder = { 1410 }, level = 68, group = "IncreasedAttackSpeed", weightKey = { "gloves", "quiver", "dex_shield", "str_dex_shield", "dex_int_shield", "default", }, weightVal = { 1000, 500, 1000, 1000, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["HellscapeDownsideCastSpeed0"] = { type = "ScourgeDownside", affix = "", "12% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeDownsideCastSpeed1_"] = { type = "ScourgeDownside", affix = "", "15% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeDownsideCastSpeed2"] = { type = "ScourgeDownside", affix = "", "18% reduced Cast Speed", statOrder = { 1446 }, level = 45, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeDownsideCastSpeed3"] = { type = "ScourgeDownside", affix = "", "21% reduced Cast Speed", statOrder = { 1446 }, level = 68, group = "IncreasedCastSpeed", weightKey = { "amulet", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "speed" }, }, + ["HellscapeDownsideAttackAndCastSpeedMinion2_"] = { type = "ScourgeDownside", affix = "", "Minions have (21-24)% reduced Attack Speed", "Minions have (21-24)% reduced Cast Speed", statOrder = { 2907, 2908 }, level = 45, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeDownsideAttackAndCastSpeedMinion3"] = { type = "ScourgeDownside", affix = "", "Minions have (27-30)% reduced Attack Speed", "Minions have (27-30)% reduced Cast Speed", statOrder = { 2907, 2908 }, level = 68, group = "MinionAttackAndCastSpeed", weightKey = { "gloves", "default", }, weightVal = { 200, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["HellscapeDownsideLifeOnKill3__"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Life on Kill", statOrder = { 1749 }, level = 68, group = "MaximumLifeOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideManaOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Mana on Kill", statOrder = { 1751 }, level = 68, group = "MaximumManaOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideEnergyShieldOnKill3"] = { type = "ScourgeDownside", affix = "", "Lose 3% of Energy Shield on Kill", statOrder = { 1750 }, level = 68, group = "MaximumEnergyShieldOnKillPercent", weightKey = { "body_armour", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeDownsideAccuracyPercent2"] = { type = "ScourgeDownside", affix = "", "(33-42)% reduced Global Accuracy Rating", statOrder = { 1434 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, }, + ["HellscapeDownsideAccuracyPercent3__"] = { type = "ScourgeDownside", affix = "", "(45-51)% reduced Global Accuracy Rating", statOrder = { 1434 }, level = 68, group = "IncreasedAccuracyPercent", weightKey = { "gloves", "quiver", "default", }, weightVal = { 250, 250, 0 }, modTags = { "attack" }, }, + ["HellscapeDownsideLocalIncreaseSocketedGemLevel"] = { type = "ScourgeDownside", affix = "", "-2 to Level of Socketed Gems", statOrder = { 162 }, level = 68, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "gem" }, }, + ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel1h"] = { type = "ScourgeDownside", affix = "", "-2 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_dagger", "wand", "dagger", "focus", "default", }, weightVal = { 0, 500, 500, 500, 0 }, modTags = { "caster", "gem" }, }, + ["HellscapeDownsideGlobalIncreaseSpellSpellSkillGemLevel2h"] = { type = "ScourgeDownside", affix = "", "-4 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 68, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { "attack_staff", "staff", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "gem" }, }, + ["HellscapeDownsideAdditionalRaisedZombie1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 45, group = "MaximumZombieCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, }, + ["HellscapeDownsideAdditionalSkeleton1"] = { type = "ScourgeDownside", affix = "", "-2 to maximum number of Skeletons", statOrder = { 2162 }, level = 45, group = "MaximumSkeletonCount", weightKey = { "boots", "default", }, weightVal = { 200, 0 }, modTags = { "minion" }, }, + ["HellscapeDownsideAreaDamage0___"] = { type = "ScourgeDownside", affix = "", "(24-30)% reduced Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideAreaDamage1"] = { type = "ScourgeDownside", affix = "", "(33-45)% reduced Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideAreaDamage2_"] = { type = "ScourgeDownside", affix = "", "(48-60)% reduced Area Damage", statOrder = { 2035 }, level = 45, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideAreaDamage3"] = { type = "ScourgeDownside", affix = "", "(63-75)% reduced Area Damage", statOrder = { 2035 }, level = 68, group = "AreaDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["HellscapeDownsideRarityOfItemsFound0"] = { type = "ScourgeDownside", affix = "", "(18-21)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, + ["HellscapeDownsideRarityOfItemsFound1_"] = { type = "ScourgeDownside", affix = "", "(24-27)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, + ["HellscapeDownsideRarityOfItemsFound2"] = { type = "ScourgeDownside", affix = "", "(30-33)% reduced Rarity of Items found", statOrder = { 1596 }, level = 45, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, + ["HellscapeDownsideRarityOfItemsFound3"] = { type = "ScourgeDownside", affix = "", "(36-39)% reduced Rarity of Items found", statOrder = { 1596 }, level = 68, group = "ItemFoundRarityIncrease", weightKey = { "ring", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "drop" }, }, + ["HellscapeDownsideLifeRegeneration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Life Regeneration rate", statOrder = { 1577 }, level = 45, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideLifeRegeneration3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Life Regeneration rate", statOrder = { 1577 }, level = 68, group = "LifeRegenerationRate", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1000, 500, 500, 300, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideMovementVelocity0"] = { type = "ScourgeDownside", affix = "", "(6-7)% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeDownsideMovementVelocity1_"] = { type = "ScourgeDownside", affix = "", "(8-9)% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeDownsideMovementVelocity2"] = { type = "ScourgeDownside", affix = "", "(10-11)% reduced Movement Speed", statOrder = { 1798 }, level = 45, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeDownsideMovementVelocity3"] = { type = "ScourgeDownside", affix = "", "(12-13)% reduced Movement Speed", statOrder = { 1798 }, level = 68, group = "MovementVelocity", weightKey = { "boots", "default", }, weightVal = { 1000, 0 }, modTags = { "speed" }, }, + ["HellscapeDownsideMovementSkillsAreDisabled1_"] = { type = "ScourgeDownside", affix = "", "Your Movement Skills are Disabled", statOrder = { 10692 }, level = 68, group = "MovementSkillsAreDisabled", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegeneration0"] = { type = "ScourgeDownside", affix = "", "(16-20)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "(21-25)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegeneration2__"] = { type = "ScourgeDownside", affix = "", "(26-30)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 45, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegeneration2b"] = { type = "ScourgeDownside", affix = "", "(31-35)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 55, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegeneration3"] = { type = "ScourgeDownside", affix = "", "(36-40)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegeneration3b"] = { type = "ScourgeDownside", affix = "", "(46-50)% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 68, group = "ManaRegeneration", weightKey = { "ring", "amulet", "focus", "staff", "sceptre", "wand", "claw", "dagger", "str_int_shield", "dex_int_shield", "default", }, weightVal = { 500, 500, 500, 500, 500, 500, 500, 500, 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRegenFlat0________"] = { type = "ScourgeDownside", affix = "", "Lose (3.3-4.2) Mana per Second", statOrder = { 8171 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat1"] = { type = "ScourgeDownside", affix = "", "Lose (4.6-5.7) Mana per Second", statOrder = { 8171 }, level = 1, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat1b_"] = { type = "ScourgeDownside", affix = "", "Lose (5.8-6.7) Mana per Second", statOrder = { 8171 }, level = 15, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat1c"] = { type = "ScourgeDownside", affix = "", "Lose (7.7-8.3) Mana per Second", statOrder = { 8171 }, level = 25, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat1d"] = { type = "ScourgeDownside", affix = "", "Lose (9.3-10) Mana per Second", statOrder = { 8171 }, level = 35, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat2"] = { type = "ScourgeDownside", affix = "", "Lose (11-11.7) Mana per Second", statOrder = { 8171 }, level = 45, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat2b"] = { type = "ScourgeDownside", affix = "", "Lose (12.7-13.3) Mana per Second", statOrder = { 8171 }, level = 55, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideManaRegenFlat3"] = { type = "ScourgeDownside", affix = "", "Lose (14.3-15) Mana per Second", statOrder = { 8171 }, level = 68, group = "HellscapeLoseManaPerSecond", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotLeechLife1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Life", statOrder = { 2567 }, level = 68, group = "CannotLeechLife", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideCannotLeechMana1_"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Mana", statOrder = { 2568 }, level = 68, group = "CannotLeechMana", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotLeechEnergyShield1"] = { type = "ScourgeDownside", affix = "", "Cannot Leech Energy Shield", statOrder = { 4999 }, level = 68, group = "CannotLeechEnergyShield", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideFlaskChargesGained2_"] = { type = "ScourgeDownside", affix = "", "(22-30)% reduced Flask Charges gained", statOrder = { 2183 }, level = 45, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeDownsideFlaskChargesGained3__"] = { type = "ScourgeDownside", affix = "", "(32-40)% reduced Flask Charges gained", statOrder = { 2183 }, level = 68, group = "BeltIncreasedFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeDownsideFlaskChargesUsed2"] = { type = "ScourgeDownside", affix = "", "(32-40)% increased Flask Charges used", statOrder = { 2184 }, level = 45, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeDownsideFlaskChargesUsed3"] = { type = "ScourgeDownside", affix = "", "(42-50)% increased Flask Charges used", statOrder = { 2184 }, level = 68, group = "BeltReducedFlaskChargesUsed", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "flask" }, }, + ["HellscapeDownsideFlaskLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Life Recovery from Flasks", statOrder = { 2059 }, level = 45, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["HellscapeDownsideFlaskLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Life Recovery from Flasks", statOrder = { 2059 }, level = 68, group = "BeltFlaskLifeRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "life" }, }, + ["HellscapeDownsideFlaskManaRecoveryRate2_"] = { type = "ScourgeDownside", affix = "", "(24-28)% reduced Mana Recovery from Flasks", statOrder = { 2060 }, level = 45, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["HellscapeDownsideFlaskManaRecoveryRate3___"] = { type = "ScourgeDownside", affix = "", "(30-34)% reduced Mana Recovery from Flasks", statOrder = { 2060 }, level = 68, group = "BeltFlaskManaRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { "flask", "resource", "mana" }, }, + ["HellscapeDownsideCannotApplyBleed1"] = { type = "ScourgeDownside", affix = "", "Attacks cannot cause Bleeding", statOrder = { 2489 }, level = 68, group = "CannotCauseBleeding", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotApplyPoison1_"] = { type = "ScourgeDownside", affix = "", "Your Chaos Damage cannot Poison", "Your Physical Damage cannot Poison", statOrder = { 2888, 2890 }, level = 68, group = "CannotCausePoison", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotApplyStun1"] = { type = "ScourgeDownside", affix = "", "Your Hits cannot Stun Enemies", statOrder = { 1855 }, level = 68, group = "CannotStun", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCooldownRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(12-16)% reduced Cooldown Recovery Rate", statOrder = { 5005 }, level = 68, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideLifePercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Life", statOrder = { 1571 }, level = 68, group = "MaximumLifeIncreasePercent", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideManaPercentage3"] = { type = "ScourgeDownside", affix = "", "(15-18)% reduced maximum Mana", statOrder = { 1580 }, level = 68, group = "MaximumManaIncreasePercent", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideCursedWithDespair1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Despair", statOrder = { 10649 }, level = 68, group = "SelfCurseDespair", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithElementalWeakness1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Elemental Weakness", statOrder = { 10650 }, level = 68, group = "SelfCurseElementalWeakness", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithEnfeeble1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Enfeeble", statOrder = { 10651 }, level = 68, group = "SelfCurseEnfeeble", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithTemporalChains1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Temporal Chains", statOrder = { 10654 }, level = 68, group = "SelfCurseTemporalChains", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithVulnerability1____"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Vulnerability", statOrder = { 10655 }, level = 68, group = "SelfCurseVulnerability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithConductivity1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Conductivity", statOrder = { 10648 }, level = 68, group = "SelfCurseConductivity", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithFlammability1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Flammability", statOrder = { 10652 }, level = 68, group = "SelfCurseFlammability", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsideCursedWithFrostbite1"] = { type = "ScourgeDownside", affix = "", "You are Cursed with Frostbite", statOrder = { 10653 }, level = 68, group = "SelfCurseFrostbite", weightKey = { "gloves", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["HellscapeDownsidePhysicalDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Physical Damage taken", statOrder = { 2241 }, level = 45, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, }, + ["HellscapeDownsidePhysicalDamageTaken3____"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Physical Damage taken", statOrder = { 2241 }, level = 68, group = "PhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "physical" }, }, + ["HellscapeDownsideFireDamageTaken2_"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Fire Damage taken", statOrder = { 2242 }, level = 45, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, }, + ["HellscapeDownsideFireDamageTaken3_"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Fire Damage taken", statOrder = { 2242 }, level = 68, group = "FireDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire" }, }, + ["HellscapeDownsideColdDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Cold Damage taken", statOrder = { 3389 }, level = 45, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, }, + ["HellscapeDownsideColdDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Cold Damage taken", statOrder = { 3389 }, level = 68, group = "ColdDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold" }, }, + ["HellscapeDownsideLightningDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Lightning Damage taken", statOrder = { 3388 }, level = 45, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, }, + ["HellscapeDownsideLightningDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Lightning Damage taken", statOrder = { 3388 }, level = 68, group = "LightningDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning" }, }, + ["HellscapeDownsideChaosDamageTaken2"] = { type = "ScourgeDownside", affix = "", "(7-8)% increased Chaos Damage taken", statOrder = { 2243 }, level = 45, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, }, + ["HellscapeDownsideChaosDamageTaken3"] = { type = "ScourgeDownside", affix = "", "(9-10)% increased Chaos Damage taken", statOrder = { 2243 }, level = 68, group = "ChaosDamageTakenPercentage", weightKey = { "helmet", "default", }, weightVal = { 200, 0 }, modTags = { "chaos" }, }, + ["HellscapeDownsideTotemDuration2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Duration", statOrder = { 1778 }, level = 45, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["HellscapeDownsideTotemDuration3_"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Duration", statOrder = { 1778 }, level = 68, group = "TotemDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["HellscapeDownsideTotemLife2"] = { type = "ScourgeDownside", affix = "", "(21-27)% reduced Totem Life", statOrder = { 1774 }, level = 45, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideTotemLife3"] = { type = "ScourgeDownside", affix = "", "(30-36)% reduced Totem Life", statOrder = { 1774 }, level = 68, group = "IncreasedTotemLife", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideBrandDuration2"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (36-42)% reduced Duration", statOrder = { 10038 }, level = 45, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, }, + ["HellscapeDownsideBrandDuration3_"] = { type = "ScourgeDownside", affix = "", "Brand Skills have (45-51)% reduced Duration", statOrder = { 10038 }, level = 68, group = "BrandDuration", weightKey = { "boots", "amulet", "default", }, weightVal = { 250, 250, 0 }, modTags = { "caster" }, }, + ["HellscapeDownsideNoLifeRegeneration1__"] = { type = "ScourgeDownside", affix = "", "You have no Life Regeneration", statOrder = { 2271 }, level = 45, group = "NoLifeRegeneration", weightKey = { "weapon", "quiver", "ring", "amulet", "belt", "shield", "body_armour", "helmet", "boots", "str_armour", "str_int_armour", "str_dex_armour", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 250, 250, 150, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideNoManaRegeneration1"] = { type = "ScourgeDownside", affix = "", "You have no Mana Regeneration", statOrder = { 2272 }, level = 45, group = "NoManaRegeneration", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideNoEnergyShieldRegeneration1"] = { type = "ScourgeDownside", affix = "", "You cannot Regenerate Energy Shield", statOrder = { 5445 }, level = 45, group = "NoEnergyShieldRegen", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeDownsideNoEnergyShieldRecharge1"] = { type = "ScourgeDownside", affix = "", "You cannot Recharge Energy Shield", statOrder = { 5444 }, level = 45, group = "NoEnergyShieldRecharge", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeDownsideLifeRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Life Recovery rate", statOrder = { 1578 }, level = 45, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideLifeRecoveryRate3_"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Life Recovery rate", statOrder = { 1578 }, level = 68, group = "LifeRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["HellscapeDownsideManaRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Mana Recovery rate", statOrder = { 1586 }, level = 45, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideManaRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Mana Recovery rate", statOrder = { 1586 }, level = 68, group = "ManaRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, + ["HellscapeDownsideEnergyShieldRecoveryRate2"] = { type = "ScourgeDownside", affix = "", "(10-12)% reduced Energy Shield Recovery rate", statOrder = { 1568 }, level = 45, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeDownsideEnergyShieldRecoveryRate3"] = { type = "ScourgeDownside", affix = "", "(14-16)% reduced Energy Shield Recovery rate", statOrder = { 1568 }, level = 68, group = "EnergyShieldRecoveryRate", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes2_"] = { type = "ScourgeDownside", affix = "", "You take (22-30)% increased Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 45, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeDownsideExtraDamageTakenFromCriticalStrikes3"] = { type = "ScourgeDownside", affix = "", "You take (32-40)% increased Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 68, group = "ReducedExtraDamageFromCrits", weightKey = { "str_shield", "str_dex_shield", "str_int_shield", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { "damage", "critical" }, }, + ["HellscapeDownsideDamageIsUnlucky1___"] = { type = "ScourgeDownside", affix = "", "Damage with Hits is Unlucky", statOrder = { 5019 }, level = 45, group = "DamageIsUnlucky", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideColdPenetration1h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 2983 }, level = 45, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 14% higher than actual value", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 16% higher than actual value", statOrder = { 2983 }, level = 45, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideColdPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Cold Resistance as 20% higher than actual value", statOrder = { 2983 }, level = 68, group = "ColdResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideFirePenetration1h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 10% higher than actual value", statOrder = { 2981 }, level = 45, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFirePenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 14% higher than actual value", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFirePenetration2h2_"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 16% higher than actual value", statOrder = { 2981 }, level = 45, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideFirePenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Fire Resistance as 20% higher than actual value", statOrder = { 2981 }, level = 68, group = "FireResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HellscapeDownsideLightningPenetration1h2__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 10% higher than actual value", statOrder = { 2984 }, level = 45, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningPenetration1h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 14% higher than actual value", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 16% higher than actual value", statOrder = { 2984 }, level = 45, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideLightningPenetration2h3"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Lightning Resistance as 20% higher than actual value", statOrder = { 2984 }, level = 68, group = "LightningResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HellscapeDownsideChaosPenetration1h2___"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 10% higher than actual value", statOrder = { 9875 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, }, + ["HellscapeDownsideChaosPenetration1h3__"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 14% higher than actual value", statOrder = { 9875 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "attack_dagger", "amulet", "sceptre", "dagger", "wand", "default", }, weightVal = { 0, 200, 200, 200, 200, 0 }, modTags = { }, }, + ["HellscapeDownsideChaosPenetration2h2"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 16% higher than actual value", statOrder = { 9875 }, level = 45, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideChaosPenetration2h3_____"] = { type = "ScourgeDownside", affix = "", "Your Hits treat Chaos Resistance as 20% higher than actual value", statOrder = { 9875 }, level = 68, group = "ChaosResistancePenetration", weightKey = { "staff", "default", }, weightVal = { 200, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotCurse"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Curses", statOrder = { 10660 }, level = 45, group = "CannotCurse", weightKey = { "gloves", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotApplyAilments1___"] = { type = "ScourgeDownside", affix = "", "Cannot inflict Elemental Ailments", statOrder = { 1862 }, level = 45, group = "CannotApplyFireAilments", weightKey = { "sceptre", "wand", "staff", "default", }, weightVal = { 500, 500, 500, 0 }, modTags = { }, }, + ["HellscapeDownsideAdditionalTraps1"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Traps placed at a time", statOrder = { 2255 }, level = 45, group = "TrapsAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["HellscapeDownsideAdditionalMines1_"] = { type = "ScourgeDownside", affix = "", "Can have 5 fewer Remote Mines placed at a time", statOrder = { 2256 }, level = 45, group = "AdditionalRemoteMinesAllowed", weightKey = { "boots", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["HellscapeDownsideEffectOfNonDamagingAilments2"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 45, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeDownsideEffectOfNonDamagingAilments3"] = { type = "ScourgeDownside", affix = "", "(50-60)% reduced Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 68, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "default", }, weightVal = { 500, 0 }, modTags = { "ailment" }, }, + ["HellscapeDownsideNearbyEnemiesTakeReducedPhysicalDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies take 9% reduced Physical Damage", statOrder = { 7918 }, level = 68, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsideNearbyEnemiesTakeReducedFireDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Fire Resistance", statOrder = { 7914 }, level = 68, group = "NearbyEnemyFireDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["HellscapeDownsideNearbyEnemiesTakeReducedColdDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Cold Resistance", statOrder = { 7912 }, level = 68, group = "NearbyEnemyColdDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["HellscapeDownsideNearbyEnemiesTakeReducedLightningDamage3"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Lightning Resistance", statOrder = { 7916 }, level = 68, group = "NearbyEnemyLightningDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["HellscapeDownsideNearbyEnemiesTakeReducedChaosDamage3_"] = { type = "ScourgeDownside", affix = "", "Nearby Enemies have +9% to Chaos Resistance", statOrder = { 7911 }, level = 68, group = "NearbyEnemyChaosDamageResistance", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["HellscapeDownsideCurseEffect2_"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced Effect of your Curses", statOrder = { 2596 }, level = 45, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeDownsideCurseEffect3__"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced Effect of your Curses", statOrder = { 2596 }, level = 68, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeDownsideAuraEffectOfNonCurseSkills2"] = { type = "ScourgeDownside", affix = "", "(21-24)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 45, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, + ["HellscapeDownsideAuraEffectOfNonCurseSkills3"] = { type = "ScourgeDownside", affix = "", "(27-30)% reduced effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 68, group = "AuraEffect", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "aura" }, }, + ["HellscapeDownsideAdditionalCurse1__"] = { type = "ScourgeDownside", affix = "", "You can apply one fewer Curse", statOrder = { 2168 }, level = 68, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "curse" }, }, + ["HellscapeDownsideMaximumEnduranceCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge" }, }, + ["HellscapeDownsideMaximumFrenzyCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "frenzy_charge" }, }, + ["HellscapeDownsideMaximumPowerCharges1"] = { type = "ScourgeDownside", affix = "", "-1 to Maximum Power Charges", statOrder = { 1814 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "power_charge" }, }, + ["HellscapeDownsideDealNoPhysicalDamage___"] = { type = "ScourgeDownside", affix = "", "Deal no Physical Damage", statOrder = { 2790 }, level = 1, group = "DealNoPhysicalDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HellscapeDownsideDealNoFireDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Fire Damage", statOrder = { 5008 }, level = 1, group = "DealNoFireDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, }, + ["HellscapeDownsideDealNoColdDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Cold Damage", statOrder = { 2792 }, level = 1, group = "DealNoColdDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HellscapeDownsideDealNoLightningDamage"] = { type = "ScourgeDownside", affix = "", "Deal no Lightning Damage", statOrder = { 5009 }, level = 1, group = "DealNoLightningDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { }, }, + ["HellscapeDownsideDealNoChaosDamage_"] = { type = "ScourgeDownside", affix = "", "Deal no Chaos Damage", statOrder = { 5007 }, level = 1, group = "DealNoChaosDamage", weightKey = { "weapon", "quiver", "default", }, weightVal = { 500, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HellscapeDownsideCannotGainCharges"] = { type = "ScourgeDownside", affix = "", "Cannot gain Charges", statOrder = { 5432 }, level = 68, group = "CannotGainCharges", weightKey = { "ring", "default", }, weightVal = { 500, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["HellscapeDownsideCriticalStrikesDealNoExtraDamage"] = { type = "ScourgeDownside", affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2678 }, level = 45, group = "CriticalStrikesDealNoExtraDamage", weightKey = { "amulet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideDamageTakenOnFullLife2"] = { type = "ScourgeDownside", affix = "", "12% increased Damage taken while on Full Life", statOrder = { 6119 }, level = 45, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideDamageTakenOnFullLife3_"] = { type = "ScourgeDownside", affix = "", "20% increased Damage taken while on Full Life", statOrder = { 6119 }, level = 68, group = "DamageTakenOnFullLife", weightKey = { "helmet", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideFishingLineStrength"] = { type = "ScourgeDownside", affix = "", "(30-40)% reduced Fishing Line Strength", statOrder = { 2844 }, level = 1, group = "FishingLineStrength", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideFishingPoolConsumption"] = { type = "ScourgeDownside", affix = "", "(50-100)% increased Fishing Pool Consumption", statOrder = { 2845 }, level = 45, group = "FishingPoolConsumption", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["HellscapeDownsideFishRotWhenCaught"] = { type = "ScourgeDownside", affix = "", "Fish Rot upon being Caught", statOrder = { 6598 }, level = 1, group = "FishRotWhenCaught", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideFishingReelStability"] = { type = "ScourgeDownside", affix = "", "(30-60)% reduced Reeling Stability", statOrder = { 6611 }, level = 1, group = "FishingReelStability", weightKey = { "fishing_rod", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["HellscapeDownsideCannotFishFromWater_______"] = { type = "ScourgeDownside", affix = "", "Cannot Fish while standing in Water", statOrder = { 5431 }, level = 68, group = "CannotFishFromWater", weightKey = { "fishing_rod", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["IncreasedAttackSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Attack Speed", statOrder = { 1410 }, level = 75, group = "IncreasedAttackSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack", "speed" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, + ["AttackCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Critical Strike Chance for Attacks", statOrder = { 4844 }, level = 75, group = "AttackCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "attack", "critical" }, }, + ["AddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (3-5) to (7-9) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (4-5) to (8-9) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (4-6) to (9-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-6) to (10-11) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-7) to (12-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (6-9) to (13-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (7-9) to (14-17) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (8-10) to (16-18) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-12) to (18-21) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Physical Damage to Attacks", statOrder = { 1266 }, level = 75, group = "PhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-8) to (13-15) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-16) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (19-22) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (23-26) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (25-29) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-42) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-49) Fire Damage to Attacks", statOrder = { 1360 }, level = 75, group = "FireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (6-8) to (12-15) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (7-9) to (13-16) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-10) to (15-18) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-11) to (17-19) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-12) to (18-22) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (20-24) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (11-15) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-16) to (24-29) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (28-33) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-21) to (32-38) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-44) Cold Damage to Attacks", statOrder = { 1369 }, level = 75, group = "ColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (1-2) to (22-24) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (1-3) to (24-26) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (1-3) to (27-28) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (32-35) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (36-38) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (39-42) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-4) to (43-47) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-5) to (48-51) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (2-6) to (55-59) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (63-68) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Attacks", statOrder = { 1380 }, level = 75, group = "LightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (5-6) to (10-11) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (5-7) to (11-12) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (6-7) to (12-14) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (6-9) to (13-15) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (7-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (8-10) to (16-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (9-11) to (17-20) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-13) to (19-22) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (10-14) to (21-24) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (12-15) to (24-28) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-20) to (32-37) Chaos Damage to Attacks", statOrder = { 1387 }, level = 75, group = "ChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 75, group = "FireDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 75, group = "ColdDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 75, group = "PhysicalDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(5-7)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-10)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(11-13)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(17-18)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(19-20)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 600, 600, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-16)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(17-19)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-22)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 300, 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-25)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-31)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-34)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ChaosDamageOverTimeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(37-38)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 75, group = "ChaosDamageOverTimeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 120, 120, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["HeraldBonusAshEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ash has (15-17)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ash has (18-20)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ash has (21-23)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ash has (27-28)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ash has (29-30)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (24-26)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (27-29)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (30-32)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (36-37)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ash has (38-39)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (33-35)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (36-38)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (39-41)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (42-44)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (45-46)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAshEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ash has (47-48)% increased Buff Effect", statOrder = { 7111 }, level = 75, group = "HeraldBonusAshEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Ice has (15-17)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Ice has (18-20)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Ice has (21-23)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Ice has (27-28)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Ice has (29-30)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (24-26)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (27-29)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (30-32)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (36-37)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Ice has (38-39)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (33-35)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (36-38)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (39-41)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (42-44)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (45-46)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Ice has (47-48)% increased Buff Effect", statOrder = { 7115 }, level = 75, group = "HeraldBonusIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Thunder has (15-17)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Thunder has (18-20)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Thunder has (21-23)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Thunder has (27-28)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Thunder has (29-30)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (24-26)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (27-29)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (30-32)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (36-37)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Thunder has (38-39)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (33-35)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (36-38)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (39-41)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (42-44)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (45-46)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusThunderEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Thunder has (47-48)% increased Buff Effect", statOrder = { 7125 }, level = 75, group = "HeraldBonusThunderEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Purity has (15-17)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Purity has (18-20)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Purity has (21-23)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Purity has (27-28)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Purity has (29-30)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (24-26)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (27-29)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (30-32)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (36-37)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Purity has (38-39)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (33-35)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (36-38)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (39-41)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (42-44)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (45-46)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusPurityEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Purity has (47-48)% increased Buff Effect", statOrder = { 7119 }, level = 75, group = "HeraldBonusPurityEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Herald of Agony has (15-17)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Herald of Agony has (18-20)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Herald of Agony has (21-23)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Herald of Agony has (27-28)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Herald of Agony has (29-30)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (24-26)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (27-29)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (30-32)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (36-37)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Herald of Agony has (38-39)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (33-35)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (36-38)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (39-41)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (42-44)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (45-46)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HeraldBonusAgonyEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Herald of Agony has (47-48)% increased Buff Effect", statOrder = { 7107 }, level = 75, group = "HeraldBonusAgonyEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IgniteProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.3 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.4 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlif", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.6 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.7 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.8 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 1.9 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.1 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.2 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict spread to other Enemies within 2.3 metres", statOrder = { 2218 }, level = 75, group = "GlobalIgniteProlifPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FreezeProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.3 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.4 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FreezeProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.6 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.7 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.8 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 1.9 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.1 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.2 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Freezes you inflict spread to other Enemies within 2.3 metres", statOrder = { 2221 }, level = 75, group = "FreezeProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ShockProliferationEldritchImplicit1"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicit2"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.3 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicit3"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.4 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicit4"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicit5"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicit6"] = { type = "Exarch", affix = "", "Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferation", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.6 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.7 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.8 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 1.9 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.1 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.2 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Shocks you inflict spread to other Enemies within 2.3 metres", statOrder = { 2222 }, level = 75, group = "ShockProliferationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["StunThresholdReductionEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReduction", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["StunThresholdReductionEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 75, group = "StunThresholdReductionPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["MinionDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions deal (14-16)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions deal (17-19)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions deal (20-22)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions deal (23-25)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions deal (26-27)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions deal (28-29)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (26-28)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (29-31)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (32-34)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (35-37)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (38-39)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions deal (40-41)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (38-40)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (41-43)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (44-46)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (47-49)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (50-51)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, + ["MinionDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions deal (52-53)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "minion" }, }, + ["TrapThrowSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["TrapThrowSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Trap Throwing Speed", statOrder = { 1927 }, level = 75, group = "TrapThrowSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["MineLayingSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Mine Throwing Speed", statOrder = { 1928 }, level = 75, group = "MineLayingSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["ExtinguishOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["ExtinguishOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% chance to Extinguish Enemies on Hit", statOrder = { 6529 }, level = 75, group = "ExtinguishOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["DamagePerFrenzyChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyCharge", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 75, group = "DamagePerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit1"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit2"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit3"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit4"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 1 additional nearby Enemy", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit5"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicit6"] = { type = "Exarch", affix = "", "Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTarget", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 2 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 3 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, + ["StrikeSkillsAdditionalTargetEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Non-Vaal Strike Skills target 4 additional nearby Enemies", statOrder = { 9184 }, level = 75, group = "StrikeSkillsAdditionalTargetPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicit", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitUniquePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnHitImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 1 Rage on Hit with Attacks", statOrder = { 6889 }, level = 75, group = "RageOnHitImplicitPinnaclePresence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain 1 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 2 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 3 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, + ["RageOnAttackHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 4 Rage on Attack Hit", statOrder = { 6838 }, level = 75, group = "RageOnAttackHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { "attack" }, }, + ["ChanceToIntimidateOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToIntimidateOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidate Enemies for 4 seconds on Hit", statOrder = { 5715 }, level = 75, group = "ChanceToIntimidateOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit1"] = { type = "Exarch", affix = "", "15% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit2"] = { type = "Exarch", affix = "", "20% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit3"] = { type = "Exarch", affix = "", "25% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit4"] = { type = "Exarch", affix = "", "30% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit5"] = { type = "Exarch", affix = "", "35% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicit6"] = { type = "Exarch", affix = "", "40% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToUnnerveOnHitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Unnerve Enemies for 4 seconds on Hit", statOrder = { 5725 }, level = 75, group = "ChanceToUnnerveOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit1"] = { type = "Eater", affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit2"] = { type = "Eater", affix = "", "+6% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit3"] = { type = "Eater", affix = "", "+7% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit4"] = { type = "Eater", affix = "", "+8% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit5"] = { type = "Eater", affix = "", "+9% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicit6"] = { type = "Eater", affix = "", "+10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpells", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +7% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +8% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +9% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +10% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +11% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +12% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +13% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +14% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, + ["ChanceToSuppressSpellsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +15% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 75, group = "ChanceToSuppressSpellsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingFromHelmetBoots", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["EvasionRatingHelmetBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Evasion Rating from Equipped Helmet and Boots", statOrder = { 6485 }, level = 75, group = "EvasionRatingHelmetBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["FireExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -11% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -12% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -13% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -14% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -15% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -16% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -17% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -18% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -19% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -20% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -21% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, + ["FireExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Fire Exposure on Hit, applying -22% to Fire Resistance", statOrder = { 6579 }, level = 75, group = "FireExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire" }, }, + ["ColdExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -11% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -12% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -13% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -14% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -15% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -16% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -17% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -18% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -19% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -20% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -21% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, + ["ColdExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Cold Exposure on Hit, applying -22% to Cold Resistance", statOrder = { 5823 }, level = 75, group = "ColdExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold" }, }, + ["LightningExposureEffectOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -11% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -12% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -13% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -14% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -15% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -16% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -17% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -18% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -19% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -20% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -21% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, + ["LightningExposureEffectOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Inflict Lightning Exposure on Hit, applying -22% to Lightning Resistance", statOrder = { 7458 }, level = 75, group = "LightningExposureEffectOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning" }, }, + ["ArmourPenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Hits have (30-34)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Hits have (35-38)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Hits have (39-42)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Hits have (49-50)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmour", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (43-45)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (46-48)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (49-52)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (53-56)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (57-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (61-63)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (64-68)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (69-73)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, + ["ArmourPenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hits have (74-78)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 75, group = "ChanceToIgnoreEnemyArmourPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "physical" }, }, + ["WitherExpireSpeedEldritchImplicit1"] = { type = "Eater", affix = "", "Withered you Inflict expires (10-12)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicit2"] = { type = "Eater", affix = "", "Withered you Inflict expires (13-15)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicit3"] = { type = "Eater", affix = "", "Withered you Inflict expires (16-18)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicit4"] = { type = "Eater", affix = "", "Withered you Inflict expires (19-20)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicit5"] = { type = "Eater", affix = "", "Withered you Inflict expires (21-22)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicit6"] = { type = "Eater", affix = "", "Withered you Inflict expires (23-24)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (19-21)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (22-24)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (25-27)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (28-29)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (30-31)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Withered you Inflict expires (32-33)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (28-30)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (31-33)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (34-36)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (37-39)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (40-42)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, + ["WitherExpireSpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Withered you Inflict expires (43-45)% slower", statOrder = { 10623 }, level = 75, group = "WitherExpireSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos" }, }, + ["ConvertPhysicalToFireEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ConvertPhysicalToFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 75, group = "ConvertPhysicalToFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ConvertPhysicalToColdEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 75, group = "ConvertPhysicalToColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToLightningEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 75, group = "ConvertPhysicalToLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToChaosEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicit2"] = { type = "Eater", affix = "", "15% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicit3"] = { type = "Eater", affix = "", "20% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicit4"] = { type = "Eater", affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicit5"] = { type = "Eater", affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicit6"] = { type = "Eater", affix = "", "35% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "PhysicalDamageConvertToChaosImplicit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 55% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 60% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicalToChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 65% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 75, group = "ConvertPhysicalToChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["FireDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["FireDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Fire Damage Leeched as Life", statOrder = { 1672 }, level = 75, group = "FireDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ColdDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Cold Damage Leeched as Life", statOrder = { 1677 }, level = 75, group = "ColdDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["LightningDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Lightning Damage Leeched as Life", statOrder = { 1681 }, level = 75, group = "LightningDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Physical Damage Leeched as Life", statOrder = { 1668 }, level = 75, group = "PhysicalDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit1"] = { type = "Eater", affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit2"] = { type = "Eater", affix = "", "0.3% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit3"] = { type = "Eater", affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit4"] = { type = "Eater", affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit5"] = { type = "Eater", affix = "", "0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicit6"] = { type = "Eater", affix = "", "0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechHundredThousand", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.4% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.5% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.6% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.7% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.8% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 0.9% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1.1% of Chaos Damage Leeched as Life", statOrder = { 1684 }, level = 75, group = "ChaosDamageLifeLeechPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STR", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100STREldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100STREldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Strength", statOrder = { 6054 }, level = 75, group = "DamagePer100STRPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEX", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100DEXEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Dexterity", statOrder = { 6052 }, level = 75, group = "DamagePer100DEXPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicit1"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicit2"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicit3"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicit4"] = { type = "Eater", affix = "", "3% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicit5"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicit6"] = { type = "Eater", affix = "", "4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INT", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["DamagePer100INTEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 4% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 5% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["DamagePer100INTEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per 100 Intelligence", statOrder = { 6053 }, level = 75, group = "DamagePer100INTPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "damage" }, }, + ["BlindEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BlindEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Blind Effect", statOrder = { 5219 }, level = 75, group = "BlindEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ExertedAttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Exerted Attacks deal (20-22)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Exerted Attacks deal (23-25)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Exerted Attacks deal (32-33)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Exerted Attacks deal (34-35)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (26-28)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (29-31)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (38-39)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Exerted Attacks deal (40-41)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (32-34)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (35-37)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (38-40)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (41-43)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (44-45)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, + ["ExertedAttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Exerted Attacks deal (46-47)% increased Damage", statOrder = { 6356 }, level = 75, group = "ExertedAttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "damage", "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 15% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 20% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 25% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 30% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 35% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 40% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 45% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 50% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 55% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 60% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 65% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 70% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 75% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 80% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 85% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 90% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 95% chance to Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, + ["GlobalMaimOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks always Maim on Hit", statOrder = { 8154 }, level = 75, group = "GlobalMaimOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "attack" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit1"] = { type = "Eater", affix = "", "15% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit2"] = { type = "Eater", affix = "", "20% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit3"] = { type = "Eater", affix = "", "25% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit4"] = { type = "Eater", affix = "", "30% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit5"] = { type = "Eater", affix = "", "35% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicit6"] = { type = "Eater", affix = "", "40% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 600, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 45% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 50% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 55% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, + ["SpellsHinderOnHitChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 75, group = "SpellsHinderOnHitChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 120, 0 }, modTags = { "caster" }, }, + ["IncreasedAccuracyPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(9-10)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(11-12)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(13-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(15-16)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercent", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (17-18)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 75, group = "IncreasedAccuracyPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["MarkEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffect", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "caster", "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, + ["MarkEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of your Marks", statOrder = { 2598 }, level = 75, group = "MarkEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 80, 0 }, modTags = { "curse" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit1"] = { type = "Eater", affix = "", "+(43-45) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit2"] = { type = "Eater", affix = "", "+(46-48) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit3"] = { type = "Eater", affix = "", "+(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit4"] = { type = "Eater", affix = "", "+(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit5"] = { type = "Eater", affix = "", "+(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicit6"] = { type = "Eater", affix = "", "+(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "IncreasedAccuracyPerFrenzy", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(49-51) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(52-54) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(55-57) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(58-60) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(61-63) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(64-66) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(67-69) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["FlatAccuracyPerFrenzyChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(70-72) to Accuracy Rating per Frenzy Charge", statOrder = { 4517 }, level = 75, group = "FlatAccuracyPerFrenzyChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "attack" }, }, + ["AdditionalPierceEldritchImplicit1"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicit2"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicit3"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicit4"] = { type = "Eater", affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicit5"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicit6"] = { type = "Eater", affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierce", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPierceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 3 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AdditionalPierceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Projectiles Pierce 4 additional Targets", statOrder = { 1790 }, level = 75, group = "AdditionalPiercePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["PoisonOnHitEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHit", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonOnHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Poison on Hit", statOrder = { 3173 }, level = 75, group = "PoisonOnHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToBleedEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks have 5% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks have 10% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks have 20% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 20% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 30% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 35% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 40% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 45% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks have 50% chance to cause Bleeding", statOrder = { 2489 }, level = 75, group = "ChanceToBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleed", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 400, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 200, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAggravateBleedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 75, group = "ChanceToAggravateBleedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 100, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AttackImpaleChanceEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChance", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 700, 0 }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 350, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, + ["AttackImpaleChanceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 75, group = "AttackImpaleChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "gloves", "default", }, weightVal = { 0, 140, 0 }, modTags = { "attack" }, }, + ["IncreasedCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "8% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "9% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "11% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "12% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "13% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Cast Speed", statOrder = { 1446 }, level = 75, group = "IncreasedCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster", "speed" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit1"] = { type = "Exarch", affix = "", "(28-30)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit2"] = { type = "Exarch", affix = "", "(31-33)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit3"] = { type = "Exarch", affix = "", "(34-36)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit4"] = { type = "Exarch", affix = "", "(37-39)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit5"] = { type = "Exarch", affix = "", "(40-42)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicit6"] = { type = "Exarch", affix = "", "(43-45)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChance", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 75, group = "SpellCriticalStrikeChancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster", "critical" }, }, + ["SpellAddedFireDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-22) to (34-40) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-24) to (38-43) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (27-35) to (54-63) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (31-40) to (63-72) Fire Damage to Spells", statOrder = { 1404 }, level = 75, group = "SpellAddedFireDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (9-11) to (17-20) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (10-12) to (19-22) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-24) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-27) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-30) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (28-32) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (30-36) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (17-21) to (34-39) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-24) to (37-43) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (21-27) to (42-50) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (24-32) to (48-57) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (28-36) to (56-65) Cold Damage to Spells", statOrder = { 1405 }, level = 75, group = "SpellAddedColdDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (2-4) to (34-36) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (2-4) to (37-40) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (2-4) to (41-44) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (45-48) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-5) to (50-53) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (2-6) to (54-59) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-6) to (60-64) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-7) to (66-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (3-8) to (72-78) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-8) to (83-90) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (4-10) to (96-103) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (5-11) to (110-119) Lightning Damage to Spells", statOrder = { 1406 }, level = 75, group = "SpellAddedLightningDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (8-10) to (15-18) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-11) to (17-20) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-12) to (19-22) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (21-24) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (23-26) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (25-29) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-18) to (28-32) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-19) to (31-35) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (16-22) to (33-39) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (19-25) to (39-44) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (22-28) to (45-51) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedPhysicalDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (25-33) to (51-59) Physical Damage to Spells", statOrder = { 1403 }, level = 75, group = "SpellAddedPhysicalDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "Adds (7-10) to (15-17) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "Adds (8-10) to (16-19) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "Adds (9-11) to (18-20) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-13) to (20-23) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (10-14) to (21-25) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (11-15) to (24-27) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (13-16) to (26-30) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (14-18) to (29-33) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (15-20) to (32-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (18-23) to (36-41) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (20-27) to (41-48) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Adds (23-31) to (47-55) Chaos Damage to Spells", statOrder = { 1407 }, level = 75, group = "SpellAddedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Fire Damage taken Recouped as Life", statOrder = { 6571 }, level = 75, group = "FireDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Cold Damage taken Recouped as Life", statOrder = { 5818 }, level = 75, group = "ColdDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Lightning Damage taken Recouped as Life", statOrder = { 7451 }, level = 75, group = "LightningDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% of Physical Damage taken Recouped as Life", statOrder = { 9663 }, level = 75, group = "PhysicalDamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "resource", "life", "physical" }, }, + ["CurseEffectFlammabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFlammabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Flammability Curse Effect", statOrder = { 4013 }, level = 75, group = "CurseEffectFlammabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbiteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectFrostbiteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Frostbite Curse Effect", statOrder = { 4014 }, level = 75, group = "CurseEffectFrostbitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivity", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectConductivityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Conductivity Curse Effect", statOrder = { 4010 }, level = 75, group = "CurseEffectConductivityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerability", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectVulnerabilityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Vulnerability Curse Effect", statOrder = { 4016 }, level = 75, group = "CurseEffectVulnerabilityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeakness", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectElementalWeaknessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Elemental Weakness Curse Effect", statOrder = { 4011 }, level = 75, group = "CurseEffectElementalWeaknessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespair", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectDespairEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Despair Curse Effect", statOrder = { 6168 }, level = 75, group = "CurseEffectDespairPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChains", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectTemporalChainsEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Temporal Chains Curse Effect", statOrder = { 4008 }, level = 75, group = "CurseEffectTemporalChainsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeble", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeebleUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectEnfeebleEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Enfeeble Curse Effect", statOrder = { 4012 }, level = 75, group = "CurseEffectEnfeeblePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishment", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["CurseEffectPunishmentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Punishment Curse Effect", statOrder = { 4015 }, level = 75, group = "CurseEffectPunishmentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { "curse" }, }, + ["ReducedAttackManaCostEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCost", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["ReducedAttackManaCostEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% reduced Mana Cost of Attacks", statOrder = { 4868 }, level = 75, group = "ReducedAttackManaCostPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["IncreasedDamagePerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Power Charge", statOrder = { 6066 }, level = 75, group = "IncreasedDamagePerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["MinionLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (14-16)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (17-19)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (20-22)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (23-25)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (26-27)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (28-29)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLife", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (20-22)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (23-25)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (32-33)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (34-35)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (26-28)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (29-31)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (32-34)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (35-37)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (38-39)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (40-41)% increased maximum Life", statOrder = { 1766 }, level = 75, group = "MinionLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life", "minion" }, }, + ["MinionRunSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "Minions have (11-12)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "Minions have (13-14)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "Minions have (15-16)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "Minions have (17-18)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "Minions have (19-20)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "Minions have (21-22)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeed", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (13-15)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (16-18)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (25-26)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Minions have (27-28)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (19-21)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (22-24)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (25-27)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (28-30)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (31-32)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Minions have (33-34)% increased Movement Speed", statOrder = { 1769 }, level = 75, group = "MinionRunSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "speed", "minion" }, }, + ["AreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(7-8)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(9-10)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(11-12)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(13-14)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(15-16)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(17-18)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (13-14)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (15-16)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (19-20)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (21-22)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Area of Effect", statOrder = { 1880 }, level = 75, group = "AreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["EnergyShieldRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "21% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "22% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "23% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "24% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "25% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "26% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 24% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 26% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 27% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 28% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 29% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 31% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 32% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 75, group = "EnergyShieldRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBoots", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldFromGlovesBootsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Maximum Energy Shield from Equipped Gloves and Boots", statOrder = { 6430 }, level = 75, group = "EnergyShieldFromGlovesBootsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["FireResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 75, group = "FireResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Cold Resistance", statOrder = { 2983 }, level = 75, group = "ColdResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["LightningResistancePenetrationEldritchImplicit1"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicit2"] = { type = "Eater", affix = "", "Damage Penetrates 4% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicit3"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicit4"] = { type = "Eater", affix = "", "Damage Penetrates 5% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicit5"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicit6"] = { type = "Eater", affix = "", "Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 6% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 7% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 8% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 9% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningResistancePenetrationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Damage Penetrates 10% Lightning Resistance", statOrder = { 2984 }, level = 75, group = "LightningResistancePenetrationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["IncreasedAilmentDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(13-14)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(15-16)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(17-18)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(19-20)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(21-22)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(23-24)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 75, group = "IncreasedAilmentDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-22)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-25)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-33)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-35)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-28)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-31)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (32-34)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-37)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-39)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (40-41)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 75, group = "IncreasedAilmentEffectOnEnemiesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { "ailment" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit1"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit2"] = { type = "Eater", affix = "", "6% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit3"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit4"] = { type = "Eater", affix = "", "7% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit5"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicit6"] = { type = "Eater", affix = "", "8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUber", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFireBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 75, group = "PhysicalDamageTakenAsFireBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsColdBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 75, group = "PhysicalDamageTakenAsColdBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsLightningBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 75, group = "PhysicalDamageTakenAsLightningBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit1"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit2"] = { type = "Eater", affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit3"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit4"] = { type = "Eater", affix = "", "11% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit5"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicit6"] = { type = "Eater", affix = "", "12% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUber", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 16% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageTakenAsChaosBodyUberEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 75, group = "PhysicalDamageTakenAsChaosBodyUberPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "physical", "chaos" }, }, + ["ManaReservationEfficiencyEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiency", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 75, group = "ManaReservationEfficiencyPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resource", "mana" }, }, + ["ChanceToIgniteEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnite", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Ignite", statOrder = { 2026 }, level = 75, group = "ChanceToIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreeze", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Freeze", statOrder = { 2029 }, level = 75, group = "ChanceToFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToShockEldritchImplicit1"] = { type = "Eater", affix = "", "5% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicit2"] = { type = "Eater", affix = "", "10% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicit3"] = { type = "Eater", affix = "", "15% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicit4"] = { type = "Eater", affix = "", "20% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicit5"] = { type = "Eater", affix = "", "25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicit6"] = { type = "Eater", affix = "", "30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShock", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 20% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 35% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 40% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 25% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 30% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 35% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 40% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 45% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 50% chance to Shock", statOrder = { 2033 }, level = 75, group = "ChanceToShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedIgniteDurationOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 75, group = "ReducedIgniteDurationOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDuration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 75, group = "ReducedFreezeDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelf", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReducedShockEffectOnSelfEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 75, group = "ReducedShockEffectOnSelfPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ManaRegenerationEldritchImplicit1"] = { type = "Eater", affix = "", "(19-21)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicit2"] = { type = "Eater", affix = "", "(22-24)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicit3"] = { type = "Eater", affix = "", "(25-27)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicit4"] = { type = "Eater", affix = "", "(28-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicit5"] = { type = "Eater", affix = "", "(31-33)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicit6"] = { type = "Eater", affix = "", "(34-36)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegeneration", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 75, group = "ManaRegenerationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["EnemyLifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (65-67)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (68-70)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (71-73)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (74-76)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (77-79)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (80-82)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (83-85)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (86-88)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (89-91)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (92-94)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (95-97)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["EnemyLifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enemies you've Hit Recently have (98-100)% reduced Life Regeneration rate", statOrder = { 6421 }, level = 75, group = "EnemyLifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit2"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit3"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit4"] = { type = "Eater", affix = "", "5% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit5"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicit6"] = { type = "Eater", affix = "", "6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 6% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 75, group = "IncreasedManaRegenerationPerPowerChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "mana" }, }, + ["AttackDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, + ["AttackDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Attack Damage", statOrder = { 1198 }, level = 75, group = "AttackDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "damage", "attack" }, }, + ["SpellDamageEldritchImplicit1"] = { type = "Eater", affix = "", "(14-16)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicit2"] = { type = "Eater", affix = "", "(17-19)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicit3"] = { type = "Eater", affix = "", "(20-22)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicit4"] = { type = "Eater", affix = "", "(23-25)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicit5"] = { type = "Eater", affix = "", "(26-27)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicit6"] = { type = "Eater", affix = "", "(28-29)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamage", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (26-28)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-31)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (32-34)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (35-37)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (38-39)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (40-41)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (38-40)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-43)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (44-46)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (47-49)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (50-51)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-53)% increased Spell Damage", statOrder = { 1223 }, level = 75, group = "SpellDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["ArcaneSurgeEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffect", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcaneSurgeEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 75, group = "ArcaneSurgeEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "helmet", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["MovementVelocityEldritchImplicit1"] = { type = "Exarch", affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicit2"] = { type = "Exarch", affix = "", "6% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicit3"] = { type = "Exarch", affix = "", "7% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicit4"] = { type = "Exarch", affix = "", "8% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicit5"] = { type = "Exarch", affix = "", "9% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicit6"] = { type = "Exarch", affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocity", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, + ["MovementVelocityEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Movement Speed", statOrder = { 1798 }, level = 75, group = "MovementVelocityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, + ["ActionSpeedImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Action Speed", statOrder = { 4527 }, level = 75, group = "ActionSpeedImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { "speed" }, }, + ["ScorchedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 2 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 3 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 5 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 6 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 7 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 8 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 9 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 10 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["ScorchedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Scorched Ground while moving, lasting 11 seconds", statOrder = { 5260 }, level = 75, group = "ScorchedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 2 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 3 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 4 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 5 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 6 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 7 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 8 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 9 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 10 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["BrittleGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Brittle Ground while moving, lasting 11 seconds", statOrder = { 5258 }, level = 75, group = "BrittleGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit1"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 2 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit2"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 3 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit3"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit4"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit5"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicit6"] = { type = "Exarch", affix = "", "Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundMovingImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 4 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 5 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 6 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 7 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 8 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 9 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 10 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["SappedGroundWhileMovingEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Drops Sapped Ground while moving, lasting 11 seconds", statOrder = { 5259 }, level = 75, group = "SappedGroundWhileMovingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { }, }, + ["FireResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Fire Resistance", statOrder = { 1625 }, level = 75, group = "FireResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["ColdResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Cold Resistance", statOrder = { 1631 }, level = 75, group = "ColdResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["LightningResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(13-14)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(15-16)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(17-18)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(19-20)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(21-22)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(23-24)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(23-24)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(29-30)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(31-32)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(33-34)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(35-36)% to Lightning Resistance", statOrder = { 1636 }, level = 75, group = "LightningResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["ChaosResistanceEldritchImplicit1"] = { type = "Exarch", affix = "", "+(6-7)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicit2"] = { type = "Exarch", affix = "", "+(8-9)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicit3"] = { type = "Exarch", affix = "", "+(10-11)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicit4"] = { type = "Exarch", affix = "", "+(12-13)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicit5"] = { type = "Exarch", affix = "", "+(14-15)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicit6"] = { type = "Exarch", affix = "", "+(16-17)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistance", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(12-13)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(14-15)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(16-17)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistanceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(18-19)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(20-21)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(22-23)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(24-25)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(26-27)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistanceEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(28-29)% to Chaos Resistance", statOrder = { 1641 }, level = 75, group = "ChaosResistancePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "chaos", "resistance" }, }, + ["DamagePerEnduranceChargeEldritchImplicit1"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicit2"] = { type = "Exarch", affix = "", "4% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicit3"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicit4"] = { type = "Exarch", affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicit5"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicit6"] = { type = "Exarch", affix = "", "6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 6% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 7% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["DamagePerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 8% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 75, group = "DamagePerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "damage" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["SummonTotemCastSpeedEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Totem Placement speed", statOrder = { 2578 }, level = 75, group = "SummonTotemCastSpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["BrandAttachmentRangeEldritchImplicit1"] = { type = "Exarch", affix = "", "10% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicit2"] = { type = "Exarch", affix = "", "11% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicit3"] = { type = "Exarch", affix = "", "12% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicit4"] = { type = "Exarch", affix = "", "13% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicit5"] = { type = "Exarch", affix = "", "14% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicit6"] = { type = "Exarch", affix = "", "15% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRange", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "caster" }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 16% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 17% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 18% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 19% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 19% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 20% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 21% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 22% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["BrandAttachmentRangeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 23% increased Brand Attachment range", statOrder = { 10043 }, level = 75, group = "BrandAttachmentRangePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FireGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Flame Golems", statOrder = { 4097 }, level = 75, group = "FireGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IceGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Ice Golems", statOrder = { 4098 }, level = 75, group = "IceGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["LightningGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Lightning Golems", statOrder = { 4099 }, level = 75, group = "LightningGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RockGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Stone Golems", statOrder = { 4096 }, level = 75, group = "RockGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ChaosGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Chaos Golems", statOrder = { 4100 }, level = 75, group = "ChaosGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(37-39)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(40-42)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (49-51)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (52-54)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (61-63)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (64-66)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-69)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["CarrionGolemBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (70-72)% increased Effect of the Buff granted by your Carrion Golems", statOrder = { 4997 }, level = 75, group = "CarrionGolemBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh Offering has (6-7)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh Offering has (8-9)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh Offering has (10-11)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh Offering has (12-13)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh Offering has (14-15)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh Offering has (16-17)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (12-13)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (14-15)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (16-17)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (18-19)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (20-21)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (22-23)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (24-25)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (26-27)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh Offering has (28-29)% increased Effect", statOrder = { 1173 }, level = 75, group = "FleshOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Bone Offering has (6-7)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Bone Offering has (8-9)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Bone Offering has (10-11)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Bone Offering has (12-13)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Bone Offering has (14-15)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Bone Offering has (16-17)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (12-13)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (14-15)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (16-17)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (18-19)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (20-21)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (22-23)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (24-25)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (26-27)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BoneOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bone Offering has (28-29)% increased Effect", statOrder = { 1172 }, level = 75, group = "BoneOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Spirit Offering has (6-7)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Spirit Offering has (8-9)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Spirit Offering has (10-11)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Spirit Offering has (12-13)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Spirit Offering has (14-15)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Spirit Offering has (16-17)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (12-13)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (14-15)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (16-17)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (18-19)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (20-21)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (22-23)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (24-25)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (26-27)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SpiritOfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Spirit Offering has (28-29)% increased Effect", statOrder = { 1174 }, level = 75, group = "SpiritOfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AvoidIgniteEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnite", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgniteUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidIgniteEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 75, group = "AvoidIgnitePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidFreezeEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreeze", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidFreezeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 75, group = "AvoidFreezePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidShockEldritchImplicit1"] = { type = "Exarch", affix = "", "(33-35)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicit2"] = { type = "Exarch", affix = "", "(36-38)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicit3"] = { type = "Exarch", affix = "", "(39-41)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicit4"] = { type = "Exarch", affix = "", "(42-44)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicit5"] = { type = "Exarch", affix = "", "(45-47)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicit6"] = { type = "Exarch", affix = "", "(48-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShock", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidShockEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 75, group = "AvoidShockPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidStunEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStun", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AvoidStunEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 75, group = "AvoidStunPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(6-7)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(8-9)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(10-11)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(12-13)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(14-15)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(16-17)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["OnslaughtEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 75, group = "OnslaughtEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["LifeRegenerationRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRate", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Life Regeneration rate", statOrder = { 1577 }, level = 75, group = "LifeRegenerationRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resource", "life" }, }, + ["ArmourFromHelmetGlovesEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGloves", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, + ["ArmourFromHelmetGlovesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% increased Armour from Equipped Helmet and Gloves", statOrder = { 4762 }, level = 75, group = "ArmourFromHelmetGlovesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "defences", "armour" }, }, + ["FasterIgniteDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 5% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 6% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 7% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 8% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 9% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Ignites you inflict deal Damage 10% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 8% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 9% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 10% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 11% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 12% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 13% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 14% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 15% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterIgniteDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Ignites you inflict deal Damage 16% faster", statOrder = { 2564 }, level = 75, group = "FasterIgniteDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 5% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 6% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 7% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 8% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 9% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Poisons you inflict deal Damage 10% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 8% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 9% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 10% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 11% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 12% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 13% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 14% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 15% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterPoisonDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Poisons you inflict deal Damage 16% faster", statOrder = { 6545 }, level = 75, group = "FasterPoisonDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 5% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 6% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 7% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 8% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 9% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Bleeding you inflict deals Damage 10% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 8% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 9% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 10% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 11% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 12% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 13% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 14% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 15% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["FasterBleedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Bleeding you inflict deals Damage 16% faster", statOrder = { 6544 }, level = 75, group = "FasterBleedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["PhysicalAddedAsFireEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFire", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFireUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 75, group = "PhysicalAddedAsFirePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsColdEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsCold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 75, group = "PhysicalAddedAsColdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsLightningEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightning", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsLightningEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 75, group = "PhysicalAddedAsLightningPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit1"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit2"] = { type = "Eater", affix = "", "Gain 4% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit3"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit4"] = { type = "Eater", affix = "", "Gain 5% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit5"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicit6"] = { type = "Eater", affix = "", "Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaos", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 600, 0 }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 6% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 7% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 8% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 9% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain 10% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 75, group = "PhysicalDamageAddedAsChaosPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 120, 0 }, modTags = { "physical", "chaos" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit1"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit2"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit3"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit4"] = { type = "Eater", affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit5"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicit6"] = { type = "Eater", affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.4% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPercentPerEnduranceChargeEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Regenerate 0.5% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 75, group = "LifeRegenerationPercentPerEnduranceChargePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { "resource", "life" }, }, + ["IncreasedStunThresholdEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThreshold", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 1000, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["IncreasedStunThresholdEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Stun Threshold", statOrder = { 3272 }, level = 75, group = "IncreasedStunThresholdPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["TravelSkillCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 75, group = "TravelSkillCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["WarcrySpeedEldritchImplicit1"] = { type = "Eater", affix = "", "(15-16)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicit2"] = { type = "Eater", affix = "", "(17-18)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicit3"] = { type = "Eater", affix = "", "(19-20)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicit4"] = { type = "Eater", affix = "", "(21-22)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicit5"] = { type = "Eater", affix = "", "(23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicit6"] = { type = "Eater", affix = "", "(25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeed", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (23-24)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["WarcrySpeedEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Speed", statOrder = { 3277 }, level = 75, group = "WarcrySpeedPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "speed" }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Enduring Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Enduring Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Enduring Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["EnduringCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Enduring Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 3887 }, level = 75, group = "EnduringCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "Intimidating Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "Intimidating Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "Intimidating Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["IntimidatingCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Intimidating Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 7299 }, level = 75, group = "IntimidatingCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (20-22)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (23-25)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (32-33)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Seismic Cry deal (34-35)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (26-28)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (29-31)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (38-39)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Seismic Cry deal (40-41)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (32-34)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (35-37)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (38-40)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (41-43)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (44-45)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SeismicCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Seismic Cry deal (46-47)% increased Damage", statOrder = { 9967 }, level = 75, group = "SeismicCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (20-22)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (23-25)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (32-33)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "Attacks Exerted by Ancestral Cry deal (34-35)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamage", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (26-28)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (29-31)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (38-39)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Attacks Exerted by Ancestral Cry deal (40-41)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (32-34)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (35-37)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (38-40)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (41-43)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (44-45)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AncestralCryExertedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Attacks Exerted by Ancestral Cry deal (46-47)% increased Damage", statOrder = { 4670 }, level = 75, group = "AncestralCryExertedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["RallyingCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Rallying Cry Buff Effect", statOrder = { 4114 }, level = 75, group = "RallyingCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["BattlemagesCryWarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Battlemage's Cry Buff Effect", statOrder = { 5059 }, level = 75, group = "BattlemagesCryWarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Infernal Cry has (15-17)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Infernal Cry has (18-20)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Infernal Cry has (21-23)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (24-26)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (27-29)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (30-32)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (33-35)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (36-38)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (39-41)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (42-44)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (45-47)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["InfernalCryWarcryAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Infernal Cry has (48-50)% increased Area of Effect", statOrder = { 7267 }, level = 75, group = "InfernalCryWarcryAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "General's Cry has (15-17)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "General's Cry has (18-20)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "General's Cry has (21-23)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (24-26)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (27-29)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (30-32)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (33-35)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (36-38)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (39-41)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (42-44)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (45-47)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GeneralsCryCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, General's Cry has (48-50)% increased Cooldown Recovery Rate", statOrder = { 6857 }, level = 75, group = "GeneralsCryCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit1"] = { type = "Eater", affix = "", "(15-17)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit2"] = { type = "Eater", affix = "", "(18-20)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit3"] = { type = "Eater", affix = "", "(21-23)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit4"] = { type = "Eater", affix = "", "(24-26)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit5"] = { type = "Eater", affix = "", "(27-29)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicit6"] = { type = "Eater", affix = "", "(30-32)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilments", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (24-26)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-29)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (30-32)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 250, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, + ["AvoidElementalStatusAilmentsEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 75, group = "AvoidElementalStatusAilmentsPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 100, 0 }, modTags = { "elemental", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleeding", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidBleedingEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 75, group = "ChanceToAvoidBleedingPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit1"] = { type = "Eater", affix = "", "(33-35)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit2"] = { type = "Eater", affix = "", "(36-38)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit3"] = { type = "Eater", affix = "", "(39-41)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit4"] = { type = "Eater", affix = "", "(42-44)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit5"] = { type = "Eater", affix = "", "(45-47)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicit6"] = { type = "Eater", affix = "", "(48-50)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoison", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 700, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (42-44)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (45-47)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (48-50)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (54-57)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (58-61)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 350, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (51-53)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (54-56)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (57-59)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (60-62)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (63-66)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToAvoidPoisonEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (67-70)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 75, group = "ChanceToAvoidPoisonPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 140, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["GlobalCooldownRecoveryEldritchImplicit1"] = { type = "Eater", affix = "", "5% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicit2"] = { type = "Eater", affix = "", "6% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicit3"] = { type = "Eater", affix = "", "7% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicit4"] = { type = "Eater", affix = "", "8% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicit5"] = { type = "Eater", affix = "", "9% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicit6"] = { type = "Eater", affix = "", "10% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 400, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 200, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["GlobalCooldownRecoveryEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecoveryPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 80, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffect", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "boots", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ElusiveEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased Elusive Effect", statOrder = { 6349 }, level = 75, group = "ElusiveEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "boots", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["SpellCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 75, group = "SpellCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit1"] = { type = "Exarch", affix = "", "+(20-21)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit2"] = { type = "Exarch", affix = "", "+(22-23)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit3"] = { type = "Exarch", affix = "", "+(24-25)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit4"] = { type = "Exarch", affix = "", "+(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit5"] = { type = "Exarch", affix = "", "+(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicit6"] = { type = "Exarch", affix = "", "+(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplier", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(26-27)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(28-29)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(30-31)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(32-33)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(34-35)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(36-37)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(38-39)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(40-41)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["AttackCriticalStrikeMultiplierEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(42-43)% to Critical Strike Multiplier for Attack Damage", statOrder = { 1491 }, level = 75, group = "AttackCriticalStrikeMultiplierPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["FireDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Fire Damage", statOrder = { 1357 }, level = 75, group = "FireDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Cold Damage", statOrder = { 1366 }, level = 75, group = "ColdDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["LightningDamagePercentageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Lightning Damage", statOrder = { 1377 }, level = 75, group = "LightningDamagePercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["IncreasedChaosDamageEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Chaos Damage", statOrder = { 1385 }, level = 75, group = "IncreasedChaosDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["PhysicalDamagePercentEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-23)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-29)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-32)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamagePercentEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Global Physical Damage", statOrder = { 1231 }, level = 75, group = "PhysicalDamagePercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["ArcticArmourBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(15-17)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(18-20)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(21-23)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(24-26)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-29)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(30-32)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-26)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-29)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (30-32)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-35)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (36-38)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-41)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (42-44)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (45-47)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ArcticArmourBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (48-50)% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 75, group = "ArcticArmourBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flesh and Stone has (15-17)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flesh and Stone has (18-20)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flesh and Stone has (21-23)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (24-26)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (27-29)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (30-32)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (33-35)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (36-38)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (39-41)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (42-44)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (45-47)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FleshAndStoneAreaOfEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flesh and Stone has (48-50)% increased Area of Effect", statOrder = { 6648 }, level = 75, group = "FleshAndStoneAreaOfEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Tempest Shield has (15-17)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Tempest Shield has (18-20)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Tempest Shield has (21-23)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (24-26)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (27-29)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (30-32)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (33-35)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (36-38)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (39-41)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (42-44)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (45-47)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["TempestShieldBuffEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Tempest Shield has (48-50)% increased Buff Effect", statOrder = { 10365 }, level = 75, group = "TempestShieldBuffEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "5% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "6% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "7% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "8% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 7% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 8% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageRemovedFromManaBeforeLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 75, group = "DamageRemovedFromManaBeforeLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-21)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit2"] = { type = "Exarch", affix = "", "(22-24)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit3"] = { type = "Exarch", affix = "", "(25-27)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit4"] = { type = "Exarch", affix = "", "(28-30)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit5"] = { type = "Exarch", affix = "", "(31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicit6"] = { type = "Exarch", affix = "", "(34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUnique", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-33)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (34-36)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (37-39)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (40-42)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniqueUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (43-45)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (46-48)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (49-51)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (52-54)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (55-57)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["GolemBuffEffectUniqueEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (58-60)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 75, group = "GolemBuffEffectUniquePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(9-10)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(11-12)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "aura" }, }, + ["AuraEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (17-18)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["AuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 75, group = "AuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { }, }, + ["CurseEffectivenessEldritchImplicit1"] = { type = "Exarch", affix = "", "7% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicit2"] = { type = "Exarch", affix = "", "8% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicit3"] = { type = "Exarch", affix = "", "9% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicit4"] = { type = "Exarch", affix = "", "10% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicit5"] = { type = "Exarch", affix = "", "11% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicit6"] = { type = "Exarch", affix = "", "12% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 10% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 11% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 12% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 13% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 14% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, 15% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 250, 250, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 17% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, + ["CurseEffectivenessEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 18% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectivenessPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 100, 100, 0 }, modTags = { "curse" }, }, + ["OfferingEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(13-14)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(15-16)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(17-18)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(19-20)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(21-22)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(23-24)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (19-20)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (21-22)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (25-26)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (27-28)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["OfferingEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased effect of Offerings", statOrder = { 4063 }, level = 75, group = "OfferingEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "(19-20)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "(21-22)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "(23-24)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "(25-26)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "(27-28)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "(29-30)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["WarcryEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (41-42)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 75, group = "WarcryEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FlaskEffectEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks applied to you have (6-7)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks applied to you have (8-9)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks applied to you have (10-11)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks applied to you have (12-13)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks applied to you have (14-15)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks applied to you have (16-17)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (12-13)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (14-15)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (16-17)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (18-19)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (20-21)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (22-23)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (24-25)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (26-27)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, + ["FlaskEffectEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks applied to you have (28-29)% increased Effect", statOrder = { 2742 }, level = 75, group = "FlaskEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "flask" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit1"] = { type = "Exarch", affix = "", "(8-9)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit2"] = { type = "Exarch", affix = "", "(10-11)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit3"] = { type = "Exarch", affix = "", "(12-13)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit4"] = { type = "Exarch", affix = "", "(14-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit5"] = { type = "Exarch", affix = "", "(16-17)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicit6"] = { type = "Exarch", affix = "", "(18-19)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLife", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (14-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (16-17)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (18-19)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifeUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (30-31)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 75, group = "DamageTakenGainedAsLifePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["FlaskGainPerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 2 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 3 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FlaskGainPerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Flasks gain 4 Charges every 3 seconds", statOrder = { 3478 }, level = 75, group = "FlaskGainPerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["MaximumResistancesEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicit3"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicit4"] = { type = "Exarch", affix = "", "+1% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicit5"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicit6"] = { type = "Exarch", affix = "", "+2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 400, 400, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, + ["MaximumResistancesEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to all maximum Resistances", statOrder = { 1642 }, level = 75, group = "MaximumResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 80, 80, 0 }, modTags = { "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Fire Resistance", statOrder = { 1623 }, level = 75, group = "MaximumFireResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Cold Resistance", statOrder = { 1629 }, level = 75, group = "MaximumColdResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritch", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 600, 0 }, modTags = { }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistanceEldritchEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 75, group = "MaximumLightningResistanceEldritchPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 120, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit1"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit2"] = { type = "Exarch", affix = "", "+1% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit3"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit4"] = { type = "Exarch", affix = "", "+2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit5"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicit6"] = { type = "Exarch", affix = "", "+3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +2% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +3% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +4% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["MaximumChaosResistanceImplicitEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +5% to maximum Chaos Resistance", statOrder = { 1640 }, level = 75, group = "MaximumChaosResistanceImplicitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["EnduranceChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 15 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 14 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 13 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 12 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 11 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain an Endurance Charge every 10 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 11 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 10 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 9 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 8 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 7 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 6 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 5 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 4 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 3 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["EnduranceChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain an Endurance Charge every 2 seconds", statOrder = { 5247 }, level = 75, group = "EnduranceChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 15 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 14 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 13 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 12 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 11 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Frenzy Charge every 10 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 11 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 10 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 9 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 8 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 7 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 6 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 5 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 4 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 3 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["FrenzyChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Frenzy Charge every 2 seconds", statOrder = { 5248 }, level = 75, group = "FrenzyChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit1"] = { type = "Exarch", affix = "", "Gain a Power Charge every 15 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit2"] = { type = "Exarch", affix = "", "Gain a Power Charge every 14 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit3"] = { type = "Exarch", affix = "", "Gain a Power Charge every 13 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit4"] = { type = "Exarch", affix = "", "Gain a Power Charge every 12 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit5"] = { type = "Exarch", affix = "", "Gain a Power Charge every 11 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicit6"] = { type = "Exarch", affix = "", "Gain a Power Charge every 10 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecond", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence1"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 11 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence2"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 10 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence3"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 9 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence4"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 8 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence5"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitUniquePresence6"] = { type = "Exarch", affix = "", "While a Unique Enemy is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence1"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 7 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence2"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 6 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence3"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 5 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence4"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 4 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence5"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 3 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["PowerChargePerSecondEldritchImplicitPinnaclePresence6"] = { type = "Exarch", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Gain a Power Charge every 2 seconds", statOrder = { 5249 }, level = 75, group = "PowerChargePerSecondPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["BlockPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["BlockPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Attack Damage", statOrder = { 1138 }, level = 75, group = "BlockPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicit1"] = { type = "Eater", affix = "", "5% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicit2"] = { type = "Eater", affix = "", "6% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicit3"] = { type = "Eater", affix = "", "7% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicit4"] = { type = "Eater", affix = "", "8% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicit5"] = { type = "Eater", affix = "", "9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicit6"] = { type = "Eater", affix = "", "10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 700, 700, 0 }, modTags = { "block" }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 7% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 8% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 350, 350, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 9% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["SpellBlockPercentageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% Chance to Block Spell Damage", statOrder = { 1160 }, level = 75, group = "SpellBlockPercentagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 140, 140, 0 }, modTags = { }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Armour", statOrder = { 1541 }, level = 75, group = "GlobalPhysicalDamageReductionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "armour" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(17-18)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(19-20)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(21-22)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(23-24)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(25-26)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(27-28)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (23-24)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (25-26)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (27-28)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (29-30)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (31-32)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (33-34)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (35-36)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (37-38)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (39-40)% increased Evasion Rating", statOrder = { 1549 }, level = 75, group = "GlobalEvasionRatingPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "evasion" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit1"] = { type = "Eater", affix = "", "(6-7)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit2"] = { type = "Eater", affix = "", "(8-9)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit3"] = { type = "Eater", affix = "", "(10-11)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit4"] = { type = "Eater", affix = "", "(12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit5"] = { type = "Eater", affix = "", "(14-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicit6"] = { type = "Eater", affix = "", "(16-17)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercent", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 1000, 1000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (12-13)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (14-15)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (16-17)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (18-19)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (20-21)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (22-23)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (24-25)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (26-27)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEnergyShieldPercentEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, (28-29)% increased maximum Energy Shield", statOrder = { 1561 }, level = 75, group = "GlobalEnergyShieldPercentPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "amulet", "default", }, weightVal = { 0, 200, 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["PlayerReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["PlayerReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Damage from your Hits cannot be Reflected", statOrder = { 7 }, level = 75, group = "PlayerReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit1"] = { type = "Eater", affix = "", "45% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit2"] = { type = "Eater", affix = "", "50% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit3"] = { type = "Eater", affix = "", "55% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit4"] = { type = "Eater", affix = "", "60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit5"] = { type = "Eater", affix = "", "65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicit6"] = { type = "Eater", affix = "", "70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamage", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 60% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 65% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 70% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamageUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 75% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 80% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 85% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 90% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 95% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["MinionReflectedDamageEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 100% of Hit Damage from your Minions cannot be Reflected", statOrder = { 9355 }, level = 75, group = "MinionReflectedDamagePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Anger has (19-21)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Anger has (22-24)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Anger has (25-27)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Anger has (28-30)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Anger has (31-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Anger has (34-36)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (31-33)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (34-36)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (37-39)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (40-42)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (43-45)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (46-48)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (49-51)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (52-54)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (55-57)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["AngerAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Anger has (58-60)% increased Aura Effect", statOrder = { 3356 }, level = 75, group = "AngerAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Hatred has (19-21)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Hatred has (22-24)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Hatred has (25-27)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Hatred has (28-30)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Hatred has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Hatred has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (31-33)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (34-36)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (37-39)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (40-42)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (43-45)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (46-48)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (49-51)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (52-54)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (55-57)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HatredAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Hatred has (58-60)% increased Aura Effect", statOrder = { 3366 }, level = 75, group = "HatredAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Wrath has (19-21)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Wrath has (22-24)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Wrath has (25-27)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Wrath has (28-30)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Wrath has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Wrath has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (31-33)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (34-36)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (37-39)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (40-42)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (43-45)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (46-48)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (49-51)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (52-54)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (55-57)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["WrathAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Wrath has (58-60)% increased Aura Effect", statOrder = { 3361 }, level = 75, group = "WrathAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Malevolence has (19-21)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Malevolence has (22-24)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Malevolence has (25-27)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Malevolence has (28-30)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Malevolence has (31-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Malevolence has (34-36)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (31-33)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (34-36)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (37-39)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (40-42)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (43-45)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (46-48)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (49-51)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (52-54)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (55-57)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["MalevolenceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Malevolence has (58-60)% increased Aura Effect", statOrder = { 6161 }, level = 75, group = "MalevolenceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Zealotry has (19-21)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Zealotry has (22-24)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Zealotry has (25-27)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Zealotry has (28-30)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Zealotry has (31-33)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Zealotry has (34-36)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (31-33)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (34-36)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (37-39)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (40-42)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (43-45)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (46-48)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (49-51)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (52-54)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (55-57)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["ZealotryAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Zealotry has (58-60)% increased Aura Effect", statOrder = { 10721 }, level = 75, group = "ZealotryAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Pride has (19-21)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Pride has (22-24)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Pride has (25-27)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Pride has (28-30)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Pride has (31-33)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Pride has (34-36)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (31-33)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (34-36)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (37-39)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (40-42)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (43-45)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (46-48)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (49-51)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (52-54)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (55-57)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PrideAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Pride has (58-60)% increased Aura Effect", statOrder = { 9710 }, level = 75, group = "PrideAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Determination has (19-21)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Determination has (22-24)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Determination has (25-27)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Determination has (28-30)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Determination has (31-33)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Determination has (34-36)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (31-33)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (34-36)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (37-39)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (40-42)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (43-45)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (46-48)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (49-51)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (52-54)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (55-57)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DeterminationAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Determination has (58-60)% increased Aura Effect", statOrder = { 3367 }, level = 75, group = "DeterminationAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Grace has (19-21)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Grace has (22-24)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Grace has (25-27)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Grace has (28-30)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Grace has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Grace has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (31-33)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (34-36)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (37-39)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (40-42)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (43-45)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (46-48)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (49-51)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (52-54)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (55-57)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["GraceAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Grace has (58-60)% increased Aura Effect", statOrder = { 3363 }, level = 75, group = "GraceAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Discipline has (19-21)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Discipline has (22-24)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Discipline has (25-27)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Discipline has (28-30)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Discipline has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Discipline has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (31-33)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (34-36)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (37-39)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (40-42)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (43-45)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (46-48)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (49-51)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (52-54)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (55-57)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["DisciplineAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Discipline has (58-60)% increased Aura Effect", statOrder = { 3368 }, level = 75, group = "DisciplineAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Haste has (19-21)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Haste has (22-24)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Haste has (25-27)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Haste has (28-30)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Haste has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Haste has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (31-33)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (34-36)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (37-39)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (40-42)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (43-45)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (46-48)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (49-51)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (52-54)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (55-57)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["HasteAuraEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Haste has (58-60)% increased Aura Effect", statOrder = { 3364 }, level = 75, group = "HasteAuraEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Elements has (19-21)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Elements has (22-24)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Elements has (25-27)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Elements has (28-30)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (31-33)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (34-36)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (37-39)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (40-42)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (43-45)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (46-48)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (49-51)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (52-54)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (55-57)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfElementsEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Elements has (58-60)% increased Aura Effect", statOrder = { 3357 }, level = 75, group = "PurityOfElementsEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Fire has (19-21)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Fire has (22-24)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Fire has (25-27)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Fire has (28-30)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (31-33)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (34-36)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (37-39)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (40-42)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (43-45)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (46-48)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (49-51)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (52-54)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (55-57)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfFireEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Fire has (58-60)% increased Aura Effect", statOrder = { 3358 }, level = 75, group = "PurityOfFireEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Ice has (19-21)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Ice has (22-24)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Ice has (25-27)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Ice has (28-30)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (31-33)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (34-36)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (37-39)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (40-42)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (43-45)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (46-48)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (49-51)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (52-54)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (55-57)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfIceEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Ice has (58-60)% increased Aura Effect", statOrder = { 3359 }, level = 75, group = "PurityOfIceEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicit1"] = { type = "Eater", affix = "", "Purity of Lightning has (19-21)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicit2"] = { type = "Eater", affix = "", "Purity of Lightning has (22-24)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicit3"] = { type = "Eater", affix = "", "Purity of Lightning has (25-27)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicit4"] = { type = "Eater", affix = "", "Purity of Lightning has (28-30)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicit5"] = { type = "Eater", affix = "", "Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicit6"] = { type = "Eater", affix = "", "Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffect", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 300, 0 }, modTags = { "aura" }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (31-33)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (34-36)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (37-39)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (40-42)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 150, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (43-45)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (46-48)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (49-51)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (52-54)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (55-57)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["PurityOfLightningEffectEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Purity of Lightning has (58-60)% increased Aura Effect", statOrder = { 3360 }, level = 75, group = "PurityOfLightningEffectPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 60, 0 }, modTags = { }, }, + ["FortifyOnMeleeHitEldritchImplicit1"] = { type = "Eater", affix = "", "Melee Hits have (6-7)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicit2"] = { type = "Eater", affix = "", "Melee Hits have (8-9)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicit3"] = { type = "Eater", affix = "", "Melee Hits have (10-11)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicit4"] = { type = "Eater", affix = "", "Melee Hits have (12-13)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicit5"] = { type = "Eater", affix = "", "Melee Hits have (14-15)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicit6"] = { type = "Eater", affix = "", "Melee Hits have (16-17)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHit", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (12-13)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (14-15)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (16-17)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (18-19)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (20-21)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (22-23)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (24-25)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (26-27)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, + ["FortifyOnMeleeHitEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, Melee Hits have (28-29)% chance to Fortify", statOrder = { 2264 }, level = 75, group = "FortifyOnMeleeHitPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { "attack" }, }, + ["AllResistancesEldritchImplicit1"] = { type = "Eater", affix = "", "+(5-6)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicit2"] = { type = "Eater", affix = "", "+(7-8)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicit3"] = { type = "Eater", affix = "", "+(9-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicit4"] = { type = "Eater", affix = "", "+(11-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicit5"] = { type = "Eater", affix = "", "+(13-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicit6"] = { type = "Eater", affix = "", "+(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(11-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(13-14)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(15-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(17-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(19-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(21-22)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(23-24)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(25-26)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, +(27-28)% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistancesPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 200, 0 }, modTags = { "elemental", "resistance" }, }, + ["LifeRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Life Recovery rate", statOrder = { 1578 }, level = 75, group = "LifeRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "life" }, }, + ["ManaRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Mana Recovery rate", statOrder = { 1586 }, level = 75, group = "ManaRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "resource", "mana" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit1"] = { type = "Eater", affix = "", "7% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit2"] = { type = "Eater", affix = "", "8% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit3"] = { type = "Eater", affix = "", "9% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit4"] = { type = "Eater", affix = "", "10% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit5"] = { type = "Eater", affix = "", "11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicit6"] = { type = "Eater", affix = "", "12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRate", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 700, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 9% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 10% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRateUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 350, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 11% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 12% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 13% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 14% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 15% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRecoveryRateEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 16% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 75, group = "EnergyShieldRecoveryRatePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 140, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DamageTakenPerStrengthEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrength", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerStrengthEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Strength", statOrder = { 5246 }, level = 75, group = "BodyDamageTakenPerStrengthPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterity", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerDexterityEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Dexterity", statOrder = { 5244 }, level = 75, group = "BodyDamageTakenPerDexterityPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit1"] = { type = "Eater", affix = "", "1% less Damage Taken per 230 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit2"] = { type = "Eater", affix = "", "1% less Damage Taken per 220 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit3"] = { type = "Eater", affix = "", "1% less Damage Taken per 210 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit4"] = { type = "Eater", affix = "", "1% less Damage Taken per 200 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit5"] = { type = "Eater", affix = "", "1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicit6"] = { type = "Eater", affix = "", "1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence1"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 210 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence2"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 200 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence3"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence4"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence5"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitUniquePresence6"] = { type = "Eater", affix = "", "While a Unique Enemy is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligenceUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence1"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 190 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence2"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 180 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence3"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 170 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence4"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 160 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence5"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 150 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["DamageTakenPerIntelligenceEldritchImplicitPinnaclePresence6"] = { type = "Eater", affix = "", "While a Pinnacle Atlas Boss is in your Presence, 1% less Damage Taken per 140 Intelligence", statOrder = { 5245 }, level = 75, group = "BodyDamageTakenPerIntelligencePinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "body_armour", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit1"] = { type = "Eater", affix = "", "(7-8)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit2"] = { type = "Eater", affix = "", "(9-10)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit3"] = { type = "Eater", affix = "", "(11-12)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit4"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit5"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationEldritchImplicit6"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 500, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence1"] = { type = "Eater", affix = "", "(13-14)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence2"] = { type = "Eater", affix = "", "(15-16)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence3"] = { type = "Eater", affix = "", "(17-18)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence4"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence5"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["SkillEffectDurationUniquePresence6"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationUniquePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 250, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence1"] = { type = "Eater", affix = "", "(19-20)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_6_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence2"] = { type = "Eater", affix = "", "(21-22)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_5_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence3"] = { type = "Eater", affix = "", "(23-24)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_4_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence4"] = { type = "Eater", affix = "", "(25-26)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_3_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence5"] = { type = "Eater", affix = "", "(27-28)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_2_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["SkillEffectDurationPinnaclePresence6"] = { type = "Eater", affix = "", "(29-30)% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDurationPinnaclePresence", weightKey = { "no_tier_1_eldritch_implicit", "amulet", "default", }, weightVal = { 0, 100, 0 }, modTags = { }, }, + ["RecombinatorSpecialMaximumEnduranceCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 68, group = "MaximumEnduranceCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge" }, }, + ["RecombinatorSpecialMaximumFrenzyCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 68, group = "MaximumFrenzyCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge" }, }, + ["RecombinatorSpecialMaximumPowerCharge"] = { type = "Prefix", affix = "Sentinel's", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 68, group = "IncreasedMaximumPowerCharges", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge" }, }, + ["RecombinatorSpecialKeystoneMinionInstability"] = { type = "Suffix", affix = "of the Sentinel", "Minion Instability", statOrder = { 10798 }, level = 68, group = "MinionInstability", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["RecombinatorSpecialKeystoneResoluteTechnique"] = { type = "Suffix", affix = "of the Sentinel", "Resolute Technique", statOrder = { 10828 }, level = 68, group = "ResoluteTechnique", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, }, + ["RecombinatorSpecialKeystoneBloodMagic"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10772 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, + ["RecombinatorSpecialKeystonePainAttunement"] = { type = "Suffix", affix = "of the Sentinel", "Pain Attunement", statOrder = { 10800 }, level = 68, group = "PainAttunement", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["RecombinatorSpecialKeystoneElementalEquilibrium"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Equilibrium", statOrder = { 10781 }, level = 68, group = "ElementalEquilibrium", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["RecombinatorSpecialKeystoneIronGrip"] = { type = "Suffix", affix = "of the Sentinel", "Iron Grip", statOrder = { 10816 }, level = 68, group = "IronGrip", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["RecombinatorSpecialKeystonePointBlank"] = { type = "Suffix", affix = "of the Sentinel", "Point Blank", statOrder = { 10801 }, level = 68, group = "PointBlank", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack" }, }, + ["RecombinatorSpecialKeystoneAcrobatics"] = { type = "Suffix", affix = "of the Sentinel", "Acrobatics", statOrder = { 10767 }, level = 68, group = "Acrobatics", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialKeystoneGhostReaver"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Reaver", statOrder = { 10787 }, level = 68, group = "KeystoneGhostReaver", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["RecombinatorSpecialKeystoneVaalPact"] = { type = "Suffix", affix = "of the Sentinel", "Vaal Pact", statOrder = { 10821 }, level = 68, group = "VaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["RecombinatorSpecialKeystoneElementalOverload"] = { type = "Suffix", affix = "of the Sentinel", "Elemental Overload", statOrder = { 10782 }, level = 68, group = "ElementalOverload", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["RecombinatorSpecialKeystoneAvatarOfFire"] = { type = "Suffix", affix = "of the Sentinel", "Avatar of Fire", statOrder = { 10770 }, level = 68, group = "AvatarOfFire", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["RecombinatorSpecialKeystoneEldritchBattery"] = { type = "Suffix", affix = "of the Sentinel", "Eldritch Battery", statOrder = { 10780 }, level = 68, group = "EldritchBattery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["RecombinatorSpecialKeystoneAncestralBond"] = { type = "Suffix", affix = "of the Sentinel", "Ancestral Bond", statOrder = { 10769 }, level = 68, group = "AncestralBond", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["RecombinatorSpecialKeystoneCrimsonDance"] = { type = "Suffix", affix = "of the Sentinel", "Crimson Dance", statOrder = { 10777 }, level = 68, group = "CrimsonDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["RecombinatorSpecialKeystonePerfectAgony"] = { type = "Suffix", affix = "of the Sentinel", "Perfect Agony", statOrder = { 10768 }, level = 68, group = "PerfectAgony", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical", "ailment" }, }, + ["RecombinatorSpecialKeystoneRunebinder"] = { type = "Suffix", affix = "of the Sentinel", "Runebinder", statOrder = { 10808 }, level = 68, group = "Runebinder", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, }, + ["RecombinatorSpecialKeystoneMortalConviction"] = { type = "Suffix", affix = "of the Sentinel", "Blood Magic", statOrder = { 10772 }, level = 68, group = "BloodMagic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, + ["RecombinatorSpecialKeystoneCallToArms"] = { type = "Suffix", affix = "of the Sentinel", "Call to Arms", statOrder = { 10773 }, level = 68, group = "CallToArms", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialKeystoneTheAgnostic"] = { type = "Suffix", affix = "of the Sentinel", "The Agnostic", statOrder = { 10799 }, level = 68, group = "TheAgnostic", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, + ["RecombinatorSpecialKeystoneSupremeEgo"] = { type = "Suffix", affix = "of the Sentinel", "Supreme Ego", statOrder = { 10817 }, level = 68, group = "SupremeEgo", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "aura" }, }, + ["RecombinatorSpecialKeystoneTheImpaler"] = { type = "Suffix", affix = "of the Sentinel", "The Impaler", statOrder = { 10792 }, level = 68, group = "Impaler", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["RecombinatorSpecialKeystoneDoomsday"] = { type = "Suffix", affix = "of the Sentinel", "Hex Master", statOrder = { 10790 }, level = 68, group = "HexMaster", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, + ["RecombinatorSpecialKeystoneLetheShade1"] = { type = "Suffix", affix = "of the Sentinel", "Lethe Shade", statOrder = { 10794 }, level = 68, group = "LetheShade", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, }, + ["RecombinatorSpecialKeystoneGhostDance"] = { type = "Suffix", affix = "of the Sentinel", "Ghost Dance", statOrder = { 10786 }, level = 68, group = "GhostDance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["RecombinatorSpecialKeystoneVersatileCombatant"] = { type = "Suffix", affix = "of the Sentinel", "Versatile Combatant", statOrder = { 10822 }, level = 68, group = "VersatileCombatant", weightKey = { "default", }, weightVal = { 0 }, modTags = { "block" }, }, + ["RecombinatorSpecialKeystoneMagebane"] = { type = "Suffix", affix = "of the Sentinel", "Magebane", statOrder = { 10795 }, level = 68, group = "Magebane", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialKeystoneSolipsism"] = { type = "Suffix", affix = "of the Sentinel", "Solipsism", statOrder = { 10814 }, level = 68, group = "Solipsism", weightKey = { "default", }, weightVal = { 0 }, modTags = { "ailment" }, }, + ["RecombinatorSpecialKeystoneDivineShield"] = { type = "Suffix", affix = "of the Sentinel", "Divine Shield", statOrder = { 10779 }, level = 68, group = "DivineShield", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["RecombinatorSpecialKeystoneIronWill"] = { type = "Suffix", affix = "of the Sentinel", "Iron Will", statOrder = { 10829 }, level = 68, group = "IronWill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster" }, }, + ["RecombinatorSpecialMagicUtilityFlaskEffect"] = { type = "Prefix", affix = "Sentinel's", "Magic Utility Flasks applied to you have (20-25)% increased Effect", statOrder = { 2743 }, level = 68, group = "MagicUtilityFlaskEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask" }, }, + ["RecombinatorSpecialAuraEffect"] = { type = "Suffix", affix = "of the Sentinel", "(15-20)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 68, group = "AuraEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, + ["RecombinatorSpecialFireDamageToAttacksPerStrength"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Fire Damage to Attacks per 10 Strength", statOrder = { 9239 }, level = 68, group = "FireDamageToAttacksPerStrength", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "attack" }, }, + ["RecombinatorSpecialColdDamageToAttacksPerDexterity"] = { type = "Prefix", affix = "Sentinel's", "Adds 2 to 4 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9231 }, level = 68, group = "ColdDamageToAttacksPerDexterity", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "attack" }, }, + ["RecombinatorSpecialLightningDamageToAttacksPerIntelligence"] = { type = "Prefix", affix = "Sentinel's", "Adds 1 to 5 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9244 }, level = 68, group = "LightningDamageToAttacksPerIntelligence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "attack" }, }, + ["RecombinatorSpecialAllFireDamageCanShock"] = { type = "Suffix", affix = "of the Sentinel", "Your Fire Damage can Shock", statOrder = { 2876 }, level = 68, group = "AllFireDamageCanShock", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "lightning", "ailment" }, }, + ["RecombinatorSpecialAllColdDamageCanIgnite"] = { type = "Suffix", affix = "of the Sentinel", "Your Cold Damage can Ignite", statOrder = { 2871 }, level = 68, group = "AllColdDamageCanIgnite", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "cold", "ailment" }, }, + ["RecombinatorSpecialAllLightningDamageCanFreeze"] = { type = "Suffix", affix = "of the Sentinel", "Your Lightning Damage can Freeze", statOrder = { 2883 }, level = 68, group = "AllLightningDamageCanFreeze", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, + ["RecombinatorSpecialMarkEffect"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of your Marks", statOrder = { 2598 }, level = 68, group = "MarkEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["RecombinatorSpecialArcaneSurgeEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialArcaneSurgeEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 68, group = "ArcaneSurgeEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialOnslaughtEffect1H"] = { type = "Suffix", affix = "of the Sentinel", "(30-40)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialOnslaughtEffect2H"] = { type = "Suffix", affix = "of the Sentinel", "(50-70)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 68, group = "OnslaughtEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies1H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (10-15)% increased Damage", statOrder = { 10356 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["RecombinatorSpecialIncreasedDamageVsWarcryTauntedEnemies2H"] = { type = "Suffix", affix = "of the Sentinel", "Enemies Taunted by your Warcries take (20-25)% increased Damage", statOrder = { 10356 }, level = 68, group = "WarcryTauntedEnemiesTakeIncreasedDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["RecombinatorSpecialSupportedByLevelFourEnlighten"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enlighten", statOrder = { 272 }, level = 68, group = "SupportedByEnlighten", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, + ["RecombinatorSpecialSupportedByLevelFourEnhance"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Enhance", statOrder = { 271 }, level = 68, group = "SupportedByEnhance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, + ["RecombinatorSpecialSupportedByLevelFourEmpower"] = { type = "Prefix", affix = "Sentinel's", "Socketed Gems are Supported by Level 4 Empower", statOrder = { 269 }, level = 68, group = "SupportedByEmpower", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "gem" }, }, + ["RecombinatorSpecialTriggerSkillsDoubleDamage"] = { type = "Prefix", affix = "Sentinel's", "Socketed Triggered Skills deal Double Damage", statOrder = { 409 }, level = 68, group = "SocketedTriggeredSkillsDoubleDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "support", "damage", "gem" }, }, + ["LifeRegeneration1Inverted"] = { type = "Suffix", affix = "of the Newt", "Lose (1-2) Life per second", statOrder = { 1575 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration2Inverted"] = { type = "Suffix", affix = "of the Lizard", "Lose (2.1-8) Life per second", statOrder = { 1575 }, level = 7, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration3Inverted"] = { type = "Suffix", affix = "of the Flatworm", "Lose (8.1-16) Life per second", statOrder = { 1575 }, level = 19, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration4Inverted"] = { type = "Suffix", affix = "of the Starfish", "Lose (16.1-24) Life per second", statOrder = { 1575 }, level = 31, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration5Inverted"] = { type = "Suffix", affix = "of the Hydra", "Lose (24.1-32) Life per second", statOrder = { 1575 }, level = 44, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration6Inverted"] = { type = "Suffix", affix = "of the Troll", "Lose (32.1-48) Life per second", statOrder = { 1575 }, level = 55, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration7Inverted"] = { type = "Suffix", affix = "of Ryslatha", "Lose (48.1-64) Life per second", statOrder = { 1575 }, level = 68, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegeneration8Inverted"] = { type = "Suffix", affix = "of the Phoenix", "Lose (64.1-96) Life per second", statOrder = { 1575 }, level = 74, group = "LifeDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["AddedPhysicalDamage1Inverted"] = { type = "Prefix", affix = "Glinting", "Adds 1 to 2 Physical Damage to Attacks against you", statOrder = { 1267 }, level = 5, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage2Inverted"] = { type = "Prefix", affix = "Burnished", "Adds (2-3) to (4-5) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 13, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage3Inverted"] = { type = "Prefix", affix = "Polished", "Adds (3-4) to (6-7) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 19, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage4Inverted"] = { type = "Prefix", affix = "Honed", "Adds (4-6) to (9-10) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 28, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage5Inverted"] = { type = "Prefix", affix = "Gleaming", "Adds (5-7) to (11-12) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 35, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage6Inverted"] = { type = "Prefix", affix = "Annealed", "Adds (6-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 44, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage7Inverted"] = { type = "Prefix", affix = "Razor-sharp", "Adds (7-10) to (15-18) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 52, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage8Inverted"] = { type = "Prefix", affix = "Tempered", "Adds (9-12) to (19-22) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 64, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamage9Inverted"] = { type = "Prefix", affix = "Flaring", "Adds (11-15) to (22-26) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 76, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedFireDamage1Inverted"] = { type = "Prefix", affix = "Heated", "Adds 1 to 2 Fire Damage to Attacks against you", statOrder = { 1361 }, level = 1, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage2Inverted"] = { type = "Prefix", affix = "Smouldering", "Adds (3-5) to (7-8) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 12, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage3Inverted"] = { type = "Prefix", affix = "Smoking", "Adds (5-7) to (11-13) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 20, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage4Inverted"] = { type = "Prefix", affix = "Burning", "Adds (7-10) to (15-18) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 28, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage5Inverted"] = { type = "Prefix", affix = "Flaming", "Adds (9-12) to (19-22) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 35, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage6Inverted"] = { type = "Prefix", affix = "Scorching", "Adds (11-15) to (23-27) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 44, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage7Inverted"] = { type = "Prefix", affix = "Incinerating", "Adds (13-18) to (27-31) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 52, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage8Inverted"] = { type = "Prefix", affix = "Blasting", "Adds (16-22) to (32-38) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 64, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamage9Inverted"] = { type = "Prefix", affix = "Cremating", "Adds (19-25) to (39-45) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 76, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedColdDamage1Inverted"] = { type = "Prefix", affix = "Frosted", "Adds 1 to 2 Cold Damage to Attacks against you", statOrder = { 1370 }, level = 2, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage2Inverted"] = { type = "Prefix", affix = "Chilled", "Adds (3-4) to (7-8) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 13, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage3Inverted"] = { type = "Prefix", affix = "Icy", "Adds (5-7) to (10-12) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 21, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage4Inverted"] = { type = "Prefix", affix = "Frigid", "Adds (6-9) to (13-16) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 29, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage5Inverted"] = { type = "Prefix", affix = "Freezing", "Adds (8-11) to (16-19) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 36, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage6Inverted"] = { type = "Prefix", affix = "Frozen", "Adds (10-13) to (20-24) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 45, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage7Inverted"] = { type = "Prefix", affix = "Glaciated", "Adds (12-16) to (24-28) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 53, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage8Inverted"] = { type = "Prefix", affix = "Polar", "Adds (14-19) to (29-34) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 65, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamage9Inverted"] = { type = "Prefix", affix = "Entombing", "Adds (17-22) to (34-40) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 77, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamage1Inverted"] = { type = "Prefix", affix = "Humming", "Adds 1 to 5 Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 3, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage2Inverted"] = { type = "Prefix", affix = "Buzzing", "Adds 1 to (14-15) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 13, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage3Inverted"] = { type = "Prefix", affix = "Snapping", "Adds (1-2) to (22-23) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 22, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage4Inverted"] = { type = "Prefix", affix = "Crackling", "Adds (1-2) to (27-28) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 28, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage5Inverted"] = { type = "Prefix", affix = "Sparking", "Adds (1-3) to (33-34) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 35, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage6Inverted"] = { type = "Prefix", affix = "Arcing", "Adds (1-4) to (40-43) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 44, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage7Inverted"] = { type = "Prefix", affix = "Shocking", "Adds (2-5) to (47-50) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 52, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage8Inverted"] = { type = "Prefix", affix = "Discharging", "Adds (3-6) to (57-61) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 64, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamage9Inverted"] = { type = "Prefix", affix = "Electrocuting", "Adds (3-7) to (68-72) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 76, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LifeLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Remora's", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Lamprey's", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriad3Inverted"] = { type = "Prefix", affix = "Vampire's", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of the Remora", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 50, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of the Lamprey", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 60, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffix3Inverted"] = { type = "Suffix", affix = "of the Vampire", "(1-1.2)% of Physical Attack Damage Leeched by Enemy as Life", statOrder = { 1648 }, level = 70, group = "EnemyLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["ManaLeechPermyriad1Inverted"] = { type = "Prefix", affix = "Thirsty", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriad2Inverted"] = { type = "Prefix", affix = "Parched", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffix1Inverted"] = { type = "Suffix", affix = "of Thirst", "(0.2-0.4)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 50, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffix2Inverted"] = { type = "Suffix", affix = "of Parching", "(0.6-0.8)% of Physical Attack Damage Leeched by Enemy as Mana", statOrder = { 1698 }, level = 70, group = "EnemyManaLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["LifeRegenerationEnhancedLevel50ModInverted"] = { type = "Suffix", affix = "of Guatelitzi", "Lose (32-40) Life per second", "Lose 0.4% of Life per second", statOrder = { 1575, 1943 }, level = 50, group = "LifeDegenerationAndPercentGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["IncreasedEnergyShieldEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Guatelitzi's", "+(44-47) to maximum Energy Shield", "Lose 0.4% of Energy Shield per second", statOrder = { 1558, 2647 }, level = 50, group = "EnergyShieldAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["FireResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Fire Resistance", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1625, 1671 }, level = 50, group = "FireResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, + ["ColdResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Cold Resistance", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1631, 1676 }, level = 50, group = "ColdResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "cold", "resistance" }, }, + ["LightningResistEnhancedLevel50ModLeechInverted"] = { type = "Suffix", affix = "of Puhuarte", "+(46-48)% to Lightning Resistance", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1636, 1680 }, level = 50, group = "LightningResistanceEnemyLeech", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "elemental", "lightning", "resistance" }, }, + ["IncreasedManaEnhancedLevel50ModRegenInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Lose (5-7) Mana per second", statOrder = { 1579, 1583 }, level = 50, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaEnhancedLevel50ModCostNewInverted"] = { type = "Prefix", affix = "Xopec's", "+(74-78) to maximum Mana", "Non-Channelling Skills Cost -(8-6) Mana", statOrder = { 1579, 10063 }, level = 50, group = "IncreasedManaAndBaseCost", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["AddedPhysicalDamageEssenceAmulet7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (16-18) to (27-30) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing5Inverted"] = { type = "Prefix", affix = "Essences", "Adds (6-8) to (12-13) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 58, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing6Inverted"] = { type = "Prefix", affix = "Essences", "Adds (7-9) to (13-15) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 74, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageEssenceRing7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (10-11) to (16-17) Physical Damage to Attacks against you", statOrder = { 1267 }, level = 82, group = "SelfPhysicalDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedFireDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (23-27) to (43-48) Fire Damage to Attacks against you", statOrder = { 1361 }, level = 82, group = "SelfFireDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedColdDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (20-24) to (38-44) Cold Damage to Attacks against you", statOrder = { 1370 }, level = 82, group = "SelfColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamageEssence7Inverted"] = { type = "Prefix", affix = "Essences", "Adds (4-8) to (71-76) Lightning Damage to Attacks against you", statOrder = { 1381 }, level = 82, group = "SelfLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["FireDamageAsPortionOfPhysicalDamageEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Hits against you gain 10% of Physical Damage as Extra Fire Damage", statOrder = { 1931 }, level = 63, group = "SelfPhysAsExtraFireTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["AddedColdDamagePerFrenzyChargeEssence1Inverted"] = { type = "Prefix", affix = "Essences", "Adds 4 to 7 Cold Damage to Hits against you per Frenzy Charge", statOrder = { 4272 }, level = 63, group = "SelfColdDamageTakenPerFrenzy", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ChanceToRecoverManaOnSkillUseEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "10% chance to lose 10% of Mana when you use a Skill", statOrder = { 3474 }, level = 63, group = "ChanceToLoseManaOnSkillUse", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["DamageCannotBeReflectedPercentEssence1Inverted"] = { type = "Suffix", affix = "of the Essence", "You and your Minions take 60% increased Reflected Damage", statOrder = { 9882 }, level = 63, group = "ReflectDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["PhysicalDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Physical Damage Leeched by Enemy as Life", statOrder = { 1667 }, level = 60, group = "EnemyPhysicalDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["FireDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Fire Damage Leeched by Enemy as Life", statOrder = { 1671 }, level = 60, group = "EnemyFireDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ColdDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Cold Damage Leeched by Enemy as Life", statOrder = { 1676 }, level = 60, group = "EnemyColdDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["LightningDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Lightning Damage Leeched by Enemy as Life", statOrder = { 1680 }, level = 60, group = "EnemyLightningDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChaosDamageLifeLeechDelveInverted"] = { type = "Prefix", affix = "Subterranean", "0.4% of Chaos Damage Leeched by Enemy as Life", statOrder = { 1683 }, level = 60, group = "EnemyChaosDamageLifeLeechPermyriad", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["AddedManaRegenerationDelveInverted"] = { type = "Suffix", affix = "of the Underground", "Lose (3-5) Mana per second", statOrder = { 1583 }, level = 60, group = "ManaDegenerationGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["NecropolisCraftingAllResistancesWithChaos"] = { type = "Suffix", affix = "of Haunting", "+(12-16)% to All Resistances", statOrder = { 9922 }, level = 12, group = "AllResistancesWithChaos", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "resistance" }, }, + ["NecropolisCraftingFireResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Fire Resistance cannot be Penetrated", statOrder = { 6584 }, level = 68, group = "FireResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "resistance" }, }, + ["NecropolisCraftingColdResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Cold Resistance cannot be Penetrated", statOrder = { 5833 }, level = 68, group = "ColdResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "resistance" }, }, + ["NecropolisCraftingLightningResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Lightning Resistance cannot be Penetrated", statOrder = { 7461 }, level = 68, group = "LightningResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "resistance" }, }, + ["NecropolisCraftingLocalNoAttributeRequirements"] = { type = "Suffix", affix = "of Haunting", "Has no Attribute Requirements", statOrder = { 1082 }, level = 50, group = "LocalNoAttributeRequirements", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingDamageTakenGainedAsLife"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, + ["NecropolisCraftingPercentDamageGoesToMana"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingLocalCanSocketIgnoringColour"] = { type = "Suffix", affix = "of Haunting", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 91 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingReducedExtraDamageFromCrits"] = { type = "Suffix", affix = "of Haunting", "You take (40-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 24, group = "ReducedExtraDamageFromCrits", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, + ["NecropolisCraftingManaReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(10-15)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 24, group = "ManaReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingLifeReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(20-30)% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 34, group = "LifeReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, + ["NecropolisCraftingCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Haunting", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, + ["NecropolisCraftingIncreasedStunThreshold"] = { type = "Suffix", affix = "of Haunting", "(80-120)% increased Stun Threshold", statOrder = { 3272 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "necropolis_boots", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCannotBeKnockedBack"] = { type = "Prefix", affix = "Haunted", "Cannot be Knocked Back", statOrder = { 1521 }, level = 50, group = "CannotBeKnockedBack", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingMaximumEnduranceCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 16, group = "MaximumEnduranceCharges", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingNoExtraBleedDamageWhileMoving"] = { type = "Suffix", affix = "of Haunting", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 34, group = "NoExtraBleedDamageWhileMoving", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingAvoidIgnite"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 16, group = "AvoidIgnite", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "ailment" }, }, + ["NecropolisCraftingAvoidFreeze"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 16, group = "AvoidFreeze", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, + ["NecropolisCraftingAvoidShock"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 16, group = "AvoidShock", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, + ["NecropolisCraftingReducedBleedDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Bleed Duration on you", statOrder = { 9969 }, level = 24, group = "ReducedBleedDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, + ["NecropolisCraftingReducedPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Poison Duration on you", statOrder = { 9978 }, level = 24, group = "ReducedPoisonDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingBurningGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Burning Ground", statOrder = { 10456 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire" }, }, + ["NecropolisCraftingShockedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Shocked Ground", statOrder = { 10481 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, + ["NecropolisCraftingChilledGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Chilled Ground", statOrder = { 10461 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, + ["NecropolisCraftingDesecratedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Desecrated Ground", statOrder = { 10467 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "chaos" }, }, + ["NecropolisCraftingMovementCannotBeSlowedBelowBase"] = { type = "Prefix", affix = "Haunted", "Movement Speed cannot be modified to below Base Value", statOrder = { 3196 }, level = 45, group = "MovementCannotBeSlowedBelowBase", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "speed" }, }, + ["NecropolisCraftingWarcriesOpenChests"] = { type = "Prefix", affix = "Haunted", "Your Warcries open Chests", statOrder = { 9559 }, level = 24, group = "WarcriesOpenChests", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingIncreasedMaximumPowerCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 16, group = "IncreasedMaximumPowerCharges", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCriticalStrikeChance"] = { type = "Suffix", affix = "of Haunting", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "critical" }, }, + ["NecropolisCraftingManaRegeneration"] = { type = "Suffix", affix = "of Haunting", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingImmunityToBlind"] = { type = "Suffix", affix = "of Haunting", "Cannot be Blinded", statOrder = { 2974 }, level = 38, group = "ImmunityToBlind", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingManaPer2Intelligence"] = { type = "Prefix", affix = "Haunted", "+1 to maximum Mana per 2 Intelligence", statOrder = { 9171 }, level = 68, group = "ManaPer2Intelligence", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingAccuracyPer2Dexterity"] = { type = "Suffix", affix = "of Haunting", "+2 to Accuracy Rating per 2 Dexterity", statOrder = { 4516 }, level = 68, group = "AccuracyPer2Dexterity", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellDamage"] = { type = "Prefix", affix = "Haunted", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "caster_damage", "necropolis_exclusive_mod", "damage", "caster" }, }, + ["NecropolisCraftingIncreasedCastSpeed"] = { type = "Suffix", affix = "of Haunting", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "speed" }, }, + ["NecropolisCraftingArcaneSurgeOnSpendingMana"] = { type = "Suffix", affix = "of Haunting", "Gain Arcane Surge after Spending a total of 400 Mana", statOrder = { 7141 }, level = 34, group = "ArcaneSurgeOnSpendingMana", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingAreaOfEffect"] = { type = "Suffix", affix = "of Haunting", "(15-25)% increased Area of Effect", statOrder = { 1880 }, level = 12, group = "AreaOfEffect", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCurseEffectiveness"] = { type = "Suffix", affix = "of Haunting", "(5-8)% increased Effect of your Curses", statOrder = { 2596 }, level = 24, group = "CurseEffectiveness", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "curse" }, }, + ["NecropolisCraftingMaximumFrenzyCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 16, group = "MaximumFrenzyCharges", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingChaosDamage"] = { type = "Prefix", affix = "Haunted", "Adds (13-17) to (23-29) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 750, 0 }, modTags = { "chaos_damage", "necropolis_exclusive_mod", "damage", "chaos", "attack" }, }, + ["NecropolisCraftingCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Haunting", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, + ["NecropolisCraftingPoisonOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Poison on Hit", statOrder = { 3173 }, level = 16, group = "PoisonOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(12-20)% increased Poison Duration", statOrder = { 3170 }, level = 38, group = "PoisonDuration", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2489 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingFasterBleedDamage"] = { type = "Suffix", affix = "of Haunting", "Bleeding you inflict deals Damage (12-20)% faster", statOrder = { 6544 }, level = 38, group = "FasterBleedDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "physical_damage", "bleed", "necropolis_exclusive_mod", "damage", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 16, group = "GlobalChanceToBlindOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingGlobalMaimOnHit"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to Maim on Hit", statOrder = { 8154 }, level = 34, group = "GlobalMaimOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellsHinderOnHitChance"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 34, group = "SpellsHinderOnHitChance", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, + ["NecropolisCraftingMeleeKnockback"] = { type = "Suffix", affix = "of Haunting", "Melee Attacks Knock Enemies Back on Hit", statOrder = { 9193 }, level = 45, group = "MeleeKnockback", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingIntimidateOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4920 }, level = 38, group = "IntimidateOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellUnnerveOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells", statOrder = { 5726 }, level = 38, group = "SpellUnnerveOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, + ["WeaponSpellDamageTriggerSkillOnWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(70-74)% increased Spell Damage", statOrder = { 832, 832.1, 1223 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["WeaponSpellDamageTriggerSkillOnTwoHandWeaponEnhancedLevel50Mod"] = { type = "Prefix", affix = "Tacati's", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", "(105-110)% increased Spell Damage", statOrder = { 832, 832.1, 1223 }, level = 50, group = "WeaponSpellDamageTriggerSkill", weightKey = { "default", }, weightVal = { 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["MercenaryModLightningSkillManaCostWhileShocked"] = { type = "Suffix", affix = "of Infamy", "40% less Mana cost of Lightning Skills while Shocked", statOrder = { 7466 }, level = 68, group = "LightningSkillManaCostWhileShocked", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "elemental", "lightning" }, }, + ["MercenaryModTravelSkillCrit"] = { type = "Prefix", affix = "Infamous", "Your Travel Skills Critically Strike once every 3 uses", statOrder = { 10424 }, level = 68, group = "TravelSkillCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["MercenaryModRecoupWhileFrozen"] = { type = "Suffix", affix = "of Infamy", "(50-90)% of Damage taken while Frozen Recouped as Life", statOrder = { 6124 }, level = 68, group = "RecoupWhileFrozen", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["MercenaryModSkipSacrifice"] = { type = "Suffix", affix = "of Infamy", "(20-40)% chance on Skill use to not Sacrifice Life but", "still gain benefits as though you had", statOrder = { 10071, 10071.1 }, level = 68, group = "SkipSacrifice", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["MercenaryModMinionFireConvertToChaos"] = { type = "Prefix", affix = "Infamous", "Minions convert 100% of Fire Damage to Chaos Damage", statOrder = { 9277 }, level = 68, group = "MinionFireConvertToChaos", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "chaos", "minion" }, }, + ["MercenaryModRecentMinionCrit"] = { type = "Suffix", affix = "of Infamy", "Minions created Recently have (60-100)% increased Critical Hit Chance", statOrder = { 9338 }, level = 68, group = "RecentMinionCrit", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion", "critical" }, }, + ["MercenaryModTrapMineChain"] = { type = "Suffix", affix = "of Infamy", "Skills used by your Traps and Mines Chain 2 additional times", statOrder = { 10416 }, level = 68, group = "TrapMineChain", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MercenaryModMineLifeReserve"] = { type = "Prefix", affix = "Infamous", "Your Skills that throw Mines reserve Life instead of Mana", statOrder = { 10070 }, level = 68, group = "MineLifeReserve", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["MercenaryModProjSpeedVariance"] = { type = "Suffix", affix = "of Infamy", "Each Projectile created by Attacks you make with a Melee Weapon has", "between 50% more and 50% less Projectile Speed at random", statOrder = { 9745, 9745.1 }, level = 68, group = "MeleeProjSpeedVariance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "speed" }, }, + ["MercenaryModMaxBlades"] = { type = "Prefix", affix = "Infamous", "Skills that leave Lingering Blades have +(5-10) to Maximum Lingering Blades", statOrder = { 9174 }, level = 68, group = "MaxBlades", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MercenaryModDebilitate"] = { type = "Prefix", affix = "Infamous", "Debuffs on you expire (80-100)% faster", "You are Debilitated", statOrder = { 6151, 9974 }, level = 68, group = "SelfDebilitate", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MercenaryModAshWarcries"] = { type = "Suffix", affix = "of Infamy", "Your Warcries cover Enemies in Ash for 5 seconds", statOrder = { 10559 }, level = 68, group = "CoverInAshWarcry", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire" }, }, + ["MercenaryModRageDecaySpeed"] = { type = "Prefix", affix = "Infamous", "Inherent loss of Rage is 20% slower", statOrder = { 9793 }, level = 68, group = "RageDecaySpeed", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MercenaryModAddCritPerExert"] = { type = "Suffix", affix = "of Infamy", "Skills have +(2-3)% to Critical Strike Chance for each Warcry Exerting them", statOrder = { 4551 }, level = 68, group = "AddCritPerExert", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["MercenaryModLGOHIgnitedEnemies"] = { type = "Suffix", affix = "of Infamy", "Gain (5-10) Life for each Ignited Enemy hit with Attacks", statOrder = { 1743 }, level = 68, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["MercenaryModFortificationDamageAura"] = { type = "Suffix", affix = "of Infamy", "Nearby Enemies take 1% increased Physical Damage per two Fortification on you", statOrder = { 9463 }, level = 68, group = "FortificationDamageAura", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["MercenaryModLifeCostOnLowLife"] = { type = "Suffix", affix = "of Infamy", "30% less Life cost of Skills while on Low Life", statOrder = { 10058 }, level = 68, group = "LifeCostOnLowLife", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["MercenaryModMinionCDR"] = { type = "Suffix", affix = "of Infamy", "Minions have 20% increased Cooldown Recovery Rate", statOrder = { 9287 }, level = 68, group = "MinionCooldownRecovery", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MercenaryModConsecratedChaosRes"] = { type = "Suffix", affix = "of Infamy", "Consecrated Ground you create grants +(1-3)% maximum Chaos Resistance to you and Allies", statOrder = { 10688 }, level = 68, group = "ConsecratedChaosRes", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos" }, }, + ["MercenaryModImpaleEffectFromDistance"] = { type = "Suffix", affix = "of Infamy", "Projectiles gain Impale effect as they travel farther, causing Impales they inflict to have up to 40% increased effect", statOrder = { 7249 }, level = 68, group = "ImpaleEffectFromDistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "physical" }, }, + ["MercenaryModClonesInheritGloves"] = { type = "Prefix", affix = "Infamous", "Your Blink and Mirror arrow clones use your Gloves", statOrder = { 5223 }, level = 68, group = "ClonesInheritGloves", weightKey = { "default", }, weightVal = { 0 }, modTags = { "minion" }, }, + ["MercenaryModSingleProjAOE"] = { type = "Suffix", affix = "of Infamy", "30% more Area of Effect with Bow Attacks that fire a single Projectile", statOrder = { 4723 }, level = 68, group = "SingleProjAOE", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MercenaryModSpellslingerReservation"] = { type = "Suffix", affix = "of Infamy", "20% increased Mana Reservation Efficiency of Skills Supported by Spellslinger", statOrder = { 10199 }, level = 68, group = "EnchantmentSpellslingerManaReservationEfficiency", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "attack", "caster" }, }, + ["MercenaryModMaimDOT"] = { type = "Suffix", affix = "of Infamy", "Enemies Maimed by you take 10% increased Damage Over Time", statOrder = { 6414 }, level = 68, group = "EnchantmentMaim", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["MercenaryModUnaffectedShock"] = { type = "Suffix", affix = "of Infamy", "Unaffected by Shock while Channelling", statOrder = { 10479 }, level = 68, group = "UnaffectedByShockWhileChannel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning" }, }, + ["MercenaryModCurseEffect"] = { type = "Prefix", affix = "Infamous", "20% reduced Curse Duration", "15% increased Effect of your Curses", statOrder = { 1781, 2596 }, level = 68, group = "CurseEffectReduceCurseDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, + ["MercenaryModCurseChillingAreas"] = { type = "Prefix", affix = "Infamous", "Curses on Enemies in your Chilling Areas have 15% increased Effect", statOrder = { 5777 }, level = 68, group = "CurseEffectChillingAreas", weightKey = { "default", }, weightVal = { 0 }, modTags = { "curse" }, }, + ["MagicSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Searching Eye Jewels", statOrder = { 8022 }, level = 50, group = "MagicSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MagicMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Murderous Eye Jewels", statOrder = { 8021 }, level = 50, group = "MagicMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MagicHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Hypnotic Eye Jewels", statOrder = { 8020 }, level = 50, group = "MagicHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["MagicGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(75-100)% increased Effect of Socketed Magic Ghastly Eye Jewels", statOrder = { 8019 }, level = 50, group = "MagicGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RareSearchingJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Searching Eye Jewels", statOrder = { 8026 }, level = 50, group = "RareSearchingJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RareMurderousJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Murderous Eye Jewels", statOrder = { 8025 }, level = 50, group = "RareMurderousJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RareHypnoticJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Hypnotic Eye Jewels", statOrder = { 8024 }, level = 50, group = "RareHypnoticJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["RareGhastlyJewelEffect"] = { type = "Prefix", affix = "Abyssal", "(50-75)% increased Effect of Socketed Rare Ghastly Eye Jewels", statOrder = { 8023 }, level = 50, group = "RareGhastlyJewelEffect", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, } \ No newline at end of file diff --git a/src/Data/ModItemExclusive.lua b/src/Data/ModItemExclusive.lua new file mode 100644 index 0000000000..42469fdcc7 --- /dev/null +++ b/src/Data/ModItemExclusive.lua @@ -0,0 +1,8382 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + ["StrengthUniqueRing2"] = { affix = "", "+(10-20) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthImplicitAmulet1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 7, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthImplicitBelt1"] = { affix = "", "+(25-35) to Strength", statOrder = { 1177 }, level = 10, group = "StrengthImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueHelmetDexInt1"] = { affix = "", "+20 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueTwoHandMace1"] = { affix = "", "+10 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueAmulet5"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueIntHelmet3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueBootsInt1"] = { affix = "", "+(5-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueDagger2"] = { affix = "", "+25 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueGlovesDex1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueBelt1"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 10, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueBelt2"] = { affix = "", "+(40-50) to Strength", statOrder = { 1177 }, level = 20, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueBelt4"] = { affix = "", "+25 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueGlovesStr2"] = { affix = "", "+50 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueTwoHandAxe3"] = { affix = "", "+(15-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueGlovesStrDex3"] = { affix = "", "+10 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueClaw5_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueRing8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueTwoHandAxe5"] = { affix = "", "+10 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueTwoHandSword5"] = { affix = "", "+(40-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueBelt7"] = { affix = "", "+(40-55) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueSceptre6"] = { affix = "", "+(50-70) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueBodyStr4"] = { affix = "", "+(10-20) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueQuiver6"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueOneHandSword8"] = { affix = "", "+(35-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueGlovesStrInt2"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueRing31__"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueClaw9"] = { affix = "", "+(10-15) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueRing36"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__1"] = { affix = "", "+30 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique___2"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__3"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__4"] = { affix = "", "+30 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__5"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__6"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__7_"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__8"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__9"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__10"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__11"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__12"] = { affix = "", "+200 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__13_"] = { affix = "", "+(60-120) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__14"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__15"] = { affix = "", "+20 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__16"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 65, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__17"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 62, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__18"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__19_"] = { affix = "", "+(20-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__20_"] = { affix = "", "+20 to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__21"] = { affix = "", "+(10-20) to Strength", statOrder = { 1177 }, level = 50, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__22"] = { affix = "", "+(20-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__23"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__24"] = { affix = "", "+(20-30) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__25"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__26"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__27"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__28"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__29"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__30"] = { affix = "", "+(30-40) to Strength", statOrder = { 1177 }, level = 75, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__31"] = { affix = "", "+(15-35) to Strength", statOrder = { 1177 }, level = 40, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__32"] = { affix = "", "+(30-50) to Strength", statOrder = { 1177 }, level = 100, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__33"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUnique__34"] = { affix = "", "+(15-25) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageStrengthUniqueBootsStrInt2"] = { affix = "", "(15-18)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageStrengthUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageStrengthUniqueJewel29"] = { affix = "", "(4-6)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageStrengthUnique__1"] = { affix = "", "100% reduced Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageStrengthUnique__2"] = { affix = "", "(4-6)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageStrengthUnique__3"] = { affix = "", "10% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageStrengthUnique__4_"] = { affix = "", "10% reduced Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageStrengthUnique__5"] = { affix = "", "(6-12)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageStrengthImplicitMace1"] = { affix = "", "10% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityImplicitAmulet1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 7, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityImplicitQuiver1"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 15, group = "DexterityImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueRing3"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBodyDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBootsInt1"] = { affix = "", "+(5-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBootsStrDex1"] = { affix = "", "+(40-60) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBootsInt2"] = { affix = "", "+5 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBootsInt3"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueGlovesDex2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueGlovesStrDex1"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueAmulet7"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 10, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueHelmetStrDex2"] = { affix = "", "+(50-65) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBootsDex1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueDagger3"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueShieldStrInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBow4"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBow6"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBootsDex3"] = { affix = "", "+15 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBow7"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBodyDex4"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueHelmetDex4"] = { affix = "", "+(50-70) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueGlovesStrDex3"] = { affix = "", "+10 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueGlovesInt4__"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueGlovesDexInt4"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueHelmetStrDex3"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueRing8"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBootsDex4_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueHelmetDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBootsDexInt2"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBelt7"] = { affix = "", "+(40-55) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueQuiver6"] = { affix = "", "+(35-45) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueQuiver7"] = { affix = "", "+30 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBootsDex8"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueJewel8"] = { affix = "", "+20 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueDagger11"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueDagger12"] = { affix = "", "+20 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueClaw9"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__1"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 53, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueBootsDex9"] = { affix = "", "+(25-35) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__2"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 57, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__3"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__4"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__5"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__6"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__7"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__8"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__9"] = { affix = "", "+25 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__10_"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__11"] = { affix = "", "+(40-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__12"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__13"] = { affix = "", "+20 to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__14"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 65, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__15"] = { affix = "", "+(40-80) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__16"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__17"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 62, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__18"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__19"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 54, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__20__"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__21_"] = { affix = "", "+(10-20) to Dexterity", statOrder = { 1178 }, level = 50, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__22"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__23"] = { affix = "", "+(20-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__24"] = { affix = "", "+(30-55) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__25"] = { affix = "", "+(30-50) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__26"] = { affix = "", "+(5-10) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__27"] = { affix = "", "+(20-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__28"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__29"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__30"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__31"] = { affix = "", "+(20-30) to Dexterity", statOrder = { 1178 }, level = 20, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__32"] = { affix = "", "+(30-40) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUnique__34"] = { affix = "", "+(15-25) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthAndDexterityUnique_1"] = { affix = "", "+(25-40) to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthAndDexterity", weightKey = { }, weightVal = { }, modTags = { "unveiled_mod", "attribute" }, }, + ["PercentageDexterityUniqueBodyDex7"] = { affix = "", "15% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageDexterityUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageDexterityUniqueJewel29"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageDexterityUnique__1"] = { affix = "", "100% reduced Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageDexterityUnique__2"] = { affix = "", "(4-6)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageDexterityUnique__3"] = { affix = "", "(8-12)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageDexterityUnique__4"] = { affix = "", "(10-15)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageDexterityUnique__5"] = { affix = "", "15% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueOneHandSword2"] = { affix = "", "+10 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceImplicitAmulet1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 7, group = "IntelligenceImplicit", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueRing4"] = { affix = "", "+(5-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueBootsInt1"] = { affix = "", "+(5-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueBootsInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueGlovesInt2"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueBelt1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueWand1"] = { affix = "", "+10 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueBootsDex1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueWand2"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueBootsDex3"] = { affix = "", "+15 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueBodyInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueShieldDex3"] = { affix = "", "+(40-60) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueBodyStrInt3"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueGlovesInt3"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueGlovesInt5"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueHelmetInt5"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueHelmetInt6"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueHelmetWard1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueRing13"] = { affix = "", "+(60-75) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueOneHandAxe1"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueSceptre5"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueGlovesStr3"] = { affix = "", "+(60-80) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueQuiver6"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueShieldInt4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueStaff8"] = { affix = "", "+(80-120) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueBelt11"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueWand8"] = { affix = "", "+(10-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueHelmetInt9"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueDagger10_"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueRing34"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["Intelligence__1"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__3"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__4"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__5"] = { affix = "", "+40 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__6"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__7"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__8"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__9"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__10"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__11"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__12"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__13"] = { affix = "", "+20 to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__14"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 65, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__15_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__16"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 60, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__17"] = { affix = "", "+(40-70) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__18"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__19"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__20"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__21"] = { affix = "", "+(5-10) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__22_"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__23"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__24"] = { affix = "", "-(25-15) to Intelligence", statOrder = { 1179 }, level = 28, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__25"] = { affix = "", "+(20-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__26_"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__27"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__28"] = { affix = "", "+(10-20) to Intelligence", statOrder = { 1179 }, level = 50, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__29"] = { affix = "", "+(20-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__30"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 62, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__31"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__32"] = { affix = "", "+(20-30) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__33"] = { affix = "", "+(30-40) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__34"] = { affix = "", "+(40-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__35"] = { affix = "", "+(30-50) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__36"] = { affix = "", "+(5-15) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__37"] = { affix = "", "+(15-25) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUnique__38"] = { affix = "", "+(23-32) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageIntelligenceUniqueHelmetStrDex6"] = { affix = "", "(5-15)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageIntelligenceUniqueStaff12_"] = { affix = "", "(14-18)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageIntelligenceUniqueJewel29"] = { affix = "", "(10-15)% reduced Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageIntelligenceUnique__1"] = { affix = "", "100% reduced Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageIntelligenceUnique__2"] = { affix = "", "(4-6)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageIntelligenceUnique__3"] = { affix = "", "(8-12)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageIntelligenceUnique__4"] = { affix = "", "(5-8)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PercentageIntelligenceUnique__5"] = { affix = "", "(1-7)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesImplicitAmulet1"] = { affix = "", "+(10-16) to all Attributes", statOrder = { 1176 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUniqueAmulet8"] = { affix = "", "+(80-100) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUniqueBelt3"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 20, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUniqueAmulet9"] = { affix = "", "+(20-40) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesImplicitWreath1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUniqueRing6"] = { affix = "", "+(10-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUniqueHelmetStr3"] = { affix = "", "+(20-25) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesTestUniqueAmulet1"] = { affix = "", "+500 to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUniqueBodyStr3"] = { affix = "", "+(40-50) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUniqueTwoHandMace7"] = { affix = "", "+(25-50) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesImplicitDemigodRing1"] = { affix = "", "+(8-12) to all Attributes", statOrder = { 1176 }, level = 16, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesImplicitDemigodOneHandSword1"] = { affix = "", "+(16-24) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUniqueRing26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 25, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUniqueHelmetStrInt5"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUniqueStaff10"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUniqueAmulet22"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__1"] = { affix = "", "+(30-50) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__2"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__3"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__4"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__5"] = { affix = "", "+(25-75) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__6"] = { affix = "", "+(8-24) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__7"] = { affix = "", "+(15-30) to all Attributes", statOrder = { 1176 }, level = 57, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__8_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__9"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__10_"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__11"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__12"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__13_"] = { affix = "", "+20 to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__14"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__15"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__16_"] = { affix = "", "+(15-25) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__17_"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 65, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__18"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__19"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__20"] = { affix = "", "+(15-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__21"] = { affix = "", "+(25-30) to all Attributes", statOrder = { 1176 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__22_"] = { affix = "", "+(20-30) to all Attributes", statOrder = { 1176 }, level = 60, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__23"] = { affix = "", "+(5-10) to all Attributes", statOrder = { 1176 }, level = 50, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__24"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__25"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__26"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__27"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__28"] = { affix = "", "+(10-15) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__29"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 85, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__30"] = { affix = "", "+(10-20) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesUnique__31"] = { affix = "", "+(7-13) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IncreasedLifeImplicitShield1"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeImplicitShield2"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeImplicitShield3"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueOneHandSword1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueHelmetStr1"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeImplicitRing1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 2, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeImplicitBelt1"] = { affix = "", "+(25-40) to maximum Life", statOrder = { 1569 }, level = 10, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyStr1"] = { affix = "", "+1000 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueAmulet4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueShieldDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueShieldStr1"] = { affix = "", "+(160-180) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBootsInt4"] = { affix = "", "+20 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueShieldStr2"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueTwoHandAxe4"] = { affix = "", "+100 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyDexInt1"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueHelmetDex4"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ReducedLifeUniqueGlovesDexInt4"] = { affix = "", "-20 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueHelmetStrDex4"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueAmulet14"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 40, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueTwoHandMace6"] = { affix = "", "+(35-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyDex6"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueHelmetDex5"] = { affix = "", "+(10-20) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyStrDex3_"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueShieldStrInt6"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyStrDex2"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBootsDex6"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueRing19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBelt7"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBelt8"] = { affix = "", "+(75-100) to maximum Life", statOrder = { 1569 }, level = 63, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyStr2"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueDescentShield1"] = { affix = "", "+15 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueDescentHelmet1"] = { affix = "", "+10 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueWand4"] = { affix = "", "+(15-20) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeImplicitGlovesDemigods1"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueOneHandAxe3"] = { affix = "", "+(10-15) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBootsStrDex3"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueGlovesDexInt5"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueHelmetStrDex5"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueGlovesStrDex4"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueQuiver3"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBootsDex7"] = { affix = "", "+(55-75) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueGlovesStr3"] = { affix = "", "+(60-75) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyStrDexInt1"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyStrInt5"] = { affix = "", "+(80-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBootsStr2"] = { affix = "", "+(150-200) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueShieldDexInt1"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueShieldDex5"] = { affix = "", "+(70-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyStrDex4"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueGlovesStrInt2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueShieldDex6"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueShieldStrDex7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueQuiver9"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBelt13"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyStrDex5"] = { affix = "", "+(200-300) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueRing28"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueAmulet19"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1569 }, level = 60, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueRing32"] = { affix = "", "+(0-60) to maximum Life", statOrder = { 1569 }, level = 82, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeFireResistUniqueBelt14"] = { affix = "", "+(70-85) to maximum Life", statOrder = { 1569 }, level = 65, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyDexInt3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueAmulet22"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyStr6"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyStrInt6"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBodyStrInt7"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueOneHandMace7"] = { affix = "", "+70 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueShieldStr4"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueShieldStr5"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBootsStr3_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__15"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__4"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__5"] = { affix = "", "+(20-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__6"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueAmulet25"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__1"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__2"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__3"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique___7"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__8"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__9"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__10"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__11"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__12_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUniqueBootsDex9__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__14"] = { affix = "", "+(45-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__13"] = { affix = "", "+(40-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__16"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__18"] = { affix = "", "+(35-45) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__19"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__20"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__21"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__22"] = { affix = "", "+(100-150) to maximum Life", statOrder = { 1569 }, level = 50, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__23"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__24"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__25"] = { affix = "", "+(25-35) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__26"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__27"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__28"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__29"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__30"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__31"] = { affix = "", "+(65-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__32"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__33"] = { affix = "", "+(60-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__34"] = { affix = "", "+(240-300) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__35"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__36_"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__37"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__38"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__39"] = { affix = "", "+(20-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__40"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__41"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__42_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__43"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__44"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__45"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__46"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__47"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__48"] = { affix = "", "+(30-40) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__49_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__50"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__51"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__52"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__53"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 75, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__54"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__55"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__56"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__57"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__58"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__59"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__60"] = { affix = "", "+(60-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__61"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__62"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__63_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__64"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__65"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 81, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__66"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__67_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__68_"] = { affix = "", "+(50-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__69"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__70"] = { affix = "", "+(90-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__71"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__72_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__73"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__74"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__75"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__76"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__77"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__78"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__79"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__80_"] = { affix = "", "+(20-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__81"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__82"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__83"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__84"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__85_"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__86_"] = { affix = "", "+(100-120) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__87"] = { affix = "", "+23 to maximum Life", statOrder = { 1569 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__88"] = { affix = "", "+(50-175) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__89"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__90"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__91"] = { affix = "", "+(70-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__92_"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__93"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__94"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__95"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__96__"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__97"] = { affix = "", "+(50-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__98"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__99"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__100"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__101"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__102"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__103"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 77, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__104_"] = { affix = "", "+100 to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__105"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__106_"] = { affix = "", "+(120-160) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__107"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__108"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__109_"] = { affix = "", "+(45-65) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__110"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__111__"] = { affix = "", "+(40-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__112"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__113"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__114"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__115"] = { affix = "", "+(50-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__116"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__117"] = { affix = "", "+(-200-200) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__118"] = { affix = "", "+(40-50) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__119"] = { affix = "", "+(50-70) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__120"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__121"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__122"] = { affix = "", "+(25-30) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__123"] = { affix = "", "+(30-50) to maximum Life", statOrder = { 1569 }, level = 25, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__124"] = { affix = "", "+(60-80) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__125"] = { affix = "", "+(1-100) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__126"] = { affix = "", "+(60-90) to maximum Life", statOrder = { 1569 }, level = 98, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeUnique__127"] = { affix = "", "+(80-100) to maximum Life", statOrder = { 1569 }, level = 70, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedManaImplicitRing1"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 2, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaImplicitArmour1"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueAmulet1"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueBow1"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueTwoHandSword2"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueQuiver1"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1579 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueQuiver1a"] = { affix = "", "+(10-30) to maximum Mana", statOrder = { 1579 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueDexHelmet1"] = { affix = "", "+(15-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueIntHelmet3"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueGlovesStr1"] = { affix = "", "(10-15)% reduced maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueHelmetInt4"] = { affix = "", "+(25-75) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueBootsInt4"] = { affix = "", "+20 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueShieldInt2"] = { affix = "", "+(15-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueDagger4"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueBodyInt5"] = { affix = "", "+(25-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueBootsInt5"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueGlovesInt3"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueAmulet10"] = { affix = "", "+100 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueWand3"] = { affix = "", "+(40-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueBelt5"] = { affix = "", "+(45-55) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueRing14"] = { affix = "", "+(25-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueHelmetDexInt2"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueHelmetStrInt3"] = { affix = "", "+(100-120) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueClaw7"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueRing20"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueHelmetDexInt3"] = { affix = "", "+(30-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueBodyDexInt2"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueSceptre6"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueWand4"] = { affix = "", "+(15-20) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueBootsStrDex4"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueBootsStrDex3"] = { affix = "", "+(10-20) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueRing17"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueHelmetStrDex5_"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueBodyInt9"] = { affix = "", "+(20-30) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueAmulet18"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueRing29"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueHelmetInt8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueAmulet19"] = { affix = "", "+(20-40) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueTwoHandAxe9"] = { affix = "", "+(100-150) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueBodyStrInt6"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUniqueOneHandMace7"] = { affix = "", "+70 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__3"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__1"] = { affix = "", "+(60-120) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__2"] = { affix = "", "+30 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__4"] = { affix = "", "+(80-120) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__5"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__6"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__7"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 24, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__8"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1579 }, level = 28, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__9"] = { affix = "", "+(50-80) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__10"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__12"] = { affix = "", "+(20-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__13"] = { affix = "", "+(50-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__14"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__15"] = { affix = "", "+(1-75) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__16"] = { affix = "", "+(30-50) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__17"] = { affix = "", "+(80-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__18"] = { affix = "", "+(1-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__19"] = { affix = "", "+500 to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__20_"] = { affix = "", "+(120-160) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__21"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__22__"] = { affix = "", "+(50-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__23"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__24"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__25"] = { affix = "", "+(40-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__26"] = { affix = "", "+(150-200) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__27"] = { affix = "", "+(60-80) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__28"] = { affix = "", "+(60-100) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__29"] = { affix = "", "+(20-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__30"] = { affix = "", "+(40-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaUnique__31"] = { affix = "", "+(55-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedEnergyShieldImplicitBelt1"] = { affix = "", "+(9-20) to maximum Energy Shield", statOrder = { 1558 }, level = 2, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldImplicitBelt2"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1558 }, level = 99, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUniqueClaw1"] = { affix = "", "+(200-300) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUniqueDagger4"] = { affix = "", "+50 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUniqueGlovesInt6"] = { affix = "", "+15 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldImplicitRing1"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1558 }, level = 25, group = "EnergyShieldImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUniqueAmulet14"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1558 }, level = 40, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUniqueBelt5"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1558 }, level = 70, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUniqueRing18"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1558 }, level = 25, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUniqueBodyStrDexInt1"] = { affix = "", "+(70-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUniqueQuiver7"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUniqueBelt11"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUniqueRing27"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUniqueRing35"] = { affix = "", "+(15-25) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique___1"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__2"] = { affix = "", "+35 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__3"] = { affix = "", "+(70-150) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__4"] = { affix = "", "+(75-80) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__6"] = { affix = "", "+250 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__7"] = { affix = "", "+(80-120) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__8"] = { affix = "", "+(40-45) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__9"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__10"] = { affix = "", "+(60-70) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-35) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldUnique__13"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBootsDex1"] = { affix = "", "+(100-150) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBodyInt5"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueHelmetDexInt5"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBodyInt9"] = { affix = "", "(200-220)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBootsDex8"] = { affix = "", "+(15-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueHelmetStrInt5_"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueGlovesStr4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueShieldInt5"] = { affix = "", "+(70-90) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBootsDexInt4"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShiledUniqueBootsInt6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergySheildUnique__2_"] = { affix = "", "+(30-40) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique___4"] = { affix = "", "+20 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__5"] = { affix = "", "+(40-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__6"] = { affix = "", "+(20-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__7"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__8"] = { affix = "", "+(110-130) to maximum Energy Shield", statOrder = { 1559 }, level = 65, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__9"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__10"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__11"] = { affix = "", "+(30-45) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__12"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__13_"] = { affix = "", "+40 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__14"] = { affix = "", "+(50-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__15"] = { affix = "", "+(130-160) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__16"] = { affix = "", "+(90-110) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__17__"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__18_"] = { affix = "", "+(64-96) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__19"] = { affix = "", "+(180-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__20"] = { affix = "", "+(15-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__21"] = { affix = "", "+(80-100) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__22"] = { affix = "", "+(130-150) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__23"] = { affix = "", "+(60-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__24_"] = { affix = "", "+(160-180) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__25"] = { affix = "", "+(100-120) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__26"] = { affix = "", "+(40-80) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__27_"] = { affix = "", "+(50-90) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__28"] = { affix = "", "+(50-70) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__29"] = { affix = "", "+(15-20) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__30__"] = { affix = "", "+(150-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__31"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__32"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__33"] = { affix = "", "+(100-200) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__34"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUnique__35"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["AddedPhysicalDamageImplicitRing1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 2, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageImplicitRing2"] = { affix = "", "Adds (3-4) to (10-14) Physical Damage to Attacks", statOrder = { 1266 }, level = 100, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageImplicitQuiver1"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 7, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageImplicitQuiver1New"] = { affix = "", "Adds 1 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 5, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageImplicitQuiver6New"] = { affix = "", "Adds (7-9) to (13-16) Physical Damage to Attacks", statOrder = { 1266 }, level = 39, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageImplicitQuiver12New"] = { affix = "", "Adds (12-15) to (24-27) Physical Damage to Attacks", statOrder = { 1266 }, level = 77, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageImplicitQuiver6_"] = { affix = "", "1 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 7, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageImplicitQuiverDescent"] = { affix = "", "1 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageImplicitQuiver11"] = { affix = "", "6 to 12 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 35, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueBelt4"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueBodyStr2"] = { affix = "", "Adds 2 to 4 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueBodyDex2"] = { affix = "", "Your Attacks deal -3 Physical Damage", statOrder = { 2466 }, level = 1, group = "DewathsHidePhysicalDamageDealt", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["AddedPhysicalDamageUniqueBodyDex4"] = { affix = "", "Adds 5 to 12 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueHelmetStr3"] = { affix = "", "Adds 40 to 60 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueRing8"] = { affix = "", "Adds 5 to 9 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Adds 20 to 30 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueQuiver3"] = { affix = "", "(10-14) to (19-24) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueQuiver8"] = { affix = "", "6 to 10 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueShieldDex6"] = { affix = "", "Adds (8-12) to (15-20) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueJewel9"] = { affix = "", "Adds 3 to 7 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueQuiver9"] = { affix = "", "(8-10) to (14-16) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueShieldStrDex3"] = { affix = "", "Adds 4 to 8 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueRing37"] = { affix = "", "Adds (5-10) to (11-15) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueBootsStr3"] = { affix = "", "Adds (2-5) to (7-10) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique___1"] = { affix = "", "Adds 5 to 10 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueAmulet25"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique__2"] = { affix = "", "Adds (5-15) to (25-50) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique__3"] = { affix = "", "Adds 10 to 20 Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique__4"] = { affix = "", "Adds 1 to (15-20) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique__5"] = { affix = "", "Adds (5-8) to (12-16) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique__6_"] = { affix = "", "Adds (4-10) to (14-36) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique__8"] = { affix = "", "Adds (8-12) to (15-20) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique__9_"] = { affix = "", "Adds (5-7) to (11-12) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique__10"] = { affix = "", "Adds (13-18) to (26-32) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique__11__"] = { affix = "", "Adds (2-3) to (22-26) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique__12"] = { affix = "", "Adds (8-12) to (18-24) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUnique__13"] = { affix = "", "Adds (6-10) to (16-22) Physical Damage to Attacks", statOrder = { 1266 }, level = 1, group = "PhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__1"] = { affix = "", "Adds (15-20) to (30-40) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueSceptre9"] = { affix = "", "Adds (8-13) to (26-31) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueTwoHandAxe3"] = { affix = "", "Adds 5 to 10 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueRapier2"] = { affix = "", "Adds 10 to 15 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamagePercentUniqueClaw4"] = { affix = "", "Adds 2 to 10 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueTwoHandMace6"] = { affix = "", "Adds (43-56) to (330-400) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueTwoHandMace7"] = { affix = "", "Adds 5 to 25 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandSword5"] = { affix = "", "Adds (60-70) to (71-80) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe3"] = { affix = "", "Adds (10-15) to (25-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueTwoHandAxe7"] = { affix = "", "Adds (310-330) to (370-390) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueStaff7"] = { affix = "", "Adds (135-145) to (160-175) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueDescentOneHandSword1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueDescentClaw1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe5"] = { affix = "", "Adds (11-14) to (18-23) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueBow7"] = { affix = "", "Adds (25-35) to (36-45) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueBow5"] = { affix = "", "Adds (15-20) to (25-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueTwoHandSword8"] = { affix = "", "Adds (65-75) to (100-110) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandMace5"] = { affix = "", "Adds (5-10) to (15-23) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueSceptre10"] = { affix = "", "Adds (35-46) to (85-128) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandSword11"] = { affix = "", "Adds (5-10) to (13-20) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueWand9"] = { affix = "", "Adds (5-8) to (13-17) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__6"] = { affix = "", "Adds (60-80) to (150-180) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__7"] = { affix = "", "Adds (50-70) to (135-165) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__8"] = { affix = "", "Adds (35-40) to (55-60) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__9"] = { affix = "", "Adds (24-30) to (34-40) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__10"] = { affix = "", "Adds (5-8) to (15-20) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__11"] = { affix = "", "Adds (30-38) to (40-50) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__12"] = { affix = "", "Adds (30-45) to (80-100) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__13"] = { affix = "", "Adds (25-35) to (50-65) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__14"] = { affix = "", "Adds (40-50) to (130-150) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__15"] = { affix = "", "Adds (90-115) to (230-260) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__16_"] = { affix = "", "Adds (10-16) to (45-60) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__17_"] = { affix = "", "Adds (6-12) to (20-25) Physical Damage", statOrder = { 1276 }, level = 50, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__18"] = { affix = "", "Adds (30-40) to (70-80) Physical Damage", statOrder = { 1276 }, level = 40, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__19"] = { affix = "", "Adds (15-25) to (50-60) Physical Damage", statOrder = { 1276 }, level = 45, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__20_"] = { affix = "", "Adds (10-20) to (30-40) Physical Damage", statOrder = { 1276 }, level = 46, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__21"] = { affix = "", "Adds (90-110) to (145-170) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__22"] = { affix = "", "Adds (80-95) to (220-240) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__23_"] = { affix = "", "Adds (35-50) to (100-125) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__24"] = { affix = "", "Adds (100-130) to (360-430) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__25"] = { affix = "", "Adds (8-13) to (20-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__26"] = { affix = "", "Adds (70-80) to (340-375) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__27"] = { affix = "", "Adds (80-115) to (150-205) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__28"] = { affix = "", "Adds (225-265) to (315-385) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__29___"] = { affix = "", "Adds (80-100) to (200-225) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__30_"] = { affix = "", "Adds (45-60) to (100-120) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__31"] = { affix = "", "Adds (220-240) to (270-300) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__32"] = { affix = "", "Adds (94-98) to (115-121) Physical Damage", statOrder = { 1276 }, level = 77, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__33_"] = { affix = "", "Adds (242-260) to (268-285) Physical Damage", statOrder = { 1276 }, level = 75, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__34"] = { affix = "", "Adds (11-14) to (17-21) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__35"] = { affix = "", "Adds (83-91) to (123-130) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__36"] = { affix = "", "Adds (70-85) to (110-118) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__37"] = { affix = "", "Adds (42-47) to (66-71) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhyiscalDamageUnique__38"] = { affix = "", "Adds (25-35) to (45-55) Physical Damage", statOrder = { 1276 }, level = 75, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhyiscalDamageUnique__39"] = { affix = "", "Adds (85-110) to (135-150) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhyiscalDamageUnique__40__"] = { affix = "", "Adds (16-22) to (40-45) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhyiscalDamageUnique__41_"] = { affix = "", "Adds (40-65) to (70-100) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhyiscalDamageUnique__42"] = { affix = "", "Adds (20-25) to (40-50) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhyiscalDamageUnique__43"] = { affix = "", "Adds (5-9) to (13-18) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhyiscalDamageUnique__44"] = { affix = "", "Adds (20-30) to (40-50) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedFireDamageImplicitQuiver1"] = { affix = "", "Adds 2 to 4 Fire Damage to Attacks", statOrder = { 1360 }, level = 2, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageImplicitQuiver2New"] = { affix = "", "Adds 3 to 5 Fire Damage to Attacks", statOrder = { 1360 }, level = 12, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageImplicitQuiver9New"] = { affix = "", "Adds (12-15) to (24-27) Fire Damage to Attacks", statOrder = { 1360 }, level = 57, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageImplicitQuiver10"] = { affix = "", "4 to 8 Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 28, group = "FireDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageUniqueQuiver1a"] = { affix = "", "5 to 10 Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 1, group = "FireDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageUniqueBootsStrDex1"] = { affix = "", "Adds 12 to 24 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageUniqueGlovesInt1"] = { affix = "", "Adds 4 to 8 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageUniqueAmulet7"] = { affix = "", "Adds (18-24) to (32-40) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageUniqueBodyInt5"] = { affix = "", "Adds (2-4) to (5-9) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedFireDamageUniqueRing10"] = { affix = "", "Adds (8-15) to (20-28) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageUniqueRing20"] = { affix = "", "Adds (20-25) to (30-50) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedFireDamageUniqueBelt10"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageUniqueRing31"] = { affix = "", "Adds (20-25) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedFireDamageUniqueRing28"] = { affix = "", "Adds (12-15) to (25-30) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageUniqueShieldStr3"] = { affix = "", "Adds (12-15) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedFireDamageUniqueShieldDemigods"] = { affix = "", "Adds 10 to 20 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageUniqueRing36"] = { affix = "", "Adds (8-12) to (20-30) Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedFireDamageUnique__1_"] = { affix = "", "Adds (16-20) to (25-30) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedFireDamageUnique__2"] = { affix = "", "Adds (19-22) to (30-35) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedFireDamageUnique__3"] = { affix = "", "Adds (25-30) to (40-45) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedFireDamageUnique__4"] = { affix = "", "Adds 40 to 75 Fire Damage to Attacks", statOrder = { 1360 }, level = 1, group = "FireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AddedColdDamageImplicitQuiver1"] = { affix = "", "Adds 2 to 3 Cold Damage to Attacks", statOrder = { 1369 }, level = 2, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUniqueBodyDex1"] = { affix = "", "(105-145) to (160-200) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 47, group = "AddedColdDamageWithBowsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUniqueDexHelmet1"] = { affix = "", "Adds 15 to 25 Cold Damage to Attacks", statOrder = { 1369 }, level = 15, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUniqueBodyInt5"] = { affix = "", "Adds (2-4) to (5-9) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageUniqueBow9"] = { affix = "", "Adds (48-60) to (72-90) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUniqueRing18"] = { affix = "", "Adds (20-25) to (30-50) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageUniqueBelt10"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUniqueRing30"] = { affix = "", "Adds (7-10) to (15-20) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 25, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageUniqueGlovesStrInt3_"] = { affix = "", "Adds (60-72) to (88-100) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUniqueShieldStrDex3"] = { affix = "", "Adds 12 to 15 Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUnique__2"] = { affix = "", "Adds (16-20) to (25-30) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageUnique__3"] = { affix = "", "Adds (19-22) to (30-35) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageUnique__4"] = { affix = "", "Adds (25-30) to (40-45) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageUnique__5"] = { affix = "", "Adds (26-32) to (42-48) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUnique__6"] = { affix = "", "Adds (12-15) to (25-30) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUnique__7"] = { affix = "", "Adds (30-40) to (80-100) Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUnique__9"] = { affix = "", "Adds 30 to 65 Cold Damage to Attacks", statOrder = { 1369 }, level = 1, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedColdDamageUnique__10"] = { affix = "", "Adds (15-20) to (25-35) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 25, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageUnique__11"] = { affix = "", "Adds (30-40) to (60-70) Cold Damage to Attacks", statOrder = { 1369 }, level = 71, group = "ColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamageImplicitQuiver1"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks", statOrder = { 1380 }, level = 2, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUniqueHelmetStrInt1"] = { affix = "", "Adds 1 to 30 Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["AddedLightningDamageUniqueBootsStrInt1"] = { affix = "", "Adds 1 to 120 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUniqueGlovesInt1"] = { affix = "", "Adds 1 to 13 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUniqueGlovesDexInt1"] = { affix = "", "Adds (1-4) to (30-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUniqueDagger3"] = { affix = "", "Adds 3 to 30 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLocalLightningDamageUniqueClaw1"] = { affix = "", "Adds 1 to (650-850) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUniqueBow8"] = { affix = "", "Adds 1 to 85 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUniqueBodyInt5_"] = { affix = "", "Adds 1 to (4-12) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["AddedLightningDamageUniqueGlovesDexInt3"] = { affix = "", "Adds 1 to 100 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUniqueBodyInt8"] = { affix = "", "Adds 1 to 40 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUniqueBow9"] = { affix = "", "Adds 1 to (120-150) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUniqueBodyStrDex2"] = { affix = "", "Adds 1 to (20-30) Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUniqueRing19"] = { affix = "", "Adds 1 to (50-70) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 25, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["AddedLightningDamageUniqueBelt10"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUniqueBelt12"] = { affix = "", "Adds 1 to (30-50) Lightning Damage to Attacks", statOrder = { 1380 }, level = 55, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUniqueOneHandSword6"] = { affix = "", "Adds 1 to (550-650) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUnique__1"] = { affix = "", "Adds (1-3) to (42-47) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["AddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (68-72) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["AddedLightningDamageUnique__3"] = { affix = "", "Adds 10 to 130 Lightning Damage to Attacks", statOrder = { 1380 }, level = 1, group = "LightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamageUnique__4"] = { affix = "", "(12-18) to (231-347) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 1, group = "AddedLightningDamageWithWandsForUnique", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedChaosDamageUniqueRing1"] = { affix = "", "Adds (10-15) to (20-25) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageUniqueBootsStrDex4"] = { affix = "", "Adds (6-9) to (12-16) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageUniqueBootsStrInt2"] = { affix = "", "Adds 1 to 80 Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageUniqueQuiver7"] = { affix = "", "Adds (13-18) to (26-32) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageUniqueAmulet23"] = { affix = "", "Adds 19 to 43 Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageUniqueBow12"] = { affix = "", "Adds (50-80) to (130-180) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageUnique__1"] = { affix = "", "Adds 12 to 24 Chaos Damage to Attacks", statOrder = { 1387 }, level = 25, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AddedChaosDamageUnique__2"] = { affix = "", "Adds (7-10) to (15-18) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LifeLeechUniqueRing2"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueRing2"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechImplicitClaw1"] = { affix = "", "8% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadImplicitClaw1"] = { affix = "", "1.6% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechImplicitClaw2"] = { affix = "", "10% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadImplicitClaw2"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechAllAttackDamagePermyriadImplicitClaw2"] = { affix = "", "2% of Attack Damage Leeched as Life", statOrder = { 7986 }, level = 1, group = "LifeLeechLocalAllDamagePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeLeechUniqueTwoHandMace1"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueTwoHandMace1"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechUniqueGlovesStrDex1"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueGlovesStrDex1"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechUniqueShieldDex2"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueShieldDex2"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechUniqueAmulet9"] = { affix = "", "(6-10)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueAmulet9"] = { affix = "", "(1.2-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechUniqueTwoHandAxe4"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueTwoHandAxe4"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechUniqueClaw3"] = { affix = "", "6% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueClaw3"] = { affix = "", "1.2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechUniqueClaw6"] = { affix = "", "15% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueClaw6"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechUniqueRing12"] = { affix = "", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueRing12"] = { affix = "", "(0.6-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechUniqueHelmetInt7"] = { affix = "", "(2-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueHelmetInt7"] = { affix = "", "(0.4-0.8)% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeLeechUniqueBodyStr3"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueBodyStr3"] = { affix = "", "1% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeLeechUniqueBodyStrDex3"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueBodyStrDex3"] = { affix = "", "2% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeLeechUniqueBodyStrInt5"] = { affix = "", "(4-5)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueBodyStrInt5"] = { affix = "", "(0.8-1)% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeLeechUniqueShieldDex5"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueShieldDex5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueHelmetDexInt6"] = { affix = "", "(0.4-0.8)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUnique__2"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUnique__3"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriad__1"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUnique__4"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUnique__5"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUnique__7"] = { affix = "", "(0.3-0.5)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUnique__8"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUnique__9"] = { affix = "", "(2-3)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["AxeBonus1"] = { affix = "Butcher's", "5% increased Physical Damage with Axes", "2% increased Attack Speed with Axes", "3% increased Accuracy Rating with Axes", statOrder = { 1303, 1420, 1438 }, level = 6, group = "AxeBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, }, + ["StaffBonus1"] = { affix = "Monk's", "5% increased Physical Damage with Staves", "2% increased Attack Speed with Staves", "3% increased Accuracy Rating with Staves", statOrder = { 1307, 1421, 1439 }, level = 8, group = "StaffBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, }, + ["ClawBonus1"] = { affix = "Feline", "5% increased Physical Damage with Claws", "2% increased Attack Speed with Claws", "3% increased Accuracy Rating with Claws", statOrder = { 1315, 1422, 1440 }, level = 10, group = "ClawBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, }, + ["DaggerBonus1"] = { affix = "Assassin's", "5% increased Physical Damage with Daggers", "2% increased Attack Speed with Daggers", "3% increased Accuracy Rating with Daggers", statOrder = { 1321, 1423, 1441 }, level = 7, group = "DaggerBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, }, + ["MaceBonus1"] = { affix = "Crusher's", "5% increased Physical Damage with Maces or Sceptres", "2% increased Attack Speed with Maces or Sceptres", "3% increased Accuracy Rating with Maces or Sceptres", statOrder = { 1327, 1424, 1442 }, level = 5, group = "MaceBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, }, + ["BowBonus1"] = { affix = "Archer's", "5% increased Physical Damage with Bows", "2% increased Attack Speed with Bows", "3% increased Accuracy Rating with Bows", statOrder = { 1333, 1425, 1443 }, level = 3, group = "BowBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, }, + ["SwordBonus1"] = { affix = "Blademaster's", "5% increased Physical Damage with Swords", "2% increased Attack Speed with Swords", "3% increased Accuracy Rating with Swords", statOrder = { 1338, 1426, 1444 }, level = 2, group = "SwordBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, }, + ["WandBonus1"] = { affix = "Magician's", "5% increased Physical Damage with Wands", "2% increased Attack Speed with Wands", "3% increased Accuracy Rating with Wands", statOrder = { 1345, 1427, 1445 }, level = 4, group = "WandBonuses", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, }, + ["AccuracyPercentImplicitSword1"] = { affix = "", "40% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AccuracyPercentImplicitSword2"] = { affix = "", "30% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AccuracyPercentImplicit2HSword1"] = { affix = "", "60% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AccuracyPercentImplicit2HSword2_"] = { affix = "", "45% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AccuracyPercentUniqueBow5"] = { affix = "", "(15-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AccuracyPercentUniqueClaw9"] = { affix = "", "15% reduced Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AccuracyPercentUnique__1"] = { affix = "", "100% reduced Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "LocalAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["StaffBlockPercentImplicitStaff1"] = { affix = "", "+20% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffBlockPercentImplicitStaff2"] = { affix = "", "+22% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffBlockPercentImplicitStaff3"] = { affix = "", "+25% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffBlockPercentUniqueStaff7"] = { affix = "", "+6% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffBlockPercentUniqueStaff9"] = { affix = "", "+12% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffBlockPercentUnique__1"] = { affix = "", "+15% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 36, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffBlockPercentUnique__2_"] = { affix = "", "+10% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffBlockPercentUnique__3"] = { affix = "", "+(12-16)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffBlockPercentUnique__4_"] = { affix = "", "+5% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffBlockPercentUnique__5"] = { affix = "", "+15% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1151 }, level = 1, group = "StaffBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffSpellBlockPercentImplicitStaff__1"] = { affix = "", "+20% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1150 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffSpellBlockPercent2"] = { affix = "", "+22% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1150 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StaffSpellBlockPercent3"] = { affix = "", "+25% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1150 }, level = 1, group = "StaffSpellBlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockPercentUniqueHelmetStrDex4"] = { affix = "", "6% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockPercentUniqueAmulet16"] = { affix = "", "(10-15)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockPercentUniqueDescentStaff1"] = { affix = "", "16% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockPercentUniqueQuiver4"] = { affix = "", "(20-24)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 35, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockPercentMarakethDaggerImplicit1"] = { affix = "", "4% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockPercentMarakethDaggerImplicit2_"] = { affix = "", "6% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockPercentUnique__1"] = { affix = "", "(8-12)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockPercentUnique__2"] = { affix = "", "20% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockPercentUnique__3"] = { affix = "", "(4-6)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 40, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ElementalDamagePercentImplicitSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptre2"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptre3"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew2"] = { affix = "", "12% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew3"] = { affix = "", "12% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew4"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew5"] = { affix = "", "14% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew6"] = { affix = "", "16% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew7"] = { affix = "", "16% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew8"] = { affix = "", "22% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew9"] = { affix = "", "18% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew10"] = { affix = "", "18% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew11"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew12___"] = { affix = "", "22% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew13"] = { affix = "", "24% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew14"] = { affix = "", "24% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew15"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew16"] = { affix = "", "26% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew17"] = { affix = "", "26% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew18"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew19"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew20"] = { affix = "", "32% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew21__"] = { affix = "", "32% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitSceptreNew22"] = { affix = "", "40% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentImplicitAtlasRing_"] = { affix = "", "(15-25)% increased Elemental Damage", statOrder = { 1980 }, level = 100, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentUnique__1"] = { affix = "", "(15-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamagePercentUnique__2"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["IncreasedPhysicalDamagePercentImplicitBelt1"] = { affix = "", "(12-24)% increased Global Physical Damage", statOrder = { 1231 }, level = 2, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe1"] = { affix = "", "8% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe2"] = { affix = "", "12% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueRing1"] = { affix = "", "5% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueHelmetStr1"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueQuiver2"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1231 }, level = 7, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueBelt2"] = { affix = "", "(25-40)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueShieldStrDex1"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueHelmetStrDex2"] = { affix = "", "10% reduced Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueGlovesStr2"] = { affix = "", "10% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueBelt9d"] = { affix = "", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueDescentClaw1"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueShieldDexInt1"] = { affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueBelt13"] = { affix = "", "(15-25)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueJewel9"] = { affix = "", "10% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueBootsDexInt4"] = { affix = "", "20% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueSwordImplicit1"] = { affix = "", "30% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUniqueBowImplicit1"] = { affix = "", "(20-24)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUnique__1"] = { affix = "", "(8-12)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUnique__2"] = { affix = "", "(8-12)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUnique__3"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 55, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUnique__4"] = { affix = "", "100% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUnique__5"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUnique__6"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePercentUnique__7"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword2"] = { affix = "", "150% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe1"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword1"] = { affix = "", "50% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow1"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow3"] = { affix = "", "(90-105)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace1"] = { affix = "", "(140-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace2"] = { affix = "", "200% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword1"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueDagger2"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe2"] = { affix = "", "(100-125)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword3"] = { affix = "", "(180-220)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueRapier1"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueWand1"] = { affix = "", "(250-275)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3"] = { affix = "", "(500-600)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueDagger3"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace1"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow4"] = { affix = "", "30% less Damage", statOrder = { 2456 }, level = 1, group = "QuillRainWeaponDamageFinalPercent", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow5"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe3"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace4"] = { affix = "", "150% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow6"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow7"] = { affix = "", "(70-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw1"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueSceptre1"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw2"] = { affix = "", "(75-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe4"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw3"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace5"] = { affix = "", "(200-220)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueRapier2"] = { affix = "", "(120-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw4"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw5"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueClaw6"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalReducedPhysicalDamagePercentUniqueBow8"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe1"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword4"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe5"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueSceptre5"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueBow10"] = { affix = "", "(50-70)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace7"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueDescentStaff1"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueDescentBow1"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace3"] = { affix = "", "(80-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueDagger9"] = { affix = "", "(250-270)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword8"] = { affix = "", "(230-260)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe5"] = { affix = "", "(130-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword7"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe8"] = { affix = "", "(120-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword8"] = { affix = "", "(30-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueStaff9"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamageUniqueSceptre9"] = { affix = "", "20% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamageUniqueOneHandMace4"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamageUniqueOneHandMace5"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamageUniqueOneHandSceptre10"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamageUniqueOneHandSword11"] = { affix = "", "(80-95)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamageUniqueClaw8"] = { affix = "", "(160-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueWand9"] = { affix = "", "(80-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueWand9x"] = { affix = "", "(110-170)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9"] = { affix = "", "(300-360)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueDagger11"] = { affix = "", "(50-70)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueDagger12"] = { affix = "", "(20-40)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique13"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe8"] = { affix = "", "(30-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword12"] = { affix = "", "(20-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandSword13"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace6"] = { affix = "", "(300-360)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace7"] = { affix = "", "(160-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandMace8"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueStaff14"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueSceptre2"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace8"] = { affix = "", "(150-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__1"] = { affix = "", "(110-130)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__2"] = { affix = "", "(100-125)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhyiscalDamagePercentUnique__3"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__4"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__5"] = { affix = "", "(140-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__6"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__7"] = { affix = "", "(130-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__8"] = { affix = "", "(40-60)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__9"] = { affix = "", "(170-190)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__10"] = { affix = "", "(100-120)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__11_"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__12"] = { affix = "", "(80-100)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__13"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__14"] = { affix = "", "(35-50)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__15"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__16"] = { affix = "", "(260-310)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__17_"] = { affix = "", "(170-190)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__18"] = { affix = "", "(220-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__19"] = { affix = "", "(400-450)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__20"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__21"] = { affix = "", "(160-190)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__22"] = { affix = "", "(230-270)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__23"] = { affix = "", "(200-240)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__24"] = { affix = "", "(280-320)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__25"] = { affix = "", "(170-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__26"] = { affix = "", "100% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__27"] = { affix = "", "(140-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__28__"] = { affix = "", "(150-170)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__29"] = { affix = "", "(180-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__30"] = { affix = "", "(185-215)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__31"] = { affix = "", "(180-220)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__33"] = { affix = "", "(140-152)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__34___"] = { affix = "", "(180-210)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__35"] = { affix = "", "(180-210)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__36_"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__37__"] = { affix = "", "(130-150)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__38"] = { affix = "", "(165-195)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__39"] = { affix = "", "(175-200)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__40"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__41___"] = { affix = "", "(140-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__42"] = { affix = "", "(230-260)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__43"] = { affix = "", "(200-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__44"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__45"] = { affix = "", "(700-800)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__46"] = { affix = "", "(150-180)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__47"] = { affix = "", "(300-350)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__48"] = { affix = "", "(100-140)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__49"] = { affix = "", "(250-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__50"] = { affix = "", "(150-250)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__52"] = { affix = "", "(50-75)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__53"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__54"] = { affix = "", "(180-240)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__55"] = { affix = "", "(130-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__56"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__57"] = { affix = "", "(120-160)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__58"] = { affix = "", "(90-130)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalReducedPhysicalDamagePercentUniqueTwoHandSword6"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalReducedPhysicalDamagePercentUniqueWand6"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalReducedPhysicalDamagePercentUniqueOneHandSword7"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalReducedPhysicalDamagePercentUnique__1"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalReducedPhysicalDamagePercentUnique__2"] = { affix = "", "No Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalNoWeaponPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["IncreasedPhysicalDamagePercentOnLowLifeUniqueOneHandSword1"] = { affix = "", "100% increased Damage when on Low Life", statOrder = { 1215 }, level = 1, group = "PhysicalDamagePercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ReducedPhysicalDamagePercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "50% reduced Damage when on Low Life", statOrder = { 1215 }, level = 1, group = "PhysicalDamagePercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["LocalAddedPhysicalDamageUniqueBow1"] = { affix = "", "Adds (7-14) to (24-34) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandSword1"] = { affix = "", "Adds 2 to 6 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueClaw3"] = { affix = "", "Adds 25 to 30 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageOneHandAxe1"] = { affix = "", "Adds 30 to 40 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueDescentDagger1"] = { affix = "", "Adds 1 to 4 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueDescentOneHandAxe1"] = { affix = "", "Adds 2 to 4 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueDescentStaff1"] = { affix = "", "Adds 2 to 4 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueDagger2"] = { affix = "", "Adds 12 to 24 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueDagger8"] = { affix = "", "Adds (140-155) to (210-235) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueSceptre7"] = { affix = "", "Adds (65-85) to (100-160) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandSword9"] = { affix = "", "Adds (30-50) to (65-80) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandSword10"] = { affix = "", "Adds (3-6) to (33-66) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueBow11"] = { affix = "", "Adds (12-16) to (20-24) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueDagger11"] = { affix = "", "Adds (1-2) to (3-5) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueDagger12"] = { affix = "", "Adds (3-6) to (9-13) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueClaw9"] = { affix = "", "Adds (2-6) to (16-22) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe7"] = { affix = "", "Adds (5-15) to (20-25) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe8"] = { affix = "", "Adds (5-9) to (13-17) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandSword12"] = { affix = "", "Adds (3-4) to (5-8) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandSword13"] = { affix = "", "Adds (5-8) to (10-14) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUniqueOneHandMace8"] = { affix = "", "Adds 10 to 15 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique14"] = { affix = "", "Adds (10-16) to (12-30) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamage__1"] = { affix = "", "Adds (7-10) to (15-25) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__2_"] = { affix = "", "Adds (25-50) to (85-125) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__3"] = { affix = "", "Adds 20 to 50 Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__4"] = { affix = "", "Adds (18-22) to (36-44) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__5"] = { affix = "", "Adds (8-12) to (16-24) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__6_"] = { affix = "", "Adds (26-32) to (36-42) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAddedPhysicalDamageUnique__7_"] = { affix = "", "Adds (75-92) to (125-154) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedEnergyShieldPercentUniqueBodyStrInt1"] = { affix = "", "60% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUniqueIntHelmet1"] = { affix = "", "+(150-225) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUniqueBootsInt1"] = { affix = "", "+(5-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUniqueShieldInt1"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUniqueShieldInt2"] = { affix = "", "(40-80)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUniqueBodyInt8"] = { affix = "", "(125-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBootsInt2"] = { affix = "", "+(10-20) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueGlovesInt1"] = { affix = "", "+18 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueGlovesInt2"] = { affix = "", "+32 to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt4"] = { affix = "", "50% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBootsInt4"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBodyInt1"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBodyInt3"] = { affix = "", "(210-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBodyInt4"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUniqueBootsInt5"] = { affix = "", "(140-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBodyInt7"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueGlovesInt4"] = { affix = "", "(40-60)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueGlovesInt5"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueGlovesInt6"] = { affix = "", "(180-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueGlovesDexInt3"] = { affix = "", "+(25-30) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt5_"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt6"] = { affix = "", "+(40-60) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt7"] = { affix = "", "(120-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueShieldInt3"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueBodyStrDexInt1g"] = { affix = "", "(270-300)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt10"] = { affix = "", "(130-170)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUniqueBootsInt6"] = { affix = "", "(50-80)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent__1"] = { affix = "", "(250-300)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent__2"] = { affix = "", "(210-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercent___3"] = { affix = "", "(120-160)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique___4_"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__5"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__6"] = { affix = "", "(80-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__7"] = { affix = "", "(170-230)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__8"] = { affix = "", "(475-600)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__9"] = { affix = "", "(240-260)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__10"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__11"] = { affix = "", "(100-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__12"] = { affix = "", "(120-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__13"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__14"] = { affix = "", "(130-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__15_"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__16"] = { affix = "", "(150-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__17"] = { affix = "", "(120-140)% increased Energy Shield", statOrder = { 1560 }, level = 84, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__18"] = { affix = "", "(220-250)% increased Energy Shield", statOrder = { 1560 }, level = 82, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__19"] = { affix = "", "(180-220)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__20_"] = { affix = "", "(100-130)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__21"] = { affix = "", "(180-220)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__22"] = { affix = "", "(200-230)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__23"] = { affix = "", "(240-280)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__24"] = { affix = "", "(180-230)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__25_"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__26"] = { affix = "", "(60-80)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__27"] = { affix = "", "(80-120)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__28__"] = { affix = "", "(100-150)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__29"] = { affix = "", "(80-130)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__30___"] = { affix = "", "(300-350)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__31____"] = { affix = "", "(140-180)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__32"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__33"] = { affix = "", "(200-250)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentUniqueOneHandSword2"] = { affix = "", "(40-50)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrInt1"] = { affix = "", "60% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1"] = { affix = "", "+(75-100) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr1"] = { affix = "", "(50-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr1"] = { affix = "", "+(10-20) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr2"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr2"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr3"] = { affix = "", "(120-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStrDex3"] = { affix = "", "+(35-45) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStrDex3"] = { affix = "", "+(200-300) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr3"] = { affix = "", "(180-220)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrDex1"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr4"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStrDex2"] = { affix = "", "+(20-40) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStrInt2"] = { affix = "", "+(180-220) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5"] = { affix = "", "+(400-600) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueGlovesStr3"] = { affix = "", "(200-220)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStrDexInt1a"] = { affix = "", "(380-420)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueHelmetStrDex6"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStr6"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBootsStr3"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr_1"] = { affix = "", "+(100-150) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(100-140)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique6"] = { affix = "", "(90-140)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique7"] = { affix = "", "(120-180)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique8_"] = { affix = "", "(90-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__2"] = { affix = "", "+(120-160) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__3"] = { affix = "", "(350-400)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__4"] = { affix = "", "100% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__5"] = { affix = "", "(165-205)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__6"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__7"] = { affix = "", "(60-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__8"] = { affix = "", "(50-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__9"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__11"] = { affix = "", "(130-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__13"] = { affix = "", "(100-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__14_"] = { affix = "", "(180-220)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__15"] = { affix = "", "(80-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__16"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__17"] = { affix = "", "(150-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__18"] = { affix = "", "(150-180)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__20"] = { affix = "", "(60-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__21"] = { affix = "", "(50-80)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__23"] = { affix = "", "(120-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__24"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__25"] = { affix = "", "(150-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__26"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__27"] = { affix = "", "(60-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__28"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__29"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__30"] = { affix = "", "(100-150)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__31"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__32"] = { affix = "", "(100-140)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__33"] = { affix = "", "(100-160)% increased Armour", statOrder = { 1542 }, level = 75, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__34"] = { affix = "", "(50-100)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__35"] = { affix = "", "(150-230)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__36UNUSED"] = { affix = "", "(120-200)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__37"] = { affix = "", "(80-120)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentUnique__38"] = { affix = "", "(120-240)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingTransformedUnique__1"] = { affix = "", "+2000 to Armour", statOrder = { 1540 }, level = 38, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUnique__1"] = { affix = "", "+(100-120) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingUnique__2"] = { affix = "", "(200-250)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex1"] = { affix = "", "(140-220)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueDexHelmet2"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDexInt1"] = { affix = "", "(80-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueGlovesDex1"] = { affix = "", "+(40-50) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex1"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueShieldDex1"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDex1"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDex3"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex2"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex3"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex4"] = { affix = "", "(50-70)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex3"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueShieldDex3"] = { affix = "", "(180-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueGlovesDex2"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex5"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex5"] = { affix = "", "(200-250)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex3"] = { affix = "", "+(35-45) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueHelmetDex6"] = { affix = "", "150% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingUniqueBodyDex6"] = { affix = "", "+(240-380) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyDex6"] = { affix = "", "(200-240)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDex5"] = { affix = "", "+(20-30) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionRatingUniqueBodyStrDex3"] = { affix = "", "(180-220)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionRatingUnique__1"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDex6"] = { affix = "", "(160-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsStrDex4"] = { affix = "", "+(40-60) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingUniqueBodyDex7"] = { affix = "", "+(120-180) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingUnique__1"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingUnique__2"] = { affix = "", "+(600-700) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingUnique__3"] = { affix = "", "+(400-500) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingUnique__4"] = { affix = "", "+(350-500) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingUnique__5"] = { affix = "", "+(80-120) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueShieldDex4"] = { affix = "", "(30-50)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueGlovesDexInt5"] = { affix = "", "(150-180)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsDex7"] = { affix = "", "180% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyStrDexInt1c"] = { affix = "", "(380-420)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueShieldDex5"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBodyStrDex5"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUniqueBootsStrDex5"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvationRatingPercentUniqueBootsDex9"] = { affix = "", "(20-40)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__1"] = { affix = "", "(160-220)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__2"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__3"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__4"] = { affix = "", "(150-200)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__5"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__6"] = { affix = "", "(300-340)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__7"] = { affix = "", "(100-130)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__8"] = { affix = "", "(80-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__9"] = { affix = "", "(130-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__10"] = { affix = "", "(100-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__11"] = { affix = "", "(450-500)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__12"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__13"] = { affix = "", "(110-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__14"] = { affix = "", "(120-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__15_"] = { affix = "", "(60-80)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__16"] = { affix = "", "(60-120)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__17"] = { affix = "", "(120-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__18"] = { affix = "", "(170-250)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__19"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__20"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingPercentUnique__21"] = { affix = "", "(100-150)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt1"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt1"] = { affix = "", "(100-150)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt2"] = { affix = "", "(120-150)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt1"] = { affix = "", "(20-60)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2"] = { affix = "", "(180-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt3"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4"] = { affix = "", "(300-400)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt5"] = { affix = "", "(240-300)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt3"] = { affix = "", "(140-160)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt4"] = { affix = "", "(120-140)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt6"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1e"] = { affix = "", "(200-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1h"] = { affix = "", "(200-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt5"] = { affix = "", "(220-240)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt3"] = { affix = "", "(160-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergySheildUniqueGlovesStrInt2"] = { affix = "", "(150-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt5"] = { affix = "", "(60-100)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt6"] = { affix = "", "(70-80)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__1"] = { affix = "", "(400-500)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt6"] = { affix = "", "(150-170)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt7"] = { affix = "", "(150-170)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__2"] = { affix = "", "(50-75)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__3"] = { affix = "", "(140-190)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__4"] = { affix = "", "200% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__5"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__6"] = { affix = "", "(240-300)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__7"] = { affix = "", "(60-140)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__8"] = { affix = "", "(200-250)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__9_"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__10_"] = { affix = "", "(140-180)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__11"] = { affix = "", "(150-190)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__12"] = { affix = "", "(140-220)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__13_"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__14"] = { affix = "", "(250-300)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__15"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__16"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__17_"] = { affix = "", "(100-140)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__18_"] = { affix = "", "(200-250)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__19"] = { affix = "", "333% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__20"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__21"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__22"] = { affix = "", "1000% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__23_"] = { affix = "", "(70-130)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__24"] = { affix = "", "(120-160)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__25"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__26"] = { affix = "", "(150-250)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__27"] = { affix = "", "(80-120)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__28"] = { affix = "", "(50-70)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEnergyShieldUnique__30"] = { affix = "", "(40-80)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 97, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourAndEvasionUniqueStrDexHelmet1"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex2"] = { affix = "", "(40-60)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex1"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex2"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex4"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueBootsStrDex3"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex2"] = { affix = "", "(90-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueHelmetStrDex5"] = { affix = "", "(60-80)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex4"] = { affix = "", "(120-140)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueBodyStrDexInt1b"] = { affix = "", "(200-220)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex4"] = { affix = "", "(160-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex5"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueBodyStrDex5"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueGlovesStrDex6"] = { affix = "", "(90-110)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex3"] = { affix = "", "(90-130)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex4"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUniqueShieldStrDex5"] = { affix = "", "(170-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__1"] = { affix = "", "(120-160)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__2"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__3_"] = { affix = "", "(40-70)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__4"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__5_"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__6"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__7"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__8_"] = { affix = "", "(100-140)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__9"] = { affix = "", "(170-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__10_"] = { affix = "", "(80-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__11"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__12"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__13"] = { affix = "", "(150-300)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__14"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__15_"] = { affix = "", "(120-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__16__"] = { affix = "", "(300-400)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__17_"] = { affix = "", "(150-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__18"] = { affix = "", "(200-300)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__19_"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__20"] = { affix = "", "(200-250)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__21"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__22"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__23"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__24"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__25"] = { affix = "", "(60-100)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__26"] = { affix = "", "(100-150)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__27"] = { affix = "", "(80-120)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedArmourAndEvasionUnique__28"] = { affix = "", "(160-200)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt1"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt3"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2"] = { affix = "", "(300-400)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1d"] = { affix = "", "(200-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1f"] = { affix = "", "(200-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt5"] = { affix = "", "(245-280)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueGlovesDexInt6"] = { affix = "", "(100-130)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3"] = { affix = "", "(220-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt4"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt6"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__1"] = { affix = "", "(120-140)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__2"] = { affix = "", "(90-110)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__3"] = { affix = "", "(230-260)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__4"] = { affix = "", "(140-170)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__5"] = { affix = "", "(140-180)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__6_"] = { affix = "", "(100-120)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__7"] = { affix = "", "(130-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__8"] = { affix = "", "(80-100)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__9"] = { affix = "", "(500-600)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__10"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__11_"] = { affix = "", "(160-180)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__12"] = { affix = "", "(180-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__13"] = { affix = "", "(120-170)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__14"] = { affix = "", "(160-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__15"] = { affix = "", "(260-300)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__16"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__17"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__18"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__19___"] = { affix = "", "(250-300)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__20"] = { affix = "", "(300-400)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__21_"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__22"] = { affix = "", "(140-180)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__23"] = { affix = "", "(200-250)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__24"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__25"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__26"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__27"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__28"] = { affix = "", "(80-120)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__29"] = { affix = "", "(350-400)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__30_"] = { affix = "", "(400-500)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__31"] = { affix = "", "(120-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__32_"] = { affix = "", "(160-220)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__33"] = { affix = "", "(140-160)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__34"] = { affix = "", "(120-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__35"] = { affix = "", "(150-200)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__36"] = { affix = "", "(100-150)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__37"] = { affix = "", "(80-120)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__39"] = { affix = "", "(120-160)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalIncreasedArmourEvasionEnergyShieldUnique__1_"] = { affix = "", "(250-350)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueHelmetInt2"] = { affix = "", "+(30-50) to maximum Energy Shield", "(10-15)% increased Stun and Block Recovery", statOrder = { 1559, 1902 }, level = 1, group = "IncreasedEnergyShieldAndStunRecovery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3"] = { affix = "", "(100-140)% increased Energy Shield", "(150-200)% increased Stun and Block Recovery", statOrder = { 1560, 1902 }, level = 1, group = "LocalEnergyShieldAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentAndStunRecoveryUnique__1"] = { affix = "", "+(100-120) to maximum Energy Shield", "(30-40)% increased Stun and Block Recovery", statOrder = { 1559, 1902 }, level = 1, group = "IncreasedEnergyShieldAndStunRecovery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2"] = { affix = "", "(100-120)% increased Armour", "10% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedArmourPercentAndStunRecoveryUniqueShieldStr1"] = { affix = "", "(180-220)% increased Armour", "20% increased Stun and Block Recovery", statOrder = { 1542, 1902 }, level = 1, group = "LocalPhysicalDamageReductionRatingAndStunRecoveryPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["LocalIncreasedEvasionPercentAndStunRecoveryUniqueDexHelmet1"] = { affix = "", "70% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalAddedFireDamageUniqueTwoHandAxe1"] = { affix = "", "Adds (16-21) to (32-38) Fire Damage", statOrder = { 1362 }, level = 37, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUniqueRapier1"] = { affix = "", "Adds 3 to 7 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUniqueBow6"] = { affix = "", "Adds 25 to 50 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUniqueTwoHandSword6"] = { affix = "", "Adds (425-475) to (550-600) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUniqueDescentOneHandMace1"] = { affix = "", "Adds 3 to 6 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUniqueStaff13"] = { affix = "", "Adds (10-15) to (20-25) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUniqueOneHandAxe7"] = { affix = "", "Adds (5-15) to (20-25) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUnique__2"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUnique__3"] = { affix = "", "Adds (315-360) to (450-540) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUnique__4"] = { affix = "", "Adds (223-250) to (264-280) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUnique__5__"] = { affix = "", "Adds (130-160) to (220-240) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUnique__6"] = { affix = "", "Adds (30-45) to (60-80) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUnique__7"] = { affix = "", "Adds (76-98) to (161-176) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageUnique__8"] = { affix = "", "Adds (180-230) to (310-360) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageImplicitE1_"] = { affix = "", "Adds (46-55) to (69-83) Fire Damage", statOrder = { 1362 }, level = 30, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageImplicitE2_"] = { affix = "", "Adds (80-97) to (126-144) Fire Damage", statOrder = { 1362 }, level = 50, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedFireDamageImplicitE3_"] = { affix = "", "Adds (121-133) to (184-197) Fire Damage", statOrder = { 1362 }, level = 70, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalAddedColdDamageUniqueTwoHandMace2"] = { affix = "", "Adds 11 to 23 Cold Damage", statOrder = { 1371 }, level = 19, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUniqueTwoHandSword2"] = { affix = "", "Adds 35 to 70 Cold Damage", statOrder = { 1371 }, level = 18, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUniqueClaw5"] = { affix = "", "Adds 25 to 50 Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUniqueDescentOneHandAxe1"] = { affix = "", "Adds 2 to 4 Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUniqueOneHandMace4_"] = { affix = "", "Adds (10-20) to (30-50) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUniqueStaff13"] = { affix = "", "Adds (10-15) to (20-25) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUniqueStaff14"] = { affix = "", "Adds (25-35) to (45-60) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUnique__2"] = { affix = "", "Adds (26-32) to (36-42) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUnique__3"] = { affix = "", "Adds (30-38) to (40-50) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUnique__4"] = { affix = "", "Adds (180-210) to (240-280) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUnique__5"] = { affix = "", "Adds (80-100) to (160-200) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUnique__6_"] = { affix = "", "Adds (310-350) to (460-500) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUnique__7"] = { affix = "", "Adds (160-190) to (280-320) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUnique__8"] = { affix = "", "Adds (130-150) to (270-300) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUnique__9_"] = { affix = "", "Adds (385-440) to (490-545) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUnique__10"] = { affix = "", "Adds (150-200) to (300-350) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedColdDamageUnique__11"] = { affix = "", "Adds (164-204) to (250-300) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["LocalAddedLightningDamageUniqueOneHandSword3"] = { affix = "", "Adds 1 to (210-250) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUniqueBow10"] = { affix = "", "Adds 1 to (600-750) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUniqueDescentTwoHandSword1_"] = { affix = "", "Adds 1 to 9 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUniqueOneHandSword7"] = { affix = "", "Adds 1 to (40-50) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUniqueStaff14"] = { affix = "", "Adds (1-10) to (70-90) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUnique__2"] = { affix = "", "Adds 1 to (35-45) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (45-55) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (50-60) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUnique__5"] = { affix = "", "Adds 1 to (60-70) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUnique__6"] = { affix = "", "Adds 1 to 75 Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LocalAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (550-600) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["IncreasedPhysicalDamageReductionRatingPercentUniqueJewel50"] = { affix = "", "(15-20)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(10-15)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedEvasionRatingPercentUnique__1_"] = { affix = "", "(60-100)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingPercentUnique__2"] = { affix = "", "(15-25)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEnergyShieldPercentUniqueJewel51"] = { affix = "", "(3-6)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentUnique__1"] = { affix = "", "20% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentUnique__2_"] = { affix = "", "(4-6)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentUnique__3"] = { affix = "", "(6-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentUnique__4"] = { affix = "", "5% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentUnique__5"] = { affix = "", "(6-10)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldPercentUnique__6"] = { affix = "", "20% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ReducedEnergyShieldPercentUniqueAmulet13"] = { affix = "", "50% reduced maximum Energy Shield", statOrder = { 1561 }, level = 20, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ReducedEnergyShieldPercentUniqueRing16"] = { affix = "", "25% reduced maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEvasionRatingUniqueQuiver1"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUniqueAmulet7"] = { affix = "", "+(100-150) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUniqueRapier1"] = { affix = "", "+(20-40) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUniqueOneHandSword4"] = { affix = "", "+(400-500) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUniqueAmulet17"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUniqueQuiver3_"] = { affix = "", "+350 to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUniqueOneHandSword9"] = { affix = "", "+(180-200) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUniqueRing30"] = { affix = "", "+(200-300) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUnique___1"] = { affix = "", "+110 to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUnique__2"] = { affix = "", "+300 to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUnique__3"] = { affix = "", "+(1000-1500) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUnique__4"] = { affix = "", "+(300-500) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUnique__5_"] = { affix = "", "+(600-700) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUnique__6_"] = { affix = "", "+(600-1000) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedEvasionRatingUnique__7"] = { affix = "", "+(80-100) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingUniqueBodyInt5"] = { affix = "", "+(30-60) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingUniqueBootsDex8"] = { affix = "", "+(30-50) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalIncreasedEvasionRatingUniqueShieldStrDex2"] = { affix = "", "+(20-40) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["IncreasedPhysicalDamageReductionRatingUniqueRing12"] = { affix = "", "+(260-300) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUniqueAmulet16"] = { affix = "", "+(400-500) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUniqueQuiver4"] = { affix = "", "+(400-450) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUniqueBelt9"] = { affix = "", "+(300-350) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUniqueJewel9"] = { affix = "", "+50 to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUnique__1"] = { affix = "", "+(450-500) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUnique__3"] = { affix = "", "+(400-500) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUnique__2"] = { affix = "", "+(260-300) to Armour", statOrder = { 1540 }, level = 1, group = "LocalPhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUnique__4"] = { affix = "", "+(350-400) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUnique__5"] = { affix = "", "+(180-200) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUnique__6_"] = { affix = "", "+(800-1200) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUnique__7"] = { affix = "", "+(600-700) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUnique__8"] = { affix = "", "+(300-500) to Armour", statOrder = { 1539 }, level = 71, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUnique__9"] = { affix = "", "+(80-100) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUnique__10"] = { affix = "", "+(600-1000) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedPhysicalDamageReductionRatingUnique__11"] = { affix = "", "+(200-400) to Armour", statOrder = { 1539 }, level = 98, group = "PhysicalDamageReductionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["MovementVelocityMarakethBowImplicit1"] = { affix = "", "6% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityMarakethBowImplicit2"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityImplicitShield1"] = { affix = "", "3% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityImplicitShield2"] = { affix = "", "6% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityImplicitShield3"] = { affix = "", "9% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueTwoHandSword1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueAmulet5"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueIntHelmet2"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsInt1"] = { affix = "", "(10-25)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsStrDex1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsInt2"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsDexInt1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsStr1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueGlovesStrDex2"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueShieldStr1"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityImplicitArmour1"] = { affix = "", "3% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueTwoHandSword3"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueHelmetStrDex2"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueTwoHandMace3"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsDex1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsDex2"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsInt4"] = { affix = "", "(5-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBow7"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBodyDex4"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueHelmetStrDex1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueClaw3"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBodyDex5"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsInt5"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueHelmetDex6"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueHelmetInt6"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVeolcityUniqueAmulet12"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVeolcityUniqueBootsDex4"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVeolcityUniqueBodyDex6"] = { affix = "", "25% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVeolcityUniqueBootsDemigods1"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique___6"] = { affix = "", "50% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsDexInt2"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityDescent2Boots1"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsStrDex4"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBodyDex7"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsStrDex3"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueOneHandAxe3"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsStrInt2_"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsDex7"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsA1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsW1"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueOneHandSword9"] = { affix = "", "3% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsStrInt3"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityVictorAmulet"] = { affix = "", "(3-6)% increased Movement Speed", statOrder = { 1798 }, level = 16, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBodyStrDex5_"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBodyStr5"] = { affix = "", "20% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueAmulet20"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueJewel43"] = { affix = "", "4% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueOneHandAxe7"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsDexInt4"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsStrDex5"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsStr3"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUniqueBootsInt6"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__1"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__2"] = { affix = "", "(5-10)% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__3"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__4"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique___5"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__7"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__8"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__9_"] = { affix = "", "(3-5)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__10"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__11"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__12"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__13"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__14"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__15"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__16"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__17__"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__18"] = { affix = "", "15% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__19"] = { affix = "", "(10-20)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__20_"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__21"] = { affix = "", "(1-40)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__22"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__24"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__25"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__26"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__27"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__28"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__29"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__30"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__31"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__32"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__33_"] = { affix = "", "(5-10)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__34"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__35"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__36_"] = { affix = "", "(5-8)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__37"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__38"] = { affix = "", "(1-20)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__39_"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__40"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__42"] = { affix = "", "10% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__43"] = { affix = "", "25% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__44"] = { affix = "", "(5-10)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__45"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__46"] = { affix = "", "(8-12)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__47_"] = { affix = "", "20% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__48"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__49"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__50"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__51"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__52"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__53"] = { affix = "", "(20-30)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__54"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__56"] = { affix = "", "(10-15)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__57"] = { affix = "", "(15-25)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityUnique__58"] = { affix = "", "5% increased Movement Speed", statOrder = { 1798 }, level = 100, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ReducedMovementVelocityUnique__1"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ReducedMovementVelocityUnique__2"] = { affix = "", "10% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ReducedMovementVelocityUnique__3"] = { affix = "", "3% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ReducedMovementVelocityUniqueOneHandMace7"] = { affix = "", "5% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ReducedMovementVelocityUniqueCorruptedJewel2_"] = { affix = "", "15% reduced Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SpellDamageImplicitShield1"] = { affix = "", "(5-10)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageImplicitShield2"] = { affix = "", "(10-15)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageImplicitShield3"] = { affix = "", "(15-20)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageImplicitArmour1"] = { affix = "", "(3-10)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageImplicitGloves1"] = { affix = "", "(12-16)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueHelmetDexInt1"] = { affix = "", "(15-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueGlovesInt2"] = { affix = "", "100% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueShieldInt1"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueShieldStrInt1"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueWand1"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueStaff2"] = { affix = "", "(50-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueSceptre2"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueBodyInt7"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueSceptre5"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueDescentWand1"] = { affix = "", "20% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueWand4"] = { affix = "", "(20-28)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueStaff6"] = { affix = "", "(120-160)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueWand7"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueHelmetInt8"] = { affix = "", "(80-100)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueDagger10"] = { affix = "", "(40-60)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SpellDamageUniqueStaff12"] = { affix = "", "(50-70)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueStaff11_"] = { affix = "", "(40-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueCorruptedJewel3_"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUniqueRing35"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__2"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__3"] = { affix = "", "40% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__4"] = { affix = "", "(20-45)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__5"] = { affix = "", "(75-90)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__6"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__7"] = { affix = "", "(40-50)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__8_"] = { affix = "", "(100-140)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__9"] = { affix = "", "(70-100)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__10"] = { affix = "", "(30-50)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__11"] = { affix = "", "(20-40)% increased Spell Damage", statOrder = { 1223 }, level = 85, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__12"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__13"] = { affix = "", "(20-25)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__14"] = { affix = "", "(30-60)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__15"] = { affix = "", "(150-200)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__16"] = { affix = "", "(30-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__17"] = { affix = "", "(100-150)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageUnique__18"] = { affix = "", "(60-80)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponUniqueDagger1"] = { affix = "", "(150-200)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponUniqueDagger4"] = { affix = "", "(60-70)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponUniqueWand3"] = { affix = "", "80% reduced Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponUniqueTwoHandAxe9"] = { affix = "", "(100-200)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand1"] = { affix = "", "(8-12)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand2"] = { affix = "", "(10-14)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand3"] = { affix = "", "(11-15)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand4"] = { affix = "", "(13-17)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand5"] = { affix = "", "(15-19)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand6"] = { affix = "", "(17-21)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand7"] = { affix = "", "(18-22)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand8"] = { affix = "", "(20-24)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand9"] = { affix = "", "(22-26)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand10"] = { affix = "", "(24-28)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand11"] = { affix = "", "(26-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand12"] = { affix = "", "(27-31)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand13"] = { affix = "", "(29-33)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand14"] = { affix = "", "(31-35)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand15"] = { affix = "", "(33-37)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand16"] = { affix = "", "(35-39)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand17"] = { affix = "", "(36-40)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageOnWeaponImplicitWand18"] = { affix = "", "(38-42)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["TrapThrowingSpeedUnique_1"] = { affix = "", "(6-12)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["NumberOfAdditionalTrapsUnique_1"] = { affix = "", "Can have up to (3-5) additional Traps placed at a time", statOrder = { 2255 }, level = 1, group = "NumberOfAdditionalTraps", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GraspFromBeyondTrapUnique_1"] = { affix = "", "Grants Level 30 Will of the Lords Skill", statOrder = { 693 }, level = 85, group = "GrantsBreachHandTrap", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HeraldOfTheBreachUnique_1"] = { affix = "", "Grants Level 30 Herald of the Hive Skill", statOrder = { 708 }, level = 53, group = "GrantsHeraldOfTheBreach", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SoulcordDiamondShrineUnique_1"] = { affix = "", "You have Diamond Shrine Buff while affected by no Flasks", statOrder = { 592 }, level = 70, group = "SoulcordDiamondShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordGloomShrineUnique__1"] = { affix = "", "You have Gloom Shrine Buff while affected by no Flasks", statOrder = { 594 }, level = 70, group = "SoulcordGloomShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordAccelerationShrineUnique__1"] = { affix = "", "You have Acceleration Shrine Buff while affected by no Flasks", statOrder = { 589 }, level = 70, group = "SoulcordAccelerationShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordEchoingShrineUnique__1"] = { affix = "", "You have Echoing Shrine Buff while affected by no Flasks", statOrder = { 593 }, level = 70, group = "SoulcordEchoingShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordMassiveShrineUnique_1"] = { affix = "", "You have Massive Shrine Buff while affected by no Flasks", statOrder = { 596 }, level = 70, group = "SoulcordMassiveShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordResonatingShrineUnique_1"] = { affix = "", "You have Resonating Shrine Buff while affected by no Flasks", statOrder = { 599 }, level = 70, group = "SoulcordResonatingShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordBrutalShrineUnique_1"] = { affix = "", "You have Brutal Shrine Buff while affected by no Flasks", statOrder = { 590 }, level = 70, group = "SoulcordBrutalShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordReplenishingShrineUnique_1"] = { affix = "", "You have Replenishing Shrine Buff while affected by no Flasks", statOrder = { 597 }, level = 70, group = "SoulcordReplenishingShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordImpenetrableShrineUnique_1"] = { affix = "", "You have Impenetrable Shrine Buff while affected by no Flasks", statOrder = { 595 }, level = 70, group = "SoulcordImpenetrableShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordResistanceShrineUnique_1"] = { affix = "", "You have Resistance Shrine Buff while affected by no Flasks", statOrder = { 598 }, level = 70, group = "SoulcordResistanceShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordShockingShrineUnique_1"] = { affix = "", "You have Greater Shocking Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 600, 2812 }, level = 70, group = "SoulcordShockingShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordSkeletonShrineUnique_1"] = { affix = "", "You have Greater Skeletal Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 601, 2812 }, level = 70, group = "SoulcordSkeletonShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulcordChillingShrineUnique_1"] = { affix = "", "You have Greater Freezing Shrine Buff while affected by no Flasks", "(15-20)% increased Effect of Shrine Buffs on you", statOrder = { 591, 2812 }, level = 70, group = "SoulcordChillingShrine", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BlindedEnemiesCannotInflictAilmentsUnique_1"] = { affix = "", "Enemies Blinded by you cannot inflict Damaging Ailments", statOrder = { 6364 }, level = 30, group = "BlindedEnemiesCannotInflictAilments", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CeaselessFleshGrantedSkillUnique__1"] = { affix = "", "Trigger level 25 Ceaseless Flesh once every second", statOrder = { 20 }, level = 80, group = "CeaselessFleshGrantedSkill", weightKey = { }, weightVal = { }, modTags = { "skill", "minion" }, }, + ["FleshShieldOnMinionDeathUnique__1"] = { affix = "", "When a nearby Minion dies, gain Rotten Bulwark equal to (7-9)% of its maximum Life", statOrder = { 9310 }, level = 80, group = "FleshShieldOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["ConsumeLifeFlaskChargesForDoTMultiOnAttackUnique__1"] = { affix = "", "On non-channelling Attack, set a Life Flask with greater than 50% of maximum Charges remaining to 50%", "For each Charge removed this way, that Attack gains +2% to Damage over time Multiplier", statOrder = { 5864, 5864.1 }, level = 70, group = "ConsumeLifeFlaskChargesForDoTMultiOnAttack", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["CannotUseManaFlaskUnique__1"] = { affix = "", "Can't use Mana Flasks", statOrder = { 5450 }, level = 70, group = "CannotUseManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["IncreasedGoldFoundUnique__1"] = { affix = "", "(25-35)% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7303 }, level = 55, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SandMirageOnCastUnique__1"] = { affix = "", "Trigger level 20 Suspend in Time on Casting a Spell", statOrder = { 191 }, level = 1, group = "SandMirageOnCast", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellDamagePerUniqueSpellRecentlyUnique__1"] = { affix = "", "10% increased Cast Speed for each different Non-Instant Spell you've Cast Recently", statOrder = { 5462 }, level = 1, group = "SpellDamagePerUniqueSpellRecently", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["WeaponElementalDamageUniqueShieldStrInt4"] = { affix = "", "(10-20)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageUniqueRing10"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageUniqueBelt5"] = { affix = "", "(10-20)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageImplicitBow1"] = { affix = "", "(20-24)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageImplicitBow2"] = { affix = "", "(25-28)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageImplicitBow3"] = { affix = "", "(29-32)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageImplicitSword1"] = { affix = "", "30% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageImplicitQuiver13New"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 83, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageUniqueBelt10"] = { affix = "", "10% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageUnique__1"] = { affix = "", "(4-12)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageUnique__2"] = { affix = "", "(60-80)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageUnique__3"] = { affix = "", "(40-55)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageUnique__4"] = { affix = "", "(20-25)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageUnique__5"] = { affix = "", "(25-30)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["WeaponElementalDamageUnique__6"] = { affix = "", "(20-30)% increased Elemental Damage with Attack Skills", statOrder = { 6321 }, level = 1, group = "IncreasedWeaponElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["ThisWeaponsWeaponElementalDamageUniqueWand6"] = { affix = "", "Attacks with this Weapon have (100-115)% increased Elemental Damage", statOrder = { 2929 }, level = 1, group = "ThisWeaponWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["ManaLeechUniqueOneHandSword2"] = { affix = "", "(3-5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUniqueOneHandSword2"] = { affix = "", "(0.6-1)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechUniqueTwoHandSword2"] = { affix = "", "3% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUniqueTwoHandSword2"] = { affix = "", "0.6% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechUniqueAmulet3"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUniqueAmulet3"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechStrDexHelmet1"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadStrDexHelmet1"] = { affix = "", "0.4% of Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["ManaLeechUniqueGlovesStrDex1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUniqueGlovesStrDex1"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUniqueBelt1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechUniqueTwoHandMace4"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 1, group = "ManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUniqueTwoHandMace4"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechUniqueHelmetInt7"] = { affix = "", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUniqueHelmetInt7"] = { affix = "", "(0.2-0.4)% of Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["ManaLeechUniqueRing17"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUniqueRing17"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechUniqueGlovesDexInt6"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUniqueGlovesDexInt6"] = { affix = "", "0.2% of Attack Damage Leeched as Mana", statOrder = { 1705 }, level = 1, group = "AttackDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["ManaLeechUniqueBodyStr6"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUniqueBodyStr6"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUnique__1"] = { affix = "", "0.2% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUnique__2"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadUnique__3"] = { affix = "", "(1-1.5)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ItemFoundQuantityIncreaseUniqueGlovesInt1"] = { affix = "", "(5-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 14, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncreaseUniqueBelt3"] = { affix = "", "(6-8)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncreaseUniqueBootsDex2"] = { affix = "", "(6-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncreaseUniqueRing7"] = { affix = "", "(10-16)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncreaseUniqueShieldInt4"] = { affix = "", "(4-8)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncreaseUniqueBodyStr5"] = { affix = "", "(10-15)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncreaseUniqueRing32"] = { affix = "", "(-10-10)% reduced Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundQuantityReduceUniqueCorruptedJewel1"] = { affix = "", "10% reduced Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundQuantityIncreasedUnique__1"] = { affix = "", "5% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemFoundQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseImplicitRing1"] = { affix = "", "(6-15)% increased Rarity of Items found", statOrder = { 1596 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseImplicitAmulet1"] = { affix = "", "(12-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 10, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueRing3"] = { affix = "", "(50-70)% increased Rarity of Items found", statOrder = { 1596 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueAmulet6"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1596 }, level = 25, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueStrDexHelmet1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueBootsDexInt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueGlovesStrDex2"] = { affix = "", "(40-50)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueTwoHandAxe2"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityDecreaseUniqueRapier1"] = { affix = "", "20% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityDecreaseUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityDecreaseUniqueRing10"] = { affix = "", "(10-20)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueHelmetDex3"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueHelmetWreath1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueRing6"] = { affix = "", "(10-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueHelmetDex6"] = { affix = "", "(20-25)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueRapier2"] = { affix = "", "20% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityDecreaseUniqueOneHandSword4"] = { affix = "", "50% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueBootsDemigods1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueShieldStrDex2"] = { affix = "", "(30-40)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseImplicitDemigodsBelt1"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueRingDemigods1"] = { affix = "", "(16-24)% increased Rarity of Items found", statOrder = { 1596 }, level = 16, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueBodyStr5"] = { affix = "", "100% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueRing32_"] = { affix = "", "(-40-40)% reduced Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUniqueShieldDemigods"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUnique__1"] = { affix = "", "10% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUnique__2"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUnique__3"] = { affix = "", "(6-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUnique__4_"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUnique__5"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUnique__6"] = { affix = "", "(15-25)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUnique__7"] = { affix = "", "(5-15)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUnique__8"] = { affix = "", "(10-20)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUnique__9"] = { affix = "", "(20-30)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemFoundRarityIncreaseUnique__10"] = { affix = "", "(20-40)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemFoundRarityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ReducedEnergyShieldDelayUniqueBodyInt1"] = { affix = "", "10% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ReducedEnergyShieldDelayUniqueDagger4"] = { affix = "", "(40-80)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ReducedEnergyShieldDelayUniqueQuiver7"] = { affix = "", "80% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ReducedEnergyShieldDelayUniqueBelt11"] = { affix = "", "50% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 28, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ReducedEnergyShieldDelayUniqueCorruptedJewel15"] = { affix = "", "20% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedEnergyShieldDelayUniqueHelmetInt4"] = { affix = "", "50% reduced Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ReducedEnergyShieldDelayUnique__1"] = { affix = "", "(30-50)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ReducedEnergyShieldDelayImplicit1_"] = { affix = "", "(10-15)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 93, group = "EnergyShieldDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedCastSpeedImplicitMarakethWand1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedImplicitMarakethWand2"] = { affix = "", "14% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueAmulet1"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueStaff1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueIntHelmet2"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueGlovesInt2"] = { affix = "", "(15-25)% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueGlovesStr1"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueWand1"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueStaff2"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueGlovesInt4"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueWand3"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueAmulet16"] = { affix = "", "10% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueClaw7"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueDescentWand1"] = { affix = "", "12% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueSceptre6"] = { affix = "", "(15-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueWand4"] = { affix = "", "(5-8)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueGlovesDemigods1"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueStaff5"] = { affix = "", "18% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueSceptre7"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueWand7"] = { affix = "", "(25-30)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueRing27"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["ReducedCastSpeedUniqueBootsDex5"] = { affix = "", "10% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["ReducedCastSpeedUniqueHelmetInt8"] = { affix = "", "15% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["ReducedCastSpeedUniqueHelmetStrInt6"] = { affix = "", "15% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["ReducedCastSpeedUniqueGlovesStrInt4_"] = { affix = "", "(20-30)% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["ReducedCastSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueAmulet20"] = { affix = "", "(10-25)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueStaff12"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueWand10"] = { affix = "", "10% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueWand11"] = { affix = "", "(7-13)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueTwoHandMace8"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUniqueRing38"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__1"] = { affix = "", "(4-8)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__2"] = { affix = "", "(14-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__3"] = { affix = "", "(30-40)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__4"] = { affix = "", "(4-6)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__5"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__6"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__7"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__8"] = { affix = "", "(10-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__9"] = { affix = "", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__10"] = { affix = "", "(12-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__11__"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__12"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__13"] = { affix = "", "(25-30)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__14"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__15_"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__16"] = { affix = "", "(15-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__17"] = { affix = "", "(1-20)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__18_"] = { affix = "", "(5-7)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__19__"] = { affix = "", "(8-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__20"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__21"] = { affix = "", "(7-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__22"] = { affix = "", "(15-25)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__23"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__24"] = { affix = "", "(8-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__25"] = { affix = "", "(20-30)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__26"] = { affix = "", "(5-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__27"] = { affix = "", "(5-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedUnique__28"] = { affix = "", "(12-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedFishing__Unique1"] = { affix = "", "(10-15)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeedFishing", weightKey = { }, weightVal = { }, modTags = { "red_herring", "caster", "speed" }, }, + ["LocalIncreasedAttackSpeedImplicitMarakethOneHandMace1"] = { affix = "", "4% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedImplicitMarakethOneHandMace2"] = { affix = "", "6% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueBow1"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueBow2"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueBow3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueTwoHandSword1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueTwoHandSword3"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueRapier1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueTwoHandMace3"] = { affix = "", "25% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueDagger3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandMace1"] = { affix = "", "45% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueBow4"] = { affix = "", "100% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueBow5"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueTwoHandMace4"] = { affix = "", "50% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueBow6"] = { affix = "", "(10-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueClaw1"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueSceptre1"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueClaw2"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueBow8"] = { affix = "", "(36-50)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueClaw3"] = { affix = "", "5% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandAxe1"] = { affix = "", "(25-35)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueBow9"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedOneHandSword3"] = { affix = "", "(10-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueBow10"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueTwoHandSword6"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandAxe2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueDescentDagger1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueDescentBow1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueDescentOneHandMace1"] = { affix = "", "20% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueTwoHandAxe7"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueSceptre7"] = { affix = "", "(11-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueWand6"] = { affix = "", "(10-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueBow11"] = { affix = "", "(10-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword6"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword7"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueStaff7"] = { affix = "", "(12-16)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword8"] = { affix = "", "(22-27)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword9"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueTwoHandSword8"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueStaff9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueSceptre9"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueBow12"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword11"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueClaw8"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueWand9"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueTwoHandAxe9"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalReducedAttackSpeedUniqueDagger9"] = { affix = "", "20% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueDagger12"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueClaw9"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandAxe7"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword12"] = { affix = "", "15% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandSword13_"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalReducedAttackSpeedUniqueOneHandMace6"] = { affix = "", "20% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalReducedAttackSpeedUnique__1"] = { affix = "", "50% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalReducedAttackSpeedUnique__2"] = { affix = "", "15% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalReducedAttackSpeedUnique__3"] = { affix = "", "(25-30)% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueOneHandMace8"] = { affix = "", "10% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUniqueTwoHandMace8_"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__2"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__1"] = { affix = "", "(4-8)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__3"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__4"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__5"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__6"] = { affix = "", "(14-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__7"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__8"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__9"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__10"] = { affix = "", "(8-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__11"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__12"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__13"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__14"] = { affix = "", "(17-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__15"] = { affix = "", "(16-22)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__16"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__17"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__18"] = { affix = "", "(8-14)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__19"] = { affix = "", "(5-8)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__20"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__21"] = { affix = "", "(20-25)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__22"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__23"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__24"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__25"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__26_"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__27"] = { affix = "", "(5-8)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__28"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__29"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__30"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__31"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__32"] = { affix = "", "(20-26)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__33"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__34"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__35"] = { affix = "", "(25-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__36"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__37___"] = { affix = "", "(16-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__38"] = { affix = "", "(-16-16)% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__39"] = { affix = "", "(15-20)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__40"] = { affix = "", "(25-35)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__42"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__43"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__44"] = { affix = "", "(20-30)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAttackSpeedUnique__45"] = { affix = "", "(14-18)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedImplicitShield1"] = { affix = "", "6% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedImplicitShield2"] = { affix = "", "12% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedImplicitShield3"] = { affix = "", "18% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedImplicitQuiver10New"] = { affix = "", "(8-10)% increased Attack Speed", statOrder = { 1410 }, level = 62, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueQuiver1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueIntHelmet2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueBootsDexInt1"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueGlovesDex2"] = { affix = "", "5% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueGlovesStrDex1"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueGlovesStr1"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueHelmetStrDex2"] = { affix = "", "16% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueGlovesStr2"] = { affix = "", "(5-15)% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueHelmetDex4"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueBodyDex5"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueGlovesDexInt3"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueHelmetDex6"] = { affix = "", "15% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueBodyStr3"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueGlovesDemigods1"] = { affix = "", "(10-16)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueBodyDex7"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueQuiver3"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueQuiver5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 4, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueQuiver6"] = { affix = "", "(7-10)% increased Attack Speed", statOrder = { 1410 }, level = 10, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueQuiver7"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueGlovesStrDex5"] = { affix = "", "(6-9)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueShieldDex6"] = { affix = "", "(6-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueShieldDexInt2"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueQuiver9"] = { affix = "", "10% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueRing27"] = { affix = "", "(10-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueShieldInt5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["ReducedAttackSpeedUniqueAmulet16"] = { affix = "", "10% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["ReducedAttackSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["ReducedAttackSpeedUnique__1"] = { affix = "", "30% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["ReducedAttackSpeedUnique__2"] = { affix = "", "10% reduced Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueAmulet20"] = { affix = "", "(10-25)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUniqueRing37"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUnique_1"] = { affix = "", "(8-13)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUnique__3_"] = { affix = "", "(1-20)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUnique__4_"] = { affix = "", "(7-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUnique__5"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUnique__6"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUnique__7"] = { affix = "", "(6-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUnique__8"] = { affix = "", "(8-16)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedUnique__9"] = { affix = "", "(5-15)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedTransformedUnique__1"] = { affix = "", "(5-10)% increased Attack Speed", statOrder = { 1410 }, level = 30, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAccuracyUniqueBow2"] = { affix = "", "+30 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueTwoHandAxe1"] = { affix = "", "+(150-250) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueTwoHandSword1"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueAmulet5"] = { affix = "", "+100 to Accuracy Rating", statOrder = { 1433 }, level = 7, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueStrDexHelmet1"] = { affix = "", "+500 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueGlovesDexInt1"] = { affix = "", "+(100-200) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueAmulet7"] = { affix = "", "+(100-150) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueTwoHandMace3"] = { affix = "", "-500 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueBow4"] = { affix = "", "+(25-50) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueBow7"] = { affix = "", "+(350-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueRing12"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueHelmetInt7"] = { affix = "", "+(300-350) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueTwoHandAxe5"] = { affix = "", "+(120-150) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ReducedAccuracyUniqueTwoHandSword5"] = { affix = "", "-150 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueAmulet17_"] = { affix = "", "+(80-120) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueDescentBow1"] = { affix = "", "+30 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueRing17"] = { affix = "", "+333 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueWand6"] = { affix = "", "+(340-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueOneHandSword9"] = { affix = "", "+(280-300) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueTwoHandSword7"] = { affix = "", "+(90-120) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUniqueSceptre8"] = { affix = "", "+(160-220) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUnique__1"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUnique__2"] = { affix = "", "+(350-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUnique__3"] = { affix = "", "+(600-1000) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUnique__4"] = { affix = "", "+(800-1000) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUnique__5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUnique__6"] = { affix = "", "+(150-250) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUnique__7_"] = { affix = "", "+(200-300) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUnique__8"] = { affix = "", "+(350-500) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUnique__9____"] = { affix = "", "-5000 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyUnique__10"] = { affix = "", "+(300-500) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LifeRegenerationUniqueRing1"] = { affix = "", "Regenerate (10-15) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationImplicitAmulet1"] = { affix = "", "Regenerate (2-4) Life per second", statOrder = { 1574 }, level = 2, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationImplicitAmulet2"] = { affix = "", "Regenerate (1.2-1.6)% of Life per second", statOrder = { 1944 }, level = 93, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationUniqueShieldDex2"] = { affix = "", "Regenerate (5-7.5) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUniqueTwoHandAxe4"] = { affix = "", "Regenerate 20 Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUniqueWreath1"] = { affix = "", "Regenerate 2 Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUniqueShieldStrInt5"] = { affix = "", "Regenerate (100-200) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUniqueBootsDex5"] = { affix = "", "Regenerate (1.7-2.7) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUniqueBelt8"] = { affix = "", "Regenerate (200-350) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUniqueGlovesStrDex5"] = { affix = "", "Regenerate (3-4) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUniqueRing26"] = { affix = "", "Regenerate (13-17) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUniqueRing33"] = { affix = "", "Regenerate (10-15) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUniqueAmulet25"] = { affix = "", "Regenerate (16-24) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUnique__1"] = { affix = "", "Regenerate (50-70) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUnique__2__"] = { affix = "", "Regenerate (50-70) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUnique__3"] = { affix = "", "Regenerate (30-50) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUnique__4"] = { affix = "", "Regenerate (200-250) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUnique__5"] = { affix = "", "Regenerate (30-50) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["LifeRegenerationUnique__6"] = { affix = "", "(15-25)% increased Life Regeneration rate", statOrder = { 1577 }, level = 97, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ManaRegenerationImplicitAmulet1"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 2, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationImplicitAmulet2"] = { affix = "", "(48-56)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 97, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationImplicitDemigodsBelt1"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueRing5"] = { affix = "", "50% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueDexHelmet2"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueIntHelmet2"] = { affix = "", "30% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueBootsInt2"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueBootsDex2"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueAmulet10"] = { affix = "", "(80-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 20, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueRing14"] = { affix = "", "(45-65)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueBootsDex5"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueBelt6"] = { affix = "", "20% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueBodyDexInt2"] = { affix = "", "(40-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueBootsStrDex4"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueOneHandMace3"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueBow11"] = { affix = "", "60% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueGlovesStrInt2"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueRingDemigod1"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 16, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueRing26"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueHelmetStrInt5"] = { affix = "", "20% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueRing33"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueAmulet21"] = { affix = "", "(60-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueJewel30"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueJewel43"] = { affix = "", "10% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueRing34"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueShieldInt5"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__1"] = { affix = "", "(15-25)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__2"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__3"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__4"] = { affix = "", "(20-30)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__5"] = { affix = "", "(20-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__6"] = { affix = "", "(30-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__7"] = { affix = "", "(45-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__8"] = { affix = "", "(40-45)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__9___"] = { affix = "", "(80-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__10"] = { affix = "", "(1-100)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__11___"] = { affix = "", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__12"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__13"] = { affix = "", "(25-40)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__14___"] = { affix = "", "60% reduced Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__15"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUnique__16"] = { affix = "", "(60-80)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ReducedManaRegenerationUniqueRing27"] = { affix = "", "15% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["BaseManaRegenerationUniqueBodyDexInt2"] = { affix = "", "Regenerate 1% of Mana per second", statOrder = { 1581 }, level = 1, group = "BaseManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["StunThresholdReductionImlicitMarakethOneHandSword1"] = { affix = "", "8% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionImlicitMarakethOneHandSword2"] = { affix = "", "12% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionImplicitMace1"] = { affix = "", "10% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionImplicitMace2"] = { affix = "", "15% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionImplicitMace3_"] = { affix = "", "20% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionUniqueTwoHandMace1"] = { affix = "", "15% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionUniqueQuiver2"] = { affix = "", "(10-15)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionUniqueGlovesDexInt2"] = { affix = "", "10% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionUniqueClaw2_"] = { affix = "", "25% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["StunThresholdReductionUniqueClaw6"] = { affix = "", "10% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["StunThresholdReductionUniqueTwoHandSword5"] = { affix = "", "25% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["StunThresholdReductionUniqueQuiver8"] = { affix = "", "(20-25)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionUniqueOneHandMace5"] = { affix = "", "(15-25)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["StunThresholdReductionUniqueStaff11"] = { affix = "", "(15-20)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionUniqueOneHandMace6"] = { affix = "", "(10-20)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionUniqueBootsStr3"] = { affix = "", "(5-10)% reduced Enemy Stun Threshold", statOrder = { 1517 }, level = 1, group = "StunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdReductionUnique__1___"] = { affix = "", "(20-30)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["StunThresholdReductionUnique__2"] = { affix = "", "(20-30)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["CriticalStrikeChanceImplicitDagger1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1460 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit1", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceImplicitDagger2"] = { affix = "", "40% increased Global Critical Strike Chance", statOrder = { 1461 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit2", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceImplicitDagger3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1462 }, level = 1, group = "CriticalStrikeChanceDaggerImplicit3", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceImplicitDaggerNew1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceImplicitDaggerNew2"] = { affix = "", "40% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceImplicitDaggerNew3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceImplicitQuiver13"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 57, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceImplicitQuiver8New"] = { affix = "", "(20-30)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 50, group = "CriticalStrikeChanceWithBows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceImplicitMarakethStaff1"] = { affix = "", "80% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceImplicitMarakethStaff2"] = { affix = "", "100% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueOneHandSword2"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueGlovesDex2"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueRapier1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueDagger3"] = { affix = "", "50% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueBodyInt4"] = { affix = "", "100% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueHelmetDex4"] = { affix = "", "25% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueHelmetDex6"] = { affix = "", "(60-75)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueWand3"] = { affix = "", "(50-65)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceImplicitRing1"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 25, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueRing11_"] = { affix = "", "(30-35)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 35, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueAmulet17"] = { affix = "", "(200-250)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueGlovesStr3"] = { affix = "", "(40-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueGlovesDexInt6"] = { affix = "", "(20-30)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueBow9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["CriticalSrikeChanceUniqueSceptre7"] = { affix = "", "(30-40)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueAmulet18"] = { affix = "", "(250-350)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUniqueWand10"] = { affix = "", "(40-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUnique__1"] = { affix = "", "30% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUnique__2"] = { affix = "", "(20-60)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUnique__3"] = { affix = "", "(50-70)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUnique__4_"] = { affix = "", "(120-160)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUnique__5__"] = { affix = "", "(15-25)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeChanceUnique__6"] = { affix = "", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe1"] = { affix = "", "50% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe2"] = { affix = "", "50% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueBow11"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueClaw2"] = { affix = "", "25% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceImplicitBow1"] = { affix = "", "(30-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueStaff7"] = { affix = "", "(10-20)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueOneHandSword8"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueOneHandMace4"] = { affix = "", "(15-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniquSceptre10"] = { affix = "", "(25-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueOneHandSword10"] = { affix = "", "(44-66)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueWand9"] = { affix = "", "(10-20)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueDagger11"] = { affix = "", "30% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__1"] = { affix = "", "(26-32)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__2"] = { affix = "", "(22-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique14"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__3"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__4"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__5"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__6"] = { affix = "", "(40-60)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__7"] = { affix = "", "(20-35)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__8"] = { affix = "", "(50-75)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__10"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__11"] = { affix = "", "(20-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__12"] = { affix = "", "(15-25)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__13"] = { affix = "", "(70-90)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__14"] = { affix = "", "(80-100)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__15"] = { affix = "", "(25-35)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__16"] = { affix = "", "(8-12)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__17_"] = { affix = "", "(22-28)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__18"] = { affix = "", "(60-80)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__19"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__20"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__21"] = { affix = "", "(15-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__22"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__23"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__24"] = { affix = "", "(100-200)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__25"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__26"] = { affix = "", "(20-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__27"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUnique__28"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["FireResistImplicitRing1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 20, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistImplicitAmulet1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueDexHelmet2"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueAmulet4"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBootsDexInt1"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueAmulet7"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBelt3"] = { affix = "", "+20% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBootsDex2"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueOneHandMace1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBodyDex3"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBodyInt2"] = { affix = "", "+(50-75)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueShieldStr3"] = { affix = "", "+(35-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueShieldStrInt5"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueAmulet13"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueAmulet16"] = { affix = "", "+(30-45)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueHelmetInt7"] = { affix = "", "-30% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistanceBodyDex6"] = { affix = "", "+(6-10)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueOneHandSword4"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBelt6"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBelt9"] = { affix = "", "+(30-35)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueRing15"] = { affix = "", "+(25-35)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBootsStrInt3"] = { affix = "", "+(50-60)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBelt13"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBodyStr5"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueRing32"] = { affix = "", "+(-25-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBelt14"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 65, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueShieldStrDex3"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueOneHandAxe7_"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUniqueBootsStr3_"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__1"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__2"] = { affix = "", "+(15-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__3"] = { affix = "", "-10% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__4"] = { affix = "", "+(40-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__5"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__6"] = { affix = "", "+(30-50)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__7_"] = { affix = "", "+(26-32)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__8"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__9"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__10"] = { affix = "", "-30% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__11"] = { affix = "", "-50% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__12"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__13"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__14"] = { affix = "", "+(20-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__15"] = { affix = "", "+(10-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__16"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__18"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__19"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__20_"] = { affix = "", "+(30-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__21"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__22_"] = { affix = "", "-(30-20)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__23_"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__24"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__25"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__26"] = { affix = "", "+(40-60)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__27_"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__28_"] = { affix = "", "+(-30-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__29"] = { affix = "", "+(20-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__30"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__31"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__32"] = { affix = "", "+(15-25)% to Fire Resistance", statOrder = { 1625 }, level = 83, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__34"] = { affix = "", "+(10-40)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__35"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__36"] = { affix = "", "+(5-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__37"] = { affix = "", "+(20-30)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireResistUnique__38"] = { affix = "", "+(35-50)% to Fire Resistance", statOrder = { 1625 }, level = 30, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["ColdResistImplicitRing1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 10, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueAmulet3"] = { affix = "", "+25% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistDexHelmet2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueStrHelmet2"] = { affix = "", "+30% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueGlovesDex1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBelt1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBelt4"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 10, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueShieldDex1"] = { affix = "", "+50% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueHelmetDex5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBodyStrInt3"] = { affix = "", "+(50-75)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueGlovesStrDex3"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueAmulet13"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueOneHandAxe1_"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistanceBodyDex6"] = { affix = "", "+(26-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBootsDexInt2"] = { affix = "", "+20% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBodyDex7"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueShieldInt3"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueGlovesStrDex4"] = { affix = "", "+40% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBelt9"] = { affix = "", "+(30-35)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueQuiver5"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueRing24"] = { affix = "", "+(25-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBootsDex8"] = { affix = "", "+20% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBelt13"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueRing28"] = { affix = "", "+(10-15)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBodyStr5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueGlovesStrInt3"] = { affix = "", "+(40-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueRing32"] = { affix = "", "+(-25-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBelt14"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueShieldDex7"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUniqueBootsStrDex5"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__3"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 23, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__4"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__1"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__2"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__5"] = { affix = "", "+75% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__6"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__7"] = { affix = "", "+(32-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__8"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__9"] = { affix = "", "-40% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__10"] = { affix = "", "+(30-50)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__11"] = { affix = "", "+(35-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__12"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__13"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__14"] = { affix = "", "-30% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__15"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__16"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__17"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__18"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__19"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__20"] = { affix = "", "+(20-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__21"] = { affix = "", "+(10-20)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__22_"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 80, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__23"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__24"] = { affix = "", "+(25-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__25"] = { affix = "", "+(25-35)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__26"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__27"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__28"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__29"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__30"] = { affix = "", "+(30-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__31_"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__32"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__33"] = { affix = "", "+(40-60)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__34"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__35"] = { affix = "", "+(-30-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__36_"] = { affix = "", "+(20-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__37"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__38"] = { affix = "", "+(15-25)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__39"] = { affix = "", "+(10-40)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__40"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__41"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__42"] = { affix = "", "+(5-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ColdResistUnique__43"] = { affix = "", "+(20-30)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["LightningResistImplicitRing1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 15, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueHelmetDexInt1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueDexHelmet1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueStrDexHelmet1"] = { affix = "", "+30% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueShieldStrDex1"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueShieldInt1"] = { affix = "", "+25% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueShieldDex2"] = { affix = "", "+30% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueOneHandMace1"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueBodyInt1"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueBodyInt5"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueBootsStrDex2"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueAmulet15"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistanceBodyDex6"] = { affix = "", "+(11-25)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueBodyStrDex2"] = { affix = "", "-60% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueDescentTwoHandSword1"] = { affix = "", "+40% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueShieldInt3"] = { affix = "", "+(10-20)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueBelt9"] = { affix = "", "+(30-35)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueBelt11"] = { affix = "", "+(5-10)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueBodyStr5"] = { affix = "", "-(20-10)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueRing32"] = { affix = "", "+(-25-50)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueRing35"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueBootsDexInt4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUniqueHelmetInt10"] = { affix = "", "+(25-35)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__1"] = { affix = "", "+(15-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__2"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__3"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__4"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__5"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__6"] = { affix = "", "+(15-20)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__7"] = { affix = "", "+(35-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__8"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__9"] = { affix = "", "-30% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__10"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__11"] = { affix = "", "+(20-25)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__12"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__13"] = { affix = "", "+(1-50)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__14"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__15"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__16"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__17_"] = { affix = "", "+(25-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__18"] = { affix = "", "+(25-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__19_"] = { affix = "", "+(30-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__20"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__21"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__22"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__23_"] = { affix = "", "+75% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__24"] = { affix = "", "+(40-60)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__25"] = { affix = "", "+(-30-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__26"] = { affix = "", "+(50-75)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__27"] = { affix = "", "+(15-25)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__28"] = { affix = "", "+(10-15)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__29"] = { affix = "", "+(10-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__30"] = { affix = "", "+(20-40)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__31"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__32"] = { affix = "", "+(5-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["LightningResistUnique__33"] = { affix = "", "+(20-30)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["ChaosResistUniqueHelmetStrInt2"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueBodyInt8"] = { affix = "", "+(40-50)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistImplicitRing1"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 38, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistImplicitBoots1"] = { affix = "", "+(13-17)% to Chaos Resistance", statOrder = { 1641 }, level = 85, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueAmulet15_"] = { affix = "", "+(8-10)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueRing12"] = { affix = "", "+(15-20)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistHelmetStrDex2"] = { affix = "", "+(15-25)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueRing16"] = { affix = "", "+(40-50)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueDagger8"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueBootsStrInt2"] = { affix = "", "+(13-19)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueHelmetDexInt5"] = { affix = "", "+(24-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueWand7"] = { affix = "", "+(5-10)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueHelmetStrInt5"] = { affix = "", "+(43-61)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueQuiver9"] = { affix = "", "+(12-16)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueBow12"] = { affix = "", "+(7-11)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUniqueAmulet23"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistDemigodsTorchImplicit"] = { affix = "", "+(11-19)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__1"] = { affix = "", "+11% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__2"] = { affix = "", "+(8-16)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__3"] = { affix = "", "+(31-53)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__4"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__5"] = { affix = "", "+60% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__6"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__7"] = { affix = "", "+(15-25)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__8"] = { affix = "", "-(20-10)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__9"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__10"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__11"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__12"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__13"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__14"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__15"] = { affix = "", "+(23-31)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__16"] = { affix = "", "+(29-43)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__17"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__18_"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__19"] = { affix = "", "+(29-41)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__20_"] = { affix = "", "+(23-31)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__21"] = { affix = "", "+(19-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__22"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__23"] = { affix = "", "+(19-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__24"] = { affix = "", "+(-23-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__25"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__26"] = { affix = "", "+50% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__27"] = { affix = "", "+(-13-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__28"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__29"] = { affix = "", "+(17-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__30"] = { affix = "", "+(13-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__31"] = { affix = "", "+(7-19)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__33"] = { affix = "", "+(17-23)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__34"] = { affix = "", "+(13-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__35"] = { affix = "", "+(13-29)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__36"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__37"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChaosResistUnique__38"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 30, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["FireAndLightningResistImplicitRing1"] = { affix = "", "+(12-16)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 25, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, + ["ColdAndLightningResistImplicitRing1"] = { affix = "", "+(12-16)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 25, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, + ["FireAndColdResistImplicitRing1"] = { affix = "", "+(12-16)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 25, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, }, + ["FireAndLightningResistImplicitBoots1"] = { affix = "", "+(8-12)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 78, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, + ["ColdAndLightningResistImplicitBoots1"] = { affix = "", "+(8-12)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 78, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, + ["FireAndColdResistImplicitBoots1_"] = { affix = "", "+(8-12)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 78, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, }, + ["FireAndColdResistUnique__1"] = { affix = "", "+(15-25)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 75, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, }, + ["FireAndColdResistUnique__2"] = { affix = "", "+(20-30)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, }, + ["FireAndColdResistUnique__3"] = { affix = "", "+(25-30)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, }, + ["FireAndColdResistUnique__4_"] = { affix = "", "+(10-20)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireAndColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "resistance" }, }, + ["ColdAndLightningResistUnique__1"] = { affix = "", "+(20-25)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 81, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, + ["ColdAndLightningResistUnique__2"] = { affix = "", "+(15-20)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 1, group = "ColdAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, + ["FireAndLightningResistUnique__1"] = { affix = "", "+(20-30)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 1, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, + ["FireAndLightningResistUnique__2"] = { affix = "", "+(20-30)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 1, group = "FireAndLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, + ["AllResistancesImplicitShield1"] = { affix = "", "+4% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesImplicitShield2"] = { affix = "", "+8% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesImplicitShield3"] = { affix = "", "+12% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesImplicitArmour1"] = { affix = "", "+(8-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesImplicitRing1"] = { affix = "", "+(8-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesImplicitVictorAmulet"] = { affix = "", "+(8-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 16, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueRing3"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueAmulet2"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1619 }, level = 10, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueRing4"] = { affix = "", "+(5-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueIntHelmet3"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueHelmetStrInt1"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueBootsStr1"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueGlovesStrDex2"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueShieldStrInt1"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueBodyStrInt2"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueAmulet9"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueShieldStrInt2"] = { affix = "", "+25% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueHelmetDex3"] = { affix = "", "+(30-40)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueShieldStrInt4"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueShieldDex3"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueBodyDexInt1"] = { affix = "", "+(9-12)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueRing6"] = { affix = "", "+(10-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 30, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueBootsInt5"] = { affix = "", "+20% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueRapier2"] = { affix = "", "+(40-60)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueRing7"] = { affix = "", "+(25-40)% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueRing9"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueAmulet14"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueTwoHandMace6_"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesImplictBootsDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesImplictHelmetDemigods1"] = { affix = "", "+(8-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueBodyStrDex1"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueRing21"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 38, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueBelt8"] = { affix = "", "-(25-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueBodyStrDexInt1"] = { affix = "", "+(20-24)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueHelmetDexInt4"] = { affix = "", "+(26-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueBeltDemigods1"] = { affix = "", "+(16-24)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueDagger9"] = { affix = "", "+(6-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueRing25"] = { affix = "", "-20% to all Elemental Resistances", statOrder = { 1619 }, level = 7, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueBelt10"] = { affix = "", "+(6-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 32, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueShieldDexInt2"] = { affix = "", "-50% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueBelt13"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistajcesUniqueStaff10"] = { affix = "", "+(5-7)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueAmulet23"] = { affix = "", "-(10-5)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUniqueJewel8"] = { affix = "", "+6% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesDescentUniqueQuiver1"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__1"] = { affix = "", "+15% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__2"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__3"] = { affix = "", "+(14-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__4"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__5"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__6"] = { affix = "", "-(20-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__7"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__8"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__9"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__10"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__11__"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__12"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__13"] = { affix = "", "+10% to all Elemental Resistances", statOrder = { 1619 }, level = 75, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__14"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__15"] = { affix = "", "+(12-18)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__16"] = { affix = "", "+(10-16)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__17"] = { affix = "", "+(15-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__18"] = { affix = "", "-(20-10)% to all Elemental Resistances", statOrder = { 10716 }, level = 1, group = "UniqueJewelDonutAllocationAllReistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__19"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__20"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__21"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__23__"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__24_"] = { affix = "", "-(80-70)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__26"] = { affix = "", "+(20-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__27"] = { affix = "", "+(20-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__28"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__29"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__30"] = { affix = "", "+(8-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__31"] = { affix = "", "+(20-30)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__32"] = { affix = "", "+(10-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__33"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__34"] = { affix = "", "+(5-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__35"] = { affix = "", "+(25-35)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__36"] = { affix = "", "-(50-40)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__37"] = { affix = "", "+(10-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesUnique__38"] = { affix = "", "+(-15-15)% to all Elemental Resistances", statOrder = { 1619 }, level = 80, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllResistancesDemigodsImplicit"] = { affix = "", "+(15-25)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["CriticalMultiplierImplicitSword1"] = { affix = "", "+25% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierImplicitSword2"] = { affix = "", "+35% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierImplicitSword3"] = { affix = "", "+50% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierImplicitSword2H1"] = { affix = "", "+25% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierImplicitSwordM2"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierImplicitBow1"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUniqueGlovesDex2"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUniqueGlovesDexInt2"] = { affix = "", "+30% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUniqueGlovesDexInt4"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUniqueHelmetStr3"] = { affix = "", "+60% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUniqueRing8"] = { affix = "", "-50% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUniqueAmulet17"] = { affix = "", "+(210-240)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 50, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUniqueDescentDagger1"] = { affix = "", "+45% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUniqueDagger8"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUniqueRing17"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUniqueGlovesDexInt6_"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUniqueAmulet18"] = { affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2678 }, level = 29, group = "NoCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUnique__1"] = { affix = "", "+(27-33)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUnique__2"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUnique__3__"] = { affix = "", "+(25-50)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUnique__4____"] = { affix = "", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUnique__5"] = { affix = "", "+(18-35)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUnique__6"] = { affix = "", "+(100-150)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUnique__7"] = { affix = "", "+(15-20)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CriticalMultiplierUnique__8"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["StunRecoveryImplicitBelt1"] = { affix = "", "(15-25)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 20, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUniqueBootsStrDex1"] = { affix = "", "20% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUniqueHelmetInt6"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUniqueBootsStrDex3"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUniqueHelmetStrInt4"] = { affix = "", "(20-22)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUniqueGlovesStrInt1"] = { affix = "", "(40-60)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUniqueQuiver4"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUniqueAmulet18"] = { affix = "", "40% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUniqueClaw8"] = { affix = "", "25% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUniqueOneHandSword13"] = { affix = "", "(30-40)% reduced Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUnique__1_"] = { affix = "", "50% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUnique__2"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUnique__3"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUnique__4"] = { affix = "", "(500-1000)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUnique__5"] = { affix = "", "100% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUnique__6"] = { affix = "", "(40-60)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUnique__7"] = { affix = "", "(30-40)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunRecoveryUnique__8"] = { affix = "", "(100-200)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationImplicitBelt1"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 20, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationImplicitMace1"] = { affix = "", "30% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationImplicitMace2"] = { affix = "", "45% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationImplicitQuiver9"] = { affix = "", "(25-35)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 20, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationUniqueTwoHandMace1"] = { affix = "", "(40-50)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationUniqueTwoHandMace2"] = { affix = "", "(10-20)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationUniqueQuiver2"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationUniqueTwoHandMace3"] = { affix = "", "(40-50)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationUniqueGlovesInt4_"] = { affix = "", "50% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationUniqueGlovesDexInt3"] = { affix = "", "10% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationUniqueTwoHandSword5"] = { affix = "", "400% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationUniqueQuiver8"] = { affix = "", "(140-200)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationUniqueOneHandMace6"] = { affix = "", "(30-50)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationUnique__1"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunDurationUnique__2"] = { affix = "", "(20-30)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationIncreasePercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellCriticalStrikeChanceUniqueDagger1"] = { affix = "", "(80-100)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceUniqueGlovesInt5"] = { affix = "", "(75-100)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceUniqueGlovesInt6"] = { affix = "", "(125-150)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceUniqueHelmetInt6"] = { affix = "", "(20-25)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceUniqueShieldInt3"] = { affix = "", "(25-35)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceUniqueBootsStrDex5"] = { affix = "", "(50-70)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceUnique__1"] = { affix = "", "(100-140)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceUnique__2"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceUnique__3"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceUnique__4"] = { affix = "", "(60-80)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeChanceUnique__5"] = { affix = "", "(80-120)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["ProjectileSpeedImplicitQuiver4New"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 25, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUniqueAmulet5"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUniqueBow4_"] = { affix = "", "(50-100)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUniqueQuiver2"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUniqueQuiver4"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUniqueQuiver8"] = { affix = "", "25% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUnique___1"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUnique__2"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUnique__3"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUnique__4"] = { affix = "", "20% reduced Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUnique__5__"] = { affix = "", "30% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUnique__6"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUnique__7"] = { affix = "", "(30-40)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileSpeedUnique__8"] = { affix = "", "(30-50)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["LifeGainPerTargetUniqueRing2"] = { affix = "", "Gain (2-4) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetUniqueOneHandSword1"] = { affix = "", "Grants 2 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetUniqueDagger2"] = { affix = "", "Grants 10 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicitClaw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicitClaw2"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicitClaw3"] = { affix = "", "Grants 15 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicitClaw4"] = { affix = "", "Grants 22 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw2"] = { affix = "", "Grants 6 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw3"] = { affix = "", "Grants 7 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw3_1"] = { affix = "", "Grants 8 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw4"] = { affix = "", "Grants 12 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw4_1"] = { affix = "", "Grants 19 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw5"] = { affix = "", "Grants 15 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw5_1"] = { affix = "", "Grants 20 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw6"] = { affix = "", "Grants 25 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw7"] = { affix = "", "Grants 24 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw8"] = { affix = "", "Grants 44 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw9_"] = { affix = "", "Grants 40 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw10"] = { affix = "", "Grants 46 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw11_"] = { affix = "", "Grants 40 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw12"] = { affix = "", "Grants 50 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicit2Claw13"] = { affix = "", "Grants 46 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicitQuiver3New"] = { affix = "", "Gain (6-8) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 18, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetImplicitQuiver8"] = { affix = "", "Gain (3-4) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 13, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetUniqueSceptre2"] = { affix = "", "Grants (6-10) Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetUniqueRapier2"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetUniqueRing7"] = { affix = "", "Gain (40-60) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetUniqueQuiver6_"] = { affix = "", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetUniqueOneHandSword7"] = { affix = "", "Grants 2 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetUniqueDescentClaw1"] = { affix = "", "Grants 3 Life per Enemy Hit", statOrder = { 1738 }, level = 1, group = "LifeGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainPerTargetUnique__1"] = { affix = "", "Gain 7 Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LoseLifePerTargetUnique__1"] = { affix = "", "Lose (20-25) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LoseLifePerTargetUnique__2"] = { affix = "", "Lose (10-20) Life per Enemy Killed", statOrder = { 1748 }, level = 40, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["FireDamagePercentUniqueStaff1_"] = { affix = "", "(70-90)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUniqueStrHelmet2"] = { affix = "", "(30-40)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUniqueBodyInt4"] = { affix = "", "(25-35)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUniqueHelmetInt5"] = { affix = "", "50% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUniqueRing18"] = { affix = "", "(25-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUniqueBelt9a"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUniqueRing24"] = { affix = "", "(15-25)% increased Fire Damage", statOrder = { 1357 }, level = 14, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUniqueSceptre9"] = { affix = "", "30% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUniqueWand10"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUniqueRing36"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUniqueRing38"] = { affix = "", "(30-40)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique__1"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique___2"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique__3"] = { affix = "", "(18-25)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique__4"] = { affix = "", "(25-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique___5"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique__6"] = { affix = "", "(50-70)% increased Fire Damage", statOrder = { 1357 }, level = 45, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique___7"] = { affix = "", "25% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique____8"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique__9"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique__10"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique__11"] = { affix = "", "(10-15)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique__12___"] = { affix = "", "100% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamagePercentUniqueStaff2"] = { affix = "", "(40-50)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUniqueHelmetStrInt3"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUniqueRing19"] = { affix = "", "(25-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUniqueBelt9b"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__1"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__2"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__3"] = { affix = "", "(30-50)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__4"] = { affix = "", "(18-25)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__5"] = { affix = "", "(30-50)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__6"] = { affix = "", "(20-25)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__7"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__8"] = { affix = "", "30% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__9"] = { affix = "", "(20-40)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique___10"] = { affix = "", "(10-20)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique___11"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__12"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__13"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__14"] = { affix = "", "(5-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamagePercentUnique__15"] = { affix = "", "(10-15)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["LightningDamageUniqueWand1"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamageUniqueHelmetDexInt1"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUniqueHelmetStrInt3"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUniqueRing20"] = { affix = "", "(25-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUniqueBelt9c"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUniqueStaff8"] = { affix = "", "(30-50)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUniqueRing29"] = { affix = "", "20% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUniqueRing34"] = { affix = "", "(15-25)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUnique__2"] = { affix = "", "(15-20)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUnique__3"] = { affix = "", "35% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUnique__4"] = { affix = "", "100% increased Lightning Damage", statOrder = { 1377 }, level = 40, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUnique__5"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUnique__6"] = { affix = "", "(10-15)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUnique__7"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 70, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamagePercentUnique__8"] = { affix = "", "(30-40)% increased Lightning Damage", statOrder = { 1377 }, level = 70, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LifeGainedFromEnemyDeathUniqueTwoHandAxe1"] = { affix = "", "Gain 20 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUniqueDagger1"] = { affix = "", "Gain (100-200) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUniqueBootsStrInt1"] = { affix = "", "Gain (10-20) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUniqueTwoHandAxe2"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUniqueTwoHandMace7"] = { affix = "", "Gain 10 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (15-20) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUniqueOneHandAxe3"] = { affix = "", "Gain (5-7) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUniqueBodyStrDexInt1"] = { affix = "", "Gain 100 Life per Enemy Killed", statOrder = { 1748 }, level = 94, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUniqueDagger11"] = { affix = "", "Gain 5 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeGainedFromEnemyDeathUnique__2"] = { affix = "", "Gain (20-30) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUnique__3"] = { affix = "", "Gain (15-25) Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUnique__4"] = { affix = "", "Gain 100 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedFromEnemyDeathUnique__5"] = { affix = "", "Gain 150 Life per Enemy Killed", statOrder = { 1748 }, level = 1, group = "LifeGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ManaGainedFromEnemyDeathUniqueBow2"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeathUniqueDagger1"] = { affix = "", "Gain (50-100) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeathUniqueRing4"] = { affix = "", "Gain (5-20) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeathUniqueTwoHandSword3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeathUniqueTwoHandAxe5"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeathUniqueShieldInt3"] = { affix = "", "Gain 10 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeathUniqueBodyStrDexInt1"] = { affix = "", "Gain 100 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain 30 Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeathUnique__2"] = { affix = "", "Gain (20-40) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaGainedFromEnemyDeathUnique__3"] = { affix = "", "Gain (1-100) Mana per Enemy Killed", statOrder = { 1763 }, level = 1, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["LocalCriticalStrikeChanceUniqueOneHandMace1"] = { affix = "", "25% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueOneHandSword4"] = { affix = "", "(90-110)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueDescentDagger1"] = { affix = "", "100% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueDagger8"] = { affix = "", "(40-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueWand6_"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueSceptre9"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueOneHandAxe8_"] = { affix = "", "(30-50)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueStaff14"] = { affix = "", "(20-35)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalStrikeChanceUniqueTwoHandMace6"] = { affix = "", "(30-40)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalCriticalMultiplierUniqueBow3"] = { affix = "", "+50% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplierUniqueClaw2"] = { affix = "", "+40% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplierUniqueDagger4"] = { affix = "", "+(30-40)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["LocalCriticalMultiplierUniqueOneHandSword4"] = { affix = "", "+(20-30)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["FlaskIncreasedRecoverySpeedUniqueFlask3"] = { affix = "", "(35-50)% reduced Recovery rate", statOrder = { 855 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoverySpeedUnique___1"] = { affix = "", "(80-120)% increased Recovery rate", statOrder = { 855 }, level = 1, group = "FlaskIncreasedRecoverySpeed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmountUniqueFlask4"] = { affix = "", "(30-50)% increased Amount Recovered", "100% increased Recovery rate", statOrder = { 854, 855 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmountUnique__1"] = { affix = "", "(30-50)% increased Amount Recovered", "50% reduced Recovery rate", statOrder = { 854, 855 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskIncreasedRecoveryAmountUnique__2"] = { affix = "", "(150-200)% increased Amount Recovered", statOrder = { 854 }, level = 1, group = "FlaskIncreasedRecoveryAmount", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskIncreasedDuration1"] = { affix = "Saturated", "33% reduced Recovery rate", statOrder = { 855 }, level = 1, group = "FlaskIncreasedDuration", weightKey = { "utility_flask", "default", }, weightVal = { 3000, 0 }, modTags = { "flask" }, }, + ["FlaskFullInstantRecoveryUnique__1"] = { affix = "", "(65-75)% reduced Amount Recovered", "Instant Recovery", statOrder = { 854, 866 }, level = 1, group = "FlaskFullInstantRecovery", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskExtraLifeUnique__1"] = { affix = "", "50% increased Life Recovered", statOrder = { 849 }, level = 1, group = "FlaskExtraLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["FlaskFreezeImmunityUnique__1"] = { affix = "", "Grants Immunity to Chill for 4 seconds if used while Chilled", "Grants Immunity to Freeze for 4 seconds if used while Frozen", statOrder = { 902, 902.1 }, level = 1, group = "FlaskDispellsChill", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, }, + ["FlaskDispellsBurningUnique__1"] = { affix = "", "Grants Immunity to Ignite for 4 seconds if used while Ignited", "Removes all Burning when used", statOrder = { 904, 904.1 }, level = 1, group = "FlaskDispellsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, }, + ["FlaskExtraChargesUnique__1"] = { affix = "", "+45 to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercentUnique_1"] = { affix = "", "(40-60)% increased Charge Recovery", statOrder = { 845 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercentUnique__2"] = { affix = "", "(20-30)% increased Charge Recovery", statOrder = { 845 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesAddedIncreasePercentUnique__3"] = { affix = "", "(20-40)% increased Charge Recovery", statOrder = { 845 }, level = 1, group = "FlaskIncreasedChargesAdded", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskBuffManaLeechWhileHealing"] = { affix = "of Craving", "2% of Physical Attack Damage Leeched as Mana during Effect", statOrder = { 953 }, level = 12, group = "FlaskBuffManaLeechWhileHealing", weightKey = { "default", }, weightVal = { 0 }, modTags = { "flask", "resource", "mana", "physical", "attack" }, }, + ["FlaskChanceRechargeOnCritUnique__1"] = { affix = "", "50% chance to gain a Flask Charge when you deal a Critical Strike", statOrder = { 842 }, level = 50, group = "FlaskChanceRechargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, }, + ["FlaskEffectIncreasedDurationReducedEffect1"] = { affix = "[UNUSED]", "(35-45)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 20, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskEffectIncreasedDurationReducedEffect2"] = { affix = "[UNUSED]", "(46-55)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 36, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskEffectIncreasedDurationReducedEffect3_"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 52, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskEffectIncreasedDurationReducedEffect4__"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 68, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskEffectIncreasedDurationReducedEffect5"] = { affix = "[UNUSED]", "(56-66)% increased Duration", "25% reduced effect", statOrder = { 857, 935 }, level = 84, group = "FlaskEffectReducedDuration", weightKey = { "no_effect_flask_mod", "utility_flask", "default", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskEffectDurationUnique__1"] = { affix = "", "(25-50)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskEffectDurationUnique__2"] = { affix = "", "(60-80)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskEffectDurationUnique__3"] = { affix = "", "(30-50)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskEffectDurationUnique__4"] = { affix = "", "25% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskEffectDurationUnique__6"] = { affix = "", "(70-80)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskEffectDurationUnique__7"] = { affix = "", "(50-80)% increased Duration", statOrder = { 857 }, level = 1, group = "FlaskEffectReducedDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUsedUnique___1"] = { affix = "", "500% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUsedUnique___2"] = { affix = "", "(125-150)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUsedUnique__3"] = { affix = "", "50% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUsedUnique__4"] = { affix = "", "(-10-10)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUsedUnique__5"] = { affix = "", "(125-150)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUsedUnique__6_"] = { affix = "", "(80-100)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUsedUnique__7"] = { affix = "", "100% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUsedUnique__8"] = { affix = "", "(175-200)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUsedUnique__9_"] = { affix = "", "(40-50)% increased Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUsedUnique__10"] = { affix = "", "(-10-10)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUsedUnique__11"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskExtraChargesUnique__2_"] = { affix = "", "+(-40-90) to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskExtraChargesUnique__3"] = { affix = "", "+(10-20) to Maximum Charges", statOrder = { 837 }, level = 1, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskIncreasedDurationUnique__2"] = { affix = "", "90% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskIncreasedDurationUnique1", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskIncreasedDurationUnique__3"] = { affix = "", "(-35-35)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskIncreasedDurationUnique1", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskBuffReducedManaCostWhileHealingUnique__1"] = { affix = "", "10% increased Mana Cost of Skills during Effect", statOrder = { 999 }, level = 1, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskBuffWardWhileHealingUnique__1"] = { affix = "", "50% reduced Ward during Effect", statOrder = { 939 }, level = 1, group = "FlaskBuffWardWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "defences" }, }, + ["FlaskWardUnbreakableDuringEffectUnique__1"] = { affix = "", "Ward does not Break during Effect", statOrder = { 940 }, level = 1, group = "FlaskWardUnbreakableDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences" }, }, + ["GlobalSpellGemsLevelUnique__1"] = { affix = "", "+2 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, }, + ["GlobalColdSpellGemsLevelUnique__1"] = { affix = "", "+3 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["LocalIncreaseSocketedLightningGemLevelUniqueStaff8"] = { affix = "", "+2 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "caster", "gem" }, }, + ["LocalIncreaseSocketedLightningGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, }, + ["LocalIncreaseSocketedChaosGemLevelUnique__1"] = { affix = "", "+2 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "gem" }, }, + ["GlobalPhysicalSpellGemsLevelUnique__1"] = { affix = "", "+3 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "physical", "caster", "gem" }, }, + ["GlobalVaalGemsLevelImplicit1_"] = { affix = "", "+1 to Level of all Vaal Skill Gems", statOrder = { 10517 }, level = 1, group = "GlobalVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedProjectileGemLevel1"] = { affix = "", "+1 to Level of Socketed Projectile Gems", statOrder = { 177 }, level = 1, group = "LocalIncreaseSocketedProjectileGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedSpellGemLevel1"] = { affix = "", "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, }, + ["LocalIncreaseSocketedSpellGemLevelUniqueWand4"] = { affix = "", "+1 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "gem" }, }, + ["GlobalIncreaseMinionSpellSkillGemLevelUnique__1"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["GlobalIncreaseMinionSpellSkillGemLevelUnique__2"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["GlobalIncreaseMinionSpellSkillGemLevelUnique__3"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["GlobalIncreaseMinionSpellSkillGemLevelUnique__4"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 100, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["GlobalIncreaseMinionSpellSkillGemLevelUnique__5"] = { affix = "", "+(1-2) to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["GlobalIncreaseMeleeSkillGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Melee Skill Gems", statOrder = { 9208 }, level = 1, group = "GlobalIncreaseMeleeSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevelUnique__2_"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevelUnique__3"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevelUnique__4"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevelUnique__5____"] = { affix = "", "+3 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["LocalIncreaseSocketedSpellGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Spell Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedSpellGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, }, + ["LocalIncreaseSocketedFireGemLevelUniqueStaff1"] = { affix = "", "+2 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["LocalIncreaseSocketedFireGemLevelUniqueDagger10"] = { affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "caster", "gem" }, }, + ["LocalIncreaseSocketedFireGemLevelUniqueStaff13"] = { affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, + ["LocalIncreaseSocketedFireGemLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, + ["LocalIncreaseSocketedFireGemLevelUnique__2"] = { affix = "", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, + ["LocalIncreaseSocketedBowGemLevelUniqueBow2"] = { affix = "", "+1 to Level of Socketed Bow Gems", statOrder = { 178 }, level = 1, group = "LocalIncreaseSocketedBowGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedColdGemLevelUniqueDexHelmet2"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, + ["LocalIncreaseSocketedColdGemLevelUniqueStaff13"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, + ["LocalIncreaseSocketedColdGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, + ["LocalIncreaseSocketedFireGemLevelUniqueDexHelmet2"] = { affix = "", "+1 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, + ["LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUnique__4"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUnique__5"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedMeleeGemLevelUniqueRapier1"] = { affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedColdGemLevelUniqueStaff2"] = { affix = "", "+2 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "caster", "gem" }, }, + ["LocalIncreaseSocketedGemLevelUniqueSceptre1"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUniqueHelmetStrDex6"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedFireGemLevelUniqueBodyInt4"] = { affix = "", "+3 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevelUniqueShieldInt2"] = { affix = "", "+2 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["LocalIncreaseSocketedMeleeGemLevelUniqueTwoHandMace5"] = { affix = "", "+1 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, + ["LocalIncreaseSocketedMinionGemLevelUniqueTwoHandMace5"] = { affix = "", "+1 to Level of Socketed Minion Gems", statOrder = { 180 }, level = 1, group = "LocalIncreaseSocketedMinionGemLevel", weightKey = { }, weightVal = { }, modTags = { "minion", "gem" }, }, + ["LocalIncreaseSocketedAuraGemLevelUniqueHelmetDex5"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, }, + ["LocalIncreaseSocketedAuraGemLevelUniqueBodyDexInt4"] = { affix = "", "+1 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, }, + ["LocalIncreaseSocketedAuraGemLevelUnique___1"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, }, + ["LocalIncreaseSocketedAuraGemLevelUnique___2___"] = { affix = "", "+5 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, }, + ["LocalIncreaseSocketedAuraGemLevelUnique___3"] = { affix = "", "+(3-5) to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, }, + ["LocalIncreaseSocketedColdGemLevelUniqueClaw5"] = { affix = "", "+1 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, + ["LocalIncreaseSocketedGemLevelUniqueRing23"] = { affix = "", "+5 to Level of Socketed Gems", statOrder = { 162 }, level = 57, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUniqueRing39"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUniqueWand8"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUniqueTwoHandAxe9"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUnique__2"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUnique___3"] = { affix = "", "+1 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, }, + ["LocalIncreaseSocketedGemLevelUnique__6"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUnique__7"] = { affix = "", "+1 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUnique__8"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUnique__9"] = { affix = "", "+(5-8) to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUnique__10"] = { affix = "", "+(1-2) to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGemLevelUnique__11_"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedDexterityGemLevelUniqueClaw8"] = { affix = "", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "LocalIncreaseSocketedDexterityGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["LocalIncreaseSocketedGolemLevelUniqueRing35"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 203 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGolemLevelUniqueRing36"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 203 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedGolemLevelUniqueRing37"] = { affix = "", "+3 to Level of Socketed Golem Gems", statOrder = { 203 }, level = 55, group = "LocalSocketedGolemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldInt5"] = { affix = "", "+3 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldStr4"] = { affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedWarcryGemLevelUniqueShieldDex7"] = { affix = "", "+1 to Level of Socketed Warcry Gems", statOrder = { 193 }, level = 1, group = "LocalSocketedWarcryGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreasedAccuracyUnique__1"] = { affix = "", "+(330-350) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyUnique__2"] = { affix = "", "(15-25)% increased Attack Speed", "+(400-500) to Accuracy Rating", statOrder = { 1413, 2024 }, level = 1, group = "LocalAccuracyRatingAndAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LocalIncreasedAccuracyUnique__3"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyUnique__4"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LocalIncreasedAccuracyUnique__5"] = { affix = "", "+(300-400) to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracySwordImplicit1"] = { affix = "", "+45 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracySwordImplicit2"] = { affix = "", "+165 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracySwordImplicit3"] = { affix = "", "+190 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracySwordImplicit4"] = { affix = "", "+240 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracySwordImplicit5"] = { affix = "", "+330 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracySwordImplicit6"] = { affix = "", "+350 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracySwordImplicit7"] = { affix = "", "+400 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracySwordImplicit8"] = { affix = "", "+460 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracySwordImplicit9"] = { affix = "", "+475 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracy2hSwordImplicit1"] = { affix = "", "+60 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracy2hSwordImplicit2"] = { affix = "", "+120 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracy2hSwordImplicit3"] = { affix = "", "+185 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracy2hSwordImplicit4"] = { affix = "", "+250 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracy2hSwordImplicit5"] = { affix = "", "+305 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracy2hSwordImplicit6"] = { affix = "", "+360 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracy2hSwordImplicit7"] = { affix = "", "+400 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracy2hSwordImplicit8"] = { affix = "", "+435 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracy2hSwordImplicit9"] = { affix = "", "+470 to Accuracy Rating", statOrder = { 2024 }, level = 1, group = "LocalAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["CannotBeFrozen"] = { affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["CannotBeFrozenUnique__1"] = { affix = "", "Cannot be Frozen", statOrder = { 1838 }, level = 1, group = "CannotBeFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["BlockingBlocksSpellsUniqueAmulet1"] = { affix = "", "15% Chance to Block Spell Damage", statOrder = { 1155 }, level = 7, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockingBlocksSpellsUnique__1"] = { affix = "", "6% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockingBlocksSpellsUnique__2"] = { affix = "", "(7-9)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockPercentageUniqueAmulet1"] = { affix = "", "(12-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 7, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockPercentageUnique__1"] = { affix = "", "+(2-6)% Chance to Block Spell Damage", statOrder = { 1158 }, level = 1, group = "AdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockPercentageUnique__2"] = { affix = "", "(4-6)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockPercentageUnique__3_"] = { affix = "", "(16-22)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockPercentageUnique__4"] = { affix = "", "(10-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["CullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CullingStrikeUniqueDescentTwoHandSword1"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BlockRecoveryImplicitShield1"] = { affix = "", "60% increased Block Recovery", statOrder = { 1167 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockRecoveryImplicitShield2"] = { affix = "", "120% increased Block Recovery", statOrder = { 1167 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockRecoveryImplicitShield3"] = { affix = "", "180% increased Block Recovery", statOrder = { 1167 }, level = 1, group = "BlockRecovery", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AlwaysHits"] = { affix = "", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AlwaysHitsUniqueTwoHandMace6"] = { affix = "", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AlwaysHitsUnique__1"] = { affix = "", "Hits can't be Evaded", statOrder = { 2043 }, level = 1, group = "AlwaysHits", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AlwaysHitsUnique__2"] = { affix = "", "Your hits can't be Evaded", statOrder = { 2044 }, level = 1, group = "AlwaysHitsGlobal", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AlwaysHitsUniqueGlovesDexInt4"] = { affix = "", "Your hits can't be Evaded", statOrder = { 2044 }, level = 1, group = "AlwaysHitsGlobal", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["HitsCauseMonsterFleeUniqueRing1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HitsCauseMonsterFleeUniqueBootsStrInt1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HitsCauseMonsterFleeUnique__1"] = { affix = "", "10% chance to Cause Monsters to Flee", statOrder = { 2042 }, level = 1, group = "HitsCauseMonsterFlee", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumEnduranceChargeUniqueRing2"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["MaximumEnduranceChargeUniqueBodyStr3"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["MaximumEnduranceChargeUniqueBodyStrDex3"] = { affix = "", "+2 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["MaximumEnduranceChargeUnique__1_"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["MaximumEnduranceChargeUnique__2"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ReducedMaximumEnduranceChargeUniqueCorruptedJewel17"] = { affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ReducedMaximumEnduranceChargeUnique__1"] = { affix = "", "-1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ReducedMaximumEnduranceChargeUnique__2"] = { affix = "", "-2 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["AddPowerChargeOnCrit1__"] = { affix = "", "Gain a Power Charge for each Enemy you hit with a Critical Strike", statOrder = { 2547 }, level = 1, group = "AddPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ActorSizeUniqueAmulet2"] = { affix = "", "20% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ActorSizeUniqueHelmetDex6"] = { affix = "", "10% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ActorSizeUniqueAmulet12"] = { affix = "", "10% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ActorSizeUniqueBeltDemigods1"] = { affix = "", "10% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ActorSizeUniqueRingDemigods1"] = { affix = "", "3% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ActorSizeUnique__1"] = { affix = "", "3% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ActorSizeUnique__2"] = { affix = "", "15% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ActorSizeUnique__3"] = { affix = "", "10% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ActorSizeUnique__4"] = { affix = "", "5% increased Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumManaUniqueBodyStrInt1"] = { affix = "", "50% reduced maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUniqueRing5"] = { affix = "", "20% increased maximum Mana", statOrder = { 1580 }, level = 14, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUniqueTwoHandMace5"] = { affix = "", "25% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUniqueAmulet10"] = { affix = "", "(16-24)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUniqueStaff4"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUniqueStaff5"] = { affix = "", "18% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUniqueStaff6"] = { affix = "", "(50-100)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUniqueJewel54"] = { affix = "", "(15-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUnique__1"] = { affix = "", "(7-10)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUnique___2"] = { affix = "", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUnique__3"] = { affix = "", "(10-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUnique__4"] = { affix = "", "(4-6)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUnique__5"] = { affix = "", "(9-15)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUnique__6"] = { affix = "", "(6-10)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUnique__7"] = { affix = "", "(15-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUnique__8"] = { affix = "", "(16-20)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaUnique__10"] = { affix = "", "20% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumManaImplicitAtlasRing_"] = { affix = "", "(8-10)% increased maximum Mana", statOrder = { 1580 }, level = 100, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumLifeUniqueOneHandSword2"] = { affix = "", "25% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUniqueAmulet6"] = { affix = "", "20% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUniqueBelt4"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeShieldInt1"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUniqueBodyInt3"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUniqueRing16"] = { affix = "", "25% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUniqueBodyStrDex1"] = { affix = "", "(30-40)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUniqueStaff4"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUniqueShieldDexInt2"] = { affix = "", "(10-20)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUniqueGlovesStrInt3"] = { affix = "", "(12-16)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUniqueJewel52"] = { affix = "", "(6-8)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__1"] = { affix = "", "(8-12)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__2"] = { affix = "", "4% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__3"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__4_"] = { affix = "", "(4-8)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__5"] = { affix = "", "(15-25)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__6"] = { affix = "", "(4-8)% increased maximum Life", statOrder = { 1571 }, level = 25, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__7"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__9"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__10_"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__11"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__12"] = { affix = "", "(4-7)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__13"] = { affix = "", "(4-6)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__14"] = { affix = "", "5% increased maximum Life", statOrder = { 1571 }, level = 62, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__15"] = { affix = "", "(6-8)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__16"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__17"] = { affix = "", "(6-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__18"] = { affix = "", "(7-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__19"] = { affix = "", "(7-12)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__20___"] = { affix = "", "(10-15)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__21"] = { affix = "", "(5-10)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__22"] = { affix = "", "(12-15)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__23"] = { affix = "", "24% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__24"] = { affix = "", "+(45-60) to maximum Life", statOrder = { 1569 }, level = 40, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__25"] = { affix = "", "+(40-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__26"] = { affix = "", "(-17-17)% reduced maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeUnique__27"] = { affix = "", "10% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeImplicitAtlasRing"] = { affix = "", "(5-7)% increased maximum Life", statOrder = { 1571 }, level = 100, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AreaOfEffectImplicitMarakethTwoHandMace1"] = { affix = "", "15% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectImplicitMarakethTwoHandMace2"] = { affix = "", "20% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectImplicitTwoHandMace1__"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectImplicitTwoHandMace2_"] = { affix = "", "15% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUniqueDagger1"] = { affix = "", "30% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUniqueDescentStaff1"] = { affix = "", "15% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUniqueQuiver6"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 13, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "20% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUniqueShieldDexInt2"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUniqueOneHandMace7"] = { affix = "", "(15-25)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUniqueShieldDex7"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUnique__1"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUnique__2_"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUnique__3"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUnique__4_"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUnique__5"] = { affix = "", "10% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUnique__6"] = { affix = "", "(10-15)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUnique__7_"] = { affix = "", "30% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUnique__8"] = { affix = "", "(15-20)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUnique__9"] = { affix = "", "30% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AreaOfEffectUnique__10"] = { affix = "", "(40-50)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BurnDamageUniqueStaff1"] = { affix = "", "70% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["BurnDamageUniqueDescentOneHandMace1"] = { affix = "", "25% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["BurnDamageUniqueRing15"] = { affix = "", "(60-80)% increased Burning Damage", statOrder = { 1877 }, level = 14, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["BurnDamageUniqueCorruptedJewel1"] = { affix = "", "(20-30)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["BurnDamageUnique__1"] = { affix = "", "(20-30)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurnDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["CannotCrit"] = { affix = "", "Never deal Critical Strikes", statOrder = { 2178 }, level = 1, group = "CannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ManaCostIncreaseUniqueTwoHandAxe4"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaCostIncreaseUniqueGlovesInt6"] = { affix = "", "(40-80)% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaCostIncreasedUniqueWand7"] = { affix = "", "40% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaCostIncreasedUniqueHelmetStrInt6"] = { affix = "", "75% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaCostReductionUnique__1"] = { affix = "", "(6-8)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaCostReductionUnique__2_"] = { affix = "", "(10-20)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SocketedGemsHaveReducedManaCostUniqueHelmetDexInt5"] = { affix = "", "Socketed Gems have 50% reduced Mana Cost", statOrder = { 555 }, level = 1, group = "SocketedSkillsHaveReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, + ["SocketedGemsHaveReducedManaCostUniqueDescentClaw1"] = { affix = "", "Socketed Gems have 50% reduced Mana Cost", statOrder = { 555 }, level = 1, group = "SocketedSkillsHaveReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, + ["BloodMagic"] = { affix = "", "Blood Magic", statOrder = { 10772 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["ArsenalOfVengeance"] = { affix = "", "Arsenal of Vengeance", statOrder = { 10807 }, level = 1, group = "ArsenalOfVengeance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["RetaliationSkillsBecomeUsableEveryXSecondsUnique_1"] = { affix = "", "Damaging Retaliation Skills become Usable every 4 seconds", statOrder = { 9936 }, level = 78, group = "RetaliationSkillsUsableAfterDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RetaliationSkillDamageUnique_1"] = { affix = "", "Retaliation Skills deal (50-100)% increased Damage", statOrder = { 9930 }, level = 1, group = "RetaliationSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["RetaliateSkillUseWindowDuration_1"] = { affix = "", "Retaliation Skills become Usable for (50-100)% longer", statOrder = { 9940 }, level = 1, group = "RetaliationSkillUseWindowDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotEvade"] = { affix = "", "Cannot Evade Enemy Attacks", statOrder = { 1918 }, level = 1, group = "CannotEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["AdditionalArrowsUniqueBow3"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AdditionalArrowsUniqueTransformed__1"] = { affix = "", "Bow Attacks fire an additional Arrow", statOrder = { 1794 }, level = 55, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AdditionalArrowsUnique__1"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 1, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AdditionalArrowsUnique__2"] = { affix = "", "Bow Attacks fire 2 additional Arrows", statOrder = { 1794 }, level = 77, group = "AdditionalArrows", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["MinionRunSpeedUniqueAmulet3"] = { affix = "", "Minions have (10-15)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedUniqueWand2"] = { affix = "", "Minions have (20-30)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedUniqueJewel16"] = { affix = "", "Minions have (5-10)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedUnique__1"] = { affix = "", "Minions have 10% reduced Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedUnique__2"] = { affix = "", "Minions have (80-100)% increased Movement Speed", statOrder = { 1769 }, level = 48, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedUnique__3"] = { affix = "", "Minions have (25-45)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedUnique__4"] = { affix = "", "Minions have (10-20)% increased Movement Speed", statOrder = { 1769 }, level = 78, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedUnique__5"] = { affix = "", "Minions have (40-50)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["MinionRunSpeedUnique__6"] = { affix = "", "Minions have (15-25)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["MinionLifeUniqueAmulet3"] = { affix = "", "Minions have (10-15)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeUniqueTwoHandSword4"] = { affix = "", "Minions have (30-40)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeUniqueTwoHandMace5"] = { affix = "", "Minions have (20-40)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeUniqueBodyInt9"] = { affix = "", "Minions have 20% reduced maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeUniqueRing33"] = { affix = "", "Minions have 15% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeUniqueJewel18"] = { affix = "", "Minions have (5-15)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeUnique__1"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeUnique__2"] = { affix = "", "Minions have (10-20)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeUnique__3_"] = { affix = "", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeUnique__4__"] = { affix = "", "Minions have 10% reduced maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeUnique__5_"] = { affix = "", "Minions have (20-40)% reduced maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionDamageImplicitHelmet1"] = { affix = "", "Minions deal (15-20)% increased Damage", statOrder = { 1973 }, level = 78, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUniqueAmulet3"] = { affix = "", "Minions deal (10-15)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUniqueWand2"] = { affix = "", "Minions deal (50-70)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUniqueTwoHandSword4"] = { affix = "", "Minions deal (30-40)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUniqueBodyInt9"] = { affix = "", "Minions deal 15% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUniqueJewel1"] = { affix = "", "Minions deal (8-12)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUnique__1"] = { affix = "", "Minions deal (8-12)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUnique__2"] = { affix = "", "Minions deal (20-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUnique__3_"] = { affix = "", "Minions deal (60-80)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUnique4"] = { affix = "", "Minions deal (10-15)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUnique__5"] = { affix = "", "Minions deal (30-40)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUnique__6"] = { affix = "", "Minions deal (35-45)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUnique__7"] = { affix = "", "Minions deal (60-80)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUnique__8_"] = { affix = "", "Minions deal (40-60)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageUnique__9"] = { affix = "", "Minions deal (113-157)% increased Damage", statOrder = { 1973 }, level = 80, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDurationUnique__1"] = { affix = "", "(17-31)% increased Minion Duration", statOrder = { 5032 }, level = 80, group = "MinionDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MinionPhysicalDamageAsChaosUnique__1"] = { affix = "", "Minions gain (59-83)% of Physical Damage as Extra Chaos Damage", statOrder = { 9349 }, level = 80, group = "MinionPhysicalDamageAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "minion" }, }, + ["MinionAttackAndCastSpeedUnique__1"] = { affix = "", "Minions have (12-16)% increased Attack Speed", "Minions have (12-16)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionChaosResistanceUnique___1"] = { affix = "", "Minions have +29% to Chaos Resistance", statOrder = { 2913 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, }, + ["MinionChaosResistanceUnique__2__"] = { affix = "", "Minions have +29% to Chaos Resistance", statOrder = { 2913 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, }, + ["MinionChaosResistanceUnique__3"] = { affix = "", "Minions have +(-17-17)% to Chaos Resistance", statOrder = { 2913 }, level = 1, group = "MinionChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance", "minion" }, }, + ["MinionAttackBlockChanceUnique__1"] = { affix = "", "Minions have +(10-12)% Chance to Block Attack Damage", statOrder = { 2903 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, }, + ["MinionAttackBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Attack Damage", statOrder = { 2903 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, }, + ["MinionSpellBlockChanceUnique__1_"] = { affix = "", "Minions have +(10-12)% Chance to Block Spell Damage", statOrder = { 2904 }, level = 1, group = "MinionSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, }, + ["MinionSpellBlockChanceUnique__2"] = { affix = "", "Minions have +25% Chance to Block Spell Damage", statOrder = { 2904 }, level = 1, group = "MinionSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, }, + ["MinionAttackDodgeChanceUnique__1"] = { affix = "", "Minions have +(10-12)% chance to Suppress Spell Damage", statOrder = { 9333 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MinionSpellDodgeChanceUnique__1_"] = { affix = "", "Minions have +(10-12)% chance to Suppress Spell Damage", statOrder = { 9333 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MinionSuppressSpellChanceUnique__1"] = { affix = "", "Minions have +(20-24)% chance to Suppress Spell Damage", statOrder = { 9333 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["CannotBeStunned"] = { affix = "", "Cannot be Stunned", statOrder = { 2173 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotBeStunnedUnique__1_"] = { affix = "", "Cannot be Stunned", statOrder = { 2173 }, level = 1, group = "CannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalCurseOnEnemiesUnique__1"] = { affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["AdditionalCurseOnEnemiesUnique__2"] = { affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["AdditionalCurseOnEnemiesUnique__3"] = { affix = "", "You can apply one fewer Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ConvertPhysicalToFireUniqueQuiver1_"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireUniqueShieldStr3"] = { affix = "", "25% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireUniqueOneHandSword4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireUnique__2_"] = { affix = "", "30% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireUnique__3__"] = { affix = "", "(0-50)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ConvertPhysicalToFireUnique__4"] = { affix = "", "100% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["BeltIncreasedFlaskEffectUnique__1"] = { affix = "", "Flasks applied to you have 25% increased Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskEffectUnique__2"] = { affix = "", "Flasks applied to you have 60% reduced Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltReducedFlaskChargesGainedUnique__1"] = { affix = "", "30% reduced Flask Charges gained", statOrder = { 2183 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargesGainedUnique__1_"] = { affix = "", "(15-25)% increased Flask Charges gained", statOrder = { 2183 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargedUsedUnique__1"] = { affix = "", "(10-20)% increased Flask Charges used", statOrder = { 2184 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskChargedUsedUnique__2"] = { affix = "", "(7-10)% reduced Flask Charges used", statOrder = { 2184 }, level = 1, group = "BeltReducedFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDurationUnique__2"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDurationUnique__3___"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDurationUnique__4"] = { affix = "", "150% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltReducedFlaskDurationUniqueDescentBelt1"] = { affix = "", "30% reduced Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDurationUnique__1"] = { affix = "", "60% increased Flask Effect Duration", statOrder = { 2187 }, level = 14, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["IncreasedFlaskDurationUnique__1"] = { affix = "", "(20-30)% reduced Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltFlaskLifeRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["FlaskLifeRecoveryRateUniqueJewel46"] = { affix = "", "10% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["FlaskLifeRecoveryUniqueAmulet25"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryUnique__1"] = { affix = "", "(30-40)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskLifeRecoveryUnique__2"] = { affix = "", "100% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["FlaskLifeRecoveryUnique__1"] = { affix = "", "(15-30)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["BeltFlaskManaRecoveryUniqueDescentBelt1"] = { affix = "", "30% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryUnique__1"] = { affix = "", "(20-30)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskManaRecoveryUnique__2"] = { affix = "", "100% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskManaRecoveryUnique__1"] = { affix = "", "(15-30)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskManaRecoveryUnique__2"] = { affix = "", "(1-100)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskManaRecoveryUniqueBodyDex7"] = { affix = "", "(60-100)% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskManaRecoveryUniqueShieldInt3"] = { affix = "", "15% increased Mana Recovery from Flasks", statOrder = { 2060 }, level = 1, group = "BeltFlaskManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["BeltFlaskLifeRecoveryRateUniqueBelt4"] = { affix = "", "25% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["FlaskLifeRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Life Recovery rate", statOrder = { 2189 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["FlaskLifeRecoveryRateUniqueSceptre5"] = { affix = "", "10% reduced Flask Life Recovery rate", statOrder = { 2189 }, level = 1, group = "BeltFlaskLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["FlaskManaRecoveryRateUniqueBodyStrDex1"] = { affix = "", "50% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskManaRecoveryRateUniqueSceptre5"] = { affix = "", "(30-40)% increased Flask Mana Recovery rate", statOrder = { 2190 }, level = 1, group = "BeltFlaskManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["BeltIncreasedFlaskChargesGainedUniqueBelt2"] = { affix = "", "50% increased Flask Charges gained", statOrder = { 2183 }, level = 1, group = "BeltIncreasedFlaskChargesGained", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltIncreasedFlaskDurationUniqueBelt3"] = { affix = "", "20% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["IncreasedChillDurationUniqueBodyDex1"] = { affix = "", "25% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["IncreasedChillDurationUniqueBodyStrInt3"] = { affix = "", "150% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["IncreasedChillDurationUniqueQuiver5"] = { affix = "", "(30-40)% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 13, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["IncreasedChillDurationUnique__1"] = { affix = "", "(35-50)% increased Chill Duration on Enemies", statOrder = { 1856 }, level = 1, group = "IncreasedChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["Acrobatics"] = { affix = "", "Acrobatics", statOrder = { 10767 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasNoSockets"] = { affix = "", "Has no Sockets", statOrder = { 67 }, level = 1, group = "HasNoSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotBeShocked"] = { affix = "", "Cannot be Shocked", statOrder = { 1841 }, level = 1, group = "CannotBeShocked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackerTakesDamageUnique_1"] = { affix = "", "Reflects (200-300) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit1"] = { affix = "", "Reflects (2-5) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 5, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit2"] = { affix = "", "Reflects (5-12) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 12, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit3"] = { affix = "", "Reflects (10-23) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 20, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit4"] = { affix = "", "Reflects (24-35) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 27, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit5"] = { affix = "", "Reflects (36-50) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 33, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit6"] = { affix = "", "Reflects (51-70) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 39, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit7"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 45, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit8"] = { affix = "", "Reflects (91-120) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 49, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit9"] = { affix = "", "Reflects (121-150) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 54, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit10"] = { affix = "", "Reflects (151-180) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 58, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit11"] = { affix = "", "Reflects (181-220) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 62, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit12"] = { affix = "", "Reflects (221-260) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 66, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageShieldImplicit13"] = { affix = "", "Reflects (261-300) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 70, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageUniqueIntHelmet1"] = { affix = "", "Reflects 5 Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageUnique__1"] = { affix = "", "Reflects (71-90) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageUnique__2"] = { affix = "", "Reflects (100-150) Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesColdDamageGlovesDex1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 2203 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AttackerTakesDamageUniqueHelmetDex3"] = { affix = "", "Reflects 4 Physical Damage to Melee Attackers", statOrder = { 2202 }, level = 1, group = "AttackerTakesDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttackerTakesDamageUniqueHelmetDexInt6"] = { affix = "", "Reflects 100 to 150 Physical Damage to Melee Attackers", statOrder = { 2197 }, level = 1, group = "AttackerTakesDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["TakesDamageWhenAttackedUniqueIntHelmet1"] = { affix = "", "+25 Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "TakesDamageWhenAttacked", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["PainAttunement"] = { affix = "", "Pain Attunement", statOrder = { 10800 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["IncreasedExperienceUniqueIntHelmet3"] = { affix = "", "5% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedExperienceUniqueTwoHandMace4"] = { affix = "", "(30-50)% reduced Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedExperienceUniqueSceptre1"] = { affix = "", "3% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedExperienceUniqueRing14"] = { affix = "", "2% increased Experience gain", statOrder = { 1603 }, level = 1, group = "ExperienceIncrease", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToAvoidFreezeAndChillUniqueDexHelmet5"] = { affix = "", "25% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidChillUniqueDescentOneHandAxe1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["CannotBeChilledUniqueBodyStrInt3"] = { affix = "", "Cannot be Chilled", statOrder = { 1837 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["CannotBeChilledUnique__1"] = { affix = "", "Cannot be Chilled", statOrder = { 1837 }, level = 1, group = "CannotBeChilled", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["ChanceToAvoidChilledUnique__1"] = { affix = "", "50% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["CannotBeFrozenOrChilledUnique__1"] = { affix = "", "Cannot be Chilled", "Cannot be Frozen", statOrder = { 1837, 1838 }, level = 31, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotBeFrozenOrChilledUnique__2"] = { affix = "", "Cannot be Chilled", "Cannot be Frozen", statOrder = { 1837, 1838 }, level = 1, group = "CannotBeChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReducedManaCostOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "20% reduced Mana Cost of Skills when on Low Life", statOrder = { 1886 }, level = 1, group = "ReducedManaCostOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ElementalResistsOnLowLifeUniqueHelmetStrInt1"] = { affix = "", "+20% to all Elemental Resistances while on Low Life", statOrder = { 1622 }, level = 1, group = "ElementalResistsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["EvasionOnLowLifeUniqueAmulet4"] = { affix = "", "+(150-250) to Evasion Rating while on Low Life", statOrder = { 1545 }, level = 1, group = "EvasionOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LifeRegenerationOnLowLifeUniqueAmulet4"] = { affix = "", "Regenerate 1% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationOnLowLifeUniqueBodyStrInt2"] = { affix = "", "Regenerate 2% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationOnLowLifeUniqueShieldStrInt3_"] = { affix = "", "Regenerate 3% of Life per second while on Low Life", statOrder = { 1945 }, level = 1, group = "LifeRegenerationOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ItemRarityOnLowLifeUniqueBootsInt1"] = { affix = "", "100% increased Rarity of Items found when on Low Life", statOrder = { 1599 }, level = 1, group = "ItemRarityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["MovementVelocityOnLowLifeUniqueBootsStrDex1"] = { affix = "", "40% reduced Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityOnLowLifeUniqueGlovesDexInt1"] = { affix = "", "20% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityOnLowLifeUniqueRapier1"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityOnLowLifeUnique__1"] = { affix = "", "(10-20)% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityOnFullLifeUniqueBootsInt3"] = { affix = "", "20% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityOnFullLifeUniqueTwoHandAxe2"] = { affix = "", "15% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityOnLowLifeUniqueBootsDex3"] = { affix = "", "30% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityOnLowLifeUniqueShieldStrInt5"] = { affix = "", "10% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityOnLowLifeUniqueRing9"] = { affix = "", "(6-8)% increased Movement Speed when on Low Life", statOrder = { 1799 }, level = 1, group = "MovementVelocityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityOnFullLifeUniqueAmulet13"] = { affix = "", "10% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityOnFullLifeUnique__1"] = { affix = "", "30% increased Movement Speed when on Full Life", statOrder = { 1800 }, level = 1, group = "MovementVelocityOnFullLife", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ElementalDamageUniqueBootsStr1"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUniqueSceptre1"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUniqueIntHelmet3"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUniqueDescentBelt1"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUniqueSceptre7"] = { affix = "", "(80-100)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUniqueHelmetInt9"] = { affix = "", "20% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUniqueRingVictors"] = { affix = "", "(10-20)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUniqueJewel10"] = { affix = "", "10% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUniqueStaff13"] = { affix = "", "(30-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUnique__1"] = { affix = "", "30% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUnique__2_"] = { affix = "", "(20-30)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUnique__3"] = { affix = "", "(30-40)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalDamageUnique__4"] = { affix = "", "(7-10)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ConvertPhysicalToColdUniqueGlovesDex1"] = { affix = "", "100% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdUniqueQuiver5"] = { affix = "", "Gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdUnique__1"] = { affix = "", "25% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdUnique__2"] = { affix = "", "50% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToColdUnique__3"] = { affix = "", "(0-50)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 1, group = "ConvertPhysicalToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["ConvertPhysicalToLightningUniqueOneHandAxe8"] = { affix = "", "25% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicaltoLightningUnique__1"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicaltoLightningUnique__2"] = { affix = "", "30% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicaltoLightningUnique__3"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicaltoLightningUnique__4"] = { affix = "", "50% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["ConvertPhysicaltoLightningUnique__5"] = { affix = "", "(0-50)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 1, group = "ConvertPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["AttackSpeedOnFullLifeUniqueGlovesStr1"] = { affix = "", "30% increased Attack Speed when on Full Life", statOrder = { 1222 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["AttackSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "15% increased Attack Speed when on Full Life", statOrder = { 1222 }, level = 1, group = "AttackSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["Conduit"] = { affix = "", "Conduit", statOrder = { 10775 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["PhysicalAttackDamageReducedUniqueAmulet8"] = { affix = "", "-4 Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 25, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["PhysicalAttackDamageReducedUniqueBelt3"] = { affix = "", "-2 Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["PhysicalAttackDamageReducedUniqueBodyStr2"] = { affix = "", "-(15-10) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["PhysicalAttackDamageReducedUniqueBodyDex2"] = { affix = "", "-3 Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["PhysicalAttackDamageReducedUniqueBodyDex3"] = { affix = "", "-(7-5) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["PhysicalAttackDamageReducedUniqueBelt8"] = { affix = "", "-(50-40) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["PhysicalAttackDamageReducedUniqueShieldDexInt1"] = { affix = "", "-(18-14) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["PhysicalAttackDamageReducedUnique__1"] = { affix = "", "-(60-30) Physical Damage taken from Attack Hits", statOrder = { 2234 }, level = 1, group = "PhysicalAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["AdditionalBlockChanceUniqueShieldStrDex1"] = { affix = "", "+(3-6)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueShieldDex1"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueShieldDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueShieldStr1"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueShieldStrInt4"] = { affix = "", "+6% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueShieldStrInt6"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueDescentShield1_"] = { affix = "", "+3% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueShieldDex4"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueShieldStrDex2"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueShieldDex5"] = { affix = "", "+10% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueShieldInt4"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueShieldStr4"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUniqueShieldStrDex3__"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SubtractedBlockChanceUniqueShieldStrInt8"] = { affix = "", "-10% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__1"] = { affix = "", "+(3-5)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__2"] = { affix = "", "+6% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__3"] = { affix = "", "+(6-10)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__4"] = { affix = "", "+6% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__5"] = { affix = "", "+5% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__6"] = { affix = "", "+(3-4)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__7__"] = { affix = "", "+(8-12)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__8_"] = { affix = "", "+(9-13)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__9"] = { affix = "", "+(20-25)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__10"] = { affix = "", "+(3-8)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__11"] = { affix = "", "+15% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__12"] = { affix = "", "+(1-10)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChanceUnique__13"] = { affix = "", "+(5-10)% Chance to Block", statOrder = { 2249 }, level = 1, group = "IncreasedShieldBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockOnLowLifeUniqueShieldStrDex1"] = { affix = "", "36% Chance to Block Spell Damage while on Low Life", statOrder = { 1156 }, level = 1, group = "BlockPercentAppliedToSpellsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockUniqueShieldInt1"] = { affix = "", "(12-18)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockUniqueShieldStrInt1"] = { affix = "", "(21-24)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockUniqueBootsInt5"] = { affix = "", "(6-7)% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockUniqueTwoHandAxe6"] = { affix = "", "7% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockUniqueDescentShieldStr1"] = { affix = "", "30% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockUniqueShieldInt4"] = { affix = "", "7% Chance to Block Spell Damage", statOrder = { 1155 }, level = 1, group = "BlockingBlocksSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_"] = { affix = "", "+30% Chance to Block Spell Damage while on Low Life", statOrder = { 1145 }, level = 1, group = "SpellBlockPercentageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockPercentageUniqueShieldInt1"] = { affix = "", "(10-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockPercentageUniqueShieldStrInt1"] = { affix = "", "(20-30)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockPercentageUniqueBootsInt5"] = { affix = "", "(15-20)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentageRainbowstride", weightKey = { }, weightVal = { }, modTags = { "block", "blue_herring" }, }, + ["SpellBlockPercentageUniqueTwoHandAxe6"] = { affix = "", "(7-10)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockPercentageUniqueShieldInt4"] = { affix = "", "10% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["MaximumColdResistUniqueShieldDex1"] = { affix = "", "+5% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistUnique__1_"] = { affix = "", "+(-3-3)% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumColdResistUnique__2"] = { affix = "", "+3% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumFireResistUniqueShieldStrInt5"] = { affix = "", "+5% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumFireResistUnique__1"] = { affix = "", "+(-3-3)% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumLightningResistUniqueStaff8c"] = { affix = "", "+5% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MaximumLightningResistUnique__1"] = { affix = "", "+(-3-3)% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["MeleeAttackerTakesColdDamageUniqueShieldDex1"] = { affix = "", "Reflects (25-50) Cold Damage to Melee Attackers", statOrder = { 2203 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["RangedAttackDamageReducedUniqueShieldStr1"] = { affix = "", "-25 Physical Damage taken from Projectile Attacks", statOrder = { 2246 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["RangedAttackDamageReducedUniqueShieldStr2"] = { affix = "", "-(80-50) Physical Damage taken from Projectile Attacks", statOrder = { 2246 }, level = 1, group = "RangedAttackDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["GainFrenzyChargeOnCriticalHit"] = { affix = "", "Gain a Frenzy Charge on Critical Strike", statOrder = { 1828 }, level = 1, group = "FrenzyChargeOnCriticalHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, }, + ["DisableOffhandSlot"] = { affix = "", "Uses both hand slots", statOrder = { 1074 }, level = 1, group = "DisableOffhandSlot", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DisableOffHandSlotUnique__1"] = { affix = "", "Uses both hand slots", statOrder = { 1074 }, level = 1, group = "DisableOffhandSlot", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotBlockAttacks"] = { affix = "", "Cannot Block Attack Damage", statOrder = { 2258 }, level = 1, group = "CannotBlockAttacks", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["IncreasedMaximumResistsUniqueShieldStrInt1"] = { affix = "", "+4% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["IncreasedMaximumResistsUnique__1"] = { affix = "", "+(1-4)% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["IncreasedMaximumResistsUnique__2"] = { affix = "", "-5% to all maximum Resistances", statOrder = { 1642 }, level = 1, group = "MaximumResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["IncreasedMaximumColdResistUniqueShieldStrInt4"] = { affix = "", "+5% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ItemActsAsConcentratedAOESupportUniqueHelmetInt4"] = { affix = "", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemActsAsConcentratedAOESupportUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemActsAsConcentratedAOESupportUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemActsAsConcentratedAOESupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 5 Concentrated Effect", statOrder = { 453 }, level = 1, group = "DisplaySocketedGemGetsConcentratedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemActsAsFirePenetrationSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Fire Penetration", statOrder = { 465 }, level = 1, group = "DisplaySocketedGemsGetFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ItemActsAsFireDamageSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 462 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ItemActsAsColdToFireSupportUniqueSceptre2"] = { affix = "", "Socketed Gems are Supported by Level 10 Cold to Fire", statOrder = { 463 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ItemActsAsColdToFireSupportUniqueStaff13"] = { affix = "", "Socketed Gems are Supported by Level 5 Cold to Fire", statOrder = { 463 }, level = 1, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ItemActsAsColdToFireSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Cold to Fire", statOrder = { 463 }, level = 75, group = "DisplaySocketedGemsGetColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ShareEnduranceChargesWithParty"] = { affix = "", "Share Endurance Charges with nearby party members", statOrder = { 2260 }, level = 1, group = "ShareEnduranceChargesWithParty", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["GainEnduranceChargeWhenCriticallyHit"] = { affix = "", "Gain an Endurance Charge when you take a Critical Strike", statOrder = { 1835 }, level = 1, group = "GainEnduranceChargeWhenCriticallyHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "critical" }, }, + ["BlindingHitUniqueWand1"] = { affix = "", "10% chance to Blind Enemies on hit", statOrder = { 2263 }, level = 1, group = "BlindingHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemActsAsSupportBlindUniqueWand1"] = { affix = "", "Socketed Gems are supported by Level 20 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemActsAsSupportBlindUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are supported by Level 30 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemActsAsSupportBlindUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are supported by Level 6 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemActsAsSupportBlindUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Blind", statOrder = { 470 }, level = 1, group = "DisplaySocketedGemGetsBlindLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReducedFreezeDurationUniqueShieldStrInt3"] = { affix = "", "80% reduced Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeDurationOnSelfUnique__1"] = { affix = "", "10000% increased Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["FacebreakerUnarmedMoreDamage"] = { affix = "", "(600-1000)% more Physical Damage with Unarmed Melee Attacks", statOrder = { 2436 }, level = 1, group = "FacebreakerPhysicalUnarmedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3"] = { affix = "", "Socketed Gems are Supported by Level 15 Pulverise", statOrder = { 358 }, level = 1, group = "SupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5"] = { affix = "", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 224 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1"] = { affix = "", "Socketed Gems are Supported by Level 5 Increased Area of Effect", statOrder = { 224 }, level = 1, group = "DisplaySocketedGemGetsIncreasedAreaOfEffectLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SocketedGemsGetIncreasedAreaOfEffectUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 411 }, level = 1, group = "SupportedByIntensifyLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["EnemiesCantLifeLeech"] = { affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2440 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueEnemiesCantLifeLeech__1"] = { affix = "", "Enemies Cannot Leech Life From you", statOrder = { 2440 }, level = 1, group = "EnemiesCantLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ExtraGore"] = { affix = "", "Extra gore", statOrder = { 10856 }, level = 1, group = "ExtraGore", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OneSocketEachColourUnique"] = { affix = "", "Has one socket of each colour", statOrder = { 79 }, level = 1, group = "OneSocketEachColour", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BlockWhileDualWieldingUniqueDagger3"] = { affix = "", "+12% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockWhileDualWieldingUniqueTwoHandAxe6"] = { affix = "", "+(8-12)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockWhileDualWieldingUniqueOneHandSword5"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockWhileDualWieldingUniqueDagger9"] = { affix = "", "+5% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockWhileDualWieldingUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlockWhileDualWieldingUnique__2_"] = { affix = "", "+18% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["MaximumMinionCountUniqueBootsInt4"] = { affix = "", "+1 to Level of all Raise Zombie Gems", "+1 to Level of all Raise Spectre Gems", statOrder = { 1615, 1616 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, }, + ["MaximumMinionCountUniqueTwoHandSword4"] = { affix = "", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2160, 2161, 9537 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumMinionCountUniqueTwoHandSword4Updated"] = { affix = "", "+(1-2) to maximum number of Raised Zombies", "+(1-2) to maximum number of Spectres", "+(1-2) to maximum number of Skeletons", statOrder = { 2160, 2161, 2162 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumMinionCountUniqueSceptre5"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumMinionCountUniqueBootsStrInt2"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 9537 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumMinionCountUniqueBootsStrInt2Updated"] = { affix = "", "+1 to maximum number of Skeletons", statOrder = { 2162 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumMinionCountUniqueBodyInt9"] = { affix = "", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumMinionCountUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", "(7-10)% increased Skeleton Cast Speed", "(3-5)% increased Skeleton Movement Speed", statOrder = { 10046, 10047, 10048 }, level = 1, group = "SkeletonSpeedOld", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MaximumMinionCountUnique__1__"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumMinionCountUnique__2"] = { affix = "", "+2 to maximum number of Spectres", statOrder = { 2161 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["SkeletonMovementSpeedUniqueJewel1"] = { affix = "", "(3-5)% increased Skeleton Movement Speed", statOrder = { 10048 }, level = 1, group = "SkeletonMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SkeletonAttackSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Attack Speed", statOrder = { 10046 }, level = 1, group = "SkeletonAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, }, + ["SkeletonCastSpeedUniqueJewel1"] = { affix = "", "(7-10)% increased Skeleton Cast Speed", statOrder = { 10047 }, level = 1, group = "SkeletonCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "minion" }, }, + ["SocketedemsHaveBloodMagicUniqueShieldStrInt2"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 527 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SocketedGemsHaveBloodMagicUniqueOneHandSword7"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 527 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SocketedGemsHaveBloodMagicUnique__1"] = { affix = "", "Socketed Gems Cost and Reserve Life instead of Mana", statOrder = { 527 }, level = 1, group = "DisplaySocketedGemGetsBloodMagic", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2"] = { affix = "", "+2 to Level of Socketed Aura Gems", statOrder = { 181 }, level = 1, group = "LocalIncreaseSocketedAuraLevel", weightKey = { }, weightVal = { }, modTags = { "aura", "gem" }, }, + ["SocketedItemsHaveChanceToFleeUniqueClaw6"] = { affix = "", "Socketed Gems have 10% chance to cause Enemies to Flee on Hit", statOrder = { 535 }, level = 1, group = "DisplaySocketedGemGetsFlee", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["AttackerTakesLightningDamageUniqueBodyInt1"] = { affix = "", "Reflects 1 to 250 Lightning Damage to Melee Attackers", statOrder = { 2200 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AttackerTakesLightningDamageUnique___1"] = { affix = "", "Reflects 1 to 150 Lightning Damage to Melee Attackers", statOrder = { 2200 }, level = 1, group = "AttackerTakesLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["PhysicalDamageConvertToChaosUniqueBow5"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageConvertToChaosUniqueClaw2"] = { affix = "", "(10-20)% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageConvertToChaosBodyStrInt4"] = { affix = "", "30% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageConvertToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageConvertedToChaosPerLevelUnique__1"] = { affix = "", "1% of Physical Damage Converted to Chaos Damage per Level", statOrder = { 5042 }, level = 1, group = "PhysicalDamageConvertToChaosPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["MaximumMinionCountUniqueWand2"] = { affix = "", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2160, 2161, 9537 }, level = 1, group = "MaximumMinionCountHalfSkeletons", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumMinionCountUniqueWand2Updated"] = { affix = "", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Spectres", "+1 to maximum number of Skeletons", statOrder = { 2160, 2161, 2162 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["LifeReservationUniqueWand2"] = { affix = "", "Cannot be used with Chaos Inoculation", "Reserves 30% of Life", statOrder = { 1076, 2439 }, level = 1, group = "ReservesLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3"] = { affix = "", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 1, group = "LocalIncreaseSocketedStrengthGemLevel", weightKey = { }, weightVal = { }, modTags = { "attribute", "gem" }, }, + ["ChaosTakenOnES"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield", statOrder = { 2510 }, level = 1, group = "ChaosTakenOnES", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["PhysicalDamagePercentTakesAsChaosDamageUniqueBow5"] = { affix = "", "25% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 1, group = "PhysicalDamagePercentTakesAsChaosDamage", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, }, + ["PhysicalBowDamageCloseRangeUniqueBow6"] = { affix = "", "50% more Damage with Arrow Hits at Close Range", statOrder = { 2442 }, level = 1, group = "ChinSolPhysicalBowDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["KnockbackCloseRangeUniqueBow6"] = { affix = "", "Bow Knockback at Close Range", statOrder = { 2444 }, level = 1, group = "ChinSolCloseRangeKnockBack", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PercentDamageGoesToManaUniqueBootsDex3"] = { affix = "", "(5-10)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["PercentDamageGoesToManaUniqueHelmetStrInt3"] = { affix = "", "(10-20)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["PercentDamageGoesToManaUnique__1"] = { affix = "", "8% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["PercentDamageGoesToManaUnique__2"] = { affix = "", "(6-12)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ChanceToIgniteUniqueBodyInt2"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteUniqueTwoHandSword6"] = { affix = "", "20% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteUniqueDescentOneHandMace1"] = { affix = "", "30% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteUniqueBootsStrInt3"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteUniqueRing38"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteUnique__1"] = { affix = "", "(16-22)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteUnique__2"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteUnique__3"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteUnique__4"] = { affix = "", "(6-10)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteUnique__5"] = { affix = "", "25% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToIgniteUnique__6"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["BurnDurationUniqueBodyInt2"] = { affix = "", "(40-75)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["BurnDurationUniqueDescentOneHandMace1"] = { affix = "", "500% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["BurnDurationUniqueRing31"] = { affix = "", "15% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["BurnDurationUniqueWand10"] = { affix = "", "25% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["BurnDurationUnique__1"] = { affix = "", "33% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["BurnDurationUnique__2"] = { affix = "", "10000% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["PhysicalDamageTakenAsFirePercentUniqueBodyInt2"] = { affix = "", "20% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalDamageTakenAsFirePercentUnique__1"] = { affix = "", "8% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 1, group = "PhysicalDamageTakenAsFirePercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["AttackerTakesFireDamageUniqueBodyInt2"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 2204 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AttackerTakesFireDamageUnique__1"] = { affix = "", "Reflects 100 Fire Damage to Melee Attackers", statOrder = { 2204 }, level = 1, group = "AttackerTakesFireDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AttackerTakesColdDamageUnique__1"] = { affix = "", "Reflects 100 Cold Damage to Melee Attackers", statOrder = { 2203 }, level = 1, group = "AttackerTakesColdDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AttackerTakesLightningDamageUnique__1"] = { affix = "", "Reflects 100 Lightning Damage to Melee Attackers", statOrder = { 2205 }, level = 1, group = "AttackerTakesLightningDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AvoidIgniteUniqueBodyDex3"] = { affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AvoidIgniteUnique__1"] = { affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3"] = { affix = "", "(10-15)% increased Physical Damage with Ranged Weapons", statOrder = { 1998 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["RangedWeaponPhysicalDamagePlusPercentUnique__1"] = { affix = "", "(75-150)% increased Physical Damage with Ranged Weapons", statOrder = { 1998 }, level = 1, group = "RangedWeaponPhysicalDamagePlusPercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["PhysicalDamageTakenPercentToReflectUniqueBodyStr2"] = { affix = "", "1000% of Melee Physical Damage taken reflected to Attacker", statOrder = { 2457 }, level = 1, group = "PhysicalDamageTakenPercentToReflect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AdditionalBlockUniqueBodyDex2"] = { affix = "", "+5% Chance to Block Attack Damage", statOrder = { 2458 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockUnique__1"] = { affix = "", "+(2-6)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 1, group = "AdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockUnique__2"] = { affix = "", "15% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ArrowPierceUniqueBow7"] = { affix = "", "Arrows Pierce all Targets", statOrder = { 4990 }, level = 1, group = "ArrowsAlwaysPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AdditionalArrowPierceImplicitQuiver12_"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1791 }, level = 45, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AdditionalArrowPierceImplicitQuiver5New"] = { affix = "", "Arrows Pierce an additional Target", statOrder = { 1791 }, level = 32, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LeechEnergyShieldInsteadofLife"] = { affix = "", "Leech Energy Shield instead of Life", statOrder = { 7336 }, level = 1, group = "LeechEnergyShieldInsteadofLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["BlockWhileDualWieldingClawsUniqueClaw1"] = { affix = "", "+8% Chance to Block Attack Damage while Dual Wielding Claws", statOrder = { 1163 }, level = 1, group = "BlockWhileDualWieldingClaws", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ArmourPercent VsProjectilesUniqueShieldStr2"] = { affix = "", "200% increased Armour against Projectiles", statOrder = { 2463 }, level = 1, group = "ArmourPercentVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["BlockVsProjectilesUniqueShieldStr2"] = { affix = "", "+25% chance to Block Projectile Attack Damage", statOrder = { 2464 }, level = 1, group = "BlockVsProjectiles", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["CannotLeech"] = { affix = "", "Cannot Leech", statOrder = { 2465 }, level = 1, group = "CannotLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, + ["SocketedItemsHaveReducedReservationUniqueShieldStrInt2"] = { affix = "", "Socketed Gems have 30% increased Reservation Efficiency", statOrder = { 528 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["SocketedItemsHaveReducedReservationUniqueBodyDexInt4"] = { affix = "", "Socketed Gems have 45% increased Reservation Efficiency", statOrder = { 528 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["SocketedItemsHaveReducedReservationUnique__1"] = { affix = "", "Socketed Gems have 25% increased Reservation Efficiency", statOrder = { 528 }, level = 1, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["SocketedItemsHaveIncreasedReservationUnique__1"] = { affix = "", "Socketed Gems have 20% reduced Reservation Efficiency", statOrder = { 528 }, level = 57, group = "DisplaySocketedGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["ChanceToFreezeUniqueStaff2"] = { affix = "", "8% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeUniqueQuiver5"] = { affix = "", "(7-10)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeUniqueRing30"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeUnique__1"] = { affix = "", "5% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeUnique__2"] = { affix = "", "2% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeUnique__3"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeUnique__4"] = { affix = "", "10% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToFreezeUnique__5"] = { affix = "", "20% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["FrozenMonstersTakeIncreasedDamage"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2461 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["FrozenMonstersTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Frozen by you take 20% increased Damage", statOrder = { 2461 }, level = 1, group = "FrozenMonstersTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedIntelligenceRequirementsUniqueSceptre1"] = { affix = "", "60% increased Intelligence Requirement", statOrder = { 1080 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedIntelligenceRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Intelligence Requirement", statOrder = { 1080 }, level = 1, group = "IncreasedIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalInflictHallowingFlameOnHitUnique__1"] = { affix = "", "Attacks with this weapon inflict Hallowing Flame on Hit", statOrder = { 63 }, level = 1, group = "LocalInflictHallowingFlameOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["AddedIntelligenceRequirementsUnique__1"] = { affix = "", "+257 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SocketedGemsHaveAddedChaosDamageUniqueBodyInt3"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SocketedGemsHaveAddedChaosDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SocketedGemsHaveAddedChaosDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 25 Added Chaos Damage", statOrder = { 458 }, level = 50, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SocketedGemsHaveAddedChaosDamageUnique__3"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Chaos Damage", statOrder = { 458 }, level = 1, group = "DisplaySocketedGemsGetAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["EnergyShieldGainedOnBlockUniqueShieldStrInt4"] = { affix = "", "Recover Energy Shield equal to 2% of Armour when you Block", statOrder = { 2468 }, level = 1, group = "EnergyShieldGainedOnBlockBasedOnArmour", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, }, + ["LocalPoisonOnHit"] = { affix = "", "Poisonous Hit", statOrder = { 2469 }, level = 1, group = "LocalPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["SkeletonDurationUniqueTwoHandSword4"] = { affix = "", "(150-200)% increased Skeleton Duration", statOrder = { 1779 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["SkeletonDurationUniqueJewel1_"] = { affix = "", "(10-20)% reduced Skeleton Duration", statOrder = { 1779 }, level = 1, group = "SkeletonDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["IncreasedStrengthRequirementsUniqueTwoHandSword4"] = { affix = "", "25% increased Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReducedStrengthRequirementsUniqueTwoHandMace5"] = { affix = "", "20% reduced Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReducedStrengthRequirementUniqueBodyStr5"] = { affix = "", "30% reduced Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedStrengthRequirementUniqueStaff8"] = { affix = "", "40% increased Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedStrengthREquirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Strength Requirement", statOrder = { 1086 }, level = 1, group = "IncreasedStrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StrengthRequirementsUniqueOneHandMace3"] = { affix = "", "+200 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StrengthRequirementsUnique__1"] = { affix = "", "+100 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StrengthRequirementsUnique__2"] = { affix = "", "+200 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StrengthRequirementsUnique__3_"] = { affix = "", "+(500-700) Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StrengthRequirementsUnique__4"] = { affix = "", "+100 Strength Requirement", statOrder = { 1085 }, level = 1, group = "StrengthRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IntelligenceRequirementsUniqueOneHandMace3"] = { affix = "", "+300 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IntelligenceRequirementsUniqueBow12"] = { affix = "", "+212 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IntelligenceRequirementsUnique_1"] = { affix = "", "+200 Intelligence Requirement", statOrder = { 1079 }, level = 1, group = "IntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DexterityRequirementsUnique__1"] = { affix = "", "+160 Dexterity Requirement", statOrder = { 1077 }, level = 1, group = "DexterityRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StrengthIntelligenceRequirementsUnique__1"] = { affix = "", "+600 Strength and Intelligence Requirement", statOrder = { 1084 }, level = 1, group = "StrengthIntelligenceRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellDamageTakenOnLowManaUniqueBodyInt4"] = { affix = "", "100% increased Spell Damage taken when on Low Mana", statOrder = { 2471 }, level = 1, group = "SpellDamageTakenOnLowMana", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["EvasionOnFullLifeUniqueBodyDex4"] = { affix = "", "+1000 to Evasion Rating while on Full Life", statOrder = { 1546 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["EvasionOnFullLifeUnique__1_"] = { affix = "", "+1500 to Evasion Rating while on Full Life", statOrder = { 1546 }, level = 1, group = "EvasionOnFullLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["ReflectCurses"] = { affix = "", "Hex Reflection", statOrder = { 2476 }, level = 1, group = "ReflectCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["FlaskCurseImmunityUnique___1"] = { affix = "", "Removes Curses on use", statOrder = { 897 }, level = 1, group = "FlaskCurseImmunity", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, }, + ["CausesBleedingUniqueTwoHandAxe4"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2482 }, level = 1, group = "CausesBleeding50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["CausesBleedingUniqueTwoHandAxe4Updated"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["CausesBleedingUniqueTwoHandAxe7"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["CausesBleedingUniqueTwoHandAxe7Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["CausesBleedingUniqueOneHandAxe5"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["CausesBleedingUniqueOneHandAxe5Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["CausesBleedingUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["CausesBleedingUnique__1Updated_"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["CausesBleedingUnique__2"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2481 }, level = 1, group = "CausesBleeding25PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["CausesBleedingUnique__2Updated"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "CausesBleedingChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["CauseseBleedingOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Bleeding on Critical Strike", statOrder = { 7863 }, level = 1, group = "LocalCausesBleedingOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, }, + ["CausesBleedingOnCritUniqueDagger11"] = { affix = "", "50% chance to cause Bleeding on Critical Strike", statOrder = { 7873 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AttacksDealNoPhysicalDamage"] = { affix = "", "Attacks deal no Physical Damage", statOrder = { 2479 }, level = 1, group = "AttacksDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["GoldenLightBeam"] = { affix = "", "Golden Radiance", statOrder = { 2495 }, level = 1, group = "GoldenLightBeam", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotBeStunnedOnLowLife"] = { affix = "", "Cannot be Stunned when on Low Life", statOrder = { 2174 }, level = 1, group = "CannotBeStunnedOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AuraEffectUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AuraEffectOnMinionsUniqueShieldInt2"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 2145 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, }, + ["AuraEffectUnique__1"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AuraEffectUnique__2____"] = { affix = "", "10% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AuraEffectOnMinionsUnique__1_"] = { affix = "", "20% increased effect of Non-Curse Auras from your Skills on your Minions", statOrder = { 2145 }, level = 1, group = "AuraEffectOnMinions", weightKey = { }, weightVal = { }, modTags = { "minion", "aura" }, }, + ["AreaDamageUniqueBodyDexInt1"] = { affix = "", "(40-50)% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AreaDamageUniqueDescentOneHandSword1"] = { affix = "", "10% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AreaDamageUniqueOneHandMace7"] = { affix = "", "(10-20)% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AreaDamageImplicitMace1"] = { affix = "", "30% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AreaDamageUnique__1"] = { affix = "", "30% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AllDamageUniqueRing6"] = { affix = "", "(10-30)% increased Damage", statOrder = { 1191 }, level = 30, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AllDamageUniqueRing8"] = { affix = "", "10% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AllDamageUniqueHelmetDexInt2"] = { affix = "", "25% reduced Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AllDamageUniqueStaff4"] = { affix = "", "(40-50)% increased Global Damage", statOrder = { 1192 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AllDamageUniqueSceptre8"] = { affix = "", "(40-60)% increased Global Damage", statOrder = { 1192 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AllDamageUniqueBelt11"] = { affix = "", "10% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AllDamageUnique__1"] = { affix = "", "10% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AllDamageUnique__2"] = { affix = "", "(20-25)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AllDamageUnique__3"] = { affix = "", "(250-300)% increased Global Damage", statOrder = { 1192 }, level = 1, group = "AllDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AllDamageUnique__4"] = { affix = "", "(30-40)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["LightRadiusUniqueSceptre2"] = { affix = "", "50% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueBootsStrDex2"] = { affix = "", "25% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueRing9_"] = { affix = "", "31% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueBodyInt8"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueBodyStrInt4"] = { affix = "", "25% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueRing11"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueAmulet17"] = { affix = "", "(10-15)% increased Light Radius", statOrder = { 2500 }, level = 50, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueBelt6"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueBodyStr4"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueBootsStrDex3"] = { affix = "", "20% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueHelmetStrInt4"] = { affix = "", "40% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueBodyStrInt5"] = { affix = "", "(20-30)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueRing15"] = { affix = "", "10% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueHelmetStrDex6"] = { affix = "", "40% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueStaff10_"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUniqueShieldDemigods"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUnique__1"] = { affix = "", "(15-20)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUnique__2"] = { affix = "", "(10-30)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUnique__3"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUnique__4"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUnique__5"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUnique__6"] = { affix = "", "50% reduced Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUnique__7_"] = { affix = "", "(15-25)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUnique__8"] = { affix = "", "20% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUnique__9"] = { affix = "", "25% increased Light Radius", statOrder = { 2500 }, level = 1, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUnique__10"] = { affix = "", "50% reduced Light Radius", statOrder = { 2500 }, level = 100, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightRadiusUnique__11"] = { affix = "", "50% increased Light Radius", statOrder = { 2500 }, level = 92, group = "LightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnfeebleOnHitUniqueShieldStr3"] = { affix = "", "25% chance to Curse Non-Cursed Enemies with Enfeeble on Hit", statOrder = { 2521 }, level = 1, group = "EnfeebleOnHitUncursed", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["GroundTarOnCritTakenUniqueShieldInt2"] = { affix = "", "Spreads Tar when you take a Critical Strike", statOrder = { 2511 }, level = 1, group = "GroundTarOnCritTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["GroundTarOnHitTakenUnique__1"] = { affix = "", "20% chance to spread Tar when Hit", statOrder = { 6917 }, level = 1, group = "GroundTarOnHitTaken", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SpellsHaveCullingStrikeUniqueDagger4"] = { affix = "", "Your Spells have Culling Strike", statOrder = { 2532 }, level = 1, group = "SpellsHaveCullingStrike", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["EvasionRatingPercentOnLowLifeUniqueHelmetDex4"] = { affix = "", "150% increased Global Evasion Rating when on Low Life", statOrder = { 2535 }, level = 1, group = "EvasionRatingPercentOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["LocalLifeLeechIsInstantUniqueClaw3"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2537 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ReducedManaReservationsCostUniqueHelmetDex5"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyUniqueHelmetDex5_"] = { affix = "", "16% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyUnique__1"] = { affix = "", "(-15-15)% reduced Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyUnique__3"] = { affix = "", "(10-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 20, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaReservationsCostUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyUniqueOneHandSword11"] = { affix = "", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedManaReservationsCostUnique__1"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ReservationEfficiencyUnique__1_"] = { affix = "", "80% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedManaReservationsCostUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ReservationEfficiencyUnique__2"] = { affix = "", "20% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReducedManaReservationsCostUniqueJewel44"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyUniqueJewel44_"] = { affix = "", "4% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ReducedManaReservationCostUnique__1"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedAllReservationLegacy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ReservationEfficiencyUnique__3__"] = { affix = "", "12% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReducedManaReservationCostUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ReservationEfficiencyUnique__5"] = { affix = "", "(5-10)% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReservationEfficiencyUnique__6"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReservationEfficiencyUnique__7"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReservationEfficiencyUnique__8"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReservationEfficiencyUnique__9"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReservationEfficiencyUnique__10"] = { affix = "", "(20-35)% reduced Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ManaReservationEfficiencyUnique__2"] = { affix = "", "(12-20)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["FireResistOnLowLifeUniqueShieldStrInt5"] = { affix = "", "+25% to Fire Resistance while on Low Life", statOrder = { 1627 }, level = 1, group = "FireResistOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["AvoidIgniteOnLowLifeUniqueShieldStrInt5"] = { affix = "", "100% chance to Avoid being Ignited while on Low Life", statOrder = { 1847 }, level = 1, group = "AvoidIgniteOnLowLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SocketedGemsGetElementalProliferationUniqueBodyInt5"] = { affix = "", "Socketed Gems are Supported by Level 5 Elemental Proliferation", statOrder = { 466 }, level = 1, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SocketedGemsGetElementalProliferationUniqueSceptre7"] = { affix = "", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 466 }, level = 94, group = "DisplaySocketedGemGetsElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SkillEffectDurationUniqueTwoHandMace5"] = { affix = "", "15% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReducedSkillEffectDurationUniqueAmulet20"] = { affix = "", "(10-20)% reduced Skill Effect Duration", statOrder = { 1895 }, level = 63, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SkillEffectDurationUnique__1"] = { affix = "", "(10-15)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SkillEffectDurationUnique__2_"] = { affix = "", "(-20-20)% reduced Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SkillEffectDurationUniqueJewel44"] = { affix = "", "4% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SkillEffectDurationUnique__3"] = { affix = "", "30% increased Skill Effect Duration", statOrder = { 1895 }, level = 75, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5"] = { affix = "", "+5 to Level of Socketed Movement Gems", statOrder = { 183 }, level = 1, group = "LocalIncreaseSocketedMovementGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["MovementVelocityPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "5% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityPerFrenzyChargeUniqueBodyDexInt3"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_"] = { affix = "", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ChanceToDodgePerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "+2% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2546 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EvasionRatingPerFrenzyChargeUniqueBootsStrDex2"] = { affix = "", "10% increased Evasion Rating per Frenzy Charge", statOrder = { 1556 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["MaximumFrenzyChargesUniqueBootsStrDex2_"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["MaximumFrenzyChargesUniqueBodyStr3"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["MaximumFrenzyChargesUniqueDescentOneHandSword1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["MaximumFrenzyChargesUnique__1"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["ReducedMaximumFrenzyChargesUniqueCorruptedJewel16"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["ReducedMaximumFrenzyChargesUnique__1"] = { affix = "", "-1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["ReducedMaximumFrenzyChargesUnique__2_"] = { affix = "", "-2 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["WeaponPhysicalDamagePerStrength"] = { affix = "", "1% increased Area of Effect per 20 Intelligence", statOrder = { 2543 }, level = 1, group = "WeaponPhysicalDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackSpeedPerDexterity"] = { affix = "", "1% increased Attack Speed per 10 Dexterity", statOrder = { 2544 }, level = 1, group = "AttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAreaOfEffectPerIntelligence"] = { affix = "", "16% increased Physical Weapon Damage per 10 Strength", statOrder = { 2545 }, level = 1, group = "IncreasedAreaOfEffectPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["FrenzyChargeDurationUniqueBootsStrDex2"] = { affix = "", "40% reduced Frenzy Charge Duration", statOrder = { 2127 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["FrenzyChargeDurationUnique__1"] = { affix = "", "20% reduced Frenzy Charge Duration", statOrder = { 2127 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["AdditionalTotemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Totems", statOrder = { 2254 }, level = 1, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TotemLifeUniqueBodyInt7"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1774 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["TotemLifeUnique__1"] = { affix = "", "(14-20)% increased Totem Life", statOrder = { 1774 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["TotemLifeUnique__2_"] = { affix = "", "(20-30)% increased Totem Life", statOrder = { 1774 }, level = 1, group = "IncreasedTotemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["DisplaySocketedGemGetsSpellTotemBodyInt7"] = { affix = "", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 464 }, level = 1, group = "DisplaySocketedGemGetsSpellTotemLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemGetsIncreasedDurationGlovesInt4_"] = { affix = "", "Socketed Gems are Supported by Level 10 Increased Duration", statOrder = { 460 }, level = 1, group = "DisplaySocketedGemGetsIncreasedDurationLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["RandomlyCursedWhenTotemsDieUniqueBodyInt7"] = { affix = "", "Inflicts a random Hex on you when your Totems die", statOrder = { 2551 }, level = 1, group = "RandomlyCursedWhenTotemsDie", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3"] = { affix = "", "Socketed Gems are Supported by Level 18 Added Lightning Damage", statOrder = { 467 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemGetsAddedLightningDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Added Lightning Damage", statOrder = { 467 }, level = 1, group = "DisplaySocketedGemGetsAddedLightningDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ShockDurationUniqueGlovesDexInt3"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7431 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockDurationUniqueStaff8"] = { affix = "", "100% increased Duration of Lightning Ailments", statOrder = { 7431 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockDurationUnique__2"] = { affix = "", "(1-100)% increased Duration of Lightning Ailments", statOrder = { 7431 }, level = 1, group = "LightningAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockDurationUnique__3"] = { affix = "", "25% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IncreasedPhysicalDamageTakenUniqueHelmetStr3"] = { affix = "", "(40-50)% increased Physical Damage taken", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["IncreasedPhysicalDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Physical Damage taken", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["IncreasedPhysicalDamageTakenUniqueBootsDex8"] = { affix = "", "20% increased Physical Damage taken", statOrder = { 2241 }, level = 1, group = "PhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4"] = { affix = "", "500% increased Attribute Requirements", statOrder = { 1075 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedLocalAttributeRequirementsUniqueGlovesDexInt1"] = { affix = "", "400% increased Attribute Requirements", statOrder = { 1075 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedLocalAttributeRequirementsUnique__1"] = { affix = "", "800% increased Attribute Requirements", statOrder = { 1075 }, level = 1, group = "LocalAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TemporalChainsOnHitUniqueGlovesInt3"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3"] = { affix = "", "+(100-125)% to Melee Critical Strike Multiplier", statOrder = { 1502 }, level = 1, group = "MeleeWeaponCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["DisablesOtherRingSlot"] = { affix = "", "Can't use other Rings", statOrder = { 1605 }, level = 1, group = "DisablesOtherRingSlot", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalItemAttributeRequirementsUniqueAmulet10"] = { affix = "", "Items and Gems have 25% reduced Attribute Requirements", statOrder = { 2552 }, level = 20, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalItemAttributeRequirementsUniqueAmulet19"] = { affix = "", "Items and Gems have 10% increased Attribute Requirements", statOrder = { 2552 }, level = 45, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalItemAttributeRequirementsUnique__1_"] = { affix = "", "Items and Gems have 100% reduced Attribute Requirements", statOrder = { 2552 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalItemAttributeRequirementsUnique__2"] = { affix = "", "Items and Gems have 50% increased Attribute Requirements", statOrder = { 2552 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalItemAttributeRequirementsUnique__3"] = { affix = "", "Items and Gems have (5-10)% reduced Attribute Requirements", statOrder = { 2552 }, level = 1, group = "GlobalItemAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReducedCurseEffectUniqueRing7"] = { affix = "", "50% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ReducedCurseEffectUniqueRing26"] = { affix = "", "60% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["IncreasedCurseEffectUnique__1"] = { affix = "", "50% increased Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ReducedCurseEffectUnique__1"] = { affix = "", "20% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ReducedCurseEffectUnique__2"] = { affix = "", "80% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "ReducedCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ManaGainPerTargetUniqueRing7"] = { affix = "", "Gain 30 Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["ManaGainPerTargetUniqueTwoHandAxe9"] = { affix = "", "Grants 30 Mana per Enemy Hit", statOrder = { 1745 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["ManaGainPerTargetUnique__1"] = { affix = "", "Grants (2-3) Mana per Enemy Hit", statOrder = { 1745 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["ManaGainPerTargetUnique__2"] = { affix = "", "Grants 2 Mana per Enemy Hit", statOrder = { 1745 }, level = 1, group = "ManaGainPerTargetLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["ManaGainPerTargetUnique__3"] = { affix = "", "Gain (5-10) Mana per Enemy Killed", statOrder = { 1763 }, level = 40, group = "ManaGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4"] = { affix = "", "Socketed Gems are supported by Level 10 Chance to Flee", statOrder = { 498 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3"] = { affix = "", "Socketed Gems are supported by Level 2 Chance to Flee", statOrder = { 498 }, level = 1, group = "DisplaySocketedGemGetsChancetoFleeLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["EnemyCriticalStrikeMultiplierUniqueRing8"] = { affix = "", "You take 50% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 1, group = "EnemyCriticalMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["PlayerLightAlternateColourUniqueRing9"] = { affix = "", "Emits a golden glow", statOrder = { 2554 }, level = 1, group = "PlayerLightAlternateColour", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChaosResistanceOnLowLifeUniqueRing9"] = { affix = "", "+(20-25)% to Chaos Resistance when on Low Life", statOrder = { 2555 }, level = 1, group = "ChaosResistanceOnLowLife", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["EnemyHitsRollLowDamageUniqueRing9"] = { affix = "", "Enemy hits on you roll low Damage", statOrder = { 2553 }, level = 1, group = "EnemyHitsRollLowDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b"] = { affix = "", "Socketed Gems are Supported by Level 12 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemGetsFasterAttackUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 13 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemsGetsFasterAttackUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Faster Attacks", statOrder = { 469 }, level = 1, group = "DisplaySocketedGemGetsFasterAttackLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4"] = { affix = "", "Socketed Gems are Supported by Level 30 Melee Physical Damage", statOrder = { 468 }, level = 1, group = "DisplaySocketedGemGetsMeleePhysicalDamageLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4"] = { affix = "", "20% chance to gain an Endurance Charge when you Block", statOrder = { 2124 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, }, + ["ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1"] = { affix = "", "50% chance to gain an Endurance Charge when you Block", statOrder = { 2124 }, level = 1, group = "ChanceToGainEnduranceChargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "endurance_charge" }, }, + ["EnemyExtraDamageRollsOnLowLifeUniqueRing9"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Low Life", statOrder = { 2556 }, level = 1, group = "EnemyExtraDamageRollsOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemyExtraDamageRollsOnFullLifeUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6419 }, level = 68, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["EnemyExtraDamageRollsOnFullLifeUnique__2"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are on Full Life", statOrder = { 6419 }, level = 1, group = "EnemyExtraDamageRollsOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["EnemyExtraDamageRollsWithLightningDamageUnique__1"] = { affix = "", "Lightning Damage of Enemies Hitting you is Lucky", statOrder = { 6378 }, level = 37, group = "EnemyExtraDamageRollsWithLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["EnemyExtraDamagerollsWithPhysicalDamageUnique_1"] = { affix = "", "Physical Damage of Enemies Hitting you is Unlucky", statOrder = { 6377 }, level = 98, group = "EnemyExtraDamageRollsWithPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["ItemDropsOnDeathUniqueAmulet12"] = { affix = "", "Item drops on death", statOrder = { 2558 }, level = 1, group = "ItemDropsOnDeath", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightningDamageOnChargeExpiryUniqueAmulet12"] = { affix = "", "Deal 1 to 1000 Lightning Damage to nearby Enemies when you lose a Power, Frenzy, or Endurance Charge", statOrder = { 2557 }, level = 1, group = "LightningDamageOnChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AttackerTakesChaosDamageUniqueBodyStrInt4"] = { affix = "", "Reflects 30 Chaos Damage to Melee Attackers", statOrder = { 2206 }, level = 1, group = "AttackerTakesChaosDamageNoRange", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedMaximumPowerChargesUniqueWand3"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["IncreasedMaximumPowerChargesUniqueStaff7"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["IncreasedMaximumPowerChargesUnique__2"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["IncreasedMaximumPowerChargesUnique__1"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["IncreasedMaximumPowerChargesUnique__3"] = { affix = "", "+2 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["IncreasedMaximumPowerChargesUnique__4"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ReducedMaximumPowerChargesUniqueCorruptedJewel18"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ReducedMaximumPowerChargesUnique__1"] = { affix = "", "-1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["IncreasedPowerChargeDurationUniqueWand3"] = { affix = "", "15% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["PowerChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Power Charge Duration", statOrder = { 2142 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["IncreasedPowerChargeDurationUnique__1"] = { affix = "", "(80-100)% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["IncreasedSpellDamagePerPowerChargeUniqueWand3"] = { affix = "", "25% increased Spell Damage per Power Charge", statOrder = { 2140 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Spell Damage per Power Charge", statOrder = { 2140 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["IncreasedSpellDamagePerPowerChargeUnique__1"] = { affix = "", "(12-16)% increased Spell Damage per Power Charge", statOrder = { 2140 }, level = 1, group = "IncreasedSpellDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["ConsecratedGroundOnBlockUniqueBodyInt8"] = { affix = "", "100% chance to create Consecrated Ground when you Block", statOrder = { 2573 }, level = 1, group = "ConsecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["DesecratedGroundOnBlockUniqueBodyStrInt4"] = { affix = "", "100% chance to create Desecrated Ground when you Block", statOrder = { 2574 }, level = 1, group = "DesecratedGroundOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["DisableChestSlot"] = { affix = "", "Can't use Chest armour", statOrder = { 2583 }, level = 1, group = "DisableChestSlot", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalIncreaseSocketedElementalGemUniqueGlovesInt6"] = { affix = "", "+1 to Level of Socketed Elemental Gems", statOrder = { 213 }, level = 1, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, }, + ["LocalIncreaseSocketedElementalGemUnique___1"] = { affix = "", "+2 to Level of Socketed Elemental Gems", statOrder = { 213 }, level = 50, group = "LocalIncreaseSocketedElementalGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "gem" }, }, + ["EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6"] = { affix = "", "Gain (15-20) Energy Shield per Enemy Killed", statOrder = { 2571 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3"] = { affix = "", "Gain (10-15) Energy Shield per Enemy Killed", statOrder = { 2571 }, level = 1, group = "EnergyShieldGainedFromEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldGainedFromEnemyDeathUnique__1"] = { affix = "", "Gain (15-25) Energy Shield per Enemy Hit with Attacks", statOrder = { 1747 }, level = 1, group = "EnergyShieldGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "attack" }, }, + ["IncreasedClawDamageOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Claw Physical Damage when on Low Life", statOrder = { 2584 }, level = 1, group = "IncreasedClawDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["IncreasedClawDamageOnLowLifeUnique__1__"] = { affix = "", "200% increased Damage with Claws while on Low Life", statOrder = { 5788 }, level = 1, group = "IncreasedClawAllDamageOnLowLife", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["IncreasedAccuracyWhenOnLowLifeUniqueClaw4"] = { affix = "", "100% increased Accuracy Rating when on Low Life", statOrder = { 2585 }, level = 1, group = "IncreasedAccuracyWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedWhenOnLowLifeUnique__1"] = { affix = "", "25% increased Attack Speed when on Low Life", statOrder = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1"] = { affix = "", "30% increased Attack Speed when on Low Life", statOrder = { 1221 }, level = 1, group = "IncreasedAttackSpeedWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["ReducedProjectileDamageUniqueAmulet12"] = { affix = "", "40% reduced Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ReducedProjectileDamageTakenUniqueAmulet12"] = { affix = "", "20% reduced Damage taken from Projectile Hits", statOrder = { 2749 }, level = 1, group = "ProjectileDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NoItemRarity"] = { affix = "", "You cannot increase the Rarity of Items found", statOrder = { 2549 }, level = 1, group = "NoItemRarity", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NoItemQuantity"] = { affix = "", "You cannot increase the Quantity of Items found", statOrder = { 2550 }, level = 1, group = "NoItemQuantity", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotDieToElementalReflect"] = { affix = "", "You cannot be killed by reflected Elemental Damage", statOrder = { 2676 }, level = 1, group = "CannotDieToElementalReflect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MeleeAttacksUsableWithoutManaUniqueOneHandAxe1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2995 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["MeleeAttacksUsableWithoutManaUnique__1"] = { affix = "", "Insufficient Mana doesn't prevent your Melee Attacks", statOrder = { 2995 }, level = 1, group = "MeleeAttacksUsableWithoutMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["HybridStrDex"] = { affix = "", "+(16-24) to Strength and Dexterity", statOrder = { 1180 }, level = 20, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["HybridStrInt"] = { affix = "", "+(16-24) to Strength and Intelligence", statOrder = { 1181 }, level = 20, group = "HybridStrInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["HybridDexInt"] = { affix = "", "+(16-24) to Dexterity and Intelligence", statOrder = { 1182 }, level = 20, group = "HybridDexInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["HybridStrDexUnique__1"] = { affix = "", "+(30-50) to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "HybridStrDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13"] = { affix = "", "+0.2 metres to Melee Strike Range", statOrder = { 2534 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42"] = { affix = "", "+0.2 metres to Melee Strike Range", statOrder = { 2534 }, level = 1, group = "MeleeWeaponAndUnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_"] = { affix = "", "+1 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeUnique__1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeUnique___2"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LocalIncreasedMeleeWeaponRangeEssence1"] = { affix = "", "+0.2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["EnduranceChargeDurationUniqueAmulet14"] = { affix = "", "30% reduced Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["EnduranceChargeDurationUniqueBodyStrInt4"] = { affix = "", "30% increased Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["FrenzyChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 20, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["FrenzyChargeOnKillChanceUniqueBootsDex4"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["FrenzyChargeOnKillChanceUniqueDescentOneHandSword1"] = { affix = "", "33% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["FrenzyChargeOnKillChanceUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["FrenzyChargeOnKillChanceUnique__2"] = { affix = "", "25% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["FrenzyChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["PowerChargeOnKillChanceUniqueAmulet15"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["PowerChargeOnKillChanceUniqueDescentDagger1"] = { affix = "", "15% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["PowerChargeOnKillChanceUniqueUniqueShieldInt3"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["PowerChargeOnKillChanceUnique__1"] = { affix = "", "(25-35)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["PowerChargeOnKillChanceProphecy_"] = { affix = "", "30% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["EnduranceChargeOnKillChanceProphecy"] = { affix = "", "30% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["EnduranceChargeOnPowerChargeExpiryUniqueAmulet14"] = { affix = "", "Gain an Endurance Charge when you lose a Power Charge", statOrder = { 2636 }, level = 1, group = "EnduranceChargeOnPowerChargeExpiry", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ChillAndFreezeBasedOffEnergyShieldBelt5Unique"] = { affix = "", "Chill Effect and Freeze Duration on you are based on 100% of Energy Shield", statOrder = { 2591 }, level = 70, group = "ChillAndFreezeDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["MeleeDamageOnFullLifeUniqueAmulet13"] = { affix = "", "60% increased Melee Damage when on Full Life", statOrder = { 2638 }, level = 1, group = "MeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["ConsecrateOnCritChanceToCreateUniqueRing11"] = { affix = "", "Creates Consecrated Ground on Critical Strike", statOrder = { 2639 }, level = 1, group = "ConsecrateOnCritChanceToCreate", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ProjectileSpeedPerFrenzyChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Speed per Frenzy Charge", statOrder = { 2640 }, level = 1, group = "ProjectileSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ProjectileDamagePerPowerChargeUniqueAmulet15"] = { affix = "", "5% increased Projectile Damage per Power Charge", statOrder = { 2641 }, level = 1, group = "ProjectileDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["RightRingSlotNoManaRegenUniqueRing13"] = { affix = "", "Right ring slot: You cannot Regenerate Mana", statOrder = { 2648 }, level = 38, group = "RightRingSlotNoManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["RightRingSlotEnergyShieldRegenUniqueRing13"] = { affix = "", "Right ring slot: Regenerate 6% of Energy Shield per second", statOrder = { 2649 }, level = 38, group = "RightRingSlotEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LeftRingSlotManaRegenUniqueRing13"] = { affix = "", "Left ring slot: 100% increased Mana Regeneration Rate", statOrder = { 2660 }, level = 1, group = "LeftRingSlotManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["LeftRingSlotNoEnergyShieldRegenUniqueRing13"] = { affix = "", "Left ring slot: You cannot Recharge or Regenerate Energy Shield", statOrder = { 2653 }, level = 1, group = "LeftRingSlotNoEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationUnique__2"] = { affix = "", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRegenerationUnique__3"] = { affix = "", "Regenerate 2% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["FlatEnergyShieldRegenerationUnique__1"] = { affix = "", "Regenerate (80-100) Energy Shield per second", statOrder = { 2645 }, level = 1, group = "FlatEnergyShieldRegenerationPerMinute", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["NoEnergyShieldRegenerationUnique__1"] = { affix = "", "Immortal Ambition", statOrder = { 10815 }, level = 60, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LifeLeechAnyDamageUnique__1"] = { affix = "", "1% of Damage Leeched as Life", statOrder = { 1661 }, level = 1, group = "LifeLeechAnyDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["KilledMonsterItemRarityOnCritUniqueRing11"] = { affix = "", "(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Strike", statOrder = { 2642 }, level = 1, group = "KilledMonsterItemRarityOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical", "drop" }, }, + ["OnslaughtBuffOnKillUniqueRing12"] = { affix = "", "You gain Onslaught for 4 seconds on Kill", statOrder = { 2643 }, level = 58, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OnslaughtBuffOnKillUniqueDagger12"] = { affix = "", "You gain Onslaught for 3 seconds on Kill", statOrder = { 2643 }, level = 1, group = "OnslaughtBuffOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "4% reduced Attack and Cast Speed per Frenzy Charge", statOrder = { 2048 }, level = 1, group = "AttackAndCastSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["LifeRegenerationPerFrenzyChargeUniqueBootsDex4"] = { affix = "", "Regenerate 0.8% of Life per second per Frenzy Charge", statOrder = { 2628 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4"] = { affix = "", "(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life", statOrder = { 2810 }, level = 1, group = "EnemiesOnLowLifeTakeMoreDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AvoidIgniteUniqueOneHandSword4"] = { affix = "", "Cannot be Ignited", statOrder = { 1839 }, level = 1, group = "CannotBeIgnited", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedMovementVelictyWhileCursedUniqueOneHandSword4"] = { affix = "", "30% increased Movement Speed while Cursed", statOrder = { 2627 }, level = 1, group = "MovementVelocityWhileCursed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ShieldBlockChanceUniqueAmulet16"] = { affix = "", "+10% Chance to Block Attack Damage while holding a Shield", statOrder = { 1139 }, level = 1, group = "GlobalShieldBlockChanceIncrease", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ReflectDamageToAttackersOnBlockUniqueAmulet16"] = { affix = "", "Reflects 240 to 300 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, }, + ["ReflectDamageToAttackersOnBlockUniqueDescentStaff1"] = { affix = "", "Reflects 8 to 14 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, }, + ["ReflectDamageToAttackersOnBlockUniqueDescentShield1"] = { affix = "", "Reflects 4 to 8 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, }, + ["ReflectDamageToAttackersOnBlockUniqueShieldDex5"] = { affix = "", "Reflects 1000 to 10000 Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, }, + ["ReflectDamageToAttackersOnBlockUniqueStaff9"] = { affix = "", "Reflects (22-44) Physical Damage to Attackers on Block", statOrder = { 2586 }, level = 1, group = "ReflectDamageToAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "physical_damage", "damage", "physical" }, }, + ["GainLifeOnBlockUniqueAmulet16"] = { affix = "", "(34-48) Life gained when you Block", statOrder = { 1757 }, level = 1, group = "GainLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["GainManaOnBlockUniqueAmulet16"] = { affix = "", "(18-24) Mana gained when you Block", statOrder = { 1758 }, level = 57, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, + ["GainManaOnBlockUnique__1"] = { affix = "", "(30-50) Mana gained when you Block", statOrder = { 1758 }, level = 1, group = "GainManaOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "mana" }, }, + ["ZombieLifeUniqueSceptre3"] = { affix = "", "Raised Zombies have +5000 to maximum Life", statOrder = { 2589 }, level = 1, group = "ZombieLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["ZombieDamageUniqueSceptre3"] = { affix = "", "Raised Zombies deal (100-125)% more Physical Damage", statOrder = { 10755 }, level = 1, group = "ZombieDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["ZombieChaosElementalResistsUniqueSceptre3"] = { affix = "", "Raised Zombies have +(25-30)% to all Resistances", statOrder = { 2590 }, level = 1, group = "ZombieChaosElementalResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance", "minion" }, }, + ["ZombieSizeUniqueSceptre3_"] = { affix = "", "25% increased Raised Zombie Size", statOrder = { 2680 }, level = 1, group = "ZombieSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["ZombiesExplodeEnemiesOnHitUniqueSceptre3"] = { affix = "", "Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage", statOrder = { 2682 }, level = 1, group = "ZombiesExplodeEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["NumberOfZombiesSummonedPercentageUniqueSceptre3"] = { affix = "", "50% reduced maximum number of Raised Zombies", statOrder = { 2588 }, level = 1, group = "NumberOfZombiesSummonedPercentage", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["IncreasedIntelligencePerUniqueUniqueRing14"] = { affix = "", "2% increased Intelligence for each Unique Item Equipped", statOrder = { 2592 }, level = 1, group = "IncreasedIntelligencePerUnique", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14"] = { affix = "", "3% chance for Slain monsters to drop an additional Scroll of Wisdom", statOrder = { 2595 }, level = 1, group = "IncreasedChanceForMonstersToDropWisdomScrolls", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ConvertColdToFireUniqueRing15"] = { affix = "", "40% of Cold Damage Converted to Fire Damage", statOrder = { 1968 }, level = 1, group = "ConvertColdToFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, }, + ["IgnitedEnemiesTurnToAshUniqueRing15"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2593 }, level = 1, group = "IgnitedEnemiesTurnToAsh", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UndyingRageOnCritUniqueTwoHandMace6"] = { affix = "", "You gain Onslaught for 4 seconds on Critical Strike", statOrder = { 2679 }, level = 1, group = "UndyingRageOnCrit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NoBonusesFromCriticalStrikes"] = { affix = "", "Your Critical Strikes do not deal extra Damage", statOrder = { 2678 }, level = 1, group = "NoBonusesFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["FlaskItemRarityUniqueFlask1"] = { affix = "", "(30-50)% increased Rarity of Items found during Effect", statOrder = { 1023 }, level = 1, group = "FlaskItemRarity", weightKey = { }, weightVal = { }, modTags = { "flask", "drop" }, }, + ["FlaskItemQuantityUniqueFlask1"] = { affix = "", "(8-12)% increased Quantity of Items found during Effect", statOrder = { 1022 }, level = 1, group = "FlaskItemQuantity", weightKey = { }, weightVal = { }, modTags = { "flask", "drop" }, }, + ["FlaskLightRadiusUniqueFlask1"] = { affix = "", "25% increased Light Radius during Effect", statOrder = { 1026 }, level = 1, group = "FlaskLightRadius", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskMaximumElementalResistancesUniqueFlask1"] = { affix = "", "+4% to all maximum Elemental Resistances during Effect", statOrder = { 1011 }, level = 1, group = "FlaskMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, }, + ["FlaskElementalResistancesUniqueFlask1_"] = { affix = "", "+10% to Elemental Resistances during Effect", statOrder = { 1031 }, level = 1, group = "FlaskElementalResistances", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "resistance" }, }, + ["SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7"] = { affix = "", "Increases and Reductions to Spell Damage also apply to Attacks at 150% of their value", statOrder = { 2687 }, level = 1, group = "SpellDamageModifiersApplyToAttackDamage150Percent", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["ConvertFireToChaosUniqueBodyInt4"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1971 }, level = 1, group = "ConvertFireToChaos60PercentValue", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["ConvertFireToChaosUniqueBodyInt4Updated"] = { affix = "", "15% of Fire Damage Converted to Chaos Damage", statOrder = { 1970 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["ConvertFireToChaosUniqueDagger10"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1971 }, level = 1, group = "ConvertFireToChaos60PercentValue", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["ConvertFireToChaosUniqueDagger10Updated"] = { affix = "", "30% of Fire Damage Converted to Chaos Damage", statOrder = { 1970 }, level = 1, group = "ConvertFireToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["MovementVelicityPerEvasionUniqueBodyDex6"] = { affix = "", "1% increased Movement Speed per 600 Evasion Rating, up to 75%", statOrder = { 2675 }, level = 1, group = "MovementVelicityPerEvasion", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["PhysicalDamageCanChillUniqueOneHandAxe1"] = { affix = "", "Your Physical Damage can Chill", statOrder = { 2879 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["PhysicalDamageCanChillUniqueDescentOneHandAxe1"] = { affix = "", "Your Physical Damage can Chill", statOrder = { 2879 }, level = 1, group = "PhysicalDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ItemQuantityWhenFrozenUniqueBow9"] = { affix = "", "15% increased Quantity of Items Dropped by Slain Frozen Enemies", statOrder = { 2694 }, level = 1, group = "ItemQuantityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemRarityWhenShockedUniqueBow9"] = { affix = "", "30% increased Rarity of Items Dropped by Slain Shocked Enemies", statOrder = { 2696 }, level = 1, group = "ItemRarityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ManaLeechPerPowerChargeUniqueBelt5"] = { affix = "", "1% of Physical Attack Damage Leeched as Mana per Power Charge", statOrder = { 1719 }, level = 88, group = "ManaLeechPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadPerPowerChargeUniqueBelt5_"] = { affix = "", "0.2% of Attack Damage Leeched as Mana per Power Charge", statOrder = { 8182 }, level = 88, group = "ManaLeechPermyriadPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["LocalChaosDamageUniqueOneHandSword3"] = { affix = "", "Adds (49-98) to (101-140) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalChaosDamageUniqueTwoHandSword7"] = { affix = "", "Adds (60-68) to (90-102) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageUnique___1"] = { affix = "", "Adds 1 to 59 Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageUnique__2"] = { affix = "", "Adds (53-67) to (71-89) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageUnique__3"] = { affix = "", "Adds (600-650) to (750-800) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageUnique__4"] = { affix = "", "Adds (163-199) to (241-293) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["ChaosDegenerationAuraPlayersUniqueBodyStr3"] = { affix = "", "450 Chaos Damage taken per second", statOrder = { 1947 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ChaosDegenerationAuraNonPlayersUniqueBodyStr3"] = { affix = "", "250 Chaos Damage taken per second", statOrder = { 1947 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ChaosDegenerationAuraNonPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1947 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ChaosDegenerationAuraPlayersUnique__1"] = { affix = "", "50 Chaos Damage taken per second", statOrder = { 1947 }, level = 1, group = "ChaosDegen", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["UniqueWingsOfEntropyCountsAsDualWielding"] = { affix = "", "Counts as Dual Wielding", statOrder = { 2698 }, level = 1, group = "CountsAsDualWielding", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChaosDegenerationOnKillUniqueBodyStr3"] = { affix = "", "You take 450 Chaos Damage per second for 3 seconds on Kill", statOrder = { 2693 }, level = 1, group = "ChaosDegenerationOnKill", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ItemBloodFootstepsUniqueBodyStr3"] = { affix = "", "Gore Footprints", statOrder = { 10853 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, }, + ["DisplayChaosDegenerationAuraUniqueBodyStr3"] = { affix = "", "Deals 450 Chaos Damage per second to nearby Enemies", statOrder = { 2692 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DisplayChaosDegenerationAuraUnique__1"] = { affix = "", "Deals 50 Chaos Damage per second to nearby Enemies", statOrder = { 2692 }, level = 1, group = "DisplayChaosDegenerationAura", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ItemBloodFootstepsUniqueBootsDex4"] = { affix = "", "Gore Footprints", statOrder = { 10853 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, }, + ["ItemSilverFootstepsUniqueHelmetStrDex2"] = { affix = "", "Mercury Footprints", statOrder = { 10859 }, level = 1, group = "ItemSilverFootsteps", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemBloodFootstepsUnique__1"] = { affix = "", "Gore Footprints", statOrder = { 10853 }, level = 1, group = "ItemBloodFootprints", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, }, + ["MaximumBlockChanceUniqueAmulet16"] = { affix = "", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["MaximumBlockChanceUnique__1"] = { affix = "", "-10% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["MaximumBlockChanceUnique__2"] = { affix = "", "-10% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 1, group = "MaximumBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["MaximumSpellBlockChanceUnique__1"] = { affix = "", "-10% to maximum Chance to Block Spell Damage", statOrder = { 1989 }, level = 1, group = "MaximumSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["FasterBurnFromAttacksUniqueOneHandSword4"] = { affix = "", "Ignites you inflict deal Damage 50% faster", statOrder = { 2564 }, level = 1, group = "FasterBurnFromAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["CannotLeechMana"] = { affix = "", "Cannot Leech Mana", statOrder = { 2568 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotLeechManaUnique__1_"] = { affix = "", "Cannot Leech Mana", statOrder = { 2568 }, level = 1, group = "CannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemiesCannotLeechMana"] = { affix = "", "Enemies Cannot Leech Mana From you", statOrder = { 2441 }, level = 1, group = "EnemiesCannotLeechMana", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotLeechOnLowLife"] = { affix = "", "Cannot Leech when on Low Life", statOrder = { 2570 }, level = 1, group = "CannotLeechOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MeleeDamageIncreaseUniqueHelmetStrDex3"] = { affix = "", "20% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["MeleeDamageUniqueAmulet12"] = { affix = "", "(30-40)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["MeleeDamageImplicitGloves1"] = { affix = "", "(16-20)% increased Melee Damage", statOrder = { 1234 }, level = 78, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["MeleeDamageUnique__1"] = { affix = "", "(20-25)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["MeleeDamageUnique__2"] = { affix = "", "(25-40)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["DamageAuraUniqueHelmetDexInt2"] = { affix = "", "50% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IronReflexes"] = { affix = "", "Iron Reflexes", statOrder = { 10793 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["ChanceToIgniteUniqueOneHandSword4"] = { affix = "", "30% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["DisplayDamageAuraUniqueHelmetDexInt2"] = { affix = "", "You and nearby allies gain 50% increased Damage", statOrder = { 2700 }, level = 1, group = "DisplayDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["MainHandAddedFireDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (150-200) to (330-400) Fire Damage in Main Hand", statOrder = { 1363 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["MainHandAddedFireDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Fire Damage in Main Hand", statOrder = { 1363 }, level = 1, group = "MainHandAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["OffHandAddedChaosDamageUniqueTwoHandAxe6"] = { affix = "", "Adds (151-199) to (331-401) Chaos Damage in Off Hand", statOrder = { 1391 }, level = 1, group = "OffHandAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["OffHandAddedColdDamageUniqueOneHandAxe2"] = { affix = "", "Adds (255-285) to (300-330) Cold Damage in Off Hand", statOrder = { 1372 }, level = 1, group = "OffHandAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["ChaosDamageCanShockUniqueBow10"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2870 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, }, + ["ChaosDamageCanShockUnique__1"] = { affix = "", "Your Chaos Damage can Shock", statOrder = { 2870 }, level = 1, group = "ChaosDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "lightning", "chaos", "ailment" }, }, + ["ConvertLightningDamageToChaosUniqueBow10"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1966 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["ConvertLightningDamageToChaosUniqueBow10Updated"] = { affix = "", "100% of Lightning Damage Converted to Chaos Damage", statOrder = { 1966 }, level = 1, group = "ConvertLightningDamageToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["MaximumShockOverrideUniqueBow10"] = { affix = "", "+40% to Maximum Effect of Shock", statOrder = { 10510 }, level = 1, group = "MaximumShockOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AttacksShockAsIfDealingMoreDamageUniqueBow10"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7942 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, }, + ["AttacksShockAsIfDealingMoreDamageUnique__2"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing 300% more Damage", statOrder = { 7942 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, }, + ["EnemiesExplodeOnDeathUniqueTwoHandMace7"] = { affix = "", "Enemies Killed with Attack or Spell Hits Explode, dealing 10% of their Life as Fire Damage", statOrder = { 2706 }, level = 1, group = "EnemiesExplodeOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DisplaySocketedGemGetsReducedManaCostUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Inspiration", statOrder = { 494 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemsGetFasterCastUniqueDagger5"] = { affix = "", "Socketed Gems are Supported by Level 10 Faster Casting", statOrder = { 500 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByFasterCastUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Faster Casting", statOrder = { 500 }, level = 1, group = "DisplaySocketedGemsGetFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["FlaskRemovePercentageOfEnergyShieldUniqueFlask2"] = { affix = "", "Removes 80% of your maximum Energy Shield on use", statOrder = { 874 }, level = 1, group = "FlaskRemovePercentageOfEnergyShield", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, }, + ["FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2"] = { affix = "", "You take 50% of your maximum Life as Chaos Damage on use", statOrder = { 875 }, level = 1, group = "FlaskTakeChaosDamagePercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, }, + ["FlaskGainFrenzyChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Frenzy Charge on use", statOrder = { 887 }, level = 1, group = "FlaskGainFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, }, + ["FlaskGainPowerChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Power Charge on use", statOrder = { 888 }, level = 1, group = "FlaskGainPowerCharge", weightKey = { }, weightVal = { }, modTags = { "flask", "power_charge" }, }, + ["FlaskGainEnduranceChargeUniqueFlask2"] = { affix = "", "Gain (1-3) Endurance Charge on use", statOrder = { 886 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, }, + ["FlaskGainEnduranceChargeUnique__1_"] = { affix = "", "Gain 1 Endurance Charge on use", statOrder = { 886 }, level = 1, group = "FlaskGainEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "flask" }, }, + ["CanOnlyDealDamageWithThisWeapon"] = { affix = "", "You can only deal Damage with this Weapon or Ignite", statOrder = { 2712 }, level = 1, group = "CanOnlyDealDamageWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["LocalFlaskChargesUsedUniqueFlask2"] = { affix = "", "(250-300)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["LocalFlaskChargesUsedUniqueFlask9"] = { affix = "", "(70-100)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["LocalFlaskChargesUsedUniqueFlask36"] = { affix = "", "(200-300)% increased Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["LocalFlaskChargesUsedUnique__2"] = { affix = "", "(10-20)% reduced Charges per use", statOrder = { 846 }, level = 1, group = "LocalFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["LeftRingSlotElementalReflectDamageTakenUniqueRing10"] = { affix = "", "Left ring slot: 100% of Elemental Hit Damage from you and", "your Minions cannot be Reflected", statOrder = { 7978, 7978.1 }, level = 57, group = "LeftRingSlotElementalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["RightRingSlotPhysicalReflectDamageTakenUniqueRing10"] = { affix = "", "Right ring slot: 100% of Physical Hit Damage from you and", "your Minions cannot be Reflected", statOrder = { 8005, 8005.1 }, level = 1, group = "RightRingSlotPhysicalReflectDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["DamageCannotBeReflectedUnique__1"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageCannotBeReflectedUnique__2"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedEnemyFireResistanceUniqueHelmetInt5"] = { affix = "", "Damage Penetrates 25% Fire Resistance", statOrder = { 2981 }, level = 1, group = "EnemyFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["UsingFlasksDispelsBurningUniqueHelmetInt5"] = { affix = "", "Removes Burning when you use a Flask", statOrder = { 2755 }, level = 1, group = "UsingFlasksDispelsBurning", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, }, + ["DamageRemovedFromManaBeforeLifeTestMod"] = { affix = "", "30% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["ChanceToShockUniqueBow10"] = { affix = "", "10% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockUniqueOneHandSword7"] = { affix = "", "(15-20)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockUniqueDescentTwoHandSword1"] = { affix = "", "9% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockUniqueStaff8"] = { affix = "", "15% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockUniqueRing29"] = { affix = "", "25% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockUniqueGlovesStr4"] = { affix = "", "30% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockUnique__1"] = { affix = "", "10% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockUnique__2_"] = { affix = "", "50% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockUnique__3"] = { affix = "", "(5-10)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockUnique__4_"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["FishingLineStrengthUnique__1"] = { affix = "", "100% increased Fishing Line Strength", statOrder = { 2844 }, level = 1, group = "FishingLineStrength", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FishingPoolConsumptionUnique__1__"] = { affix = "", "50% increased Fishing Pool Consumption", statOrder = { 2845 }, level = 1, group = "FishingPoolConsumption", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FishingLureTypeUniqueFishingRod1"] = { affix = "", "Siren Worm Bait", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FishingLureTypeUnique__1__"] = { affix = "", "Thaumaturgical Lure", statOrder = { 2846 }, level = 1, group = "FishingLureType", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FishingCastDistanceUnique__1__"] = { affix = "", "20% increased Fishing Range", statOrder = { 2848 }, level = 1, group = "FishingCastDistance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FishingQuantityUniqueFishingRod1"] = { affix = "", "(40-50)% reduced Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["FishingQuantityUnique__2"] = { affix = "", "20% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["FishingQuantityUnique__1"] = { affix = "", "(10-20)% increased Quantity of Fish Caught", statOrder = { 2849 }, level = 1, group = "FishingQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["FishingRarityUniqueFishingRod1"] = { affix = "", "(50-60)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["FishingRarityUnique__1"] = { affix = "", "40% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["FishingRarityUnique__2_"] = { affix = "", "(20-30)% increased Rarity of Fish Caught", statOrder = { 2850 }, level = 1, group = "FishingRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["IncreasedSpellDamagePerBlockChanceUniqueClaw7"] = { affix = "", "8% increased Spell Damage per 5% Chance to Block Attack Damage", statOrder = { 2737 }, level = 1, group = "SpellDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["LifeGainedOnSpellHitUniqueClaw7"] = { affix = "", "Gain (15-20) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, }, + ["LifeGainedOnSpellHitUniqueDescentClaw1"] = { affix = "", "Gain 3 Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, }, + ["LoseLifeOnSpellHitUnique__1"] = { affix = "", "Lose (10-15) Life per Enemy Hit with Spells", statOrder = { 1739 }, level = 1, group = "LifeGainedOnSpellHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, }, + ["AttackSpeedPerGreenSocketUniqueOneHandSword5"] = { affix = "", "12% increased Global Attack Speed per Green Socket", statOrder = { 2721 }, level = 1, group = "AttackSpeedPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["PhysicalDamgePerRedSocketUniqueOneHandSword5"] = { affix = "", "25% increased Global Physical Damage with Weapons per Red Socket", statOrder = { 2718 }, level = 1, group = "PhysicalDamgePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["ManaLeechFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2726 }, level = 1, group = "ManaLeechFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5"] = { affix = "", "0.4% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2727 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Mana per Blue Socket", statOrder = { 2727 }, level = 1, group = "ManaLeechPermyriadFromPhysicalDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["MeleeRangePerWhiteSocketUniqueOneHandSword5"] = { affix = "", "+0.2 metres to Melee Strike Range per White Socket", statOrder = { 2732 }, level = 1, group = "MeleeRangePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["MeleeDamageTakenUniqueAmulet12"] = { affix = "", "60% increased Damage taken from Melee Attacks", statOrder = { 2748 }, level = 1, group = "MeleeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6"] = { affix = "", "Regenerate 2% of your Armour as Life over 1 second when you Block", statOrder = { 2832 }, level = 1, group = "ArmourAsLifeRegnerationOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["LoseEnergyShieldOnBlockUniqueShieldStrInt6"] = { affix = "", "Lose 10% of your Energy Shield when you Block", statOrder = { 2739 }, level = 1, group = "LoseEnergyShieldOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, }, + ["ChaosDamageAsPortionOfDamageUniqueRing16"] = { affix = "", "Gain (40-60)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 87, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ChaosDamageAsPortionOfDamageUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "ChaosDamageAsPortionOfDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ChaosDamageAsPortionOfFireDamageUnique__1"] = { affix = "", "Gain (6-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 1, group = "ChaosDamageAsPortionOfFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["ChaosDamageAsPortionOfColdDamageUnique__1"] = { affix = "", "Gain (6-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 1, group = "ChaosDamageAsPortionOfColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["ChaosDamageAsPortionOfLightningDamageUnique__1"] = { affix = "", "Gain (6-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 1, group = "ChaosDamageAsPortionOfLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2"] = { affix = "", "50% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["MainHandChanceToIgniteUniqueOneHandAxe2"] = { affix = "", "25% chance to Ignite when in Main Hand", statOrder = { 2767 }, level = 1, group = "MainHandChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["OffHandChillDurationUniqueOneHandAxe2"] = { affix = "", "100% increased Chill Duration on Enemies when in Off Hand", statOrder = { 2768 }, level = 1, group = "OffHandChillDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["BurningDamageToChilledEnemiesUniqueOneHandAxe2"] = { affix = "", "100% increased Damage with Ignite inflicted on Chilled Enemies", statOrder = { 7203 }, level = 1, group = "BurningDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["TrapThrowSpeedUniqueBootsDex6"] = { affix = "", "(14-18)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["TrapThrowSpeedUnique__1_"] = { affix = "", "(20-30)% reduced Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementSpeedOnTrapThrowUniqueBootsDex6"] = { affix = "", "30% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2772 }, level = 1, group = "MovementSpeedOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementSpeedOnTrapThrowUnique__1"] = { affix = "", "15% increased Movement Speed for 9 seconds on Throwing a Trap", statOrder = { 2772 }, level = 1, group = "MovementSpeedOnTrapThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["DisplaySupportedByTrapUniqueBootsDex6"] = { affix = "", "Socketed Gems are Supported by Level 15 Trap", statOrder = { 454 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByTrapUniqueStaff4"] = { affix = "", "Socketed Gems are Supported by Level 8 Trap", statOrder = { 454 }, level = 1, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap", statOrder = { 454 }, level = 40, group = "DisplaySupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["TrapDurationUniqueBelt6"] = { affix = "", "(50-75)% reduced Trap Duration", statOrder = { 1923 }, level = 47, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TrapDurationUnique__1"] = { affix = "", "10% reduced Trap Duration", statOrder = { 1923 }, level = 1, group = "TrapDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TrapDamageUniqueBelt6"] = { affix = "", "(30-40)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["TrapDamageUniqueShieldDexInt1"] = { affix = "", "(18-28)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["TrapDamageUnique___1"] = { affix = "", "(15-25)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ChanceToFreezeShockIgniteUniqueRing21"] = { affix = "", "10% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToFreezeShockIgniteUniqueDescentWand1"] = { affix = "", "4% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToFreezeShockIgniteUniqueHelmetDexInt4"] = { affix = "", "5% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToFreezeShockIgniteUniqueAmulet19"] = { affix = "", "Always Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToFreezeShockIgniteDescentUniqueQuiver1"] = { affix = "", "10% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToFreezeShockIgniteUnique__1"] = { affix = "", "(10-25)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToFreezeShockIgniteUnique__2"] = { affix = "", "(20-25)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToFreezeShockIgniteUnique__3"] = { affix = "", "(5-10)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["DamageWhileIgnitedUniqueRing18"] = { affix = "", "30% increased Damage while Ignited", statOrder = { 2802 }, level = 1, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DamageWhileIgnitedUnique__1"] = { affix = "", "(50-70)% increased Damage while Ignited", statOrder = { 2802 }, level = 85, group = "DamageWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ArmourWhileFrozenUniqueRing18"] = { affix = "", "+5000 to Armour while Frozen", statOrder = { 2803 }, level = 1, group = "ArmourWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["ManaLeechOnShockedEnemiesUniqueRing19"] = { affix = "", "5% of Damage against Shocked Enemies Leeched as Mana", statOrder = { 1717 }, level = 1, group = "ManaLeechOnShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaLeechPermyriadOnShockedEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Mana against Frozen Enemies", statOrder = { 8184 }, level = 1, group = "ManaLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["EnergyShieldLeechPermyriadOnFrozenEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Energy Shield against Frozen Enemies", statOrder = { 6439 }, level = 1, group = "EnergyShieldLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LifeLeechOnFrozenEnemiesUniqueRing19"] = { affix = "", "5% of Damage against Frozen Enemies Leeched as Life", statOrder = { 1689 }, level = 1, group = "LifeLeechOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeLeechPermyriadOnFrozenEnemiesUniqueRing19"] = { affix = "", "1% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1688 }, level = 1, group = "LifeLeechPermyriadOnShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["DamageOnRareMonstersUniqueBelt7"] = { affix = "", "(20-30)% increased Damage with Hits against Rare monsters", statOrder = { 2807 }, level = 1, group = "DamageOnRareMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DamageOnMagicMonstersUnique__1_"] = { affix = "", "(20-30)% increased Damage with Hits against Magic monsters", statOrder = { 6071 }, level = 1, group = "DamageOnMagicMonsters", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DamagePerStatusAilmentOnEnemiesUniqueRing21"] = { affix = "", "(30-40)% increased Elemental Damage with Hits and Ailments for", "each type of Elemental Ailment on Enemy", statOrder = { 6293, 6293.1 }, level = 1, group = "DamagePerStatusAilmentOnEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ShrineBuffEffectUniqueHelmetDexInt3"] = { affix = "", "75% increased Effect of Shrine Buffs on you", statOrder = { 2812 }, level = 1, group = "ShrineBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ShrineBuffEffectUnique__1"] = { affix = "", "(50-75)% increased Effect of Shrine Buffs on you", statOrder = { 2812 }, level = 1, group = "ShrineBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ShrineEffectDurationUniqueHelmetDexInt3"] = { affix = "", "50% increased Duration of Shrine Effects on you", statOrder = { 2813 }, level = 1, group = "ShrineEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalFlaskLifeOnFlaskDurationEndUniqueFlask3"] = { affix = "", "Recover Full Life at the end of the Effect", statOrder = { 868 }, level = 1, group = "LocalFlaskLifeOnFlaskDurationEnd", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["LocalFlaskNoManaCostWhileHealingUniqueFlask4"] = { affix = "", "Skills Cost no Mana during Effect", statOrder = { 1029 }, level = 1, group = "LocalFlaskNoManaCostWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["ShockNearbyEnemyOnShockedKillUniqueRing20"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2814 }, level = 25, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockNearbyEnemyOnShockedKillUniqueDescentTwoHandSword1_"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2814 }, level = 1, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IgniteNearbyEnemyOnIgnitedKillUniqueRing20"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2815 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteNearbyEnemyOnIgnitedKillUnique__1"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2815 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["GainRareMonsterModsOnKillUniqueBelt7_"] = { affix = "", "When you Kill a Rare monster, you gain its Modifiers for 60 seconds", statOrder = { 2817 }, level = 1, group = "GainRareMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainMagicMonsterModsOnKillUnique__1_"] = { affix = "", "20% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds", statOrder = { 6767 }, level = 1, group = "GainMagicMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainShrineOnRareOrUniqueKillUnique_1"] = { affix = "", "Gain a random Shrine Buff for 30 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6820 }, level = 81, group = "GainShrineOnRareOrUniqueKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainManaPer2IntelligenceUnique_1"] = { affix = "", "+1 to maximum Mana per 2 Intelligence", statOrder = { 9171 }, level = 1, group = "ManaPer2Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AddedManaRegenerationUniqueBelt8"] = { affix = "", "Regenerate (8-10) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AddedManaRegenerationUniqueDescentWand1"] = { affix = "", "Regenerate 2 Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AddedManaRegenerationUniqueJewel10"] = { affix = "", "Regenerate 3 Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AddedManaRegenerationUnique__1"] = { affix = "", "Regenerate (3-6) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AddedManaRegenerationUnique__2"] = { affix = "", "Regenerate (8-10) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AddedManaRegenerationUnique__3"] = { affix = "", "Regenerate (3-5) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ArmourWhileNotIgnitedFrozenShockedBelt8"] = { affix = "", "40% increased Armour while not Ignited, Frozen or Shocked", statOrder = { 2818 }, level = 1, group = "ArmourWhileNotIgnitedFrozenShocked", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["ManaShield"] = { affix = "", "Mind Over Matter", statOrder = { 10796 }, level = 1, group = "ManaShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["ElementalResistancePerEnduranceChargeDescentShield1"] = { affix = "", "+3% to all Elemental Resistances per Endurance Charge", statOrder = { 1620 }, level = 1, group = "ElementalResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["ReturningProjectilesUniqueDescentBow1"] = { affix = "", "Projectiles Return to you", statOrder = { 2823 }, level = 1, group = "ReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CastSpeedOnFullLifeUniqueDescentHelmet1"] = { affix = "", "9% increased Cast Speed when on Full Life", statOrder = { 2000 }, level = 1, group = "CastSpeedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["CastSpeedOnLowLifeUniqueDescentHelmet1"] = { affix = "", "20% increased Cast Speed when on Low Life", statOrder = { 1999 }, level = 1, group = "CastSpeedOnLowLife", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["MaximumCriticalStrikeChanceUniqueAmulet17"] = { affix = "", "50% maximum Critical Strike Chance", statOrder = { 2747 }, level = 1, group = "MaximumCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["DamagePerStrengthInMainHandUniqueSceptre6"] = { affix = "", "1% increased Damage per 8 Strength when in Main Hand", statOrder = { 2776 }, level = 1, group = "DamagePerStrengthInMainHand", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ArmourPerStrengthInOffHandUniqueSceptre6"] = { affix = "", "1% increased Armour per 16 Strength when in Off Hand", statOrder = { 2777 }, level = 1, group = "ArmourPerStrengthInOffHand", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["DisplaySocketedGemsSupportedByIronWillUniqueSceptre6"] = { affix = "", "Socketed Gems are Supported by Level 30 Iron Will", statOrder = { 501 }, level = 1, group = "DisplaySocketedGemsSupportedByIronWill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemsSupportedByIronWillUniqueOneHandMace3"] = { affix = "", "Socketed Gems have Iron Will", statOrder = { 539 }, level = 1, group = "DisplaySocketedGemsHaveIronWill", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LessCriticalStrikeChanceAmulet17"] = { affix = "", "-40% less Critical Strike Chance", statOrder = { 2825 }, level = 1, group = "CriticalStrikeChanceFinal", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ChanceToDodgeUniqueBootsDex7"] = { affix = "", "+12% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeUniqueJewel46"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToSuppressSpellsUniqueJewel46"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToSuppressSpellsUnique__1"] = { affix = "", "+50% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeUniqueBodyDex1"] = { affix = "", "+15% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeUniqueRing37"] = { affix = "", "(3-5)% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ChanceToDodgeUnique__1"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeImplicitShield1"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeImplicitShield2"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeSpellsUniqueBodyDex1"] = { affix = "", "+15% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToSuppressSpellsUniqueBodyDex1"] = { affix = "", "+30% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeSpellsUnique__1"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeSpellsUnique__2"] = { affix = "", "+20% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeSpellsUnique__3_"] = { affix = "", "+(10-12)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeSpellsImplicitShield1"] = { affix = "", "+3% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeSpellsImplicitShield2"] = { affix = "", "+5% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToSuppressSpellsUnique__1_"] = { affix = "", "+(26-32)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToSuppressSpellsUnique__2"] = { affix = "", "+(20-25)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToSuppressSpellsUnique__3"] = { affix = "", "+(0-30)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 50, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToSuppressSpellsUnique__4"] = { affix = "", "+(6-10)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnduranceChargeOnKillUniqueBodyStrDex3"] = { affix = "", "You gain an Endurance Charge on Kill", statOrder = { 2828 }, level = 1, group = "EnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["LoseEnduranceChargesWhenHitUniqueBodyStrDex3"] = { affix = "", "You lose all Endurance Charges when Hit", statOrder = { 2826 }, level = 1, group = "LoseEnduranceChargesWhenHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["GainOnslaughtWhenHitUniqueBodyStrDex3"] = { affix = "", "You gain Onslaught for 5 seconds per Endurance Charge when Hit", statOrder = { 2842 }, level = 1, group = "GainOnslaughtWhenHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RegenerateLifeOnCastUniqueWand4"] = { affix = "", "Regenerate (6-8) Life over 1 second when you Cast a Spell", statOrder = { 2831 }, level = 1, group = "LeechLifeOnCast", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["PhasingUniqueBootsStrDex4"] = { affix = "", "Phasing", statOrder = { 2821 }, level = 1, group = "Phasing", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CullingCriticalStrikes"] = { affix = "", "Critical Strikes have Culling Strike", statOrder = { 3440 }, level = 1, group = "CullingCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["IncreasedFireDamageTakenUniqueTwoHandSword6"] = { affix = "", "10% increased Fire Damage taken", statOrder = { 2242 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["ReducedFireDamageTakenUnique__1"] = { affix = "", "-(200-100) Fire Damage taken from Hits", statOrder = { 2237 }, level = 1, group = "FlatFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["FrenzyChargeOnIgniteUniqueTwoHandSword6"] = { affix = "", "Gain a Frenzy Charge if an Attack Ignites an Enemy", statOrder = { 2837 }, level = 1, group = "FrenzyChargeOnIgnite", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["CullingAgainstBurningEnemiesUniqueTwoHandSword6"] = { affix = "", "Culling Strike against Burning Enemies", statOrder = { 2836 }, level = 1, group = "CullingAgainstBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CullingAgainstFrozenEnemiesUnique__1"] = { affix = "", "Culling Strike against Frozen Enemies", statOrder = { 5989 }, level = 1, group = "CullingAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChaosDamageTakenUniqueBodyStr4"] = { affix = "", "-(40-30) Chaos Damage taken", statOrder = { 2839 }, level = 1, group = "ChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["IncreasedCurseDurationUniqueShieldDex4"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["IncreasedCurseDurationUniqueShieldStrDex2"] = { affix = "", "Curse Skills have 100% increased Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["IncreasedCurseDurationUniqueHelmetInt9"] = { affix = "", "Curse Skills have (30-50)% increased Skill Effect Duration", statOrder = { 6000 }, level = 1, group = "CurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["IncreaseSocketedCurseGemLevelUniqueShieldDex4"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, }, + ["IncreaseSocketedCurseGemLevelUniqueHelmetInt9"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, }, + ["IncreaseSocketedCurseGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, }, + ["IncreaseSocketedCurseGemLevelUnique__2"] = { affix = "", "+3 to Level of Socketed Curse Gems", statOrder = { 184 }, level = 1, group = "IncreaseSocketedCurseGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, }, + ["PoisonSpreadAndHealOnPoisonedKillUniqueDagger8"] = { affix = "", "On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned, and you and", "Allies Regenerate 400 Life per second for the Poison's duration if within 3 metres", statOrder = { 2851, 2851.1 }, level = 82, group = "PoisonSpreadAndHealOnPoisonedKill", weightKey = { }, weightVal = { }, modTags = { "poison", "resource", "life", "chaos", "ailment" }, }, + ["IncreasedSelfCurseDurationUniqueShieldStrDex2"] = { affix = "", "100% increased Duration of Curses on you", statOrder = { 2171 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ReducedSelfCurseDurationUniqueShieldDex3"] = { affix = "", "50% reduced Duration of Curses on you", statOrder = { 2171 }, level = 1, group = "SelfCurseDuration", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3"] = { affix = "", "+50% to Chaos Resistance during any Flask Effect", statOrder = { 3301 }, level = 1, group = "ChaosResistanceWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos", "resistance" }, }, + ["SetElementalResistancesUniqueHelmetStrInt4"] = { affix = "", "Elemental Resistances are Zero", statOrder = { 2835 }, level = 1, group = "SetElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AllDefencesUniqueHelmetStrInt4_"] = { affix = "", "(18-22)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["AllDefencesVictorAmulet"] = { affix = "", "(5-10)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["AllDefencesUnique__1"] = { affix = "", "5% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["AllDefencesUnique__2"] = { affix = "", "100% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["AllDefencesUnique__3"] = { affix = "", "100% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["AllDefencesUnique__4"] = { affix = "", "(15-20)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["AllDefencesUnique__5"] = { affix = "", "(10-15)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["DodgeImplicitMarakethSword1"] = { affix = "", "15% chance to Maim on Hit", statOrder = { 7988 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["DodgeImplicitMarakethSword2"] = { affix = "", "20% chance to Maim on Hit", statOrder = { 7988 }, level = 1, group = "LocalChanceToMaim", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AllDefensesImplicitJetRing"] = { affix = "", "(5-10)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["LightningDamageOnBlockUniqueHelmetStrInt4"] = { affix = "", "Reflects 1 to (180-220) Lightning Damage to Attackers on Block", statOrder = { 2587 }, level = 1, group = "LightningDamageOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DuplicatesRingStats"] = { affix = "", "Reflects opposite Ring", statOrder = { 2853 }, level = 1, group = "DuplicatesRingStats", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DegenerationDamageUniqueDagger8"] = { affix = "", "30% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DegenerationDamageEssence_1"] = { affix = "", "(14-20)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["DegenerationDamageUnique__1"] = { affix = "", "25% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DegenerationDamageUnique__2"] = { affix = "", "(20-30)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DegenerationDamageUnique__3"] = { affix = "", "(30-40)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DegenerationDamageUnique__4__"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DegenerationDamageUnique__5"] = { affix = "", "(20-30)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DegenerationDamageImplicit1"] = { affix = "", "(14-18)% increased Damage over Time", statOrder = { 1210 }, level = 85, group = "DegenerationDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["FishingExoticFishUniqueFishingRod1"] = { affix = "", "You can catch Exotic Fish", statOrder = { 2854 }, level = 1, group = "FishingExoticFish", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["FireShocksUniqueHelmetDexInt4"] = { affix = "", "Your Fire Damage can Shock but not Ignite", statOrder = { 2856 }, level = 1, group = "FireShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning", "ailment" }, }, + ["ColdIgnitesUniqueHelmetDexInt4_"] = { affix = "", "Your Cold Damage can Ignite but not Freeze or Chill", statOrder = { 2857 }, level = 1, group = "ColdIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, }, + ["LightningFreezesUniqueHelmetDexInt4"] = { affix = "", "Your Lightning Damage can Freeze but not Shock", statOrder = { 2858 }, level = 1, group = "LightningFreezes", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, + ["SocketedCursesAreReflectedUniqueGlovesStrInt1"] = { affix = "", "Hexes applied by Socketed Curse Skills are Reflected back to you", statOrder = { 538 }, level = 1, group = "SocketedCursesAreReflected", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, }, + ["ChillImmunityWhenChilledUniqueGlovesStrInt1"] = { affix = "", "You cannot be Chilled for 3 seconds after being Chilled", statOrder = { 2893 }, level = 1, group = "ChillImmunityWhenChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeImmunityWhenFrozenUniqueGlovesStrInt1"] = { affix = "", "You cannot be Frozen for 3 seconds after being Frozen", statOrder = { 2895 }, level = 1, group = "FreezeImmunityWhenFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["IgniteImmunityWhenIgnitedUniqueGlovesStrInt1"] = { affix = "", "You cannot be Ignited for 3 seconds after being Ignited", statOrder = { 2896 }, level = 1, group = "IgniteImmunityWhenIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ShockImmunityWhenShockedUniqueGlovesStrInt1"] = { affix = "", "You cannot be Shocked for 3 seconds after being Shocked", statOrder = { 2897 }, level = 1, group = "ShockImmunityWhenShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["GrantFrenzyChargesToAlliesOnDeathUniqueGlovesStrInt1"] = { affix = "", "You grant (4-6) Frenzy Charges to allies on Death", statOrder = { 2899 }, level = 1, group = "GrantFrenzyChargesToAlliesOnDeath", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["PowerChargeOnNonCritUniqueRing17"] = { affix = "", "Gain a Power Charge on Non-Critical Strike", statOrder = { 2900 }, level = 1, group = "PowerChargeOnNonCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ConsumeAllPowerChargesOnCritUniqueRing17"] = { affix = "", "Lose all Power Charges on Critical Strike", statOrder = { 2901 }, level = 75, group = "ConsumeAllPowerChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["CastSocketedLightningSpellsOnHit"] = { affix = "", "Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown", "Socketed Lightning Spells have no Cost if Triggered", statOrder = { 826, 826.1 }, level = 1, group = "CastSocketedLightningSpellsOnHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster" }, }, + ["UndyingBreathCurseAuraUniqueStaff5"] = { affix = "", "18% increased Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "UndyingBreathCurseAura", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["UndyingBreathCurseAuraDisplayUniqueStaff5"] = { affix = "", "Nearby Enemies have 18% increased Effect of Curses on them", statOrder = { 2701 }, level = 1, group = "UndyingBreathCurseAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "caster", "aura", "curse" }, }, + ["UndyingBreathDamageAuraUniqueStaff5"] = { affix = "", "18% increased Damage", statOrder = { 1191 }, level = 1, group = "UndyingBreathDamageAura", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["UndyingBreathDamageAuraDisplayUniqueStaff5"] = { affix = "", "Nearby allies gain 18% increased Damage", statOrder = { 2906 }, level = 1, group = "UndyingBreathDamageAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["CurseAreaOfEffectUniqueStaff5"] = { affix = "", "18% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CurseAreaOfEffectUniqueQuiver5"] = { affix = "", "40% reduced Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CurseAreaOfEffectUnique__1"] = { affix = "", "60% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CurseAreaOfEffectUnique__2_"] = { affix = "", "60% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 76, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CurseAreaOfEffectUnique__3"] = { affix = "", "50% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CurseAreaOfEffectUnique__4"] = { affix = "", "(25-50)% reduced Area of Effect of Hex Skills", statOrder = { 2225 }, level = 40, group = "CurseAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["AuraIncreasedIncreasedAreaOfEffectUniqueStaff5"] = { affix = "", "18% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_1"] = { affix = "", "15% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 97, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_2"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_3"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_4"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_5"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AuraIncreasedIncreasedAreaOfEffectUnique_6"] = { affix = "", "(20-30)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["ColdDamageModsApplyToColdAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Cold Damage also apply to Effect of", "Auras from Cold Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4596, 4596.1 }, level = 53, group = "ColdDamageAppliesToColdAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "aura" }, }, + ["LightningDamageModsApplyToLightningAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Lightning Damage also apply to Effect of", "Auras from Lightning Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4602, 4602.1 }, level = 53, group = "LightningDamageAppliesToLightningAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "aura" }, }, + ["FireDamageModsApplyToFireAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Fire Damage also apply to Effect of", "Auras from Fire Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4598, 4598.1 }, level = 53, group = "FireDamageAppliesToFireAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "aura" }, }, + ["PhysicalDamageModsApplyToPhysicalAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Physical Damage also apply to Effect of", "Auras from Physical Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4605, 4605.1 }, level = 53, group = "PhysicalDamageAppliesToPhysicalAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "physical", "aura" }, }, + ["ChaosDamageModsApplyToChaosAuraEffectAtPercentUnique_1"] = { affix = "", "Increases and Reductions to Chaos Damage also apply to Effect of", "Auras from Chaos Skills at (10-15)% of their value, up to a maximum of 150%", statOrder = { 4595, 4595.1 }, level = 53, group = "ChaosDamageAppliesToChaosAuraEffectUnique", weightKey = { }, weightVal = { }, modTags = { "chaos", "aura" }, }, + ["DamageTakenUniqueStaff5"] = { affix = "", "18% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AuraEffectGlobalUnique__1"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AttackSpeedPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "2% increased Attack Speed per Frenzy Charge", statOrder = { 2049 }, level = 1, group = "AttackSpeedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["AccuracyRatingPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "6% increased Accuracy Rating per Frenzy Charge", statOrder = { 2050 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["FrenzyChargeDurationPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "10% reduced Frenzy Charge Duration per Frenzy Charge", statOrder = { 2051 }, level = 1, group = "FrenzyChargeDurationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5"] = { affix = "", "+5% to Damage over Time Multiplier for Poison per Frenzy Charge", statOrder = { 9683 }, level = 1, group = "PoisonDotMultiplierPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["AtMaximumFrenzyChargesPoisonUniqueGlovesDexInt5"] = { affix = "", "While at maximum Frenzy Charges, Attacks Poison Enemies", statOrder = { 2052 }, level = 1, group = "AtMaximumFrenzyChargesPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["AtMaximumFrenzyChargesChanceToPoisonUnique_1_"] = { affix = "", "Attacks have 60% chance to Poison while at maximum Frenzy Charges", statOrder = { 2053 }, level = 1, group = "AtMaximumFrenzyChargesChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["NecromanticAegisUniqueHelmetStrDex5"] = { affix = "", "All bonuses from an Equipped Shield apply to your Minions instead of you", statOrder = { 2192 }, level = 1, group = "NecromanticAegis", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MinionBlockChanceUniqueHelmetStrDex5"] = { affix = "", "Minions have +10% Chance to Block Attack Damage", statOrder = { 2903 }, level = 1, group = "MinionBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "minion" }, }, + ["MinionLifeRegenerationUniqueHelmetStrDex5"] = { affix = "", "Minions Regenerate 2% of Life per second", statOrder = { 2911 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionLifeRegenerationUnique__1"] = { affix = "", "Minions Regenerate 1% of Life per second", statOrder = { 2911 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["MinionArmourUniqueHelmetStrDex5"] = { affix = "", "Minions have +(300-350) to Armour", statOrder = { 2905 }, level = 1, group = "MinionArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, }, + ["IncreasedAccuracyPercentImplicitQuiver7"] = { affix = "", "(20-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 5, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentImplicitQuiver7New"] = { affix = "", "(20-30)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 45, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAccuracyPercentUnique__1"] = { affix = "", "(30-40)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "IncreasedAccuracyPercent", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["DisplaySocketedSkillsChainUniqueOneHandMace3"] = { affix = "", "Socketed Gems Chain 1 additional times", statOrder = { 540 }, level = 1, group = "DisplaySocketedSkillsChain", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4"] = { affix = "", "+5 to Level of Socketed Vaal Gems", statOrder = { 188 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, }, + ["LocalIncreaseSocketedNonVaalGemLevelUnique__1"] = { affix = "", "-5 to Level of Socketed Non-Vaal Gems", statOrder = { 192 }, level = 1, group = "LocalIncreaseSocketedNonVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedVaalGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Vaal Gems", statOrder = { 188 }, level = 1, group = "LocalIncreaseSocketedVaalGemLevel", weightKey = { }, weightVal = { }, modTags = { "vaal", "gem" }, }, + ["RingHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 7, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["QuiverHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 57, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AmuletHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 7, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BeltHasOneSocket"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 70, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasSixSocketsUnique__1"] = { affix = "", "Has 6 Sockets", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasOneSocketUnique__1"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasOneSocketUnique__2"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasOneSocketUnique__3"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasTwoSocketsUnique__1"] = { affix = "", "Has 2 Sockets", statOrder = { 69 }, level = 57, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasThreeSocketsUnique__1_"] = { affix = "", "Has 3 Sockets", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedProjectileDamageUniqueQuiver4"] = { affix = "", "(15-20)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUniqueStaff10"] = { affix = "", "(60-100)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUniqueBootsDexInt4"] = { affix = "", "(20-40)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUnique__5"] = { affix = "", "20% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUnique__1"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUnique__2"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUnique___3"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUnique___4"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUnique__6"] = { affix = "", "30% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUnique__7"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUnique___8"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUnique___9"] = { affix = "", "(7-10)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUnique___10_"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedProjectileDamageUnique___11"] = { affix = "", "(25-35)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SpellBlockPercentageUniqueQuiver4"] = { affix = "", "(12-15)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockPercentageUniqueShieldDex6"] = { affix = "", "(8-12)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SupportedByEchoUniqueStaff6"] = { affix = "", "Socketed Gems are Supported by Level 1 Greater Spell Echo", statOrder = { 225 }, level = 1, group = "DisplaySupportedByLevel1GreaterEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByEchoUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Spell Echo", statOrder = { 412 }, level = 1, group = "DisplaySupportedByEchoLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByEchoUniqueWand8New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Spell Echo", statOrder = { 493 }, level = 1, group = "DisplaySupportedByEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ControlledDestructionSupportUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 525 }, level = 1, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByArcaneSurgeUniqueWand8"] = { affix = "", "Socketed Gems are Supported by Level 10 Arcane Surge", statOrder = { 226 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SpellDodgeUniqueBootsDex7_"] = { affix = "", "+(21-24)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 85, group = "ChanceToSuppressSpellsOld", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellDodgeUniqueBootsDex7New"] = { affix = "", "+(20-26)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 85, group = "ChanceToSuppressSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FireDamageLifeLeechPerMyriadUniqueBelt9a_"] = { affix = "", "100% of Fire Damage Leeched as Life", statOrder = { 1669 }, level = 85, group = "FireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["FireDamageLifeLeechPermyriadUniqueBelt9aNew"] = { affix = "", "0.6% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 85, group = "FireDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["ColdDamageLifeLeechPerMyriadUniqueBelt9b"] = { affix = "", "100% of Cold Damage Leeched as Life", statOrder = { 1674 }, level = 85, group = "ColdDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["ColdDamageLifeLeechPermyriadUniqueBelt9bNew"] = { affix = "", "0.6% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 85, group = "ColdDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["LightningDamageLifeLeechPerMyriadUniqueBelt9c"] = { affix = "", "100% of Lightning Damage Leeched as Life", statOrder = { 1678 }, level = 85, group = "LightningDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["LightningDamageLifeLeechPermyriadUniqueBelt9cNew"] = { affix = "", "0.6% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 85, group = "LightningDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["PhysicalDamageLifeLeechPerMyriadUniqueBelt9d"] = { affix = "", "100% of Physical Damage Leeched as Life", statOrder = { 1665 }, level = 85, group = "PhysicalDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, }, + ["PhysicalDamageLifeLeechPermyriadUniqueBelt9dNew"] = { affix = "", "0.6% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 85, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical" }, }, + ["IgniteChanceWhileUsingFlaskUniqueBelt9a"] = { affix = "", "(20-30)% chance to Ignite during any Flask Effect", statOrder = { 2922 }, level = 85, group = "ChanceToIgnightWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "fire", "ailment" }, }, + ["FreezeChanceWhileUsingFlaskUniqueBelt9b"] = { affix = "", "(20-30)% chance to Freeze during any Flask Effect", statOrder = { 2923 }, level = 85, group = "ChanceToFreezeWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, }, + ["ShockChanceWhileUsingFlaskUniqueBelt9c"] = { affix = "", "(20-30)% chance to Shock during any Flask Effect", statOrder = { 2924 }, level = 85, group = "ChanceToShockWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, + ["ReducedStunThresholdWhileUsingFlaskUniqueBelt9d"] = { affix = "", "25% reduced Enemy Stun Threshold during any Flask Effect", statOrder = { 2927 }, level = 85, group = "ReducedStunThresholdWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["AddedChaosDamageAsPercentOfPhysicalWhileUsingFlaskUniqueFlask5"] = { affix = "", "Gain (5-8)% of Physical Damage as Extra Chaos Damage during effect", statOrder = { 1030 }, level = 85, group = "AddedChaosDamageAsPercentOfPhysicalWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["AddedChaosDamageAsPercentOfElementalWhileUsingFlaskUniqueFlask5"] = { affix = "", "Gain (5-8)% of Elemental Damage as Extra Chaos Damage during effect", statOrder = { 1020 }, level = 85, group = "AddedChaosDamageAsPercentOfElementalWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, }, + ["ElementalDamagePercentAddedAsChaosUnique__1"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, }, + ["ElementalDamagePercentAddedAsChaosUnique__2"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, }, + ["ElementalDamagePercentAddedAsChaosUnique__3"] = { affix = "", "Gain (10-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, }, + ["ElementalDamagePercentAddedAsChaosUnique__4"] = { affix = "", "Gain (5-8)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, }, + ["ChaosDamageLifeLeechPerMyriadWhileUsingFlaskUniqueFlask5"] = { affix = "", "1000% of Chaos Damage Leeched as Life during Effect", statOrder = { 1040 }, level = 85, group = "ChaosDamageLifeLeechWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "chaos" }, }, + ["ChaosDamageLifeLeechPermyriadWhileUsingFlaskUniqueFlask5New"] = { affix = "", "2% of Chaos Damage Leeched as Life during Effect", statOrder = { 1025 }, level = 85, group = "ChaosDamageLifeLeechPermyriadWhileUsingFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "chaos" }, }, + ["FireDamageLifeLeechCorrupted"] = { affix = "", "100% of Fire Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "FireDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["ColdDamageLifeLeechCorrupted_"] = { affix = "", "100% of Cold Damage Leeched as Life", statOrder = { 1674 }, level = 1, group = "ColdDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["LightningDamageLifeLeechCorrupted"] = { affix = "", "100% of Lightning Damage Leeched as Life", statOrder = { 1678 }, level = 1, group = "LightningDamageLifeLeech", weightKey = { "amulet", "quiver", "two_hand_weapon", "weapon", "default", }, weightVal = { 1000, 1000, 1000, 200, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["DamageConversionFireUnique__1"] = { affix = "", "60% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 1, group = "ConvertPhysicalToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["AdditionalTrapsUnique__1"] = { affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2255 }, level = 1, group = "TrapsAllowed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalTrapsUnique__2__"] = { affix = "", "Can have 5 fewer Traps placed at a time", statOrder = { 2255 }, level = 1, group = "TrapsAllowed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalTrapsThresholdJewel"] = { affix = "", "Can have up to 1 additional Trap placed at a time", statOrder = { 2255 }, level = 1, group = "TrapsAllowed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PierceCurruption"] = { affix = "", "Arrows Pierce 1 additional Target", statOrder = { 4782 }, level = 1, group = "CorruptionBowArrowPierce", weightKey = { "bow", "default", }, weightVal = { 0, 0 }, modTags = { "attack" }, }, + ["AdditionalPierceUnique__1"] = { affix = "", "Arrows Pierce 2 additional Targets", statOrder = { 1791 }, level = 1, group = "AdditionalArrowPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["PierceChanceUniqueJewel41"] = { affix = "", "Projectiles Pierce an additional Target", statOrder = { 9752 }, level = 1, group = "AdditionalPiercePer15Old", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalPierceUniqueJewel__1"] = { affix = "", "Projectiles Pierce an additional Target", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CurseOnHitTemporalChainsUnique__1"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2522 }, level = 1, group = "CurseOnHitLevelTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CurseOnHitCriticalWeaknessUnique__1"] = { affix = "", "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 758 }, level = 1, group = "CurseOnHitCriticalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CurseOnHitCriticalWeaknessUniqueNewUnique__1"] = { affix = "", "Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 798 }, level = 1, group = "TriggerOnRareAssassinsMark", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["SupportedByCastOnStunUnique___1"] = { affix = "", "Socketed Gems are supported by Level 10 Cast when Stunned", statOrder = { 477 }, level = 15, group = "SupportedByCastOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByMeleeSplashUnique__1_"] = { affix = "", "Socketed Gems are supported by Level 30 Melee Splash", statOrder = { 471 }, level = 1, group = "SupportedByMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByAddedFireDamageUnique__1_"] = { affix = "", "Socketed Gems are Supported by Level 10 Added Fire Damage", statOrder = { 462 }, level = 1, group = "DisplaySocketedGemsGetAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["PuritySkillUniqueAmulet22"] = { affix = "", "Grants Level 10 Purity of Elements Skill", statOrder = { 645 }, level = 7, group = "PuritySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HatredSkillUniqueDescentClaw1"] = { affix = "", "Grants Level 20 Hatred Skill", statOrder = { 649 }, level = 1, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ChanceToBeCritJewelUnique__1"] = { affix = "", "Hits have (140-200)% increased Critical Strike Chance against you", statOrder = { 3132 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ChanceToBeCritJewelUpdatedUnique__1"] = { affix = "", "Hits have (140-200)% increased Critical Strike Chance against you", statOrder = { 3130 }, level = 1, group = "ChanceToTakeCriticalStrikeUpdated", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SilenceImmunityUnique__1"] = { affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 36, group = "ImmuneToSilence", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["UniqueSpecialCorruptionAreaOfEffect_"] = { affix = "", "(15-25)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueSpecialCorruptionSkillEffectDuration"] = { affix = "", "(15-25)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueSpecialCorruptionSocketedGemsManaMultiplier_"] = { affix = "", "Socketed Skill Gems get a 80% Cost & Reservation Multiplier", statOrder = { 530 }, level = 1, group = "SocketedSkillsManaMultiplier", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "gem" }, }, + ["UniqueSpecialCorruptionCooldownRecoverySpeed__"] = { affix = "", "(8-12)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueSpecialCorruptionItemQuantity_"] = { affix = "", "(5-7)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["UniqueSpecialCorruptionAdditionalProjectile"] = { affix = "", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueSpecialCorruptionAuraEffect"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["UniqueSpecialCorruptionCurseEffect___"] = { affix = "", "(10-15)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["UniqueSpecialCorruptionSocketedGemLevel"] = { affix = "", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 1, group = "LocalIncreaseSocketedGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["UniqueSpecialCorruptionAllMinCharges"] = { affix = "", "+1 to Minimum Endurance, Frenzy and Power Charges", statOrder = { 9258 }, level = 1, group = "MinimumEndurancePowerFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "power_charge", "frenzy_charge" }, }, + ["UniqueSpecialCorruptionNearbyEnemiesBlinded"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 1, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueSpecialCorruptionNearbyEnemiesMalediction"] = { affix = "", "Nearby Enemies have Malediction", statOrder = { 3398 }, level = 1, group = "NearbyEnemiesHaveMalediction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueSpecialCorruptionNearbyEnemiesCrushed"] = { affix = "", "Nearby Enemies are Crushed", statOrder = { 3397 }, level = 1, group = "NearbyEnemiesAreCrushed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CriticalStrikesLeechInstantlyUniqueGlovesStr3"] = { affix = "", "Life and Mana Leech from Critical Strikes are instant", statOrder = { 2538 }, level = 94, group = "CriticalStrikesLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i"] = { affix = "", "(270-340)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 94, group = "LocalArmourAndEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["MinionUnholyMightOnKillUniqueBodyInt9"] = { affix = "", "Minions gain Unholy Might for 10 seconds on Kill", statOrder = { 2918 }, level = 1, group = "MinionUnholyMightOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["ArrowPierceAppliesToProjectileDamageUniqueQuiver3"] = { affix = "", "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce", statOrder = { 4777 }, level = 45, group = "ArrowPierceAppliesToProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["ArrowDamageAgainstPiercedTargetsUnique__1"] = { affix = "", "Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce", statOrder = { 4776 }, level = 45, group = "ArrowDamageAgainstPiercedTargets", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["OnslaughtOnVaalSkillUseUniqueGlovesStrDex4"] = { affix = "", "You gain Onslaught for 20 seconds on using a Vaal Skill", statOrder = { 2920 }, level = 1, group = "OnslaughtOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["ElementalDamageLeechedAsLifeUniqueSceptre7"] = { affix = "", "100% of Elemental Damage Leeched as Life", statOrder = { 1685 }, level = 1, group = "ElementalDamageLeechedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ElementalDamageLeechedAsLifePermyriadUniqueSceptre7_"] = { affix = "", "0.2% of Elemental Damage Leeched as Life", statOrder = { 1686 }, level = 1, group = "ElementalDamageLeechedAsLifePermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 189 }, level = 94, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedSupportGemLevelUniqueStaff12"] = { affix = "", "+1 to Level of Socketed Support Gems", statOrder = { 189 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedSupportGemLevelUnique__1"] = { affix = "", "+2 to Level of Socketed Support Gems", statOrder = { 189 }, level = 1, group = "LocalIncreaseSocketedSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["AdditionalChainUniqueOneHandMace3"] = { affix = "", "Skills Chain +1 times", statOrder = { 1789 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalChainUnique__1"] = { affix = "", "Skills Chain +2 times", statOrder = { 1789 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalChainUnique__2"] = { affix = "", "Skills Chain +1 times", statOrder = { 1789 }, level = 1, group = "AdditionalChain", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CurseTransferOnKillUniqueQuiver5"] = { affix = "", "Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies", statOrder = { 2934 }, level = 5, group = "CurseTransferOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["AdditionalMeleeDamageToBurningEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Ignited Enemies", statOrder = { 1239 }, level = 1, group = "AdditionalMeleeDamageToBurningEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["AdditionalMeleeDamageToShockedEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Shocked Enemies", statOrder = { 1237 }, level = 1, group = "AdditionalMeleeDamageToShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6"] = { affix = "", "100% increased Melee Damage against Frozen Enemies", statOrder = { 1235 }, level = 1, group = "AdditionalMeleeDamageToFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["ProjectileShockChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Shock", statOrder = { 2705 }, level = 1, group = "ProjectileShockChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ProjectileFreezeChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Freeze", statOrder = { 2704 }, level = 1, group = "ProjectileFreezeChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ProjectileIgniteChanceUniqueDagger6"] = { affix = "", "Projectiles have (15-20)% chance to Ignite", statOrder = { 2703 }, level = 1, group = "ProjectileIgniteChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SupportedByLifeLeechUniqueBodyStrInt5"] = { affix = "", "Socketed Gems are supported by Level 15 Life Leech", statOrder = { 483 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Gems are supported by Level 10 Life Leech", statOrder = { 483 }, level = 1, group = "SupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByChanceToBleedUnique__1"] = { affix = "", "Socketed Gems are supported by Level 1 Chance to Bleed", statOrder = { 484 }, level = 1, group = "SupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ElementalDamageTakenAsChaosUniqueBodyStrInt5"] = { affix = "", "25% of Elemental Damage from Hits taken as Chaos Damage", statOrder = { 2453 }, level = 1, group = "ElementalDamageTakenAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, }, + ["ArcaneVisionUniqueBodyStrInt5"] = { affix = "", "Light Radius is based on Energy Shield instead of Life", statOrder = { 2741 }, level = 1, group = "ArcaneVision", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhysicalDamageFromBeastsUniqueBodyDex6"] = { affix = "", "-(50-40) Physical Damage taken from Hits by Animals", statOrder = { 2928 }, level = 1, group = "PhysicalDamageFromBeasts", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["WeaponLightningDamageUniqueOneHandMace3"] = { affix = "", "(80-100)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["WeaponPhysicalDamageAddedAsRandomElementUniqueBow11"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["WeaponPhysicalDamageAddedAsRandomElementDescentUniqueQuiver1"] = { affix = "", "Gain 25% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["WeaponPhysicalDamageAddedAsRandomElementUnique__1__"] = { affix = "", "Gain 700% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 1, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["WeaponPhysicalDamageAddedAsColdOrLightningUnique__1"] = { affix = "", "Hits with this Weapon gain (75-100)% of Physical Damage as Extra Cold or Lightning Damage", statOrder = { 4366 }, level = 1, group = "WeaponPhysicalDamageAddedAsColdOrLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "lightning", "attack" }, }, + ["DamageTakenPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "1% increased Damage taken per Frenzy Charge", statOrder = { 2930 }, level = 1, group = "IncreaseDamageTakenPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "(15-20)% increased Lightning Damage per Frenzy Charge", statOrder = { 2931 }, level = 1, group = "IncreaseLightningDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6"] = { affix = "", "20 Life gained on Kill per Frenzy Charge", statOrder = { 2932 }, level = 1, group = "LifeGainedOnEnemyDeathPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["CannotBeKnockedBack"] = { affix = "", "Cannot be Knocked Back", statOrder = { 1521 }, level = 1, group = "CannotBeKnockedBack", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnwaveringStance"] = { affix = "", "Unwavering Stance", statOrder = { 10820 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["UnwaveringStanceUnique_2"] = { affix = "", "Unwavering Stance", statOrder = { 10820 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["ReducedEnergyShieldRegenerationRateUniqueQuiver7"] = { affix = "", "40% reduced Energy Shield Recharge Rate", statOrder = { 1565 }, level = 81, group = "EnergyShieldRegeneration", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6"] = { affix = "", "Recover (75-100)% of Life on use", statOrder = { 876 }, level = 1, group = "LocalFlaskInstantRecoverPercentOfLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6"] = { affix = "", "25% of Maximum Life taken as Chaos Damage per second", statOrder = { 877 }, level = 1, group = "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealing", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, }, + ["PowerChargeOnKnockbackUniqueStaff7"] = { affix = "", "10% chance to gain a Power Charge if you Knock an Enemy Back with Melee Damage", statOrder = { 2937 }, level = 1, group = "PowerChargeOnKnockback", weightKey = { }, weightVal = { }, modTags = { "power_charge", "attack" }, }, + ["GrantsBearTrapUniqueShieldDexInt1"] = { affix = "", "Grants Level 25 Bear Trap Skill", statOrder = { 625 }, level = 1, group = "BearTrapSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["PowerChargeOnTrapThrowChanceUniqueShieldDexInt1"] = { affix = "", "25% chance to gain a Power Charge when you Throw a Trap", statOrder = { 2938 }, level = 1, group = "PowerChargeOnTrapThrow", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["CritChancePercentPerStrengthUniqueOneHandSword8_"] = { affix = "", "1% increased Critical Strike Chance per 8 Strength", statOrder = { 2939 }, level = 1, group = "CritChancePercentPerStrength", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["IncreasedAttackSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Attack Speed while Ignited", statOrder = { 2940 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackSpeedWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Attack Speed while Ignited", statOrder = { 2940 }, level = 1, group = "AttackSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedCastSpeedWhileIgnitedUniqueRing24"] = { affix = "", "(25-40)% increased Cast Speed while Ignited", statOrder = { 2941 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedCastSpeedWhileIgnitedUniqueJewel20_"] = { affix = "", "(10-20)% increased Cast Speed while Ignited", statOrder = { 2941 }, level = 1, group = "CastSpeedIncreasedWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["IncreasedChanceToIgniteUniqueRing24"] = { affix = "", "(5-10)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["IncreasedChanceToIgniteUniqueRing31"] = { affix = "", "10% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["IncreasedChanceToBeIgnitedUniqueRing24"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2948 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["IncreasedChanceToBeIgnitedUnique__1"] = { affix = "", "+25% chance to be Ignited", statOrder = { 2948 }, level = 1, group = "IncreasedChanceToBeIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["IncreasedChanceToIgniteUnique__1"] = { affix = "", "2% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["CausesPoisonOnCritUniqueDagger9"] = { affix = "", "50% chance to Cause Poison on Critical Strike", statOrder = { 8001 }, level = 1, group = "LocalCausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, }, + ["CausesPoisonOnCritUnique__1"] = { affix = "", "Melee Critical Strikes Poison the Enemy", statOrder = { 2773 }, level = 1, group = "CausesPoisonOnCrit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "critical", "ailment" }, }, + ["BlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(8-12)% Chance to Block Attack Damage during Effect", statOrder = { 1012 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, }, + ["BlockIncreasedDuringFlaskEffectUnique__1"] = { affix = "", "+(35-50)% Chance to Block Attack Damage during Effect", statOrder = { 1012 }, level = 85, group = "BlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, }, + ["SpellBlockIncreasedDuringFlaskEffectUniqueFlask7"] = { affix = "", "+(4-6)% Chance to Block Spell Damage during Effect", statOrder = { 1032 }, level = 85, group = "SpellBlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, }, + ["SpellBlockIncreasedDuringFlaskEffectUnique__1_"] = { affix = "", "+(20-30)% Chance to Block Spell Damage during Effect", statOrder = { 1032 }, level = 85, group = "SpellBlockDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "block", "flask" }, }, + ["EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9"] = { affix = "", "1% increased Attack Damage per 450 Evasion Rating", statOrder = { 2946 }, level = 1, group = "EvasionRatingIncreasesWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3"] = { affix = "", "(25-40)% increased Damage with Hits and Ailments against Ignited Enemies", statOrder = { 2953 }, level = 1, group = "IncreasedDamageToIgnitedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8"] = { affix = "", "20% increased Movement Speed while on Full Energy Shield", statOrder = { 2969 }, level = 1, group = "MovementSpeedWhileOnFullEnergyShield", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ChanceForEnemyToFleeOnBlockUniqueShieldDex4"] = { affix = "", "100% Chance to Cause Monster to Flee on Block", statOrder = { 2960 }, level = 1, group = "ChanceForEnemyToFleeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["IncreasedChaosDamageUniqueBodyStrDex4"] = { affix = "", "(50-80)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageUniqueCorruptedJewel2"] = { affix = "", "(15-20)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageUniqueShieldDex7"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageUnique__1"] = { affix = "", "(30-35)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageUnique__2"] = { affix = "", "(80-100)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageUnique__3"] = { affix = "", "(7-13)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageUnique__4"] = { affix = "", "(60-80)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageUnique__4_2"] = { affix = "", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageUnique__5"] = { affix = "", "(20-40)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageImplicit1_"] = { affix = "", "(17-23)% increased Chaos Damage", statOrder = { 1385 }, level = 100, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedChaosDamageImplicitUnique__1"] = { affix = "", "30% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["IncreasedLifeLeechRateUniqueBodyStrDex4"] = { affix = "", "100% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeLeechRateUniqueAmulet20"] = { affix = "", "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech", statOrder = { 7382 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, + ["IncreasedLifeLeechRateUnique__1"] = { affix = "", "50% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ReducedLifeLeechRateUniqueJewel19"] = { affix = "", "(10-20)% reduced total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifeLeechRateUnique__2"] = { affix = "", "(500-1000)% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 52, group = "IncreasedLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedManaLeechRateUnique__1"] = { affix = "", "(500-1000)% increased total Recovery per second from Mana Leech", statOrder = { 2158 }, level = 52, group = "IncreasedManaLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SpellAddedChaosDamageUniqueWand7"] = { affix = "", "Adds (90-130) to (140-190) Chaos Damage to Spells", statOrder = { 1407 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageUnique__1"] = { affix = "", "Adds (48-56) to (73-84) Chaos Damage to Spells", statOrder = { 1407 }, level = 81, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["SpellAddedChaosDamageUnique__2"] = { affix = "", "Adds (16-21) to (31-36) Chaos Damage to Spells", statOrder = { 1407 }, level = 1, group = "SpellAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["HealOnRampageUniqueGlovesStrDex5"] = { affix = "", "Recover 20% of Life on Rampage", statOrder = { 2954 }, level = 1, group = "HealOnRampage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["DispelStatusAilmentsOnRampageUniqueGlovesStrInt2"] = { affix = "", "Removes Elemental Ailments on Rampage", statOrder = { 2955 }, level = 1, group = "DispelStatusAilmentsOnRampage", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2"] = { affix = "", "Gain Immunity to Physical Damage for 1.5 seconds on Rampage", statOrder = { 2956 }, level = 1, group = "PhysicalDamageImmunityOnRampage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["VaalSoulsOnRampageUniqueGlovesStrDex5"] = { affix = "", "Kills grant an additional Vaal Soul if you have Rampaged Recently", statOrder = { 6721 }, level = 1, group = "AdditionalVaalSoulOnRampage", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["GroundSmokeOnRampageUniqueGlovesDexInt6"] = { affix = "", "Creates a Smoke Cloud on Rampage", statOrder = { 2967 }, level = 1, group = "GroundSmokeOnRampage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhasingOnRampageUniqueGlovesDexInt6"] = { affix = "", "Enemies do not block your movement for 4 seconds on Rampage", statOrder = { 2968 }, level = 1, group = "PhasingOnRampage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalChanceToBlindOnHitUniqueSceptre8"] = { affix = "", "10% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeRegenerationPerLevelUniqueTwoHandSword7"] = { affix = "", "Regenerate 0.2 Life per second per Level", statOrder = { 2961 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["CriticalStrikeChancePerLevelUniqueTwoHandAxe8"] = { affix = "", "3% increased Global Critical Strike Chance per Level", statOrder = { 2962 }, level = 1, group = "CriticalStrikeChancePerLevel", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["AttackDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Attack Damage per Level", statOrder = { 2963 }, level = 1, group = "AttackDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SpellDamageIncreasedPerLevelUniqueSceptre8"] = { affix = "", "1% increased Spell Damage per Level", statOrder = { 2964 }, level = 1, group = "SpellDamageIncreasedPerLevel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["FlaskChargesOnCritUniqueTwoHandMace__1"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2965 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, }, + ["FlaskChargesOnCritUniqueTwoHandMace__2"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2965 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, }, + ["FlaskChargesOnCritUniqueTwoHandAxe8"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike", statOrder = { 2965 }, level = 1, group = "FlaskChargesOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, }, + ["LifeLeechOnCritUniqueTwoHandAxe8"] = { affix = "", "600% of Damage Leeched as Life on Critical Strike", statOrder = { 1694 }, level = 1, group = "LifeLeechOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, }, + ["LifeLeechOnCritPermyriadUniqueTwoHandAxe8"] = { affix = "", "1.2% of Damage Leeched as Life on Critical Strike", statOrder = { 1695 }, level = 1, group = "LifeLeechOnCritPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, }, + ["ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_"] = { affix = "", "Enemies you Attack have 20% chance to Reflect 35 to 50 Chaos Damage to you", statOrder = { 2970 }, level = 1, group = "ChanceToReflectChaosDamageToSelf", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["SimulatedRampageStrDex5"] = { affix = "", "Rampage", statOrder = { 10766 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SimulatedRampageDexInt6"] = { affix = "", "Rampage", statOrder = { 10766 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SimulatedRampageStrInt2"] = { affix = "", "Rampage", statOrder = { 10766 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SimulatedRampageUnique__1"] = { affix = "", "Melee Hits count as Rampage Kills", "Rampage", statOrder = { 10765, 10765.1 }, level = 1, group = "SimulatedRampageMeleeHits", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SimulatedRampageUnique__2"] = { affix = "", "Rampage", statOrder = { 10766 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SimulatedRampageUnique__3_"] = { affix = "", "Rampage", statOrder = { 10766 }, level = 1, group = "SimulatedRampage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BlindImmunityUniqueSceptre8"] = { affix = "", "Cannot be Blinded", statOrder = { 2974 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BlindImmunityUnique__1"] = { affix = "", "Cannot be Blinded", statOrder = { 2974 }, level = 1, group = "ImmunityToBlind", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ManaGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Mana on Kill per Level", statOrder = { 2972 }, level = 1, group = "ManaGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8"] = { affix = "", "Gain 1 Energy Shield on Kill per Level", statOrder = { 2973 }, level = 1, group = "EnergyShieldGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_"] = { affix = "", "+1 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["LocalIncreaseSocketedActiveSkillGemLevelUnique__1"] = { affix = "", "+12 to Level of Socketed Skill Gems", statOrder = { 190 }, level = 1, group = "LocalIncreaseSocketedActiveSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["IncreasedChaosDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Elemental Damage per Level", statOrder = { 2976 }, level = 1, group = "ChaosDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["IncreasedElementalDamagePerLevelUniqueTwoHandSword7"] = { affix = "", "1% increased Chaos Damage per Level", statOrder = { 2977 }, level = 1, group = "ElementalDamagePerLevel", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7"] = { affix = "", "Gain 1 Life on Kill per Level", statOrder = { 2971 }, level = 1, group = "LifeGainedOnEnemyDeathPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["UnholyMightOnRampageUniqueGlovesDexInt6"] = { affix = "", "Gain Unholy Might for 3 seconds on Rampage", statOrder = { 2975 }, level = 1, group = "UnholyMightOnRampage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReduceGlobalFlatManaCostUnique__1"] = { affix = "", "-(8-4) to Total Mana Cost of Skills", statOrder = { 1891 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreaseGlobalFlatManaCostUnique__1"] = { affix = "", "+50 to Total Mana Cost of Skills", statOrder = { 1891 }, level = 1, group = "IncreaseManaCostFlat", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreaseGlobalFlatManaCostUnique__2"] = { affix = "", "Lose (40-80) Mana when you use a Skill", statOrder = { 8144 }, level = 1, group = "LoseManaOnSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreaseGlobalFlatManaCostUnique__3_"] = { affix = "", "Lose 40 Mana when you use a Skill", statOrder = { 8144 }, level = 1, group = "LoseManaOnSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ReducedLifeRegenerationPercentUniqueOneHandAxe5"] = { affix = "", "50% reduced Life Regeneration rate", statOrder = { 1577 }, level = 1, group = "IncreaseLifeRegenerationPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreaseSocketedSupportGemQualityUnique__1___"] = { affix = "", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["IncreaseSocketedSupportGemQualityUnique__2"] = { affix = "", "+30% to Quality of Socketed Support Gems", statOrder = { 205 }, level = 1, group = "IncreaseSocketedSupportGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["IgniteDurationUnique__1"] = { affix = "", "20% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteDurationUnique__2"] = { affix = "", "90% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteDurationUnique__3_"] = { affix = "", "50% reduced Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteDurationUnique__4"] = { affix = "", "(10-25)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 30, group = "BurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SocketedGemsGetBloodMagicUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 325 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["SocketedGemHasElementalEquilibriumUniqueRing25"] = { affix = "", "Socketed Gems have Elemental Equilibrium", statOrder = { 603 }, level = 1, group = "SocketedGemHasElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental_damage", "damage", "elemental", "gem" }, }, + ["SocketedGemHasSecretsOfSufferingUnique__1"] = { affix = "", "Socketed Gems have Secrets of Suffering", statOrder = { 605 }, level = 1, group = "SocketedGemHasSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "fire", "cold", "lightning", "critical", "ailment", "gem" }, }, + ["ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1"] = { affix = "", "Unaffected by Ignite or Shock if Maximum Life and Maximum Mana are within 500", statOrder = { 10474 }, level = 1, group = "ImmuneToElementalAilmentsWhileLifeAndManaClose", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["FireResistanceWhenSocketedWithRedGemUniqueRing25"] = { affix = "", "+(75-100)% to Fire Resistance when Socketed with a Red Gem", statOrder = { 1626 }, level = 1, group = "FireResistanceWhenSocketedWithRedGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "gem" }, }, + ["LightningResistanceWhenSocketedWithBlueGemUniqueRing25"] = { affix = "", "+(75-100)% to Lightning Resistance when Socketed with a Blue Gem", statOrder = { 1638 }, level = 1, group = "LightningResistanceWhenSocketedWithBlueGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance", "gem" }, }, + ["ColdResistanceWhenSocketedWithGreenGemUniqueRing25"] = { affix = "", "+(75-100)% to Cold Resistance when Socketed with a Green Gem", statOrder = { 1632 }, level = 1, group = "ColdResistanceWhenSocketedWithGreenGem", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "gem" }, }, + ["LightningPenetrationUniqueStaff8"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningPenetrationUnique__1"] = { affix = "", "Damage Penetrates 20% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["FirePenetrationUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance", statOrder = { 2981 }, level = 81, group = "FireResistancePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ManaLeechFromLightningDamageUniqueStaff8"] = { affix = "", "200% of Lightning Damage Leeched as Mana", statOrder = { 1711 }, level = 1, group = "LightningManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, }, + ["ManaLeechPermyriadFromLightningDamageUniqueStaff8"] = { affix = "", "0.4% of Lightning Damage Leeched as Mana", statOrder = { 1712 }, level = 1, group = "LightningManaLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, }, + ["AllSocketsAreWhiteUniqueRing25"] = { affix = "", "All Sockets are White", statOrder = { 76 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AllSocketsAreWhiteUniqueShieldStrDex7_"] = { affix = "", "All Sockets are White", statOrder = { 76 }, level = 1, group = "AllSocketsAreWhite", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PunishmentOnMeleeBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Punishment when you Block their Melee Damage, ignoring Curse Limit", statOrder = { 2987 }, level = 1, group = "PunishmentOnMeleeBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, }, + ["TemporalChainsOnProjectileBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Temporal Chains when you Block their Projectile Attack Damage, ignoring Curse Limit", statOrder = { 2988 }, level = 1, group = "TemporalChainsOnProjectileBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, }, + ["ElementalWeaknessOnSpellBlockUniqueShieldInt4"] = { affix = "", "Curse Enemies with Elemental Weakness when you Block their Spell Damage, ignoring Curse Limit", statOrder = { 2989 }, level = 1, group = "ElementalWeaknessOnSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, }, + ["SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4"] = { affix = "", "Enemies slain by Socketed Gems drop 10% increased item quantity", statOrder = { 536 }, level = 1, group = "SocketedGemsGetIncreasedItemQuantity", weightKey = { }, weightVal = { }, modTags = { "gem", "drop" }, }, + ["VulnerabilityOnBlockUniqueStaff9"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 2985 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, }, + ["VulnerabilityOnBlockUniqueShieldStrDex3"] = { affix = "", "Curse Enemies with Vulnerability on Block", statOrder = { 2985 }, level = 1, group = "VulnerabilityOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster", "curse" }, }, + ["HealAlliesOnDeathUniqueShieldDexInt2"] = { affix = "", "Nearby allies Recover 1% of your Maximum Life when you Die", statOrder = { 2991 }, level = 1, group = "HealAlliesOnDeath", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SelfShockDurationUniqueBelt12_"] = { affix = "", "100% increased Shock Duration on you", statOrder = { 1873 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SelfShockDurationUnique__1"] = { affix = "", "10000% increased Shock Duration on you", statOrder = { 1873 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SelfShockDurationUnique__2"] = { affix = "", "50% increased Shock Duration on you", statOrder = { 1873 }, level = 1, group = "SelfShockDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShocksReflectToSelfUniqueBelt12"] = { affix = "", "Shocks you cause are reflected back to you", statOrder = { 2774 }, level = 1, group = "ShocksReflectToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShocksReflectToSelfUnique__1"] = { affix = "", "Shocks you cause are reflected back to you", statOrder = { 2774 }, level = 1, group = "ShocksReflectToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["MovementVelocityWhileShockedUniqueBelt12"] = { affix = "", "15% increased Movement Speed while Shocked", statOrder = { 2806 }, level = 1, group = "MovementVelocityWhileShocked", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["DamageIncreaseWhileShockedUniqueBelt12"] = { affix = "", "60% increased Damage while Shocked", statOrder = { 2775 }, level = 1, group = "DamageIncreaseWhileShocked", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DamageOnLowLifeUniqueHelmetStrInt5"] = { affix = "", "20% increased Damage when on Low Life", statOrder = { 1215 }, level = 1, group = "DamagePercentageWhenOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5"] = { affix = "", "Socketed Gems are supported by Level 20 Cast on Death", statOrder = { 478 }, level = 1, group = "SocketedGemsSupportedByCastOnDeath", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["IncreaseDamageOnBlindedEnemiesUniqueQuiver9_"] = { affix = "", "(40-60)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 2811 }, level = 69, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreaseDamageOnBlindedEnemiesUnique__1"] = { affix = "", "(25-40)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 2811 }, level = 1, group = "DamageOnBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SmokeCloudWhenHitUniqueQuiver9"] = { affix = "", "25% chance to create a Smoke Cloud when Hit", statOrder = { 2576 }, level = 1, group = "SmokeCloudWhenHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10"] = { affix = "", "30% increased Elemental Damage with Attack Skills during any Flask Effect", statOrder = { 2757 }, level = 1, group = "IncreasedWeaponElementalDamageDuringFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "attack" }, }, + ["IncreasedDamageToShockedTargetsUniqueRing29"] = { affix = "", "40% increased Damage with Hits against Shocked Enemies", statOrder = { 1238 }, level = 1, group = "IncreasedDamageToShockedTargets", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["LifeLeechVsShockedEnemiesUniqueRing29"] = { affix = "", "100% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1687 }, level = 48, group = "LeechLifeVsShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeLeechPermyriadVsShockedEnemiesUniqueRing29"] = { affix = "", "1% of Damage Leeched as Life against Shocked Enemies", statOrder = { 1688 }, level = 48, group = "LeechLifePermyriadVsShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AddedPhysicalDamageVsFrozenEnemiesUniqueRing30"] = { affix = "", "Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies", statOrder = { 1271 }, level = 1, group = "AddedPhysicalDamageOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["ReducedChillDurationOnSelfUniqueRing30"] = { affix = "", "20% reduced Chill Duration on you", statOrder = { 1872 }, level = 25, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChillDurationOnSelfUnique__1"] = { affix = "", "10000% increased Chill Duration on you", statOrder = { 1872 }, level = 1, group = "ReducedChillDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["LifeGainOnHitVsIgnitedEnemiesUniqueRing31"] = { affix = "", "Gain (4-5) Life for each Ignited Enemy hit with Attacks", statOrder = { 1743 }, level = 37, group = "LifeGainOnHitVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SocketedRedGemsHaveAddedFireDamageUniqueTwoHandSword8_"] = { affix = "", "Socketed Red Gems get 10% Physical Damage as Extra Fire Damage", statOrder = { 532 }, level = 1, group = "SocketedRedGemsHaveAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "gem" }, }, + ["SocketedMeleeGemsHaveIncreasedAoEUniqueTwoHandSword8"] = { affix = "", "Socketed Melee Gems have 15% increased Area of Effect", statOrder = { 531 }, level = 1, group = "SocketedMeleeGemsHaveIncreasedAoE", weightKey = { }, weightVal = { }, modTags = { "attack", "gem" }, }, + ["ReducedCriticalStrikeDamageTakenUniqueBelt13"] = { affix = "", "You take 30% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 1, group = "ReducedCriticalStrikeDamageTaken", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["PhysicalDamageConvertedToFireVsBurningEnemyUniqueSceptre9"] = { affix = "", "50% of Physical Damage Converted to Fire Damage against Ignited Enemies", statOrder = { 2177 }, level = 1, group = "PhysicalDamageConvertedToFireVsBurningEnemy", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalTakenAsColdUniqueFlask8"] = { affix = "", "(10-15)% of Physical Damage from Hits taken as Cold Damage during Effect", statOrder = { 957 }, level = 1, group = "PhysicalTakenAsColdFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdUniqueFlask8"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Cold Damage during effect", statOrder = { 958 }, level = 1, group = "PhysicalAddedAsColdFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdUniqueOneHandSword12"] = { affix = "", "Gain (25-30)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdUnique__1"] = { affix = "", "Gain 50% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 35, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdUnique__2"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsColdUnique__3"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Cold Damage", statOrder = { 1933 }, level = 1, group = "PhysicalAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["AvoidChillUniqueFlask8"] = { affix = "", "30% chance to Avoid being Chilled during Effect", statOrder = { 959 }, level = 1, group = "AvoidChillFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, }, + ["AvoidFreezeUniqueFlask8"] = { affix = "", "30% chance to Avoid being Frozen during Effect", statOrder = { 961 }, level = 1, group = "AvoidFreezeFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "cold", "ailment" }, }, + ["IncreasedSelfBurnDurationUniqueRing28"] = { affix = "", "100% increased Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SelfBurnDurationUnique__1"] = { affix = "", "10000% increased Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["FireDamageTakenCausesExtraPhysicalDamageUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage taken causes extra Physical Damage", statOrder = { 2454 }, level = 1, group = "FireDamageTakenCausesExtraPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["ReducedChanceToBlockUnique__1"] = { affix = "", "30% reduced Chance to Block Attack and Spell Damage", statOrder = { 1166 }, level = 1, group = "IncreasedBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChillEffectivenessOnSelfUniqueRing28"] = { affix = "", "75% reduced Effect of Chill on you", statOrder = { 1645 }, level = 30, group = "ChillEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["TemporalChainsEffectivenessOnSelfUniqueRing27"] = { affix = "", "Temporal Chains has 50% reduced Effect on you", statOrder = { 1644 }, level = 28, group = "TemporalChainsEffectivenessOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["TemporalChainsEffectivenessOnSelfUnique__1"] = { affix = "", "Unaffected by Temporal Chains", statOrder = { 10483 }, level = 32, group = "UnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["PhysicalDamageOnSkillUseUniqueHelmetInt8"] = { affix = "", "Your Skills deal you 400% of Mana Spent on Upfront Skill Mana Costs as Physical Damage", statOrder = { 2213 }, level = 1, group = "PhysicalDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedFireDamageTakenUniqueBodyStrDex5"] = { affix = "", "20% increased Fire Damage taken", statOrder = { 2242 }, level = 1, group = "FireDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5"] = { affix = "", "10% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2446 }, level = 1, group = "FireDamageTakenAsPhysicalNegate", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["FireDamageTakenConvertedToPhysicalUnique__1"] = { affix = "", "100% of Fire Damage from Hits taken as Physical Damage", statOrder = { 2445 }, level = 1, group = "FireDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9"] = { affix = "", "Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies", statOrder = { 1272 }, level = 1, group = "AddedFireDamageVsIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["CastSocketedMinionSpellsOnKillUniqueBow12"] = { affix = "", "Trigger Socketed Minion Spells on Kill with this Weapon", "Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses", statOrder = { 754, 754.1 }, level = 1, group = "CastSocketedMinionSpellsOnKill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "minion" }, }, + ["IncreasedMinionDamagePerDexterityUniqueBow12"] = { affix = "", "Minions deal 2% increased Damage per 5 Dexterity", statOrder = { 1978 }, level = 1, group = "IncreasedMinionDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["CastSocketedSpellsOnShockedEnemyKillUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells on Killing a Shocked Enemy", statOrder = { 753 }, level = 1, group = "CastSocketedSpellsOnShockedEnemyKill", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["MaxPowerChargesIsZeroUniqueAmulet19"] = { affix = "", "Cannot gain Power Charges", statOrder = { 5435 }, level = 1, group = "MaxPowerChargesIsZero", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["IncreasedDamagePerCurseUniqueHelmetInt9"] = { affix = "", "(10-20)% increased Damage with Hits and Ailments per Curse on Enemy", statOrder = { 3015 }, level = 1, group = "IncreasedDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["StealChargesOnHitPercentUniqueGlovesStrDex6"] = { affix = "", "10% chance to Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["StealChargesOnHitPercentUnique__1"] = { affix = "", "Steal Power, Frenzy, and Endurance Charges on Hit", statOrder = { 2992 }, level = 1, group = "StealChargesOnHitPercent", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Physical Damage per Endurance Charge", statOrder = { 2139 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "10% increased Physical Damage per Endurance Charge", statOrder = { 2139 }, level = 1, group = "IncreasedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Full Life", statOrder = { 2997 }, level = 1, group = "DamageVsFullLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6"] = { affix = "", "2% increased Damage per Power Charge with Hits against Enemies on Low Life", statOrder = { 2998 }, level = 1, group = "DamageVsLowLivePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "Penetrate 1% Elemental Resistances per Frenzy Charge", statOrder = { 2996 }, level = 1, group = "ElementalPenetrationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ChargeDurationUniqueBodyDexInt3"] = { affix = "", "(100-200)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 1, group = "ChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["ElementalStatusAilmentDurationUniqueAmulet19"] = { affix = "", "20% reduced Duration of Elemental Ailments on Enemies", statOrder = { 1861 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ElementalStatusAilmentDurationDescentUniqueQuiver1"] = { affix = "", "50% increased Duration of Elemental Ailments on Enemies", statOrder = { 1861 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ElementalStatusAilmentDurationUnique__1_"] = { affix = "", "(10-15)% increased Duration of Elemental Ailments on Enemies", statOrder = { 1861 }, level = 1, group = "ElementalStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3"] = { affix = "", "Your Hits can only Kill Frozen Enemies", statOrder = { 3021 }, level = 1, group = "CanOnlyKillFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FreezeDurationUniqueGlovesStrInt3"] = { affix = "", "100% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeChillDurationUnique__1"] = { affix = "", "10000% increased Chill Duration on Enemies", "10000% increased Freeze Duration on Enemies", statOrder = { 1856, 1858 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeDurationUnique__1"] = { affix = "", "30% increased Freeze Duration on Enemies", statOrder = { 1858 }, level = 1, group = "ChillAndFreezeDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ElementalPenetrationMarakethSceptreImplicit1"] = { affix = "", "Damage Penetrates 4% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalPenetrationMarakethSceptreImplicit2"] = { affix = "", "Damage Penetrates 6% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["MinonAreaOfEffectUniqueRing33"] = { affix = "", "Minions have 10% increased Area of Effect", statOrder = { 3024 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MinionAreaOfEffectUnique__1"] = { affix = "", "Minions have (6-8)% increased Area of Effect", statOrder = { 3024 }, level = 1, group = "MinionAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["PhysicalDamageToSelfOnMinionDeathUniqueRing33"] = { affix = "", "350 Physical Damage taken on Minion Death", statOrder = { 3027 }, level = 25, group = "SelfPhysicalDamageOnMinionDeath", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_"] = { affix = "", "8% of Maximum Energy Shield taken as Physical Damage on Minion Death", statOrder = { 3023 }, level = 1, group = "SelfPhysicalDamageOnMinionDeathPerES", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DealNoPhysicalDamageUniqueBelt14"] = { affix = "", "Deal no Physical Damage", statOrder = { 2790 }, level = 65, group = "DealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DealNoNonPhysicalDamageUniqueBelt__1"] = { affix = "", "Deal no Non-Physical Damage", statOrder = { 2791 }, level = 65, group = "DealNoNonPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["RangedAttacksConsumeAmmoUniqueBelt__1"] = { affix = "", "Attacks that Fire Projectiles Consume up to 1 additional Steel Shard", statOrder = { 4909 }, level = 1, group = "RangedAttacksConsumeAmmo", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1"] = { affix = "", "Skills Fire 3 additional Projectiles for 4 seconds after", "you consume a total of 8 Steel Shards", statOrder = { 10066, 10066.1 }, level = 1, group = "AdditionalProjectilesAfterAmmoConsumed", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LifeLeechFromAttacksAgainstChilledEnemiesUniqueBelt14"] = { affix = "", "300% of Attack Damage Leeched as Life against Chilled Enemies", statOrder = { 1692 }, level = 65, group = "LifeLeechFromAttacksAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeLeechPermyriadFromAttacksAgainstChilledEnemiesUniqueBelt14"] = { affix = "", "1% of Attack Damage Leeched as Life against Chilled Enemies", statOrder = { 1693 }, level = 65, group = "LifeLeechPermyriadFromAttacksAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["FasterBurnFromAttacksEnemiesUniqueBelt14"] = { affix = "", "Ignites you inflict with Attacks deal Damage 35% faster", statOrder = { 2566 }, level = 65, group = "FasterBurnFromAttacksEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, }, + ["SocketedGemsProjectilesNovaUniqueStaff10"] = { affix = "", "Socketed Gems fire Projectiles in a circle", statOrder = { 609 }, level = 1, group = "DisplaySocketedGemsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SocketedGemsProjectilesNovaUnique__1"] = { affix = "", "Socketed Projectile Spells fire Projectiles in a circle", statOrder = { 610 }, level = 1, group = "DisplaySocketedSpellsNova", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SocketedGemsAdditionalProjectilesUniqueStaff10_"] = { affix = "", "Socketed Gems fire 4 additional Projectiles", statOrder = { 607 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SocketedGemsAdditionalProjectilesUniqueWand9"] = { affix = "", "Socketed Gems fire an additional Projectile", statOrder = { 607 }, level = 1, group = "DisplaySocketedGemAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SocketedGemsAdditionalProjectilesUnique__1__"] = { affix = "", "Socketed Projectile Spells fire 4 additional Projectiles", statOrder = { 608 }, level = 1, group = "DisplaySocketedSpellsAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SocketedGemsReducedDurationUniqueStaff10"] = { affix = "", "Socketed Gems have 70% reduced Skill Effect Duration", statOrder = { 611 }, level = 1, group = "DisplaySocketedGemReducedDuration", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["MainHandAdditionalProjectilesWhileInOffHandUnique__1"] = { affix = "", "Attacks fire (1-2) additional Projectile when in Off Hand", statOrder = { 10491 }, level = 1, group = "MainHandAdditionalProjectilesWhileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OffHandAreaOfEffectWhileInMainHandUnique__1"] = { affix = "", "Attacks have (40-60)% increased Area of Effect when in Main Hand", statOrder = { 10492 }, level = 1, group = "OffHandAreaOfEffectWhileInMainHand", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SupportedByReducedManaUniqueBodyDexInt4"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 494 }, level = 1, group = "DisplaySocketedGemGetsReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByGenerosityUniqueBodyDexInt4_"] = { affix = "", "Socketed Gems are Supported by Level 30 Generosity", statOrder = { 495 }, level = 1, group = "DisplaySocketedGemGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["IncreasedAuraEffectUniqueBodyDexInt4"] = { affix = "", "(10-15)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["IncreasedAuraEffectUniqueJewel45"] = { affix = "", "3% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffectGlobal", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["IncreasedAuraRadiusUniqueBodyDexInt4"] = { affix = "", "(20-40)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["IncreasedAuraRadiusUnique__1"] = { affix = "", "20% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraIncreasedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["ChaosDamagePoisonsUniqueDagger10"] = { affix = "", "Your Chaos Damage Poisons Enemies", statOrder = { 3031 }, level = 1, group = "ChaosDamagePoisons", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChaosDamageChanceToPoisonUnique__1"] = { affix = "", "Your Chaos Damage has 60% chance to Poison Enemies", statOrder = { 3032 }, level = 1, group = "ChaosDamageChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6"] = { affix = "", "(4-7)% increased Elemental Damage per Frenzy Charge", statOrder = { 2138 }, level = 1, group = "IncreasedElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["MinesMultipleDetonationUniqueStaff11"] = { affix = "", "Mines can be Detonated an additional time", statOrder = { 3033 }, level = 1, group = "MinesMultipleDetonation", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6"] = { affix = "", "You gain Onslaught for 3 seconds on Culling Strike", statOrder = { 3028 }, level = 1, group = "GainOnslaughtOnCull", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalAddedPhysicalDamageUniqueOneHandAxe6"] = { affix = "", "Adds (3-5) to (7-10) Physical Damage", statOrder = { 1276 }, level = 1, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6"] = { affix = "", "(60-80)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LifeLeechUniqueOneHandAxe6"] = { affix = "", "3% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadUniqueOneHandAxe6"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["CannotBeChilledWhenOnslaughtUniqueOneHandAxe6"] = { affix = "", "100% chance to Avoid being Chilled during Onslaught", statOrder = { 3030 }, level = 1, group = "CannotBeChilledDuringOnslaught", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["LifeRegenerationRatePercentageUniqueAmulet21"] = { affix = "", "Regenerate 4% of Life per second", statOrder = { 1944 }, level = 20, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRatePercentageUniqueShieldStrInt3"] = { affix = "", "Regenerate 3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRatePercentageUniqueJewel24"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRatePercentUniqueShieldStr5"] = { affix = "", "You and your Totems Regenerate 0.5% of Life per second for each Summoned Totem", statOrder = { 10646 }, level = 1, group = "LifeRegenerationRatePercentagePerTotem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRatePercentUnique__1"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRatePercentUnique__2"] = { affix = "", "Regenerate 10% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRatePercentUnique__3"] = { affix = "", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRatePercentUnique__4_"] = { affix = "", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRatePercentUnique__5"] = { affix = "", "Regenerate 3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationRatePercentImplicitUnique__5"] = { affix = "", "Regenerate (1-2)% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["RemoteMineLayingSpeedUniqueStaff11"] = { affix = "", "(40-60)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["RemoteMineLayingSpeedUnique__1"] = { affix = "", "(10-15)% reduced Mine Throwing Speed", statOrder = { 1928 }, level = 1, group = "MineLayingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["RemoteMineArmingSpeedUnique__1"] = { affix = "", "Mines have (40-50)% increased Detonation Speed", statOrder = { 9220 }, level = 1, group = "MineArmingSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["LessMineDamageUniqueStaff11"] = { affix = "", "35% less Mine Damage", statOrder = { 1197 }, level = 1, group = "LessMineDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["SupportedByRemoteMineUniqueStaff11"] = { affix = "", "Socketed Gems are Supported by Level 10 Blastchain Mine", statOrder = { 497 }, level = 1, group = "SupportedByRemoteMineLevel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ColdWeaponDamageUniqueOneHandMace4"] = { affix = "", "(30-40)% increased Cold Damage with Attack Skills", statOrder = { 5821 }, level = 1, group = "ColdWeaponDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AddedLightningDamageWhileUnarmedUniqueGlovesStr4_"] = { affix = "", "Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits", statOrder = { 2437 }, level = 1, group = "AddedLightningDamageWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4"] = { affix = "", "Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed", statOrder = { 2438 }, level = 1, group = "AddedLightningDamagetoSpellsWhileUnarmed", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4"] = { affix = "", "+(200-250) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2572 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["GainEnergyShieldOnKillShockedEnemyUnique__1_"] = { affix = "", "+(90-120) Energy Shield gained on Killing a Shocked Enemy", statOrder = { 2572 }, level = 1, group = "GainEnergyShieldOnKillShockedEnemy", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["CannotKnockBackUniqueOneHandMace5_"] = { affix = "", "Cannot Knock Enemies Back", statOrder = { 3011 }, level = 1, group = "CannotKnockBack", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChillOnAttackStunUniqueOneHandMace5"] = { affix = "", "All Attack Damage Chills when you Stun", statOrder = { 3012 }, level = 1, group = "ChillOnAttackStun", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, }, + ["DisplayLifeRegenerationAuraUniqueAmulet21"] = { affix = "", "Nearby Allies gain 4% of Life Regenerated per second", statOrder = { 3000 }, level = 1, group = "DisplayLifeRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["DisplayManaRegenerationAuaUniqueAmulet21"] = { affix = "", "Nearby Allies gain 80% increased Mana Regeneration Rate", statOrder = { 3005 }, level = 1, group = "DisplayManaRegenerationAua", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4"] = { affix = "", "40% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2697 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["IncreasedRarityWhenSlayingFrozenUnique__1"] = { affix = "", "30% increased Rarity of Items Dropped by Frozen Enemies", statOrder = { 2697 }, level = 1, group = "IncreasedRarityWhenSlayingFrozen", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["SwordPhysicalDamageToAddAsFireUniqueOneHandSword10"] = { affix = "", "Gain (66-99)% of Sword Physical Damage as Extra Fire Damage", statOrder = { 3040 }, level = 1, group = "SwordPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, + ["CannotBeBuffedByAlliedAurasUniqueOneHandSword11"] = { affix = "", "Allies' Aura Buffs do not affect you", statOrder = { 3018 }, level = 1, group = "CannotBeBuffedByAlliedAuras", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["AurasCannotBuffAlliesUniqueOneHandSword11"] = { affix = "", "Your Aura Buffs do not affect allies", statOrder = { 3020 }, level = 1, group = "AurasCannotBuffAllies", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["IncreasedBuffEffectivenessUniqueOneHandSword11"] = { affix = "", "10% increased Effect of Buffs on you", statOrder = { 2144 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedBuffEffectivenessBodyInt12"] = { affix = "", "30% increased Effect of Buffs on you", statOrder = { 2144 }, level = 1, group = "IncreasedBuffEffectiveness", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemyKnockbackDirectionReversedUniqueGlovesStr5_"] = { affix = "", "Knockback direction is reversed", statOrder = { 3017 }, level = 1, group = "EnemyKnockbackDirectionReversed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DisplaySupportedByKnockbackUniqueGlovesStr5"] = { affix = "", "Socketed Gems are Supported by Level 10 Knockback", statOrder = { 502 }, level = 1, group = "DisplaySupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3"] = { affix = "", "Regenerate 75 Life per second per Endurance Charge", statOrder = { 3010 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenPerMinutePerEnduranceChargeUnique__1"] = { affix = "", "Regenerate (100-140) Life per second per Endurance Charge", statOrder = { 3010 }, level = 1, group = "LifeRegenPerMinutePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MonstersFleeOnFlaskUseUniqueFlask9"] = { affix = "", "75% chance to cause Enemies to Flee on use", statOrder = { 895 }, level = 1, group = "MonstersFleeOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["PhysicalDamageOnFlaskUseUniqueFlask9"] = { affix = "", "(7-10)% more Melee Physical Damage during effect", statOrder = { 1039 }, level = 1, group = "PhysicalDamageOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "damage", "physical", "attack" }, }, + ["KnockbackOnFlaskUseUniqueFlask9"] = { affix = "", "Adds Knockback to Melee Attacks during Effect", statOrder = { 955 }, level = 1, group = "KnockbackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask", "attack" }, }, + ["CausesBleedingImplicitMarakethRapier1"] = { affix = "", "Causes Bleeding on Hit", statOrder = { 2480 }, level = 1, group = "CausesBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["LifeAndManaOnHitImplicitMarakethClaw1"] = { affix = "", "Grants 6 Life and Mana per Enemy Hit", statOrder = { 1742 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, }, + ["LifeAndManaOnHitImplicitMarakethClaw2"] = { affix = "", "Grants 10 Life and Mana per Enemy Hit", statOrder = { 1742 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, }, + ["LifeAndManaOnHitImplicitMarakethClaw3"] = { affix = "", "Grants 14 Life and Mana per Enemy Hit", statOrder = { 1742 }, level = 1, group = "LifeAndManaOnHitLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw1"] = { affix = "", "Grants 15 Life per Enemy Hit", "Grants 6 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw2"] = { affix = "", "Grants 28 Life per Enemy Hit", "Grants 10 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, }, + ["LifeAndManaOnHitSeparatedImplicitMarakethClaw3"] = { affix = "", "Grants 38 Life per Enemy Hit", "Grants 14 Mana per Enemy Hit", statOrder = { 1738, 1745 }, level = 1, group = "LifeAndManaOnHitSeparatedLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "attack" }, }, + ["LifeAndManaLeechImplicitMarakethClaw1"] = { affix = "", "0.8% of Physical Attack Damage Leeched as Life and Mana", statOrder = { 1656 }, level = 1, group = "LifeAndManaLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "physical", "attack" }, }, + ["IcestormUniqueStaff12"] = { affix = "", "Grants Level 1 Icestorm Skill", statOrder = { 663 }, level = 1, group = "IcestormActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SolartwineUniqueBelt55"] = { affix = "", "Grants Level 20 Blazing Glare", statOrder = { 7897 }, level = 30, group = "SolartwineActiveSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["BitingBraidUniqueBelt52"] = { affix = "", "Grants Level 20 Caustic Retribution", statOrder = { 7893 }, level = 30, group = "BitingBraidActiveSkill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemiesPoisonedByYouCannotCritUnique_1"] = { affix = "", "Enemies Poisoned by you cannot deal Critical Strikes", statOrder = { 6391 }, level = 30, group = "EnemiesPoisonedByYouCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["PowerChargeOnMeleeStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun with Melee Damage", statOrder = { 2770 }, level = 1, group = "PowerChargeOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["PowerChargeOnStunUniqueSceptre10"] = { affix = "", "30% chance to gain a Power Charge when you Stun", statOrder = { 2771 }, level = 1, group = "PowerChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["UnholyMightOnMeleeCritUniqueSceptre10"] = { affix = "", "Gain Unholy Might for 2 seconds on Melee Critical Strike", statOrder = { 2915 }, level = 1, group = "UnholyMightOnMeleeCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["UnholyMightOnCritUniqueSceptre10"] = { affix = "", "Gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 2917 }, level = 1, group = "UnholyMightOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ChanceToAvoidElementalStatusAilmentsUniqueAmulet22"] = { affix = "", "+(5-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["ChanceToAvoidElementalStatusAilmentsUniqueJewel46"] = { affix = "", "10% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["ChanceToBePiercedUniqueBodyStr6"] = { affix = "", "Enemy Projectiles Pierce you", statOrder = { 9747 }, level = 1, group = "ProjectilesAlwaysPierceYou", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IronWillUniqueGlovesStrInt4__"] = { affix = "", "Iron Will", statOrder = { 10829 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["GluttonyOfElementsUniqueAmulet23"] = { affix = "", "Grants Level 10 Gluttony of Elements Skill", statOrder = { 646 }, level = 7, group = "DisplayGluttonyOfElements", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SocketedGemsSupportedByPierceUniqueBodyStr6"] = { affix = "", "Socketed Gems are Supported by Level 15 Pierce", statOrder = { 510 }, level = 1, group = "DisplaySupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["LifeRegenPerActiveBuffUniqueBodyInt12"] = { affix = "", "Regenerate (12-20) Life per second per Buff on you", statOrder = { 7397 }, level = 1, group = "LifeRegenPerBuff", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ProjectileDamageJewelUniqueJewel41"] = { affix = "", "10% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["PhysicalDamagePercentUnique___1"] = { affix = "", "(10-15)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DamageOverTimeUnique___1"] = { affix = "", "(8-12)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AttackAndCastSpeedJewelUniqueJewel43"] = { affix = "", "4% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeedUnique__1"] = { affix = "", "(10-15)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 75, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeedUnique__2"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeedUnique__3"] = { affix = "", "(6-9)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeedUnique__4"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeedUnique__5"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeedUnique__6"] = { affix = "", "(5-7)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeedUnique__7"] = { affix = "", "(5-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeedUnique__8"] = { affix = "", "(6-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeedUnique__9"] = { affix = "", "(0-40)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["AttackAndCastSpeedUnique__10"] = { affix = "", "(6-12)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["StrengthDexterityUnique__1"] = { affix = "", "+20 to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthDexterityImplicitSword_1"] = { affix = "", "+50 to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthIntelligenceUnique__1"] = { affix = "", "+20 to Strength and Intelligence", statOrder = { 1181 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthIntelligenceUnique__2"] = { affix = "", "+(10-30) to Strength and Intelligence", statOrder = { 1181 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityIntelligenceUnique__1__"] = { affix = "", "+20 to Dexterity and Intelligence", statOrder = { 1182 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["LifeLeechJewel"] = { affix = "Hungering", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1647 }, level = 1, group = "LifeLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["ManaLeechJewel"] = { affix = "Thirsting", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1697 }, level = 1, group = "ManaLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SpellLifeLeechJewel"] = { affix = "Transfusing", "1% of Spell Damage Leeched as Life", statOrder = { 1662 }, level = 1, group = "SpellLifeLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "caster" }, }, + ["SpellManaLeechJewel"] = { affix = "Siphoning", "1% of Spell Damage Leeched as Mana", statOrder = { 1703 }, level = 1, group = "SpellManaLeechForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "caster" }, }, + ["PercentIncreasedAccuracyJewelUnique__1"] = { affix = "", "20% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["TrapCritChanceUnique__1"] = { affix = "", "(100-120)% increased Critical Strike Chance with Traps", statOrder = { 1474 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ManaCostReductionUniqueJewel44"] = { affix = "", "3% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaCostIncreasedUniqueCorruptedJewel3"] = { affix = "", "50% increased Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["KnockbackChanceUnique__1"] = { affix = "", "10% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionElementalResistancesUnique__1"] = { affix = "", "Minions have +(7-10)% to all Elemental Resistances", statOrder = { 2912 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, + ["ReducedTotemDamageUniqueJewel26"] = { affix = "", "(30-50)% reduced Totem Damage", statOrder = { 1193 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["TotemDamageUnique__1_"] = { affix = "", "40% increased Totem Damage", statOrder = { 1193 }, level = 1, group = "TotemDamageForJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["JewelStrToDex"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 3047 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["JewelStrToDexUniqueJewel13"] = { affix = "", "Strength from Passives in Radius is Transformed to Dexterity", statOrder = { 3047 }, level = 1, group = "JewelStrToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueJewel13"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["JewelDexToInt"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 3050 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["JewelDexToIntUniqueJewel11"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Intelligence", statOrder = { 3050 }, level = 1, group = "JewelDexToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueJewel11"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["JewelIntToStr"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 3051 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["JewelIntToStrUniqueJewel34"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Strength", statOrder = { 3051 }, level = 1, group = "JewelIntToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueJewel34"] = { affix = "", "+(16-24) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["JewelStrToInt"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 3048 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["JewelStrToIntUniqueJewel35"] = { affix = "", "Strength from Passives in Radius is Transformed to Intelligence", statOrder = { 3048 }, level = 1, group = "JewelStrToInt", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligenceUniqueJewel35"] = { affix = "", "+(16-24) to Intelligence", statOrder = { 1179 }, level = 1, group = "Intelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["JewelIntToDex"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 3052 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["JewelIntToDexUniqueJewel36"] = { affix = "", "Intelligence from Passives in Radius is Transformed to Dexterity", statOrder = { 3052 }, level = 1, group = "JewelIntToDex", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityUniqueJewel36"] = { affix = "", "+(16-24) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["JewelDexToStr"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 3049 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["JewelDexToStrUniqueJewel37"] = { affix = "", "Dexterity from Passives in Radius is Transformed to Strength", statOrder = { 3049 }, level = 1, group = "JewelDexToStr", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StrengthUniqueJewel37"] = { affix = "", "+(16-24) to Strength", statOrder = { 1177 }, level = 1, group = "Strength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["ReducedAttackAndCastSpeedUniqueGlovesStrInt4"] = { affix = "", "(20-30)% reduced Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["NonDamagingAilmentEffectUnique_1"] = { affix = "", "(10-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 100, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["AttackAndCastSpeedUniqueRing39"] = { affix = "", "(5-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["LifeLeechLocal1"] = { affix = "Remora's", "(1-2)% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 9, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechLocal2"] = { affix = "Lamprey's", "(3-4)% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 25, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechLocal3"] = { affix = "Vampire's", "(5-6)% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 72, group = "LifeLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechLocalPermyriadUnique__1"] = { affix = "", "2% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechLocalUniqueOneHandMace8"] = { affix = "", "5% of Physical Attack Damage Leeched as Life", statOrder = { 1650 }, level = 1, group = "LifeLeechLocal", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechLocalPermyriadUniqueOneHandMace8__"] = { affix = "", "1% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["ManaLeechLocal1"] = { affix = "Thirsty", "(1-2)% of Physical Attack Damage Leeched as Mana", statOrder = { 1700 }, level = 9, group = "ManaLeechLocal", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadLocalUnique__1"] = { affix = "", "2% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["AoEKnockBackOnFlaskUseUniqueFlask9_"] = { affix = "", "Knocks Back Enemies in an Area when you use a Flask", statOrder = { 894 }, level = 1, group = "AoEKnockBackOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["AttacksCostNoManaUniqueTwoHandAxe9"] = { affix = "", "Your Attacks do not cost Mana", statOrder = { 1892 }, level = 1, group = "AttacksCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["CannotLeechOrRegenerateManaUniqueTwoHandAxe9"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2569 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["CannotLeechOrRegenerateManaUnique__1_"] = { affix = "", "Cannot Leech or Regenerate Mana", statOrder = { 2569 }, level = 1, group = "NoManaLeechOrRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["ResoluteTechniqueUniqueTwoHandAxe9"] = { affix = "", "Resolute Technique", statOrder = { 10828 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["JewelUniqueAllocateDisconnectedPassives"] = { affix = "", "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10716, 10716.1 }, level = 1, group = "JewelUniqueAllocateDisconnectedPassives", weightKey = { }, weightVal = { }, modTags = { }, }, + ["JewelRingRadiusValuesUnique__1"] = { affix = "", "Only affects Passives in Small Ring", statOrder = { 12 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, }, + ["JewelRingRadiusValuesUnique__2"] = { affix = "", "Only affects Passives in Massive Ring", statOrder = { 12 }, level = 1, group = "JewelRingRadiusValues", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AllocateDisconnectedPassivesDonutUnique__1"] = { affix = "", "Passive Skills in Radius can be Allocated without being connected to your tree", "Passage", statOrder = { 10716, 10716.1 }, level = 1, group = "AllocateDisconnectedPassivesDonut", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AvoidStunUniqueRingVictors"] = { affix = "", "(10-20)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AvoidStunUnique__1"] = { affix = "", "30% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AvoidElementalAilmentsUnique__1_"] = { affix = "", "30% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalAilmentsUnique__2"] = { affix = "", "(20-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AvoidElementalAilmentsUnique__3"] = { affix = "", "(15-25)% chance to Avoid Elemental Ailments", statOrder = { 1843 }, level = 1, group = "AvoidElementalStatusAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["LocalChanceToBleedImplicitMarakethRapier1"] = { affix = "", "15% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["LocalChanceToBleedImplicitMarakethRapier2"] = { affix = "", "20% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["LocalChanceToBleedUniqueDagger12"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["LocalChanceToBleedUniqueOneHandMace8"] = { affix = "", "30% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["LocalChanceToBleedUnique__1__"] = { affix = "", "50% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["LocalChanceToBleedUnique__2"] = { affix = "", "40% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedUnique__1_"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedUnique__2__"] = { affix = "", "Attacks have 25% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToBleedUnique__3_"] = { affix = "", "Attacks have 15% chance to cause Bleeding", statOrder = { 2489 }, level = 1, group = "ChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["StealRareModUniqueJewel3"] = { affix = "", "With 4 Notables Allocated in Radius, When you Kill a Rare monster, you gain 1 of its Modifiers for 20 seconds", statOrder = { 3056 }, level = 1, group = "JewelStealRareMod", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnarmedAreaOfEffectUniqueJewel4"] = { affix = "", "(10-15)% increased Area of Effect while Unarmed", statOrder = { 3053 }, level = 1, group = "UnarmedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnarmedStrikeRangeUniqueJewel__1_"] = { affix = "", "+(0.3-0.4) metres to Melee Strike Range with Unarmed Attacks", statOrder = { 3079 }, level = 1, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["UniqueJewelMeleeToBow"] = { affix = "", "Melee and Melee Weapon Type modifiers in Radius are Transformed to Bow Modifiers", statOrder = { 3067 }, level = 1, group = "UniqueJewelMeleeToBow", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ChaosDamageIncreasedPerIntUniqueJewel2"] = { affix = "", "5% increased Chaos Damage per 10 Intelligence from Allocated Passives in Radius", statOrder = { 3071 }, level = 1, group = "ChaosDamageIncreasedPerInt", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["PassivesApplyToMinionsUniqueJewel7"] = { affix = "", "Passives in Radius apply to Minions instead of you", statOrder = { 3072 }, level = 1, group = "PassivesApplyToMinionsJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["SpellDamagePerIntelligenceUniqueStaff12"] = { affix = "", "1% increased Spell Damage per 10 Intelligence", statOrder = { 2738 }, level = 1, group = "SpellDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["NearbyAlliesHaveCullingStrikeUnique__1"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "GrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "IncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["NearbyAlliesHaveCriticalStrikeMultiplierUnique__1"] = { affix = "", "+50% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["LifeOnCorpseRemovalUniqueJewel14"] = { affix = "", "Recover 2% of Life when you Consume a corpse", statOrder = { 3054 }, level = 1, group = "LifeOnCorpseRemoval", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["TotemLifePerStrengthUniqueJewel15"] = { affix = "", "3% increased Totem Life per 10 Strength Allocated in Radius", statOrder = { 3055 }, level = 1, group = "TotemLifePerStrengthInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["TotemsCannotBeStunnedUniqueJewel15"] = { affix = "", "Totems cannot be Stunned", statOrder = { 3062 }, level = 1, group = "TotemsCannotBeStunned", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionDodgeChanceUniqueJewel16"] = { affix = "", "Minions have +(2-5)% chance to Suppress Spell Damage", statOrder = { 9333 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MinionDodgeChanceUnique__1"] = { affix = "", "Minions have +(12-15)% chance to Suppress Spell Damage", statOrder = { 9333 }, level = 1, group = "MinionSpellDodgeChance", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["FireDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (3-5) to (8-12) Fire Attack Damage per Buff on you", statOrder = { 1273 }, level = 1, group = "FireDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["FireSpellDamagePerBuffUniqueJewel17"] = { affix = "", "Adds (2-3) to (5-8) Fire Spell Damage per Buff on you", statOrder = { 1274 }, level = 1, group = "FireSpellDamagePerBuff", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["MinionLifeRecoveryOnBlockUniqueJewel18"] = { affix = "", "Minions Recover 2% of their Life when they Block", statOrder = { 3061 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, }, + ["MinionLifeRecoveryOnBlockUnique__1"] = { affix = "", "Minions Recover 10% of their Life when they Block", statOrder = { 3061 }, level = 1, group = "MinionLifeRecoveryOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life", "minion" }, }, + ["IncreasedDamageWhileLeechingLifeUniqueJewel19"] = { affix = "", "(25-30)% increased Damage while Leeching", statOrder = { 3063 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedDamageWhileLeechingUnique__1"] = { affix = "", "(30-40)% increased Damage while Leeching", statOrder = { 3063 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedDamageWhileLeechingUnique__2__"] = { affix = "", "(15-25)% increased Damage while Leeching", statOrder = { 3063 }, level = 1, group = "IncreasedDamageWhileLeechingLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["MovementVelocityWhileIgnitedUniqueJewel20"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityWhileIgnitedUnique__1"] = { affix = "", "10% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityWhileIgnitedUnique__2"] = { affix = "", "(10-20)% increased Movement Speed while Ignited", statOrder = { 2805 }, level = 1, group = "MovementVelocityWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["FortifyOnMeleeHitUniqueJewel22"] = { affix = "", "Melee Hits have 10% chance to Fortify", statOrder = { 2264 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["DamageTakenUniqueJewel24"] = { affix = "", "10% increased Damage taken", statOrder = { 2238 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedDamagePerMagicItemJewel25"] = { affix = "", "(20-25)% increased Damage for each Magic Item Equipped", statOrder = { 3080 }, level = 1, group = "IncreasedDamagePerMagicItem", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AdditionalTotemProjectilesUniqueJewel26"] = { affix = "", "Totems fire 2 additional Projectiles", statOrder = { 3082 }, level = 1, group = "AdditionalTotemProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnholyMightOnMeleeKillUniqueJewel28"] = { affix = "", "5% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3083 }, level = 1, group = "UnholyMightOnMeleeKill", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SpellDamageWithNoManaReservedUniqueJewel30"] = { affix = "", "(40-60)% increased Spell Damage while no Mana is Reserved", statOrder = { 3084 }, level = 1, group = "SpellDamageWithNoManaReserved", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["AllAttributesPerAssignedKeystoneUniqueJewel32"] = { affix = "", "4% increased Attributes per allocated Keystone", statOrder = { 3087 }, level = 1, group = "AllAttributesPerAssignedKeystone", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Attacks", statOrder = { 3075 }, level = 1, group = "LifeOnHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33"] = { affix = "", "Gain 3 Life per Elemental Ailment on Enemies Hit with Spells", statOrder = { 3076 }, level = 1, group = "LifeOnSpellHitPerStatusAilmentOnEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, }, + ["ItemLimitUniqueJewel8"] = { affix = "", "Survival", statOrder = { 10713 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemLimitUniqueJewel9"] = { affix = "", "Survival", statOrder = { 10713 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemLimitUniqueJewel10"] = { affix = "", "Survival", statOrder = { 10713 }, level = 1, group = "SurvivalJewelDisplay", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have Culling Strike", statOrder = { 2533 }, level = 1, group = "DisplayGrantsCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9"] = { affix = "", "Nearby Allies have 30% increased Item Rarity", statOrder = { 1597 }, level = 1, group = "DisplayIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9"] = { affix = "", "Nearby Allies have +50% to Critical Strike Multiplier", statOrder = { 7902 }, level = 1, group = "DisplayGrantsCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["DisplayNearbyAlliesHaveFortifyTwoHandAxe9"] = { affix = "", "Nearby Allies have +10 Fortification", statOrder = { 7904 }, level = 1, group = "DisplayGrantsFortify", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalVaalSoulOnKillUniqueCorruptedJewel4_"] = { affix = "", "(20-30)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["VaalSkillDurationUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["VaalSkillRefundChanceUniqueCorruptedJewel5"] = { affix = "", "Vaal Skills have (15-20)% chance to regain consumed Souls when used", statOrder = { 10518 }, level = 1, group = "VaalSkillRefundChance", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["VaalSkillCriticalStrikeChanceCorruptedJewel6"] = { affix = "", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical", "vaal" }, }, + ["VaalSkillCriticalStrikeMultiplierCorruptedJewel6"] = { affix = "", "+(22-30)% to Vaal Skill Critical Strike Multiplier", statOrder = { 3108 }, level = 1, group = "VaalSkillCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "vaal" }, }, + ["AttackDamageUniqueJewel42"] = { affix = "", "10% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["IncreasedFlaskEffectUniqueJewel45"] = { affix = "", "Flasks applied to you have 8% increased Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["CurseEffectivenessUniqueJewel45"] = { affix = "", "4% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectivenessForJewel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessUnique__2_"] = { affix = "", "(15-20)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessUnique__3_"] = { affix = "", "(5-10)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CurseEffectivenessUnique__4"] = { affix = "", "(10-15)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "CurseEffectiveness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ManaCostOfTotemAurasUniqueCorruptedJewel8"] = { affix = "", "60% reduced Cost of Aura Skills that summon Totems", statOrder = { 3110 }, level = 1, group = "ManaCostOfTotemAuras", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AdditionalVaalSoulOnShatterUniqueCorruptedJewel7"] = { affix = "", "50% chance to gain an additional Vaal Soul per Enemy Shattered", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnShatter", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["IncreasedCorruptedGemExperienceUniqueCorruptedJewel9"] = { affix = "", "10% increased Experience Gain for Corrupted Gems", statOrder = { 3111 }, level = 1, group = "IncreasedCorruptedGemExperience", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11"] = { affix = "", "With 5 Corrupted Items Equipped: Gain Soul Eater for 10 seconds on Vaal Skill use", statOrder = { 3114 }, level = 1, group = "CorruptThresholdSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["CorruptThresholdPhysBypassesESUniqueCorruptedJewel12"] = { affix = "", "With 5 Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield", statOrder = { 3113 }, level = 1, group = "CorruptThresholdPhysBypassesES", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield", "chaos" }, }, + ["CorruptThresholdLifeLeechUsesChaosDamageUniqueCorruptedJewel10"] = { affix = "", "With 5 Corrupted Items Equipped: Life Leech recovers based on your Chaos Damage instead", statOrder = { 3112 }, level = 1, group = "CorruptThresholdLifeLeechUsesChaosDamage", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, + ["ManaGainedOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Recover 1% of Mana on Kill", statOrder = { 1755 }, level = 1, group = "ManaGainedOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["LifeLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of Life on Kill", statOrder = { 1754 }, level = 1, group = "LifeLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14"] = { affix = "", "Lose 1% of Energy Shield on Kill", statOrder = { 1756 }, level = 1, group = "EnergyShieldLostOnKillPercentage", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["PunishmentSelfCurseOnKillUniqueCorruptedJewel13"] = { affix = "", "(20-30)% chance to Curse you with Punishment on Kill", statOrder = { 3121 }, level = 1, group = "PunishmentSelfCurseOnKill", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["AdditionalCurseOnSelfUniqueCorruptedJewel13"] = { affix = "", "An additional Curse can be applied to you", statOrder = { 2169 }, level = 1, group = "AdditionalCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["IncreasedDamagePerCurseOnSelfCorruptedJewel13_"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1216 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DamageTakenOnFullESUniqueCorruptedJewel15"] = { affix = "", "10% increased Damage taken while on Full Energy Shield", statOrder = { 2244 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageTakenOnFullESUnique__1"] = { affix = "", "15% increased Damage taken while on Full Energy Shield", statOrder = { 2244 }, level = 1, group = "DamageTakenOnFullES", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ConvertLightningToColdUniqueRing34"] = { affix = "", "40% of Lightning Damage Converted to Cold Damage", statOrder = { 1965 }, level = 25, group = "ConvertLightningToCold", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, + ["SpellChanceToShockFrozenEnemiesUniqueRing34"] = { affix = "", "Your spells have 100% chance to Shock against Frozen Enemies", statOrder = { 2926 }, level = 1, group = "SpellChanceToShockFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "caster", "ailment" }, }, + ["ClawPhysDamageAndEvasionPerDexUniqueJewel47"] = { affix = "", "1% increased Evasion Rating per 3 Dexterity Allocated in Radius", "1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius", "1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius", statOrder = { 3123, 3124, 3139 }, level = 1, group = "ClawPhysDamageAndEvasionPerDex", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "defences", "evasion", "damage", "physical", "attack" }, }, + ["ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_"] = { affix = "", "Increases and Reductions to Physical Damage in Radius are Transformed to apply to Cold Damage", "Increases and Reductions to Cold Damage in Radius are Transformed to apply to Physical Damage", statOrder = { 3126, 3127 }, level = 1, group = "ColdAndPhysicalNodesInRadiusSwapProperties", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["AllDamageInRadiusBecomesFireUniqueJewel49"] = { affix = "", "Increases and Reductions to other Damage Types in Radius are Transformed to apply to Fire Damage", statOrder = { 3125 }, level = 1, group = "AllDamageInRadiusBecomesFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["EnergyShieldInRadiusIncreasesArmourUniqueJewel50"] = { affix = "", "Increases and Reductions to Energy Shield in Radius are Transformed to apply to Armour at 200% of their value", statOrder = { 3128 }, level = 1, group = "EnergyShieldInRadiusIncreasesArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Energy Shield", statOrder = { 3129 }, level = 1, group = "LifeInRadiusBecomesEnergyShieldAtHalfValue", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LifePerIntelligenceInRadusUniqueJewel52"] = { affix = "", "Adds 1 to Maximum Life per 3 Intelligence Allocated in Radius", statOrder = { 3134 }, level = 1, group = "LifePerIntelligenceInRadus", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AddedLightningDamagePerDexInRadiusUniqueJewel53"] = { affix = "", "Adds 1 to 2 Lightning Damage to Attacks", "Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius", statOrder = { 1380, 3133 }, level = 1, group = "AddedLightningDamagePerDexInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LifePassivesBecomeManaPassivesInRadiusUniqueJewel54"] = { affix = "", "Increases and Reductions to Life in Radius are Transformed to apply to Mana at 200% of their value", statOrder = { 3137 }, level = 1, group = "LifePassivesBecomeManaPassivesInRadius", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55"] = { affix = "", "Dexterity and Intelligence from passives in Radius count towards Strength Melee Damage bonus", statOrder = { 3138 }, level = 1, group = "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadius", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6"] = { affix = "", "Gain 100 Life when you lose an Endurance Charge", statOrder = { 3014 }, level = 1, group = "LifeGainOnEnduranceChargeConsumption", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SummonTotemCastSpeedUnique__1"] = { affix = "", "(14-20)% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedUnique__2"] = { affix = "", "(30-50)% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SummonTotemCastSpeedImplicit1"] = { affix = "", "(20-30)% increased Totem Placement speed", statOrder = { 2578 }, level = 93, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["AttackDamageAgainstBleedingUniqueDagger11"] = { affix = "", "40% increased Attack Damage against Bleeding Enemies", statOrder = { 2491 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["AttackDamageAgainstBleedingUniqueOneHandMace8"] = { affix = "", "30% increased Attack Damage against Bleeding Enemies", statOrder = { 2491 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["AttackDamageAgainstBleedingUnique__1__"] = { affix = "", "(25-40)% increased Attack Damage against Bleeding Enemies", statOrder = { 2491 }, level = 1, group = "AttackDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["FlammabilityOnHitUniqueOneHandAxe7"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2517 }, level = 1, group = "FlammabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["FlammabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Flammability on Hit", statOrder = { 2530 }, level = 1, group = "FlammabilityOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["LightningWarpSkillUniqueOneHandAxe8"] = { affix = "", "Grants Level 1 Lightning Warp Skill", statOrder = { 711 }, level = 1, group = "LightningWarpSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["StunAvoidanceUniqueOneHandSword13"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunAvoidanceUnique___1"] = { affix = "", "20% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SupportedByMultistrikeUniqueOneHandSword13"] = { affix = "", "Socketed Gems are supported by Level 1 Multistrike", statOrder = { 481 }, level = 1, group = "SupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6"] = { affix = "", "30% increased Melee Damage against Bleeding Enemies", statOrder = { 2492 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["MeleeDamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "50% increased Melee Damage against Bleeding Enemies", statOrder = { 2492 }, level = 1, group = "MeleeDamageAgainstBleeding", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SpellAddedFireDamageUniqueWand10"] = { affix = "", "Adds (4-6) to (8-12) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageUnique__1"] = { affix = "", "Adds 100 to 100 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageUnique__2_"] = { affix = "", "Adds (20-30) to 40 Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageUnique__3"] = { affix = "", "Adds (20-24) to (38-46) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageUnique__4"] = { affix = "", "Adds (2-3) to (5-6) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageUnique__5"] = { affix = "", "Battlemage", statOrder = { 10771 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellAddedFireDamageUnique__6_"] = { affix = "", "Adds (14-16) to (30-32) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedFireDamageUnique__7"] = { affix = "", "Adds (9-12) to (19-22) Fire Damage to Spells", statOrder = { 1404 }, level = 1, group = "SpellAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["SpellAddedColdDamageUniqueBootsStrDex5"] = { affix = "", "Adds (25-30) to (40-50) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageUnique__1"] = { affix = "", "Adds 100 to 100 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageUnique__2"] = { affix = "", "Adds (20-30) to 40 Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageUnique__3"] = { affix = "", "Adds (2-3) to (5-6) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageUnique__4"] = { affix = "", "Adds (40-60) to (90-110) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageUnique__5"] = { affix = "", "Adds (35-39) to (54-60) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageUnique__6__"] = { affix = "", "Adds (10-12) to (24-28) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedColdDamageUnique__7"] = { affix = "", "Adds (120-140) to (150-170) Cold Damage to Spells", statOrder = { 1405 }, level = 1, group = "SpellAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["SpellAddedLightningDamageUnique__1"] = { affix = "", "Adds 100 to 100 Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageUnique__2"] = { affix = "", "Adds (1-10) to (150-200) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (10-12) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageUnique__4"] = { affix = "", "Adds 1 to (60-70) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageUnique__5"] = { affix = "", "Adds (26-35) to (95-105) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageUnique__6_"] = { affix = "", "Adds (13-18) to (50-56) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageUnique__7"] = { affix = "", "Adds 1 to (60-68) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["SpellAddedLightningDamageTwoHandUniqueStaff8d"] = { affix = "", "Adds (5-15) to (100-140) Lightning Damage to Spells", statOrder = { 1406 }, level = 1, group = "SpellAddedLightningDamageTwoHand", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8"] = { affix = "", "(10-20)% increased Damage per Curse on you", statOrder = { 1216 }, level = 1, group = "IncreasedDamagePerCurseOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["LocalAddedChaosDamageImplicitE1"] = { affix = "", "Adds (26-38) to (52-70) Chaos Damage", statOrder = { 1390 }, level = 30, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageImplicitE2"] = { affix = "", "Adds (43-55) to (81-104) Chaos Damage", statOrder = { 1390 }, level = 50, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LocalAddedChaosDamageImplicitE3_"] = { affix = "", "Adds (46-63) to (92-113) Chaos Damage", statOrder = { 1390 }, level = 70, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["DamageWithMovementSkillsUniqueClaw9"] = { affix = "", "20% increased Damage with Movement Skills", statOrder = { 1431 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DamageWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(60-100)% increased Damage with Movement Skills", statOrder = { 1431 }, level = 1, group = "DamageWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AttackSpeedWithMovementSkillsUniqueClaw9"] = { affix = "", "15% increased Attack Speed with Movement Skills", statOrder = { 1432 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["AttackSpeedWithMovementSkillsUniqueBodyDex5"] = { affix = "", "(10-20)% increased Attack Speed with Movement Skills", statOrder = { 1432 }, level = 1, group = "AttackSpeedWithMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LifeGainedOnKillingIgnitedEnemiesUniqueWand10_"] = { affix = "", "Gain 10 Life per Ignited Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedOnKillingIgnitedEnemiesUnique__1"] = { affix = "", "Gain (200-300) Life per Ignited Enemy Killed", statOrder = { 1753 }, level = 1, group = "LifeGainedOnKillingIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["DamageTakenFromSkeletonsUniqueOneHandSword12_"] = { affix = "", "10% increased Damage taken from Skeletons", statOrder = { 2247 }, level = 1, group = "DamageTakenFromSkeletons", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageTakenFromGhostsUniqueOneHandSword12"] = { affix = "", "10% increased Damage taken from Ghosts", statOrder = { 2248 }, level = 1, group = "DamageTakenFromGhosts", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotBeShockedWhileFrozenUniqueStaff14"] = { affix = "", "You cannot be Shocked while Frozen", statOrder = { 2898 }, level = 1, group = "CannotBeShockedWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["LifeLeechPhysicalAgainstBleedingEnemiesUniqueOneHandMace8"] = { affix = "", "3% of Attack Damage Leeched as Life against Bleeding Enemies", statOrder = { 1696 }, level = 1, group = "LifeLeechPhysicalAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["DisplaySocketedGemsSupportedByMinionLifeUniqueRing35"] = { affix = "", "Socketed Gems are Supported by Level 15 Minion Life", statOrder = { 504 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemsSupportedByLesserMultipleProjectilesUniqueRing36"] = { affix = "", "Socketed Gems are Supported by Level 12 Multiple Projectiles", statOrder = { 505 }, level = 1, group = "DisplaySocketedGemsSupportedByLesserMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemsSupportedByIncreasedMinionDamageUniqueRing36"] = { affix = "", "Socketed Gems are Supported by Level 17 Minion Damage", statOrder = { 506 }, level = 1, group = "DisplaySocketedGemsSupportedByIncreasedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemsSupportedByIncreasedCriticalDamageUniqueRing37_"] = { affix = "", "Socketed Gems are Supported by Level 16 Increased Critical Damage", statOrder = { 507 }, level = 1, group = "DisplaySocketedGemsSupportedByIncreasedCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySocketedGemsSupportedByMinionSpeedUniqueRing37"] = { affix = "", "Socketed Gems are Supported by Level 16 Minion Speed", statOrder = { 508 }, level = 1, group = "DisplaySocketedGemsSupportedByMinionSpeed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ManaGainedOnHitAgainstTauntedEnemyUniqueShieldInt5"] = { affix = "", "Gain 3 Mana per Taunted Enemy Hit", statOrder = { 1784 }, level = 1, group = "ManaOnHitVsTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["LifeGainedOnTauntingEnemyUniqueShieldStr4"] = { affix = "", "Gain +10 Life when you Taunt an Enemy", statOrder = { 1783 }, level = 1, group = "LifeGainedOnTauntingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeGainedOnTauntingEnemyUnique__1"] = { affix = "", "Gain +50 Life when you Taunt an Enemy", statOrder = { 1783 }, level = 1, group = "LifeGainedOnTauntingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedTauntDurationUniqueShieldStr4"] = { affix = "", "20% increased Taunt Duration", statOrder = { 1782 }, level = 1, group = "TauntDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OnslaughtOnKillingTauntedEnemyUniqueShieldDex7"] = { affix = "", "You gain Onslaught for 2 seconds on Killing Taunted Enemies", statOrder = { 2644 }, level = 1, group = "OnslaughtOnKillingTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OnslaughtOnKillingTauntedEnemyUnique__1"] = { affix = "", "You gain Onslaught for 1 seconds on Killing Taunted Enemies", statOrder = { 2644 }, level = 1, group = "OnslaughtOnKillingTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TotemAreaOfEffectUniqueShieldStr5"] = { affix = "", "15% increased Area of Effect for Skills used by Totems", statOrder = { 2581 }, level = 1, group = "TotemAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeLeechFromTotemSkillsUniqueShieldStr5"] = { affix = "", "1% of Damage Leeched as Life for Skills used by Totems", statOrder = { 2582 }, level = 1, group = "LifeLeechFromTotemSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AnimateWeaponDurationUniqueTwoHandMace8"] = { affix = "", "30% less Animate Weapon Duration", statOrder = { 2795 }, level = 1, group = "AnimateWeaponDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["NumberOfAdditionalAnimateWeaponCopiesUniqueTwoHandMace8"] = { affix = "", "Weapons you Animate create an additional copy", statOrder = { 2797 }, level = 1, group = "NumberOfAdditionalAnimateWeaponCopies", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["DamageYouReflectGainedAsLifeUniqueHelmetDexInt6"] = { affix = "", "100% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 1, group = "DamageYouReflectGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["DamageYouReflectGainedAsLifeUnique__1"] = { affix = "", "10% of Damage you Reflect to Enemies when Hit is leeched as Life", statOrder = { 2711 }, level = 1, group = "DamageYouReflectGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ImmuneToChilledGroundUniqueBootsStrDex5"] = { affix = "", "Unaffected by Chilled Ground", statOrder = { 10461 }, level = 1, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ImmuneToBurningGroundUniqueBootsStr3"] = { affix = "", "Unaffected by Burning Ground", statOrder = { 10456 }, level = 1, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["UniqueUnaffectedByBurningGround__1"] = { affix = "", "Unaffected by Burning Ground", statOrder = { 10456 }, level = 1, group = "BurningGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["ImmuneToShockedGroundUniqueBootsDexInt4"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10481 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["UniqueUnaffectedByShockedGround__1"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10481 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ImmuneToDesecratedGroundUniqueBootsInt6"] = { affix = "", "Unaffected by Desecrated Ground", statOrder = { 10467 }, level = 1, group = "DesecratedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["UniqueUnaffectedByDesecratedGround__1"] = { affix = "", "Unaffected by Desecrated Ground", statOrder = { 10467 }, level = 1, group = "DesecratedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["UniqueUnaffectedByChilledGround__1"] = { affix = "", "Unaffected by Chilled Ground", statOrder = { 10461 }, level = 1, group = "ChilledGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ImmuneToShockedGroundUnique__1"] = { affix = "", "Unaffected by Shocked Ground", statOrder = { 10481 }, level = 1, group = "ShockedGroundEffectEffectiveness", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockedGroundWhenHitUniqueHelmetInt10"] = { affix = "", "20% chance to create Shocked Ground when Hit", statOrder = { 2577 }, level = 1, group = "ShockedGroundWhenHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ShockedGroundWhenHitUnique__1"] = { affix = "", "Trigger Level 10 Shock Ground when Hit", statOrder = { 676 }, level = 1, group = "ShockedGroundWhenHitSkill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AddedLightningDamageToSpellsAndAttacksUniqueHelmetInt10"] = { affix = "", "Adds 1 to (60-80) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["AddedLightningDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (3-15) to (80-100) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["RandomCurseOnHitChanceUniqueHelmetInt10"] = { affix = "", "20% chance to Curse non-Cursed Enemies with a random Hex on Hit", statOrder = { 9825 }, level = 1, group = "RandomCurseOnHitChance", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["RandomCurseWhenHitChanceUnique__1"] = { affix = "", "Curse Enemies which Hit you with a random Hex, ignoring Curse Limit", statOrder = { 9826 }, level = 1, group = "RandomCurseWhenHitChance", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CanInflictMultipleIgnitesUniqueRing38"] = { affix = "", "You can inflict an additional Ignite on each Enemy", statOrder = { 9521 }, level = 20, group = "CanInflictMultipleIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["EmberwakeLessBurningDamageUniqueRing38"] = { affix = "", "Ignited Enemies Burn (50-65)% slower", statOrder = { 2565 }, level = 1, group = "EmberwakeLessBurningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["EmberwakeLessBurningDamageUnique__1"] = { affix = "", "40% less Burning Damage", statOrder = { 8012 }, level = 1, group = "EmberwakeLessBurningDamageNew", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["GainPhasingOnVaalSkillUseUnique__1"] = { affix = "", "You gain Phasing for 10 seconds on using a Vaal Skill", statOrder = { 2921 }, level = 1, group = "GainPhasingOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["MovementSpeedWhilePhasedUnique__1"] = { affix = "", "15% increased Movement Speed while Phasing", statOrder = { 2610 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementSpeedWhilePhasedUnique__2"] = { affix = "", "10% increased Movement Speed while Phasing", statOrder = { 2610 }, level = 1, group = "MovementSpeedWhilePhased", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["LifePerRedSocket"] = { affix = "", "+30 to Maximum Life per Red Socket", statOrder = { 2716 }, level = 1, group = "LifePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["EnergyShieldPerBlueSocket"] = { affix = "", "+30 to Maximum Energy Shield per Blue Socket", statOrder = { 2724 }, level = 1, group = "EnergyShieldPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ManaPerGreenSocket"] = { affix = "", "+30 to Maximum Mana per Green Socket", statOrder = { 2720 }, level = 1, group = "ManaPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["LifePerRedSocketUniqueRing39"] = { affix = "", "+100 to Maximum Life per Red Socket", statOrder = { 2716 }, level = 1, group = "LifePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["EnergyShieldPerBlueSocketUniqueRing39"] = { affix = "", "+100 to Maximum Energy Shield per Blue Socket", statOrder = { 2724 }, level = 1, group = "EnergyShieldPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ManaPerGreenSocketUniqueRing39"] = { affix = "", "+100 to Maximum Mana per Green Socket", statOrder = { 2720 }, level = 1, group = "ManaPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ItemRarityPerWhiteSocketUniqueRing39"] = { affix = "", "60% increased Item Rarity per White Socket", statOrder = { 2730 }, level = 1, group = "ItemRarityPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedDamageOnZeroEnergyShieldUniqueShieldStrInt8"] = { affix = "", "(20-30)% increased Damage while you have no Energy Shield", statOrder = { 2734 }, level = 1, group = "IncreasedDamageOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedArmourOnZeroEnergyShieldUnique__1"] = { affix = "", "100% increased Global Armour while you have no Energy Shield", statOrder = { 2735 }, level = 1, group = "IncreasedArmourOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["UnholyMightOnBlockChanceUniqueShieldStrInt8"] = { affix = "", "30% chance to gain Unholy Might on Block for 3 seconds", statOrder = { 3046 }, level = 1, group = "UnholyMightOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["UnholyMightOnBlockChanceUnique__1"] = { affix = "", "Gain Unholy Might on Block for 10 seconds", statOrder = { 3046 }, level = 1, group = "UnholyMightOnBlockChanceDuration", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["IncreasedDamageOnBurningGroundUniqueBootsInt6"] = { affix = "", "50% increased Damage on Burning Ground", statOrder = { 2147 }, level = 1, group = "IncreasedDamageOnBurningGround", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["LifeRegenerationPercentOnChilledGroundUniqueBootsInt6"] = { affix = "", "Regenerate 2% of Life per second on Chilled Ground", statOrder = { 2148 }, level = 1, group = "LifeRegenerationPercentOnChilledGround", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MovementVelocityOnShockedGroundUniqueBootsInt6_"] = { affix = "", "20% increased Movement Speed on Shocked Ground", statOrder = { 2146 }, level = 1, group = "MovementVelocityOnShockedGround", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ChaosDamageLifeLeechPermyriadUniqueShieldStrInt8"] = { affix = "", "0.4% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, + ["ChaosDamageLifeLeechPermyriadUnique__1"] = { affix = "", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, + ["ChaosDamageLifeLeechPermyriadUnique__2"] = { affix = "", "0.5% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, + ["ChaosDamageLifeLeechPermyriadUnique__3"] = { affix = "", "(0.4-0.5)% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "chaos" }, }, + ["PhysicalDamageAddedAsChaosImplicitQuiver11New"] = { affix = "", "Gain (10-15)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 69, group = "PhysicalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageAddedAsChaosUniqueShiledStrInt8"] = { affix = "", "Gain (5-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 1, group = "PhysicalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ItemQuantityPerWhiteSocketUniqueRing39_"] = { affix = "", "15% increased Item Quantity per White Socket", statOrder = { 2728 }, level = 75, group = "ItemQuantityPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ChaosDamageDoesNotBypassESDuringFlaskEffectUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield during effect", statOrder = { 960 }, level = 1, group = "ChaosDamageDoesNotBypassESDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUseUnique__1"] = { affix = "", "Removes all but one Life on use", "Removed life is Regenerated as Energy Shield over 2 seconds", statOrder = { 3144, 3144.1 }, level = 1, group = "RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["TalismanHasOneSocket_"] = { affix = "", "Has 1 Socket", statOrder = { 69 }, level = 1, group = "HasXSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TalismanIncreasedMana"] = { affix = "", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["TalismanIncreasedFireDamage"] = { affix = "", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["TalismanIncreasedColdDamage"] = { affix = "", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["TalismanIncreasedLightningDamage"] = { affix = "", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["TalismanIncreasedPhysicalDamage"] = { affix = "", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["TalismanIncreasedChaosDamage"] = { affix = "", "(19-31)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["TalismanAdditionalZombie"] = { affix = "", "+1 to maximum number of Raised Zombies", statOrder = { 2160 }, level = 1, group = "MaximumMinionCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["TalismanIncreasedCriticalChance"] = { affix = "", "(40-50)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["TalismanIncreasedStrength"] = { affix = "", "(8-14)% increased Strength", statOrder = { 1184 }, level = 1, group = "PercentageStrength", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["TalismanIncreasedDexterity"] = { affix = "", "(8-14)% increased Dexterity", statOrder = { 1185 }, level = 1, group = "PercentageDexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["TalismanIncreasedIntelligence"] = { affix = "", "(8-14)% increased Intelligence", statOrder = { 1186 }, level = 1, group = "PercentageIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["TalismanIncreasedEnergyShield"] = { affix = "", "(15-25)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["TalismanIncreasedLife"] = { affix = "", "(8-12)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "MaximumLifeIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["TalismanIncreasedItemQuantity"] = { affix = "", "(6-10)% increased Quantity of Items found", statOrder = { 1592 }, level = 1, group = "ItemQuantityIncrease", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["TalismanIncreasedAllAttributes"] = { affix = "", "(12-16)% increased Attributes", statOrder = { 1183 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["TalismanGlobalDamageOverTimeMultiplier"] = { affix = "", "+(12-18)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, }, + ["AllAttributesPercentUnique__1"] = { affix = "", "(5-7)% increased Attributes", statOrder = { 1183 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AllAttributesPercentUnique__2"] = { affix = "", "(5-15)% increased Attributes", statOrder = { 1183 }, level = 1, group = "PercentageAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["TalismanIncreasedDamage"] = { affix = "", "(25-35)% increased Damage", statOrder = { 1191 }, level = 1, group = "AllDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["TalismanIncreasedCriticalStrikeMultiplier_"] = { affix = "", "+(24-36)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["TalismanDamageDealtAddedAsRandomElement"] = { affix = "", "Gain (6-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 1, group = "PhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental" }, }, + ["TalismanIncreasedAreaOfEffect"] = { affix = "", "(5-8)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TalismanFireTakenAsCold"] = { affix = "", "50% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3176 }, level = 1, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, }, + ["FireDamageTakenAsColdUnique___1"] = { affix = "", "20% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3176 }, level = 1, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, }, + ["FireDamageTakenAsColdUnique___2_"] = { affix = "", "30% of Fire Damage from Hits taken as Cold Damage", statOrder = { 3176 }, level = 62, group = "FireDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, }, + ["TalismanFireTakenAsLightning"] = { affix = "", "50% of Fire Damage from Hits taken as Lightning Damage", statOrder = { 3177 }, level = 1, group = "FireDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, }, + ["TalismanColdTakenAsFire"] = { affix = "", "50% of Cold Damage from Hits taken as Fire Damage", statOrder = { 3178 }, level = 1, group = "ColdDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, }, + ["TalismanColdTakenAsLightning"] = { affix = "", "50% of Cold Damage from Hits taken as Lightning Damage", statOrder = { 3179 }, level = 1, group = "ColdDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, }, + ["TalismanLightningTakenAsCold"] = { affix = "", "50% of Lightning Damage from Hits taken as Cold Damage", statOrder = { 3182 }, level = 1, group = "LightningDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, }, + ["TalismanLightningTakenAsFire"] = { affix = "", "50% of Lightning Damage from Hits taken as Fire Damage", statOrder = { 3180 }, level = 1, group = "LightningDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, }, + ["TalismanReducedPhysicalDamageTaken_"] = { affix = "", "(4-6)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["TalismanIncreasedSkillEffectDuration"] = { affix = "", "(20-25)% increased Skill Effect Duration", statOrder = { 1895 }, level = 1, group = "SkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TalismanPercentLifeRegeneration"] = { affix = "", "Regenerate 2% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["TalismanChanceToFreezeShockIgnite_"] = { affix = "", "(4-6)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "ChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["TalismanFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["TalismanPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["TalismanEnduranceChargeOnKill_"] = { affix = "", "10% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["TalismanGlobalDefensesPercent"] = { affix = "", "(15-25)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["TalismanFishBiteSensitivity"] = { affix = "", "(30-40)% increased Fish Bite Sensitivity", statOrder = { 3583 }, level = 1, group = "FishingBiteSensitivity", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, }, + ["FishBiteSensitivityUnique__1"] = { affix = "", "(20-40)% increased Fish Bite Sensitivity", statOrder = { 3583 }, level = 48, group = "FishingBiteSensitivity", weightKey = { }, weightVal = { }, modTags = { "green_herring" }, }, + ["TalismanAttackAndCastSpeed"] = { affix = "", "(6-10)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["TalismanSpellDamage"] = { affix = "", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["TalismanAttackDamage"] = { affix = "", "(20-30)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "AttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["TalismanPierceChance"] = { affix = "", "Projectiles Pierce (25-35) additional Targets", statOrder = { 10354 }, level = 1, group = "OldTalismanPierce", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TalismanAdditionalPierce"] = { affix = "", "Projectiles Pierce 2 additional Targets", statOrder = { 1790 }, level = 1, group = "AdditionalPierce", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageTakeFromManaBeforeLifePerPowerChargeUnique__1"] = { affix = "", "1% of Damage is taken from Mana before Life per Power Charge", statOrder = { 3165 }, level = 40, group = "DamageTakeFromManaBeforeLifePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["IncreasedManaRegenerationPerPowerChargeUnique__1"] = { affix = "", "10% increased Mana Regeneration Rate per Power Charge", statOrder = { 1979 }, level = 1, group = "IncreasedManaRegenerationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["CriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "40% reduced Critical Strike Chance per Power Charge", statOrder = { 3166 }, level = 1, group = "CriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["IncreasedFireballRadiusUniqueJewel57"] = { affix = "", "Fire Damage is increased by 1% per 5 Intelligence from Allocated Passives in Radius", statOrder = { 3147 }, level = 1, group = "IncreasedFireballRadiusAtLongRangeJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AdditionalGlacialCascadeSequenceUniqueJewel58"] = { affix = "", "Cold Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius", "Physical Damage is increased by 1% per 8 Intelligence from Allocated Passives in Radius", "Glacial Cascade gains an additional Burst with 60 Intelligence from Passives in Radius", statOrder = { 3148, 3149, 3155 }, level = 1, group = "AdditionalGlacialCascadeSequenceJewel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["AnimateBowsAndWandsUnique____70"] = { affix = "", "With at least 40 Dexterity in Radius, Animate Weapon can Animate up to 20 Ranged Weapons", statOrder = { 3254 }, level = 1, group = "AnimateBowsAndWandsJewel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ExtraArrowForSplitArrowUniqueJewel60"] = { affix = "", "1% increased Projectile Damage per 5 Dexterity from Allocated Passives in Radius", "Split Arrow fires an additional arrow with 50 Dexterity from Passives in Radius", statOrder = { 3154, 3157 }, level = 1, group = "ExtraArrowForSplitArrowJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["FlaskChargeRecoveryDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Flask Charges gained during any Flask Effect", statOrder = { 3183 }, level = 1, group = "FlaskChargeRecoveryDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargeRecoveryDuringFlaskEffectUnique__2"] = { affix = "", "30% reduced Flask Charges gained during any Flask Effect", statOrder = { 3183 }, level = 1, group = "FlaskChargeRecoveryDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["ManaRegenerationDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Mana Regeneration Rate during any Flask Effect", statOrder = { 3184 }, level = 14, group = "ManaRegenerationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["EnemiesLoseLifePlayerLeechesUnique__1"] = { affix = "", "200% of Life Leech applies to Enemies as Chaos Damage", statOrder = { 3185 }, level = 55, group = "EnemiesLoseLifePlayerLeeches", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "resource", "life", "damage", "chaos" }, }, + ["MovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "15% increased Movement Speed during any Flask Effect", statOrder = { 3186 }, level = 1, group = "MovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "speed" }, }, + ["NoExtraBleedDamageWhileMovingUniqueAmulet25"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 69, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["NoExtraBleedDamageWhileMovingUnique__1"] = { affix = "", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 1, group = "NoExtraBleedDamageWhileMoving", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AttacksHaveBloodMagic__1"] = { affix = "", "Attacks Cost Life instead of Mana", statOrder = { 10831 }, level = 1, group = "AttacksHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SocketedTrapSkillsCreateSmokeCloudWhenDetonated__1"] = { affix = "", "Traps from Socketed Skills create a Smoke Cloud when triggered", statOrder = { 613 }, level = 1, group = "SocketedTrapSkillsCreateSmokeCloudWhenDetonated", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FireDamageToBlindEnemies__1"] = { affix = "", "(30-50)% increased Fire Damage with Hits and Ailments against Blinded Enemies", statOrder = { 3220 }, level = 1, group = "FireDamageToBlindEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["SpellDamageTakenFromBlindEnemies__1"] = { affix = "", "30% reduced Spell Damage taken from Blinded Enemies", statOrder = { 3221 }, level = 1, group = "SpellDamageTakenFromBlindEnemies", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["GlacialHammerThresholdJewel__1"] = { affix = "", "With at least 40 Strength in Radius, 20% increased", "Rarity of Items dropped by Enemies Shattered by Glacial Hammer", statOrder = { 3225, 3225.1 }, level = 1, group = "GlacialHammerThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "drop" }, }, + ["SpectralThrowThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits", statOrder = { 3226 }, level = 1, group = "SpectralThrowThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["ViperStrikeThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, Viper Strike deals 2% increased Damage with Hits and Poison for each Poison on the Enemy", statOrder = { 3228 }, level = 1, group = "ViperStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["ViperStrikeThresholdJewel__2"] = { affix = "", "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", statOrder = { 8125 }, level = 1, group = "ViperStrikeThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["HeavyStrikeThresholdJewel___1"] = { affix = "", "With at least 40 Strength in Radius, Heavy Strike has a ", "20% chance to deal Double Damage", statOrder = { 3229, 3229.1 }, level = 1, group = "HeavyStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["ShrapnelShotThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Galvanic Arrow has 25% increased Area of Effect", "With at least 40 Dexterity in Radius, Galvanic Arrow deals 50% increased Area Damage", statOrder = { 3351, 8115 }, level = 1, group = "ShrapnelShotThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["BurningArrowThresholdJewel_2"] = { affix = "", "Ignited Enemies Killed by your Hits are destroyed", statOrder = { 2593 }, level = 1, group = "BurningArrowThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack", "ailment" }, }, + ["CleaveThresholdJewel_1"] = { affix = "", "With at least 40 Strength in Radius, Hits with Cleave Fortify", "With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby", "Enemy, up to a maximum of +1 metre", statOrder = { 3345, 3346, 3346.1 }, level = 1, group = "CleaveThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["FreezingPulseThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Freezing Pulse fires 2 additional Projectiles", "With at least 40 Intelligence in Radius, 25% increased Freezing Pulse Damage if", "you've Shattered an Enemy Recently", statOrder = { 3354, 3355, 3355.1 }, level = 1, group = "FreezingPulseThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["IceShotThresholdJewel__1"] = { affix = "", "With at least 40 Dexterity in Radius, Ice Shot Pierces 50 additional Targets", "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect", statOrder = { 8082, 8083 }, level = 1, group = "IceShotThresholdJewelOld", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IceShotThresholdJewel__2"] = { affix = "", "With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect", "With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets", statOrder = { 8083, 8084 }, level = 1, group = "IceShotThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["MoltenStrikeThresholdJewel_1"] = { affix = "", "With at least 40 Strength in Radius, Molten Strike fires 2 additional Projectiles", "With at least 40 Strength in Radius, Molten Strike has 25% increased Area of Effect", statOrder = { 8096, 8097 }, level = 1, group = "MoltenStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["MoltenStrikeThresholdJewel__2"] = { affix = "", "With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground", "With at least 40 Strength in Radius, Molten Strike Projectiles Chain +1 time", "With at least 40 Strength in Radius, Molten Strike fires 50% less Projectiles", statOrder = { 7974, 7975, 7976 }, level = 1, group = "MoltenStrikeThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["FrostBladesThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Melee Damage", "dealt by Frost Blades Penetrates 15% Cold Resistance", "With at least 40 Dexterity in Radius, Frost Blades has 25% increased Projectile Speed", statOrder = { 8075, 8075.1, 8076 }, level = 1, group = "FrostBladesThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack", "speed" }, }, + ["DualStrikeThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has a 20% chance", "to deal Double Damage with the Main-Hand Weapon", "With at least 40 Dexterity in Radius, Dual Strike deals Off Hand Splash Damage", "to surrounding targets", statOrder = { 8059, 8059.1, 8061, 8061.1 }, level = 1, group = "DualStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["DualStrikeThresholdJewelAxe"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for", "4 seconds while wielding an Axe", statOrder = { 8058, 8058.1 }, level = 1, group = "DualStrikeThresholdJewelAxe", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["DualStrikeThresholdJewelClaw"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has (10-15)% increased Attack", "Speed while wielding a Claw", statOrder = { 8056, 8056.1 }, level = 1, group = "DualStrikeThresholdJewelClaw", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["DualStrikeThresholdJewelDagger"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has +(20-30)% to Critical Strike", "Multiplier while wielding a Dagger", statOrder = { 8057, 8057.1 }, level = 1, group = "DualStrikeThresholdJewelDagger", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["DualStrikeThresholdJewelMace"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage", "to surrounding targets while wielding a Mace", statOrder = { 8060, 8060.1 }, level = 1, group = "DualStrikeThresholdJewelMace", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["DualStrikeThresholdJewelSword_"] = { affix = "", "With at least 40 Dexterity in Radius, Dual Strike has (20-30)% increased", "Accuracy Rating while wielding a Sword", statOrder = { 8055, 8055.1 }, level = 1, group = "DualStrikeThresholdJewelSword", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["DualStrikeThresholdJewel__2_"] = { affix = "", "(10-15)% increased Attack Damage", statOrder = { 1198 }, level = 1, group = "DualStrikeThresholdJewelDamageRadius", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["FrostboltThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Frostbolt fires 2 additional Projectiles", "With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second", statOrder = { 8077, 8078 }, level = 1, group = "FrostboltThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["EtherealKnivesThresholdJewel_1"] = { affix = "", "With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle", statOrder = { 3348 }, level = 1, group = "EtherealKnivesThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["LightningTendrilsThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, each Lightning Tendrils Repeat has 4% increased Area of Effect per Enemy Hit", statOrder = { 8091 }, level = 1, group = "LightningTendrilsThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["MagmaOrbThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile", "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain", statOrder = { 8092, 8093, 8093.1 }, level = 1, group = "MagmaOrbThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["MagmaOrbThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Rolling Magma deals 50% less Damage", "With at least 40 Intelligence in Radius, Rolling Magma deals 40% more Damage per Chain", "With at least 40 Intelligence in Radius, Rolling Magma", "has 10% increased Area of Effect per Chain", statOrder = { 7972, 7973, 8093, 8093.1 }, level = 1, group = "MagmaOrbThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["GlacialHammerThresholdJewel_2"] = { affix = "", "With at least 40 Strength in Radius, Glacial Hammer deals", "Cold-only Splash Damage to surrounding targets", "With at least 40 Strength in Radius, 25% of Glacial", "Hammer Physical Damage Converted to Cold Damage", statOrder = { 3349, 3349.1, 3350, 3350.1 }, level = 1, group = "GlacialHammerThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "attack" }, }, + ["BlightThresholdJewel_1"] = { affix = "", "With at least 40 Intelligence in Radius, Blight has 25% increased Area of Effect after 1 second of Channelling", statOrder = { 8041 }, level = 1, group = "BlightThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["BlightThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration", statOrder = { 8037, 8039 }, level = 1, group = "BlightThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["BlightThresholdJewel_3"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration", statOrder = { 8036, 8039 }, level = 1, group = "BlightThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BlightThresholdJewel_4"] = { affix = "", "With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds", "With at least 40 Intelligence in Radius, Blight has 30% reduced Cast Speed", statOrder = { 8036, 8038 }, level = 1, group = "BlightThresholdJewel4", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RaiseZombieThresholdJewel1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised", "Zombies' Slam Attack has 100% increased Cooldown Recovery Rate", "With at least 40 Intelligence in Radius, Raised Zombies' Slam", "Attack deals 30% increased Damage", statOrder = { 8126, 8126.1, 8127, 8127.1 }, level = 1, group = "RaiseZombieThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["SparkThresholdJewel1"] = { affix = "", "With at least 40 Intelligence in Radius, 2 additional Spark Projectiles", statOrder = { 3353 }, level = 1, group = "SparkThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["SparkThresholdJewel_2"] = { affix = "", "With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle", statOrder = { 8118 }, level = 1, group = "SparkThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["FireTrapThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Fire Trap throws up to 1 additional Trap", statOrder = { 8074 }, level = 1, group = "FireTrapThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["SplitArrowThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Split Arrow fires Projectiles in Parallel", statOrder = { 8123 }, level = 1, group = "SplitArrowThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["GlacialCascadeThresholdJewel1"] = { affix = "", "With 40 Intelligence in Radius, Glacial Cascade has an additional Burst", "With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage", "Converted to Cold Damage", statOrder = { 8079, 8080, 8080.1 }, level = 1, group = "GlacialCascadeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["CausticArrowThresholdJewel1"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow deals 30% reduced Damage with Hits", statOrder = { 8044 }, level = 1, group = "CausticArrowThresholdJewel1", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["CausticArrowThresholdJewel2"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow deals 40% increased Damage over Time", statOrder = { 8043 }, level = 1, group = "CausticArrowThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["CausticArrowThresholdJewel3"] = { affix = "", "With at least 40 Dexterity in Radius, Caustic Arrow has a 50% chance on Hit to Poison Enemies on Caustic Ground", statOrder = { 8042 }, level = 1, group = "CausticArrowThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["SpectralShieldThrowThresholdJewel1_"] = { affix = "", "+0.2% to Off Hand Critical Strike Chance per 10 Maximum Energy Shield on Shield", statOrder = { 9548 }, level = 1, group = "ShieldCritChancePerEsOnShieldJewel1", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SpectralShieldThrowThresholdJewel2"] = { affix = "", "+4% to Off Hand Critical Strike Multiplier per 10 Maximum Energy Shield on Shield", statOrder = { 9549 }, level = 1, group = "ShieldCritMultiplierPerEsOnShieldJewel1", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["IncreasedStunThresholdUnique__1_"] = { affix = "", "20% increased Stun Threshold", statOrder = { 3272 }, level = 1, group = "IncreasedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunThresholdBasedOnManaUnique__1"] = { affix = "", "Stun Threshold is based on 500% of your Mana instead of Life", statOrder = { 3271 }, level = 1, group = "StunThresholdBasedOnMana", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PowerChargeOnCriticalStrikeChanceUnique__1"] = { affix = "", "25% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, }, + ["NoLifeRegenerationUnique___1"] = { affix = "", "You have no Life Regeneration", statOrder = { 2271 }, level = 1, group = "NoLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["NeverBlockUnique__1"] = { affix = "", "Cannot Block", statOrder = { 3265 }, level = 1, group = "NeverBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["LocalShieldHasNoBlockChanceUnique__1"] = { affix = "", "No Chance to Block", statOrder = { 3266 }, level = 1, group = "LocalShieldHasNoBlockChance", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["LocalFlaskOnslaughtPerFrenzyChargeUnique__1"] = { affix = "", "Gain Onslaught for 3 seconds per Frenzy Charge consumed on use", statOrder = { 889 }, level = 1, group = "LocalFlaskOnslaughtPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["GrantUniqueBuff__1"] = { affix = "", "Gain Her Blessing for 3 seconds when you Ignite an Enemy", statOrder = { 3278 }, level = 66, group = "HerBlessingOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["UniqueConditionOnBuff__1"] = { affix = "", "100% chance to Avoid being Ignited, Chilled or Frozen with Her Blessing", statOrder = { 3280 }, level = 66, group = "AvoidAilmentsDuringHerBlessing", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "ailment" }, }, + ["UniqueConditionOnBuff__2"] = { affix = "", "20% increased Attack and Movement Speed with Her Blessing", statOrder = { 3281 }, level = 66, group = "AttackAndMoveSpeedDuringHerBlessing", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["UniqueEffectOnBuff__3"] = { affix = "", "33% chance to Blind nearby Enemies when gaining Her Blessing", statOrder = { 3279 }, level = 66, group = "BlindOnGainingHerBlessing", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RallyingCryThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, 10% of Damage taken Recouped as Mana if you've Warcried Recently", statOrder = { 3261 }, level = 1, group = "RallyingCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["VigilantStrikeThresholdJewel__1"] = { affix = "", "With at least 40 Strength in Radius, Hits with Vigilant Strike Fortify you and Nearby Allies for 8 seconds", statOrder = { 3248 }, level = 1, group = "VigilantStrikeThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ColdsnapThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area", "With at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges", statOrder = { 8050, 8050.1 }, level = 1, group = "ColdSnapThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["FireballThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect", statOrder = { 3250 }, level = 1, group = "FireballThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["FireballThresholdJewel__2_"] = { affix = "", "With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +0.4 metres to radius", statOrder = { 3251 }, level = 1, group = "FireballThresholdJewel2", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["FireballThresholdJewel__3"] = { affix = "", "With at least 40 Intelligence in Radius, Fireball cannot ignite", "With at least 40 Intelligence in Radius, Fireball has +(30-50)% chance to inflict scorch", statOrder = { 7969, 7970 }, level = 1, group = "FireballThresholdJewel3", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["ShockNearbyEnemiesDuringFlaskEffect___1"] = { affix = "", "Shocks nearby Enemies during Effect, causing 10% increased Damage taken", statOrder = { 1054 }, level = 85, group = "ShockNearbyEnemiesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, + ["ShockSelfDuringFlaskEffect__1"] = { affix = "", "You are Shocked during Effect, causing 50% increased Damage taken", statOrder = { 1055 }, level = 1, group = "ShockSelfDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, + ["LightningLifeLeechDuringFlaskEffect__1"] = { affix = "", "20% of Lightning Damage Leeched as Life during Effect", statOrder = { 1062 }, level = 1, group = "LightningLifeLeechDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "elemental", "lightning" }, }, + ["LightningManaLeechDuringFlaskEffect__1"] = { affix = "", "20% of Lightning Damage Leeched as Mana during Effect", statOrder = { 1063 }, level = 1, group = "LightningManaLeechDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana", "elemental", "lightning" }, }, + ["LeechInstantDuringFlaskEffect__1"] = { affix = "", "Life and Mana Leech are instant during effect", statOrder = { 1064 }, level = 1, group = "LeechInstantDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["AddedLightningDamageDuringFlaskEffect__1"] = { affix = "", "Adds (10-15) to (55-65) Lightning Damage to Attacks during Effect", statOrder = { 1060 }, level = 1, group = "AddedLightningDamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedSpellLightningDamageDuringFlaskEffect__1"] = { affix = "", "Adds (10-15) to (55-65) Lightning Damage to Spells during Effect", statOrder = { 1061 }, level = 1, group = "AddedSpellLightningDamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["PhysicalToLightningDuringFlaskEffect__1"] = { affix = "", "50% of Physical Damage Converted to Lightning during Effect", statOrder = { 1056 }, level = 1, group = "PhysicalToLightningDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["LightningPenetrationDuringFlaskEffect__1"] = { affix = "", "Damage Penetrates 6% Lightning Resistance during Effect", statOrder = { 1057 }, level = 1, group = "LightningPenetrationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental", "lightning" }, }, + ["MinionAttackAndCastSpeedPerSkeleton__1"] = { affix = "", "2% increased Minion Attack and Cast Speed per Skeleton you own", statOrder = { 3273 }, level = 1, group = "MinionAttackAndCastSpeedPerSkeleton", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionDurationPerZombie__1"] = { affix = "", "2% increased Minion Duration per Raised Zombie", statOrder = { 3274 }, level = 1, group = "MinionDurationPerZombie", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionDamagePerSpectre__1"] = { affix = "", "(8-12)% increased Minion Damage per Raised Spectre", statOrder = { 3275 }, level = 1, group = "MinionDamagePerSpectre", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionLifeRegenerationPerRagingSpirit__1"] = { affix = "", "Minions Regenerate (1.5-2.5)% of Life per second", statOrder = { 2911 }, level = 1, group = "MinionLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["ExplodeOnKillChaosUnique__1"] = { affix = "", "Enemies you Kill have a 20% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3305 }, level = 1, group = "ObliterationExplodeOnKillChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ReduceManaCostPerEnduranceChargeUnique__1"] = { affix = "", "4% reduced Mana Cost per Endurance Charge", statOrder = { 3267 }, level = 1, group = "ReduceManaCostPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["RampageWhileAtMaxEnduranceChargesUnique__1"] = { affix = "", "Gain Rampage while at Maximum Endurance Charges", statOrder = { 3268 }, level = 1, group = "RampageWhileAtMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LoseEnduranceChargesOnRampageEndUnique___1"] = { affix = "", "Lose all Endurance Charges when Rampage ends", statOrder = { 3269 }, level = 1, group = "LoseEnduranceChargesOnRampageEnd", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["IncreasedDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "40% increased Damage with Hits against Frozen Enemies", statOrder = { 1236 }, level = 1, group = "IncreasedDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["PhysicalDamageWhileFrozenUnique___1"] = { affix = "", "100% increased Global Physical Damage while Frozen", statOrder = { 3344 }, level = 1, group = "PhysicalDamageWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AttacksThatStunCauseBleedingUnique__1"] = { affix = "", "Causes Bleeding when you Stun", statOrder = { 2484 }, level = 1, group = "AttacksThatStunCauseBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["GrantEnemiesUnholyMightOnKillUnique__1"] = { affix = "", "5% chance to grant Chaotic Might to nearby Enemies on Kill", statOrder = { 3383 }, level = 1, group = "GrantEnemiesUnholyMightOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GrantEnemiesOnslaughtOnKillUnique__1"] = { affix = "", "5% chance to grant Onslaught to nearby Enemies on Kill", statOrder = { 3382 }, level = 1, group = "GrantEnemiesOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnholyMightOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Chaotic Might for 10 seconds on Kill", statOrder = { 5701 }, level = 20, group = "UnholyMightOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OnslaugtOnKillPercentChanceUnique__1"] = { affix = "", "10% chance to gain Onslaught for 10 seconds on Kill", statOrder = { 5695 }, level = 1, group = "OnslaugtOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumLifeOnKillPercentUnique__1"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeOnKillPercentUnique__2"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeOnKillPercentUnique__3__"] = { affix = "", "Recover (3-5)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeOnKillPercentUnique__4_"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeOnKillPercentUnique__5"] = { affix = "", "Recover (3-5)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeOnKillPercentUnique__6"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumManaOnKillPercentUnique__1"] = { affix = "", "Recover (1-3)% of Mana on Kill", statOrder = { 1751 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MaximumEnergyShieldOnKillPercentUnique__1"] = { affix = "", "Recover (3-5)% of Energy Shield on Kill", statOrder = { 1750 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["MaximumEnergyShieldOnKillPercentUnique__2"] = { affix = "", "Recover 1% of Energy Shield on Kill", statOrder = { 1750 }, level = 1, group = "MaximumEnergyShieldOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["BurningArrowThresholdJewelUnique__1"] = { affix = "", "+10% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "BurningArrowGroundTarAndFire", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["DisplayManifestWeaponUnique__1"] = { affix = "", "Triggers Level 15 Manifest Dancing Dervishes on Rampage", "Manifested Dancing Dervishes disables both weapon slots", "Manifested Dancing Dervishes die when Rampage ends", statOrder = { 3340, 3341, 3342 }, level = 1, group = "DisplayManifestWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["BarrageThresholdUnique__1"] = { affix = "", "With at least 40 Dexterity in Radius, Barrage fires an additional 6 projectiles simultaneously on the first and final attacks", statOrder = { 3263 }, level = 1, group = "BarrageThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["GroundSlamThresholdUnique__1"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam", "has a 50% increased angle", statOrder = { 3257, 3257.1 }, level = 1, group = "GroundSlamThreshold", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["GroundSlamThresholdUnique__2"] = { affix = "", "With at least 40 Strength in Radius, Ground Slam has a 35% chance", "to grant an Endurance Charge when you Stun an Enemy", statOrder = { 3256, 3256.1 }, level = 1, group = "GroundSlamThreshold2", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["SummonSkeletonsThresholdUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages", statOrder = { 3246 }, level = 1, group = "SummonSkeletonsThreshold", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["AdditionalSnipeTotemsPerDexterityUnique__1"] = { affix = "", "Siege Ballista has +1 to maximum number of Summoned Totems per 200 Dexterity", statOrder = { 3394 }, level = 1, group = "AdditionalSnipeTotemsPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AdditionalShrapnelBallistaePerStrengthUnique__1"] = { affix = "", "Shrapnel Ballista has +1 to maximum number of Summoned Totems per 200 Strength", statOrder = { 3393 }, level = 1, group = "AdditionalShrapnelBallistaePerStrength", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AddedDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity", statOrder = { 3395 }, level = 1, group = "AddedDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedDamagePerStrengthUnique__1"] = { affix = "", "Adds 1 to 3 Physical Damage to Attacks per 25 Strength", statOrder = { 4875 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["DisplayBlindAuraUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 1, group = "DisplayBlindAura", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DisplayNearbyEnemiesAreSlowedUnique__1"] = { affix = "", "Nearby Enemies are Hindered, with 25% reduced Movement Speed", statOrder = { 3403 }, level = 1, group = "DisplayNearbyEnemiesAreSlowed", weightKey = { }, weightVal = { }, modTags = { "speed", "aura" }, }, + ["DisplaySupportedByHypothermiaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Hypothermia", statOrder = { 511 }, level = 1, group = "DisplaySupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 512 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByIceBiteUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Ice Bite", statOrder = { 512 }, level = 1, group = "DisplaySupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByColdPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Cold Penetration", statOrder = { 513 }, level = 1, group = "DisplaySupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByManaLeechUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Mana Leech", statOrder = { 514 }, level = 1, group = "DisplaySupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByAddedColdDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Added Cold Damage", statOrder = { 518 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByAddedColdDamageUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 29 Added Cold Damage", statOrder = { 518 }, level = 1, group = "DisplaySupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByReducedManaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 519 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByReducedManaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Inspiration", statOrder = { 519 }, level = 1, group = "DisplaySupportedByReducedMana", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByBonechillUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Bonechill", statOrder = { 235 }, level = 1, group = "DisplaySupportedByBonechill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["FlaskConsumesFrenzyChargesUnique__1"] = { affix = "", "Consumes Frenzy Charges on use", statOrder = { 883 }, level = 1, group = "FlaskConsumesFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "frenzy_charge" }, }, + ["CriticalChanceAgainstBlindedEnemiesUnique__1"] = { affix = "", "(120-140)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3406 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalChanceAgainstBlindedEnemiesUnique__2__"] = { affix = "", "(30-50)% increased Critical Strike Chance against Blinded Enemies", statOrder = { 3406 }, level = 1, group = "CriticalChanceAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["AddedFireDamageFromLightRadiusUnique__1"] = { affix = "", "Adds 2 to 5 Fire Damage to Attacks for every 1% your Light Radius is above base value", statOrder = { 9238 }, level = 1, group = "AddedFireDamageFromLightRadius", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["DamageAgainstNearEnemiesUnique__1"] = { affix = "", "100% increased Damage with Hits and Ailments against Hindered Enemies", statOrder = { 4107 }, level = 1, group = "DamageAgainstNearEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["BeltSoulEaterDuringFlaskEffect__1"] = { affix = "", "Gain Soul Eater during any Flask Effect", statOrder = { 3427 }, level = 57, group = "BeltSoulEaterDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["BeltSoulsRemovedOnFlaskUse__1"] = { affix = "", "Lose all Eaten Souls when you use a Flask", statOrder = { 3428 }, level = 1, group = "BeltSoulsRemovedOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FireDamageToNearbyEnemiesOnKillUnique"] = { affix = "", "Trigger Level 1 Fire Burst on Kill", statOrder = { 763 }, level = 1, group = "FireDamageToNearbyEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SocketedAurasReserveNoManaUnique__1"] = { affix = "", "Socketed Gems have no Reservation", "Your Blessing Skills are Disabled", statOrder = { 529, 529.1 }, level = 48, group = "SocketedAurasReserveNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["ItemGrantsIllusoryWarpUnique__1"] = { affix = "", "Grants Level 20 Illusory Warp Skill", statOrder = { 624 }, level = 1, group = "ItemGrantsIllusoryWarp", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["LocalDoubleImplicitMods"] = { affix = "", "Implicit Modifier magnitudes are doubled", statOrder = { 7945 }, level = 65, group = "LocalModifiesImplicitMods", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalTripleImplicitModsUnique__1__"] = { affix = "", "Implicit Modifier magnitudes are tripled", statOrder = { 7946 }, level = 1, group = "LocalTripleImplicitMagnitudes", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnarmedDamageVsBleedingEnemiesUnique__1"] = { affix = "", "100% increased Damage with Unarmed Attacks against Bleeding Enemies", statOrder = { 3568 }, level = 1, group = "UnarmedDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ClawDamageModsAlsoAffectUnarmedUnique__1"] = { affix = "", "Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills", statOrder = { 3572 }, level = 1, group = "ClawDamageModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["BaseUnarmedCriticalStrikeChanceUnique__1"] = { affix = "", "+7% to Unarmed Melee Attack Critical Strike Chance", statOrder = { 3571 }, level = 1, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["LifeGainVsBleedingEnemiesUnique__1"] = { affix = "", "Gain 30 Life per Bleeding Enemy Hit", statOrder = { 3570 }, level = 1, group = "LifeGainVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SummonWolfOnKillUnique__1"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 62, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["SummonWolfOnKillUnique__1New"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 25, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["SummonWolfOnKillUnique__2_"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["SummonWolfOnCritUnique__1"] = { affix = "", "20% chance to Trigger Level 25 Summon Spectral Wolf on Critical Strike with this Weapon", statOrder = { 745 }, level = 1, group = "SummonWolfOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, }, + ["SwordPhysicalAttackSpeedUnique__1"] = { affix = "", "35% increased Attack Speed with Swords", statOrder = { 1426 }, level = 80, group = "SwordAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["AxePhysicalDamageUnique__1"] = { affix = "", "80% increased Physical Damage with Axes", statOrder = { 1303 }, level = 80, group = "AxePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["DualWieldingPhysicalDamageUnique__1"] = { affix = "", "40% increased Physical Attack Damage while Dual Wielding", statOrder = { 1279 }, level = 1, group = "DualWieldingPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["ProjectilesForkUnique____1"] = { affix = "", "Arrows Fork", statOrder = { 3581 }, level = 70, group = "ArrowsFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ClawAttackSpeedModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills", statOrder = { 3573 }, level = 1, group = "ClawAttackSpeedModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["ClawCritModsAlsoAffectUnarmed__1"] = { affix = "", "Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills", statOrder = { 3574 }, level = 35, group = "ClawCritModsAlsoAffectUnarmed", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["EnergyShieldDelayDuringFlaskEffect__1"] = { affix = "", "50% slower start of Energy Shield Recharge during any Flask Effect", statOrder = { 3577 }, level = 35, group = "EnergyShieldDelayDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, }, + ["ESRechargeRateDuringFlaskEffect__1"] = { affix = "", "(150-200)% increased Energy Shield Recharge Rate during any Flask Effect", statOrder = { 3579 }, level = 1, group = "ESRechargeRateDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, }, + ["IncreasedColdDamagePerBlockChanceUnique__1"] = { affix = "", "1% increased Cold Damage per 1% Chance to Block Attack Damage", statOrder = { 3584 }, level = 74, group = "IncreasedColdDamagePerBlockChance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["IncreasedManaPerSpellBlockChanceUnique__1"] = { affix = "", "1% increased Maximum Mana per 2% Chance to Block Spell Damage", statOrder = { 3585 }, level = 1, group = "IncreasedManaPerSpellBlockChance", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedArmourWhileChilledOrFrozenUnique__1"] = { affix = "", "300% increased Armour while Chilled or Frozen", statOrder = { 3586 }, level = 1, group = "IncreasedArmourWhileChilledOrFrozen", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["AddedColdDamageToSpellsAndAttacksUnique__1"] = { affix = "", "Adds (15-25) to (40-50) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageToSpellsAndAttacksUnique__2"] = { affix = "", "Adds (5-7) to (13-15) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageToSpellsAndAttacks", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["UtilityFlaskSmokeCloud"] = { affix = "", "Creates a Smoke Cloud on Use", statOrder = { 896 }, level = 1, group = "UtilityFlaskSmokeCloud", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["UtilityFlaskConsecrate"] = { affix = "", "Creates Consecrated Ground on Use", statOrder = { 878 }, level = 1, group = "UtilityFlaskConsecrate", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["UtilityFlaskChilledGround"] = { affix = "", "Creates Chilled Ground on Use", statOrder = { 879 }, level = 1, group = "UtilityFlaskChilledGround", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["UtilityFlaskTaunt_"] = { affix = "", "Taunts nearby Enemies on use", statOrder = { 893 }, level = 1, group = "UtilityFlaskTaunt", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["UtilityFlaskWard"] = { affix = "", "Restores Ward on use", statOrder = { 917 }, level = 1, group = "UtilityFlaskWard", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SummonsWormsOnUse"] = { affix = "", "2 Enemy Writhing Worms escape the Flask when used", "Writhing Worms are destroyed when Hit", statOrder = { 918, 918.1 }, level = 1, group = "SummonsWormsOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["PowerChargeOnHitUnique__1"] = { affix = "", "20% chance to gain a Power Charge on Hit", statOrder = { 1834 }, level = 1, group = "PowerChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["LosePowerChargesOnMaxPowerChargesUnique__1"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3603 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["LosePowerChargesOnMaxPowerChargesUnique__2"] = { affix = "", "Lose all Power Charges on reaching Maximum Power Charges", statOrder = { 3603 }, level = 1, group = "LosePowerChargesOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_"] = { affix = "", "You lose all Endurance Charges on reaching maximum Endurance Charges", statOrder = { 2752 }, level = 1, group = "LoseEnduranceChargesOnMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ShockOnMaxPowerChargesUnique__1"] = { affix = "", "Shocks you when you reach Maximum Power Charges", statOrder = { 3604 }, level = 1, group = "ShockOnMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["MoltenBurstOnMeleeHitUnique__1"] = { affix = "", "20% chance to Trigger Level 16 Molten Burst on Melee Hit", statOrder = { 781 }, level = 1, group = "MoltenBurstOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, }, + ["PenetrateEnemyFireResistUnique__1"] = { affix = "", "Damage Penetrates 20% Fire Resistance", statOrder = { 2981 }, level = 1, group = "PenetrateEnemyFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["LocalFlaskPetrifiedUnique__1"] = { affix = "", "Petrified during Effect", statOrder = { 988 }, level = 1, group = "LocalFlaskPetrified", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["LocalFlaskPhysicalDamageReductionUnique__1"] = { affix = "", "(40-50)% additional Physical Damage Reduction during Effect", statOrder = { 969 }, level = 1, group = "LocalFlaskPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "flask", "physical" }, }, + ["LightningDegenAuraUniqueDisplay__1"] = { affix = "", "Nearby Enemies take 50 Lightning Damage per second", statOrder = { 3164 }, level = 1, group = "LightningDegenAuraDisplay", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["CannotBeAffectedByFlasksUnique__1"] = { affix = "", "Flasks do not apply to you", statOrder = { 3747 }, level = 38, group = "CannotBeAffectedByFlasks", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlasksApplyToMinionsUnique__1"] = { affix = "", "Flasks you Use apply to your Raised Zombies and Spectres", statOrder = { 3748 }, level = 1, group = "FlasksApplyToMinions", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, }, + ["RepeatingShockwave"] = { affix = "", "Triggers Level 7 Abberath's Fury when Equipped", statOrder = { 762 }, level = 1, group = "RepeatingShockwave", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["LifeRegenerationWhileFrozenUnique__1"] = { affix = "", "Regenerate 10% of Life per second while Frozen", statOrder = { 3741 }, level = 1, group = "LifeRegenerationWhileFrozen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["KnockbackOnCounterattackChanceUnique__1"] = { affix = "", "Retaliation Skills have 100% chance to Knockback", statOrder = { 3623 }, level = 1, group = "KnockbackOnCounterattack", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["EnergyShieldRechargeOnBlockUnique__1"] = { affix = "", "(25-35)% chance for Energy Shield Recharge to start when you Block", statOrder = { 3422 }, level = 1, group = "EnergyShieldRechargeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "defences", "energy_shield" }, }, + ["LocalAttacksAlwaysCritUnique__1"] = { affix = "", "This Weapon's Critical Strike Chance is 100%", statOrder = { 3795 }, level = 1, group = "LocalAttacksAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["LocalDoubleDamageToChilledEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage to Chilled Enemies", statOrder = { 3760 }, level = 1, group = "LocalDoubleDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["LocalElementalPenetrationUnique__1"] = { affix = "", "Attacks with this Weapon Penetrate 30% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["FlaskZealotsOathUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Zealot's Oath during Effect", statOrder = { 851, 1069 }, level = 1, group = "FlaskZealotsOath", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "defences", "energy_shield" }, }, + ["IncreasedDamageAtNoFrenzyChargesUnique__1"] = { affix = "", "(60-80)% increased Damage while you have no Frenzy Charges", statOrder = { 3765 }, level = 1, group = "DamageOnNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["CriticalChanceAgainstEnemiesOnFullLifeUnique__1"] = { affix = "", "100% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3766 }, level = 1, group = "CriticalChanceAgainstEnemiesOnFullLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeAttackLifeLeechUnique__1"] = { affix = "", "1% of Attack Damage Leeched as Life on Critical Strike", statOrder = { 3767 }, level = 1, group = "CriticalStrikeAttackLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["AddedPhysicalToMinionAttacksUnique__1"] = { affix = "", "Minions deal (5-8) to (12-16) additional Attack Physical Damage", statOrder = { 3768 }, level = 1, group = "AddedPhysicalToMinionAttacks", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AttackPhysicalDamageAddedAsLightningUnique__1"] = { affix = "", "Gain 15% of Physical Attack Damage as Extra Lightning Damage", statOrder = { 3776 }, level = 1, group = "AttackPhysicalDamageAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, + ["AttackPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Gain 15% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3774 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, + ["AttackPhysicalDamageAddedAsFireUnique__2"] = { affix = "", "Gain (30-40)% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3774 }, level = 1, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, + ["EnergyShieldPer5StrengthUnique__1"] = { affix = "", "+2 maximum Energy Shield per 5 Strength", statOrder = { 3777 }, level = 1, group = "EnergyShieldPer5Strength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["MaximumGolemsUnique__1"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumGolemsUnique__2"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumGolemsUnique__3"] = { affix = "", "+3 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 43, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumGolemsUnique__4_"] = { affix = "", "-1 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["GrantsLevel12StoneGolem"] = { affix = "", "Grants Level 12 Summon Stone Golem Skill", statOrder = { 626 }, level = 1, group = "GrantsStoneGolemSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ZealotsOathUnique__1"] = { affix = "", "Zealot's Oath", statOrder = { 10806 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["WeaponCountsAsAllOneHandedWeapons__1"] = { affix = "", "Counts as all One Handed Melee Weapon Types", statOrder = { 3779 }, level = 1, group = "CountsAsAllOneHandMeleeWeapons", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SocketedGemsSupportedByFortifyUnique____1"] = { affix = "", "Socketed Gems are Supported by Level 12 Fortify", statOrder = { 496 }, level = 1, group = "DisplaySocketedGemsSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["CannotBePoisonedUnique__1"] = { affix = "", "Cannot be Poisoned", statOrder = { 3369 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["CannotBePoisonedUnique__2"] = { affix = "", "Cannot be Poisoned", statOrder = { 3369 }, level = 1, group = "CannotBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["EnergyShieldRecoveryRateUnique__1"] = { affix = "", "(50-100)% increased Energy Shield Recovery rate", statOrder = { 1568 }, level = 1, group = "EnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedDamageTakenUnique__1"] = { affix = "", "10% increased Damage taken", statOrder = { 2238 }, level = 1, group = "DamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskImmuneToDamage__1"] = { affix = "", "Immunity to Damage during Effect", statOrder = { 984 }, level = 1, group = "FlaskImmuneToDamage", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["LocalAlwaysCrit"] = { affix = "", "This Weapon's Critical Strike Chance is 100%", statOrder = { 3795 }, level = 1, group = "LocalAlwaysCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["IncreasePhysicalDegenDamagePerDexterityUnique__1"] = { affix = "", "2% increased Physical Damage Over Time per 10 Dexterity", statOrder = { 3798 }, level = 1, group = "IncreasePhysicalDegenDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreaseBleedDurationPerIntelligenceUnique__1"] = { affix = "", "1% increased Bleeding Duration per 12 Intelligence", statOrder = { 3799 }, level = 1, group = "IncreaseBleedDurationPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "ailment" }, }, + ["BleedingEnemiesFleeOnHitUnique__1"] = { affix = "", "30% Chance to cause Bleeding Enemies to Flee on hit", statOrder = { 3801 }, level = 1, group = "BleedingEnemiesFleeOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToAvoidFireDamageUnique__1"] = { affix = "", "25% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 1, group = "FireDamageAvoidance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["TrapTriggerRadiusUnique__1"] = { affix = "", "(40-60)% increased Trap Trigger Area of Effect", statOrder = { 1925 }, level = 1, group = "TrapTriggerRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpreadChilledGroundOnFreezeUnique__1"] = { affix = "", "15% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3407 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SpreadConsecratedGroundOnShatterUnique__1"] = { affix = "", "Create Consecrated Ground when you Shatter an Enemy", statOrder = { 4127 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToPoisonWithAttacksUnique___1"] = { affix = "", "20% chance to Poison on Hit with Attacks", statOrder = { 3175 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["TrapTriggerTwiceChanceUnique__1"] = { affix = "", "(8-12)% Chance for Traps to Trigger an additional time", statOrder = { 3797 }, level = 1, group = "TrapTriggerTwiceChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TrapAndMineAddedPhysicalDamageUnique__1"] = { affix = "", "Traps and Mines deal (3-5) to (10-15) additional Physical Damage", statOrder = { 3796 }, level = 1, group = "TrapAndMineAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["FlaskLifeGainOnSkillUseUnique__1"] = { affix = "", "Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost", statOrder = { 962 }, level = 1, group = "FlaskZerphisLastBreath", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["TrapPoisonChanceUnique__1"] = { affix = "", "Traps and Mines have a 25% chance to Poison on Hit", statOrder = { 4090 }, level = 1, group = "TrapPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SocketedGemsSupportedByBlasphemyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 22 Blasphemy", statOrder = { 520 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, }, + ["SocketedGemsSupportedByBlasphemyUnique__2__"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 520 }, level = 1, group = "DisplaySocketedGemsSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, }, + ["ReducedReservationForSocketedCurseGemsUnique__1"] = { affix = "", "Socketed Curse Gems have 30% increased Reservation Efficiency", statOrder = { 614 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, }, + ["ReducedReservationForSocketedCurseGemsUnique__2"] = { affix = "", "Socketed Curse Gems have 80% increased Reservation Efficiency", statOrder = { 614 }, level = 1, group = "DisplaySocketedCurseGemsGetReducedReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "gem", "curse" }, }, + ["GrantAlliesPowerChargeOnKillUnique__1"] = { affix = "", "10% chance to grant a Power Charge to nearby Allies on Kill", statOrder = { 3384 }, level = 1, group = "GrantAlliesPowerChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["GrantAlliesFrenzyChargeOnHitUnique__1"] = { affix = "", "5% chance to grant a Frenzy Charge to nearby Allies on Hit", statOrder = { 3385 }, level = 1, group = "GrantAlliesFrenzyChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["SummonRagingSpiritOnKillUnique__1"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 784 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["PhysicalDamageConvertedToChaosUnique__1"] = { affix = "", "25% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["PhysicalDamageConvertedToChaosUnique__2"] = { affix = "", "50% of Physical Damage Converted to Chaos Damage", statOrder = { 1962 }, level = 1, group = "PhysicalDamageConvertedToChaos", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["FishDetectionUnique__1_"] = { affix = "", "Glows while in an Area containing a Unique Fish", statOrder = { 4128 }, level = 1, group = "FishingDetection", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalMaimOnHitUnique__1"] = { affix = "", "Attacks with this Weapon Maim on hit", statOrder = { 4133 }, level = 1, group = "LocalMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["LocalMaimOnHit2HImplicit_1"] = { affix = "", "25% chance to Maim on Hit", statOrder = { 7988 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AlwaysCritShockedEnemiesUnique__1"] = { affix = "", "Always Critically Strike Shocked Enemies", statOrder = { 4136 }, level = 1, group = "AlwaysCritShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CannotCritNonShockedEnemiesUnique___1"] = { affix = "", "You cannot deal Critical Strikes against non-Shocked Enemies", statOrder = { 4137 }, level = 1, group = "CannotCritNonShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["MinionChanceToBlindOnHitUnique__1"] = { affix = "", "Minions have 15% chance to Blind Enemies on hit", statOrder = { 4154 }, level = 1, group = "MinionChanceToBlindOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MinionBlindImmunityUnique__1"] = { affix = "", "Minions cannot be Blinded", statOrder = { 4153 }, level = 1, group = "MinionBlindImmunity", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1"] = { affix = "", "Socketed Minion Gems are Supported by Level 16 Life Leech", statOrder = { 524 }, level = 1, group = "DisplaySocketedMinionGemsSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "minion", "gem" }, }, + ["MagicItemsDropIdentifiedUnique__1"] = { affix = "", "Found Magic Items drop Identified", statOrder = { 4155 }, level = 1, group = "MagicItemsDropIdentified", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ManaPerStackableJewelUnique__1"] = { affix = "", "Gain 30 Mana per Grand Spectrum", statOrder = { 4156 }, level = 1, group = "ManaPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ArmourPerStackableJewelUnique__1"] = { affix = "", "Gain 200 Armour per Grand Spectrum", statOrder = { 4157 }, level = 1, group = "ArmourPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedDamagePerStackableJewelUnique__1"] = { affix = "", "15% increased Elemental Damage per Grand Spectrum", statOrder = { 4160 }, level = 1, group = "IncreasedDamagePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["CriticalStrikeChancePerStackableJewelUnique__1"] = { affix = "", "25% increased Critical Strike Chance per Grand Spectrum", statOrder = { 4159 }, level = 1, group = "CriticalStrikeChancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["AllResistancePerStackableJewelUnique__1"] = { affix = "", "+7% to all Elemental Resistances per Grand Spectrum", statOrder = { 4161 }, level = 1, group = "AllResistancePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["MaximumLifePerStackableJewelUnique__1"] = { affix = "", "5% increased Maximum Life per Grand Spectrum", statOrder = { 4162 }, level = 1, group = "MaximumLifePerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AvoidElementalAilmentsPerStackableJewelUnique__1"] = { affix = "", "12% chance to Avoid Elemental Ailments per Grand Spectrum", statOrder = { 4158 }, level = 1, group = "AvoidElementalAilmentsPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["MinionCriticalStrikeMultiplierPerStackableJewelUnique__1"] = { affix = "", "Minions have +10% to Critical Strike Multiplier per Grand Spectrum", statOrder = { 4166 }, level = 1, group = "MinionCriticalStrikeMultiplierPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, }, + ["MinimumEnduranceChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Endurance Charges per Grand Spectrum", statOrder = { 4163 }, level = 1, group = "MinimumEnduranceChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["MinimumFrenzyChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Frenzy Charges per Grand Spectrum", statOrder = { 4164 }, level = 1, group = "MinimumFrenzyChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["MinimumPowerChargesPerStackableJewelUnique__1"] = { affix = "", "+1 to Minimum Power Charges per Grand Spectrum", statOrder = { 4165 }, level = 1, group = "MinimumPowerChargesPerStackableJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["AddedColdDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 10 to 20 Cold Damage to Spells per Power Charge", statOrder = { 1825 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AddedColdDamagePerPowerChargeUnique__2"] = { affix = "", "Adds 50 to 70 Cold Damage to Spells per Power Charge", statOrder = { 1825 }, level = 1, group = "AddedColdDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["GainManaOnKillingFrozenEnemyUnique__1"] = { affix = "", "+(20-25) Mana gained on Killing a Frozen Enemy", statOrder = { 9851 }, level = 1, group = "GainManaOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["GainPowerChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "Gain a Power Charge on Killing a Frozen Enemy", statOrder = { 1824 }, level = 1, group = "GainPowerChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["IncreasedDamageIfFrozenRecentlyUnique__1"] = { affix = "", "60% increased Damage if you've Frozen an Enemy Recently", statOrder = { 6050 }, level = 44, group = "IncreasedDamageIfFrozenRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AddedLightningDamagePerIntelligenceUnique__1"] = { affix = "", "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AddedLightningDamagePerIntelligenceUnique__2"] = { affix = "", "Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence", statOrder = { 4872 }, level = 1, group = "AddedLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["IncreasedAttackSpeedPerDexterityUnique__1"] = { affix = "", "1% increased Attack Speed per 25 Dexterity", statOrder = { 4902 }, level = 1, group = "IncreasedAttackSpeedPerDexterity", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["MovementVelocityWhileBleedingUnique__1"] = { affix = "", "20% increased Movement Speed while Bleeding", statOrder = { 9430 }, level = 1, group = "MovementVelocityWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["IncreasedPhysicalDamageTakenWhileMovingUnique__1"] = { affix = "", "10% increased Physical Damage taken while moving", statOrder = { 4315 }, level = 1, group = "IncreasedPhysicalDamageTakenWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["PhysicalDamageReductionWhileNotMovingUnique__1"] = { affix = "", "10% additional Physical Damage Reduction while stationary", statOrder = { 4313 }, level = 1, group = "PhysicalDamageReductionWhileNotMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["AddedLightningDamagePerShockedEnemyKilledUnique__1"] = { affix = "", "Adds 1 to 10 Lightning Damage for each Shocked Enemy you've Killed Recently", statOrder = { 9243 }, level = 1, group = "AddedLightningDamagePerShockedEnemyKilled", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["ColdPenetrationAgainstChilledEnemiesUnique__1"] = { affix = "", "Damage Penetrates 20% Cold Resistance against Chilled Enemies", statOrder = { 5828 }, level = 81, group = "ColdPenetrationAgainstChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["GainLifeOnIgnitingEnemyUnique__1"] = { affix = "", "Recover (40-60) Life when you Ignite an Enemy", statOrder = { 9848 }, level = 81, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["GainLifeOnIgnitingEnemyUnique__2"] = { affix = "", "Recover (20-30) Life when you Ignite an Enemy", statOrder = { 9848 }, level = 36, group = "GainLifeOnIgnitingEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ReflectsShocksUnique__1"] = { affix = "", "Shock Reflection", statOrder = { 9884 }, level = 1, group = "ReflectsShocks", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ReflectsShockToEnemiesInRadiusUnique__1"] = { affix = "", "Reflect Shocks applied to you to all Nearby Enemies", statOrder = { 9885 }, level = 1, group = "ReflectsShockToEnemiesInRadius", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Energy Shield while not on Low Life", statOrder = { 5729 }, level = 1, group = "ChaosDamageDoesNotBypassESNotLowLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["FrenzyChargeOnHitWhileBleedingUnique__1"] = { affix = "", "Gain a Frenzy Charge on Hit while Bleeding", statOrder = { 6758 }, level = 1, group = "FrenzyChargeOnHitWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["IncreasedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5812 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["IncreasedColdDamagePerFrenzyChargeUnique__2"] = { affix = "", "(15-20)% increased Cold Damage per Frenzy Charge", statOrder = { 5812 }, level = 1, group = "IncreasedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["OnHitBlindChilledEnemiesUnique__1_"] = { affix = "", "Blind Chilled Enemies on Hit", statOrder = { 5216 }, level = 1, group = "OnHitBlindChilledEnemies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainLifeOnBlockUnique__1"] = { affix = "", "Recover (250-500) Life when you Block", statOrder = { 1760 }, level = 1, group = "RecoverLifeOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["GrantsLevel30ReckoningUnique__1"] = { affix = "", "Grants Level 30 Crushing Fist Skill", statOrder = { 656 }, level = 1, group = "GrantsLevel30Reckoning", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_"] = { affix = "", "Minions Recover 10% of Life on Killing a Poisoned Enemy", statOrder = { 9365 }, level = 1, group = "MinionsRecoverLifeOnKillingPoisonedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1"] = { affix = "", "Gain a Frenzy Charge on reaching Maximum Power Charges", statOrder = { 3605 }, level = 1, group = "WhenReachingMaxPowerChargesGainAFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["GrantsEnvyUnique__1"] = { affix = "", "Grants Level 25 Envy Skill", statOrder = { 655 }, level = 87, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsEnvyUnique__2"] = { affix = "", "Grants Level 15 Envy Skill", statOrder = { 655 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GainArmourIfBlockedRecentlyUnique__1"] = { affix = "", "+(1500-3000) Armour if you've Blocked Recently", statOrder = { 4499 }, level = 1, group = "GainArmourIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["EnemiesBlockedAreIntimidatedUnique__1"] = { affix = "", "Permanently Intimidate Enemies on Block", statOrder = { 9610 }, level = 1, group = "EnemiesBlockedAreIntimidated", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["MinionsPoisonEnemiesOnHitUnique__1"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3174 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, }, + ["MinionsPoisonEnemiesOnHitUnique__2"] = { affix = "", "Minions have 60% chance to Poison Enemies on Hit", statOrder = { 3174 }, level = 1, group = "MinionsPoisonEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "minion", "ailment" }, }, + ["GrantsLevel20BoneNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy", statOrder = { 765 }, level = 1, group = "GrantsLevel20BoneNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, }, + ["GrantsLevel20IcicleNovaTriggerUnique__1"] = { affix = "", "Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 811 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, }, + ["AttacksCauseBleedingOnCursedEnemyHitUnique__1"] = { affix = "", "Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies", statOrder = { 4913 }, level = 1, group = "AttacksCauseBleedingOnCursedEnemyHit25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ReceiveBleedingWhenHitUnique__1_"] = { affix = "", "50% chance to be inflicted with Bleeding when Hit by an Attack", statOrder = { 9833 }, level = 1, group = "ReceiveBleedingWhenHit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ArmourIncreasedByUncappedFireResistanceUnique__1"] = { affix = "", "Armour is increased by Overcapped Fire Resistance", statOrder = { 4763 }, level = 1, group = "ArmourIncreasedByUncappedFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["EvasionIncreasedByUncappedColdResistanceUnique__1"] = { affix = "", "Evasion Rating is increased by Overcapped Cold Resistance", statOrder = { 6486 }, level = 1, group = "EvasionIncreasedByUncappedColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["CriticalChanceIncreasedByUncappedLightningResistanceUnique__1"] = { affix = "", "Critical Strike Chance is increased by Overcapped Lightning Resistance", statOrder = { 5919 }, level = 1, group = "CriticalChanceIncreasedByUncappedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CoverInAshWhenHitUnique__1"] = { affix = "", "Cover Enemies in Ash when they Hit you", statOrder = { 4695 }, level = 44, group = "CoverInAshWhenHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CriticalStrikesDealIncreasedLightningDamageUnique__1"] = { affix = "", "50% increased Lightning Damage", statOrder = { 1377 }, level = 87, group = "CriticalStrikesDealIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["MaximumEnergyShieldAsPercentageOfLifeUnique__1"] = { affix = "", "Gain (4-6)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9160 }, level = 60, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["MaximumEnergyShieldAsPercentageOfLifeUnique__2"] = { affix = "", "Gain (5-10)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9160 }, level = 1, group = "MaximumEnergyShieldAsPercentageOfLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["GlobalIgniteProlifUnique__1"] = { affix = "", "Ignites you inflict spread to other Enemies within 1.5 metres", statOrder = { 2218 }, level = 1, group = "GlobalIgniteProlif", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["GlobalIgniteProlifUnique__2"] = { affix = "", "Ignites you inflict spread to other Enemies within 2.8 metres", statOrder = { 2218 }, level = 1, group = "GlobalIgniteProlif", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["LocalIgniteProlifEmberglowUnique__1"] = { affix = "", "Ignites you inflict with this weapon spread to other Enemies within 2.8 metres", statOrder = { 7929 }, level = 1, group = "LocalIgniteProlifEmberglow", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["IgniteDurationEmberglowUnique__1"] = { affix = "", "50% less Duration of Ignites you inflict", statOrder = { 6355 }, level = 1, group = "IgniteDurationEmberglowUnique", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChillEnemiesWhenHitUnique__1"] = { affix = "", "Chill Enemy for 1 second when Hit, reducing their Action Speed by 30%", statOrder = { 3140 }, level = 1, group = "ChillEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["Roll6LinkedRandomColourSocketsUnique__1"] = { affix = "", "Sockets cannot be modified", statOrder = { 70 }, level = 1, group = "Roll6LinkedRandomColourSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OnlySocketCorruptedGemsUnique__1"] = { affix = "", "You can only Socket Corrupted Gems in this item", statOrder = { 7869 }, level = 1, group = "OnlySocketCorruptedGems", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["CurseLevel10VulnerabilityOnHitUnique__1"] = { affix = "", "Curse Enemies with Vulnerability on Hit", statOrder = { 2524 }, level = 1, group = "CurseLevel10VulnerabilityOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["FireResistConvertedToBlockChanceScaledJewelUnique__1_"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Attack Damage at 50% of its value", statOrder = { 8070, 8070.1 }, level = 1, group = "FireResistConvertedToBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ColdResistConvertedToDodgeChanceScaledJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant Chance to Suppress Spell Damage at 70% of its value", statOrder = { 8049, 8049.1 }, level = 1, group = "ColdResistConvertedToDodgeChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightningResistConvertedToSpellBlockChanceScaledJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant Chance to Block Spell Damage at 50% of its value", statOrder = { 8087, 8087.1 }, level = 1, group = "LightningResistConvertedToSpellBlockChanceScaledJewel", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Fire Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain an Endurance Charge on Kill", statOrder = { 8071, 8071.1 }, level = 1, group = "FireResistAlsoGrantsEnduranceChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Cold Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Frenzy Charge on Kill", statOrder = { 8047, 8047.1 }, level = 1, group = "ColdResistAlsoGrantsFrenzyChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1"] = { affix = "", "Passives granting Lightning Resistance or all Elemental Resistances in Radius", "also grant an equal chance to gain a Power Charge on Kill", statOrder = { 8090, 8090.1 }, level = 1, group = "LightningResistAlsoGrantsPowerChargeOnKillJewel", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["LightningStrikesOnCritUnique__1"] = { affix = "", "Trigger Level 12 Lightning Bolt when you deal a Critical Strike", statOrder = { 772 }, level = 50, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, }, + ["LightningStrikesOnCritUnique__2"] = { affix = "", "Trigger Level 30 Lightning Bolt when you deal a Critical Strike", statOrder = { 772 }, level = 87, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, }, + ["ArcticArmourBuffEffectUnique__1_"] = { affix = "", "50% increased Arctic Armour Buff Effect", statOrder = { 4022 }, level = 1, group = "ArcticArmourBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArcticArmourReservationCostUnique__1"] = { affix = "", "Arctic Armour has no Reservation", statOrder = { 4716 }, level = 1, group = "ArcticArmourNoReservation", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionLeechOnPoisonedEnemiesUnique__1"] = { affix = "", "Minions Leech 5% of Damage as Life against Poisoned Enemies", statOrder = { 9312 }, level = 1, group = "MinionLeechOnPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["BleedingEnemiesExplodeUnique__1"] = { affix = "", "Bleeding Enemies you Kill Explode, dealing 5% of", "their Maximum Life as Physical Damage", statOrder = { 3481, 3481.1 }, level = 1, group = "BleedingEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["ChilledGroundEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Chilled Ground", statOrder = { 5773 }, level = 1, group = "ChilledGroundEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["HeraldOfIceDamageUnique__1_"] = { affix = "", "50% increased Herald of Ice Damage", statOrder = { 3715 }, level = 1, group = "HeraldOfIceDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["KeystoneMinionInstabilityUnique__1"] = { affix = "", "Minion Instability", statOrder = { 10798 }, level = 1, group = "MinionInstability", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["KeystoneConduitUnique__1__"] = { affix = "", "Conduit", statOrder = { 10775 }, level = 1, group = "Conduit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["KeystoneAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10767 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KeystoneIronReflexesUnique__1"] = { affix = "", "Iron Reflexes", statOrder = { 10793 }, level = 1, group = "IronReflexes", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["KeystoneResoluteTechniqueUnique__1"] = { affix = "", "Resolute Technique", statOrder = { 10828 }, level = 1, group = "ResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["KeystoneUnwaveringStanceUnique__1"] = { affix = "", "Unwavering Stance", statOrder = { 10820 }, level = 1, group = "UnwaveringStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["KeystoneBloodMagicUnique__1_"] = { affix = "", "Blood Magic", statOrder = { 10772 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["KeystonePainAttunementUnique__1"] = { affix = "", "Pain Attunement", statOrder = { 10800 }, level = 1, group = "PainAttunement", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["KeystoneElementalEquilibriumUnique__1"] = { affix = "", "Elemental Equilibrium", statOrder = { 10781 }, level = 1, group = "ElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["KeystoneElementalEquilibriumSceptreImplicit1"] = { affix = "", "Elemental Equilibrium", statOrder = { 10781 }, level = 1, group = "ElementalEquilibrium", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["KeystoneIronGripUnique__1"] = { affix = "", "Iron Grip", statOrder = { 10816 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["KeystonePointBlankUnique__1"] = { affix = "", "Point Blank", statOrder = { 10801 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["KeystoneArrowDodgingUnique__1"] = { affix = "", "Arrow Dancing", statOrder = { 10804 }, level = 1, group = "ArrowDodging", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["KeystonePhaseAcrobaticsUnique__1"] = { affix = "", "Acrobatics", statOrder = { 10767 }, level = 1, group = "Acrobatics", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KeystoneGhostReaverUnique__1"] = { affix = "", "Ghost Reaver", statOrder = { 10787 }, level = 1, group = "KeystoneGhostReaver", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["KeystoneVaalPactUnique__1"] = { affix = "", "Vaal Pact", statOrder = { 10821 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["KeystoneZealotsOathUnique__1_"] = { affix = "", "Zealot's Oath", statOrder = { 10806 }, level = 1, group = "ZealotsOath", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["KeystoneMindOverMatterUnique__1"] = { affix = "", "Mind Over Matter", statOrder = { 10796 }, level = 1, group = "ManaShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["KeystoneElementalOverloadUnique__1"] = { affix = "", "Elemental Overload", statOrder = { 10782 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["KeystoneElementalOverloadSceptreImplicit1_"] = { affix = "", "Elemental Overload", statOrder = { 10782 }, level = 1, group = "ElementalOverload", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["KeystoneAvatarOfFireUnique__1"] = { affix = "", "Avatar of Fire", statOrder = { 10770 }, level = 1, group = "AvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["KeystoneEldritchBatteryUnique__1"] = { affix = "", "Eldritch Battery", statOrder = { 10780 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["KeystoneEldritchBatteryUnique__2"] = { affix = "", "Eldritch Battery", statOrder = { 10780 }, level = 1, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["KeystoneAncestralBondUnique__1"] = { affix = "", "Ancestral Bond", statOrder = { 10769 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["KeystoneAncestralBondUnique__2"] = { affix = "", "Ancestral Bond", statOrder = { 10769 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["KeystoneCrimsonDanceUnique__1"] = { affix = "", "Crimson Dance", statOrder = { 10777 }, level = 1, group = "CrimsonDance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["KeystonePerfectAgonyUnique__1"] = { affix = "", "Perfect Agony", statOrder = { 10768 }, level = 1, group = "PerfectAgony", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "ailment" }, }, + ["KeystoneRunebinderUnique__1"] = { affix = "", "Runebinder", statOrder = { 10808 }, level = 1, group = "Runebinder", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["KeystoneWickedWardUnique__1"] = { affix = "", "Wicked Ward", statOrder = { 10824 }, level = 1, group = "WickedWard", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["KeystoneMortalConvictionUnique__1"] = { affix = "", "Blood Magic", statOrder = { 10772 }, level = 1, group = "BloodMagic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["KeystoneGlancingBlowsUnique__1___"] = { affix = "", "Glancing Blows", statOrder = { 10788 }, level = 1, group = "GlancingBlows", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["KeystoneCallToArmsUnique__1"] = { affix = "", "Call to Arms", statOrder = { 10773 }, level = 1, group = "CallToArms", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KeystoneEternalYouthUnique__1"] = { affix = "", "Eternal Youth", statOrder = { 10784 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["KeystoneWindDancerUnique__1_"] = { affix = "", "Wind Dancer", statOrder = { 10825 }, level = 1, group = "WindDancer", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["KeystoneTheAgnosticUnique__1_"] = { affix = "", "The Agnostic", statOrder = { 10799 }, level = 1, group = "TheAgnostic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, + ["KeystoneTheAgnosticUnique__2"] = { affix = "", "The Agnostic", statOrder = { 10799 }, level = 1, group = "TheAgnostic", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, + ["KeystoneSupremeEgoUnique__1_"] = { affix = "", "Supreme Ego", statOrder = { 10817 }, level = 1, group = "SupremeEgo", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["KeystoneSacredBastionUnique__1"] = { affix = "", "Imbalanced Guard", statOrder = { 10809 }, level = 1, group = "SacredBastion", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["KeystoneTheImpalerUnique__1_"] = { affix = "", "The Impaler", statOrder = { 10792 }, level = 1, group = "Impaler", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["KeystoneSoulTetherUnique__1"] = { affix = "", "Immortal Ambition", statOrder = { 10815 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["KeystoneCorruptedSoulUnique_1"] = { affix = "", "Corrupted Soul", statOrder = { 10776 }, level = 1, group = "CorruptedSoul", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "chaos" }, }, + ["KeystoneDoomsdayUnique__1"] = { affix = "", "Hex Master", statOrder = { 10790 }, level = 1, group = "HexMaster", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, + ["KeystoneSoulTetherUnique__2"] = { affix = "", "Immortal Ambition", statOrder = { 10815 }, level = 1, group = "SoulTether", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["KeystoneCorruptedSoulUnique__2_"] = { affix = "", "Corrupted Soul", statOrder = { 10776 }, level = 1, group = "CorruptedSoul", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "chaos" }, }, + ["KeystoneVaalPactUnique__2"] = { affix = "", "Vaal Pact", statOrder = { 10821 }, level = 1, group = "VaalPact", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["KeystoneEternalYouthUnique__2_"] = { affix = "", "Eternal Youth", statOrder = { 10784 }, level = 1, group = "EternalYouth", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["KeystoneDivineFleshUnique__1_"] = { affix = "", "Divine Flesh", statOrder = { 10778 }, level = 1, group = "DivineFlesh", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["KeystoneEverlastingSacrificeUnique__1"] = { affix = "", "Everlasting Sacrifice", statOrder = { 10785 }, level = 1, group = "EverlastingSacrifice", weightKey = { }, weightVal = { }, modTags = { "defences", "resistance" }, }, + ["KeystoneShepherdOfSoulsUnique__1"] = { affix = "", "Shepherd of Souls", statOrder = { 10813 }, level = 1, group = "ShepherdOfSouls", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["KeystoneLetheShadeUnique_1"] = { affix = "", "Lethe Shade", statOrder = { 10794 }, level = 1, group = "LetheShade", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["KeystoneGhostDanceUnique__1"] = { affix = "", "Ghost Dance", statOrder = { 10786 }, level = 1, group = "GhostDance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["KeystoneVersatileCombatantUnique___1"] = { affix = "", "Versatile Combatant", statOrder = { 10822 }, level = 1, group = "VersatileCombatant", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["KeystoneMagebaneUnique_1"] = { affix = "", "Magebane", statOrder = { 10795 }, level = 1, group = "Magebane", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KeystoneSolipsismUnique_1"] = { affix = "", "Solipsism", statOrder = { 10814 }, level = 1, group = "Solipsism", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["KeystoneDivineShieldUnique_1"] = { affix = "", "Divine Shield", statOrder = { 10779 }, level = 1, group = "DivineShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["KeystoneIronWillUnique_1"] = { affix = "", "Iron Will", statOrder = { 10829 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["KeystonePreciseTechniqueUnique__1"] = { affix = "", "Precise Technique", statOrder = { 10802 }, level = 1, group = "PreciseTechnique", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KeystoneSupremeDecadenceUnique__1"] = { affix = "", "Supreme Decadence", statOrder = { 10783 }, level = 1, group = "SupremeDecadence", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedLightningDamageTakenUnique__1"] = { affix = "", "40% increased Lightning Damage taken", statOrder = { 3388 }, level = 1, group = "IncreasedLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["PercentLightningDamageTakenFromManaBeforeLifeUnique__1"] = { affix = "", "30% of Lightning Damage is taken from Mana before Life", statOrder = { 4168 }, level = 1, group = "PercentLightningDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "elemental", "lightning" }, }, + ["PercentManaRecoveredWhenYouShockUnique__1"] = { affix = "", "Recover 3% of Mana when you Shock an Enemy", statOrder = { 4170 }, level = 1, group = "PercentManaRecoveredWhenYouShock", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ChanceToCastOnManaSpentUnique__1"] = { affix = "", "50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an", "Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown", statOrder = { 756, 756.1 }, level = 1, group = "ChanceToCastOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, }, + ["AdditionalChanceToBlockInOffHandUnique_1"] = { affix = "", "+8% Chance to Block Attack Damage when in Off Hand", statOrder = { 4185 }, level = 1, group = "AdditionalChanceToBlockInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["CriticalStrikeChanceInMainHandUnique_1"] = { affix = "", "(60-80)% increased Global Critical Strike Chance when in Main Hand", statOrder = { 4184 }, level = 1, group = "CriticalStrikeChanceInMainHand", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalStrikeMultiplierPerGreenSocketUnique_1"] = { affix = "", "+10% to Global Critical Strike Multiplier per Green Socket", statOrder = { 2722 }, level = 1, group = "CriticalStrikeMultiplierPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1"] = { affix = "", "0.3% of Physical Attack Damage Leeched as Life per Red Socket", statOrder = { 2717 }, level = 1, group = "LifeLeechFromPhysicalAttackDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "physical", "attack" }, }, + ["IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1"] = { affix = "", "(50-100)% increased Charges gained by Other Flasks during Effect", statOrder = { 1014 }, level = 1, group = "IncreasedFlaskChargesForOtherFlasksDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["CannotGainFlaskChargesDuringFlaskEffectUnique_1"] = { affix = "", "Gains no Charges during Effect of any Overflowing Chalice Flask", statOrder = { 1066 }, level = 1, group = "CannotGainFlaskChargesDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["IncreasedLightningDamagePer10IntelligenceUnique__1"] = { affix = "", "1% increased Lightning Damage per 10 Intelligence", statOrder = { 4132 }, level = 1, group = "IncreasedLightningDamagePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["IncreasedDamagePerEnduranceChargeUnique_1"] = { affix = "", "4% increased Melee Damage per Endurance Charge", statOrder = { 4175 }, level = 1, group = "IncreasedDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["CannotBeShockedWhileMaximumEnduranceChargesUnique_1"] = { affix = "", "You cannot be Shocked while at maximum Endurance Charges", statOrder = { 4178 }, level = 1, group = "CannotBeShockedWhileMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IncreasedStunDurationOnSelfUnique_1"] = { affix = "", "50% increased Stun Duration on you", statOrder = { 4174 }, level = 1, group = "IncreasedStunDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReducedDamageIfNotHitRecentlyUnique__1"] = { affix = "", "35% less Damage taken if you have not been Hit Recently", statOrder = { 4187 }, level = 1, group = "ReducedDamageIfNotHitRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedEvasionIfHitRecentlyUnique___1"] = { affix = "", "100% increased Evasion Rating if you have been Hit Recently", statOrder = { 4188 }, level = 1, group = "IncreasedEvasionIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["MovementSpeedIfUsedWarcryRecentlyUnique_1"] = { affix = "", "10% increased Movement Speed if you've Warcried Recently", statOrder = { 4179 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementSpeedIfUsedWarcryRecentlyUnique__2"] = { affix = "", "15% increased Movement Speed if you've Warcried Recently", statOrder = { 4179 }, level = 1, group = "MovementSpeedIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["LifeRegeneratedAfterSavageHitUnique_1"] = { affix = "", "Regenerate 10% of Life per second if you've taken a Savage Hit in the past 1 second", statOrder = { 4177 }, level = 1, group = "LifeRegeneratedAfterSavageHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ReducedDamageIfTakenASavageHitRecentlyUnique_1"] = { affix = "", "10% increased Damage taken if you've taken a Savage Hit Recently", statOrder = { 4173 }, level = 1, group = "ReducedDamageIfTakenASavageHitRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1"] = { affix = "", "20% increased Damage with Hits for each Level higher the Enemy is than you", statOrder = { 4193 }, level = 1, group = "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedCostOfMovementSkillsUnique_1"] = { affix = "", "25% increased Movement Skill Mana Cost", statOrder = { 4183 }, level = 1, group = "IncreasedCostOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["ChanceToDodgeSpellsWhilePhasing_Unique_1"] = { affix = "", "30% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4942 }, level = 1, group = "AvoidElementalStatusAilmentsPhasing", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["IncreasedEvasionWithOnslaughtUnique_1"] = { affix = "", "100% increased Evasion Rating during Onslaught", statOrder = { 1551 }, level = 1, group = "IncreasedEvasionWithOnslaught", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["AttackDamageLifeLeechAgainstBleedingEnemiesUnique_1"] = { affix = "", "1% of Attack Damage Leeched as Life against Bleeding Enemies", statOrder = { 1696 }, level = 1, group = "AttackDamageLifeLeechAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["AttackDamageManaLeechAgainstPoisonedEnemiesUnique_1"] = { affix = "", "1% of Attack Damage Leeched as Mana against Poisoned Enemies", statOrder = { 4181 }, level = 1, group = "AttackDamageManaLeechAgainstPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["AttackDamageManaLeechAgainstPoisonedEnemiesUnique_2"] = { affix = "", "0.5% of Attack Damage Leeched as Mana against Poisoned Enemies", statOrder = { 4181 }, level = 1, group = "AttackDamageManaLeechAgainstPoisonedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["IIQFromMaimedEnemiesUnique_1"] = { affix = "", "(15-25)% increased Quantity of Items Dropped by Slain Maimed Enemies", statOrder = { 4171 }, level = 1, group = "IIQFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["IIRFromMaimedEnemiesUnique_1"] = { affix = "", "(30-40)% increased Rarity of Items Dropped by Slain Maimed Enemies", statOrder = { 4172 }, level = 1, group = "IIRFromMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["AdditionalChainWhileAtMaxFrenzyChargesUnique___1"] = { affix = "", "Skills Chain an additional time while at maximum Frenzy Charges", statOrder = { 1826 }, level = 1, group = "AdditionalChainWhileAtMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CriticalStrikesDoNotFreezeUnique___1"] = { affix = "", "Critical Strikes do not inherently Freeze", statOrder = { 2031 }, level = 1, group = "CriticalStrikesDoNotFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "critical", "ailment" }, }, + ["ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1"] = { affix = "", "20% chance to gain a Frenzy Charge on Killing a Frozen Enemy", statOrder = { 1823 }, level = 1, group = "ChanceToGainFrenzyChargeOnKillingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["PhasingOnBeginESRechargeUnique___1"] = { affix = "", "You have Phasing if Energy Shield Recharge has started Recently", statOrder = { 2504 }, level = 56, group = "GainPhasingFor4SecondsOnBeginESRecharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeAttacksWhilePhasingUnique___1"] = { affix = "", "30% increased Evasion Rating while Phasing", statOrder = { 2505 }, level = 1, group = "ChanceToDodgeAttacksWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["AdditionalChanceToBlockAgainstTauntedEnemiesUnique_1"] = { affix = "", "+5% Chance to Block Attack Damage from Taunted Enemies", statOrder = { 4189 }, level = 1, group = "AdditionalChanceToBlockAgainstTauntedEnemies", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1"] = { affix = "", "40% increased Armour and Evasion Rating if you've killed a Taunted Enemy Recently", statOrder = { 4192 }, level = 1, group = "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["SummonMaximumNumberOfSocketedTotemsUnique_1"] = { affix = "", "Socketed Skills Summon your maximum number of Totems in formation", statOrder = { 533 }, level = 1, group = "SummonMaximumNumberOfSocketedTotems", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["TotemElementalResistPerActiveTotemUnique_1"] = { affix = "", "Totems gain -10% to all Elemental Resistances per Summoned Totem", statOrder = { 4176 }, level = 1, group = "TotemElementalResistPerActiveTotem", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1"] = { affix = "", "Totems have 5% increased Cast Speed per Summoned Totem", statOrder = { 4182 }, level = 1, group = "SpellsCastByTotemsHaveReducedCastSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1"] = { affix = "", "Totems have 5% increased Attack Speed per Summoned Totem", statOrder = { 4194 }, level = 1, group = "AttacksByTotemsHaveReducedAttackSpeedPerTotem", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedManaRecoveryRateUnique__1"] = { affix = "", "10% increased Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AttacksChainInMainHandUnique__1"] = { affix = "", "Attacks Chain an additional time when in Main Hand", statOrder = { 4195 }, level = 1, group = "AttacksChainInMainHand", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttacksExtraProjectileInOffHandUnique__1"] = { affix = "", "Attacks fire an additional Projectile when in Off Hand", statOrder = { 4197 }, level = 1, group = "AttacksExtraProjectileInOffHand", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CounterAttacksAddedColdDamageUnique__1"] = { affix = "", "Adds 250 to 300 Cold Damage to Retaliation Skills", statOrder = { 4205 }, level = 1, group = "CounterAttacksAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["IncreasedGolemDamagePerGolemUnique__1"] = { affix = "", "(16-20)% increased Golem Damage for each Type of Golem you have Summoned", statOrder = { 4199 }, level = 1, group = "IncreasedGolemDamagePerGolem", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["IncreasedLifeWhileNoCorruptedItemsUnique__1"] = { affix = "", "(8-12)% increased Maximum Life if no Equipped Items are Corrupted", statOrder = { 4201 }, level = 1, group = "IncreasedLifeWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Life per second if no Equipped Items are Corrupted", statOrder = { 4202 }, level = 1, group = "LifeRegenerationPerMinuteWhileNoCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 400 Energy Shield per second if all Equipped items are Corrupted", statOrder = { 4203 }, level = 1, group = "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["BaseManaRegenerationWhileAllCorruptedItemsUnique__1"] = { affix = "", "Regenerate 35 Mana per second if all Equipped Items are Corrupted", statOrder = { 8188 }, level = 1, group = "BaseManaRegenerationWhileAllCorruptedItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AddedChaosDamageToAttacksAndSpellsUnique__1"] = { affix = "", "Adds (13-17) to (29-37) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AddedChaosDamageToAttacksAndSpellsUnique__2"] = { affix = "", "Adds (13-17) to (23-29) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["GlobalAddedChaosDamageUnique__1"] = { affix = "", "Adds (17-19) to (23-29) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["GlobalAddedChaosDamageUnique__2"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["GlobalAddedChaosDamageUnique__3"] = { affix = "", "Adds (50-55) to (72-80) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["GlobalAddedChaosDamageUnique__4__"] = { affix = "", "Adds (48-53) to (58-60) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["GlobalAddedChaosDamageUnique__5_"] = { affix = "", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["GlobalAddedChaosDamageUnique__6_"] = { affix = "", "Adds (17-23) to (29-31) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["GlobalAddedChaosDamageUnique__7"] = { affix = "", "Adds (7-11) to (17-23) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["GlobalAddedPhysicalDamageUnique__1_"] = { affix = "", "Adds (12-16) to (20-25) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["GlobalAddedPhysicalDamageUnique__2"] = { affix = "", "Adds (8-10) to (13-15) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["GlobalAddedPhysicalDamageUnique__3"] = { affix = "", "Adds (8-12) to (14-20) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["GlobalAddedFireDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["GlobalAddedFireDamageUnique__2"] = { affix = "", "Adds (22-27) to (34-38) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["GlobalAddedFireDamageUnique__3_"] = { affix = "", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["GlobalAddedFireDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["GlobalAddedFireDamageUnique__6"] = { affix = "", "Adds (10-14) to (26-34) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["GlobalAddedColdDamageUnique__1"] = { affix = "", "Adds (20-24) to (33-36) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["GlobalAddedColdDamageUnique__2_"] = { affix = "", "Adds (20-23) to (31-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["GlobalAddedColdDamageUnique__3"] = { affix = "", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["GlobalAddedColdDamageUnique__4"] = { affix = "", "Adds (16-19) to (25-29) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["GlobalAddedColdDamageUnique__5"] = { affix = "", "Adds (8-12) to (18-26) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["GlobalAddedLightningDamageUnique__1_"] = { affix = "", "Adds (10-13) to (43-47) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["GlobalAddedLightningDamageUnique__2_"] = { affix = "", "Adds (1-3) to (47-52) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["GlobalAddedLightningDamageUnique__3"] = { affix = "", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["GlobalAddedLightningDamageUnique__4"] = { affix = "", "Adds (6-10) to (33-38) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["GlobalAddedLightningDamageUnique__5"] = { affix = "", "Adds (1-2) to (43-56) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1"] = { affix = "", "Regenerate 2% of Energy Shield per second while on Low Life", statOrder = { 1801 }, level = 45, group = "EnergyShieldRegenerationperMinuteWhileOnLowLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ReflectPhysicalDamageToSelfOnHitUnique__1"] = { affix = "", "Enemies you Attack Reflect 100 Physical Damage to you", statOrder = { 2196 }, level = 1, group = "ReflectPhysicalDamageToSelfOnHit", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IgnoreHexproofUnique___1"] = { affix = "", "Your Hexes can affect Hexproof Enemies", statOrder = { 2600 }, level = 1, group = "IgnoreHexproof", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Poison Cursed Enemies on hit", statOrder = { 4207 }, level = 1, group = "PoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToPoisonCursedEnemiesOnHitUnique__1"] = { affix = "", "Always Poison on Hit against Cursed Enemies", statOrder = { 4208 }, level = 1, group = "ChanceToPoisonCursedEnemiesOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToBeShockedUnique__1"] = { affix = "", "+20% chance to be Shocked", statOrder = { 2949 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToBeShockedUnique__2"] = { affix = "", "+50% chance to be Shocked", statOrder = { 2949 }, level = 1, group = "ChanceToBeShocked", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["GlobalDefensesPerWhiteSocketUnique__1"] = { affix = "", "8% increased Global Defences per White Socket", statOrder = { 2731 }, level = 1, group = "GlobalDefensesPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["ItemQuantityWhileWearingAMagicItemUnique__1"] = { affix = "", "(10-15)% increased Quantity of Items found with a Magic Item Equipped", statOrder = { 4210 }, level = 10, group = "ItemQuantityWhileWearingAMagicItem", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ItemRarityWhileWearingANormalItemUnique__1"] = { affix = "", "(80-100)% increased Rarity of Items found with a Normal Item Equipped", statOrder = { 4209 }, level = 1, group = "ItemRarityWhileWearingANormalItem", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["AdditionalAttackTotemsUnique__1"] = { affix = "", "Attack Skills have +1 to maximum number of Summoned Totems", statOrder = { 4246 }, level = 1, group = "AdditionalAttackTotems", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["MinionColdResistUnique__1"] = { affix = "", "Minions have +40% to Cold Resistance", statOrder = { 4190 }, level = 1, group = "MinionColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance", "minion" }, }, + ["MinionFireResistUnique__1"] = { affix = "", "Minions have +40% to Fire Resistance", statOrder = { 9305 }, level = 1, group = "MinionFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance", "minion" }, }, + ["MinionPhysicalDamageAddedAsColdUnique__1_"] = { affix = "", "Minions gain 20% of Physical Damage as Extra Cold Damage", statOrder = { 4191 }, level = 1, group = "MinionPhysicalDamageAddedAsCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, }, + ["FlaskStunImmunityUnique__1"] = { affix = "", "Cannot be Stunned during Effect", statOrder = { 973 }, level = 1, group = "FlaskStunImmunity", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["PhasingOnTrapTriggeredUnique__1"] = { affix = "", "30% chance to gain Phasing for 4 seconds when your Trap is triggered by an Enemy", statOrder = { 4242 }, level = 1, group = "PhasingOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainEnergyShieldOnTrapTriggeredUnique__1_"] = { affix = "", "Recover 50 Energy Shield when your Trap is triggered by an Enemy", statOrder = { 4244 }, level = 1, group = "GainEnergyShieldOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["GainLifeOnTrapTriggeredUnique__1"] = { affix = "", "Recover 100 Life when your Trap is triggered by an Enemy", statOrder = { 4243 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["GainLifeOnTrapTriggeredUnique__2__"] = { affix = "", "Recover (20-30) Life when your Trap is triggered by an Enemy", statOrder = { 4243 }, level = 1, group = "GainLifeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["GainFrenzyChargeOnTrapTriggeredUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when your Trap is triggered by an Enemy", statOrder = { 3600 }, level = 1, group = "GainFrenzyChargeOnTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["BleedingImmunityUnique__1"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4215 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["BleedingImmunityUnique__2"] = { affix = "", "Bleeding cannot be inflicted on you", statOrder = { 4215 }, level = 1, group = "BleedingImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SelfStatusAilmentDurationUnique__1"] = { affix = "", "50% increased Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "elemental", "ailment" }, }, + ["PoisonOnMeleeHitUnique__1"] = { affix = "", "Melee Attacks have (20-40)% chance to Poison on Hit", statOrder = { 4259 }, level = 60, group = "PoisonOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["LifeLeechVsCursedEnemiesUnique__1"] = { affix = "", "1% of Damage Leeched as Life against Cursed Enemies", statOrder = { 4260 }, level = 1, group = "LifeLeechVsCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MovementSpeedIfKilledRecentlyUnique___1"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 4261 }, level = 40, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementSpeedIfKilledRecentlyUnique___2"] = { affix = "", "15% increased Movement Speed if you've Killed Recently", statOrder = { 4261 }, level = 1, group = "MovementSpeedIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ControlledDestructionSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 410 }, level = 45, group = "ControlledDestructionSupportLevel10Boolean", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ControlledDestructionSupportUnique__1New_"] = { affix = "", "Socketed Gems are Supported by Level 10 Controlled Destruction", statOrder = { 525 }, level = 45, group = "ControlledDestructionSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ColdDamageIgnitesUnique__1"] = { affix = "", "Your Cold Damage can Ignite", statOrder = { 2882 }, level = 30, group = "ColdDamageAlsoIgnites", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["LifeRegenerationPercentPerEnduranceChargeUnique__1"] = { affix = "", "Regenerate 0.2% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 40, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AreaOfEffectPerEnduranceChargeUnique__1"] = { affix = "", "2% increased Area of Effect per Endurance Charge", statOrder = { 4733 }, level = 1, group = "AreaOfEffectPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceForDoubleStunDurationUnique__1"] = { affix = "", "50% chance to double Stun Duration", statOrder = { 3564 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceForDoubleStunDurationImplicitMace_1"] = { affix = "", "25% chance to double Stun Duration", statOrder = { 3564 }, level = 1, group = "ChanceForDoubleStunDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhysicalAddedAsFireUnique__1"] = { affix = "", "Gain (25-35)% of Physical Attack Damage as Extra Fire Damage", statOrder = { 3774 }, level = 30, group = "AttackPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack" }, }, + ["PhysicalAddedAsFireUnique__2"] = { affix = "", "Gain 70% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 50, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireUnique__3"] = { affix = "", "Gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsFireUnique__4"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Fire Damage", statOrder = { 1932 }, level = 1, group = "PhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsLightningUnique__1"] = { affix = "", "Gain (10-50)% of Physical Damage as Extra Lightning Damage", statOrder = { 1934 }, level = 1, group = "PhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["AttackCastMoveOnWarcryRecentlyUnique____1"] = { affix = "", "If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed", statOrder = { 3314 }, level = 1, group = "AttackCastMoveOnWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["ChaosSkillEffectDurationUnique__1"] = { affix = "", "Chaos Skills have 40% increased Skill Effect Duration", statOrder = { 1896 }, level = 1, group = "ChaosSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["PoisonDurationUnique__1_"] = { affix = "", "(15-20)% increased Poison Duration", statOrder = { 3170 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonDurationUnique__2"] = { affix = "", "(20-25)% increased Poison Duration", statOrder = { 3170 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonDurationUnique__3"] = { affix = "", "(10-25)% increased Poison Duration", statOrder = { 3170 }, level = 30, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["FlaskImmuneToStunFreezeCursesUnique__1"] = { affix = "", "Immunity to Freeze, Chill, Curses and Stuns during Effect", statOrder = { 1024 }, level = 1, group = "KiarasDeterminationBuff", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["LocalPhysicalDamageAddedAsEachElementTransformed"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["LocalPhysicalDamageAddedAsEachElementTransformed2"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 50, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["LocalPhysicalDamageAddedAsEachElementUnique__1"] = { affix = "", "Gain 100% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["BleedOnMeleeHitChanceUnique__1"] = { affix = "", "Melee Attacks have (30-50)% chance to cause Bleeding", statOrder = { 2487 }, level = 1, group = "BleedOnMeleeHitChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ArmourAndEvasionImplicitBelt1"] = { affix = "", "+(260-320) to Armour and Evasion Rating", statOrder = { 4266 }, level = 98, group = "ArmourAndEvasionRatingImplicit", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["PhysicalDamageTakenAsColdUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Cold Damage", statOrder = { 2448 }, level = 1, group = "PhysicalDamageTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, + ["ChaosDamageOverTimeUnique__1"] = { affix = "", "25% reduced Chaos Damage taken over time", statOrder = { 1948 }, level = 1, group = "ChaosDamageOverTimeTaken", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["PowerFrenzyOrEnduranceChargeOnKillUnique__1"] = { affix = "", "(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill", statOrder = { 3612 }, level = 1, group = "PowerFrenzyOrEnduranceChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["CannotLeechFromCriticalStrikesUnique___1"] = { affix = "", "Cannot Leech Life from Critical Strikes", statOrder = { 4277 }, level = 1, group = "CannotLeechFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, }, + ["ChanceToBlindOnCriticalStrikesUnique__1"] = { affix = "", "30% chance to Blind Enemies on Critical Strike", statOrder = { 4278 }, level = 1, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ChanceToBlindOnCriticalStrikesUnique__2_"] = { affix = "", "(40-50)% chance to Blind Enemies on Critical Strike", statOrder = { 4278 }, level = 38, group = "ChanceToBlindOnCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["BleedOnMeleeCriticalStrikeUnique__1"] = { affix = "", "50% chance to cause Bleeding on Critical Strike", statOrder = { 7873 }, level = 1, group = "LocalCausesBleedingOnCrit50PercentChance", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["StunDurationBasedOnEnergyShieldUnique__1"] = { affix = "", "Stun Threshold is based on Energy Shield instead of Life", statOrder = { 4276 }, level = 48, group = "StunDurationBasedOnEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TakeNoExtraDamageFromCriticalStrikesUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes", statOrder = { 4288 }, level = 1, group = "TakeNoExtraDamageFromCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ShockedEnemyCastSpeedUnique__1"] = { affix = "", "Enemies you Shock have 30% reduced Cast Speed", statOrder = { 4289 }, level = 1, group = "ShockedEnemyCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ShockedEnemyMovementSpeedUnique__1"] = { affix = "", "Enemies you Shock have 20% reduced Movement Speed", statOrder = { 4290 }, level = 1, group = "ShockedEnemyMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1"] = { affix = "", "100% increased Burning Damage if you've Ignited an Enemy Recently", statOrder = { 4300 }, level = 1, group = "IncreasedBurningDamageIfYouHaveIgnitedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["RecoverLifePercentOnIgniteUnique__1"] = { affix = "", "Recover 1% of Life when you Ignite an Enemy", statOrder = { 4301 }, level = 1, group = "RecoverLifePercentOnIgnite", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "100% increased Melee Physical Damage against Ignited Enemies", statOrder = { 4302 }, level = 1, group = "IncreasedMeleePhysicalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["NormalMonsterItemQuantityUnique__1"] = { affix = "", "(35-50)% increased Quantity of Items Dropped by Slain Normal Enemies", statOrder = { 9513 }, level = 38, group = "NormalMonsterItemQuantity", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["MagicMonsterItemRarityUnique__1"] = { affix = "", "(100-150)% increased Rarity of Items Dropped by Slain Magic Enemies", statOrder = { 8149 }, level = 1, group = "MagicMonsterItemRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["HeistContractChestRewardsDuplicated"] = { affix = "", "Heist Chests have a 100% chance to Duplicate their contents", "Monsters have 100% more Life", statOrder = { 5540, 8516 }, level = 1, group = "HeistContractChestRewardsDuplicated", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeistContractAdditionalIntelligence"] = { affix = "", "Completing a Heist generates 3 additional Reveals", "Heist Chests have 25% chance to contain nothing", statOrder = { 8512, 8513 }, level = 1, group = "HeistContractAdditionalIntelligence", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeistContractNPCPerksDoubled"] = { affix = "", "50% reduced time before Lockdown", "Rogue Perks are doubled", statOrder = { 6208, 8517 }, level = 1, group = "HeistContractNPCPerksDoubled", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeistContractBetterTargetValue"] = { affix = "", "Rogue Equipment cannot be found", "200% more Rogue's Marker value of primary Heist Target", statOrder = { 8514, 8515 }, level = 1, group = "HeistContractBetterTargetValue", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeistBlueprintRewardAlwaysUnique"] = { affix = "", "Heist Targets are always Replica Unique Items", statOrder = { 6969 }, level = 1, group = "HeistBlueprintRewardAlwaysUnique", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeistBlueprintRewardAlwaysExperimented"] = { affix = "", "Heist Targets are always Experimented Items", statOrder = { 6967 }, level = 1, group = "HeistBlueprintRewardAlwaysExperimented", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeistBlueprintRewardAlwaysEnchanted"] = { affix = "", "Heist Targets are always Enchanted Armaments", statOrder = { 6966 }, level = 1, group = "HeistBlueprintRewardAlwaysEnchanted", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeistBlueprintRewardAlwaysCurrencyScarab"] = { affix = "", "Heist Targets are always Currency or Scarabs", statOrder = { 6965 }, level = 1, group = "HeistBlueprintRewardAlwaysCurrencyScarab", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeistBlueprintRewardAlwaysTrinket"] = { affix = "", "Heist Targets are always Thieves' Trinkets", statOrder = { 6968 }, level = 1, group = "HeistBlueprintRewardAlwaysTrinket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CriticalStrikeChanceForForkingArrowsUnique__1"] = { affix = "", "(150-200)% increased Critical Strike Chance with arrows that Fork", statOrder = { 4303 }, level = 1, group = "CriticalStrikeChanceForForkingArrows", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["ArrowsAlwaysCritAfterPiercingUnique___1"] = { affix = "", "Arrows Pierce all Targets after Chaining", statOrder = { 4306 }, level = 1, group = "ArrowsAlwaysCritAfterPiercing", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ArrowsThatPierceCauseBleedingUnique__1"] = { affix = "", "Arrows that Pierce have 50% chance to inflict Bleeding", statOrder = { 4305 }, level = 1, group = "ArrowsThatPierceCauseBleeding25Percent", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["IncreaseProjectileAttackDamagePerAccuracyUnique__1"] = { affix = "", "1% increased Projectile Attack Damage per 200 Accuracy Rating", statOrder = { 4308 }, level = 1, group = "IncreaseProjectileAttackDamagePerAccuracy", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["AdditionalSpellProjectilesUnique__1"] = { affix = "", "Spells fire an additional Projectile", statOrder = { 4307 }, level = 85, group = "AdditionalSpellProjectiles", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["IncreasedMinionDamageIfYouHitEnemyUnique__1"] = { affix = "", "Minions deal 70% increased Damage if you've Hit Recently", statOrder = { 9295 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 3751 }, level = 1, group = "MinionDamageAlsoAffectsYouAt150%", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["GlobalCriticalStrikeChanceAgainstChilledUnique__1"] = { affix = "", "60% increased Critical Strike Chance against Chilled Enemies", statOrder = { 6873 }, level = 1, group = "GlobalCriticalStrikeChanceAgainstChilled", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CastSocketedColdSkillsOnCriticalStrikeUnique__1"] = { affix = "", "Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown", statOrder = { 827 }, level = 1, group = "CastSocketedColdSpellsOnMeleeCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "skill", "elemental", "cold", "attack", "caster", "gem" }, }, + ["IncreasedAttackAreaOfEffectUnique__1_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4835 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAttackAreaOfEffectUnique__2_"] = { affix = "", "20% increased Area of Effect for Attacks", statOrder = { 4835 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedAttackAreaOfEffectUnique__3"] = { affix = "", "(-40-40)% reduced Area of Effect for Attacks", statOrder = { 4835 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["PhysicalDamageCanShockUnique__1"] = { affix = "", "Your Physical Damage can Shock", statOrder = { 2881 }, level = 1, group = "PhysicalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["DealNoElementalDamageUnique__1"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6142 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DealNoElementalDamageUnique__2"] = { affix = "", "Deal no Elemental Damage", statOrder = { 6142 }, level = 1, group = "DealNoElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["TakeFireDamageOnIgniteUnique__1"] = { affix = "", "Take 100 Fire Damage when you Ignite an Enemy", statOrder = { 6574 }, level = 1, group = "TakeFireDamageOnIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageLeechedAsLifeWhileIgnitedUnique__1"] = { affix = "", "2% of Fire Damage Leeched as Life while Ignited", statOrder = { 7369 }, level = 1, group = "FireDamageLeechedAsLifeWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["ChanceForSpectersToGainSoulEaterOnKillUnique__1"] = { affix = "", "With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill", statOrder = { 8122 }, level = 1, group = "ChanceForSpectersToGainSoulEaterOnKill", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MovementSkillsDealNoPhysicalDamageUnique__1"] = { affix = "", "Movement Skills deal no Physical Damage", statOrder = { 9407 }, level = 1, group = "MovementSkillsDealNoPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["GainPhasingIfKilledRecentlyUnique__1"] = { affix = "", "You have Phasing if you've Killed Recently", statOrder = { 6796 }, level = 1, group = "GainPhasingIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MovementSkillsCostNoManaUnique__1"] = { affix = "", "Movement Skills Cost no Mana", statOrder = { 3472 }, level = 1, group = "MovementSkillsCostNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ProjectileAttackDamageImplicitGloves1"] = { affix = "", "(14-18)% increased Projectile Attack Damage", statOrder = { 1997 }, level = 1, group = "ProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["ManaPerStrengthUnique__1__"] = { affix = "", "+1 Mana per 4 Strength", statOrder = { 2022 }, level = 1, group = "ManaPerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["EnergyShieldPerStrengthUnique__1"] = { affix = "", "1% increased Energy Shield per 10 Strength", statOrder = { 6442 }, level = 1, group = "EnergyShieldPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LifePerDexterityUnique__1"] = { affix = "", "+1 Life per 4 Dexterity", statOrder = { 2021 }, level = 1, group = "LifePerDexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MeleePhysicalDamagePerDexterityUnique__1_"] = { affix = "", "2% increased Melee Physical Damage per 10 Dexterity", statOrder = { 9195 }, level = 1, group = "MeleePhysicalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AccuracyPerIntelligenceUnique__1"] = { affix = "", "+2 Accuracy Rating per 2 Intelligence", statOrder = { 2020 }, level = 1, group = "AccuracyPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["EvasionRatingPerIntelligenceUnique__1"] = { affix = "", "2% increased Evasion Rating per 10 Intelligence", statOrder = { 6476 }, level = 1, group = "EvasionRatingPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["ChanceToGainFrenzyChargeOnStunUnique__1"] = { affix = "", "15% chance to gain a Frenzy Charge when you Stun an Enemy", statOrder = { 5691 }, level = 38, group = "ChanceToGainFrenzyChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["VulnerabilityAuraDuringFlaskEffectUnique__1"] = { affix = "", "Grants Level 21 Despair Curse Aura during Effect", statOrder = { 1027 }, level = 60, group = "VulnerabilityAuraDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, }, + ["VulnerabilityAuraDuringFlaskEffectUnique__1Alt"] = { affix = "", "Grants Level 21 Vulnerability Curse Aura during Effect", statOrder = { 1028 }, level = 60, group = "VulnerabilityAuraDuringFlaskEffectNew", weightKey = { }, weightVal = { }, modTags = { "flask", "caster", "curse" }, }, + ["PrrojectilesPierceWhilePhasingUnique__1_"] = { affix = "", "Projectiles Pierce all Targets while you have Phasing", statOrder = { 9754 }, level = 1, group = "PrrojectilesPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalPierceWhilePhasingUnique__1"] = { affix = "", "Projectiles Pierce 5 additional Targets while you have Phasing", statOrder = { 9755 }, level = 1, group = "AdditionalPierceWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToAvoidProjectilesWhilePhasingUnique__1"] = { affix = "", "20% chance to Avoid Projectiles while Phasing", statOrder = { 4951 }, level = 1, group = "ChanceToAvoidProjectilesWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskAdditionalProjectilesDuringEffectUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles during Effect", statOrder = { 997 }, level = 85, group = "FlaskAdditionalProjectilesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskIncreasedAreaOfEffectDuringEffectUnique__1_"] = { affix = "", "(10-20)% increased Area of Effect during Effect", statOrder = { 971 }, level = 1, group = "FlaskIncreasedAreaOfEffectDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["CelestialFootprintsUnique__1_"] = { affix = "", "Celestial Footprints", statOrder = { 10854 }, level = 1, group = "CelestialFootprints", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedMinionAttackSpeedUnique__1_"] = { affix = "", "Minions have (10-15)% increased Attack Speed", statOrder = { 2907 }, level = 1, group = "MinionAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, }, + ["GolemPerPrimordialJewel"] = { affix = "", "+1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped", statOrder = { 9534 }, level = 1, group = "GolemPerPrimordialJewel", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["PrimordialJewelCountUnique__1"] = { affix = "", "Primordial", statOrder = { 10719 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["PrimordialJewelCountUnique__2"] = { affix = "", "Primordial", statOrder = { 10719 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["PrimordialJewelCountUnique__3"] = { affix = "", "Primordial", statOrder = { 10719 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["PrimordialJewelCountUnique__4"] = { affix = "", "Primordial", statOrder = { 10719 }, level = 1, group = "PrimordialJewelCount", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["GolemLifeUnique__1"] = { affix = "", "Golems have (18-22)% increased Maximum Life", statOrder = { 6897 }, level = 1, group = "GolemLifeUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["GolemLifeRegenerationUnique__1"] = { affix = "", "Summoned Golems Regenerate 2% of their Life per second", statOrder = { 6895 }, level = 1, group = "GolemLifeRegenerationUnique", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["IncreasedDamageIfGolemSummonedRecently__1"] = { affix = "", "(25-30)% increased Damage if you Summoned a Golem in the past 8 seconds", statOrder = { 3698 }, level = 1, group = "IncreasedDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedGolemDamageIfGolemSummonedRecently__1_"] = { affix = "", "Golems Summoned in the past 8 seconds deal (35-45)% increased Damage", statOrder = { 3699 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1"] = { affix = "", "Golems Summoned in the past 8 seconds deal (100-125)% increased Damage", statOrder = { 3699 }, level = 1, group = "IncreasedGolemDamageIfGolemSummonedRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["GolemSkillsCooldownRecoveryUnique__1"] = { affix = "", "Golem Skills have (20-30)% increased Cooldown Recovery Rate", statOrder = { 3330 }, level = 1, group = "GolemSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GolemsSkillsCooldownRecoveryUnique__1_"] = { affix = "", "Summoned Golems have (30-45)% increased Cooldown Recovery Rate", statOrder = { 3331 }, level = 1, group = "GolemsSkillsCooldownRecoveryUnique", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["GolemBuffEffectUnique__1"] = { affix = "", "30% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 1, group = "GolemBuffEffectUnique", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GolemAttackAndCastSpeedUnique__1"] = { affix = "", "Golems have (16-20)% increased Attack and Cast Speed", statOrder = { 6891 }, level = 1, group = "GolemAttackAndCastSpeedUnique", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["GolemArmourRatingUnique__1"] = { affix = "", "Golems have +(800-1000) to Armour", statOrder = { 6900 }, level = 1, group = "GolemArmourRatingUnique", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "minion" }, }, + ["ArmourPerTotemUnique__1"] = { affix = "", "+300 Armour per Summoned Totem", statOrder = { 4500 }, level = 1, group = "ArmourPerTotem", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SpellDamageIfYouHaveCritRecentlyUnique__1"] = { affix = "", "200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 10149 }, level = 1, group = "SpellDamageIfCritPast8Seconds", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellDamageIfYouHaveCritRecentlyUnique__2"] = { affix = "", "(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently", statOrder = { 10145 }, level = 1, group = "SpellDamageIfYouHaveCritRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["CriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Critical Strikes deal no Damage", statOrder = { 5979 }, level = 1, group = "CriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["LocalNoCriticalStrikeMultiplierUnique_1"] = { affix = "", "Critical Strikes with this Weapon do not deal extra Damage", statOrder = { 1490 }, level = 1, group = "LocalCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["IncreasedManaRegenerationWhileStationaryUnique__1"] = { affix = "", "60% increased Mana Regeneration Rate while stationary", statOrder = { 4316 }, level = 1, group = "IncreasedManaRegenerationWhileStationary", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AddedArmourWhileStationaryUnique__1"] = { affix = "", "+1500 Armour while stationary", statOrder = { 4314 }, level = 1, group = "AddedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SpreadChilledGroundWhenHitByAttackUnique__1"] = { affix = "", "15% chance to create Chilled Ground when Hit with an Attack", statOrder = { 5774 }, level = 1, group = "SpreadChilledGroundWhenHitByAttack", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalFlaskUnholyMightUnique__1"] = { affix = "", "Unholy Might during Effect", statOrder = { 1050 }, level = 1, group = "LocalFlaskUnholyMight", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["NonCriticalStrikesDealNoDamageUnique__1"] = { affix = "", "Non-Critical Strikes deal no Damage", statOrder = { 9491 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["NonCriticalStrikesDealNoDamageUnique__2"] = { affix = "", "Non-Critical Strikes deal no Damage", statOrder = { 9491 }, level = 1, group = "NonCriticalStrikesDealNoDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["CritMultiIfDealtNonCritRecentlyUnique__1"] = { affix = "", "+25% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently", statOrder = { 5948 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CritMultiIfDealtNonCritRecentlyUnique__2"] = { affix = "", "+60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently", statOrder = { 5948 }, level = 1, group = "CritMultiIfDealtNonCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["EnemiesDestroyedOnKillUnique__1"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 6375 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RecoverPercentMaxLifeOnKillUnique__1"] = { affix = "", "Recover 5% of Life on Kill", statOrder = { 1749 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["RecoverPercentMaxLifeOnKillUnique__2"] = { affix = "", "Recover 5% of Life on Kill", statOrder = { 1749 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["RecoverPercentMaxLifeOnKillUnique__3"] = { affix = "", "Recover 1% of Life on Kill", statOrder = { 1749 }, level = 1, group = "RecoverPercentMaxLifeOnKill", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["CriticalMultiplierPerBlockChanceUnique__1"] = { affix = "", "+1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage", statOrder = { 3189 }, level = 1, group = "CriticalMultiplierPerBlockChance", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["AttackDamagePerLowestArmourOrEvasionUnique__1"] = { affix = "", "1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating", statOrder = { 4855 }, level = 98, group = "AttackDamagePerLowestArmourOrEvasion", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["FortifyOnMeleeStunUnique__1"] = { affix = "", "Melee Hits which Stun Fortify", statOrder = { 5678 }, level = 1, group = "FortifyOnMeleeStun", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OnslaughtWhileFortifiedUnique__1"] = { affix = "", "You have Onslaught while Fortified", statOrder = { 6792 }, level = 1, group = "OnslaughtWhileFortified", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemStatsDoubledInBreachImplicit"] = { affix = "", "Properties are doubled while in a Breach", statOrder = { 7952 }, level = 1, group = "StatsDoubledInBreach", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonSpidersOnKillUnique__1"] = { affix = "", "100% chance to Trigger Level 1 Raise Spiders on Kill", statOrder = { 782 }, level = 1, group = "GrantsSpiderMinion", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["CannotCastSpellsUnique__1"] = { affix = "", "Cannot Cast Spells", statOrder = { 5429 }, level = 1, group = "CannotCastSpells", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["CannotDealSpellDamageUnique__1"] = { affix = "", "Spell Skills deal no Damage", statOrder = { 10166 }, level = 1, group = "CannotDealSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["GoatHoofFootprintsUnique__1"] = { affix = "", "Burning Hoofprints", statOrder = { 10857 }, level = 1, group = "GoatHoofFootprints", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FireDamagePerStrengthUnique__1"] = { affix = "", "1% increased Fire Damage per 20 Strength", statOrder = { 6563 }, level = 1, group = "FireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["GolemLargerAggroRadiusUnique__1"] = { affix = "", "Summoned Golems are Aggressive", statOrder = { 10759 }, level = 1, group = "GolemLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MaximumLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "20% of Maximum Life Converted to Energy Shield", statOrder = { 9161 }, level = 75, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["MaximumLifeConvertedToEnergyShieldUnique__2"] = { affix = "", "50% of Maximum Life Converted to Energy Shield", statOrder = { 9161 }, level = 1, group = "MaximumLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalChanceToPoisonOnHitUnique__1"] = { affix = "", "15% chance to Poison on Hit", statOrder = { 8002 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["LocalChanceToPoisonOnHitUnique__2"] = { affix = "", "60% chance to Poison on Hit", statOrder = { 8002 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["LocalChanceToPoisonOnHitUnique__3"] = { affix = "", "20% chance to Poison on Hit", statOrder = { 8002 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["LocalChanceToPoisonOnHitUnique__4"] = { affix = "", "20% chance to Poison on Hit", statOrder = { 8002 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["ChanceToPoisonUnique__1_______"] = { affix = "", "25% chance to Poison on Hit", statOrder = { 3173 }, level = 1, group = "PoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["IncreasedSpellDamageWhileShockedUnique__1"] = { affix = "", "50% increased Spell Damage while Shocked", statOrder = { 10158 }, level = 1, group = "IncreasedSpellDamageWhileShocked", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["MaximumResistanceWithNoEnduranceChargesUnique__1__"] = { affix = "", "+2% to all maximum Resistances while you have no Endurance Charges", statOrder = { 4566 }, level = 1, group = "MaximumResistanceWithNoEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["OnslaughtWithMaxEnduranceChargesUnique__1"] = { affix = "", "You have Onslaught while at maximum Endurance Charges", statOrder = { 6788 }, level = 1, group = "OnslaughtWithMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionsGainYourStrengthUnique__1"] = { affix = "", "Half of your Strength is added to your Minions", statOrder = { 9353 }, level = 1, group = "MinionsGainYourStrength", weightKey = { }, weightVal = { }, modTags = { "minion", "attribute" }, }, + ["AdditionalZombiesPerXStrengthUnique__1"] = { affix = "", "+1 to maximum number of Raised Zombies per 500 Strength", statOrder = { 9540 }, level = 1, group = "AdditionalZombiesPerXStrength", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["ZombiesLeechLifeToYouAt1000StrengthUnique__1"] = { affix = "", "With at least 1000 Strength, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Life", statOrder = { 10754 }, level = 1, group = "ZombiesLeechLifeToYouAt1000Strength", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["ReducedBleedDurationUnique__1_"] = { affix = "", "25% reduced Bleeding Duration", statOrder = { 4994 }, level = 1, group = "BleedDuration", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["IncreasedRarityPerRampageStacksUnique__1"] = { affix = "", "1% increased Rarity of Items found per 15 Rampage Kills", statOrder = { 7305 }, level = 38, group = "IncreasedRarityPerRampageStacks", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["ImmuneToBurningShockedChilledGroundUnique__1"] = { affix = "", "Immune to Burning Ground, Shocked Ground and Chilled Ground", statOrder = { 7217 }, level = 1, group = "ImmuneToBurningShockedChilledGround", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["MaximumLifePer10DexterityUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Dexterity", statOrder = { 9155 }, level = 1, group = "FlatLifePer10Dexterity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationWhileMovingUnique__1"] = { affix = "", "Regenerate 100 Life per second while moving", statOrder = { 7406 }, level = 1, group = "LifeRegenerationWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SpellsAreDisabledUnique__1"] = { affix = "", "Your Spells are disabled", statOrder = { 10696 }, level = 1, group = "SpellsAreDisabled", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["MaximumLifePerItemRarityUnique__1"] = { affix = "", "+1 Life per 2% increased Rarity of Items found", statOrder = { 9157 }, level = 1, group = "MaxLifePerItemRarity", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["PercentDamagePerItemQuantityUnique__1"] = { affix = "", "Your Increases and Reductions to Quantity of Items found also apply to Damage", statOrder = { 6060 }, level = 1, group = "PercentDamagePerItemQuantity", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ItemQuantityPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% increased Quantity of Items found per Chest opened Recently", statOrder = { 7304 }, level = 1, group = "ItemQuantityPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["MovementSpeedPerChestOpenedRecentlyUnique__1"] = { affix = "", "2% reduced Movement Speed per Chest opened Recently", statOrder = { 9424 }, level = 1, group = "MovementSpeedPerChestOpenedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["WarcryKnockbackUnique__1"] = { affix = "", "Warcries Knock Back and Interrupt Enemies in a smaller Area", statOrder = { 10565 }, level = 1, group = "WarcryKnockback", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackAndCastSpeedOnUsingMovementSkillUnique__1"] = { affix = "", "15% increased Attack and Cast Speed if you've used a Movement Skill Recently", statOrder = { 3473 }, level = 1, group = "AttackAndCastSpeedOnUsingMovementSkill", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["CannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Action Speed cannot be modified to below Base Value", statOrder = { 3194 }, level = 1, group = "CannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementCannotBeSlowedBelowBaseUnique__1"] = { affix = "", "Movement Speed cannot be modified to below Base Value", statOrder = { 3196 }, level = 1, group = "MovementCannotBeSlowedBelowBase", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["EnergyShieldStartsAtZero"] = { affix = "", "Your Energy Shield starts at zero", statOrder = { 10815 }, level = 1, group = "EnergyShieldStartsAtZero", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["FlaskElementalPenetrationOfHighestResistUnique__1"] = { affix = "", "During Effect, Damage Penetrates (5-8)% Resistance of each Element for which your Uncapped Elemental Resistance is highest", statOrder = { 1053 }, level = 1, group = "FlaskElementalPenetrationOfHighestResist", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, }, + ["FlaskElementalDamageTakenOfLowestResistUnique__1"] = { affix = "", "During Effect, 6% reduced Damage taken of each Element for which your Uncapped Elemental Resistance is lowest", statOrder = { 1052 }, level = 1, group = "FlaskElementalDamageTakenOfLowestResist", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SocketedGemsSupportedByEnduranceChargeOnStunUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 526 }, level = 1, group = "DisplaySupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplayGrantsVengeanceUnique__1"] = { affix = "", "Grants Level 15 Battlemage's Cry Skill", statOrder = { 689 }, level = 1, group = "BattlemagesCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["CannotLeechLifeUnique__1"] = { affix = "", "Cannot Leech Life", statOrder = { 2567 }, level = 1, group = "CannotLeechLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AllResistanceAt200StrengthUnique__1"] = { affix = "", "+(20-25)% to all Elemental Resistances while you have at least 200 Strength", statOrder = { 4362 }, level = 1, group = "AllResistanceAt200Strength", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["LifeRegenerationAt400StrengthUnique__1"] = { affix = "", "Regenerate 2% of Life per second with at least 400 Strength", statOrder = { 7427 }, level = 1, group = "LifeRegenerationAt400Strength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationIfHitRecentlyUnique__1"] = { affix = "", "Regenerate 2% of Life per second if you have been Hit Recently", statOrder = { 7415 }, level = 1, group = "LifeRegenerationIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AttackBlockIfBlockedSpellRecentlyUnique__1_"] = { affix = "", "+100% Chance to Block Attack Damage if you have Blocked Spell Damage Recently", statOrder = { 4837 }, level = 1, group = "AttackBlockIfBlockedSpellRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["SpellBlockIfBlockedAttackRecentlyUnique__1"] = { affix = "", "+100% chance to Block Spell Damage if you have Blocked Attack Damage Recently", statOrder = { 10134 }, level = 1, group = "SpellBlockIfBlockedAttackRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AddedChaosDamageWhileUsingAFlaskUnique__1_"] = { affix = "", "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect", statOrder = { 10127 }, level = 1, group = "AddedChaosDamageWhileUsingAFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster" }, }, + ["AddedChaosDamageWhileUsingAFlaskUnique__2"] = { affix = "", "Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect", statOrder = { 10127 }, level = 1, group = "AddedChaosDamageWhileUsingAFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster" }, }, + ["GainPowerChargesOnUsingWarcryUnique__1"] = { affix = "", "Gain 2 Power Charges when you Warcry", statOrder = { 6704 }, level = 1, group = "GainPowerChargesOnUsingWarcry", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["AttackLeechAgainstTauntedEnemyUnique__1"] = { affix = "", "2% of Attack Damage Leeched as Life against Taunted Enemies", statOrder = { 7367 }, level = 1, group = "AttackLeechAgainstTauntedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["WarcryCooldownSpeedUnique__1"] = { affix = "", "50% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WarcryCooldownSpeedUnique__2"] = { affix = "", "50% increased Warcry Cooldown Recovery Rate", statOrder = { 3329 }, level = 1, group = "WarcryCooldownSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WarcryEffectUnique__1"] = { affix = "", "25% increased Warcry Buff Effect", statOrder = { 10566 }, level = 1, group = "WarcryEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WarcryEffectUnique__2"] = { affix = "", "25% increased Warcry Buff Effect", statOrder = { 10566 }, level = 1, group = "WarcryEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OnslaughtOnUsingWarcryUnique__1"] = { affix = "", "Gain Onslaught for 4 seconds when you Warcry", statOrder = { 6783 }, level = 1, group = "OnslaughtOnUsingWarcry", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AddedColdDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "Adds 40 to 60 Cold Damage against Chilled Enemies", statOrder = { 9232 }, level = 1, group = "AddedColdDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageAgainstFrozenEnemiesUnique__2"] = { affix = "", "Adds 60 to 80 Cold Damage against Chilled Enemies", statOrder = { 9232 }, level = 1, group = "AddedColdDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["CannotBeShockedWhileChilledUnique__1"] = { affix = "", "100% chance to Avoid being Shocked while Chilled", statOrder = { 4952 }, level = 1, group = "AvoidShockWhileChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChanceToShockChilledEnemiesUnique__1"] = { affix = "", "50% chance to Shock Chilled Enemies", statOrder = { 5721 }, level = 1, group = "ChanceToShockChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1"] = { affix = "", "100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently", statOrder = { 4945 }, level = 1, group = "AvoidFreezeAndChillIfFireSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["HeraldOfThunderBuffEffectUnique__1"] = { affix = "", "Herald of Thunder has 50% increased Buff Effect", statOrder = { 7125 }, level = 1, group = "HeraldOfThunderBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeRegenerationPerLevelUnique__1"] = { affix = "", "Regenerate 3 Life per second per Level", statOrder = { 2961 }, level = 1, group = "LifeRegenerationPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["TotemLeechLifeToYouUnique__1"] = { affix = "", "0.5% of Damage dealt by your Totems is Leeched to you as Life", statOrder = { 4237 }, level = 1, group = "TotemLeechLifeToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["TriggeredConsecrateUnique__1"] = { affix = "", "Trigger Level 10 Consecrate when you deal a Critical Strike", statOrder = { 675 }, level = 1, group = "TriggeredConsecrate", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, }, + ["HallowOnHitVsConsecratedEnemyUnique__1"] = { affix = "", "Inflict Hallowing Flame on Hit while on Consecrated Ground", statOrder = { 7277 }, level = 1, group = "HallowOnHitVsConsecratedEnemy", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["IncreasedDamageOnConsecratedGroundUnique__1"] = { affix = "", "50% increased Damage while on Consecrated Ground", statOrder = { 3552 }, level = 1, group = "IncreasedDamageOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["BlockChanceOnConsecratedGroundUnique__1"] = { affix = "", "+5% Chance to Block Attack Damage while on Consecrated Ground", statOrder = { 4545 }, level = 1, group = "BlockChanceOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChillEnemiesOnHitWithWeaponUnique__1"] = { affix = "", "Chill Enemies for 1 second on Hit with this Weapon when in Off Hand", statOrder = { 7876 }, level = 1, group = "ChillEnemiesOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, }, + ["SupportFlatAddedFireDamageUnique__1"] = { affix = "", "Socketed Gems deal 63 to 94 Added Fire Damage", statOrder = { 556 }, level = 1, group = "SupportFlatAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["PhysicalDamageToAttacksPerLevelUnique__1_"] = { affix = "", "Adds 1 to 2 Physical Damage to Attacks per Level", statOrder = { 4876 }, level = 1, group = "PhysicalDamageToAttacksPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["PhysicalDamageToAttacksPerLevelUnique__2"] = { affix = "", "Adds 2 to 3 Physical Damage to Attacks per Level", statOrder = { 4876 }, level = 1, group = "PhysicalDamageToAttacksPerLevel", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["RightRingSlotMaximumManaUnique__1"] = { affix = "", "Right ring slot: +250 to maximum Mana", statOrder = { 2650 }, level = 1, group = "RightRingSlotMaximumMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["LeftRingSlotMaximumEnergyShieldUnique__1"] = { affix = "", "Left ring slot: +250 to maximum Energy Shield", statOrder = { 2671 }, level = 1, group = "LeftRingSlotMaximumEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LeftRingSlotFlatManaRegenerationUnique__1"] = { affix = "", "Left ring slot: Regenerate 40 Mana per Second", statOrder = { 2659 }, level = 1, group = "LeftRingSlotFlatManaRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["NearbyEnemiesAreIntimidatedUnique__1"] = { affix = "", "Nearby Enemies are Intimidated", statOrder = { 7908 }, level = 1, group = "NearbyEnemiesAreIntimidated", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NearbyAlliesMovementVelocityUnique__1"] = { affix = "", "10% increased Movement Speed", "10% increased Movement Speed for you and nearby Allies", statOrder = { 1798, 7900 }, level = 1, group = "NearbyAlliesMovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["WeaponElementalPenetrationUnique__1"] = { affix = "", "Damage with Weapons Penetrates 5% Elemental Resistances", statOrder = { 3599 }, level = 1, group = "WeaponElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["ElementalPenetrationUnique__1"] = { affix = "", "Damage Penetrates (0-20)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["IncreasedElementalDamageIfUsedWarcryRecentlyUnique__1"] = { affix = "", "150% increased Elemental Damage if you've Warcried Recently", statOrder = { 6303 }, level = 1, group = "IncreasedElementalDamageIfUsedWarcryRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["TriggeredAnimateWeaponUnique__1"] = { affix = "", "25% chance to Trigger Level 20 Animate Weapon on Kill", statOrder = { 766 }, level = 1, group = "TriggeredAnimateWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["AddedFireDamagePerStrengthUnique__1"] = { affix = "", "Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength", statOrder = { 4869 }, level = 1, group = "AddedFireDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["LocalGolemBuffEffectUnique__1"] = { affix = "", "25% increased Effect of Buffs granted by Socketed Golem Skills", statOrder = { 198 }, level = 1, group = "LocalGolemBuffEffect", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["LocalGolemLifeAddedAsESUnique__1"] = { affix = "", "Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 202 }, level = 1, group = "LocalGolemLifeAddedAsES", weightKey = { }, weightVal = { }, modTags = { "skill", "resource", "life", "defences", "energy_shield", "minion", "gem" }, }, + ["LocalGolemIncreasedAttackAndCastSpeedUnique__1"] = { affix = "", "Socketed Golem Skills have 20% increased Attack and Cast Speed", statOrder = { 197 }, level = 1, group = "LocalGolemIncreasedAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "speed", "minion", "gem" }, }, + ["LocalGolemGrantOnslaughtOnSummonUnique__1"] = { affix = "", "Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill", statOrder = { 201 }, level = 1, group = "LocalGolemGrantsOnslaughtOnSummon", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["LocalGolemTauntOnHitUnique__1_"] = { affix = "", "Socketed Golem Skills have 25% chance to Taunt on Hit", statOrder = { 199 }, level = 1, group = "LocalGolemTauntOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "minion", "gem" }, }, + ["LocalGolemLifeRegenerationUnique__1"] = { affix = "", "Socketed Golem Skills have Minions Regenerate 5% of Life per second", statOrder = { 200 }, level = 1, group = "LocalGolemLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "skill", "resource", "life", "minion", "gem" }, }, + ["LocalVaalDamageUnique__1_"] = { affix = "", "Socketed Vaal Skills deal 150% more Damage", statOrder = { 572 }, level = 80, group = "LocalVaalDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["LocalVaalSoulRequirementUnique__1"] = { affix = "", "Socketed Vaal Skills require 30% less Souls per Use", statOrder = { 581 }, level = 80, group = "LocalVaalSoulRequirement", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["LocalVaalUsesToStoreUnique__1"] = { affix = "", "Socketed Vaal Skills have 20% chance to regain consumed Souls when used", statOrder = { 582 }, level = 80, group = "LocalVaalUsesToStore", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["LocalVaalIgnoreMonsterResistancesUnique__1"] = { affix = "", "Hits from Socketed Vaal Skills ignore Enemy Monster Resistances", statOrder = { 577 }, level = 80, group = "LocalVaalIgnoreMonsterResistances", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["LocalVaalIgnoreMonsterPhysicalReductionUnique__1"] = { affix = "", "Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction", statOrder = { 576 }, level = 80, group = "LocalVaalIgnoreMonsterPhysicalReduction", weightKey = { }, weightVal = { }, modTags = { "physical", "vaal" }, }, + ["LocalVaalElusiveOnUseUnique__1_"] = { affix = "", "Socketed Vaal Skills grant Elusive when Used", statOrder = { 574 }, level = 80, group = "LocalVaalElusiveOnUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["LocalVaalTailwindIfUsedRecentlyUnique__1"] = { affix = "", "You have Tailwind if you've used a Socketed Vaal Skill Recently", statOrder = { 585 }, level = 80, group = "LocalVaalTailwindIfUsedRecently", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["LocalVaalAreaOfEffectUnique__1"] = { affix = "", "Socketed Vaal Skills have 60% increased Area of Effect", statOrder = { 570 }, level = 80, group = "LocalVaalAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["LocalVaalProjectileSpeedUnique__1"] = { affix = "", "Socketed Vaal Skills have 80% increased Projectile Speed", statOrder = { 579 }, level = 80, group = "LocalVaalProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "vaal" }, }, + ["LocalVaalSkillEffectDurationUnique__1"] = { affix = "", "Socketed Vaal Skills have 80% increased Skill Effect Duration", statOrder = { 573 }, level = 80, group = "LocalVaalSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["LocalVaalSoulGainPreventionUnique__1"] = { affix = "", "Socketed Vaal Skills have 30% reduced Soul Gain Prevention Duration", statOrder = { 580 }, level = 80, group = "LocalVaalSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["LocalVaalLuckyDamageUnique__1"] = { affix = "", "Damage with Hits from Socketed Vaal Skills is Lucky", statOrder = { 575 }, level = 80, group = "LocalVaalLuckyDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["LocalVaalAuraEffectUnique__1"] = { affix = "", "Socketed Vaal Skills have 50% increased Aura Effect", statOrder = { 571 }, level = 80, group = "LocalVaalAuraEffect", weightKey = { }, weightVal = { }, modTags = { "aura", "vaal" }, }, + ["IncreasedDamageToChilledEnemies1"] = { affix = "", "(15-20)% increased Damage with Hits against Chilled Enemies", statOrder = { 6070 }, level = 1, group = "IncreasedDamageToChilledEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedFireDamgeIfHitRecentlyUnique__1"] = { affix = "", "100% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ImmuneToFreezeAndChillWhileIgnitedUnique__1"] = { affix = "", "Immune to Freeze and Chill while Ignited", statOrder = { 7229 }, level = 1, group = "ImmuneToFreezeAndChillWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["FirePenetrationIfBlockedRecentlyUnique__1"] = { affix = "", "Damage Penetrates 15% of Fire Resistance if you have Blocked Recently", statOrder = { 6583 }, level = 1, group = "FirePenetrationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DisplayGrantsBloodOfferingUnique__1_"] = { affix = "", "Grants Level 15 Blood Offering Skill", statOrder = { 679 }, level = 1, group = "DisplayGrantsBloodOffering", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["TriggeredSummonLesserShrineUnique__1"] = { affix = "", "Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 674 }, level = 1, group = "TriggeredSummonLesserShrine", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["CastLevel1SummonLesserShrineOnKillUnique"] = { affix = "", "(1-100)% chance to Trigger Level 1 Create Lesser Shrine when you Kill an Enemy", statOrder = { 674 }, level = 1, group = "CastLevel1SummonLesserShrineOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["LifeGainedOnStunUnique__1_"] = { affix = "", "Gain 50 Life when you Stun an Enemy", statOrder = { 6703 }, level = 40, group = "LifeGainedOnStun", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["RyuslathaMinimumDamageModifierUnique__1"] = { affix = "", "(30-40)% less Minimum Physical Attack Damage", statOrder = { 1200 }, level = 1, group = "RyuslathaMinimumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["RyuslathaMaximumDamageModifierUnique__1_"] = { affix = "", "(30-40)% more Maximum Physical Attack Damage", statOrder = { 1199 }, level = 1, group = "RyuslathaMaximumDamageModifier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AlwaysIgniteWhileBurningUnique__1"] = { affix = "", "You always Ignite while Burning", statOrder = { 4653 }, level = 1, group = "AlwaysIgniteWhileBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["AdditionalBlockWhileNotCursedUnique__1"] = { affix = "", "+10% Chance to Block Attack Damage while not Cursed", statOrder = { 4544 }, level = 1, group = "AdditionalBlockWhileNotCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalSpellBlockWhileCursedUnique__1"] = { affix = "", "+20% Chance to Block Spell Damage while Cursed", statOrder = { 4590 }, level = 1, group = "AdditionalSpellBlockWhileCursed", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["LifePerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Life per Level", statOrder = { 7386 }, level = 1, group = "LifePerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ManaPerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Mana per Level", statOrder = { 8185 }, level = 1, group = "ManaPerLevel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["EnergyShieldPerLevelUnique__1"] = { affix = "", "+(1-2) Maximum Energy Shield per Level", statOrder = { 6441 }, level = 1, group = "EnergyShieldPerLevel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ChaosDegenAuraUnique__1"] = { affix = "", "Trigger Level 20 Death Aura when Equipped", statOrder = { 662 }, level = 1, group = "ChaosDegenAuraUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SandMirageSkillUnique__1"] = { affix = "", "Grants level 20 Suspend in Time", statOrder = { 7894 }, level = 1, group = "SandMirageSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ResentmentFireDegenSkillUnique__1"] = { affix = "", "Trigger Level 20 Cinders when Equipped", statOrder = { 7896 }, level = 1, group = "ResentmentFireDegenSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["AnimosityPhysDegenSkillUnique__1"] = { affix = "", "Trigger Level 20 Tears of Rot when Equipped", statOrder = { 7895 }, level = 1, group = "AnimosityPhysDegenSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["PhysicalDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(28-35)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 1, group = "PhysicalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["FireExposureOnHitVsMaxResentmentStacksUnique__1"] = { affix = "", "Inflict Fire Exposure on Hit against Enemies with", "5 Cinderflame, applying -25% to Fire Resistance", statOrder = { 6580, 6580.1 }, level = 1, group = "FireExposureOnHitVsMaxResentmentStacks", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldsAlwaysCost45Unique__1"] = { affix = "", "Mana Reservation of Herald Skills is always 45%", statOrder = { 7105 }, level = 1, group = "HeraldsAlwaysCost45", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["StunAvoidancePerHeraldUnique__1"] = { affix = "", "35% chance to avoid being Stunned for each Herald Buff affecting you", statOrder = { 4953 }, level = 1, group = "StunAvoidancePerHerald", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedDamageIfShockedRecentlyUnique__1"] = { affix = "", "(20-50)% increased Damage if you have Shocked an Enemy Recently", statOrder = { 6051 }, level = 1, group = "IncreasedDamageIfShockedRecently", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ShockedEnemiesExplodeUnique__1_"] = { affix = "", "Shocked Enemies you Kill Explode, dealing 5% of", "their Life as Lightning Damage which cannot Shock", statOrder = { 10020, 10020.1 }, level = 1, group = "ShockedEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["UnaffectedByShockUnique__1"] = { affix = "", "Unaffected by Shock", statOrder = { 10477 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["UnaffectedByShockUnique__2"] = { affix = "", "Unaffected by Shock", statOrder = { 10477 }, level = 1, group = "UnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["MinionAttackSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Attack Speed per 50 Dexterity", statOrder = { 9275 }, level = 1, group = "MinionAttackSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "attack", "speed", "minion" }, }, + ["MinionMovementSpeedPerXDexUnique__1"] = { affix = "", "2% increased Minion Movement Speed per 50 Dexterity", statOrder = { 9321 }, level = 1, group = "MinionMovementSpeedPerXDex", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["MinionHitsOnlyKillIgnitedEnemiesUnique__1"] = { affix = "", "Minions' Hits can only Kill Ignited Enemies", statOrder = { 9363 }, level = 1, group = "MinionHitsOnlyKillIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["PoisonDamageUnique__1"] = { affix = "", "(40-60)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["PoisonDamageUnique__2"] = { affix = "", "(100-150)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["BleedDamageUnique__1_"] = { affix = "", "(40-60)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedingDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["LocalIncreaseSocketedHeraldLevelUnique__1_"] = { affix = "", "+2 to Level of Socketed Herald Gems", statOrder = { 182 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["LocalIncreaseSocketedHeraldLevelUnique__2"] = { affix = "", "+4 to Level of Socketed Herald Gems", statOrder = { 182 }, level = 1, group = "LocalIncreaseSocketedHeraldLevel", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_"] = { affix = "", "15% increased Area of Effect while you have no Frenzy Charges", statOrder = { 2056 }, level = 1, group = "IncreasedAreaOfSkillsWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1"] = { affix = "", "+50% Global Critical Strike Multiplier while you have no Frenzy Charges", statOrder = { 2055 }, level = 1, group = "GlobalCriticalMultiplierWithNoFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["AccuracyRatingWithMaxFrenzyChargesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating while at Maximum Frenzy Charges", statOrder = { 4522 }, level = 1, group = "AccuracyRatingWithMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ReducedAttackSpeedOfMovementSkillsUnique__1"] = { affix = "", "Movement Attack Skills have 40% reduced Attack Speed", statOrder = { 9404 }, level = 1, group = "ReducedAttackSpeedOfMovementSkills", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Cold Damage if you have used a Fire Skill Recently", statOrder = { 5808 }, level = 1, group = "IncreasedColdDamageIfUsedFireSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1"] = { affix = "", "(20-30)% increased Fire Damage if you have used a Cold Skill Recently", statOrder = { 6562 }, level = 1, group = "IncreasedFireDamageIfUsedColdSkillRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["IncreasedDamagePerPowerChargeUnique__1"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ChanceToGainMaximumPowerChargesUnique__1_"] = { affix = "", "25% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6775, 6775.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["FireDamageCanPoisonUnique__1"] = { affix = "", "Your Fire Damage can Poison", statOrder = { 2866 }, level = 1, group = "FireDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["ColdDamageCanPoisonUnique__1_"] = { affix = "", "Your Cold Damage can Poison", statOrder = { 2865 }, level = 1, group = "ColdDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["LightningDamageCanPoisonUnique__1"] = { affix = "", "Your Lightning Damage can Poison", statOrder = { 2867 }, level = 1, group = "LightningDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["FireSkillsChanceToPoisonUnique__1"] = { affix = "", "Fire Skills have 20% chance to Poison on Hit", statOrder = { 6587 }, level = 1, group = "FireSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["ColdSkillsChanceToPoisonUnique__1"] = { affix = "", "Cold Skills have 20% chance to Poison on Hit", statOrder = { 5837 }, level = 1, group = "ColdSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["LightningSkillsChanceToPoisonUnique__1_"] = { affix = "", "Lightning Skills have 20% chance to Poison on Hit", statOrder = { 7468 }, level = 1, group = "LightningSkillsChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["GainManaAsExtraEnergyShieldUnique__1"] = { affix = "", "Gain (10-15)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "GainManaAsExtraEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["GrantsTouchOfGodUnique__1"] = { affix = "", "Grants Level 20 Doryani's Touch Skill", statOrder = { 660 }, level = 1, group = "GrantsTouchOfGod", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["AdditionalPhysicalDamageReductionUnique_1UNUSED"] = { affix = "", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["UniqueReducedExtraDamageFromCrits__1"] = { affix = "", "You take (150-200)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 1, group = "ReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["SpellDamageSuppressedUnique__1"] = { affix = "", "Prevent +(4-6)% of Suppressed Spell Damage", statOrder = { 1141 }, level = 56, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellDamageSuppressedUnique__2"] = { affix = "", "-10% to amount of Suppressed Spell Damage Prevented", statOrder = { 1141 }, level = 1, group = "SpellDamageSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GrantsFrostbiteUnique__1"] = { affix = "", "Grants Level 5 Frostbite Skill", statOrder = { 637 }, level = 1, group = "FrostbiteSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsSummonBeastRhoaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Rhoa Skill", statOrder = { 630 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsSummonBeastUrsaUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Ursa Skill", statOrder = { 630 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsSummonBeastSnakeUnique__1"] = { affix = "", "Grants Level 20 Summon Bestial Snake Skill", statOrder = { 630 }, level = 1, group = "GrantsSummonBeast", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ChaosResistDoubledUnique__1"] = { affix = "", "Chaos Resistance is doubled", statOrder = { 5740 }, level = 1, group = "ChaosResistDoubled", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["PlayerFarShotUnique__1"] = { affix = "", "Far Shot", statOrder = { 10827 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionSkillManaCostUnique__1_"] = { affix = "", "(10-15)% reduced Mana Cost of Minion Skills", statOrder = { 9331 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, }, + ["MinionSkillManaCostUnique__2"] = { affix = "", "(20-30)% reduced Mana Cost of Minion Skills", statOrder = { 9331 }, level = 1, group = "MinionSkillManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, }, + ["TriggeredAbyssalCryUnique__1"] = { affix = "", "Trigger Level 1 Intimidating Cry on Hit", statOrder = { 825 }, level = 1, group = "TriggeredAbyssalCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["TriggeredLightningWarpUnique__1__"] = { affix = "", "Trigger Level 15 Lightning Warp on Hit with this Weapon", statOrder = { 748 }, level = 1, group = "TriggeredLightningWarp", weightKey = { }, weightVal = { }, modTags = { "skill", "caster" }, }, + ["SummonSkeletonsNumberOfSkeletonsToSummonUnique__1"] = { affix = "", "Summon 4 additional Skeletons with Summon Skeletons", statOrder = { 4001 }, level = 1, group = "SummonSkeletonsNumberOfSkeletonsToSummon", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["SummonSkeletonsCooldownTimeUnique__1"] = { affix = "", "+1 second to Summon Skeleton Cooldown", statOrder = { 10301 }, level = 1, group = "SummonSkeletonsCooldownTime", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["EnergyShieldRechargeStartsWhenStunnedUnique__1"] = { affix = "", "Energy Shield Recharge starts when you are Stunned", statOrder = { 6447 }, level = 1, group = "EnergyShieldRechargeStartsWhenStunned", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["TrapCooldownRecoveryUnique__1"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate for throwing Traps", statOrder = { 3461 }, level = 1, group = "TrapCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1"] = { affix = "", "You take 50% reduced Extra Damage from Critical Strikes while you have no Power Charges", statOrder = { 6537 }, level = 1, group = "ReducedExtraDamageFromCritsWithNoPowerCharges", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["PhysAddedAsChaosWithMaxPowerChargesUnique__1"] = { affix = "", "Gain (8-12)% of Physical Damage as Extra Chaos Damage while at maximum Power Charges", statOrder = { 3471 }, level = 1, group = "PhysAddedAsChaosWithMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["ScorchingRaySkillUnique__1"] = { affix = "", "Grants Level 25 Scorching Ray Skill", statOrder = { 653 }, level = 1, group = "ScorchingRaySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["BlightSkillUnique__1"] = { affix = "", "Grants Level 25 Blight Skill", statOrder = { 657 }, level = 1, group = "BlightSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique__1"] = { affix = "", "Grants Summon Harbinger of the Arcane Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique__2"] = { affix = "", "Grants Summon Harbinger of Time Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique__3"] = { affix = "", "Grants Summon Harbinger of Focus Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique__4_"] = { affix = "", "Grants Summon Harbinger of Directions Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique__5"] = { affix = "", "Grants Summon Harbinger of Storms Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique__6"] = { affix = "", "Grants Summon Harbinger of Brutality Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique2_1"] = { affix = "", "Grants Summon Greater Harbinger of the Arcane Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique2_2"] = { affix = "", "Grants Summon Greater Harbinger of Time Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique2__3"] = { affix = "", "Grants Summon Greater Harbinger of Focus Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique2_4"] = { affix = "", "Grants Summon Greater Harbinger of Directions Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique2_5"] = { affix = "", "Grants Summon Greater Harbinger of Storms Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["HarbingerSkillOnEquipUnique2_6"] = { affix = "", "Grants Summon Greater Harbinger of Brutality Skill", statOrder = { 633 }, level = 1, group = "HarbingerSkillOnEquip", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ChannelledSkillDamageUnique__1"] = { affix = "", "Channelling Skills deal (50-70)% increased Damage", statOrder = { 5727 }, level = 1, group = "ChannelledSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["VolkuurLessPoisonDurationUnique__1"] = { affix = "", "50% less Poison Duration", statOrder = { 3171 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["ProjectileAttackCriticalStrikeChanceUnique__1"] = { affix = "", "Projectile Attack Skills have (40-60)% increased Critical Strike Chance", statOrder = { 4317 }, level = 1, group = "ProjectileAttackCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SupportedByLesserPoisonUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Chance to Poison", statOrder = { 523 }, level = 1, group = "SupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByVileToxinsUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 522 }, level = 1, group = "SupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByInnervateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Innervate", statOrder = { 521 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByInnervateUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Innervate", statOrder = { 521 }, level = 1, group = "SupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByIceBiteUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Ice Bite", statOrder = { 512 }, level = 1, group = "SupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["GrantsVoidGazeUnique__1"] = { affix = "", "Trigger Level 10 Void Gaze when you use a Skill", statOrder = { 747 }, level = 1, group = "GrantsVoidGaze", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["AddedChaosDamageVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "Attacks with this Weapon deal 80 to 120 added Chaos Damage against", "Enemies affected by at least 5 Poisons", statOrder = { 9229, 9229.1 }, level = 1, group = "AddedChaosDamageVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["PoisonDurationPerPowerChargeUnique__1"] = { affix = "", "3% increased Poison Duration per Power Charge", statOrder = { 9687 }, level = 1, group = "PoisonDurationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonDamagePerFrenzyChargeUnique__1"] = { affix = "", "10% increased Damage with Poison per Frenzy Charge", statOrder = { 9679 }, level = 1, group = "PoisonDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1"] = { affix = "", "(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons", statOrder = { 6762 }, level = 1, group = "GainFrenzyChargeOnKillVsEnemiesWith5Poisons", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1"] = { affix = "", "(12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons", statOrder = { 6807 }, level = 1, group = "GainPowerChargeOnKillVsEnemiesWithLessThan5Poisons", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["PoisonDurationWithOver150IntelligenceUnique__1"] = { affix = "", "(15-25)% increased Poison Duration if you have at least 150 Intelligence", statOrder = { 9688 }, level = 1, group = "PoisonDurationWithOver150Intelligence", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonDamageWithOver300DexterityUnique__1"] = { affix = "", "(75-100)% increased Damage with Poison if you have at least 300 Dexterity", statOrder = { 9682 }, level = 1, group = "PoisonDamageWithOver300Dexterity", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["YouCannotBeHinderedUnique__1"] = { affix = "", "You cannot be Hindered", statOrder = { 10656 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, }, + ["YouCannotBeHinderedUnique__2"] = { affix = "", "You cannot be Hindered", statOrder = { 10656 }, level = 1, group = "YouCannotBeHindered", weightKey = { }, weightVal = { }, modTags = { "blue_herring" }, }, + ["LocalMaimOnHitChanceUnique__1"] = { affix = "", "(15-20)% chance to Maim on Hit", statOrder = { 7988 }, level = 1, group = "LocalMaimOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["BlightSecondarySkillEffectDurationUnique__1"] = { affix = "", "Blight has (20-30)% increased Hinder Duration", statOrder = { 5171 }, level = 1, group = "BlightSecondarySkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["GlobalCooldownRecoveryUnique__1"] = { affix = "", "(15-20)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalCooldownRecoveryUnique__2"] = { affix = "", "(10-15)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 1, group = "GlobalCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DebuffTimePassedUnique__1"] = { affix = "", "Debuffs on you expire (15-20)% faster", statOrder = { 6151 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DebuffTimePassedUnique__2"] = { affix = "", "Debuffs on you expire (80-100)% faster", statOrder = { 6151 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DebuffTimePassedUnique__3"] = { affix = "", "Debuffs on you expire 100% faster", statOrder = { 6151 }, level = 1, group = "DebuffTimePassed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeAndEnergyShieldRecoveryRateUnique_1"] = { affix = "", "(10-15)% increased Energy Shield Recovery rate", "(10-15)% increased Life Recovery rate", statOrder = { 1568, 1578 }, level = 1, group = "LifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LocalGrantsStormCascadeOnAttackUnique__1"] = { affix = "", "Trigger Level 20 Storm Cascade when you Attack", statOrder = { 749 }, level = 1, group = "LocalDisplayGrantsStormCascadeOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ProjectileAttacksChanceToBleedBeastialMinionUnique__1_"] = { affix = "", "Projectiles from Attacks inflict Bleeding on Hit while you have a Bestial Minion", statOrder = { 4318 }, level = 1, group = "ProjectileAttacksChanceToBleedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ProjectileAttacksChanceToPoisonBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks Poison on Hit while you have a Bestial Minion", statOrder = { 4320 }, level = 1, group = "ProjectileAttacksChanceToPoisonBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["ProjectileAttacksChanceToMaimBeastialMinionUnique__1"] = { affix = "", "Projectiles from Attacks Maim on Hit while you have a Bestial Minion", statOrder = { 4319 }, level = 1, group = "ProjectileAttacksChanceToMaimBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AddedPhysicalDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (18-24) to (30-36) Physical Damage to Attacks while you have a Bestial Minion", statOrder = { 4321 }, level = 1, group = "AddedPhysicalDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedChaosDamageToAttacksBeastialMinionUnique__1"] = { affix = "", "Adds (23-31) to (37-47) Chaos Damage to Attacks while you have a Bestial Minion", statOrder = { 4322 }, level = 1, group = "AddedChaosDamageToAttacksBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AttackAndMovementSpeedBeastialMinionUnique__1"] = { affix = "", "(10-20)% increased Attack and Movement Speed while you have a Bestial Minion", statOrder = { 4323 }, level = 1, group = "AttackAndMovementSpeedBeastialMinion", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["LifeLeechFromAttackDamageAgainstMaimedEnemiesUnique__1"] = { affix = "", "0.5% of Attack Damage Leeched as Life against Maimed Enemies", statOrder = { 7366 }, level = 1, group = "LifeLeechFromAttackDamageAgainstMaimedEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["GrantsDarktongueKissUnique__1"] = { affix = "", "Trigger Level 20 Darktongue's Kiss when you Cast a Curse Spell", statOrder = { 746 }, level = 1, group = "GrantsDarktongueKiss", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ShockEffectUnique__1"] = { affix = "", "(15-25)% increased Effect of Shock", statOrder = { 10008 }, level = 1, group = "ShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockEffectUnique__2"] = { affix = "", "(1-50)% increased Effect of Lightning Ailments", statOrder = { 7433 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockEffectUnique__3"] = { affix = "", "30% increased Effect of Lightning Ailments", statOrder = { 7433 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["LightningAilmentEffectUnique__1"] = { affix = "", "100% increased Effect of Lightning Ailments", statOrder = { 7433 }, level = 1, group = "LightningAilmentEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["LocalCanSocketIgnoringColourUnique__1"] = { affix = "", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 91 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalNoAttributeRequirementsUnique__1"] = { affix = "", "Has no Attribute Requirements", statOrder = { 1082 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalNoAttributeRequirementsUnique__2"] = { affix = "", "Has no Attribute Requirements", statOrder = { 1082 }, level = 1, group = "LocalNoAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SocketedGemsInRedSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Red Sockets have +2 to Level", statOrder = { 164 }, level = 1, group = "SocketedGemsInRedSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SocketedGemsInGreenSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Green Sockets have +30% to Quality", statOrder = { 165 }, level = 1, group = "SocketedGemsInGreenSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SocketedGemsInBlueSocketEffectUnique__1"] = { affix = "", "Gems Socketed in Blue Sockets gain 100% increased Experience", statOrder = { 166 }, level = 1, group = "SocketedGemsInBlueSocketEffect", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["GainThaumaturgyBuffRotationUnique__1_"] = { affix = "", "Grants Malachai's Endurance, Frenzy and Power for 6 seconds each, in sequence", statOrder = { 10368 }, level = 1, group = "GainThaumaturgyBuffRotation", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FireBeamLengthUnique__1"] = { affix = "", "10% increased Scorching Ray beam length", statOrder = { 6558 }, level = 1, group = "FireBeamLength", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["GrantsPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Purity of Fire Skill", statOrder = { 623 }, level = 1, group = "PurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Purity of Ice Skill", statOrder = { 629 }, level = 1, group = "PurityOfColdSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Purity of Lightning Skill", statOrder = { 631 }, level = 1, group = "PurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsVaalPurityOfFireUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Fire Skill", statOrder = { 724 }, level = 1, group = "VaalPurityOfFireSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsVaalPurityOfIceUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Ice Skill", statOrder = { 725 }, level = 1, group = "VaalPurityOfIceSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsVaalPurityOfLightningUnique__1"] = { affix = "", "Grants Level 25 Vaal Impurity of Lightning Skill", statOrder = { 726 }, level = 1, group = "VaalPurityOfLightningSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SpectreLifeUnique__1___"] = { affix = "", "+1000 to Spectre maximum Life", statOrder = { 10113 }, level = 1, group = "SpectreLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["SpectreIncreasedLifeUnique__1"] = { affix = "", "Raised Spectres have (50-100)% increased maximum Life", statOrder = { 1770 }, level = 1, group = "SpectreIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["PowerChargeOnManaSpentUnique__1"] = { affix = "", "Gain a Power Charge after Spending a total of 200 Mana", statOrder = { 7892 }, level = 1, group = "PowerChargeOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["IncreasedCastSpeedPerPowerChargeUnique__1"] = { affix = "", "2% increased Cast Speed per Power Charge", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["ManaRegeneratedPerSecondPerPowerChargeUnique__1"] = { affix = "", "Regenerate 2 Mana per Second per Power Charge", statOrder = { 8198 }, level = 1, group = "ManaRegeneratedPerSecondPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["GainARandomChargePerSecondWhileStationaryUnique__1"] = { affix = "", "Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary", statOrder = { 6813 }, level = 1, group = "GainARandomChargePerSecondWhileStationary", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["LoseAllChargesOnMoveUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5886, 5886.1, 5886.2 }, level = 1, group = "LoseAllChargesOnMove", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["ConsumesSupportGemsUnique"] = { affix = "", "Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level", "Can Consume 4 Uncorrupted Support Gems", "Has not Consumed any Gems", statOrder = { 104, 104.1, 104.2 }, level = 88, group = "ConsumesSupportGemsUnique", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HungryLoopSupportedByAddedFireDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Fire Damage", statOrder = { 104, 462 }, level = 1, group = "HungryLoopSupportedByAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByColdPenetration_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cold Penetration", statOrder = { 104, 513 }, level = 1, group = "HungryLoopSupportedByColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByIceBite"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ice Bite", statOrder = { 104, 512 }, level = 1, group = "HungryLoopSupportedByIceBite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByManaLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mana Leech", statOrder = { 104, 514 }, level = 1, group = "HungryLoopSupportedByManaLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAddedColdDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Cold Damage", statOrder = { 104, 518 }, level = 1, group = "HungryLoopSupportedByAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByReducedManaCost"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Inspiration", statOrder = { 104, 519 }, level = 1, group = "HungryLoopSupportedByReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAdditionalAccuracy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Additional Accuracy", statOrder = { 104, 480 }, level = 1, group = "HungryLoopSupportedByAdditionalAccuracy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBloodMagic"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arrogance", statOrder = { 104, 459 }, level = 1, group = "HungryLoopSupportedByBloodMagic", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Fork", statOrder = { 104, 486 }, level = 1, group = "HungryLoopSupportedByFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByInnervate_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Innervate", statOrder = { 104, 521 }, level = 1, group = "HungryLoopSupportedByInnervate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByLesserPoison_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chance to Poison", statOrder = { 104, 523 }, level = 1, group = "HungryLoopSupportedByLesserPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByHypothermia"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hypothermia", statOrder = { 104, 511 }, level = 1, group = "HungryLoopSupportedByHypothermia", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByLifeLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Life Leech", statOrder = { 104, 483 }, level = 1, group = "HungryLoopSupportedByLifeLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMeleeSplash_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Melee Splash", statOrder = { 104, 471 }, level = 1, group = "HungryLoopSupportedByMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Multistrike", statOrder = { 104, 481 }, level = 1, group = "HungryLoopSupportedByMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFasterProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Faster Projectiles", statOrder = { 104, 482 }, level = 1, group = "HungryLoopSupportedByFasterProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByRemoteMine"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blastchain Mine", statOrder = { 104, 497 }, level = 1, group = "HungryLoopSupportedByRemoteMine", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByRemoteMine2_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 High-Impact Mine", statOrder = { 104, 366 }, level = 1, group = "HungryLoopSupportedByRemoteMine2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByStun"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Stun", statOrder = { 104, 479 }, level = 1, group = "HungryLoopSupportedByStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCastOnCrit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast On Critical Strike", statOrder = { 104, 472 }, level = 1, group = "HungryLoopSupportedByCastOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCastWhenStunned"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast when Stunned", statOrder = { 104, 477 }, level = 1, group = "HungryLoopSupportedByCastWhenStunned", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByVileToxins_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Vile Toxins", statOrder = { 104, 522 }, level = 1, group = "HungryLoopSupportedByVileToxins", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByWeaponElementalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Elemental Damage with Attacks", statOrder = { 104, 487 }, level = 1, group = "HungryLoopSupportedByWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByIncreasedArea"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Increased Area of Effect", statOrder = { 104, 224 }, level = 1, group = "HungryLoopSupportedByIncreasedArea", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByKnockback"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Knockback", statOrder = { 104, 502 }, level = 1, group = "HungryLoopSupportedByKnockback", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByIncreasedMinionLife"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Life", statOrder = { 104, 504 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByIncreasedMinionSpeed"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Speed", statOrder = { 104, 508 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionSpeed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByLesserMultipleProjectiles_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Projectiles", statOrder = { 104, 505 }, level = 1, group = "HungryLoopSupportedByLesserMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByIncreasedMinionDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minion Damage", statOrder = { 104, 506 }, level = 1, group = "HungryLoopSupportedByIncreasedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByIncreasedCriticalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Increased Critical Damage", statOrder = { 104, 485 }, level = 1, group = "HungryLoopSupportedByIncreasedCriticalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBlind"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Blind", statOrder = { 104, 470 }, level = 1, group = "HungryLoopSupportedByBlind", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByEnduranceChargeOnStun"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun", statOrder = { 104, 526 }, level = 1, group = "HungryLoopSupportedByEnduranceChargeOnStun", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 104, 520 }, level = 1, group = "HungryLoopSupportedByBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByTrap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trap", statOrder = { 104, 454 }, level = 1, group = "HungryLoopSupportedByTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByIronWill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Iron Will", statOrder = { 104, 501 }, level = 1, group = "HungryLoopSupportedByIronWill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFasterCast"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Faster Casting", statOrder = { 104, 500 }, level = 1, group = "HungryLoopSupportedByFasterCast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFlee"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Chance to Flee", statOrder = { 104, 498 }, level = 1, group = "HungryLoopSupportedByFlee", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByColdToFire_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cold to Fire", statOrder = { 104, 463 }, level = 1, group = "HungryLoopSupportedByColdToFire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySpellTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Totem", statOrder = { 104, 464 }, level = 1, group = "HungryLoopSupportedBySpellTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGreaterMultipleProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Greater Multiple Projectiles", statOrder = { 104, 295 }, level = 1, group = "HungryLoopSupportedByGreaterMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByIncreasedCriticalStrikes"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Increased Critical Strikes", statOrder = { 104, 313 }, level = 1, group = "HungryLoopSupportedByIncreasedCriticalStrikes", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByItemQuantity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Item Quantity", statOrder = { 104, 320 }, level = 1, group = "HungryLoopSupportedByItemQuantity", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "drop" }, }, + ["HungryLoopSupportedByItemRarity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Item Rarity", statOrder = { 104, 321 }, level = 1, group = "HungryLoopSupportedByItemRarity", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "drop" }, }, + ["HungryLoopSupportedByIncreasedDuration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 More Duration", statOrder = { 104, 314 }, level = 1, group = "HungryLoopSupportedByIncreasedDuration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByChanceToIgnite"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Combustion", statOrder = { 104, 245 }, level = 1, group = "HungryLoopSupportedByChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBloodlust"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bloodlust", statOrder = { 104, 232 }, level = 1, group = "HungryLoopSupportedByBloodlust", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByLifeGainOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Life Gain On Hit", statOrder = { 104, 324 }, level = 1, group = "HungryLoopSupportedByLifeGainOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCullingStrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Culling Strike", statOrder = { 104, 254 }, level = 1, group = "HungryLoopSupportedByCullingStrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByPointBlank"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Point Blank", statOrder = { 104, 354 }, level = 1, group = "HungryLoopSupportedByPointBlank", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByIronGrip"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Iron Grip", statOrder = { 104, 319 }, level = 1, group = "HungryLoopSupportedByIronGrip", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMeleeDamageOnFullLife"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Damage On Full Life", statOrder = { 104, 336 }, level = 1, group = "HungryLoopSupportedByMeleeDamageOnFullLife", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByRangedAttackTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ballista Totem", statOrder = { 104, 362 }, level = 1, group = "HungryLoopSupportedByRangedAttackTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFirePenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fire Penetration", statOrder = { 104, 277 }, level = 1, group = "HungryLoopSupportedByFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByLightningPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Lightning Penetration", statOrder = { 104, 326 }, level = 1, group = "HungryLoopSupportedByLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chain", statOrder = { 104, 243 }, level = 1, group = "HungryLoopSupportedByChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMulticast"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Echo", statOrder = { 104, 341 }, level = 1, group = "HungryLoopSupportedByMulticast", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByPowerChargeOnCrit_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Power Charge On Critical Strike", statOrder = { 104, 356 }, level = 1, group = "HungryLoopSupportedByPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByIncreasedBurningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Burning Damage", statOrder = { 104, 312 }, level = 1, group = "HungryLoopSupportedByIncreasedBurningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySummonElementalResistance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Army Support", statOrder = { 104, 384 }, level = 1, group = "HungryLoopSupportedBySummonElementalResistance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCurseOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hextouch", statOrder = { 104, 255 }, level = 1, group = "HungryLoopSupportedByCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCastOnKill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast On Melee Kill", statOrder = { 104, 240 }, level = 1, group = "HungryLoopSupportedByCastOnKill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMultiTrap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Traps", statOrder = { 104, 456 }, level = 1, group = "HungryLoopSupportedByMultiTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByEmpower"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Empower", statOrder = { 104, 269 }, level = 1, group = "HungryLoopSupportedByEmpower", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySlowerProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Slower Projectiles", statOrder = { 104, 377 }, level = 1, group = "HungryLoopSupportedBySlowerProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByReducedDuration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Less Duration", statOrder = { 104, 365 }, level = 1, group = "HungryLoopSupportedByReducedDuration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCastOnDamageTaken"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast when Damage Taken", statOrder = { 104, 239 }, level = 1, group = "HungryLoopSupportedByCastOnDamageTaken", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByEnhance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Enhance", statOrder = { 104, 271 }, level = 1, group = "HungryLoopSupportedByEnhance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByPhysicalProjectileAttackDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Vicious Projectiles", statOrder = { 104, 351 }, level = 1, group = "HungryLoopSupportedByPhysicalProjectileAttackDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByEnlighten"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Enlighten", statOrder = { 104, 272 }, level = 1, group = "HungryLoopSupportedByEnlighten", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByPhysicalToLightning_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Physical To Lightning", statOrder = { 104, 352 }, level = 1, group = "HungryLoopSupportedByPhysicalToLightning", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByTrapAndMineDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trap And Mine Damage", statOrder = { 104, 457 }, level = 1, group = "HungryLoopSupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByPoison"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Critical Strike Affliction", statOrder = { 104, 355 }, level = 1, group = "HungryLoopSupportedByPoison", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByVoidManipulation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Void Manipulation", statOrder = { 104, 400 }, level = 1, group = "HungryLoopSupportedByVoidManipulation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByRapidDecay"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swift Affliction", statOrder = { 104, 363 }, level = 1, group = "HungryLoopSupportedByRapidDecay", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByClusterTrap_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cluster Trap", statOrder = { 104, 455 }, level = 1, group = "HungryLoopSupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByElementalFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Focus", statOrder = { 104, 267 }, level = 1, group = "HungryLoopSupportedByElementalFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMinefield"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Minefield", statOrder = { 104, 337 }, level = 1, group = "HungryLoopSupportedByMinefield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByTrapCooldown"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Advanced Traps", statOrder = { 104, 390 }, level = 1, group = "HungryLoopSupportedByTrapCooldown", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCastWhileChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cast While Channelling", statOrder = { 104, 242 }, level = 1, group = "HungryLoopSupportedByCastWhileChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByIgniteProliferation__"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ignite Proliferation", statOrder = { 104, 308 }, level = 1, group = "HungryLoopSupportedByIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByChanceToBleed"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Chance To Bleed", statOrder = { 104, 244 }, level = 1, group = "HungryLoopSupportedByChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByDeadlyAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Deadly Ailments", statOrder = { 104, 257 }, level = 1, group = "HungryLoopSupportedByDeadlyAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByDecay"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Decay", statOrder = { 104, 259 }, level = 1, group = "HungryLoopSupportedByDecay", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByEfficacy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Efficacy", statOrder = { 104, 265 }, level = 1, group = "HungryLoopSupportedByEfficacy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMaim"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Maim", statOrder = { 104, 331 }, level = 1, group = "HungryLoopSupportedByMaim", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByImmolate"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Immolate", statOrder = { 104, 309 }, level = 1, group = "HungryLoopSupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByUnboundAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Unbound Ailments", statOrder = { 104, 393 }, level = 1, group = "HungryLoopSupportedByUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBrutality"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Brutality", statOrder = { 104, 237 }, level = 1, group = "HungryLoopSupportedByBrutality", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByRuthless_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ruthless", statOrder = { 104, 370 }, level = 1, group = "HungryLoopSupportedByRuthless", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByOnslaught_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Momentum", statOrder = { 104, 344 }, level = 1, group = "HungryLoopSupportedByOnslaught", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByArcaneSurge"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arcane Surge", statOrder = { 104, 226 }, level = 1, group = "HungryLoopSupportedByArcaneSurge", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBarrage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Barrage", statOrder = { 104, 230 }, level = 1, group = "HungryLoopSupportedByBarrage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByArrowNova"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Arrow Nova", statOrder = { 104, 361 }, level = 1, group = "HungryLoopSupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByPierce_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Pierce", statOrder = { 104, 509 }, level = 1, group = "HungryLoopSupportedByPierce", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFasterAttacks"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Faster Attacks", statOrder = { 104, 469 }, level = 1, group = "HungryLoopSupportedByFasterAttacks", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMeleePhysicalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Melee Physical Damage", statOrder = { 104, 468 }, level = 1, group = "HungryLoopSupportedByMeleePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGenerosity_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Generosity", statOrder = { 104, 495 }, level = 1, group = "HungryLoopSupportedByGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFortify_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fortify", statOrder = { 104, 496 }, level = 1, group = "HungryLoopSupportedByFortify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByElementalProliferation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Proliferation", statOrder = { 104, 466 }, level = 1, group = "HungryLoopSupportedByElementalProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByControlledDestruction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Controlled Destruction", statOrder = { 104, 525 }, level = 1, group = "HungryLoopSupportedByControlledDestruction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByConcentratedEffect"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Concentrated Effect", statOrder = { 104, 453 }, level = 1, group = "HungryLoopSupportedByConcentratedEffect", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCastOnDeath"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are supported by Level 20 Cast on Death", statOrder = { 104, 478 }, level = 1, group = "HungryLoopSupportedByCastOnDeath", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAddedLightningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Lightning Damage", statOrder = { 104, 467 }, level = 1, group = "HungryLoopSupportedByAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAddedChaosDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Added Chaos Damage", statOrder = { 104, 458 }, level = 1, group = "HungryLoopSupportedByAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByReducedBlockChance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Block Chance Reduction", statOrder = { 104, 364 }, level = 1, group = "HungryLoopSupportedByReducedBlockChance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByStormBarrier"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Infused Channelling", statOrder = { 104, 383 }, level = 1, group = "HungryLoopSupportedByStormBarrier", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByParallelProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Volley", statOrder = { 104, 350 }, level = 1, group = "HungryLoopSupportedByParallelProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGreaterVolley"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Greater Volley", statOrder = { 104, 300 }, level = 1, group = "HungryLoopSupportedByGreaterVolley", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spell Cascade", statOrder = { 104, 379 }, level = 1, group = "HungryLoopSupportedBySpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySpiritStrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Ancestral Call", statOrder = { 104, 382 }, level = 1, group = "HungryLoopSupportedBySpiritStrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySummonGhostOnKill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Summon Phantasm", statOrder = { 104, 385 }, level = 1, group = "HungryLoopSupportedBySummonGhostOnKill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMirageArcher_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mirage Archer", statOrder = { 104, 339 }, level = 1, group = "HungryLoopSupportedByMirageArcher", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFrenzyPowerOnTrapTrigger"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Charged Traps", statOrder = { 104, 285 }, level = 1, group = "HungryLoopSupportedByFrenzyPowerOnTrapTrigger", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByChaosAttacks"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Withering Touch", statOrder = { 104, 405 }, level = 1, group = "HungryLoopSupportedByChaosAttacks", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBonechill"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bonechill", statOrder = { 104, 235 }, level = 1, group = "HungryLoopSupportedByBonechill", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMultiTotem"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Multiple Totems", statOrder = { 104, 340 }, level = 1, group = "HungryLoopSupportedByMultiTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByEnergyLeech"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Energy Leech", statOrder = { 104, 270 }, level = 1, group = "HungryLoopSupportedByEnergyLeech", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySpellFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Intensify", statOrder = { 104, 380 }, level = 1, group = "HungryLoopSupportedBySpellFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Unleash", statOrder = { 104, 396 }, level = 1, group = "HungryLoopSupportedByUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByImpale"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Impale", statOrder = { 104, 310 }, level = 1, group = "HungryLoopSupportedByImpale", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByPulverise"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Pulverise", statOrder = { 104, 358 }, level = 1, group = "HungryLoopSupportedByPulverise", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByRage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Rage", statOrder = { 104, 360 }, level = 1, group = "HungryLoopSupportedByRage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCloseCombat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Close Combat", statOrder = { 104, 247 }, level = 1, group = "HungryLoopSupportedByCloseCombat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByShockwave_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Shockwave", statOrder = { 104, 376 }, level = 1, group = "HungryLoopSupportedByShockwave", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFeedingFrenzy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Feeding Frenzy", statOrder = { 104, 276 }, level = 1, group = "HungryLoopSupportedByFeedingFrenzy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMeatShield"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Meat Shield", statOrder = { 104, 334 }, level = 1, group = "HungryLoopSupportedByMeatShield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByDeathmark_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Predator", statOrder = { 104, 258 }, level = 1, group = "HungryLoopSupportedByDeathmark", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByNightblade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Nightblade", statOrder = { 104, 342 }, level = 1, group = "HungryLoopSupportedByNightblade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByInfernalLegion_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Infernal Legion", statOrder = { 104, 315 }, level = 1, group = "HungryLoopSupportedByInfernalLegion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySwiftAssembly"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swift Assembly", statOrder = { 104, 386 }, level = 1, group = "HungryLoopSupportedBySwiftAssembly", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByChargedMines"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Charged Mines", statOrder = { 104, 246 }, level = 1, group = "HungryLoopSupportedByChargedMines", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedAddedFireDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Fire Damage", statOrder = { 104, 415 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedAncestralCall"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Ancestral Call", statOrder = { 104, 417 }, level = 1, group = "HungryLoopSupportedByAwakenedAncestralCall", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedBrutality"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Brutality", statOrder = { 104, 420 }, level = 1, group = "HungryLoopSupportedByAwakenedBrutality", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedBurningDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Burning Damage", statOrder = { 104, 421 }, level = 1, group = "HungryLoopSupportedByAwakenedBurningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedWeaponElementalDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Elemental Damage With Attacks", statOrder = { 104, 450 }, level = 1, group = "HungryLoopSupportedByAwakenedWeaponElementalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedFirePenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Fire Penetration", statOrder = { 104, 433 }, level = 1, group = "HungryLoopSupportedByAwakenedFirePenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedGenerosity_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Generosity", statOrder = { 104, 435 }, level = 1, group = "HungryLoopSupportedByAwakenedGenerosity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedMeleePhysicalDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Melee Physical Damage", statOrder = { 104, 439 }, level = 1, group = "HungryLoopSupportedByAwakenedMeleePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedMeleeSplash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Melee Splash", statOrder = { 104, 440 }, level = 1, group = "HungryLoopSupportedByAwakenedMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Multistrike", statOrder = { 104, 442 }, level = 1, group = "HungryLoopSupportedByAwakenedMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedAddedColdDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Cold Damage", statOrder = { 104, 414 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedArrowNova"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Arrow Nova", statOrder = { 104, 418 }, level = 1, group = "HungryLoopSupportedByAwakenedArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedCastOnCrit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cast On Critical Strike", statOrder = { 104, 422 }, level = 1, group = "HungryLoopSupportedByAwakenedCastOnCrit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Chain", statOrder = { 104, 424 }, level = 1, group = "HungryLoopSupportedByAwakenedChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedColdPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cold Penetration", statOrder = { 104, 425 }, level = 1, group = "HungryLoopSupportedByAwakenedColdPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedDeadlyAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Deadly Ailments", statOrder = { 104, 428 }, level = 1, group = "HungryLoopSupportedByAwakenedDeadlyAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Fork", statOrder = { 104, 434 }, level = 1, group = "HungryLoopSupportedByAwakenedFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedGreaterMultipleProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Greater Multiple Projectiles", statOrder = { 104, 436 }, level = 1, group = "HungryLoopSupportedByAwakenedGreaterMultipleProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedSwiftAffliction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Swift Affliction", statOrder = { 104, 445 }, level = 1, group = "HungryLoopSupportedByAwakenedSwiftAffliction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedVoidManipulation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Void Manipulation", statOrder = { 104, 449 }, level = 1, group = "HungryLoopSupportedByAwakenedVoidManipulation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedViciousProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Vicious Projectiles", statOrder = { 104, 448 }, level = 1, group = "HungryLoopSupportedByAwakenedViciousProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedAddedChaosDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Chaos Damage", statOrder = { 104, 413 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedAddedLightningDamage_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Added Lightning Damage", statOrder = { 104, 416 }, level = 1, group = "HungryLoopSupportedByAwakenedAddedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Blasphemy", statOrder = { 104, 419 }, level = 1, group = "HungryLoopSupportedByAwakenedBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedCastWhileChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Cast While Channelling", statOrder = { 104, 423 }, level = 1, group = "HungryLoopSupportedByAwakenedCastWhileChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedControlledDestruction"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Controlled Destruction", statOrder = { 104, 426 }, level = 1, group = "HungryLoopSupportedByAwakenedControlledDestruction", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedCurseOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Hextouch", statOrder = { 104, 427 }, level = 1, group = "HungryLoopSupportedByAwakenedCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedElementalFocus"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Elemental Focus", statOrder = { 104, 429 }, level = 1, group = "HungryLoopSupportedByAwakenedElementalFocus", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedIncreasedAreaOfEffect_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Increased Area Of Effect", statOrder = { 104, 437 }, level = 1, group = "HungryLoopSupportedByAwakenedIncreasedAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedLightningPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Lightning Penetration", statOrder = { 104, 438 }, level = 1, group = "HungryLoopSupportedByAwakenedLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedMinionDamage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Minion Damage", statOrder = { 104, 441 }, level = 1, group = "HungryLoopSupportedByAwakenedMinionDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedSpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Spell Cascade", statOrder = { 104, 443 }, level = 1, group = "HungryLoopSupportedByAwakenedSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedSpellEcho__"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Spell Echo", statOrder = { 104, 444 }, level = 1, group = "HungryLoopSupportedByAwakenedSpellEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedUnboundAilments"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Unbound Ailments", statOrder = { 104, 446 }, level = 1, group = "HungryLoopSupportedByAwakenedUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 5 Awakened Unleash", statOrder = { 104, 447 }, level = 1, group = "HungryLoopSupportedByAwakenedUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedEmpower"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Empower", statOrder = { 104, 430 }, level = 1, group = "HungryLoopSupportedByAwakenedEmpower", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedEnlighten"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Enlighten", statOrder = { 104, 432 }, level = 1, group = "HungryLoopSupportedByAwakenedEnlighten", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAwakenedEnhance"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 4 Awakened Enhance", statOrder = { 104, 431 }, level = 1, group = "HungryLoopSupportedByAwakenedEnhance", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySecondWind_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Second Wind", statOrder = { 104, 375 }, level = 1, group = "HungryLoopSupportedBySecondWind", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByArchmage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Archmage", statOrder = { 104, 227 }, level = 1, group = "HungryLoopSupportedByArchmage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByUrgentOrders"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Urgent Orders", statOrder = { 104, 397 }, level = 1, group = "HungryLoopSupportedByUrgentOrders", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFistOfWar"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fist of War", statOrder = { 104, 279 }, level = 1, group = "HungryLoopSupportedByFistofWar", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySwiftBrand"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Swiftbrand", statOrder = { 104, 387 }, level = 1, group = "HungryLoopSupportedBySwiftBrand", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByElementalPenetration"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Elemental Penetration", statOrder = { 104, 268 }, level = 1, group = "HungryLoopSupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByImpendingDoom"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Impending Doom", statOrder = { 104, 311 }, level = 1, group = "HungryLoopSupportedByImpendingDoom", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBloodthirst_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Bloodthirst", statOrder = { 104, 234 }, level = 1, group = "HungryLoopSupportedByBloodthirst", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFragility_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cruelty", statOrder = { 104, 284 }, level = 1, group = "HungryLoopSupportedByFragility", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByLifetap"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Lifetap", statOrder = { 104, 325 }, level = 1, group = "HungryLoopSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFocussedBallista_"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Focused Ballista", statOrder = { 104, 282 }, level = 1, group = "HungryLoopSupportedByFocussedBallista", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByEarthbreaker"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Earthbreaker", statOrder = { 104, 262 }, level = 1, group = "HungryLoopSupportedByEarthbreaker", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBehead"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Behead", statOrder = { 104, 231 }, level = 1, group = "HungryLoopSupportedByBehead", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMarkOnHit"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Mark On Hit", statOrder = { 104, 333 }, level = 1, group = "HungryLoopSupportedByMarkOnHit", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByDivineBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Eternal Blessing", statOrder = { 104, 273 }, level = 1, group = "HungryLoopSupportedByDivineBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByEternalBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Eternal Blessing", statOrder = { 104, 273 }, level = 1, group = "HungryLoopSupportedByEternalBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByOvercharge"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Overcharge", statOrder = { 104, 345 }, level = 1, group = "HungryLoopSupportedByPureShock", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCursedGround"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Cursed Ground", statOrder = { 104, 256 }, level = 1, group = "HungryLoopSupportedByCursedGround", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByHexBloom"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hex Bloom", statOrder = { 104, 304 }, level = 1, group = "HungryLoopSupportedByHexBloom", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByManaforgedArrows"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Manaforged Arrows", statOrder = { 104, 332 }, level = 1, group = "HungryLoopSupportedByManaforgedArrows", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByPrismaticBurst"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Prismatic Burst", statOrder = { 104, 357 }, level = 1, group = "HungryLoopSupportedByPrismaticBurst", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByReturningProjectiles"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Returning Projectiles", statOrder = { 104, 367 }, level = 1, group = "HungryLoopSupportedByReturningProjectiles", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByTrauma"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trauma", statOrder = { 104, 391 }, level = 1, group = "HungryLoopSupportedByTrauma", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySpellblade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Spellblade", statOrder = { 104, 381 }, level = 1, group = "HungryLoopSupportedBySpellblade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByDevour"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Devour", statOrder = { 104, 260 }, level = 1, group = "HungryLoopSupportedByDevour", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFreshMeat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Fresh Meat", statOrder = { 104, 286 }, level = 1, group = "HungryLoopSupportedByFreshMeat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFlamewood"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Flamewood", statOrder = { 104, 280 }, level = 1, group = "HungryLoopSupportedByFlamewood", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCorruptingCry"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Corrupting Cry", statOrder = { 104, 252 }, level = 1, group = "HungryLoopSupportedByCorruptingCry", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByVolatility"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Volatility", statOrder = { 104, 403 }, level = 1, group = "HungryLoopSupportedByVolatility", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGuardiansBlessing"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Guardian's Blessing", statOrder = { 104, 301 }, level = 1, group = "HungryLoopSupportedByGuardiansBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySacrifice"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sacrifice", statOrder = { 104, 372 }, level = 1, group = "HungryLoopSupportedBySacrifice", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFrigidBond"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Frigid Bond", statOrder = { 104, 287 }, level = 1, group = "HungryLoopSupportedByFrigidBond", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByLocusMine"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Locus Mine", statOrder = { 104, 328 }, level = 1, group = "HungryLoopSupportedByLocusMine", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySadism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sadism", statOrder = { 104, 373 }, level = 1, group = "HungryLoopSupportedBySadism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByControlledBlaze"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Controlled Blaze", statOrder = { 104, 250 }, level = 1, group = "HungryLoopSupportedByControlledBlaze", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAutomation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Automation", statOrder = { 104, 229 }, level = 1, group = "HungryLoopSupportedByAutomation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCallToArms"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Call To Arms", statOrder = { 104, 238 }, level = 1, group = "HungryLoopSupportedByCallToArms", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedBySacredWisps"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Sacred Wisps", statOrder = { 104, 371 }, level = 1, group = "HungryLoopSupportedBySacredWisps", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByOverexertion"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Overexertion", statOrder = { 104, 346 }, level = 1, group = "HungryLoopSupportedByOverexertion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByExpertRetaliation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Expert Retaliation", statOrder = { 104, 275 }, level = 1, group = "HungryLoopSupportedByExpertRetaliation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByRupture"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Rupture", statOrder = { 104, 369 }, level = 1, group = "HungryLoopSupportedByRupture", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFocusedChannelling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Focused Channelling", statOrder = { 104, 281 }, level = 1, group = "HungryLoopSupportedByFocusedChannelling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByTornados"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Windburst", statOrder = { 104, 388 }, level = 1, group = "HungryLoopSupportedByTornados", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByKineticInstability"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Kinetic Instability", statOrder = { 104, 322 }, level = 1, group = "HungryLoopSupportedByKineticInstability", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByLivingLightning"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Living Lightning", statOrder = { 104, 327 }, level = 1, group = "HungryLoopSupportedByLivingLightning", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByExcommunication"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Excommunicate", statOrder = { 104, 274 }, level = 1, group = "HungryLoopSupportedByExcommunication", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByExemplar"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Exemplar", statOrder = { 104, 335 }, level = 1, group = "HungryLoopSupportedByExemplar", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBlessedCalling"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Blessed Calling", statOrder = { 104, 249 }, level = 1, group = "HungryLoopSupportedByBlessedCalling", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByHallow"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Hallow", statOrder = { 104, 302 }, level = 1, group = "HungryLoopSupportedByHallow", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGreaterSpellCascade"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Spell Cascade", statOrder = { 104, 297 }, level = 1, group = "HungryLoopSupportedByGreaterSpellCascade", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByEclipse"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Eclipse", statOrder = { 104, 263 }, level = 1, group = "HungryLoopSupportedByEclipse", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByInvertTheRules"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Invert the Rules", statOrder = { 104, 318 }, level = 1, group = "HungryLoopSupportedByInvertTheRules", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCastOnWardBreak"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cast on Ward Break", statOrder = { 104, 241 }, level = 1, group = "HungryLoopSupportedByCastOnWardBreak", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByWard"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Ward", statOrder = { 104, 404 }, level = 1, group = "HungryLoopSupportedByWard", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByVaalSacrifice"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Vaal Sacrifice", statOrder = { 104, 398 }, level = 1, group = "HungryLoopSupportedByVaalSacrifice", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGreaterSpellEcho"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Spell Echo", statOrder = { 104, 298 }, level = 1, group = "HungryLoopSupportedByGreaterSpellEcho", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByVaalTemptation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Vaal Temptation", statOrder = { 104, 399 }, level = 1, group = "HungryLoopSupportedByVaalTemptation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMachinations"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Machinations", statOrder = { 104, 329 }, level = 1, group = "HungryLoopSupportedByMachinations", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByPyre"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Pyre", statOrder = { 104, 359 }, level = 1, group = "HungryLoopSupportedByPyre", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBonespire"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Bonespire", statOrder = { 104, 236 }, level = 1, group = "HungryLoopSupportedByBonespire", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFoulgrasp"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Foulgrasp", statOrder = { 104, 283 }, level = 1, group = "HungryLoopSupportedByFoulgrasp", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByHiveborn"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hiveborn", statOrder = { 104, 307 }, level = 1, group = "HungryLoopSupportedByHiveborn", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByScornfulHerald"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Scornful Herald", statOrder = { 104, 374 }, level = 1, group = "HungryLoopSupportedByScornfulHerald", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCullTheWeak"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cull the Weak", statOrder = { 104, 253 }, level = 1, group = "HungryLoopSupportedByCullTheWeak", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGreaterAncestralCall"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Ancestral Call", statOrder = { 104, 290 }, level = 1, group = "HungryLoopSupportedByGreaterAncestralCall", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFissure"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Fissure", statOrder = { 104, 278 }, level = 1, group = "HungryLoopSupportedByFissure", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByHextoad"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hextoad", statOrder = { 104, 306 }, level = 1, group = "HungryLoopSupportedByHextoad", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByHexpass"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Hexpass", statOrder = { 104, 305 }, level = 1, group = "HungryLoopSupportedByHexpass", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGreaterFork"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Fork", statOrder = { 104, 293 }, level = 1, group = "HungryLoopSupportedByGreaterFork", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGreaterChain"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Chain", statOrder = { 104, 291 }, level = 1, group = "HungryLoopSupportedByGreaterChain", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByLethalDose"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Lethal Dose", statOrder = { 104, 323 }, level = 1, group = "HungryLoopSupportedByLethalDose", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCompanionship"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Companionship", statOrder = { 104, 248 }, level = 1, group = "HungryLoopSupportedByCompanionship", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByDivineSentinel"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Divine Sentinel", statOrder = { 104, 261 }, level = 1, group = "HungryLoopSupportedByDivineSentinel", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByAnnhilation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Annihilation", statOrder = { 104, 343 }, level = 1, group = "HungryLoopSupportedByAnnhilation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByEdify"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Edify", statOrder = { 104, 264 }, level = 1, group = "HungryLoopSupportedByEdify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByInvention"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Invention", statOrder = { 104, 317 }, level = 1, group = "HungryLoopSupportedByInvention", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGreaterKineticInstability"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Kinetic Instability", statOrder = { 104, 294 }, level = 1, group = "HungryLoopSupportedByGreaterKineticInstability", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCooldownRecovery"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Cooldown Recovery", statOrder = { 104, 251 }, level = 1, group = "HungryLoopSupportedByCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByVoidstorm"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Voidstorm", statOrder = { 104, 402 }, level = 1, group = "HungryLoopSupportedByVoidstorm", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByVoidShockwave"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Void Shockwave", statOrder = { 104, 401 }, level = 1, group = "HungryLoopSupportedByVoidShockwave", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByEldritchBlasphemy"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Eldritch Blasphemy", statOrder = { 104, 266 }, level = 1, group = "HungryLoopSupportedByEldritchBlasphemy", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGluttony"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Gluttony", statOrder = { 104, 289 }, level = 1, group = "HungryLoopSupportedByGluttony", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByOverheat"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Overheat", statOrder = { 104, 347 }, level = 1, group = "HungryLoopSupportedByOverheat", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGreaterMultistrike"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Multistrike", statOrder = { 104, 296 }, level = 1, group = "HungryLoopSupportedByGreaterMultistrike", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByCongregation"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Congregation", statOrder = { 104, 394 }, level = 1, group = "HungryLoopSupportedByCongregation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByFrostmage"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Frostmage", statOrder = { 104, 288 }, level = 1, group = "HungryLoopSupportedByFrostmage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGreaterDevour"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Devour", statOrder = { 104, 292 }, level = 1, group = "HungryLoopSupportedByGreaterDevour", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMagnetism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Magnetism", statOrder = { 104, 330 }, level = 1, group = "HungryLoopSupportedByMagnetism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByGreaterUnleash"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Greater Unleash", statOrder = { 104, 299 }, level = 1, group = "HungryLoopSupportedByGreaterUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByPacifism"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Pacifism", statOrder = { 104, 349 }, level = 1, group = "HungryLoopSupportedByPacifism", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByBloodsoakedBanner"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Bloodsoaked Banner", statOrder = { 104, 233 }, level = 1, group = "HungryLoopSupportedByBloodsoakedBanner", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByMinionPact"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Minion Pact", statOrder = { 104, 338 }, level = 1, group = "HungryLoopSupportedByMinionPact", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByHarrowingThrong"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Harrowing Throng", statOrder = { 104, 303 }, level = 1, group = "HungryLoopSupportedByHarrowingThrong", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByUnholyTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Unholy Trinity", statOrder = { 104, 395 }, level = 1, group = "HungryLoopSupportedByUnholyTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByOverloadedIntensity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Overloaded Intensity", statOrder = { 104, 348 }, level = 1, group = "HungryLoopSupportedByOverloadedIntensity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["HungryLoopSupportedByTransfusion"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 3 Transfusion", statOrder = { 104, 389 }, level = 1, group = "HungryLoopSupportedByTransfusion", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SocketedGemLevelPer25PlayerLevelsUnique__1"] = { affix = "", "+1 to Level of Socketed Skill Gems per 25 Player Levels", statOrder = { 163 }, level = 1, group = "SocketedGemLevelPer25PlayerLevels", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["TriggerSocketedSpellOnAttackUnique__1"] = { affix = "", "Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown", statOrder = { 831 }, level = 1, group = "TriggerSocketedSpellOnAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, }, + ["AddsPhysicalDamagePer3PlayerLevelsUnique__1_"] = { affix = "", "Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels", statOrder = { 1269 }, level = 1, group = "AddsPhysicalDamagePer3PlayerLevels", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["FlaskPoisonDurationUnique__1"] = { affix = "", "(50-75)% increased Duration of Poisons you inflict during Effect", statOrder = { 1002 }, level = 1, group = "FlaskPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "flask", "poison", "chaos", "ailment" }, }, + ["FlaskHitsHaveNoCritMultiUnique__1"] = { affix = "", "Your Critical Strikes do not deal extra Damage during Effect", statOrder = { 1001 }, level = 1, group = "FlaskHitsHaveNoCritMulti", weightKey = { }, weightVal = { }, modTags = { "flask", "damage", "critical" }, }, + ["FlaskGrantsPerfectAgonyUnique__1_"] = { affix = "", "Grants Perfect Agony during effect", statOrder = { 1071 }, level = 1, group = "FlaskGrantsPerfectAgony", weightKey = { }, weightVal = { }, modTags = { "flask", "damage", "critical", "ailment" }, }, + ["FlaskChanceToPoisonUnique__1"] = { affix = "", "25% chance to Poison on Hit during Effect", statOrder = { 967 }, level = 1, group = "FlaskChanceToPoison", weightKey = { }, weightVal = { }, modTags = { "flask", "poison", "chaos", "ailment" }, }, + ["FlaskTakeChaosDamagePerSecondUnique__1"] = { affix = "", "Take 30 Chaos Damage per Second during Effect", statOrder = { 1043 }, level = 1, group = "FlaskTakeChaosDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, }, + ["FlaskTakeChaosDamagePerSecondUnique__2"] = { affix = "", "Take 250 Chaos Damage per Second during Effect", statOrder = { 1043 }, level = 1, group = "FlaskTakeChaosDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "flask", "chaos_damage", "damage", "chaos" }, }, + ["FlaskCriticalStrikeDoTMultiplierUnique__1"] = { affix = "", "+(20-30)% to Damage over Time Multiplier for Poison from Critical Strikes during Effect", statOrder = { 1015 }, level = 1, group = "FlaskCriticalStrikeDoTMultiplier", weightKey = { }, weightVal = { }, modTags = { "flask", "critical", "ailment" }, }, + ["StarterPassiveTreeJewelUnique__1_"] = { affix = "", "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "1% of Attack Damage Leeched as Life", statOrder = { 10495, 10495.1 }, level = 1, group = "StarterPassiveJewel1", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["AbyssJewelSocketImplicit"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__1"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__2"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__3"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__4"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__5"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__6_"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__7"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__8"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__9"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__10"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__11_"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__12"] = { affix = "", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__13"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__14"] = { affix = "", "Has 6 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__15"] = { affix = "", "Has 2 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__16"] = { affix = "", "Has 3 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AbyssJewelSocketUnique__17"] = { affix = "", "Has 4 Abyssal Sockets", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StarterPassiveTreeJewelUnique__2"] = { affix = "", "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "7% increased Movement Speed", statOrder = { 10495, 10495.1 }, level = 1, group = "StarterPassiveJewel2", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["StarterPassiveTreeJewelUnique__3"] = { affix = "", "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "+0.5% to Critical Strike Chance", statOrder = { 10495, 10495.1 }, level = 1, group = "StarterPassiveJewel3", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["StarterPassiveTreeJewelUnique__4"] = { affix = "", "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "0.5% of Mana Regenerated per second", statOrder = { 10495, 10495.1 }, level = 1, group = "StarterPassiveJewel4", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["StarterPassiveTreeJewelUnique__5"] = { affix = "", "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "Damage Penetrates 5% Elemental Resistances", statOrder = { 10495, 10495.1 }, level = 1, group = "StarterPassiveJewel5", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["StarterPassiveTreeJewelUnique__6"] = { affix = "", "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "+25 to All Attributes", statOrder = { 10495, 10495.1 }, level = 1, group = "StarterPassiveJewel6", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["StarterPassiveTreeJewelUnique__7"] = { affix = "", "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "Melee Skills have 25% increased Area of Effect", statOrder = { 10495, 10495.1 }, level = 1, group = "StarterPassiveJewel7", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["StarterPassiveJewelUnique__8"] = { affix = "", "While your Passive Skill Tree connects to the Marauder's starting location, you gain:", "1% of Life Regenerated per second", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel8", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["StarterPassiveJewelUnique__9_"] = { affix = "", "While your Passive Skill Tree connects to the Duelist's starting location, you gain:", "+0.2 metres to Melee Strike Range", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel9", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["StarterPassiveJewelUnique__10__"] = { affix = "", "While your Passive Skill Tree connects to the Ranger's starting location, you gain:", "20% increased Flask Charges gained", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel10", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["StarterPassiveJewelUnique__11__"] = { affix = "", "While your Passive Skill Tree connects to the Shadow's starting location, you gain:", "12% increased Attack and Cast Speed", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel11", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["StarterPassiveJewelUnique__12__"] = { affix = "", "While your Passive Skill Tree connects to the Witch's starting location, you gain:", "20% increased Skill Effect Duration", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel12", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StarterPassiveJewelUnique__13"] = { affix = "", "While your Passive Skill Tree connects to the Templar's starting location, you gain:", "+4% Chance to Block Attack and Spell Damage", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel13", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["StarterPassiveJewelUnique__14_"] = { affix = "", "While your Passive Skill Tree connects to the Scion's starting location, you gain:", "30% increased Damage", statOrder = { 10496, 10496.1 }, level = 1, group = "StarterPassiveJewel14", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedCriticalStrikeChancePerAccuracyRatingUnique__1"] = { affix = "", "2% increased Attack Critical Strike Chance per 200 Accuracy Rating", statOrder = { 4845 }, level = 65, group = "IncreasedCriticalStrikeChancePerAccuracyRating", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["PassiveEffectivenessJewelUnique__1_"] = { affix = "", "50% increased Effect of non-Keystone Passive Skills in Radius", "Notable Passive Skills in Radius grant nothing", statOrder = { 8099, 8100 }, level = 1, group = "PassiveEffectivenessJewel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DegradingMovementSpeedDuringFlaskEffectUnique__1"] = { affix = "", "50% increased Attack, Cast and Movement Speed during Effect", "Reduce Attack, Cast and Movement Speed 10% every second during Effect", statOrder = { 1048, 1049 }, level = 1, group = "DegradingMovementSpeedDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "attack", "caster", "speed" }, }, + ["TriggeredFireAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Fire Aegis when Equipped", statOrder = { 769 }, level = 1, group = "TriggeredFireAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["TriggeredColdAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Cold Aegis when Equipped", statOrder = { 767 }, level = 1, group = "TriggeredColdAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["TriggeredLightningAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Lightning Aegis when Equipped", statOrder = { 771 }, level = 1, group = "TriggeredLightningAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["TriggeredElementalAegisSkillUnique__1_"] = { affix = "", "Triggers Level 20 Elemental Aegis when Equipped", statOrder = { 768 }, level = 1, group = "TriggeredElementalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["TriggeredPhysicalAegisSkillUnique__1"] = { affix = "", "Triggers Level 20 Physical Aegis when Equipped", statOrder = { 774 }, level = 1, group = "TriggeredPhysicalAegisSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SupportedByBlasphemyUnique"] = { affix = "", "Socketed Gems are Supported by Level 20 Blasphemy", statOrder = { 520 }, level = 1, group = "SupportedByBlasphemyUnique", weightKey = { }, weightVal = { }, modTags = { "support", "caster", "gem", "curse" }, }, + ["GrantCursePillarSkillUnique"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", "20% less Effect of Curses from Socketed Hex Skills", statOrder = { 680, 680.1, 680.2, 680.3 }, level = 1, group = "GrantCursePillarSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantCursePillarSkillUnique__"] = { affix = "", "Grants Level 20 Summon Doedre's Effigy Skill", "Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned", "Hexes from Socketed Skills can apply 5 additional Curses", statOrder = { 681, 681.1, 681.2 }, level = 1, group = "GrantCursePillarSkillUnique__", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ReflectPoisonsToSelfUnique__1"] = { affix = "", "Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you", statOrder = { 9691 }, level = 1, group = "ReflectPoisonsToSelf", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["ReflectBleedingToSelfUnique__1"] = { affix = "", "Bleeding you inflict is Reflected to you", statOrder = { 5110 }, level = 1, group = "ReflectBleedingToSelf", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChaosResistancePerPoisonOnSelfUnique__1"] = { affix = "", "+1% to Chaos Resistance per Poison on you", statOrder = { 5741 }, level = 1, group = "ChaosResistancePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["DamagePerPoisonOnSelfUnique__1_"] = { affix = "", "15% increased Damage for each Poison on you up to a maximum of 75%", statOrder = { 6065 }, level = 1, group = "DamagePerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["MovementSpeedPerPoisonOnSelfUnique__1_"] = { affix = "", "10% increased Movement Speed for each Poison on you up to a maximum of 50%", statOrder = { 9427 }, level = 1, group = "MovementSpeedPerPoisonOnSelf", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["TravelSkillsReflectPoisonUnique__1"] = { affix = "", "Poison you inflict with Travel Skills is Reflected to you if you", "have fewer than 5 Poisons on you", statOrder = { 10425, 10425.1 }, level = 57, group = "TravelSkillsReflectPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["IncreasedArmourWhileBleedingUnique__1"] = { affix = "", "(30-40)% increased Armour while Bleeding", statOrder = { 4773 }, level = 1, group = "IncreasedArmourWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["SpectreCriticalStrikeChanceUnique__1"] = { affix = "", "Raised Spectres have (800-1000)% increased Critical Strike Chance", statOrder = { 10119 }, level = 1, group = "SpectreCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, }, + ["SpectreHaveBaseDurationUnique__1"] = { affix = "", "Raised Spectres have a Base Duration of 20 seconds", "Spectres do not travel between Areas", statOrder = { 10122, 10122.1 }, level = 1, group = "SpectreHaveBaseDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["GainCriticalStrikeChanceOnManaSpentUnique__1"] = { affix = "", "Gain +2% to Critical Strike Chance for 2 seconds after Spending a total of 800 Mana", statOrder = { 6743 }, level = 69, group = "GainCriticalStrikeChanceOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["GainHerEmbraceOnIgniteUnique__1"] = { affix = "", "Gain Her Embrace for 3 seconds when you Ignite an Enemy", statOrder = { 6766 }, level = 1, group = "GainHerEmbraceOnIgnite", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TakeDamagePerLevelWhileHerEmbraceUnique__1_"] = { affix = "", "While in Her Embrace, take 0.5% of your total Maximum Life and Energy Shield as Fire Damage per second per Level", statOrder = { 9605 }, level = 1, group = "TakeDamagePerLevelWhileHerEmbrace", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["GainArmourEqualToManaReservedUnique__1"] = { affix = "", "1% increased Armour per 50 Reserved Mana", statOrder = { 6698 }, level = 1, group = "GainArmourEqualToManaReserved", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["VaalPactIfCritRecentlyUnique__1"] = { affix = "", "You have Vaal Pact if you've dealt a Critical Strike Recently", statOrder = { 6827 }, level = 1, group = "VaalPactIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AdditionalArrowWhileAccuracyIs3000Uber1"] = { affix = "", "Bow Attacks fire an additional Arrow while Main Hand Accuracy Rating is at least 3000", statOrder = { 9516 }, level = 1, group = "AdditionalArrowWhileAccuracyIs3000", weightKey = { "bow_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["AccuracyRatingIsDoubledUber1"] = { affix = "", "50% more Global Accuracy Rating", statOrder = { 4514 }, level = 1, group = "AccuracyRatingIsDoubled", weightKey = { "bow_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["MeleePhysicalDamagePerStrengthWhileFortifiedUber1"] = { affix = "", "1% increased Melee Physical Damage per 10 Strength while Fortified", statOrder = { 9196 }, level = 1, group = "MeleePhysicalDamagePerStrengthWhileFortified", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "influence_mod", "damage", "physical", "attack" }, }, + ["IncreasedEvasionRatingWhileLeechingUber1"] = { affix = "", "20% increased Evasion while Leeching", statOrder = { 6497 }, level = 1, group = "IncreasedEvasionRatingWhileLeeching", weightKey = { "claw_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["IncreasedEvasionRatingIfHitEnemyRecentlyUber1"] = { affix = "", "20% increased Evasion if you have Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "IncreasedEvasionRatingIfHitEnemyRecently", weightKey = { "claw_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "defences", "evasion" }, }, + ["CriticalStrikeMultiplierIfHaventCritRecentlyUber1"] = { affix = "", "+50% to Critical Strike Multiplier if you haven't dealt a Critical Strike Recently", statOrder = { 5960 }, level = 1, group = "CriticalStrikeMultiplierIfHaventCritRecently", weightKey = { "dagger_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage", "critical" }, }, + ["CriticalStrikeChanceAgainstBleedingEnemiesUber1"] = { affix = "", "70% increased Critical Strike Chance against Bleeding Enemies", statOrder = { 3190 }, level = 1, group = "CriticalStrikeChanceAgainstBleedingEnemies", weightKey = { "2h_axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "critical" }, }, + ["AreaOfEffectWith500StrengthUber1"] = { affix = "", "30% increased Area of Effect if you have at least 500 Strength", statOrder = { 4740 }, level = 1, group = "AreaOfEffectWith500Strength", weightKey = { "mace_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["HitsCantBeEvadedIfBlockedRecentlyUber1_"] = { affix = "", "Hits with this Weapon can't be Evaded if you have Blocked Recently", statOrder = { 7940 }, level = 1, group = "HitsCantBeEvadedIfBlockedRecently", weightKey = { "sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["AttackSpeedIfBlockedRecentlyUber1"] = { affix = "", "20% increased Attack Speed if you have Blocked Recently", statOrder = { 4896 }, level = 1, group = "AttackSpeedIfBlockedRecently", weightKey = { "sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "speed" }, }, + ["AreaOfEffectWhileFortifiedUber1"] = { affix = "", "25% increased Area of Effect while Fortified", statOrder = { 4735 }, level = 1, group = "AreaOfEffectWhileFortified", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["MeleeWeaponRangeWhileFortifiedUber1"] = { affix = "", "+0.2 metres to Melee Strike Range while Fortified", statOrder = { 9214 }, level = 1, group = "MeleeWeaponRangeWhileFortified", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["StunDurationPerStrengthUber1"] = { affix = "", "2% increased Stun Duration per 15 Strength", statOrder = { 10262 }, level = 1, group = "StunDurationPerStrength", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ReducedStunThresholdWith500StrengthUber1"] = { affix = "", "30% reduced Enemy Stun Threshold while you have at least 500 Strength", statOrder = { 10268 }, level = 1, group = "ReducedStunThresholdWith500Strength", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["AreaDamagePerStrengthUber1"] = { affix = "", "1% increased Area Damage per 12 Strength", statOrder = { 4719 }, level = 1, group = "AreaDamagePerStrength", weightKey = { "2h_mace_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, }, + ["IncreasedDamageAgainstTauntedEnemiesUber1"] = { affix = "", "50% increased Damage with Hits and Ailments against Taunted Enemies", statOrder = { 6072 }, level = 1, group = "IncreasedDamageAgainstTauntedEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "damage" }, }, + ["BleedingDamagePerEnduranceChargeUber1"] = { affix = "", "5% increased Damage with Bleeding per Endurance Charge", statOrder = { 5101 }, level = 1, group = "BleedingDamagePerEnduranceCharge", weightKey = { "2h_axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["MovementSpeedWhileFortifiedUber1"] = { affix = "", "15% increased Movement Speed while Fortified", statOrder = { 3320 }, level = 1, group = "MovementSpeedWhileFortified", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "speed" }, }, + ["MeleeWeaponRangeAtMaximumFrenzyChargesUber1_"] = { affix = "", "+0.3 metres to Melee Strike Range while at Maximum Frenzy Charges", statOrder = { 9213 }, level = 1, group = "MeleeWeaponRangeAtMaximumFrenzyCharges", weightKey = { "2h_sword_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["BlindEnemiesWhenHitUber1__"] = { affix = "", "20% chance to Blind Enemies when they Hit you", statOrder = { 5220 }, level = 1, group = "BlindEnemiesWhenHit", weightKey = { "claw_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["PoisonDamageAgainstBleedingEnemiesUber1"] = { affix = "", "50% increased Damage with Poison inflicted on Bleeding Enemies", statOrder = { 9681 }, level = 1, group = "PoisonDamageAgainstBleedingEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "poison", "influence_mod", "damage", "chaos", "ailment" }, }, + ["ChanceToBleedOnTauntedEnemiesUber1"] = { affix = "", "20% chance to inflict Bleeding on Hit with Attacks against Taunted Enemies", statOrder = { 4914 }, level = 1, group = "ChanceToBleedOnTauntedEnemies", weightKey = { "2h_axe_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "influence_mod", "physical", "attack", "ailment" }, }, + ["AreaOfEffectPerPowerChargeUber1"] = { affix = "", "3% increased Area of Effect per Power Charge", statOrder = { 2129 }, level = 1, group = "AreaOfEffectPerPowerCharge", weightKey = { "staff_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["BleedDamageAgainstPoisonedEnemiesUber1"] = { affix = "", "50% increased Damage with Bleeding inflicted on Poisoned Enemies", statOrder = { 5105 }, level = 1, group = "BleedDamageAgainstPoisonedEnemies", weightKey = { "dagger_elder", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "bleed", "influence_mod", "damage", "physical", "attack", "ailment" }, }, + ["GainEnduranceChargeOnStunChanceUber1"] = { affix = "", "25% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5687 }, level = 1, group = "GainEnduranceChargeOnStunChance", weightKey = { "2h_mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["FortifyEffectWhileStationaryUber1"] = { affix = "", "+4 to maximum Fortification while stationary", statOrder = { 9119 }, level = 1, group = "FortifyEffectWhileStationary", weightKey = { "2h_sword_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["FortifyDurationPerStrengthUber1"] = { affix = "", "1% increased Fortification Duration per 10 Strength", statOrder = { 6661 }, level = 1, group = "FortifyDurationPerStrength", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ReducedElementalDamageTakenPerEnduranceChargeUber1"] = { affix = "", "1% reduced Elemental Damage taken per Endurance Charge", statOrder = { 6319 }, level = 1, group = "ReducedElementalDamageTakenPerEnduranceCharge", weightKey = { "sceptre_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "elemental" }, }, + ["AreaOfEffectIfBlockedRecentlyUber1"] = { affix = "", "20% increased Area of Effect if you have Blocked Recently", statOrder = { 4730 }, level = 1, group = "AreaOfEffectIfBlockedRecently", weightKey = { "staff_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod" }, }, + ["ElementalDamagePer12IntelligenceUber1"] = { affix = "", "1% increased Elemental Damage per 12 Intelligence", statOrder = { 6306 }, level = 1, group = "ElementalDamagePer12Intelligence", weightKey = { "sceptre_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["AdditionalBlockChanceIfCritRecentlyUber1__"] = { affix = "", "+5% Chance to Block Attack Damage if you've dealt a Critical Strike Recently", statOrder = { 4541 }, level = 1, group = "AdditionalBlockChanceIfCritRecently", weightKey = { "staff_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "block", "influence_mod" }, }, + ["ElementalDamagePer12StrengthUber1"] = { affix = "", "1% increased Elemental Damage per 12 Strength", statOrder = { 6307 }, level = 1, group = "ElementalDamagePer12Strength", weightKey = { "sceptre_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["ElementalDamagePerPowerChargeUber1"] = { affix = "", "5% increased Elemental Damage per Power charge", statOrder = { 6308 }, level = 1, group = "ElementalDamagePerPowerCharge", weightKey = { "sceptre_elder", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "influence_mod", "damage", "elemental" }, }, + ["CullingStrikeIfCritRecentlyUber1"] = { affix = "", "Hits with this Weapon have Culling Strike if you have dealt a Critical Strike Recently", statOrder = { 7883 }, level = 1, group = "CullingStrikeIfCritRecently", weightKey = { "axe_elder", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack" }, }, + ["CritsHaveCullingStrikeUber1"] = { affix = "", "Critical Strikes with this Weapon have Culling Strike", statOrder = { 7882 }, level = 1, group = "CritsHaveCullingStrike", weightKey = { "dagger_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "influence_mod", "attack", "critical" }, }, + ["GainEnduranceChargeOnLosingFortifyUber1"] = { affix = "", "Gain an Endurance Charge when you stop being Fortified", statOrder = { 6748 }, level = 1, group = "GainEnduranceChargeOnLosingFortify", weightKey = { "mace_shaper", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "influence_mod" }, }, + ["LifeGainOnHitWhileLeechingUber1"] = { affix = "", "Gain (30-50) Life per Enemy Hit with this Weapon while you are Leeching", statOrder = { 7985 }, level = 1, group = "LifeGainOnHitWhileLeeching", weightKey = { "claw_elder", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "influence_mod", "life", "attack" }, }, + ["CannotBeIgnitedWithStrHigherThanDexUnique__1"] = { affix = "", "Cannot be Ignited if Strength is higher than Dexterity", statOrder = { 5407 }, level = 1, group = "CannotBeIgnitedWithStrHigherThanDex", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["CannotBeFrozenWithDexHigherThanIntUnique__1"] = { affix = "", "Cannot be Frozen if Dexterity is higher than Intelligence", statOrder = { 5402 }, level = 1, group = "CannotBeFrozenWithDexHigherThanInt", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["CannotBeShockedWithIntHigherThanStrUnique__1"] = { affix = "", "Cannot be Shocked if Intelligence is higher than Strength", statOrder = { 5415 }, level = 1, group = "CannotBeShockedWithIntHigherThanStr", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IncreasedDamagePerLowestAttributeUnique__1"] = { affix = "", "1% increased Damage per 5 of your lowest Attribute", statOrder = { 6061 }, level = 85, group = "IncreasedDamagePerLowestAttribute", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["IncreasedAilmentDurationUnique__1"] = { affix = "", "40% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationUnique__2"] = { affix = "", "30% reduced Duration of Ailments on Enemies", statOrder = { 1860 }, level = 88, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationUnique__3_"] = { affix = "", "(10-20)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["IncreasedAilmentDurationUnique__4"] = { affix = "", "(5-25)% increased Duration of Ailments on Enemies", statOrder = { 1860 }, level = 1, group = "IncreasedAilmentDuration", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["FasterAilmentDamageUnique__1"] = { affix = "", "Damaging Ailments deal damage (5-25)% faster", statOrder = { 6127 }, level = 1, group = "FasterAilmentDamage", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["SharedSufferingUnique__1"] = { affix = "", "Shared Suffering", statOrder = { 10812 }, level = 1, group = "SharedSuffering", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CreateSmokeCloudWhenTrapTriggeredUnique__1"] = { affix = "", "Trigger Level 20 Fog of War when your Trap is triggered", statOrder = { 815 }, level = 1, group = "CreateSmokeCloudWhenTrapTriggered", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["FlammabilityReservationCostUnique__1"] = { affix = "", "Flammability has no Reservation if Cast as an Aura", statOrder = { 6632 }, level = 1, group = "FlammabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["FrostbiteReservationCostUnique__1"] = { affix = "", "Frostbite has no Reservation if Cast as an Aura", statOrder = { 6683 }, level = 1, group = "FrostbiteNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ConductivityReservationCostUnique__1"] = { affix = "", "Conductivity has no Reservation if Cast as an Aura", statOrder = { 5842 }, level = 1, group = "ConductivityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["VulnerabilityReservationCostUnique__1_"] = { affix = "", "Vulnerability has no Reservation if Cast as an Aura", statOrder = { 10552 }, level = 1, group = "VulnerabilityNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["DespairReservationCostUnique__1"] = { affix = "", "Despair has no Reservation if Cast as an Aura", statOrder = { 6170 }, level = 1, group = "DespairNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["TemporalChainsReservationCostUnique__1"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10366 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["TemporalChainsReservationCostUnique__2"] = { affix = "", "Temporal Chains has no Reservation if Cast as an Aura", statOrder = { 10366 }, level = 1, group = "TemporalChainsNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["PunishmentReservationCostUnique__1"] = { affix = "", "Punishment has no Reservation if Cast as an Aura", statOrder = { 9758 }, level = 1, group = "PunishmentNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["EnfeebleReservationCostUnique__1"] = { affix = "", "Enfeeble has no Reservation if Cast as an Aura", statOrder = { 6463 }, level = 1, group = "EnfeebleNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ElementalWeaknessReservationCostUnique__1"] = { affix = "", "Elemental Weakness has no Reservation if Cast as an Aura", statOrder = { 6343 }, level = 1, group = "ElementalWeaknessNoReservation", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ChanceToDodgeWhileOffhandIsEmpty"] = { affix = "", "+(30-40)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 10179 }, level = 1, group = "ChanceToDodgeWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedColdDamageWhileOffhandIsEmpty_"] = { affix = "", "(100-200)% increased Cold Damage while your Off Hand is empty", statOrder = { 5816 }, level = 1, group = "IncreasedColdDamageWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DisplayIronReflexesFor8SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Iron Reflexes for 8 seconds", statOrder = { 10842 }, level = 1, group = "DisplayIronReflexesFor8Seconds", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["ArborixMoreDamageAtCloseRangeUnique__1"] = { affix = "", "30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes", statOrder = { 10848 }, level = 1, group = "ArborixMoreDamageAtCloseRange", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["FarShotWhileYouDoNotHaveIronReflexesUnique__1_"] = { affix = "", "You have Far Shot while you do not have Iron Reflexes", statOrder = { 10852 }, level = 1, group = "FarShotWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1"] = { affix = "", "30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes", statOrder = { 10851 }, level = 1, group = "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexes", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["ElementalDamageCanShockUnique__1__"] = { affix = "", "Your Elemental Damage can Shock", statOrder = { 2873 }, level = 1, group = "ElementalDamageCanShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1"] = { affix = "", "Enemies take (5-10)% increased Damage for each type of Ailment you have inflicted on them", statOrder = { 2462 }, level = 1, group = "EnemiesTakeIncreasedDamagePerAilmentType", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DeathWalk"] = { affix = "", "Triggers Level 20 Death Walk when Equipped", statOrder = { 789 }, level = 1, group = "DeathWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["DamagePerAbyssJewelTypeUnique__1_"] = { affix = "", "10% increased Damage for each type of Abyss Jewel affecting you", statOrder = { 4167 }, level = 1, group = "DamagePerAbyssJewelType", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AdditionalPhysicalDamageReductionWhileMovingUnique__1"] = { affix = "", "5% additional Physical Damage Reduction while moving", statOrder = { 4584 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["ReducedElementalDamageTakenWhileStationaryUnique__1_"] = { affix = "", "5% reduced Elemental Damage taken while stationary", statOrder = { 6320 }, level = 1, group = "ReducedElementalDamageTakenWhileStationary", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["IncreasedLifePerAbyssalJewelUnique__1"] = { affix = "", "1% increased Maximum Life per Abyss Jewel affecting you", statOrder = { 9164 }, level = 1, group = "IncreasedLifePerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedManaPerAbyssalJewelUnique__1_"] = { affix = "", "1% increased Maximum Mana per Abyss Jewel affecting you", statOrder = { 9172 }, level = 1, group = "IncreasedManaPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["IncreasedLifePerAbyssalJewelUnique__2"] = { affix = "", "3% increased Maximum Life per Abyss Jewel affecting you", statOrder = { 9164 }, level = 1, group = "IncreasedLifePerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedManaPerAbyssalJewelUnique__2"] = { affix = "", "3% increased Maximum Mana per Abyss Jewel affecting you", statOrder = { 9172 }, level = 1, group = "IncreasedManaPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ElementalPenetrationPerAbyssalJewelUnique__1"] = { affix = "", "Penetrate 4% Elemental Resistances per Abyss Jewel affecting you", statOrder = { 9595 }, level = 1, group = "ElementalPenetrationPerAbyssalJewel", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["IncreasedLifePerElderItemUnique__1"] = { affix = "", "+6 to Maximum Life per Elder Item Equipped", statOrder = { 4328 }, level = 1, group = "IncreasedLifePerElderItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AilmentEffectPerElderItemUnique__1"] = { affix = "", "8% increased Effect of Non-Damaging Ailments per Elder Item Equipped", statOrder = { 4332 }, level = 1, group = "AilmentEffectPerElderItem", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["AilmentDamagePerElderItemUnique__1__"] = { affix = "", "15% increased Damage with Ailments per Elder Item Equipped", statOrder = { 4329 }, level = 1, group = "AilmentDamagePerElderItem", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["AilmentDamageOverTimeMultiplierPerElderItemUnique__1"] = { affix = "", "+4% to Damage over Time Multiplier for Ailments per Elder Item Equipped", statOrder = { 4330 }, level = 1, group = "AilmentDamageOverTimeMultiplierPerElderItem", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["RemoveAilmentOnFlaskUseIfAllItemsAreElderUnique__1_"] = { affix = "", "Remove an Ailment when you use a Flask if all Equipped Items are Elder Items", statOrder = { 9911 }, level = 1, group = "RemoveAilmentOnFlaskUseIfAllItemsAreElder", weightKey = { }, weightVal = { }, modTags = { "flask", "ailment" }, }, + ["StrengthDamageBonus3Per10Unique__1"] = { affix = "", "Strength's Damage Bonus instead grants 3% increased Melee", "Physical Damage per 10 Strength", statOrder = { 10256, 10256.1 }, level = 1, group = "StrengthDamageBonus3Per10", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["CannotBlockSpellsUnique__1"] = { affix = "", "Cannot Block Spell Damage", statOrder = { 5428 }, level = 1, group = "CannotBlockSpells", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["LocalFlatIncreasedEvasionAndEnergyShieldUnique__1"] = { affix = "", "+(80-100) to Evasion Rating and Energy Shield", statOrder = { 7931 }, level = 1, group = "LocalIncreasedEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["LocalFlatIncreasedEvasionAndEnergyShieldUnique__2_"] = { affix = "", "+(120-150) to Evasion Rating and Energy Shield", statOrder = { 7931 }, level = 1, group = "LocalIncreasedEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["IntimidateOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 7861 }, level = 1, group = "IntimidateOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["FortifyOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify", statOrder = { 7934 }, level = 1, group = "FortifyOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["RageOnHitWithMeleeAbyssJewelUnique__1"] = { affix = "", "With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit", statOrder = { 7933 }, level = 1, group = "RageOnHitWithMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["MaimOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks", statOrder = { 7862 }, level = 1, group = "MaimOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["BlindOnHitWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks", statOrder = { 7865 }, level = 1, group = "BlindOnHitWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["OnslaughtOnKillWithRangedAbyssJewelUnique__1"] = { affix = "", "With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill", statOrder = { 7859 }, level = 1, group = "OnslaughtOnKillWithRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ArcaneSurgeOnHitWithSpellAbyssJewelUnique__1"] = { affix = "", "With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells", statOrder = { 8028 }, level = 1, group = "ArcaneSurgeOnHitWithSpellAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["MinionAccuracyWithMinionAbyssJewelUnique__1"] = { affix = "", "With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating", statOrder = { 7997 }, level = 1, group = "MinionAccuracyWithMinionAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, + ["MinionUnholyMightWithMinionAbyssJewelUnique__1"] = { affix = "", "With a Ghastly Eye Jewel Socketed, Minions have 25% chance to", "gain Unholy Might on Hit with Spells", statOrder = { 7998, 7998.1 }, level = 1, group = "MinionUnholyMightWithSpells", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos", "caster", "minion" }, }, + ["AbyssJewelEffectUnique__1"] = { affix = "", "(50-100)% increased Effect of Socketed Abyss Jewels", statOrder = { 221 }, level = 1, group = "AbyssJewelEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MovementVelocityWithMagicAbyssJewelUnique__1"] = { affix = "", "(24-32)% increased Movement Speed while affected by a Magic Abyss Jewel", statOrder = { 9442 }, level = 1, group = "MovementVelocityWithMagicAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalAilmentDurationWithRareAbyssJewelUnique__1"] = { affix = "", "(40-60)% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel", statOrder = { 6290 }, level = 1, group = "ElementalAilmentDurationWithRareAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReservationEfficiencyWithUniqueAbyssJewelUnique__1"] = { affix = "", "(16-24)% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel", statOrder = { 9920 }, level = 1, group = "ReservationEfficiencyWithUniqueAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedArmourWhileStationaryUnique__1"] = { affix = "", "80% increased Armour while stationary", statOrder = { 4774 }, level = 1, group = "IncreasedArmourWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["NumberOfProjectilesIfHitRecentlyUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles if you've been Hit Recently", statOrder = { 9524 }, level = 1, group = "NumberOfProjectilesIfHitRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainIronReflexesWhileStationaryUnique__1"] = { affix = "", "Iron Reflexes while stationary", statOrder = { 10840 }, level = 1, group = "GainIronReflexesWhileStationary", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["PlayerFarShotUnique__2"] = { affix = "", "Far Shot", statOrder = { 10827 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PlayerFarShotUnique__3"] = { affix = "", "Far Shot", statOrder = { 10827 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KeystonePointBlankUnique__2"] = { affix = "", "Point Blank", statOrder = { 10801 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["NumberOfProjectilesIfUsedAMovementSkillRecentlyUnique__1"] = { affix = "", "Skills fire 2 additional Projectiles if you've used a Movement Skill Recently", statOrder = { 9525 }, level = 1, group = "NumberOfProjectilesIfUsedAMovementSkillRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EvasionRatingWhileMovingUnique__1"] = { affix = "", "80% increased Evasion Rating while moving", statOrder = { 6498 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["AddedPhysicalDamageVersusIgnitedEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal (80-100) to (160-200) added Physical Damage to Ignited Enemies", statOrder = { 4877 }, level = 1, group = "AddedPhysicalDamageVersusIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedFireDamageVersusBleedingEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon deal (80-100) to (160-200) added Fire Damage to Bleeding Enemies", statOrder = { 4870 }, level = 1, group = "AddedFireDamageVersusBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["GainAvatarOfFireEvery8SecondsUnique__1"] = { affix = "", "Every 8 seconds, gain Avatar of Fire for 4 seconds", statOrder = { 10838 }, level = 1, group = "GainAvatarOfFireEvery8Seconds", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ChanceToBleedIgnitedEnemiesUnique__1"] = { affix = "", "Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies", statOrder = { 4912 }, level = 1, group = "ChanceToBleedIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["IncreasedCriticalStrikeChanceWithAvatarOfFireUnique__1"] = { affix = "", "(160-200)% increased Critical Strike Chance while you have Avatar of Fire", statOrder = { 10846 }, level = 1, group = "IncreasedCriticalStrikeChanceWithAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ArmourWithoutAvatarOfFireUnique__1"] = { affix = "", "+2000 Armour while you do not have Avatar of Fire", statOrder = { 10850 }, level = 1, group = "ArmourWithoutAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["ConvertPhysicalToFireWithAvatarOfFireUnique__1"] = { affix = "", "50% of Physical Damage Converted to Fire while you have Avatar of Fire", statOrder = { 10847 }, level = 1, group = "ConvertPhysicalToFireWithAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["GainElementalOverloadEvery16SecondsUnique__1"] = { affix = "", "Every 16 seconds you gain Elemental Overload for 8 seconds", statOrder = { 10839 }, level = 1, group = "GainElementalOverloadEvery16Seconds", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["GainResoluteTechniqueWithoutElementalOverloadUnique__1"] = { affix = "", "You have Resolute Technique while you do not have Elemental Overload", statOrder = { 10841 }, level = 1, group = "GainResoluteTechniqueWithoutElementalOverload", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["ProjectilesGainPercentOfNonChaosAsChaosUnique__1"] = { affix = "", "Projectiles gain (15-20)% of Non-Chaos Damage as extra Chaos Damage per Chain", statOrder = { 9739 }, level = 70, group = "ProjectilesGainPercentOfNonChaosAsChaos", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ProjectilesGainPercentOfNonChaosAsChaosUnique__2"] = { affix = "", "Projectiles that have Chained gain (20-35)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 9738 }, level = 70, group = "ProjectilesGainPercentOfNonChaosAsChaos2", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DealNoNonElementalDamageUnique__1"] = { affix = "", "Deal no Non-Elemental Damage", statOrder = { 6145 }, level = 1, group = "DealNoNonElementalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["DisplaySupportedByElementalPenetrationUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Elemental Penetration", statOrder = { 268 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByElementalPenetrationUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 15 Elemental Penetration", statOrder = { 268 }, level = 1, group = "DisplaySupportedByElementalPenetration", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["GainSpiritChargeOnKillChanceUnique__1"] = { affix = "", "Gain a Spirit Charge on Kill", statOrder = { 4383 }, level = 1, group = "GainSpiritChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2"] = { affix = "", "Recover (2-3)% of Life when you lose a Spirit Charge", statOrder = { 4385 }, level = 1, group = "GainLifeWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["GainESWhenSpiritChargeExpiresOrConsumedUnique__1"] = { affix = "", "Recover (2-3)% of Energy Shield when you lose a Spirit Charge", statOrder = { 4386 }, level = 1, group = "GainESWhenSpiritChargeExpiresOrConsumed", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["PhysAddedAsEachElementPerSpiritChargeUnique__1"] = { affix = "", "Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge", statOrder = { 9624 }, level = 1, group = "PhysAddedAsEachElementPerSpiritCharge", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, }, + ["LocalDisplayGrantLevelXSpiritBurstUnique__1"] = { affix = "", "Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge", statOrder = { 816 }, level = 1, group = "LocalDisplayGrantLevelXSpiritBurst", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GainSpiritChargeEverySecondUnique__1"] = { affix = "", "Gain a Spirit Charge every second", statOrder = { 4382 }, level = 1, group = "GainSpiritChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LoseSpiritChargesOnSavageHitUnique__1_"] = { affix = "", "You lose all Spirit Charges when taking a Savage Hit", statOrder = { 4384 }, level = 1, group = "LoseSpiritChargesOnSavageHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__1"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4380 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumSpiritChargesPerAbyssJewelEquippedUnique__2"] = { affix = "", "+1 to Maximum Spirit Charges per Abyss Jewel affecting you", statOrder = { 4380 }, level = 1, group = "MaximumSpiritChargesPerAbyssJewelEquipped", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainDebilitatingPresenceUnique__1"] = { affix = "", "Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy", statOrder = { 10708 }, level = 1, group = "GainDebilitatingPresence", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalDisplayGrantLevelXShadeFormUnique__1"] = { affix = "", "20% chance to Trigger Level 20 Shade Form when you Use a Socketed Skill", statOrder = { 795 }, level = 1, group = "LocalDisplayGrantLevelXShadeForm", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["TriggerShadeFormWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Shade Form when Hit", statOrder = { 796 }, level = 1, group = "TriggerShadeFormWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["AddedPhysicalDamagePerEnduranceChargeUnique__1"] = { affix = "", "Adds 5 to 8 Physical Damage per Endurance Charge", statOrder = { 9248 }, level = 1, group = "AddedPhysicalDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["ChaosResistancePerEnduranceChargeUnique__1_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5739 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1"] = { affix = "", "1% reduced Elemental Damage taken from Hits per Endurance Charge", statOrder = { 6315 }, level = 1, group = "ReducedElementalDamageTakenHitsPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["ArmourPerEnduranceChargeUnique__1"] = { affix = "", "+500 to Armour per Endurance Charge", statOrder = { 9653 }, level = 1, group = "ArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["AddedColdDamagePerFrenzyChargeUnique__1"] = { affix = "", "12 to 14 Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AvoidElementalDamagePerFrenzyChargeUnique__1"] = { affix = "", "2% chance to Avoid Elemental Damage from Hits per Frenzy Charge", statOrder = { 3372 }, level = 1, group = "AvoidElementalDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["MovementVelocityPerFrenzyChargeUnique__1"] = { affix = "", "4% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementVelocityPerFrenzyChargeUnique__2"] = { affix = "", "6% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["AttackDamageLeechPerFrenzyChargeUnique__1"] = { affix = "", "0.5% of Attack Damage Leeched as Life per Frenzy Charge", statOrder = { 7365 }, level = 1, group = "AttackDamageLeechPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["AddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "Adds 3 to 9 Lightning Damage to Spells per Power Charge", statOrder = { 9245 }, level = 1, group = "AddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AdditionalCriticalStrikeChancePerPowerChargeUnique__1"] = { affix = "", "+0.3% Critical Strike Chance per Power Charge", statOrder = { 4549 }, level = 1, group = "AdditionalCriticalStrikeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CriticalMultiplierPerPowerChargeUnique__1"] = { affix = "", "+(6-10)% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["ChanceToBlockSpellsPerPowerChargeUnique__1"] = { affix = "", "+2% Chance to Block Spell Damage per Power Charge", statOrder = { 4588 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChanceToBlockSpellsPerPowerChargeUnique__2_"] = { affix = "", "+5% Chance to Block Spell Damage per Power Charge", statOrder = { 4588 }, level = 1, group = "ChanceToBlockSpellsPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["DamageTakenPerEnduranceChargeWhenHitUnique__1_"] = { affix = "", "200 Fire Damage taken per second per Endurance Charge if you've been Hit Recently", statOrder = { 10706 }, level = 1, group = "DamageTakenPerEnduranceChargeWhenHit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DamageTakenPerFrenzyChargeMovingUnique__1"] = { affix = "", "200 Cold Damage taken per second per Frenzy Charge while moving", statOrder = { 10703 }, level = 1, group = "DamageTakenPerFrenzyChargeMoving", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DamageTakenPerPowerChargeOnCritUnique__1"] = { affix = "", "200 Lightning Damage taken per second per Power Charge if", "your Skills have dealt a Critical Strike Recently", statOrder = { 10710, 10710.1 }, level = 1, group = "DamageTakenPerPowerChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["RaiseSpectreManaCostUnique__1_"] = { affix = "", "(40-50)% reduced Mana Cost of Raise Spectre", statOrder = { 9811 }, level = 1, group = "RaiseSpectreManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "minion" }, }, + ["VoidShotOnSkillUseUnique__1_"] = { affix = "", "Consumes a Void Charge to Trigger Level 20 Void Shot when you fire Arrows with a Non-Triggered Skill", statOrder = { 819 }, level = 1, group = "VoidShotOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["MaximumVoidArrowsUnique__1"] = { affix = "", "5 Maximum Void Charges", "Gain a Void Charge every 0.5 seconds", statOrder = { 4356, 6911 }, level = 1, group = "MaximumVoidArrows", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotBeStunnedByAttacksElderItemUnique__1"] = { affix = "", "Cannot be Stunned by Attacks if your opposite Ring is an Elder Item", statOrder = { 4327 }, level = 1, group = "CannotBeStunnedByAttacksElderItem", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackDamageShaperItemUnique__1"] = { affix = "", "(60-80)% increased Attack Damage if your opposite Ring is a Shaper Item", statOrder = { 4324 }, level = 1, group = "AttackDamageShaperItem", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["SpellDamageElderItemUnique__1_"] = { affix = "", "(60-80)% increased Spell Damage if your opposite Ring is an Elder Item", statOrder = { 4325 }, level = 1, group = "SpellDamageElderItem", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["CannotBeStunnedBySpellsShaperItemUnique__1"] = { affix = "", "Cannot be Stunned by Spells if your opposite Ring is a Shaper Item", statOrder = { 4326 }, level = 1, group = "CannotBeStunnedBySpellsShaperItem", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RecoverLifeInstantlyOnManaFlaskUnique__1"] = { affix = "", "Recover (8-10)% of Life when you use a Mana Flask", statOrder = { 4343 }, level = 1, group = "RecoverLifeInstantlyOnManaFlask", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["NonInstantManaRecoveryAlsoAffectsLifeUnique__1"] = { affix = "", "Non-instant Mana Recovery from Flasks is also Recovered as Life", statOrder = { 4344 }, level = 1, group = "NonInstantManaRecoveryAlsoAffectsLife", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["SpellDamagePer200ManaSpentRecentlyUnique__1__"] = { affix = "", "(20-25)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000%", statOrder = { 4346 }, level = 1, group = "SpellDamagePer200ManaSpentRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["ManaCostPer200ManaSpentRecentlyUnique__1"] = { affix = "", "(50-60)% increased Cost of Skills for each 200 total Mana Spent Recently", statOrder = { 4345 }, level = 1, group = "ManaCostPer200ManaSpentRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SiphoningChargeOnSkillUseUnique__1"] = { affix = "", "25% chance to gain a Siphoning Charge when you use a Skill", statOrder = { 4336 }, level = 1, group = "SiphoningChargeOnSkillUse", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumSiphoningChargePerElderOrShaperItemUnique__1"] = { affix = "", "+1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped", statOrder = { 4335 }, level = 1, group = "MaximumSiphoningChargePerElderOrShaperItem", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhysicalDamageToAttacksPerSiphoningChargeUnique__1"] = { affix = "", "Adds (12-14) to (15-16) Physical Damage to Attacks and Spells per Siphoning Charge", statOrder = { 4337 }, level = 1, group = "PhysicalDamageToAttacksPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "attack", "caster" }, }, + ["LifeLeechPerSiphoningChargeUnique__1"] = { affix = "", "0.2% of Damage Leeched as Life per Siphoning Charge", statOrder = { 4340 }, level = 1, group = "LifeLeechPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["NonChaosDamageAddedAsChaosPerSiphoningChargeUnique__1"] = { affix = "", "Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge", statOrder = { 4338 }, level = 1, group = "NonChaosDamageAddedAsChaosPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AdditionalPhysicalDamageReductionPerSiphoningChargeUnique__1"] = { affix = "", "1% additional Physical Damage Reduction from Hits per Siphoning Charge", statOrder = { 4339 }, level = 1, group = "AdditionalPhysicalDamageReductionPerSiphoningCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["DamageTakenPerSiphoningChargeOnSkillUseUnique__1"] = { affix = "", "Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently", statOrder = { 4341 }, level = 1, group = "DamageTakenPerSiphoningChargeOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["SpellAddedPhysicalDamageUnique__1_"] = { affix = "", "Battlemage", statOrder = { 10771 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TentacleSmashOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Tentacle Whip on Kill", statOrder = { 823 }, level = 100, group = "TentacleSmashOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "green_herring" }, }, + ["GlimpseOfEternityWhenHitUnique__1"] = { affix = "", "Trigger Level 20 Glimpse of Eternity when Hit", statOrder = { 822 }, level = 1, group = "GlimpseOfEternityWhenHit", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["SummonVoidSphereOnKillUnique__1_"] = { affix = "", "20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill", statOrder = { 824 }, level = 100, group = "SummonVoidSphereOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["PetrificationStatueUnique__1"] = { affix = "", "Grants Level 20 Petrification Statue Skill", statOrder = { 677 }, level = 1, group = "GrantsPetrificationStatue", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsCatAspect1"] = { affix = "", "Grants Level 20 Aspect of the Cat Skill", statOrder = { 695 }, level = 1, group = "GrantsCatAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsBirdAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Avian Skill", statOrder = { 690 }, level = 1, group = "GrantsBirdAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsSpiderAspect1"] = { affix = "", "Grants Level 20 Aspect of the Spider Skill", statOrder = { 720 }, level = 1, group = "GrantsSpiderAspect", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsIntimidatingCry1"] = { affix = "", "Grants Level 20 Intimidating Cry Skill", statOrder = { 710 }, level = 1, group = "GrantsIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsCrabAspect1_"] = { affix = "", "Grants Level 20 Aspect of the Crab Skill", statOrder = { 697 }, level = 1, group = "GrantsCrabAspect", weightKey = { }, weightVal = { }, modTags = { "blue_herring", "skill" }, }, + ["ItemQuantityOnLowLifeUnique__1"] = { affix = "", "(10-16)% increased Quantity of Items found when on Low Life", statOrder = { 1593 }, level = 65, group = "ItemQuantityOnLowLife", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["DamagePer15DexterityUnique__1"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 72, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DamagePer15DexterityUnique__2"] = { affix = "", "1% increased Damage per 15 Dexterity", statOrder = { 6056 }, level = 1, group = "DamagePer15Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["LifeRegeneratedPerMinuteWhileIgnitedUnique__1"] = { affix = "", "Regenerate (75-125) Life per second while Ignited", statOrder = { 7405 }, level = 74, group = "LifeRegeneratedPerMinuteWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1"] = { affix = "", "20% increased Elemental Damage if you've Killed a Cursed Enemy Recently", statOrder = { 6298 }, level = 77, group = "IncreasedElementalDamageIfKilledCursedEnemyRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DoubleDamagePer500StrengthUnique__1"] = { affix = "", "6% chance to deal Double Damage per 500 Strength", statOrder = { 5665 }, level = 63, group = "DoubleDamagePer500Strength", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["BestiaryLeague"] = { affix = "", "Areas contain Beasts to hunt", statOrder = { 8905 }, level = 1, group = "BestiaryLeague", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RagingSpiritDurationResetOnIgnitedEnemyUnique__1"] = { affix = "", "Summoned Raging Spirits refresh their Duration when they Kill an Ignited Enemy", statOrder = { 9803 }, level = 1, group = "RagingSpiritDurationResetOnIgnitedEnemy", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["FrenzyChargePer50RampageStacksUnique__1"] = { affix = "", "Gain a Frenzy Charge on every 50th Rampage Kill", statOrder = { 4375 }, level = 1, group = "FrenzyChargePer50RampageStacks", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["AreaOfEffectPer25RampageStacksUnique__1_"] = { affix = "", "2% increased Area of Effect per 25 Rampage Kills", statOrder = { 4374 }, level = 1, group = "AreaOfEffectPer25RampageStacks", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnaffectedByCursesUnique__1"] = { affix = "", "Unaffected by Curses", statOrder = { 2478 }, level = 85, group = "UnaffectedByCurses", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ChanceToChillAttackersOnBlockUnique__1"] = { affix = "", "(30-40)% chance to Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, + ["ChanceToChillAttackersOnBlockUnique__2__"] = { affix = "", "Chill Attackers for 4 seconds on Block", statOrder = { 5766 }, level = 1, group = "ChanceToChillAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "red_herring", "elemental", "cold", "ailment" }, }, + ["ChanceToShockAttackersOnBlockUnique__1_"] = { affix = "", "(30-40)% chance to Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, }, + ["ChanceToShockAttackersOnBlockUnique__2"] = { affix = "", "Shock Attackers for 4 seconds on Block", statOrder = { 10005 }, level = 1, group = "ChanceToShockAttackersOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental", "lightning", "ailment" }, }, + ["SupportedByTrapAndMineDamageUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Trap And Mine Damage", statOrder = { 457 }, level = 1, group = "SupportedByTrapAndMineDamage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByClusterTrapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 16 Cluster Trap", statOrder = { 455 }, level = 1, group = "SupportedByClusterTrap", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["AviansMightColdDamageUnique__1"] = { affix = "", "Adds (20-25) to (37-40) Cold Damage while you have Avian's Might", statOrder = { 9234 }, level = 1, group = "AviansMightColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AviansMightLightningDamageUnique__1_"] = { affix = "", "Adds (1-3) to (55-62) Lightning Damage while you have Avian's Might", statOrder = { 9246 }, level = 1, group = "AviansMightLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AviansMightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Might Duration", statOrder = { 4933 }, level = 1, group = "AviansMightDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GrantAviansAspectToAlliesUnique__1"] = { affix = "", "Aspect of the Avian also grants Avian's Might and Avian's Flight to nearby Allies", statOrder = { 4789 }, level = 1, group = "GrantAviansAspectToAllies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AvianAspectBuffEffectUnique__1"] = { affix = "", "100% increased Aspect of the Avian Buff Effect", statOrder = { 4788 }, level = 1, group = "AvianAspectBuffEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AviansFlightLifeRegenerationUnique__1"] = { affix = "", "Regenerate 100 Life per Second while you have Avian's Flight", statOrder = { 7407 }, level = 1, group = "AviansFlightLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AviansFlightManaRegenerationUnique__1_"] = { affix = "", "Regenerate 12 Mana per Second while you have Avian's Flight", statOrder = { 8206 }, level = 1, group = "AviansFlightManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AviansFlightDurationUnique__1"] = { affix = "", "+(-2-2) seconds to Avian's Flight Duration", statOrder = { 4932 }, level = 1, group = "AviansFlightDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GrantsAvianTornadoUnique__1__"] = { affix = "", "Trigger Level 20 Twister when you gain Avian's Might or Avian's Flight", statOrder = { 797 }, level = 1, group = "GrantsAvianTornado", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["CatsStealthTriggeredIntimidatingCry"] = { affix = "", "Trigger Level 20 Intimidating Cry when you lose Cat's Stealth", statOrder = { 812 }, level = 1, group = "CatsStealthTriggeredIntimidatingCry", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["MaximumCrabBarriersUnique__1"] = { affix = "", "+5 to Maximum number of Crab Barriers", statOrder = { 4349 }, level = 81, group = "MaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalBlockChance5CrabBarriersUnique__1"] = { affix = "", "+3% Chance to Block Attack Damage while you have at least 5 Crab Barriers", statOrder = { 4352 }, level = 1, group = "AdditionalBlockChance5CrabBarriers", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AdditionalBlockChance10CrabBarriersUnique__1"] = { affix = "", "+5% Chance to Block Attack Damage while you have at least 10 Crab Barriers", statOrder = { 4353 }, level = 1, group = "AdditionalBlockChance10CrabBarriers", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["CrabBarriersLostWhenHitUnique__1_"] = { affix = "", "You only lose (5-7) Crab Barriers when you take Physical Damage from a Hit", statOrder = { 4351 }, level = 1, group = "CrabBarriersLostWhenHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamagePerCrabBarrierUnique__1"] = { affix = "", "3% increased Damage per Crab Barrier", statOrder = { 4350 }, level = 1, group = "DamagePerCrabBarrier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ChanceToGainMaximumCrabBarriersUnique__1_"] = { affix = "", "10% chance that if you would gain a Crab Barrier, you instead gain up to", "your maximum number of Crab Barriers", statOrder = { 4354, 4354.1 }, level = 1, group = "ChanceToGainMaximumCrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotBeStunned10CrabBarriersUnique__1"] = { affix = "", "Cannot be Stunned if you have at least 10 Crab Barriers", statOrder = { 4347 }, level = 1, group = "CannotBeStunned10CrabBarriers", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotLoseCrabBarriersIfLostRecentlyUnique__1"] = { affix = "", "Cannot lose Crab Barriers if you have lost Crab Barriers Recently", statOrder = { 4348 }, level = 1, group = "CannotLoseCrabBarriersIfLostRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainPhasingWhileCatsStealthUnique__1"] = { affix = "", "You have Phasing while you have Cat's Stealth", statOrder = { 6799 }, level = 1, group = "GainPhasingWhileCatsStealth", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainOnslaughtWhileCatsAgilityUnique__1_"] = { affix = "", "You have Onslaught while you have Cat's Agility", statOrder = { 6791 }, level = 1, group = "GainOnslaughtWhileCatsAgility", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CatsStealthDurationUnique__1_"] = { affix = "", "+2 seconds to Cat's Stealth Duration", statOrder = { 5477 }, level = 1, group = "CatsStealthDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CatsAgilityDurationUnique__1"] = { affix = "", "+2 seconds to Cat's Agility Duration", statOrder = { 4790 }, level = 1, group = "CatsAgilityDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CatAspectReservesNoManaUnique__1___"] = { affix = "", "Aspect of the Cat has no Reservation", statOrder = { 5476 }, level = 1, group = "CatAspectReservesNoMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["GainMaxFrenzyAndPowerOnCatsStealthUnique__1"] = { affix = "", "Gain up to your maximum number of Frenzy and Power Charges when you gain Cat's Stealth", statOrder = { 6772 }, level = 1, group = "GainMaxFrenzyAndPowerOnCatsStealth", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge" }, }, + ["GainMaxFrenzyAndEnduranceOnCatsAgilityUnique__1"] = { affix = "", "Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility", statOrder = { 6771 }, level = 1, group = "GainMaxFrenzyAndEnduranceOnCatsAgility", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge" }, }, + ["AttacksBleedOnHitWithCatsStealthUnique__1_"] = { affix = "", "Attacks always inflict Bleeding while you have Cat's Stealth", statOrder = { 4910 }, level = 1, group = "AttacksBleedOnHitWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["GainCrimsonDanceWithCatsStealthUnique__1"] = { affix = "", "You have Crimson Dance while you have Cat's Stealth", statOrder = { 10833 }, level = 1, group = "GainCrimsonDanceWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["MovementSpeedWithCatsStealthUnique__1"] = { affix = "", "20% increased Movement Speed while you have Cat's Stealth", statOrder = { 9437 }, level = 1, group = "MovementSpeedWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["AdditionalCriticalStrikeChanceWithCatAspectUnique__1"] = { affix = "", "+1% to Critical Strike Chance while affected by Aspect of the Cat", statOrder = { 4360 }, level = 1, group = "AdditionalCriticalStrikeChanceWithCatAspect", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["CritsBlindChanceWithCatsStealthUnique__1"] = { affix = "", "Critical Strikes have (10-20)% chance to Blind Enemies while you have Cat's Stealth", statOrder = { 4361 }, level = 1, group = "CritsBlindChanceWithCatsStealth", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["DamageAgainstBlindedEnemiesUnique__1"] = { affix = "", "(40-50)% increased Damage with Hits and Ailments against Blinded Enemies", statOrder = { 7149 }, level = 1, group = "DamageAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ChanceToAvoidBleedingUnique__1"] = { affix = "", "(40-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ChanceToAvoidBleedingUnique__2_"] = { affix = "", "100% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["DamageAgainstBleedingEnemiesUnique__1"] = { affix = "", "(40-50)% increased Damage with Hits and Ailments against Bleeding Enemies", statOrder = { 7148 }, level = 1, group = "DamageAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AccuracyAgainstBleedingEnemiesUnique__1"] = { affix = "", "+(400-500) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "AccuracyAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["CommandmentOfInfernoOnCritUnique__1"] = { affix = "", "Trigger Commandment of Inferno on Critical Strike", statOrder = { 786 }, level = 1, group = "CommandmentOfInfernoOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "critical" }, }, + ["MaximumResistancesOverrideUnique__1"] = { affix = "", "Your Maximum Resistances are (76-78)%", statOrder = { 9562 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, }, + ["MaximumResistancesOverrideUnique__2"] = { affix = "", "Your Maximum Resistances are (70-72)%", statOrder = { 9562 }, level = 1, group = "MaximumResistancesOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos", "resistance" }, }, + ["BurningDamagePerEnemyShockedRecentlyUnique__1_"] = { affix = "", "(8-12)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120%", statOrder = { 5382 }, level = 1, group = "BurningDamagePerEnemyShockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedLightningDamageAgainstIgnitedEnemiesUnique__1"] = { affix = "", "Adds (1-3) to (62-70) Lightning Damage to Hits against Ignited Enemies", statOrder = { 6885 }, level = 1, group = "AddedLightningDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["LightningDamageCanIgniteUnique__1"] = { affix = "", "Your Lightning Damage can Ignite", statOrder = { 7443 }, level = 100, group = "LightningDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ProjectileAttackDamageAt200DexterityUnique__1"] = { affix = "", "(40-50)% increased Projectile Attack Damage while you have at least 200 Dexterity", statOrder = { 4363 }, level = 60, group = "ProjectileAttackDamageAt200Dexterity", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["CriticalStrikeChanceAt200IntelligenceUnique__1"] = { affix = "", "(50-60)% increased Critical Strike Chance while you have at least 200 Intelligence", statOrder = { 4364 }, level = 60, group = "CriticalStrikeChanceAt200Intelligence", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["AddedFireDamageWhileNoLifeReservedUnique__1"] = { affix = "", "Adds (54-64) to (96-107) Fire Damage to Spells while no Life is Reserved", statOrder = { 9252 }, level = 1, group = "AddedFireDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedColdDamageWhileNoLifeReservedUnique__1__"] = { affix = "", "Adds (42-54) to (78-88) Cold Damage to Spells while no Life is Reserved", statOrder = { 9251 }, level = 1, group = "AddedColdDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedLightningDamageWhileNoLifeReservedUnique__1"] = { affix = "", "Adds (5-14) to (160-173) Lightning Damage to Spells while no Life is Reserved", statOrder = { 9253 }, level = 1, group = "AddedLightningDamageWhileNoLifeReserved", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["OnslaughtOnLowLifeUnique__1"] = { affix = "", "You have Onslaught while on Low Life", statOrder = { 6790 }, level = 77, group = "OnslaughtOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IgnoreEnemyFireResistWhileIgnitedUnique__1"] = { affix = "", "Hits ignore Enemy Monster Fire Resistance while you are Ignited", statOrder = { 7167 }, level = 75, group = "IgnoreEnemyFireResistWhileIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["CrimsonDanceIfCritRecentlyUnique__1"] = { affix = "", "You have Crimson Dance if you have dealt a Critical Strike Recently", statOrder = { 10832 }, level = 74, group = "CrimsonDanceIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["AnimateGuardianWeaponOnGuardianKillUnique__1_"] = { affix = "", "Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy", statOrder = { 793 }, level = 1, group = "AnimateGuardianWeaponOnGuardianKillUnique", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AnimateGuardianWeaponOnAnimatedWeaponKillUnique__1"] = { affix = "", "10% chance to Trigger Level 18 Animate Guardian's Weapon when Animated Weapon Kills an Enemy", statOrder = { 794 }, level = 1, group = "AnimateGuardianWeaponOnAnimatedWeaponKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannnotHaveNonAnimatedMinionsUnique__1"] = { affix = "", "You cannot have Non-Animated, Non-Manifested Minions", statOrder = { 10657 }, level = 1, group = "CannnotHaveNonAnimatedMinions", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["AnimatedGuardianDamagePerAnimatedWeaponUnique__1__"] = { affix = "", "Animated Guardian deals 5% increased Damage per Animated Weapon", statOrder = { 4689 }, level = 1, group = "AnimatedGuardianDamagePerAnimatedWeapon", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["AnimatedMinionsHaveMeleeSplashUnique__1"] = { affix = "", "Animated and Manifested Minions' Melee Strikes deal Splash", "Damage to surrounding targets", statOrder = { 4692, 4692.1 }, level = 1, group = "AnimatedMinionsHaveMeleeSplash", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["IncreasedAnimatedMinionSplashDamageUnique__1"] = { affix = "", "Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage", statOrder = { 6906 }, level = 1, group = "IncreasedAnimatedMinionSplashDamage", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["FireDamageToAttacksPerStrengthUnique__1"] = { affix = "", "Adds 1 to 2 Fire Damage to Attacks per 10 Strength", statOrder = { 9239 }, level = 1, group = "FireDamageToAttacksPerStrength", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, }, + ["ColdDamageToAttacksPerDexterityUnique__1"] = { affix = "", "Adds 1 to 2 Cold Damage to Attacks per 10 Dexterity", statOrder = { 9231 }, level = 1, group = "ColdDamageToAttacksPerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack" }, }, + ["LightningDamageToAttacksPerIntelligenceUnique__1"] = { affix = "", "Adds 0 to 3 Lightning Damage to Attacks per 10 Intelligence", statOrder = { 9244 }, level = 1, group = "LightningDamageToAttacksPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack" }, }, + ["AttackSpeedIfCriticalStrikeDealtRecentlyUnique__1"] = { affix = "", "(8-12)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrder = { 4897 }, level = 1, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["CastSpeedIfCriticalStrikeDealtRecentlyUnique__1"] = { affix = "", "(8-12)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrder = { 5468 }, level = 1, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["EffectOfChillIsReversedUnique__1"] = { affix = "", "The Effect of Chill on you is reversed", statOrder = { 5768 }, level = 30, group = "EffectOfChillIsReversed", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["TriggerSocketedSpellOnBowAttackUnique__1_"] = { affix = "", "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", statOrder = { 544 }, level = 57, group = "TriggerSocketedSpellOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, }, + ["TriggerSocketedSpellOnBowAttackUnique__2"] = { affix = "", "Trigger a Socketed Spell when you Attack with a Bow, with a 0.3 second Cooldown", statOrder = { 544 }, level = 1, group = "TriggerSocketedSpellOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, }, + ["CountAsLowLifeWhenNotOnFullLifeUnique__1"] = { affix = "", "You count as on Low Life while not on Full Life", statOrder = { 10661 }, level = 75, group = "CountAsLowLifeWhenNotOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedSpiderWebCountUnique__1"] = { affix = "", "Aspect of the Spider can inflict Spider's Web on Enemies an additional time", statOrder = { 4791 }, level = 1, group = "IncreasedSpiderWebCount", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AspectOfSpiderDurationUnique__1"] = { affix = "", "(40-50)% increased Aspect of the Spider Debuff Duration", statOrder = { 10201 }, level = 1, group = "AspectOfSpiderDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ESOnHitWebbedEnemiesUnique__1"] = { affix = "", "Gain (15-20) Energy Shield for each Enemy you Hit which is affected by a Spider's Web", statOrder = { 6433 }, level = 1, group = "ESOnHitWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AspectOfSpiderWebIntervalUnique__1"] = { affix = "", "Aspect of the Spider inflicts Spider's Webs and Hinder every 0.5 Seconds instead", statOrder = { 10204 }, level = 1, group = "AspectOfSpiderWebInterval", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PowerChargeOnHitWebbedEnemyUnique__1"] = { affix = "", "10% chance to gain a Power Charge on hitting an Enemy affected by a Spider's Web", statOrder = { 5696 }, level = 1, group = "PowerChargeOnHitWebbedEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["PoisonChancePerPowerChargeUnique__1"] = { affix = "", "(6-10)% chance to Poison per Power Charge", statOrder = { 5718 }, level = 1, group = "PoisonChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonDamagePerPowerChargeUnique__1"] = { affix = "", "(15-20)% increased Damage with Poison per Power Charge", statOrder = { 9680 }, level = 1, group = "PoisonDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["ChaosDamagePerWebOnEnemyUnique__1"] = { affix = "", "Adds (8-10) to (13-15) Chaos Damage for each Spider's Web on the Enemy", statOrder = { 9226 }, level = 1, group = "ChaosDamagePerWebOnEnemy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageAgainstEnemiesWith3WebsUnique__1_"] = { affix = "", "(40-60)% increased Damage with Hits and Ailments against Enemies affected by 3 Spider's Webs", statOrder = { 7153 }, level = 1, group = "DamageAgainstEnemiesWith3Webs", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AreaOfEffectAspectOfSpiderUnique__1"] = { affix = "", "(50-70)% increased Aspect of the Spider Area of Effect", statOrder = { 10203 }, level = 1, group = "AreaOfEffectAspectOfSpider", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageDealtByWebbedEnemiesUnique__1"] = { affix = "", "Enemies affected by your Spider's Webs deal 10% reduced Damage", statOrder = { 6041 }, level = 1, group = "DamageDealtByWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ResistancesOfWebbedEnemiesUnique__1"] = { affix = "", "Enemies affected by your Spider's Webs have -10% to All Resistances", statOrder = { 9923 }, level = 1, group = "ResistancesOfWebbedEnemies", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["NoArmourOrEnergyShieldUnique__1_"] = { affix = "", "You have no Armour or Maximum Energy Shield", statOrder = { 10663 }, level = 1, group = "NoArmourOrEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["PoachersMarkCurseOnHitHexproofUnique__1"] = { affix = "", "Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark", statOrder = { 760 }, level = 61, group = "PoachersMarkCurseOnHitHexproof", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["CullingStrikePoachersMarkUnique__1"] = { affix = "", "Culling Strike against Enemies Cursed with Poacher's Mark", statOrder = { 5988 }, level = 1, group = "CullingStrikePoachersMark", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageOnMovementSkillUnique__1"] = { affix = "", "Take (100-200) Physical Damage when you use a Movement Skill", statOrder = { 9976 }, level = 1, group = "DamageOnMovementSkill", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["RagingSpiritDamageUnique__1_"] = { affix = "", "Summoned Raging Spirits deal (175-250)% increased Damage", statOrder = { 3651 }, level = 1, group = "RagingSpiritDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["RagingSpiritDamageUnique__2"] = { affix = "", "Summoned Raging Spirits deal (25-40)% increased Damage", statOrder = { 3651 }, level = 1, group = "RagingSpiritDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["RagingSpiritAlwaysIgniteUnique__1"] = { affix = "", "Summoned Raging Spirits' Hits always Ignite", statOrder = { 9801 }, level = 1, group = "RagingSpiritAlwaysIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "minion", "ailment" }, }, + ["ReducedRagingSpiritsAllowedUnique__1"] = { affix = "", "75% reduced Maximum number of Summoned Raging Spirits", statOrder = { 9606 }, level = 1, group = "ReducedRagingSpiritsAllowed", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["BlindingAuraSkillUnique__1"] = { affix = "", "Triggers Level 20 Blinding Aura when Equipped", statOrder = { 678 }, level = 79, group = "BlindingAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["AddedFireDamageAgainstBlindedEnemiesUnique__1_"] = { affix = "", "Adds (145-157) to (196-210) Fire Damage to Hits with this Weapon against Blinded Enemies", statOrder = { 9240 }, level = 1, group = "AddedFireDamageAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["LightRadiusAppliesToAccuracyUnique__1_"] = { affix = "", "Increases and Reductions to Light Radius also apply to Accuracy", statOrder = { 7429 }, level = 1, group = "LightRadiusAppliesToAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["FirePenetrationAgainstBlindedEnemiesUnique__1"] = { affix = "", "Damage Penetrates 10% Fire Resistance against Blinded Enemies", statOrder = { 9877 }, level = 1, group = "FirePenetrationAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HitsCannotBeEvadedAgainstBlindedEnemiesUnique__1"] = { affix = "", "Your Hits can't be Evaded by Blinded Enemies", statOrder = { 7159 }, level = 72, group = "HitsCannotBeEvadedAgainstBlindedEnemies", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ChillEffectUnique__1"] = { affix = "", "(15-20)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 1, group = "ChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["OnHitWhileCursedTriggeredCurseNovaUnique__1"] = { affix = "", "Trigger Level 20 Elemental Warding on Melee Hit while Cursed", statOrder = { 807 }, level = 77, group = "OnHitWhileCursedTriggeredCurseNova", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ChanceToBePoisonedUnique__1"] = { affix = "", "+25% chance to be Poisoned", statOrder = { 3370 }, level = 1, group = "ChanceToBePoisoned", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["PoisonExpiresSlowerUnique__1"] = { affix = "", "Poisons on you expire 50% slower", statOrder = { 9692 }, level = 1, group = "PoisonExpiresSlower", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["MaximumResistancesWhilePoisonedUnique__1"] = { affix = "", "+3% to all maximum Resistances while Poisoned", statOrder = { 4564 }, level = 1, group = "MaximumResistancesWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["EnergyShieldRegenPerPoisonUnique__1"] = { affix = "", "Regenerate 80 Energy Shield per Second per Poison on you, up to 400 per second", statOrder = { 6457 }, level = 1, group = "EnergyShieldRegenPerPoison", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["BleedOnSelfDealChaosDamageUnique__1"] = { affix = "", "You take Chaos Damage instead of Physical Damage from Bleeding", statOrder = { 2450 }, level = 1, group = "BleedOnSelfDealChaosDamage", weightKey = { }, weightVal = { }, modTags = { "bleed", "poison", "physical", "chaos", "attack", "ailment" }, }, + ["MaximumLifePercentPerCorruptedItemUnique__1_"] = { affix = "", "6% increased Maximum Life for each Corrupted Item Equipped", statOrder = { 3097 }, level = 1, group = "MaximumLifePerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumEnergyShieldPercentPerCorruptedItemUnique__1_"] = { affix = "", "8% increased Maximum Energy Shield for each Corrupted Item Equipped", statOrder = { 3098 }, level = 1, group = "MaximumEnergyShieldPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["AllResistancesPerCorruptedItemUnique__1"] = { affix = "", "-(6-4)% to all Resistances for each Corrupted Item Equipped", statOrder = { 3103 }, level = 1, group = "AllResistancesPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["NoManaRecoveryDuringFlaskEffectUnique__1_"] = { affix = "", "Cannot gain Mana during effect", statOrder = { 994 }, level = 1, group = "NoManaRecoveryDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["FlaskGainVaalSoulPerSecondUnique__1_"] = { affix = "", "Gain 2 Vaal Souls Per Second during effect", statOrder = { 1000 }, level = 1, group = "FlaskGainVaalSoulPerSecond", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, }, + ["FlaskGainVaalSoulsOnUseUnique__1"] = { affix = "", "Gain (10-12) Vaal Souls on use", statOrder = { 890 }, level = 1, group = "FlaskGainVaalSoulsOnUse", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, }, + ["FlaskLoseChargesOnNewAreaUnique__1"] = { affix = "", "Loses all Charges when you enter a new area", statOrder = { 847 }, level = 1, group = "FlaskLoseChargesOnNewArea", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskVaalSkillDamageUnique__1"] = { affix = "", "(60-80)% increased Damage with Vaal Skills during effect", statOrder = { 1034 }, level = 1, group = "FlaskVaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, }, + ["FlaskVaalSkillDamageUnique__2"] = { affix = "", "Vaal Skills deal (30-40)% more Damage during Effect", statOrder = { 1035 }, level = 1, group = "FlaskVaalSkillMoreDamage", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, }, + ["FlaskVaalSkillCriticalStrikeChanceUnique__1"] = { affix = "", "(60-80)% increased Critical Strike Chance with Vaal Skills during effect", statOrder = { 1033 }, level = 1, group = "FlaskVaalSkillCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, }, + ["FlaskVaalSkillCostUnique__1"] = { affix = "", "Non-Aura Vaal Skills require 25% reduced Souls Per Use during Effect", statOrder = { 1037 }, level = 1, group = "FlaskVaalSkillCost", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, }, + ["FlaskVaalSoulPreventionDurationUnique__1_"] = { affix = "", "Vaal Skills used during effect have 10% reduced Soul Gain Prevention Duration", statOrder = { 1038 }, level = 1, group = "FlaskVaalSoulPreventionDuration", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, }, + ["FlaskVaalNoSoulPreventionUnique__1"] = { affix = "", "Vaal Skills used during effect do not apply Soul Gain Prevention", statOrder = { 1036 }, level = 1, group = "FlaskVaalNoSoulPrevention", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, }, + ["CannotGainFlaskChargesDuringEffectUnique__1"] = { affix = "", "Gains no Charges during Effect of any Soul Ripper Flask", statOrder = { 1067 }, level = 1, group = "CannotGainFlaskChargesDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskVaalConsumeMaximumChargesUnique__1"] = { affix = "", "Consumes Maximum Charges to use", statOrder = { 881 }, level = 1, group = "FlaskVaalConsumeMaximumCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskVaalGainSoulsAsChargesUnique__1_"] = { affix = "", "Gain Vaal Souls equal to Charges Consumed when used", statOrder = { 885 }, level = 1, group = "FlaskVaalGainSoulsAsCharges", weightKey = { }, weightVal = { }, modTags = { "flask", "vaal" }, }, + ["UniqueSelfCurseVulnerabilityLevel10"] = { affix = "", "You are Cursed with Vulnerability", statOrder = { 3122 }, level = 28, group = "UniqueSelfCurseVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["UniqueSelfCurseVulnerabilityLevel20"] = { affix = "", "You are Cursed with Vulnerability", statOrder = { 3122 }, level = 66, group = "UniqueSelfCurseVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["EnemiesExtraDamageRollsWhileAffectedByVulnerabilityUnique__1_"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability", statOrder = { 3117 }, level = 1, group = "EnemiesExtraDamageRollsWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CountAsLowLifeWhileAffectedByVulnerabilityUnique__1"] = { affix = "", "You count as on Low Life while you are Cursed with Vulnerability", statOrder = { 3120 }, level = 1, group = "CountAsLowLifeWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["TrapAreaOfEffectUnique__1"] = { affix = "", "Skills used by Traps have (10-20)% increased Area of Effect", statOrder = { 3479 }, level = 1, group = "TrapAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CastSpeedAppliesToTrapSpeedUnique__1"] = { affix = "", "Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed", statOrder = { 4594 }, level = 1, group = "CastSpeedAppliesToTrapSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["RandomChargeOnTrapTriggerUnique__1"] = { affix = "", "10% chance to gain an Endurance, Frenzy or Power Charge when any", "of your Traps are Triggered by an Enemy", statOrder = { 9604, 9604.1 }, level = 1, group = "RandomChargeOnTrapTrigger", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["TrapSkillsHaveBloodMagicUnique__1"] = { affix = "", "Skills which throw Traps Cost Life instead of Mana", statOrder = { 10843 }, level = 1, group = "TrapSkillsHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotGainEnergyShieldUnique__1"] = { affix = "", "Cannot gain Energy Shield", statOrder = { 3118 }, level = 1, group = "CannotGainEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LifeRegenerationWith500EnergyShieldUnique__1"] = { affix = "", "Regenerate 50 Life per second if you have at least 500 Maximum Energy Shield", statOrder = { 4371 }, level = 1, group = "LifeRegenerationWith500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationWith1000EnergyShieldUnique__1"] = { affix = "", "Regenerate 100 Life per second if you have at least 1000 Maximum Energy Shield", statOrder = { 4372 }, level = 1, group = "LifeRegenerationWith1000EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRegenerationWith1500EnergyShieldUnique__1"] = { affix = "", "Regenerate 150 Life per second if you have at least 1500 Maximum Energy Shield", statOrder = { 4373 }, level = 1, group = "LifeRegenerationWith1500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedLifePerIntelligenceUnique__1"] = { affix = "", "+1 to Maximum Life per 2 Intelligence", statOrder = { 2023 }, level = 1, group = "IncreasedLifePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["NoMaximumLifePerStrengthUnique__1"] = { affix = "", "Strength provides no bonus to Maximum Life", statOrder = { 2018 }, level = 1, group = "NoMaximumLifePerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["NoMaximumLifePerStrengthUnique__2"] = { affix = "", "Strength provides no bonus to Maximum Life", statOrder = { 2018 }, level = 1, group = "NoMaximumLifePerStrength", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["NoMaximumManaPerIntelligenceUnique__1"] = { affix = "", "Intelligence provides no inherent bonus to Maximum Mana", statOrder = { 2019 }, level = 1, group = "NoMaximumManaPerIntelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["LifeRegenerationPer500EnergyShieldUnique__1"] = { affix = "", "Regenerate 1% of Life per second per 500 Maximum Energy Shield", statOrder = { 7418 }, level = 1, group = "LifeRegenerationPer500EnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SkeletonsTakeFireDamagrPerSecondUnique__1"] = { affix = "", "Summoned Skeletons take (15-30)% of their Maximum Life per second as Fire Damage", statOrder = { 10312 }, level = 1, group = "SkeletonsTakeFireDamagrPerSecond", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["SkeletonsCoverEnemiesInAshUnique__1"] = { affix = "", "Summoned Skeletons Cover Enemies in Ash on Hit", statOrder = { 10311 }, level = 1, group = "SkeletonsCoverEnemiesInAsh", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["SkeletonsHaveAvatarOfFireUnique__1_"] = { affix = "", "Summoned Skeletons have Avatar of Fire", statOrder = { 10830 }, level = 1, group = "SkeletonsHaveAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AreaOfEffectPerEnemyKilledRecentlyUnique__1"] = { affix = "", "1% increased Area of Effect per Enemy killed recently, up to 50%", statOrder = { 4734 }, level = 1, group = "AreaOfEffectPerEnemyKilledRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ZealotsOathIfHaventBeenHitRecentlyUnique__1"] = { affix = "", "You have Zealot's Oath if you haven't been hit recently", statOrder = { 10844 }, level = 1, group = "ZealotsOathIfHaventBeenHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LifeGainOnHitIfVaalSkillUsedRecentlyUnique__1"] = { affix = "", "Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently", statOrder = { 7356 }, level = 1, group = "LifeGainOnHitIfVaalSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MovementVelocityIfVaalSkillUsedRecentlyUnique__1_"] = { affix = "", "10% increased Movement Speed if you have used a Vaal Skill Recently", statOrder = { 9422 }, level = 40, group = "MovementVelocityIfVaalSkillUsedRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["GainPowerChargeOnUsingVaalSkillUnique__1"] = { affix = "", "Gain a Power Charge when you use a Vaal Skill", statOrder = { 6809 }, level = 1, group = "GainPowerChargeOnUsingVaalSkill", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ChaosDamageCanIgniteChillAndShockUnique__1"] = { affix = "", "Chaos Damage can Ignite, Chill and Shock", statOrder = { 2887 }, level = 1, group = "ChaosDamageCanIgniteChillAndShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["GainSoulEaterOnVaalSkillUseUnique__1"] = { affix = "", "Gain Soul Eater for 20 seconds when you use a Vaal Skill", statOrder = { 6822 }, level = 88, group = "GainSoulEaterOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_"] = { affix = "", "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius", statOrder = { 3159 }, level = 1, group = "CriticalStrikeMultiplierPerUnallocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["AdditionalPhysicalReductionPerAllocatedStrengthJewelUnique__1"] = { affix = "", "1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius", statOrder = { 3151 }, level = 1, group = "AdditionalPhysicalReductionPerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["AdditionalStrengthPerAllocatedStrengthJewelUnique__1_"] = { affix = "", "-1 Strength per 1 Strength on Allocated Passives in Radius", statOrder = { 3070 }, level = 1, group = "AdditionalStrengthPerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["FlatManaPerUnallocatedDexterityJewelUnique__1"] = { affix = "", "+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius", statOrder = { 3160 }, level = 1, group = "FlatManaRegenPerUnallocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["MovementSpeedPerAllocatedDexterityJewelUnique__1"] = { affix = "", "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius", statOrder = { 3153 }, level = 1, group = "MovementSpeedPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["AdditionalDexterityPerAllocatedDexterityJewelUnique__1"] = { affix = "", "-1 Dexterity per 1 Dexterity on Allocated Passives in Radius", statOrder = { 3068 }, level = 1, group = "AdditionalDexterityPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1"] = { affix = "", "+125 to Accuracy Rating per 10 Intelligence on Unallocated Passives in Radius", statOrder = { 3158 }, level = 1, group = "AccuracyRatingPerUnallocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["EnergyShieldRegenPerAllocatedIntelligenceJewelUnique__1_"] = { affix = "", "Regenerate 0.4% of Energy Shield per Second for", "every 10 Intelligence on Allocated Passives in Radius", statOrder = { 3152, 3152.1 }, level = 1, group = "EnergyShieldRegenPerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["AdditionalIntelligencePerAllocatedIntelligenceJewelUnique__1__"] = { affix = "", "-1 Intelligence per 1 Intelligence on Allocated Passives in Radius", statOrder = { 3069 }, level = 1, group = "AdditionalIntelligencePerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["LifeRecoveryRatePerAllocatedStrengthUnique__1_"] = { affix = "", "2% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius", statOrder = { 8085 }, level = 1, group = "LifeRecoveryRatePerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRatePerAllocatedStrengthUnique__2"] = { affix = "", "3% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius", statOrder = { 8085 }, level = 1, group = "LifeRecoveryRatePerAllocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeRecoveryRatePerUnallocatedStrengthUnique__1_"] = { affix = "", "2% reduced Life Recovery Rate per 10 Strength on Unallocated Passives in Radius", statOrder = { 8086 }, level = 1, group = "LifeRecoveryRatePerUnallocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["CriticalStrikeMultiplierPerUnallocatedStrengthUnique__1"] = { affix = "", "+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius", statOrder = { 3159 }, level = 1, group = "CriticalStrikeMultiplierPerUnallocatedStrengthJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["MovementSpeedPerAllocatedDexterityUnique__1"] = { affix = "", "2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius", statOrder = { 3153 }, level = 1, group = "MovementSpeedPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementSpeedPerAllocatedDexterityUnique__2"] = { affix = "", "3% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius", statOrder = { 3153 }, level = 1, group = "MovementSpeedPerAllocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementSpeedPerUnallocatedDexterityUnique__1_"] = { affix = "", "2% reduced Movement Speed per 10 Dexterity on Unallocated Passives in Radius", statOrder = { 8098 }, level = 1, group = "MovementSpeedPerUnallocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["AccuracyRatingPerUnallocatedDexterityUnique__1_"] = { affix = "", "+125 to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius", statOrder = { 8035 }, level = 1, group = "AccuracyRatingPerUnallocatedDexterityJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ManaRecoveryRatePerAllocatedIntelligenceUnique__1"] = { affix = "", "2% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius", statOrder = { 8094 }, level = 1, group = "ManaRecoveryRatePerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRatePerAllocatedIntelligenceUnique__2"] = { affix = "", "3% increased Mana Recovery Rate per 10 Intelligence on Allocated Passives in Radius", statOrder = { 8094 }, level = 1, group = "ManaRecoveryRatePerAllocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRecoveryRatePerUnallocatedIntelligenceUnique__1"] = { affix = "", "2% reduced Mana Recovery Rate per 10 Intelligence on Unallocated Passives in Radius", statOrder = { 8095 }, level = 1, group = "ManaRecoveryRatePerUnallocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["DamageOverTimeMultiplierPerUnallocatedIntelligenceUnique__1___"] = { affix = "", "+3% to Damage over Time Multiplier per 10 Intelligence on Unallocated Passives in Radius", statOrder = { 8054 }, level = 1, group = "DamageOverTimeMultiplierPerUnallocatedIntelligenceJewel", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["DamageConversionToRandomElementUnique__1"] = { affix = "", "75% of Physical Damage converted to a random Element", statOrder = { 1961 }, level = 1, group = "DamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["LocalDamageConversionToRandomElementUnique__1"] = { affix = "", "50% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4365 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["LocalDamageConversionToRandomElementUnique__2_"] = { affix = "", "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4365 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["LocalDamageConversionToRandomElementImplicitE1"] = { affix = "", "100% of Physical Damage from Hits with this Weapon is Converted to a random Element", statOrder = { 4365 }, level = 1, group = "LocalDamageConversionToRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["LocalAlwaysInflictElementalAilmentsUnique__1"] = { affix = "", "Hits with this Weapon always Ignite, Freeze, and Shock", statOrder = { 4367 }, level = 1, group = "LocalAlwaysInflictElementalAilments", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, }, + ["LocalElementalDamageAgainstIgnitedEnemiesUnique__1_"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Ignited Enemies", statOrder = { 4368 }, level = 1, group = "LocalElementalDamageAgainstIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["LocalElementalDamageAgainstFrozenEnemiesUnique__1"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Frozen Enemies", statOrder = { 4369 }, level = 1, group = "LocalElementalDamageAgainstFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["LocalElementalDamageAgainstShockedEnemiesUnique__1_"] = { affix = "", "Hits with this Weapon deal (30-60)% increased Damage to Shocked Enemies", statOrder = { 4370 }, level = 1, group = "LocalElementalDamageAgainstShockedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["OnslaughtWhileNotOnLowManaUnique__1_"] = { affix = "", "You have Onslaught while not on Low Mana", statOrder = { 6789 }, level = 1, group = "OnslaughtWhileNotOnLowMana", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LoseManaPerSecondUnique__1"] = { affix = "", "Lose (30-40) Mana per Second", statOrder = { 8171 }, level = 1, group = "LoseManaPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["LoseManaPercentPerSecondUnique__1"] = { affix = "", "Lose 7% of Mana per Second", statOrder = { 8172 }, level = 1, group = "LoseManaPercentPerSecond", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["DodgeAndSpellDodgePerMaximumManaUnique__1"] = { affix = "", "20% increased Evasion Rating per 500 Maximum Mana", statOrder = { 6479 }, level = 1, group = "DodgeAndSpellDodgePerMaximumMana", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["DisplayHasAdditionalModUnique__1"] = { affix = "", "Has an additional Implicit Mod", statOrder = { 640 }, level = 1, group = "DisplayHasAdditionalMod", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalDamageUniqueJewel_1"] = { affix = "", "(10-15)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalHitDisableFireUniqueJewel_1"] = { affix = "", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage", "With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire", statOrder = { 8063, 8066 }, level = 1, group = "ElementalHitDisableFireJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["ElementalHitDisableColdUniqueJewel_1"] = { affix = "", "With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage", "With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold", statOrder = { 8062, 8065 }, level = 1, group = "ElementalHitDisableColdJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["ElementalHitDisableLightningUniqueJewel_1"] = { affix = "", "With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage", "With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning", statOrder = { 8064, 8067 }, level = 1, group = "ElementalHitDisableLightningJewel", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["TriggerSummonPhantasmOnCorpseConsumeUnique__1"] = { affix = "", "Trigger Level 25 Summon Phantasm Skill when you Consume a corpse", statOrder = { 818 }, level = 1, group = "TriggerSummonPhantasmOnCorpseConsume", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CastSpeedPerCorpseConsumedRecentlyUnique__1"] = { affix = "", "3% increased Cast Speed for each corpse Consumed Recently", statOrder = { 5470 }, level = 1, group = "CastSpeedPerCorpseConsumedRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["LifeRegenerationIfCorpseConsumedRecentlyUnique__1"] = { affix = "", "If you Consumed a corpse Recently, you and nearby Allies Regenerate 5% of Life per second", statOrder = { 10641 }, level = 1, group = "LifeRegenerationIfCorpseConsumedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["CannotHaveNonGolemMinionsUnique__1_"] = { affix = "", "You cannot have non-Golem Minions", statOrder = { 3691 }, level = 1, group = "CannotHaveNonGolemMinions", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse"] = { affix = "", "Trigger a Socketed Warcry Skill on losing Endurance Charges, with a 0.25 second Cooldown", statOrder = { 156 }, level = 1, group = "UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueCurseWithSocketedCurseOnHit_"] = { affix = "", "Curse Enemies with Socketed Hex Curse Gem on Hit", statOrder = { 7889 }, level = 30, group = "UniqueCurseWithSocketedCurseOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, }, + ["LessGolemDamageUnique__1"] = { affix = "", "Golems Deal (25-35)% less Damage", statOrder = { 3700 }, level = 1, group = "LessGolemDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["LessGolemLifeUnique__1"] = { affix = "", "Golems have (25-35)% less Life", statOrder = { 4094 }, level = 1, group = "LessGolemLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["GolemSizeUnique__1"] = { affix = "", "25% reduced Golem Size", statOrder = { 3692 }, level = 1, group = "GolemSize", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["GolemMovementSpeedUnique__1"] = { affix = "", "Golems have (80-100)% increased Movement Speed", statOrder = { 6899 }, level = 1, group = "GolemMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["SacrificeLifeToGainESUnique__1"] = { affix = "", "Sacrifice (5-25)% of Life to gain that much Energy Shield when you Cast a Spell", statOrder = { 9956 }, level = 1, group = "SacrificeLifeToGainES", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["PhysicalDamageReductionPerKeystoneUnique__1"] = { affix = "", "4% additional Physical Damage Reduction per Keystone", statOrder = { 4575 }, level = 1, group = "PhysicalDamageReductionPerKeystone", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["CannotGainEnduranceChargesUnique__1__"] = { affix = "", "Cannot gain Endurance Charges", statOrder = { 4998 }, level = 1, group = "CannotGainEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["GrantsStatsFromNonNotablesInRadiusUnique__1"] = { affix = "", "Grants all bonuses of Unallocated Small Passive Skills in Radius", statOrder = { 7955 }, level = 1, group = "GrantsStatsFromNonNotablesInRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AllocatedNonNotablesGrantNothingUnique__1_"] = { affix = "", "Allocated Small Passive Skills in Radius grant nothing", statOrder = { 7953 }, level = 1, group = "AllocatedNonNotablesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueNearbyAlliesAreLuckyDisplay"] = { affix = "", "Nearby Allies' Damage with Hits is Lucky", statOrder = { 7903 }, level = 1, group = "UniqueNearbyAlliesAreLuckyDisplay", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["UniqueNearbyAlliesAreLucky"] = { affix = "", "Damage with Hits is Lucky", statOrder = { 5019 }, level = 1, group = "UniqueNearbyAlliesAreLucky", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["PlaceAdditionalMineWith600IntelligenceUnique__1"] = { affix = "", "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence", statOrder = { 9523 }, level = 1, group = "PlaceAdditionalMineWith600Intelligence", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PlaceAdditionalMineWith600DexterityUnique__1"] = { affix = "", "Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity", statOrder = { 9522 }, level = 1, group = "PlaceAdditionalMineWith600Dexterity", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BlockChancePer50StrengthUnique__1"] = { affix = "", "+1% Chance to Block Attack Damage per 50 Strength", statOrder = { 1152 }, level = 1, group = "BlockChancePer50Strength", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ExtraRollsSpellBlockUnique__1"] = { affix = "", "Chance to Block Spell Damage is Unlucky", statOrder = { 1159 }, level = 1, group = "ExtraRollsSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChargeBonusEnduranceChargeDuration"] = { affix = "", "(20-40)% increased Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "EnduranceChargeDuration", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ChargeBonusFrenzyChargeDuration"] = { affix = "", "(20-40)% increased Frenzy Charge Duration", statOrder = { 2127 }, level = 1, group = "FrenzyChargeDuration", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["ChargeBonusPowerChargeDuration"] = { affix = "", "(20-40)% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "IncreasedPowerChargeDuration", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ChargeBonusEnduranceChargeOnKill"] = { affix = "", "10% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ChargeBonusFrenzyChargeOnKill"] = { affix = "", "10% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["ChargeBonusPowerChargeOnKill"] = { affix = "", "10% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ChargeBonusMovementVelocityPerEnduranceCharge"] = { affix = "", "1% increased Movement Speed per Endurance Charge", statOrder = { 9425 }, level = 1, group = "MovementVelocityPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ChargeBonusMovementVelocityPerFrenzyCharge"] = { affix = "", "1% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 1, group = "MovementVelocityPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ChargeBonusMovementVelocityPerPowerCharge"] = { affix = "", "1% increased Movement Speed per Power Charge", statOrder = { 9428 }, level = 1, group = "MovementVelocityPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ChargeBonusLifeRegenerationPerEnduranceCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Endurance Charge", statOrder = { 1576 }, level = 1, group = "LifeRegenerationPercentPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ChargeBonusLifeRegenerationPerFrenzyCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Frenzy Charge", statOrder = { 2628 }, level = 1, group = "LifeRegenerationPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ChargeBonusLifeRegenerationPerPowerCharge"] = { affix = "", "Regenerate 0.3% of Life per second per Power Charge", statOrder = { 7421 }, level = 1, group = "LifeRegenerationPercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ChargeBonusDamagePerEnduranceCharge"] = { affix = "", "5% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 1, group = "DamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ChargeBonusDamagePerFrenzyCharge"] = { affix = "", "5% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 1, group = "DamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ChargeBonusDamagePerPowerCharge"] = { affix = "", "5% increased Damage per Power Charge", statOrder = { 6066 }, level = 1, group = "IncreasedDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ChargeBonusAddedFireDamagePerEnduranceCharge"] = { affix = "", "(7-9) to (13-14) Fire Damage per Endurance Charge", statOrder = { 9237 }, level = 1, group = "GlobalAddedFireDamagePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ChargeBonusAddedColdDamagePerFrenzyCharge"] = { affix = "", "(6-8) to (12-13) Added Cold Damage per Frenzy Charge", statOrder = { 4273 }, level = 1, group = "AddedColdDamagePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["ChargeBonusAddedLightningDamagePerPowerCharge"] = { affix = "", "(1-2) to (18-20) Lightning Damage per Power Charge", statOrder = { 9242 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["ChargeBonusBlockChancePerEnduranceCharge"] = { affix = "", "+1% Chance to Block Attack Damage per Endurance Charge", statOrder = { 4536 }, level = 1, group = "BlockChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChargeBonusBlockChancePerFrenzyCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Frenzy Charge", statOrder = { 4537 }, level = 1, group = "BlockChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChargeBonusBlockChancePerPowerCharge_"] = { affix = "", "+1% Chance to Block Attack Damage per Power Charge", statOrder = { 4538 }, level = 1, group = "BlockChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChargeBonusDodgeChancePerEnduranceCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Endurance Charge", statOrder = { 10170 }, level = 1, group = "DodgeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChargeBonusDodgeChancePerFrenzyCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Frenzy Charge", statOrder = { 2546 }, level = 1, group = "ChanceToDodgePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChargeBonusDodgeChancePerPowerCharge"] = { affix = "", "+1% chance to Suppress Spell Damage per Power Charge", statOrder = { 10173 }, level = 1, group = "DodgeChancePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChargeBonusFireDamageAddedAsChaos__"] = { affix = "", "Gain 1% of Fire Damage as Extra Chaos Damage per Endurance Charge", statOrder = { 6560 }, level = 1, group = "FireDamageAddedAsChaosPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "fire", "chaos" }, }, + ["ChargeBonusColdDamageAddedAsChaos"] = { affix = "", "Gain 1% of Cold Damage as Extra Chaos Damage per Frenzy Charge", statOrder = { 5807 }, level = 1, group = "ColdDamageAddedAsChaosPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "cold", "chaos" }, }, + ["ChargeBonusLightningDamageAddedAsChaos"] = { affix = "", "Gain 1% of Lightning Damage as Extra Chaos Damage per Power Charge", statOrder = { 7445 }, level = 1, group = "LightningDamageAddedAsChaosPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "lightning", "chaos" }, }, + ["ChargeBonusArmourPerEnduranceCharge"] = { affix = "", "6% increased Armour per Endurance Charge", statOrder = { 9655 }, level = 1, group = "IncreasedArmourPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["ChargeBonusEvasionPerFrenzyCharge"] = { affix = "", "8% increased Evasion Rating per Frenzy Charge", statOrder = { 1556 }, level = 1, group = "IncreasedEvasionRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["ChargeBonusEnergyShieldPerPowerCharge"] = { affix = "", "3% increased Energy Shield per Power Charge", statOrder = { 6443 }, level = 1, group = "IncreasedEnergyShieldPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ChargeBonusChanceToGainMaximumEnduranceCharges"] = { affix = "", "15% chance that if you would gain Endurance Charges, you instead gain up to maximum Endurance Charges", statOrder = { 4239 }, level = 1, group = "ChanceToGainMaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ChargeBonusChanceToGainMaximumFrenzyCharges"] = { affix = "", "15% chance that if you would gain Frenzy Charges, you instead gain up to your maximum number of Frenzy Charges", statOrder = { 6773 }, level = 1, group = "ChanceToGainMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["ChargeBonusChanceToGainMaximumPowerCharges"] = { affix = "", "15% chance that if you would gain Power Charges, you instead gain up to", "your maximum number of Power Charges", statOrder = { 6775, 6775.1 }, level = 1, group = "ChanceToGainMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ChargeBonusEnduranceChargeIfHitRecently"] = { affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently", statOrder = { 6746 }, level = 1, group = "EnduranceChargeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ChargeBonusFrenzyChargeOnHit__"] = { affix = "", "10% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 1, group = "FrenzyChargeOnHitChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["ChargeBonusPowerChargeOnCrit"] = { affix = "", "20% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 1, group = "PowerChargeOnCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "critical" }, }, + ["ChargeBonusAttackAndCastSpeedPerEnduranceCharge"] = { affix = "", "1% increased Attack and Cast Speed per Endurance Charge", statOrder = { 4817 }, level = 1, group = "AttackAndCastSpeedPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["ChargeBonusAccuracyRatingPerFrenzyCharge"] = { affix = "", "10% increased Accuracy Rating per Frenzy Charge", statOrder = { 2050 }, level = 1, group = "AccuracyRatingPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["ChargeBonusAttackAndCastSpeedPerPowerCharge"] = { affix = "", "1% increased Attack and Cast Speed per Power Charge", statOrder = { 4818 }, level = 1, group = "AttackAndCastSpeedPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["ChargeBonusCriticalStrikeChancePerEnduranceCharge"] = { affix = "", "6% increased Critical Strike Chance per Endurance Charge", statOrder = { 5934 }, level = 1, group = "CriticalStrikeChancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ChargeBonusCriticalStrikeChancePerFrenzyCharge"] = { affix = "", "6% increased Critical Strike Chance per Frenzy Charge", statOrder = { 5935 }, level = 1, group = "CriticalStrikeChancePerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ChargeBonusCriticalStrikeMultiplierPerPowerCharge"] = { affix = "", "+3% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "CriticalMultiplierPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["ChargeBonusChaosResistancePerEnduranceCharge_"] = { affix = "", "+4% to Chaos Resistance per Endurance Charge", statOrder = { 5739 }, level = 1, group = "ChaosResistancePerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ChargeBonusPhysicalDamageReductionPerFrenzyCharge__"] = { affix = "", "1% additional Physical Damage Reduction per Frenzy Charge", statOrder = { 9647 }, level = 1, group = "PhysicalDamageReductionPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["ChargeBonusPhysicalDamageReductionPerPowerCharge_"] = { affix = "", "1% additional Physical Damage Reduction per Power Charge", statOrder = { 9649 }, level = 1, group = "PhysicalDamageReductionPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["ChargeBonusMaximumEnduranceCharges"] = { affix = "", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 1, group = "MaximumEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ChargeBonusMaximumFrenzyCharges"] = { affix = "", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 1, group = "MaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["ChargeBonusMaximumPowerCharges"] = { affix = "", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 1, group = "IncreasedMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ChargeBonusIntimidateOnHitEnduranceCharges"] = { affix = "", "Intimidate Enemies for 4 seconds on Hit with Attacks while at maximum Endurance Charges", statOrder = { 7297 }, level = 1, group = "IntimidateOnHitMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChargeBonusOnslaughtOnHitFrenzyCharges_"] = { affix = "", "Gain Onslaught for 4 seconds on Hit while at maximum Frenzy Charges", statOrder = { 6785 }, level = 1, group = "OnslaughtOnHitMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChargeBonusArcaneSurgeOnHitPowerCharges"] = { affix = "", "Gain Arcane Surge on Hit with Spells while at maximum Power Charges", statOrder = { 6727 }, level = 1, group = "ArcaneSurgeOnHitMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["ChargeBonusCannotBeStunnedEnduranceCharges__"] = { affix = "", "You cannot be Stunned while at maximum Endurance Charges", statOrder = { 4051 }, level = 1, group = "CannotBeStunnedMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChargeBonusFlaskChargeOnCritFrenzyCharges"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike while at maximum Frenzy Charges", statOrder = { 6751 }, level = 1, group = "FlaskChargeOnCritMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["ChargeBonusAdditionalCursePowerCharges"] = { affix = "", "You can apply an additional Curse while at maximum Power Charges", statOrder = { 9519 }, level = 1, group = "AdditionalCurseMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["ChargeBonusVaalPactEnduranceCharges"] = { affix = "", "You have Vaal Pact while at maximum Endurance Charges", statOrder = { 10836 }, level = 1, group = "VaalPactMaximumEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ChargeBonusIronReflexesFrenzyCharges"] = { affix = "", "You have Iron Reflexes while at maximum Frenzy Charges", statOrder = { 10834 }, level = 1, group = "IronReflexesMaximumFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["ChargeBonusMindOverMatterPowerCharges"] = { affix = "", "You have Mind over Matter while at maximum Power Charges", statOrder = { 10835 }, level = 1, group = "MindOverMatterMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["GlobalEnergyShieldPercentUnique__1"] = { affix = "", "(15-20)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "GlobalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["GlobalEvasionRatingPercentUnique__1"] = { affix = "", "(15-20)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "GlobalEvasionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["GlobalEvasionRatingAndArmourPercentUnique__1_"] = { affix = "", "(30-60)% increased Evasion Rating and Armour", statOrder = { 1543 }, level = 1, group = "GlobalEvasionAndArmourPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "evasion" }, }, + ["GlobalPhysicalDamageReductionRatingPercentUnique__1"] = { affix = "", "(15-20)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["GlobalPhysicalDamageReductionRatingPercentUnique__2"] = { affix = "", "(20-30)% increased Armour", statOrder = { 1541 }, level = 1, group = "GlobalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["NearbyEnemiesReducedStunRecoveryUnique__1"] = { affix = "", "10% reduced Stun and Block Recovery", "Nearby Enemies have 10% reduced Stun and Block Recovery", statOrder = { 1902, 3404 }, level = 1, group = "NearbyEnemiesReducedStunRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NearbyEnemiesGrantIncreasedFlaskChargesUnique__1"] = { affix = "", "Nearby Enemies grant 25% increased Flask Charges", statOrder = { 3402 }, level = 1, group = "NearbyEnemiesGrantIncreasedFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["NearbyEnemiesHaveIncreasedChanceToBeCritUnique__1"] = { affix = "", "Hits against Nearby Enemies have 50% increased Critical Strike Chance", statOrder = { 3400 }, level = 1, group = "NearbyEnemiesHaveIncreasedChanceToBeCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["NearbyEnemiesHaveIncreasedChanceToBeCritUnique__2"] = { affix = "", "Hits have 50% increased Critical Strike Chance against you", "Hits against Nearby Enemies have 50% increased Critical Strike Chance", statOrder = { 3130, 3401 }, level = 1, group = "NearbyEnemiesHaveIncreasedChanceToBeCrit2", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["NearbyEnemiesHaveReducedAllResistancesUnique__1"] = { affix = "", "Nearby Enemies have -10% to all Resistances", "-10% to All Resistances", statOrder = { 2999, 9922 }, level = 1, group = "NearbyEnemiesHaveReducedAllResistances", weightKey = { }, weightVal = { }, modTags = { "resistance" }, }, + ["AuraAddedFireDamagePerRedSocketUnique__1"] = { affix = "", "You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket", statOrder = { 3006 }, level = 1, group = "AuraAddedFireDamagePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AuraAddedColdDamagePerGreenSocketUnique__1"] = { affix = "", "You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket", statOrder = { 3007 }, level = 1, group = "AuraAddedColdDamagePerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AuraAddedLightningDamagePerBlueSocketUnique__1"] = { affix = "", "You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket", statOrder = { 3008 }, level = 1, group = "AuraAddedLightningDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AuraAddedChaosDamagePerWhiteSocketUnique__1"] = { affix = "", "You and Nearby Allies have 47 to 61 added Chaos Damage per White Socket", statOrder = { 3009 }, level = 1, group = "AuraAddedChaosDamagePerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ArmourPerEvasionRatingOnShieldUnique__1"] = { affix = "", "+5 to Armour per 5 Evasion Rating on Equipped Shield", statOrder = { 4378 }, level = 1, group = "ArmourPerEvasionRatingOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["EvasionRatingPerEnergyShieldOnShieldUnique__1"] = { affix = "", "+20 to Evasion Rating per 5 Maximum Energy Shield on Equipped Shield", statOrder = { 4379 }, level = 1, group = "EvasionRatingPerEnergyShieldOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["EnergyShieldPerArmourOnShieldUnique__1"] = { affix = "", "+1 to Maximum Energy Shield per 5 Armour on Equipped Shield", statOrder = { 4377 }, level = 1, group = "EnergyShieldPerArmourOnShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LifeLeechFromSpellsWith30BlockOnShieldUnique__1_"] = { affix = "", "0.5% of Spell Damage Leeched as Life if Equipped Shield has at least 30% Chance to Block", statOrder = { 4376 }, level = 1, group = "LifeLeechFromSpellsWith30BlockOnShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, }, + ["AngerNoReservationUnique__1"] = { affix = "", "Anger has no Reservation", statOrder = { 4688 }, level = 69, group = "AngerNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["ClarityNoReservationUnique__1"] = { affix = "", "Clarity has no Reservation", statOrder = { 5786 }, level = 69, group = "ClarityNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["DeterminationNoReservationUnique__1"] = { affix = "", "Determination has no Reservation", statOrder = { 6174 }, level = 69, group = "DeterminationNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["DisciplineNoReservationUnique__1"] = { affix = "", "Discipline has no Reservation", statOrder = { 6190 }, level = 69, group = "DisciplineNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["GraceNoReservationUnique__1"] = { affix = "", "Grace has no Reservation", statOrder = { 6904 }, level = 69, group = "GraceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["HasteNoReservationUnique__1"] = { affix = "", "Haste has no Reservation", statOrder = { 6939 }, level = 69, group = "HasteNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["HatredNoReservationUnique__1_"] = { affix = "", "Hatred has no Reservation", statOrder = { 6943 }, level = 69, group = "HatredNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["PurityOfElementsNoReservationUnique__1_"] = { affix = "", "Purity of Elements has no Reservation", statOrder = { 9767 }, level = 69, group = "PurityOfElementsNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["PurityOfFireNoReservationUnique__1"] = { affix = "", "Purity of Fire has no Reservation", statOrder = { 9770 }, level = 69, group = "PurityOfFireNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["PurityOfIceNoReservationUnique__1_"] = { affix = "", "Purity of Ice has no Reservation", statOrder = { 9773 }, level = 69, group = "PurityOfIceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["PurityOfLightningNoReservationUnique__1"] = { affix = "", "Purity of Lightning has no Reservation", statOrder = { 9776 }, level = 69, group = "PurityOfLightningNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["VitalityNoReservationUnique__1"] = { affix = "", "Vitality has no Reservation", statOrder = { 10537 }, level = 69, group = "VitalityNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["WrathNoReservationUnique__1"] = { affix = "", "Wrath has no Reservation", statOrder = { 10631 }, level = 69, group = "WrathNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["EnvyNoReservationUnique__1"] = { affix = "", "Envy has no Reservation", statOrder = { 6466 }, level = 69, group = "EnvyNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["MalevolenceNoReservationUnique__1"] = { affix = "", "Malevolence has no Reservation", statOrder = { 6163 }, level = 69, group = "MalevolenceNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["ZealotryNoReservationUnique__1"] = { affix = "", "Zealotry has no Reservation", statOrder = { 10725 }, level = 69, group = "ZealotryNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["PrideNoReservationUnique__1"] = { affix = "", "Pride has no Reservation", statOrder = { 9718 }, level = 69, group = "PrideNoReservation", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["MinionAddedPhysicalDamageUnique__1"] = { affix = "", "Minions deal (90-102) to (132-156) additional Physical Damage", statOrder = { 3773 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["DoubleDamageChanceImplicitMace1"] = { affix = "", "5% chance to deal Double Damage", statOrder = { 5659 }, level = 1, group = "DoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AdditionalHolyRelicUnique__1"] = { affix = "", "+1 to maximum number of Summoned Holy Relics", statOrder = { 5035 }, level = 1, group = "AdditionalHolyRelic", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["HolyRelicCooldownRecoveryUnique__1"] = { affix = "", "Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Rate", statOrder = { 7178 }, level = 1, group = "HolyRelicCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["ColdDamageTakenUnique__1"] = { affix = "", "5% reduced Cold Damage taken", statOrder = { 3389 }, level = 1, group = "ColdDamageTakenPercentage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["ColdDamageTakenUnique__2"] = { affix = "", "10% increased Cold Damage taken", statOrder = { 3389 }, level = 1, group = "ColdDamageTakenPercentage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["OnslaughtEffectUnique__1"] = { affix = "", "100% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 1, group = "OnslaughtEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhysicalDamageWhileResoluteTechniqueUnique__1__"] = { affix = "", "100% increased Physical Damage while you have Resolute Technique", statOrder = { 10845 }, level = 1, group = "PhysicalDamageWhileResoluteTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["IncreasedWeaponElementalDamagePercentPerPowerChargeUnique__1"] = { affix = "", "(20-25)% increased Elemental Damage with Attack Skills per Power Charge", statOrder = { 6322 }, level = 1, group = "IncreasedWeaponElementalDamagePercentPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["ArrowsAlwaysPierceAfterForkingUnique__1__"] = { affix = "", "Arrows Pierce all Targets after Forking", statOrder = { 4781 }, level = 1, group = "ArrowsAlwaysPierceAfterForking", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ArrowsThatPierceHaveCritMultiUnique__1"] = { affix = "", "Arrows that Pierce have +50% to Critical Strike Multiplier", statOrder = { 5951 }, level = 1, group = "ArrowsThatPierceHaveCritMulti", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["SupportedByGreaterVolleyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 20 Greater Volley", statOrder = { 300 }, level = 1, group = "SupportedByGreaterVolley", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SupportedByIgniteProliferationUnique1"] = { affix = "", "Socketed Gems are Supported by Level 20 Ignite Proliferation", statOrder = { 308 }, level = 1, group = "SupportedByIgniteProliferation", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ChanceToBleedWithoutAvatarOfFireUnique__1"] = { affix = "", "Attacks with this Weapon have 50% chance to inflict Bleeding while you do not have Avatar of Fire", statOrder = { 10849 }, level = 1, group = "ChanceToBleedWithoutAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["FireDamageVersusBleedingEnemiesUnique__1"] = { affix = "", "(70-100)% increased Fire Damage with Hits and Ailments against Bleeding Enemies", statOrder = { 6567 }, level = 1, group = "FireDamageVersusBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["PhysicalDamageVersusIgnitedEnemiesUnique__1"] = { affix = "", "(70-100)% increased Physical Damage with Hits and Ailments against Ignited Enemies", statOrder = { 9642 }, level = 1, group = "PhysicalDamageVersusIgnitedEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PhysicalDamageTakenAsRandomElementUnique__1"] = { affix = "", "20% of Physical Damage from Hits taken as Damage of a Random Element", statOrder = { 9629 }, level = 1, group = "PhysicalDamageTakenAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, }, + ["StartEnergyShieldRechargeOnSkillUnique__1"] = { affix = "", "10% chance for Energy Shield Recharge to start when you use a Skill", statOrder = { 6449 }, level = 1, group = "StartEnergyShieldRechargeOnSkillChance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["SpellCriticalStrikeChancePerSpectreUnique__1_"] = { affix = "", "(50-100)% increased Spell Critical Strike Chance per Raised Spectre", statOrder = { 10139 }, level = 1, group = "SpellCriticalStrikeChancePerSpectre", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["GainArcaneSurgeOnCritUnique__1"] = { affix = "", "Gain Arcane Surge when you deal a Critical Strike", statOrder = { 6725 }, level = 1, group = "GainArcaneSurgeOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SpectresGainArcaneSurgeWhenYouDoUnique__1_"] = { affix = "", "Your Raised Spectres also gain Arcane Surge when you do", statOrder = { 10120 }, level = 1, group = "SpectresGainArcaneSurgeWhenYouDo", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["TriggerFeastOfFleshSkillUnique__1_"] = { affix = "", "Trigger Level 15 Feast of Flesh every 5 seconds", statOrder = { 801 }, level = 1, group = "TriggerFeastOfFleshSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["TriggerRandomOfferingSkillUnique__1"] = { affix = "", "Trigger Level 20 Bone Offering, Flesh Offering, Spirit Offering every 5 seconds in sequence", "Offering Skills Triggered this way also affect you", statOrder = { 802, 802.1 }, level = 1, group = "TriggerRandomOfferingSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["LeftRingSpellProjectilesForkUnique__1_"] = { affix = "", "Left ring slot: Projectiles from Spells Fork", statOrder = { 7981 }, level = 1, group = "LeftRingSpellProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LeftRingSpellProjectilesCannotChainUnique__1"] = { affix = "", "Left ring slot: Projectiles from Spells cannot Chain", statOrder = { 7980 }, level = 1, group = "LeftRingSpellProjectilesCannotChain", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RightRingSpellProjectilesChainUnique__1"] = { affix = "", "Right ring slot: Projectiles from Spells Chain +1 times", statOrder = { 8007 }, level = 1, group = "RightRingSpellProjectilesChain", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RightRingSpellProjectilesCannotForkUnique__1"] = { affix = "", "Right ring slot: Projectiles from Spells cannot Fork", statOrder = { 8008 }, level = 1, group = "RightRingSpellProjectilesCannotFork", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FireAndChaosDamageResistanceUnique__1__"] = { affix = "", "+(20-25)% to Fire and Chaos Resistances", statOrder = { 6549 }, level = 1, group = "FireAndChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "chaos", "resistance" }, }, + ["TriggerArcaneWakeSkillUnique__1"] = { affix = "", "Trigger Level 20 Arcane Wake after Spending a total of 200 Mana", statOrder = { 764 }, level = 1, group = "TriggerArcaneWakeSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["DoubleDamageWithWeaponUnique__1"] = { affix = "", "Attacks with this Weapon deal Double Damage", statOrder = { 7925 }, level = 1, group = "DoubleDamageWithWeapon", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["FocusCooldownRecoveryUnique__1_"] = { affix = "", "Focus has (30-50)% increased Cooldown Recovery Rate", statOrder = { 6653 }, level = 1, group = "FocusCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeRegenPerUncorruptedItemUnique__1"] = { affix = "", "Regenerate 15 Life per second for each Uncorrupted Item Equipped", statOrder = { 3101 }, level = 1, group = "LifeRegenPerUncorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["TotalManaCostPerCorruptedItemUnique__1"] = { affix = "", "-2 to Total Mana Cost of Skills for each Corrupted Item Equipped", statOrder = { 4333 }, level = 1, group = "TotalManaCostPerCorruptedItem", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ChillNearbyEnemiesOnFocusUnique__1_"] = { affix = "", "Chill nearby Enemies when you Focus, causing 30% reduced Action Speed", statOrder = { 5772 }, level = 67, group = "ChillNearbyEnemiesOnFocus", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["DamageWithHitsAndAilmentsAgainstChilledEnemyUnique__1"] = { affix = "", "(50-70)% increased Damage with Hits and Ailments against Chilled Enemies", statOrder = { 7150 }, level = 1, group = "DamageWithHitsAndAilmentsAgainstChilledEnemy", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ElementalDamageWhileAffectedBySextantUnique__1"] = { affix = "", "(30-40)% increased Elemental Damage while in an area affected by a Sextant", statOrder = { 6311 }, level = 1, group = "ElementalDamageWhileAffectedBySextant", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["BleedOnCritUnique__1_"] = { affix = "", "50% chance to inflict Bleeding on Critical Strike with Attacks", statOrder = { 2485 }, level = 1, group = "BleedOnCrit", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "critical", "ailment" }, }, + ["MaimOnCritUnique__1"] = { affix = "", "50% chance to Maim Enemies on Critical Strike with Attacks", statOrder = { 8153 }, level = 1, group = "MaimOnCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["EnemiesYouBleedGrantIncreasedFlaskChargesUnique__1_"] = { affix = "", "Enemies you inflict Bleeding on grant (60-100)% increased Flask Charges", statOrder = { 2493 }, level = 1, group = "EnemiesYouBleedGrantIncreasedFlaskCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["AddedPhysicalDamageVsBleedingEnemiesUnique__1"] = { affix = "", "Adds (100-120) to (150-165) Physical Damage against Bleeding Enemies", statOrder = { 2494 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["LifeRegenerationIfBlockedRecentlyUnique__1"] = { affix = "", "If you have Blocked Recently, you and nearby Allies Regenerate 5% of Life per second", statOrder = { 10642 }, level = 1, group = "LifeRegenerationIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["GroundTarOnBlockUnique__1"] = { affix = "", "Spreads Tar when you Block", statOrder = { 6916 }, level = 79, group = "GroundTarOnBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["GainShapersPresenceUnique__1"] = { affix = "", "Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy", statOrder = { 6817 }, level = 81, group = "GainShapersPresence", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellsCannotPierceUnique__1__"] = { affix = "", "Projectiles from Spells cannot Pierce", statOrder = { 9749 }, level = 1, group = "SpellsCannotPierce", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemiesIgnitedTakeIncreasedDamageUnique__1"] = { affix = "", "Enemies Ignited by you during Effect take (7-10)% increased Damage", statOrder = { 1044 }, level = 1, group = "EnemiesIgnitedTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, }, + ["GainChargeOnConsumingIgnitedCorpseUnique__1__"] = { affix = "", "Recharges 1 Charge when you Consume an Ignited corpse", statOrder = { 839 }, level = 1, group = "GainChargeOnConsumingIgnitedCorpse", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["GainChargeOnConsumingIgnitedCorpseUnique__2"] = { affix = "", "Recharges 5 Charges when you Consume an Ignited corpse", statOrder = { 839 }, level = 1, group = "GainChargeOnConsumingIgnitedCorpse", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["RecoverMaximumLifeOnKillFlaskEffectUnique__1"] = { affix = "", "Recover (1-3)% of Life when you Kill an Enemy during Effect", statOrder = { 1045 }, level = 1, group = "RecoverMaximumLifeOnKillFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["RecoverMaximumManaOnKillFlaskEffectUnique__1"] = { affix = "", "Recover (1-3)% of Mana when you Kill an Enemy during Effect", statOrder = { 1046 }, level = 1, group = "RecoverMaximumManaOnKillFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["RecoverMaximumEnergyShieldOnKillFlaskEffectUnique__1"] = { affix = "", "Recover (1-3)% of Energy Shield when you Kill an Enemy during Effect", statOrder = { 1047 }, level = 1, group = "RecoverMaximumEnergyShieldOnKillFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "defences", "energy_shield" }, }, + ["AlternateFireAilmentUnique__1"] = { affix = "", "(25-50)% chance to Scorch Enemies", "Cannot inflict Ignite", statOrder = { 2027, 2560 }, level = 1, group = "AlternateFireAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["AlternateColdAilmentUnique__1"] = { affix = "", "(25-50)% chance to inflict Brittle", "Cannot inflict Freeze or Chill", statOrder = { 2030, 2562 }, level = 1, group = "AlternateColdAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["AlternateLightningAilmentUnique__1__"] = { affix = "", "(25-50)% chance to Sap Enemies", "Cannot inflict Shock", statOrder = { 2034, 2563 }, level = 1, group = "AlternateLightningAilment", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["PrismaticSkillsInflictScorchUnique_1"] = { affix = "", "Hits with Prismatic Skills always Scorch", statOrder = { 9724 }, level = 1, group = "PrismaticSkillsAlwaysScorch", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["PrismaticSkillsInflictBrittleUnique_1"] = { affix = "", "Hits with Prismatic Skills always inflict Brittle", statOrder = { 9722 }, level = 1, group = "PrismaticSkillsAlwaysBrittle", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["PrismaticSkillsInflictSapUnique_1"] = { affix = "", "Hits with Prismatic Skills always Sap", statOrder = { 9723 }, level = 1, group = "PrismaticSkillsAlwaysSap", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ChaosNonAilmentDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(40-55)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["ColdDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(25-35)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["ColdDamageOverTimeMultiplierUnique__2"] = { affix = "", "+50% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["FireDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(40-60)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierUnique__2_"] = { affix = "", "+(15-25)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamageOverTimeMultiplierUnique__3"] = { affix = "", "+(8-12)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["GlobalDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(20-40)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, }, + ["GlobalDamageOverTimeMultiplierUnique__2"] = { affix = "", "+(20-40)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "dot_multi", "damage" }, }, + ["CurseCastSpeedUnique__1"] = { affix = "", "Curse Skills have (10-20)% increased Cast Speed", statOrder = { 2214 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, }, + ["CurseCastSpeedUnique__2"] = { affix = "", "Curse Skills have (8-12)% increased Cast Speed", statOrder = { 2214 }, level = 1, group = "CurseCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed", "curse" }, }, + ["TriggerSocketedCurseSkillsOnCurseUnique__1_"] = { affix = "", "Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Cooldown", statOrder = { 821 }, level = 1, group = "TriggerCurseOnCurse", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, }, + ["TrapsApplySocketedCurseSkillsWhenTriggeredUnique_1"] = { affix = "", "You cannot Cast Socketed Hex Curse Skills", "Inflict Socketed Hexes on Enemies that trigger your Traps", statOrder = { 543, 543.1 }, level = 70, group = "TriggerCurseOnTrap", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem", "curse" }, }, + ["EnergyShieldLeechPerCurseUnique__1_"] = { affix = "", "0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy", statOrder = { 1723 }, level = 1, group = "EnergyShieldLeechPerCurse", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1"] = { affix = "", "Gain (3-5)% of Elemental Damage as Extra Chaos Damage per Shaper Item Equipped", statOrder = { 4334 }, level = 1, group = "ElementalDamagePercentAddedAsChaosPerShaperItem", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, }, + ["HitsIgnoreChaosResistanceAllShaperItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Shaper Items", statOrder = { 7165 }, level = 1, group = "HitsIgnoreChaosResistanceAllShaperItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HitsIgnoreChaosResistanceAllElderItemsUnique__1"] = { affix = "", "Hits ignore Enemy Monster Chaos Resistance if all Equipped Items are Elder Items", statOrder = { 7164 }, level = 1, group = "HitsIgnoreChaosResistanceAllElderItems", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["ColdDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Cold Resistance above 75%", statOrder = { 5804 }, level = 1, group = "ColdDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["LightningDamagePerResistanceAbove75Unique__1"] = { affix = "", "(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75%", statOrder = { 7444 }, level = 1, group = "LightningDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["ElementalDamagePerResistanceAbove75Unique_1"] = { affix = "", "(5-10)% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75%", statOrder = { 6294 }, level = 1, group = "ElementalDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ClassicNebulisImplicitModifierMagnitudeUnique_1"] = { affix = "", "(60-120)% increased Implicit Modifier magnitudes", statOrder = { 58 }, level = 1, group = "LocalImplicitStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskConsecratedGroundDurationUnique__1"] = { affix = "", "(15-30)% reduced Duration", statOrder = { 857 }, level = 1, group = "FlaskConsecratedGroundDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskConsecratedGroundAreaOfEffectUnique__1_"] = { affix = "", "Consecrated Ground created by this Flask has Tripled Radius", statOrder = { 880 }, level = 1, group = "FlaskConsecratedGroundAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskConsecratedGroundDamageTakenUnique__1"] = { affix = "", "Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies", statOrder = { 978 }, level = 1, group = "FlaskConsecratedGroundDamageTaken", weightKey = { }, weightVal = { }, modTags = { "flask", "damage" }, }, + ["FlaskConsecratedGroundEffectUnique__1_"] = { affix = "", "+(1-2)% to Critical Strike Chance against Enemies on Consecrated Ground during Effect", statOrder = { 975 }, level = 1, group = "FlaskConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, }, + ["FlaskConsecratedGroundEffectCriticalStrikeUnique__1"] = { affix = "", "(100-150)% increased Critical Strike Chance against Enemies on Consecrated Ground during Effect", statOrder = { 1016 }, level = 1, group = "FlaskConsecratedGroundEffectCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, }, + ["ShockProliferationUnique__1"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2222 }, level = 1, group = "ShockProliferation", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ShockProliferationDuringFlaskEffectUnique__1"] = { affix = "", "Shocks you inflict during Effect spread to other Enemies within 2 metres", statOrder = { 1059 }, level = 85, group = "ShockProliferationDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, + ["ShockEffectDuringFlaskEffectUnique__1__"] = { affix = "", "(25-40)% increased Effect of Shocks you inflict during Effect", statOrder = { 1058 }, level = 1, group = "ShockEffectDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental", "lightning", "ailment" }, }, + ["ShockOnKillUnique__1"] = { affix = "", "Enemies you kill are Shocked", statOrder = { 1912 }, level = 1, group = "ShockOnKill", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["DivineChargeOnHitUnique__1_"] = { affix = "", "+10 to maximum Divine Charges", "Gain a Divine Charge on Hit", statOrder = { 4387, 4388 }, level = 1, group = "DivineChargeOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainDivinityOnMaxDivineChargeUnique__1"] = { affix = "", "You gain Divinity for 10 seconds on reaching maximum Divine Charges", "Lose all Divine Charges when you gain Divinity", statOrder = { 4390, 4390.1 }, level = 1, group = "GainDivinityOnMaxDivineCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NearbyEnemiesCannotCritUnique__1"] = { affix = "", "Never deal Critical Strikes", "Nearby Enemies cannot deal Critical Strikes", statOrder = { 2178, 7909 }, level = 1, group = "NearbyEnemiesCannotCrit", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["NearbyAlliesCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below Base Value", "Nearby Allies' Action Speed cannot be modified to below Base Value", statOrder = { 3194, 7901 }, level = 1, group = "NearbyAlliesCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["ManaReservationPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8215 }, level = 1, group = "ManaReservationPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaReservationEfficiencyPerAttributeUnique__1"] = { affix = "", "2% increased Mana Reservation Efficiency of Skills per 250 total Attributes", statOrder = { 8216 }, level = 1, group = "ManaReservationEfficiencyPerAttribute", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["DefencesPer100StrengthAuraUnique__1"] = { affix = "", "Nearby Allies have (4-6)% increased Defences per 100 Strength you have", statOrder = { 3002 }, level = 1, group = "DefencesPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["BlockPer100StrengthAuraUnique__1___"] = { affix = "", "Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have", statOrder = { 3001 }, level = 1, group = "BlockPer100StrengthAura", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["CriticalMultiplierPer100DexterityAuraUnique__1"] = { affix = "", "Nearby Allies have +(6-8)% to Critical Strike Multiplier per 100 Dexterity you have", statOrder = { 3003 }, level = 1, group = "CriticalMultiplierPer100DexterityAura", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["CastSpeedPer100IntelligenceAuraUnique__1"] = { affix = "", "Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have", statOrder = { 3004 }, level = 1, group = "CastSpeedPer100IntelligenceAura", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["GrantsAccuracyAuraSkillUnique__1"] = { affix = "", "Grants Level 30 Precision Skill", statOrder = { 686 }, level = 81, group = "AccuracyAuraSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["PrecisionAuraBonusUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9704 }, level = 1, group = "PrecisionAuraBonus", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["PrecisionReservationEfficiencyUnique__1"] = { affix = "", "Precision has 100% increased Mana Reservation Efficiency", statOrder = { 9705 }, level = 1, group = "PrecisionReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["SupportedByBlessingSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 25 Divine Blessing", statOrder = { 228 }, level = 1, group = "SupportedByBlessing", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["TriggerBowSkillsOnBowAttackUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Attack with a Bow, with a 1 second Cooldown", statOrder = { 757 }, level = 1, group = "TriggerBowSkillsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "gem" }, }, + ["TriggerBowSkillsOnCastUnique__1"] = { affix = "", "Trigger a Socketed Bow Skill when you Cast a Spell while", "wielding a Bow, with a 1 second Cooldown", statOrder = { 830, 830.1 }, level = 1, group = "TriggerBowSkillsOnCast", weightKey = { }, weightVal = { }, modTags = { "skill", "attack", "caster", "gem" }, }, + ["MaximumLifeLeechAmountUnique__1"] = { affix = "", "50% reduced Maximum Recovery per Life Leech", statOrder = { 1724 }, level = 1, group = "MaximumLifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeLeechAmountUnique__2"] = { affix = "", "80% reduced Maximum Recovery per Life Leech", statOrder = { 1724 }, level = 1, group = "MaximumLifeLeechAmount", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumLifeLeechAmountPerLifeReservedUnique__1"] = { affix = "", "(5-10)% increased Maximum Recovery per Life Leech for each 5% of Life Reserved", statOrder = { 9150 }, level = 1, group = "MaximumLifeLeechAmountPerLifeReserved", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LIfeReservationEfficiencyUnique__1"] = { affix = "", "(15-25)% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 1, group = "LifeReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeLeechNotRemovedOnFullLifeUnique__1"] = { affix = "", "Life Leech effects are not removed when Unreserved Life is Filled", statOrder = { 3211 }, level = 1, group = "LifeLeechNotRemovedOnFullLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AttacksBlindOnHitChanceUnique__1"] = { affix = "", "5% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AttacksBlindOnHitChanceUnique__2"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 1, group = "AttacksBlindOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AttacksYouUseYourselfRepeatCountUnique__1"] = { affix = "", "Attacks you use yourself Repeat an additional time", statOrder = { 1900 }, level = 1, group = "AttacksYouUseYourselfRepeatCount", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AttacksYouUseYourselfAttackSpeedFinalUnique__1"] = { affix = "", "Attacks you use yourself have 50% more Attack Speed", statOrder = { 1901 }, level = 1, group = "AttacksYouUseYourselfAttackSpeedFinal", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["HeraldBonusExtraMod1"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10711 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldBonusExtraMod2_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10711 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldBonusExtraMod3_"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10711 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldBonusExtraMod4"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10711 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldBonusExtraMod5"] = { affix = "", "When used in the Synthesiser, the new item will have an additional Herald Modifier", statOrder = { 10711 }, level = 1, group = "HeraldBonusExtraMod", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldBonusThunderReservation"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7126 }, level = 1, group = "HeraldBonusThunderReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HeraldBonusThunderReservationEfficiency"] = { affix = "", "Herald of Thunder has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7127 }, level = 1, group = "HeraldBonusThunderReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HeraldBonusThunderLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Herald of Thunder", statOrder = { 7448 }, level = 1, group = "HeraldBonusThunderLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HeraldBonusThunderEffect"] = { affix = "", "Herald of Thunder has (40-60)% increased Buff Effect", statOrder = { 7125 }, level = 1, group = "HeraldBonusThunderEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldBonusThunderMaxLightningResist"] = { affix = "", "+1% to maximum Lightning Resistance while affected by Herald of Thunder", statOrder = { 9165 }, level = 1, group = "HeraldBonusThunderMaxLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HeraldBonusThunderLightningResist_"] = { affix = "", "+(50-60)% to Lightning Resistance while affected by Herald of Thunder", statOrder = { 7450 }, level = 1, group = "HeraldBonusThunderLightningResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["HeraldBonusAshReservation"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7112 }, level = 1, group = "HeraldBonusAshReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HeraldBonusAshReservationEfficiency__"] = { affix = "", "Herald of Ash has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7113 }, level = 1, group = "HeraldBonusAshReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HeraldBonusAshFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Herald of Ash", statOrder = { 6569 }, level = 1, group = "HeraldBonusAshFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["HeraldBonusAshEffect"] = { affix = "", "Herald of Ash has (40-60)% increased Buff Effect", statOrder = { 7111 }, level = 1, group = "HeraldBonusAshEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldBonusAshMaxFireResist"] = { affix = "", "+1% to maximum Fire Resistance while affected by Herald of Ash", statOrder = { 9139 }, level = 1, group = "HeraldBonusAshMaxFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["HeraldBonusFireResist"] = { affix = "", "+(50-60)% to Fire Resistance while affected by Herald of Ash", statOrder = { 6570 }, level = 1, group = "HeraldBonusFireResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["HeraldBonusIceReservation_"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7116 }, level = 1, group = "HeraldBonusIceReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HeraldBonusIceReservationEfficiency__"] = { affix = "", "Herald of Ice has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7117 }, level = 1, group = "HeraldBonusIceReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HeraldBonusIceColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Herald of Ice", statOrder = { 5815 }, level = 1, group = "HeraldBonusIceColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HeraldBonusIceEffect_"] = { affix = "", "Herald of Ice has (40-60)% increased Buff Effect", statOrder = { 7115 }, level = 1, group = "HeraldBonusIceEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldBonusMaxColdResist__"] = { affix = "", "+1% to maximum Cold Resistance while affected by Herald of Ice", statOrder = { 9128 }, level = 1, group = "HeraldBonusMaxColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["HeraldBonusColdResist"] = { affix = "", "+(50-60)% to Cold Resistance while affected by Herald of Ice", statOrder = { 5817 }, level = 1, group = "HeraldBonusColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["HeraldBonusPurityReservation_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7121 }, level = 1, group = "HeraldBonusPurityReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HeraldBonusPurityReservationEfficiency_"] = { affix = "", "Herald of Purity has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7122 }, level = 1, group = "HeraldBonusPurityReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HeraldBonusPurityPhysicalDamage"] = { affix = "", "(40-60)% increased Physical Damage while affected by Herald of Purity", statOrder = { 9643 }, level = 1, group = "HeraldBonusPurityPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["HeraldBonusPurityEffect"] = { affix = "", "Herald of Purity has (40-60)% increased Buff Effect", statOrder = { 7119 }, level = 1, group = "HeraldBonusPurityEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldBonusPurityMinionDamage"] = { affix = "", "Sentinels of Purity deal (70-100)% increased Damage", statOrder = { 9987 }, level = 1, group = "HeraldBonusPurityMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["HeraldBonusPurityPhysicalDamageReduction"] = { affix = "", "4% additional Physical Damage Reduction while affected by Herald of Purity", statOrder = { 9650 }, level = 1, group = "HeraldBonusPurityPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["HeraldBonusAgonyReservation"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7108 }, level = 1, group = "HeraldBonusAgonyReservation", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HeraldBonusAgonyReservationEfficiency"] = { affix = "", "Herald of Agony has (30-40)% increased Mana Reservation Efficiency", statOrder = { 7109 }, level = 1, group = "HeraldBonusAgonyReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HeraldBonusAgonyChaosDamage_"] = { affix = "", "(40-60)% increased Chaos Damage while affected by Herald of Agony", statOrder = { 5738 }, level = 1, group = "HeraldBonusAgonyChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["HeraldBonusAgonyEffect"] = { affix = "", "Herald of Agony has (40-60)% increased Buff Effect", statOrder = { 7107 }, level = 1, group = "HeraldBonusAgonyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldBonusAgonyMinionDamage_"] = { affix = "", "Agony Crawler deals (70-100)% increased Damage", statOrder = { 4613 }, level = 1, group = "HeraldBonusAgonyMinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["HeraldBonusAgonyChaosResist_"] = { affix = "", "+(31-43)% to Chaos Resistance while affected by Herald of Agony", statOrder = { 5743 }, level = 1, group = "HeraldBonusAgonyChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ZombiesCountAsCorpsesUnique__1"] = { affix = "", "Your Raised Zombies count as corpses", statOrder = { 9818 }, level = 1, group = "ZombiesCountAsCorpses", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["ZombiesNeedNoCorpsesUnique__1"] = { affix = "", "Raise Zombie does not require a corpse", statOrder = { 9812 }, level = 1, group = "ZombiesNeedNoCorpses", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["ZombieIncreasedLifeUnique__1"] = { affix = "", "Raised Zombies have (80-100)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "ZombieIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["AdditionalPhysicalDamageReductionWhileBleedingUnique__1"] = { affix = "", "(10-15)% additional Physical Damage Reduction while Bleeding", statOrder = { 4581 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["DamageTakenGainedAsLifeUnique__1_"] = { affix = "", "(10-20)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeUnique__2"] = { affix = "", "(80-100)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeUnique__3"] = { affix = "", "(6-12)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["DamageTakenGainedAsLifeUnique__4"] = { affix = "", "(10-15)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "DamageTakenGainedAsLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MinimumEnduranceChargeOnLowLifeUnique__1"] = { affix = "", "+3 to Minimum Endurance Charges while on Low Life", statOrder = { 9255 }, level = 1, group = "MinimumEnduranceChargeOnLowLife", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["MinimumPowerChargeOnLowLifeUnique__1"] = { affix = "", "+3 to Minimum Power Charges while on Low Life", statOrder = { 9260 }, level = 1, group = "MinimumPowerChargeOnLowLife", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SpellCriticalStrikeChanceIfKilledRecentlyUnique__1"] = { affix = "", "(200-250)% increased Critical Strike Chance for Spells if you've Killed Recently", statOrder = { 5924 }, level = 1, group = "SpellCriticalStrikeChanceIfKilledRecently", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SpellCriticalStrikeMultiplierIfNotKilledRecentlyUnique__1"] = { affix = "", "+(60-100)% to Critical Strike Multiplier for Spells if you haven't Killed Recently", statOrder = { 5954 }, level = 1, group = "SpellCriticalStrikeMultiplierIfNotKilledRecently", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["RagingSpiritLifeUnique__1"] = { affix = "", "Summoned Raging Spirits have (25-40)% increased maximum Life", statOrder = { 9327 }, level = 1, group = "RagingSpiritLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["RagingSpiritDurationUnique__1"] = { affix = "", "Summon Raging Spirit has (20-30)% increased Duration", statOrder = { 3412 }, level = 1, group = "RagingSpiritDuration", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["RagingSpiritChaosDamageTakenUnique__1"] = { affix = "", "Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage", statOrder = { 9328 }, level = 68, group = "RagingSpiritChaosDamageTaken", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["LosePowerChargeWhenHitUnique__1"] = { affix = "", "Lose a Power Charge when Hit", statOrder = { 10503 }, level = 1, group = "LosePowerChargeWhenHit", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SpellDamagePerLifeUnique__1"] = { affix = "", "5% increased Spell Damage per 100 Player Maximum Life", statOrder = { 10151 }, level = 1, group = "SpellDamagePerLife", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["SpellCriticalStrikeChancePerLifeUnique__1"] = { affix = "", "5% increased Spell Critical Strike Chance per 100 Player Maximum Life", statOrder = { 10138 }, level = 1, group = "SpellCriticalStrikeChancePerLife", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["SacrificeLifeOnSpellSkillUnique__1"] = { affix = "", "Sacrifice 10% of your Life when you Use or Trigger a Spell Skill", statOrder = { 9955 }, level = 1, group = "SacrificeLifeOnSpellSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "caster" }, }, + ["PercentDexterityIfStrengthHigherThanIntelligenceUnique__1"] = { affix = "", "15% increased Dexterity if Strength is higher than Intelligence", statOrder = { 6176 }, level = 1, group = "PercentDexterityIfStrengthHigherThanIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["CriticalStrikeMultiplierIfDexterityHigherThanIntelligenceUnique__1"] = { affix = "", "+(25-40)% to Critical Strike Multiplier if Dexterity is higher than Intelligence", statOrder = { 5956 }, level = 1, group = "CriticalStrikeMultiplierIfDexterityHigherThanIntelligence", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["ElementalDamagePerDexterityUnique__1"] = { affix = "", "1% increased Elemental Damage per 10 Dexterity", statOrder = { 6305 }, level = 1, group = "ElementalDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["LifePer10IntelligenceUnique__1"] = { affix = "", "+2 to Maximum Life per 10 Intelligence", statOrder = { 9156 }, level = 1, group = "LifePer10Intelligence", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["GrantsLevel30SmiteUnique__1"] = { affix = "", "Grants Level 30 Smite Skill", statOrder = { 719 }, level = 1, group = "GrantsSmiteLevel", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ElementalAilmentsOnYouInsteadOfAlliesUnique__1"] = { affix = "", "Enemies inflict Elemental Ailments on you instead of nearby Allies", statOrder = { 7924 }, level = 1, group = "ElementalAilmentsOnYouInsteadOfAllies", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["UnaffectedByPoisonUnique__1_"] = { affix = "", "Unaffected by Poison", statOrder = { 5055 }, level = 1, group = "UnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["KeystoneInnerConvictionUnique__1"] = { affix = "", "Inner Conviction", statOrder = { 10805 }, level = 1, group = "KeystoneInnerConviction", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "power_charge", "damage" }, }, + ["FasterPoisonDamageUnique__1"] = { affix = "", "Poisons you inflict deal Damage (30-50)% faster", statOrder = { 6545 }, level = 1, group = "FasterPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["TriggerRainOfArrowsOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Rain of Arrows when you Attack with a Bow", statOrder = { 813 }, level = 1, group = "TriggerRainOfArrowsOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, }, + ["TriggerToxicRainOnBowAttackUnique__1"] = { affix = "", "Trigger Level 5 Toxic Rain when you Attack with a Bow", statOrder = { 835 }, level = 1, group = "TriggerToxicRainOnBowAttack", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, }, + ["CursesRemainOnDeathUnique__1_"] = { affix = "", "Non-Aura Curses you inflict are not removed from Dying Enemies", statOrder = { 6010 }, level = 1, group = "CursesRemainOnDeath", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["EnemiesNearCursesBlindAndExplodeUnique__1"] = { affix = "", "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", statOrder = { 6387, 6387.1, 6387.2 }, level = 1, group = "EnemiesNearCursesBlindAndExplode", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["WarcryCooldownIs2SecondsUnique__1"] = { affix = "", "Warcry Skills' Cooldown Time is 4 seconds", statOrder = { 10575 }, level = 1, group = "WarcryCooldownIs2Seconds", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CriticalStrikeMultiplierIs250Unique__1"] = { affix = "", "Your Critical Strike Multiplier is 300%", statOrder = { 5952 }, level = 1, group = "CriticalStrikeMultiplierIs250", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["RageOnAttackCritUnique__1"] = { affix = "", "Gain 1 Rage on Critical Strike with Attacks", statOrder = { 7307 }, level = 1, group = "RageOnAttackCrit", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["RageOnMeleeHitUnique__1"] = { affix = "", "Gain 5 Rage on Melee Hit", statOrder = { 6844 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhysicalAddedAsFirePerRageUnique__1"] = { affix = "", "Every Rage also grants 1% of Physical Damage as Extra Fire Damage", statOrder = { 9634 }, level = 1, group = "PhysicalAddedAsFirePerRage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["LocalChanceForPoisonDamage300FinalInflictedWithThisWeaponUnique__1_"] = { affix = "", "20% chance for Poisons inflicted with this Weapon to deal 300% more Damage", statOrder = { 7872 }, level = 1, group = "LocalChanceForPoisonDamage300FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["AttackDamageWhileHoldingShieldUnique__1"] = { affix = "", "(10-15)% increased Attack Damage while holding a Shield", statOrder = { 1206 }, level = 1, group = "AttackDamageWhileHoldingShield", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["UniqueJewelAlternateTreeInRadiusVaal"] = { affix = "", "Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua", "Passives in radius are Conquered by the Vaal", "Historic", statOrder = { 10, 10.1, 10712 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, }, + ["UniqueJewelAlternateTreeInRadiusKarui"] = { affix = "", "Commanded leadership over (10000-18000) warriors under Kaom", "Passives in radius are Conquered by the Karui", "Historic", statOrder = { 10, 10.1, 10712 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, }, + ["UniqueJewelAlternateTreeInRadiusMaraketh"] = { affix = "", "Denoted service of (500-8000) dekhara in the akhara of Balbala", "Passives in radius are Conquered by the Maraketh", "Historic", statOrder = { 10, 10.1, 10712 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, }, + ["UniqueJewelAlternateTreeInRadiusTemplar"] = { affix = "", "Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius", "Passives in radius are Conquered by the Templars", "Historic", statOrder = { 10, 10.1, 10712 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, }, + ["UniqueJewelAlternateTreeInRadiusEternal"] = { affix = "", "Commissioned (2000-160000) coins to commemorate Cadiro", "Passives in radius are Conquered by the Eternal Empire", "Historic", statOrder = { 10, 10.1, 10712 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, }, + ["TotemDamagePerDevotion"] = { affix = "", "4% increased Totem Damage per 10 Devotion", statOrder = { 10394 }, level = 1, group = "TotemDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["BrandDamagePerDevotion"] = { affix = "", "4% increased Brand Damage per 10 Devotion", statOrder = { 10037 }, level = 1, group = "BrandDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["ChannelledSkillDamagePerDevotion"] = { affix = "", "Channelling Skills deal 4% increased Damage per 10 Devotion", statOrder = { 5728 }, level = 1, group = "ChannelledSkillDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["AreaDamagePerDevotion"] = { affix = "", "4% increased Area Damage per 10 Devotion", statOrder = { 4718 }, level = 1, group = "AreaDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ElementalDamagePerDevotion_"] = { affix = "", "4% increased Elemental Damage per 10 Devotion", statOrder = { 6304 }, level = 1, group = "ElementalDamagePerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ElementalResistancesPerDevotion"] = { affix = "", "+2% to all Elemental Resistances per 10 Devotion", statOrder = { 6339 }, level = 1, group = "ElementalResistancesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["AilmentEffectPerDevotion"] = { affix = "", "3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion", statOrder = { 9502 }, level = 1, group = "AilmentEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["ElementalAilmentSelfDurationPerDevotion_"] = { affix = "", "4% reduced Elemental Ailment Duration on you per 10 Devotion", statOrder = { 9975 }, level = 1, group = "ElementalAilmentSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["CurseSelfDurationPerDevotion"] = { affix = "", "4% reduced Duration of Curses on you per 10 Devotion", statOrder = { 9972 }, level = 1, group = "CurseSelfDurationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["MinionAttackAndCastSpeedPerDevotion"] = { affix = "", "1% increased Minion Attack and Cast Speed per 10 Devotion", statOrder = { 9271 }, level = 1, group = "MinionAttackAndCastSpeedPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionAccuracyRatingPerDevotion_"] = { affix = "", "Minions have +60 to Accuracy Rating per 10 Devotion", statOrder = { 9264 }, level = 1, group = "MinionAccuracyRatingPerDevotion", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, + ["AddedManaRegenerationPerDevotion"] = { affix = "", "Regenerate 0.6 Mana per Second per 10 Devotion", statOrder = { 8197 }, level = 1, group = "AddedManaRegenerationPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ReducedManaCostPerDevotion"] = { affix = "", "1% reduced Mana Cost of Skills per 10 Devotion", statOrder = { 8170 }, level = 1, group = "ReducedManaCostPerDevotion", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AuraEffectPerDevotion"] = { affix = "", "1% increased effect of Non-Curse Auras per 10 Devotion", statOrder = { 9493 }, level = 1, group = "AuraEffectPerDevotion", weightKey = { }, weightVal = { }, modTags = { "aura" }, }, + ["ShieldDefencesPerDevotion"] = { affix = "", "3% increased Defences from Equipped Shield per 10 Devotion", statOrder = { 10003 }, level = 1, group = "ShieldDefencesPerDevotion", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["DealNoChaosDamageUnique_1"] = { affix = "", "Deal no Chaos Damage", statOrder = { 5007 }, level = 1, group = "DealNoChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["LightRadiusToDamageUnique_1"] = { affix = "", "Increases and Reductions to Light Radius also apply to Damage", statOrder = { 2499 }, level = 1, group = "LightRadiusModifiersApplyToDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["LightRadiusToAreaOfEffectUnique__1"] = { affix = "", "Increases and Reductions to Light Radius also apply to Area of Effect at 50% of their value", statOrder = { 2498 }, level = 1, group = "LightRadiusModifiersApplyToAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CanRollMinionModifiersImplicitWandAtlas1"] = { affix = "", "Can roll Minion Modifiers", statOrder = { 17 }, level = 1, group = "CanRollMinionModifiers", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MinionDamageImplicitWand1"] = { affix = "", "Minions deal (26-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageImplicitWand2"] = { affix = "", "Minions deal (20-24)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageImplicitWand3"] = { affix = "", "Minions deal (12-16)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionDamageImplicitShield1"] = { affix = "", "Minions deal (5-10)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionElementalResistanceImplicitRing1"] = { affix = "", "Minions have +(10-15)% to all Elemental Resistances", statOrder = { 2912 }, level = 32, group = "MinionElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance", "minion" }, }, + ["TulBreachRingImplicit"] = { affix = "", "+2% to maximum Cold Resistance", "Cannot roll Modifiers of Non-Cold Damage Types", statOrder = { 1629, 5271 }, level = 40, group = "TulBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["XophBreachRingImplicit"] = { affix = "", "+2% to maximum Fire Resistance", "Cannot roll Modifiers of Non-Fire Damage Types", statOrder = { 1623, 5273 }, level = 40, group = "XophBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["EshBreachRingImplicit"] = { affix = "", "+2% to maximum Lightning Resistance", "Cannot roll Modifiers of Non-Lightning Damage Types", statOrder = { 1634, 5270 }, level = 40, group = "EshBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["UulNetolBreachRingImplicit"] = { affix = "", "3% additional Physical Damage Reduction", "Cannot roll Modifiers of Non-Physical Damage Types", statOrder = { 2273, 5272 }, level = 40, group = "UulNetolBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["ChayulaBreachRingImplicit"] = { affix = "", "+2% to maximum Chaos Resistance", "Cannot roll Modifiers of Non-Chaos Damage Types", statOrder = { 1640, 5269 }, level = 40, group = "ChayulaBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["FormlessBreachRingImplicit"] = { affix = "", "(5-7)% increased Global Defences", statOrder = { 2833 }, level = 53, group = "FormlessBreachRingImplicit", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["KineticWandImplicit"] = { affix = "", "Cannot roll Caster Modifiers", statOrder = { 7321 }, level = 1, group = "KineticWandImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionPhysicalToFirePerRedSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Fire Damage per Red Socket", statOrder = { 2719 }, level = 1, group = "MinionPhysicalToFirePerRedSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "minion" }, }, + ["MinionPhysicalToColdPerGreenSocket_"] = { affix = "", "Minions convert 25% of Physical Damage to Cold Damage per Green Socket", statOrder = { 2723 }, level = 1, group = "MinionPhysicalToColdPerGreenSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold", "minion" }, }, + ["MinionPhysicalToLightningPerBlueSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Lightning Damage per Blue Socket", statOrder = { 2725 }, level = 1, group = "MinionPhysicalToLightningPerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "minion" }, }, + ["MinionPhysicalToChaosPerWhiteSocket"] = { affix = "", "Minions convert 25% of Physical Damage to Chaos Damage per White Socket", statOrder = { 2729 }, level = 1, group = "MinionPhysicalToChaosPerWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, }, + ["MinionChanceToFreezeShockIgnite"] = { affix = "", "Minions have (5-10)% chance to Freeze, Shock and Ignite", statOrder = { 9282 }, level = 1, group = "MinionChanceToFreezeShockIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "minion", "ailment" }, }, + ["NonChilledEnemiesBleedAndChillUnique__1_"] = { affix = "", "Non-Chilled Enemies you inflict Bleeding on are Chilled", statOrder = { 9489 }, level = 1, group = "NonChilledEnemiesBleedAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChilledWhileBleedingUnique__1_"] = { affix = "", "You are Chilled while you are Bleeding", statOrder = { 5775 }, level = 1, group = "ChilledWhileBleeding", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["BleedingEnemiesShatterOnKillUnique__1"] = { affix = "", "Bleeding Enemies you Kill with Hits Shatter", statOrder = { 9990 }, level = 1, group = "BleedingEnemiesShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NonChilledEnemiesPoisonAndChillUnique__1"] = { affix = "", "Non-Chilled Enemies you Poison are Chilled", statOrder = { 9490 }, level = 1, group = "NonChilledEnemiesPoisonAndChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChilledWhilePoisonedUnique__1"] = { affix = "", "You are Chilled when you are Poisoned", statOrder = { 5776 }, level = 1, group = "ChilledWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["PoisonedEnemiesShatterOnKillUnique__1"] = { affix = "", "Poisoned Enemies you Kill with Hits Shatter", statOrder = { 9991 }, level = 1, group = "PoisonedEnemiesShatterOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamagePerZombieUnique__1"] = { affix = "", "(5-8)% increased Damage per Raised Zombie", statOrder = { 6018 }, level = 1, group = "DamagePerZombie", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ElementalDamageTakenPerZombieUnique__1"] = { affix = "", "1% less Elemental Damage taken per Raised Zombie", statOrder = { 6314 }, level = 1, group = "ElementalDamageTakenPerZombie", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["LoseEnduranceChargeOnFortifyGainUnique__1"] = { affix = "", "(20-25)% chance to lose an Endurance Charge when you gain Fortification", statOrder = { 4395 }, level = 1, group = "LoseEnduranceChargeOnFortifyGain", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["LoseFrenzyChargeOnTravelSkillUnique__1"] = { affix = "", "(20-25)% chance to lose a Frenzy Charge when you use a Travel Skill", statOrder = { 4394 }, level = 1, group = "LoseFrenzyChargeOnTravelSkill", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["LosePowerChargeOnElusiveGainUnique__1_"] = { affix = "", "(20-25)% chance to lose a Power Charge when you gain Elusive", statOrder = { 4396 }, level = 1, group = "LosePowerChargeOnElusiveGain", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ElusiveBuffEffectPerPowerChargeUnique__1"] = { affix = "", "(7-10)% increased Effect of Elusive on you per Power Charge", statOrder = { 4393 }, level = 1, group = "ElusiveBuffEffectPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TravelSkillCooldownRecoveryPerFrenzyChargeUnique__1"] = { affix = "", "(7-10)% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge", statOrder = { 4392 }, level = 1, group = "TravelSkillCooldownRecoveryPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumFortificationPerEnduranceChargeUnique__1"] = { affix = "", "+1 to maximum Fortification per Endurance Charge", statOrder = { 4391 }, level = 1, group = "MaximumFortificationPerEnduranceCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumFrenzyChargesEqualToMaximumPowerChargesUnique__1"] = { affix = "", "Your Maximum Frenzy Charges is equal to your Maximum Power Charges", statOrder = { 1810 }, level = 75, group = "MaximumFrenzyChargesEqualToMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["MaximumEnduranceChargesEqualToMaximumFrenzyChargesUnique__1"] = { affix = "", "Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges", statOrder = { 1805 }, level = 75, group = "MaximumEnduranceChargesEqualToMaximumFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["MinionAttacksTauntOnHitChanceUnique__1"] = { affix = "", "Minions have 5% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 55, group = "MinionAttacksTauntOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, + ["MinionCausticCloudOnDeathUnique__1_"] = { affix = "", "Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second", statOrder = { 3442 }, level = 1, group = "MinionCausticCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["MinionBurningCloudOnDeathUnique__1"] = { affix = "", "Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second", statOrder = { 9304 }, level = 55, group = "MinionBurningCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["TotemReflectFireDamageUnique__1_"] = { affix = "", "Totems Reflect 100% of their maximum Life as Fire Damage to nearby Enemies when Hit", statOrder = { 3788 }, level = 1, group = "TotemReflectFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["MinionAddedColdDamageUnique__1"] = { affix = "", "Minions deal (25-35) to (50-65) additional Cold Damage", statOrder = { 3770 }, level = 1, group = "MinionAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["MineDamageLeechedToYouUnique__1"] = { affix = "", "1% of Damage dealt by your Mines is Leeched to you as Life", statOrder = { 4236 }, level = 1, group = "MineDamageLeechedToYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LifeEnergyShieldRecoveryRateUnique__1"] = { affix = "", "(20-30)% reduced Recovery rate of Life and Energy Shield", statOrder = { 7340 }, level = 1, group = "LifeEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LifeAndEnergyShieldRecoveryRatePerPowerChargeUnique__1"] = { affix = "", "5% increased Recovery rate of Life and Energy Shield per Power Charge", statOrder = { 7343 }, level = 1, group = "LifeAndEnergyShieldRecoveryRatePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LosePowerChargeIfNotDetonatedRecentlyUnique__1"] = { affix = "", "Lose a Power Charge each second if you have not Detonated Mines Recently", statOrder = { 8143 }, level = 1, group = "LosePowerChargeIfNotDetonatedRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["NotablesGrantMinionDamageTakenUnique__1_"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions take 20% increased Damage", statOrder = { 10762, 10762.1 }, level = 1, group = "NotablesGrantMinionDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["NotablesGrantMinionMovementSpeedUnique__1_"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: Minions have 25% reduced Movement Speed", statOrder = { 10763, 10763.1 }, level = 1, group = "NotablesGrantMinionMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["PassivesGrantTrapMineAddedPhysicalUnique__1_"] = { affix = "", "Passive Skills in Radius also grant: Traps and Mines deal (2-3) to (4-6) added Physical Damage", statOrder = { 10764 }, level = 1, group = "PassivesGrantTrapMineAddedPhysical", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PassivesGrantUnarmedAttackSpeedUnique__1_"] = { affix = "", "Passive Skills in Radius also grant: 1% increased Unarmed Attack Speed with Melee Skills", statOrder = { 8116 }, level = 1, group = "PassivesGrantUnarmedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["MovementVelocityOverrideUnique__1"] = { affix = "", "Your Movement Speed is 150% of its base value", statOrder = { 9415 }, level = 1, group = "MovementVelocityOverride", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["TravelSkillCooldownRecoveryUnique__1_"] = { affix = "", "(50-80)% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 4381 }, level = 1, group = "TravelSkillCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageRemovedFromSpectresUnique__1"] = { affix = "", "10% of Damage from Hits is taken from your Raised Spectres' Life before you", statOrder = { 6092 }, level = 1, group = "DamageRemovedFromSpectres", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MinionElementalDamageAddedAsChaosUnique__1"] = { affix = "", "Minions gain (15-20)% of Elemental Damage as Extra Chaos Damage", statOrder = { 9300 }, level = 1, group = "MinionElementalDamageAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos", "minion" }, }, + ["LifeRegenerationPerZombieUnique__1"] = { affix = "", "Regenerate 0.6% of Life per second for each Raised Zombie", statOrder = { 7422 }, level = 1, group = "LifeRegenerationPerZombie", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ManaRegenerationPerSpectreUnique__1"] = { affix = "", "30% increased Mana Regeneration Rate per Raised Spectre", statOrder = { 8210 }, level = 1, group = "ManaRegenerationPerSpectre", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AttackBlockPerSkeletonUnique__1"] = { affix = "", "+1% Chance to Block Attack Damage per Summoned Skeleton", statOrder = { 4539 }, level = 1, group = "AttackBlockPerSkeleton", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AttackAndCastSpeedPerRagingSpiritUnique__1"] = { affix = "", "2% increased Attack and Cast Speed per Summoned Raging Spirit", statOrder = { 4819 }, level = 1, group = "AttackAndCastSpeedPerRagingSpirit", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["SupportedByMeatShieldUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Meat Shield", statOrder = { 334 }, level = 1, group = "SupportedByMeatShield", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ReviveEnemiesOnKillUnique__1"] = { affix = "", "Create a Blighted Spore when your Skills or Minions Kill a Rare Monster", statOrder = { 5902 }, level = 1, group = "ReviveEnemiesOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FireResistanceOverrideUnique__1__"] = { affix = "", "Fire Resistance is 75%", statOrder = { 1624 }, level = 1, group = "FireResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["ColdResistanceOverrideUnique__1"] = { affix = "", "Cold Resistance is 75%", statOrder = { 1630 }, level = 1, group = "ColdResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["LightningResistanceOverrideUnique__1_"] = { affix = "", "Lightning Resistance is 75%", statOrder = { 1635 }, level = 1, group = "LightningResistanceOverride", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["ReducedFireResistanceUnique__1"] = { affix = "", "(50-55)% reduced Fire Resistance", statOrder = { 1628 }, level = 1, group = "IncreasedFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["ReducedColdResistanceUnique__1"] = { affix = "", "(50-55)% reduced Cold Resistance", statOrder = { 1633 }, level = 1, group = "IncreasedColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["ReducedLightningResistanceUnique__1"] = { affix = "", "(50-55)% reduced Lightning Resistance", statOrder = { 1639 }, level = 1, group = "IncreasedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["ManaRegenerationRateWhileMovingUnique__1"] = { affix = "", "(30-40)% increased Mana Regeneration Rate while moving", statOrder = { 8211 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["FungalAroundWhenStationaryUnique__1_"] = { affix = "", "You have Fungal Ground around you while stationary", statOrder = { 6694 }, level = 1, group = "FungalAroundWhenStationary", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TriggerFungalGroundOnKillUnique__1_"] = { affix = "", "Trigger Level 10 Contaminate when you Kill an Enemy", statOrder = { 788 }, level = 1, group = "TriggerFungalGroundOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemiesOnFungalGroundExplodeUnique__1"] = { affix = "", "Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage", statOrder = { 6385 }, level = 1, group = "EnemiesOnFungalGroundExplode", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["FrostblinkDurationUnique__1_"] = { affix = "", "Frostblink has 50% increased Duration", statOrder = { 7187 }, level = 1, group = "FrostblinkDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["GrantsFrostblinkSkillUnique__1"] = { affix = "", "Grants Level 10 Frostblink Skill", statOrder = { 622 }, level = 1, group = "GrantsFrostblinkSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGemUniqueTwoHandSword8"] = { affix = "", "Attack Skills gain 5% of Physical Damage as Extra Fire Damage per Socketed Red Gem", statOrder = { 2715 }, level = 1, group = "AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire", "attack", "gem" }, }, + ["VaalPactIfAllSocketedGemsAreRedUniqueTwoHandSword8"] = { affix = "", "You have Vaal Pact while all Socketed Gems are Red", statOrder = { 10837 }, level = 1, group = "VaalPactIfAllSocketedGemsAreRed", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "gem" }, }, + ["MultipleEnchantmentsAllowedUnique__1"] = { affix = "", "Can have a second Enchantment Modifier", statOrder = { 13 }, level = 1, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MultipleEnchantmentsAllowedUnique__2"] = { affix = "", "Can have 3 additional Enchantment Modifiers", statOrder = { 13 }, level = 65, group = "MultipleEnchantmentsAllowed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalProjectilesUnique__1__"] = { affix = "", "Skills fire 2 additional Projectiles", statOrder = { 1792 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ProjectileModifiersApplyToSplitsUnique__1"] = { affix = "", "Modifiers to number of Projectiles instead apply", "to the number of targets Projectiles Split towards", statOrder = { 9386, 9386.1 }, level = 50, group = "ProjectileModifiersApplyToSplits", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumLifeManaEnergyShieldUnique__1"] = { affix = "", "(9-21)% increased maximum Life, Mana and Global Energy Shield", statOrder = { 1570 }, level = 1, group = "MaximumLifeManaEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, + ["TransfigurationOfBodyUnique__1"] = { affix = "", "Transfiguration of Body", statOrder = { 4601 }, level = 1, group = "TransfigurationOfBody", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["TransfigurationOfMindUnique__1"] = { affix = "", "Transfiguration of Mind", statOrder = { 4603 }, level = 1, group = "TransfigurationOfMind", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["TransfigurationOfSoulUnique__1_"] = { affix = "", "Transfiguration of Soul", statOrder = { 4597 }, level = 1, group = "TransfigurationOfSoul", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["MaximumEnergyShieldPerReservedLifeUnique__1"] = { affix = "", "+30 to maximum Energy Shield per 100 Reserved Life", statOrder = { 1566 }, level = 1, group = "MaximumEnergyShieldPerReservedLife", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ChaosDamageRemovedFromManaBeforeLifeUnique__1___"] = { affix = "", "Chaos Damage is taken from Mana before Life", statOrder = { 5736 }, level = 1, group = "ChaosDamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "chaos" }, }, + ["DrainAllManaLightningDamageUnique__1"] = { affix = "", "When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage", "equal to 50% of Sacrificed Mana for 4 seconds", statOrder = { 9555, 9555.1 }, level = 1, group = "DrainAllManaLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "lightning" }, }, + ["MultipleOfferingsAllowedUnique__1_"] = { affix = "", "You can have an Offering of each type", statOrder = { 4638 }, level = 62, group = "MultipleOfferingsAllowed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OfferingDurationUnique__1"] = { affix = "", "Offering Skills have 50% reduced Duration", statOrder = { 9552 }, level = 1, group = "OfferingDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumBlockChanceIfNotBlockedRecentlyUnique__1"] = { affix = "", "You are at Maximum Chance to Block Attack Damage if you have not Blocked Recently", statOrder = { 9116 }, level = 1, group = "MaximumBlockChanceIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["PhasingIfBlockedRecentlyUnique__1"] = { affix = "", "You have Phasing if you have Blocked Recently", statOrder = { 9616 }, level = 1, group = "PhasingIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AvoidElementalDamagePhasingUnique__1"] = { affix = "", "+(8-15)% chance to Avoid Elemental Damage from Hits while Phasing", statOrder = { 4944 }, level = 1, group = "AvoidElementalDamagePhasing", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["ApplyAilmentsMoreDamageUnique__1"] = { affix = "", "Inflict non-Damaging Ailments as though dealing (100-200)% more Damage", statOrder = { 9504 }, level = 1, group = "ApplyAilmentsMoreDamage", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["CriticalStrikesNotAlwaysApplyAilmentsUnique__1"] = { affix = "", "Critical Strikes do not inherently inflict non-Damaging Ailments", statOrder = { 5980 }, level = 1, group = "CriticalStrikesNotAlwaysApplyAilments", weightKey = { }, weightVal = { }, modTags = { "critical", "ailment" }, }, + ["PermanentPhantasmUnique__1"] = { affix = "", "Summoned Phantasms have no Duration", statOrder = { 10305 }, level = 1, group = "PermanentPhantasm", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["PhantasmGrantsBuffUnique__1"] = { affix = "", "Each Summoned Phantasm grants you Phantasmal Might", statOrder = { 10304 }, level = 1, group = "PhantasmGrantsBuff", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["CorruptUntilFiveImplicits"] = { affix = "", "Can be modified while Corrupted", "Can have up to 5 Implicit Modifiers while Item has this Modifier", statOrder = { 11, 14 }, level = 1, group = "ModifyableWhileCorrupted", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ModifyableWhileCorruptedUnique__1"] = { affix = "", "Can be modified while Corrupted", statOrder = { 11 }, level = 1, group = "ModifyableWhileCorruptedAndSpecialCorruption", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionsUseFlaskOnSummonUnique__1__"] = { affix = "", "Your Minions use your Flasks when summoned", statOrder = { 2182 }, level = 50, group = "MinionsUseFlaskOnSummon", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, }, + ["MinionFlaskChargesUsedUnique__1"] = { affix = "", "Minions have (25-40)% reduced Flask Charges used", statOrder = { 2186 }, level = 1, group = "MinionFlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, }, + ["MinionFlaskDurationUnique__1"] = { affix = "", "Minions have (50-80)% increased Flask Effect Duration", statOrder = { 2188 }, level = 1, group = "MinionFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask", "minion" }, }, + ["StrikeSkillMemoryUseUnique__1_______"] = { affix = "", "Strike Skills also target the previous location they were used", statOrder = { 9211 }, level = 50, group = "StrikeSkillMemory", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["NovaSkillsTargetLocationUnique__1__"] = { affix = "", "Nova Spells Cast at the targeted location instead of around you", statOrder = { 9515 }, level = 50, group = "NovaSkillsTargetLocation", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["AttackAndCastSpeedFortifyUnique__1"] = { affix = "", "(15-25)% increased Attack and Cast Speed while at maximum Fortification", statOrder = { 2268 }, level = 1, group = "AttackAndCastSpeedFortify", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["AlternateFortifyUnique__1_"] = { affix = "", "You do not inherently take less Damage for having Fortification", "+4% chance to Suppress Spell Damage per Fortification", statOrder = { 2266, 2267 }, level = 65, group = "AlternateFortify", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonDoubleOnCritUnique__1"] = { affix = "", "Triggers Level 20 Reflection when Equipped", statOrder = { 814 }, level = 1, group = "SummonDoubleOnCrit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FireExposureOnHitUnique__1"] = { affix = "", "25% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ColdExposureOnHitUnique__1"] = { affix = "", "25% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NearbyEnemiesIncreasedFireColdResistUnique__1_"] = { affix = "", "50% increased Fire Resistance", "50% increased Cold Resistance", "Nearby Enemies have 50% increased Fire and Cold Resistances", statOrder = { 1628, 1633, 7891 }, level = 1, group = "NearbyEnemiesIncreasedFireColdResist", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold" }, }, + ["MetamorphosisItemisedBossDifficult"] = { affix = "", "50% more Life", "50% more Damage", statOrder = { 5262, 6256 }, level = 1, group = "MetamorphosisItemisedBossDifficult", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToImpaleUnique__1"] = { affix = "", "10% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["NovaSpellsAreaOfEffectUnique__1"] = { affix = "", "Nova Spells have 20% less Area of Effect", statOrder = { 8014 }, level = 50, group = "NovaSpellsAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["RingAttackSpeedUnique__1"] = { affix = "", "20% less Attack Speed", statOrder = { 8011 }, level = 1, group = "RingAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAilmentEffectOnEnemiesUnique__1"] = { affix = "", "(15-20)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["IncreasedAilmentEffectOnEnemiesUnique_2"] = { affix = "", "(20-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["ChillingAreasAlsoGrantLightningDamageTakenUnique__1"] = { affix = "", "Enemies in your Chilling Areas take (25-35)% increased Lightning Damage", statOrder = { 5778 }, level = 1, group = "ChillingAreasAlsoGrantLightningDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["ChanceToSapVsEnemiesInChillingAreasUnique__1"] = { affix = "", "(20-30)% chance to Sap Enemies in Chilling Areas", statOrder = { 5720 }, level = 1, group = "ChanceToSapVsEnemiesInChillingAreas", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["Allow2ActiveBannersUnique__1"] = { affix = "", "Having a placed Banner does not prevent you gaining Valour", statOrder = { 1137 }, level = 1, group = "Allow2ActiveBanners", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalMaxStackSnipeUnique"] = { affix = "", "+2 to maximum Snipe Stages", statOrder = { 10088 }, level = 1, group = "AdditionanalMaxStackSnipeUnique", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["GrantsHighLevelSnipeUnique__1"] = { affix = "", "Grants Level 30 Snipe Skill", statOrder = { 59 }, level = 1, group = "GrantsSnipeSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsHighLevelSnipeSupportUnique__1"] = { affix = "", "Socketed Non-Channelling Bow Skills are Triggered by Snipe", "Socketed Triggered Bow Skills gain a 0.05 second Cooldown", statOrder = { 378, 378.1 }, level = 1, group = "GrantsSnipeSkillSupport", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ChanceToDodgeAttacksWhileChannellingUnique__1"] = { affix = "", "+(7-10)% chance to Suppress Spell Damage while Channelling", statOrder = { 10176 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToDodgeSpellsWhileChannellingUnique__1"] = { affix = "", "+(7-10)% chance to Suppress Spell Damage while Channelling", statOrder = { 10176 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToSuppressSpellsWhileChannellingUnique__1____"] = { affix = "", "+(14-20)% chance to Suppress Spell Damage while Channelling", statOrder = { 10176 }, level = 1, group = "ChanceToDodgeSpellsWhileChannelling", weightKey = { }, weightVal = { }, modTags = { }, }, + ["JewelExpansionPassiveNodesUnique__1"] = { affix = "", "Adds 4 Passive Skills", statOrder = { 4503 }, level = 1, group = "JewelExpansionPassiveNodes", weightKey = { }, weightVal = { }, modTags = { }, }, + ["JewelExpansionJewelNodesLarge1"] = { affix = "of Potential", "1 Added Passive Skill is a Jewel Socket", statOrder = { 7958 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, }, + ["JewelExpansionJewelNodesLarge2___"] = { affix = "of Possibility", "2 Added Passive Skills are Jewel Sockets", statOrder = { 7958 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, }, + ["JewelExpansionJewelNodesMedium"] = { affix = "of Potential", "1 Added Passive Skill is a Jewel Socket", statOrder = { 7958 }, level = 1, group = "JewelExpansionJewelNodes", weightKey = { }, weightVal = { }, modTags = { }, }, + ["JewelExpansionKeystoneDiscipleOfKitava_"] = { affix = "", "Adds Disciple of Kitava", statOrder = { 7960 }, level = 1, group = "JewelExpansionKeystoneDiscipleOfKitava", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "damage" }, }, + ["JewelExpansionLoneMessenger_"] = { affix = "", "Adds Lone Messenger", statOrder = { 7963 }, level = 1, group = "JewelExpansionLoneMessenger", weightKey = { }, weightVal = { }, modTags = { "damage", "minion", "aura" }, }, + ["JewelExpansionNaturesPatience"] = { affix = "", "Adds Nature's Patience", statOrder = { 7964 }, level = 1, group = "JewelExpansionNaturesPatience", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["JewelExpansionSecretsOfSuffering"] = { affix = "", "Adds Secrets of Suffering", statOrder = { 7966 }, level = 1, group = "JewelExpansionSecretsOfSuffering", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "critical", "ailment" }, }, + ["JewelExpansionKineticism"] = { affix = "", "Adds Kineticism", statOrder = { 7962 }, level = 1, group = "JewelExpansionKineticism", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["JewelExpansionVeteransAwareness_"] = { affix = "", "Adds Veteran's Awareness", statOrder = { 7967 }, level = 1, group = "JewelExpansionVeteransAwareness", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental" }, }, + ["JewelExpansionHollowPalmTechnique"] = { affix = "", "Adds Hollow Palm Technique", statOrder = { 7961 }, level = 1, group = "JewelExpansionHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, }, + ["ExpansionJewel3JewelSockets"] = { affix = "", "Adds 3 Jewel Socket Passive Skills", statOrder = { 7959 }, level = 1, group = "UniqueExpansionJewel3JewelSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ExpansionJewelEmptyPassiveUnique__1"] = { affix = "", "Adds 1 Small Passive Skill which grants nothing", statOrder = { 8081 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ExpansionJewelEmptyPassiveUnique__2"] = { affix = "", "Adds 3 Small Passive Skills which grant nothing", statOrder = { 8081 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ExpansionJewelEmptyPassiveUnique_3_"] = { affix = "", "Adds 5 Small Passive Skills which grant nothing", statOrder = { 8081 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ExpansionJewelEmptyPassiveUnique__4"] = { affix = "", "Adds 7 Small Passive Skills which grant nothing", statOrder = { 8081 }, level = 1, group = "UniqueExpansionJewelEmptyPassive", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalIncreasedEffectPathToClassStartUnique__1"] = { affix = "", "This Jewel's Socket has 25% increased effect per Allocated Passive Skill between", "it and your Class' starting location", statOrder = { 9, 9.1 }, level = 1, group = "LocalIncreasedEffectPathToClassStart", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SupportSkitterBotAilmentAuraReplaceWithCurse____1"] = { affix = "", "Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead", "Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead", statOrder = { 7983, 8010 }, level = 65, group = "UniqueReplaceSkitterbotAilmentAura", weightKey = { }, weightVal = { }, modTags = { "caster", "minion", "curse" }, }, + ["AttackLightningDamageMaximumManaUnique__1__"] = { affix = "", "Attack Skills have Added Lightning Damage equal to 6% of maximum Mana", statOrder = { 4885 }, level = 1, group = "AttackLightningDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["LoseManaOnAttackSkillUnique__1"] = { affix = "", "Lose 3% of Mana when you use an Attack Skill", statOrder = { 8142 }, level = 1, group = "LoseManaOnAttackSkill", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["StrengthPerPointToClassStartUnique__1"] = { affix = "", "+5 to Strength", statOrder = { 1177 }, level = 1, group = "StrengthPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityPerPointToClassStartUnique__1"] = { affix = "", "+5 to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IntelligencePerPointToClassStartUnique__1"] = { affix = "", "+5 to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligencePerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["LifePerPointToClassStartUnique__1_"] = { affix = "", "+5 to maximum Life", statOrder = { 1569 }, level = 1, group = "LifePerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ManaPerPointToClassStartUnique__1"] = { affix = "", "+5 to maximum Mana", statOrder = { 1579 }, level = 1, group = "ManaPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["EnergyShieldPerPointToClassStartUnique__1"] = { affix = "", "+5 to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShieldPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ArmourPerPointToClassStartUnique__1"] = { affix = "", "+40 to Armour", statOrder = { 1539 }, level = 1, group = "ArmourPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["EvasionPerPointToClassStartUnique__1"] = { affix = "", "+40 to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["AccuracyPerPointToClassStartUnique__1"] = { affix = "", "+40 to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "AccuracyPerPointToClassStart", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["EnemiesExplodeOnDeathChaosGloriousMadnessUnique1"] = { affix = "", "Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage", statOrder = { 10705 }, level = 1, group = "EnemiesExplodeOnDeathChaosGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AllDamageCanPoisonGloriousMadnessUnique___1"] = { affix = "", "All Damage inflicts Poison while affected by Glorious Madness", statOrder = { 10701 }, level = 1, group = "AllDamageCanPoisonGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SpellBlockWhileInOffHandUnique_1"] = { affix = "", "+(30-45)% Chance to Block Spell Damage while in Off Hand", statOrder = { 1161 }, level = 1, group = "SpellBlockWhileInOffHand", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AllDamageFromTriggeredSpellsCanPoisonUnique_1"] = { affix = "", "All Damage with Triggered Spells can Poison", statOrder = { 10433 }, level = 85, group = "AllDamageFromTriggeredSpellsCanPoison", weightKey = { }, weightVal = { }, modTags = { "caster", "ailment" }, }, + ["TriggeredSpellsPoisonOnHitUnique_1"] = { affix = "", "Triggered Spells Poison on Hit", statOrder = { 10432 }, level = 1, group = "TriggeredSpellsPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "caster", "ailment" }, }, + ["SupportVirulenceSpellsCastOnBlockUnique_1"] = { affix = "", "Trigger a Socketed Spell when you Block, with a 0.25 second Cooldown", statOrder = { 828 }, level = 1, group = "CastSocketedSpellsOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "caster" }, }, + ["FortifyEffectSelfGloriousMadnessUnique1"] = { affix = "", "+60 to maximum Fortification while affected by Glorious Madness", statOrder = { 10718 }, level = 1, group = "FortifyEffectSelfGloriousMadness", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DoubleDamageChanceGloriousMadnessUnique_1"] = { affix = "", "20% chance to deal Double Damage while affected by Glorious Madness", statOrder = { 10702 }, level = 1, group = "DoubleDamageChanceGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ElementalConfluxesGloriousMadnessUnique1"] = { affix = "", "You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness", statOrder = { 10707 }, level = 1, group = "ElementalConfluxesGloriousMadness", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalAilmentImmunityGloriousMadnessUnique1"] = { affix = "", "Immune to Elemental Ailments while affected by Glorious Madness", statOrder = { 10709 }, level = 1, group = "ElementalAilmentImmunityGloriousMadness", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["MovementSpeedUnique_42"] = { affix = "", "30% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["GrantEmbraceMadnessSkillUnique1"] = { affix = "", "Grants Level 1 Embrace Madness Skill", statOrder = { 701 }, level = 1, group = "GrantEmbraceMadnessSkillDisplay", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["LocalAfflictionJewelDisplaySmallNodesGrantNothingUnique_1"] = { affix = "", "Added Small Passive Skills grant Nothing", statOrder = { 7510 }, level = 1, group = "LocalAfflictionJewelDisplaySmallNodesGrantNothing", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackSpeedAfterSavageHitTakenUnique__1"] = { affix = "", "40% increased Attack Speed if you've taken a Savage Hit Recently", statOrder = { 3447 }, level = 1, group = "AttackSpeedAfterSavageHitTaken", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["FrenzyChargeOnCritCloseRangeUnique__1"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Critical Strike at Close Range", statOrder = { 6754 }, level = 1, group = "FrenzyChargeOnCritCloseRange", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "critical" }, }, + ["BleedDotMultiplierPerFrenzyChargeUnique__1_"] = { affix = "", "+4% to Damage over Time Multiplier for Bleeding per Frenzy Charge", statOrder = { 5106 }, level = 1, group = "BleedDotMultiplierPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["FasterBleedPerFrenzyChargeUnique__1"] = { affix = "", "Bleeding you inflict deals Damage 4% faster per Frenzy Charge", statOrder = { 6543 }, level = 1, group = "FasterBleedPerFrenzyCharge", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["CriticalBleedDotMultiplierUnique__1_"] = { affix = "", "+(60-80)% to Damage over Time Multiplier for Bleeding from Critical Strikes", statOrder = { 1249 }, level = 1, group = "CriticalBleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["BleedDotMultiplier2HImplicit1"] = { affix = "", "+20% to Damage over Time Multiplier for Bleeding", statOrder = { 1248 }, level = 1, group = "BleedDotMultiplier", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["LocalWitherOnHitChanceUnique__2"] = { affix = "", "Inflict Withered for 2 seconds on Hit with this Weapon", statOrder = { 4411 }, level = 1, group = "LocalWitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WitherOnHitChanceUnique__1"] = { affix = "", "(20-25)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4397 }, level = 1, group = "WitherOnHitChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotPenetrateResistancesUnique__1"] = { affix = "", "Your Hits cannot Penetrate or ignore Elemental Resistances", statOrder = { 5440 }, level = 1, group = "CannotPenetrateResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["WitherGrantsElementalDamageTakenUnique__1__"] = { affix = "", "Enemies take 4% increased Elemental Damage from your Hits for", "each Withered you have inflicted on them", statOrder = { 4398, 4398.1 }, level = 1, group = "WitherGrantsElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["ActivateHeraldOfThunderOnShockUnique__1"] = { affix = "", "Herald of Thunder also creates a storm when you Shock an Enemy", statOrder = { 5907 }, level = 1, group = "ActivateHeraldOfThunderOnShock", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TakeDamageWhenHeraldOfThunderHitsUnique__1__"] = { affix = "", "Take 250 Lightning Damage when Herald of Thunder Hits an Enemy", statOrder = { 10350 }, level = 1, group = "TakeDamageWhenHeraldOfThunderHits", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HeraldOfThunderBoltFrequencyUnique__1"] = { affix = "", "Herald of Thunder's Storms Hit Enemies with (30-50)% increased Frequency", statOrder = { 7124 }, level = 1, group = "HeraldOfThunderBoltFrequency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RagingSpiritFireSplashDamageUnique__1"] = { affix = "", "Summoned Raging Spirits' Melee Strikes deal Fire-only Splash", "Damage to Surrounding Targets", statOrder = { 10297, 10297.1 }, level = 1, group = "RagingSpiritSplashDamage", weightKey = { }, weightVal = { }, modTags = { "red_herring", "elemental", "fire", "minion" }, }, + ["FragileRegrowthLifeRegenerationUnique__1"] = { affix = "", "Maximum 10 Fragile Regrowth", "0.7% of Life Regenerated per second per Fragile Regrowth", "Lose all Fragile Regrowth when Hit", "Gain 1 Fragile Regrowth each second", statOrder = { 4400, 4401, 4402, 6834 }, level = 1, group = "FragileRegrowthLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["FragileRegrowthLifeRegenerationUnique__2_"] = { affix = "", "Maximum 5 Fragile Regrowth", "0.7% of Life Regenerated per second per Fragile Regrowth", "Gain up to maximum Fragile Regrowth when Hit", "Lose 1 Fragile Regrowth each second", statOrder = { 4400, 4401, 6826, 6834 }, level = 1, group = "FragileRegrowthLifeRegenerationReverse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["MaximumESLeechAmountUnique__1_"] = { affix = "", "50% reduced Maximum Recovery per Energy Shield Leech", statOrder = { 1726 }, level = 1, group = "MaximumESLeechAmount", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ESLeechFromAttacksNotRemovedOnFullESUnique__1"] = { affix = "", "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield", statOrder = { 6436 }, level = 1, group = "ESLeechFromAttacksNotRemovedOnFullES", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["MaximumESLeechAmountDoubledUnique__1"] = { affix = "", "Maximum Recovery per Energy Shield Leech is Doubled", statOrder = { 9136 }, level = 1, group = "MaximumESLeechAmountDoubled", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["EnemiesKilledApplyImpaleDamageUnique__1"] = { affix = "", "50% chance for Impales on Enemies you Kill to Reflect Damage to surrounding Enemies", statOrder = { 7311 }, level = 1, group = "EnemiesKilledApplyImpaleDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["ArmourAppliesToLightningDamageUnique__1_"] = { affix = "", "Armour also applies to Lightning Damage taken from Hits", statOrder = { 4989 }, level = 1, group = "ArmourAppliesToLightningDamage", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "elemental", "lightning" }, }, + ["LightningResistNoReductionUnique__1_"] = { affix = "", "Lightning Resistance does not affect Lightning Damage taken", statOrder = { 7462 }, level = 1, group = "LightningResistNoReduction", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["DealNoNonLightningDamageUnique__1_"] = { affix = "", "Deal no Non-Lightning Damage", statOrder = { 2794 }, level = 1, group = "DealNoNonLightningDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["NearbyEnemyLightningResistanceEqualUnique__1"] = { affix = "", "Nearby Enemies have Lightning Resistance equal to yours", statOrder = { 9461 }, level = 1, group = "NearbyEnemyLightningResistanceEqual", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["SupportedByIntensifyUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 10 Intensify", statOrder = { 316 }, level = 1, group = "SupportedByIntensify", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ShockedGroundWhileMovingUnique__1_"] = { affix = "", "Drops Shocked Ground while moving, lasting 2 seconds", statOrder = { 4311 }, level = 1, group = "ShockedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__1_"] = { affix = "", "Trigger Level 1 Gore Shockwave on Melee Hit if you have at least 150 Strength", statOrder = { 810 }, level = 1, group = "TriggerGoreShockwaveOnMeleeHitWith150Strength", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, }, + ["TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__2"] = { affix = "", "Trigger Level 5 Gore Shockwave on Melee Hit if you have at least 150 Strength", statOrder = { 810 }, level = 1, group = "TriggerGoreShockwaveOnMeleeHitWith150Strength", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, }, + ["ProjectileDamageBloodStanceUnique__1"] = { affix = "", "(40-60)% increased Projectile Damage while in Blood Stance", statOrder = { 10215 }, level = 1, group = "ProjectileDamageBloodStance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["LifeRegenerationBloodStanceUnique__1"] = { affix = "", "Regenerate (150-200) Life per Second while in Blood Stance", statOrder = { 10214 }, level = 1, group = "LifeRegenerationBloodStance", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AreaOfEffectSandStanceUnique__1"] = { affix = "", "(20-30)% increased Area of Effect while in Sand Stance", statOrder = { 10220 }, level = 1, group = "AreaOfEffectSandStance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EvasionRatingSandStanceUnique__1"] = { affix = "", "+(700-1000) to Evasion Rating while in Sand Stance", statOrder = { 10216 }, level = 1, group = "EvasionRatingSandStance", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["MaxRagePerEquippedSwordUnique__1____"] = { affix = "", "+10 to Maximum Rage while wielding a Sword", statOrder = { 9180 }, level = 1, group = "MaxRagePerEquippedSword", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BleedDotMultiplierPerRagePerEquippedAxeUnique__1"] = { affix = "", "Each Rage also grants +2% to Damage over Time Multiplier for Bleeding while wielding an Axe", statOrder = { 5103 }, level = 1, group = "BleedDotMultiplierPerRagePerEquippedAxe", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["LifeManaESLeechRateUnique__1"] = { affix = "", "30% increased total Recovery per second from Life, Mana, or Energy Shield Leech", statOrder = { 7382 }, level = 1, group = "LifeManaESLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, + ["RandomSupportUnique__1"] = { affix = "", "Socketed Gems are Supported by Level (1-10) (1-172)", statOrder = { 451 }, level = 1, group = "RandomSupport1", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["RandomSupportUnique__2"] = { affix = "", "Socketed Gems are Supported by Level (25-35) (1-172)", statOrder = { 452 }, level = 1, group = "RandomSupport2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["RandomSupportUnique__3"] = { affix = "", "Socketed Gems are Supported by Level (1-10) (1-172)", statOrder = { 451 }, level = 1, group = "RandomSupport1", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["RandomSupportUnique__4_"] = { affix = "", "Socketed Gems are Supported by Level (25-35) (1-172)", statOrder = { 452 }, level = 1, group = "RandomSupport2", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["RandomSkillUnique__1"] = { affix = "", "+3 to Level of all (1-286) Gems", statOrder = { 1618 }, level = 71, group = "RandomSkill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GrantsDashUnique__1_"] = { affix = "", "Grants Level 30 Dash Skill", statOrder = { 698 }, level = 1, group = "GrantsDash", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["DisableTravelSkillsExceptDashUnique__1"] = { affix = "", "Travel Skills other than Dash are Disabled", statOrder = { 10699 }, level = 1, group = "DisableTravelSkillsExceptDash", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ArrowsIfHaventUsedDashRecentlyUnique__1"] = { affix = "", "Bow Attacks fire 2 additional Arrows if you haven't Cast Dash recently", statOrder = { 1795 }, level = 1, group = "ArrowsIfHaventUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AttackSpeedIfHaventUsedDashRecentlyUnique__1"] = { affix = "", "(20-30)% increased Attack Speed if you haven't Cast Dash recently", statOrder = { 4898 }, level = 1, group = "AttackSpeedIfHaventUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["MovementSpeedIfUsedDashRecentlyUnique__1"] = { affix = "", "(20-30)% increased Movement Speed if you've Cast Dash recently", statOrder = { 9420 }, level = 1, group = "MovementSpeedIfUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["EvasionRatingIfUsedDashRecentlyUnique__1"] = { affix = "", "(100-160)% increased Evasion Rating if you've Cast Dash recently", statOrder = { 6492 }, level = 1, group = "EvasionRatingIfUsedDashRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["MinionLifeConvertedToEnergyShieldUnique__1"] = { affix = "", "Minions Convert 2% of their Maximum Life to Maximum Energy", "Shield per 1% Chaos Resistance they have", statOrder = { 4403, 4403.1 }, level = 1, group = "MinionLifeConvertedToEnergyShield", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield", "minion" }, }, + ["MinionChaosDamageDoesNotBypassESUnique__1"] = { affix = "", "Chaos Damage taken does not bypass Minions' Energy Shield", statOrder = { 4404 }, level = 1, group = "MinionChaosDamageDoesNotBypassES", weightKey = { }, weightVal = { }, modTags = { "chaos", "minion" }, }, + ["MinionHitsIgnoreResistanceWithESUnique__1_"] = { affix = "", "While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances", statOrder = { 4406 }, level = 1, group = "MinionHitsIgnoreResistanceWithES", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "minion" }, }, + ["MinionEnergyShieldRechargeDelayUnique__1"] = { affix = "", "Minions have (50-100)% faster start of Energy Shield Recharge", statOrder = { 4405 }, level = 1, group = "MinionEnergyShieldRechargeDelay", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "minion" }, }, + ["DamageBypassEnergyShieldBlockUnique__1"] = { affix = "", "Damage taken from Blocked Hits cannot bypass Energy Shield", "Damage taken from Unblocked hits always bypasses Energy Shield", statOrder = { 6022, 6022.1 }, level = 1, group = "DamageBypassEnergyShieldBlock", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NoEnergyShieldUnique__1"] = { affix = "", "Has no Energy Shield", statOrder = { 1083 }, level = 1, group = "LocalNoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["CannotBlockWithNoEnergyShieldUnique__1"] = { affix = "", "Cannot Block while you have no Energy Shield", statOrder = { 2733 }, level = 1, group = "CannotBlockWithNoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["BlindReflectedToSelfUnique__1"] = { affix = "", "Blind you inflict is Reflected to you", statOrder = { 5222 }, level = 1, group = "BlindReflectedToSelf", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BlindDoesNotAffectLightRadiusUnique__1"] = { affix = "", "Blind does not affect your Light Radius", statOrder = { 5218 }, level = 1, group = "BlindDoesNotAffectLightRadius", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NotablesGrantManaCostAndSpellDamageUnique1"] = { affix = "", "Notable Passive Skills in Radius are Transformed to", "instead grant: 10% increased Mana Cost of Skills and 20% increased Spell Damage", statOrder = { 10761, 10761.1 }, level = 1, group = "NotablesGrantManaCostAndSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "resource", "mana", "damage", "caster" }, }, + ["UnleashSealGainFrequencyUnique__1"] = { affix = "", "Skills Supported by Unleash have (30-50)% increased Seal gain frequency", statOrder = { 10319 }, level = 1, group = "UnleashSealGainFrequency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnholyMightOnZeroEnergyShieldUnique__1"] = { affix = "", "You have Unholy Might while you have no Energy Shield", statOrder = { 2736 }, level = 1, group = "UnholyMightOnZeroEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ProfaneGroundInsteadOfConsecratedGround__1_"] = { affix = "", "Create Profane Ground instead of Consecrated Ground", statOrder = { 5908 }, level = 1, group = "ProfaneGroundInsteadOfConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StalkingPustuleOnKillUnique__1"] = { affix = "", "Trigger Level 1 Stalking Pustule on Kill", statOrder = { 817 }, level = 50, group = "StalkingPustuleOnKill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["BlindDoesNotAffectHitChanceUnique__1"] = { affix = "", "Unaffected by Blind", statOrder = { 10455 }, level = 1, group = "BlindDoesNotAffectHitChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaledictionOnBlindWhileBlindedUnique__1"] = { affix = "", "Enemies Blinded by you have Malediction", statOrder = { 6365 }, level = 1, group = "MaledictionOnBlindWhileBlinded", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackImpaleChanceUnique__1"] = { affix = "", "(10-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceUnique__2"] = { affix = "", "(10-20)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["AttackImpaleChanceUnique__3"] = { affix = "", "(15-30)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "AttackImpaleChance", weightKey = { }, weightVal = { }, modTags = { "physical", "attack" }, }, + ["GrantsBrandDetonateUnique__1"] = { affix = "", "Grants Level 20 Brandsurge Skill", statOrder = { 692 }, level = 85, group = "GrantsBrandDetonate", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["BrandDurationUnique__1"] = { affix = "", "Brand Skills have (50-100)% increased Duration", statOrder = { 10038 }, level = 1, group = "BrandDuration", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["SummonAdditionalBrandUnique__1"] = { affix = "", "Skills which create Brands create an additional Brand", statOrder = { 4567 }, level = 1, group = "SummonAdditionalBrand", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["AttackSpeedChangedStanceUnique__1"] = { affix = "", "(25-30)% increased Attack Speed if you've changed Stance Recently", statOrder = { 10222 }, level = 72, group = "AttackSpeedChangedStance", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["WarcryInfiniteEnemyPowerUnique__1__"] = { affix = "", "Warcries have infinite Power", statOrder = { 10569 }, level = 1, group = "WarcryInfiniteEnemyPower", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KeystoneCallToArmsUnique__2_"] = { affix = "", "Call to Arms", statOrder = { 10773 }, level = 1, group = "CallToArms", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WarcryGrantsArcaneSurgeUnique__1"] = { affix = "", "Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50%", statOrder = { 4709 }, level = 1, group = "WarcryGrantsArcaneSurge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WarcryTauntChaosExplosionUnique__1_"] = { affix = "", "Enemies Taunted by your Warcries Explode on death, dealing 8% of their maximum Life as Chaos Damage", statOrder = { 6398 }, level = 1, group = "WarcryTauntChaosExplosion", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["Curse25PercentHinderEnemyUnique__1"] = { affix = "", "Enemies Cursed by you are Hindered if 25% of Curse Duration expired", statOrder = { 10612 }, level = 77, group = "Curse25PercentHinderEnemy", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["Curse50PercentCurseEffectUnique__1"] = { affix = "", "Your Curses have 25% increased Effect if 50% of Curse Duration expired", statOrder = { 10614 }, level = 1, group = "Curse50PercentCurseEffect", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["Curse75PercentEnemyDamageTakenUnique__1__"] = { affix = "", "Enemies Cursed by you take 35% increased Damage if 75% of Curse Duration expired", statOrder = { 10615 }, level = 1, group = "Curse75PercentEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, + ["SpellsAlwaysCritFinalRepeatUnique__1_"] = { affix = "", "Spell Skills always deal Critical Strikes on final Repeat", statOrder = { 10164 }, level = 80, group = "SpellsAlwaysCritFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SpellsNeverCritExceptFinalRepeatUnique__1"] = { affix = "", "Spell Skills cannot deal Critical Strikes except on final Repeat", statOrder = { 10167 }, level = 1, group = "SpellsNeverCritExceptFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SpellsCriticalMultiplierFinalRepeatUnique__1"] = { affix = "", "Spell Skills have +(20-30)% to Critical Strike Multiplier on final Repeat", statOrder = { 10165 }, level = 1, group = "SpellsCriticalMultiplierFinalRepeat", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["NonCriticalStrikesLessDamageUnique__1"] = { affix = "", "Non-critical strikes deal 80% less Damage", statOrder = { 2713 }, level = 1, group = "NonCriticalDamageMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["MaximumRageUnique__1"] = { affix = "", "+10 to Maximum Rage", statOrder = { 9785 }, level = 85, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumRageUnique__2"] = { affix = "", "+5 to Maximum Rage", statOrder = { 9785 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumRageUnique__3"] = { affix = "", "+(-5-5) to Maximum Rage", statOrder = { 9785 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumRageImplicitE1"] = { affix = "", "+10 to Maximum Rage", statOrder = { 9785 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumRageImplicitE2"] = { affix = "", "+15 to Maximum Rage", statOrder = { 9785 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumRageImplicitE3"] = { affix = "", "+20 to Maximum Rage", statOrder = { 9785 }, level = 1, group = "MaximumRage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RageOnMeleeHitE1"] = { affix = "", "Gain 3 Rage on Melee Hit", statOrder = { 6844 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RageOnMeleeHitE2"] = { affix = "", "Gain 4 Rage on Melee Hit", statOrder = { 6844 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RageOnMeleeHitE3"] = { affix = "", "Gain 5 Rage on Melee Hit", statOrder = { 6844 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemiesCrushedWithRageUnique__1_"] = { affix = "", "Nearby Enemies are Crushed while you have at least 25 Rage", statOrder = { 9452 }, level = 1, group = "EnemiesCrushedWithRage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskDurationConsumedPerUse"] = { affix = "", "50% increased Duration. -1% to this value when used", statOrder = { 857 }, level = 1, group = "FlaskDurationConsumedPerUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["JewelImplicitLifeRegeneration"] = { affix = "", "Regenerate 0.1% of Life per second", statOrder = { 1944 }, level = 1, group = "JewelImplicitLifeRegeneration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, }, + ["JewelImplicitEnergyShieldRechargeRate"] = { affix = "", "(3-6)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "JewelImplicitEnergyShieldRechargeRate", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "defences", "energy_shield" }, }, + ["JewelImplicitTotemPlacementSpeed"] = { affix = "", "(4-6)% increased Totem Placement speed", statOrder = { 2578 }, level = 1, group = "JewelImplicitTotemPlacementSpeed", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, }, + ["JewelImplicitDamageTakenGainedAsMana"] = { affix = "", "1% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "JewelImplicitDamageTakenGainedAsMana", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "mana" }, }, + ["JewelImplicitLifeLeechRate"] = { affix = "", "20% increased total Recovery per second from Life Leech", statOrder = { 2157 }, level = 1, group = "JewelImplicitLifeLeechRate", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life" }, }, + ["JewelImplicitManaLeechRate"] = { affix = "", "20% increased total Recovery per second from Mana Leech", statOrder = { 2158 }, level = 1, group = "JewelImplicitManaLeechRate", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "mana" }, }, + ["JewelImplicitAuraAreaOfEffect"] = { affix = "", "(3-6)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "JewelImplicitAuraAreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "aura" }, }, + ["JewelImplicitMinionLife___"] = { affix = "", "Minions have (3-5)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "JewelImplicitMinionLife", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "resource", "life", "minion" }, }, + ["JewelImplicitMovementSpeed"] = { affix = "", "1% increased Movement Speed", statOrder = { 1798 }, level = 1, group = "JewelImplicitMovementSpeed", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "speed" }, }, + ["JewelImplicitLightRadius"] = { affix = "", "(3-6)% increased Light Radius", statOrder = { 2500 }, level = 1, group = "JewelImplicitLightRadius", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, }, + ["JewelImplicitFlaskDuration"] = { affix = "", "1% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "JewelImplicitFlaskDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "flask" }, }, + ["JewelImplicitReducedChillEffect"] = { affix = "", "15% reduced Effect of Chill on you", statOrder = { 1645 }, level = 1, group = "JewelImplicitReducedChillEffect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["JewelImplicitReducedFreezeDuration_"] = { affix = "", "15% reduced Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "JewelImplicitReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["JewelImplicitReducedShockEffect"] = { affix = "", "15% reduced Effect of Shock on you", statOrder = { 10019 }, level = 1, group = "JewelImplicitReducedShockEffect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["JewelImplicitReducedIgniteDuration_"] = { affix = "", "15% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "JewelImplicitReducedIgniteDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["JewelImplicitChanceToAvoidStun"] = { affix = "", "15% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "JewelImplicitChanceToAvoidStun", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { }, }, + ["JewelImplicitChanceToAvoidChill"] = { affix = "", "15% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "JewelImplicitChanceToAvoidChill", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["JewelImplicitChanceToAvoidFreeze"] = { affix = "", "15% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "JewelImplicitChanceToAvoidFreeze", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["JewelImplicitChanceToAvoidShock"] = { affix = "", "15% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "JewelImplicitChanceToAvoidShock", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["JewelImplicitChanceToAvoidIgnite"] = { affix = "", "15% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "JewelImplicitChanceToAvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["JewelImplicitChanceToAvoidPoison"] = { affix = "", "15% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "JewelImplicitChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["JewelImplicitReducedElementalReflect"] = { affix = "", "10% reduced Reflected Elemental Damage taken", statOrder = { 2709 }, level = 1, group = "JewelImplicitReducedElementalReflect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "elemental" }, }, + ["JewelImplicitReducedPhysicalReflect"] = { affix = "", "10% reduced Reflected Physical Damage taken", statOrder = { 2710 }, level = 1, group = "JewelImplicitReducedPhysicalReflect", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "physical" }, }, + ["JewelImplicitFrenzyChargeDuration__"] = { affix = "", "10% increased Frenzy Charge Duration", statOrder = { 2127 }, level = 1, group = "JewelImplicitFrenzyChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "frenzy_charge" }, }, + ["JewelImplicitPowerChargeDuration"] = { affix = "", "10% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "JewelImplicitPowerChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "power_charge" }, }, + ["JewelImplicitEnduranceChargeDuration"] = { affix = "", "10% increased Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "JewelImplicitEnduranceChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 1, 0 }, modTags = { "endurance_charge" }, }, + ["VolleyFirstPointPierceUnique__1_"] = { affix = "", "Arrows fired from the first firing points always Pierce", statOrder = { 4407 }, level = 1, group = "VolleyFirstPointPierce", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["VolleySecondPointForkUnique__1"] = { affix = "", "Arrows fired from the second firing points Fork", statOrder = { 4408 }, level = 1, group = "VolleySecondPointFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["VolleyThirdPointReturnUnique__1__"] = { affix = "", "Arrows fired from the third firing points Return to you", statOrder = { 4409 }, level = 1, group = "VolleyThirdPointReturn", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["VolleyFourthPointChainUnique__1"] = { affix = "", "Arrows fired from the fourth firing points Chain +2 times", statOrder = { 4410 }, level = 1, group = "VolleyFourthPointChain", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["HarvestFlaskEnchantmentDurationLoweredOnUse1_"] = { affix = "Enchantment Decaying Duration", "100% increased Duration. -1% to this value when used", statOrder = { 857 }, level = 1, group = "HarvestFlaskEnchantmentDurationLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["HarvestFlaskEnchantmentEffectLoweredOnUse2"] = { affix = "Enchantment Decaying Effect", "50% increased effect. -1% to this value when used", statOrder = { 935 }, level = 1, group = "HarvestFlaskEnchantmentEffectLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["HarvestFlaskEnchantmentMaximumChargesLoweredOnUse3_"] = { affix = "Enchantment Decaying Efficiency", "+100 to Maximum Charges. -1 to this value when used", statOrder = { 837 }, level = 1, group = "HarvestFlaskEnchantmentMaximumChargesLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["HarvestFlaskEnchantmentChargesUsedLoweredOnUse4"] = { affix = "Enchantment Decaying Capacity", "50% reduced Charges per use. -1% to this value when used", statOrder = { 846 }, level = 1, group = "HarvestFlaskEnchantmentChargesUsedLoweredOnUse", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["HarvestAlternateWeaponQualityLocalCriticalStrikeChance__"] = { affix = "", "Quality does not increase Physical Damage", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 1916, 7881 }, level = 1, group = "HarvestAlternateWeaponQualityLocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "critical" }, }, + ["HarvestAlternateWeaponQualityAccuracyRatingIncrease_"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Accuracy per 2% Quality", statOrder = { 1916, 7509 }, level = 1, group = "HarvestAlternateWeaponQualityAccuracyRatingIncrease", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed"] = { affix = "", "Quality does not increase Physical Damage", "1% increased Attack Speed per 8% Quality", statOrder = { 1916, 7858 }, level = 1, group = "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, }, + ["HarvestAlternateWeaponQualityLocalMeleeWeaponRange_"] = { affix = "", "Quality does not increase Physical Damage", "+0.1 metres to Weapon Range per 10% Quality", statOrder = { 1916, 8130 }, level = 1, group = "HarvestAlternateWeaponQualityLocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HarvestAlternateWeaponQualityElementalDamagePercent"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Elemental Damage per 2% Quality", statOrder = { 1916, 7928 }, level = 1, group = "HarvestAlternateWeaponQualityElementalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["HarvestAlternateWeaponQualityAreaOfEffect_"] = { affix = "", "Quality does not increase Physical Damage", "Grants 1% increased Area of Effect per 4% Quality", statOrder = { 1916, 7855 }, level = 1, group = "HarvestAlternateWeaponQualityAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["HarvestAlternateArmourQualityIncreasedLife"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Maximum Life per 2% Quality", statOrder = { 1915, 7992 }, level = 1, group = "HarvestAlternateArmourQualityIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences" }, }, + ["HarvestAlternateArmourQualityIncreasedMana"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Maximum Mana per 2% Quality", statOrder = { 1915, 7994 }, level = 1, group = "HarvestAlternateArmourQualityIncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "defences" }, }, + ["HarvestAlternateArmourQualityStrength"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Strength per 2% Quality", statOrder = { 1915, 8029 }, level = 1, group = "HarvestAlternateArmourQualityStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, }, + ["HarvestAlternateArmourQualityDexterity"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Dexterity per 2% Quality", statOrder = { 1915, 7887 }, level = 1, group = "HarvestAlternateArmourQualityDexterity", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, }, + ["HarvestAlternateArmourQualityIntelligence_"] = { affix = "", "Quality does not increase Defences", "Grants +1 to Intelligence per 2% Quality", statOrder = { 1915, 7948 }, level = 1, group = "HarvestAlternateArmourQualityIntelligence", weightKey = { }, weightVal = { }, modTags = { "defences", "attribute" }, }, + ["HarvestAlternateArmourQualityFireResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Fire Resistance per 2% Quality", statOrder = { 1915, 7932 }, level = 1, group = "HarvestAlternateArmourQualityFireResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "fire", "resistance" }, }, + ["HarvestAlternateArmourQualityColdResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Cold Resistance per 2% Quality", statOrder = { 1915, 7877 }, level = 1, group = "HarvestAlternateArmourQualityColdResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "cold", "resistance" }, }, + ["HarvestAlternateArmourQualityLightningResistance"] = { affix = "", "Quality does not increase Defences", "Grants +1% to Lightning Resistance per 2% Quality", statOrder = { 1915, 7987 }, level = 1, group = "HarvestAlternateArmourQualityLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "lightning", "resistance" }, }, + ["SummonedSkeletonWarriorsGetWeaponStatsInMainHandUnique__1"] = { affix = "", "Summoned Skeleton Warriors and Soldiers wield this Weapon while in your Main Hand", statOrder = { 4412 }, level = 1, group = "SummonSkeletonsWarriorsGetWeaponStatsInMainHand", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SkeletonWarriorsTripleDamageUnique__1_"] = { affix = "", "Summoned Skeleton Warriors and Soldiers deal Triple Damage with this", "Weapon if you've Hit with this Weapon Recently", statOrder = { 4413, 4413.1 }, level = 1, group = "SkeletonWarriorsTripleDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GrantsUnholyMightUnique__1"] = { affix = "", "Unholy Might", statOrder = { 2914 }, level = 1, group = "GrantsUnholyMight", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NearbyEnemiesAreChilledUnique__1"] = { affix = "", "Nearby Enemies are Chilled", statOrder = { 7905 }, level = 1, group = "NearbyEnemiesAreChilled", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["FreezeChilledEnemiesMoreDamageUnique__1_"] = { affix = "", "Freeze Chilled Enemies as though dealing (50-100)% more Damage", statOrder = { 6664 }, level = 1, group = "FreezeChilledEnemiesMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["AllDamageCanFreezeUnique__1"] = { affix = "", "All Damage can Freeze", statOrder = { 4624 }, level = 1, group = "AllDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["CriticalStrikeMultiplierIfGainedPowerChargeUnique__1_"] = { affix = "", "+(30-40)% to Critical Strike Multiplier if you've gained a Power Charge Recently", statOrder = { 5959 }, level = 85, group = "CriticalStrikeMultiplierIfGainedPowerCharge", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["PowerChargeDurationFinalUnique__1__"] = { affix = "", "90% less Power Charge Duration", statOrder = { 9698 }, level = 1, group = "PowerChargeDurationFinal", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ElementalDamageTakenUnique__1"] = { affix = "", "(40-50)% increased Elemental Damage taken", statOrder = { 3293 }, level = 1, group = "ElementalDamageTaken", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["DisplaySupportedByImmolateUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 15 Immolate", statOrder = { 309 }, level = 1, group = "DisplaySupportedByImmolate", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["DisplaySupportedByUnboundAilmentsUnique__1__"] = { affix = "", "Socketed Gems are Supported by Level 15 Unbound Ailments", statOrder = { 393 }, level = 1, group = "DisplaySupportedByUnboundAilments", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["FireHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Fire Damage taken as Lightning Damage", statOrder = { 6582 }, level = 1, group = "FireHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ColdHitAndDoTDamageTakenAsLightningUnique__1"] = { affix = "", "40% of Cold Damage taken as Lightning Damage", statOrder = { 5826 }, level = 1, group = "ColdHitAndDoTDamageTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemyShockedConvertedToLightningUnique__1"] = { affix = "", "Enemies Shocked by you have (10-15)% of Physical Damage they deal converted to Lightning", statOrder = { 6395 }, level = 1, group = "EnemyShockedConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemyIgnitedConvertedToFireUnique__1"] = { affix = "", "Enemies Ignited by you have (10-15)% of Physical Damage they deal converted to Fire", statOrder = { 6383 }, level = 1, group = "EnemyIgnitedConvertedToFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeGainOnHitCursedEnemyUnique__1"] = { affix = "", "Gain (20-28) Life per Cursed Enemy Hit with Attacks", statOrder = { 7357 }, level = 61, group = "LifeGainOnHitCursedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["ManaGainOnHitCursedEnemyUnique__1"] = { affix = "", "Gain (10-14) Mana per Cursed Enemy Hit with Attacks", statOrder = { 8177 }, level = 1, group = "ManaGainOnHitCursedEnemy", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "attack" }, }, + ["CullingStrikeCursedEnemyUnique__1_"] = { affix = "", "You have Culling Strike against Cursed Enemies", statOrder = { 5990 }, level = 1, group = "CullingStrikeCursedEnemy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NearbyEnemiesAvoidProjectilesUnique__1"] = { affix = "", "Projectiles cannot collide with Enemies in Close Range", statOrder = { 9455 }, level = 1, group = "NearbyEnemiesAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ScorchingBrittleSappingConfluxUnique__1"] = { affix = "", "You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal", statOrder = { 6816 }, level = 85, group = "ScorchingBrittleSappingConflux", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotIgniteChillFreezeShockUnique__1"] = { affix = "", "Cannot Ignite, Chill, Freeze or Shock", statOrder = { 9478 }, level = 1, group = "CannotIgniteChillFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CorpseWalk"] = { affix = "", "Triggers Level 20 Corpse Walk when Equipped", statOrder = { 787 }, level = 1, group = "CorpseWalk", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GainAreaOfEffectPluspercentOnManaSpentUnique__1"] = { affix = "", "Gain 40% increased Area of Effect for 2 seconds after Spending a total of 800 Mana", statOrder = { 6735 }, level = 69, group = "GainAreaOfEffectPluspercentOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeRegenerationPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, Regenerate 0.25% Life per second, up to 3%", statOrder = { 7420 }, level = 1, group = "LifeRegenerationPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["GainEnduranceChargesWhenHitUnique__1_"] = { affix = "", "Gain an Endurance Charge when you are Hit", statOrder = { 2751 }, level = 1, group = "GainEnduranceChargesWhenHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["LoseLifeIfHitRecentlyUnique__1"] = { affix = "", "Lose 2% of Life per second if you have been Hit Recently", statOrder = { 7380 }, level = 1, group = "LoseLifeIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["PerfectAgonyIfCritRecentlyUnique__1"] = { affix = "", "You have Perfect Agony if you've dealt a Critical Strike recently", statOrder = { 6795 }, level = 1, group = "PerfectAgonyIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "damage", "critical", "ailment" }, }, + ["BrandDamageUnique__1"] = { affix = "", "40% increased Brand Damage", statOrder = { 10036 }, level = 1, group = "BrandDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["AdditionalBrandUnique__1"] = { affix = "", "You can Cast an additional Brand", statOrder = { 5053 }, level = 1, group = "AdditionalBrand", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["CriticalStrikeChancePerBrandUnique__1___"] = { affix = "", "20% increased Critical Strike Chance per Brand", statOrder = { 5933 }, level = 1, group = "CriticalStrikeChancePerBrand", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["DamageAgainstMarkedEnemiesUnique__1"] = { affix = "", "(30-50)% increased Damage with Hits and Ailments against Marked Enemy", statOrder = { 6037 }, level = 1, group = "DamageAgainstMarkedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["MarkCastSpeedUnique__1"] = { affix = "", "Mark Skills have (10-15)% increased Cast Speed", statOrder = { 2216 }, level = 1, group = "MarkCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "curse" }, }, + ["TransferMarkOnDeathUnique__1"] = { affix = "", "Your Mark Transfers to another Enemy when Marked Enemy dies", statOrder = { 10690 }, level = 1, group = "TransferMarkOnDeath", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageTakenFromMarkedTargetUnique__1"] = { affix = "", "8% of Damage from Hits is taken from Marked Target's Life before you", statOrder = { 6090 }, level = 1, group = "DamageTakenFromMarkedTarget", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskEldritchBatteryUnique__1"] = { affix = "", "Life Recovery from Flasks also applies to Energy Shield during Effect", "Eldritch Battery during Effect", statOrder = { 851, 1070 }, level = 1, group = "FlaskEldritchBattery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life", "defences", "energy_shield" }, }, + ["GrantsDeathWishUnique__1__"] = { affix = "", "Grants Level 20 Death Wish Skill", statOrder = { 699 }, level = 1, group = "GrantsDeathWish", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["EnemyTemporalChainsOnHitUnique__1"] = { affix = "", "Enemy Hits inflict Temporal Chains on you", statOrder = { 6402 }, level = 1, group = "EnemyTemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainRageOnLosingTemporalChainsUnique__1__"] = { affix = "", "When you lose Temporal Chains you gain maximum Rage", statOrder = { 6768 }, level = 1, group = "GainRageOnLosingTemporalChains", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ImmuneToCursesWithRageUnique__1"] = { affix = "", "Immune to Curses while you have at least 25 Rage", statOrder = { 7221 }, level = 1, group = "ImmuneToCursesWithRage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponCritChanceOverrideUnique__1__"] = { affix = "", "Critical Strike Chance is (30-40)% for Hits with this Weapon", statOrder = { 8128 }, level = 1, group = "WeaponCritChanceIs", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["NoIntelligenceUnique__1_"] = { affix = "", "You have no Intelligence", statOrder = { 7291 }, level = 1, group = "NoIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["FlaskLifeRecoveryAlliesUnique__1_"] = { affix = "", "100% of Life Recovery from Flasks is applied to nearby Allies instead of You", statOrder = { 7389 }, level = 1, group = "FlaskLifeRecoveryAllies", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["DamageIfConsumedCorpseUnique__1__"] = { affix = "", "(20-40)% increased Damage if you have Consumed a corpse Recently", statOrder = { 4253 }, level = 1, group = "DamageIfConsumedCorpse", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["HexExpiresMaxDoomUnique__1"] = { affix = "", "Non-Aura Hexes expire upon reaching 200% of base Effect", statOrder = { 7138 }, level = 48, group = "HexExpiresMaxDoom", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, + ["DoubleDoomEffectUnique__1"] = { affix = "", "Non-Aura Hexes gain 20% increased Effect per second", statOrder = { 9485 }, level = 1, group = "DoubleDoomEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalAddedLightningDamagePerPowerChargeUnique__1"] = { affix = "", "(1-2) to (36-40) Lightning Damage per Power Charge", statOrder = { 9242 }, level = 1, group = "GlobalAddedLightningDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["HasMassiveShrineBuffUnique__1"] = { affix = "", "You have Lesser Massive Shrine Buff", statOrder = { 6936 }, level = 1, group = "HasMassiveShrineBuff", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasBrutalShrineBuffUnique__1"] = { affix = "", "You have Lesser Brutal Shrine Buff", statOrder = { 6935 }, level = 1, group = "HasBrutalShrineBuff", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SocketedSkillsDoubleDamageUnique__1_"] = { affix = "", "Socketed Skills deal Double Damage", statOrder = { 563 }, level = 1, group = "SocketedSkillsDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TotalRecoveryLifeLeechDoubledUnique__1"] = { affix = "", "Total Recovery per second from Life Leech is Doubled", statOrder = { 10388 }, level = 55, group = "TotalRecoveryLifeLeechDoubled", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageLeechWith5ChargesUnique__1"] = { affix = "", "0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges", statOrder = { 7364 }, level = 1, group = "DamageLeechWith5Charges", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReflectElementalAilmentsToSelfUnique__1"] = { affix = "", "Elemental Ailments you inflict are Reflected to you", statOrder = { 6292 }, level = 1, group = "ReflectElementalAilmentsToSelf", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ProlifElementalAilmentsFromSelfUnique__1__"] = { affix = "", "Elemental Ailments inflicted on you spread to Enemies within 2.5 metres", statOrder = { 6291 }, level = 1, group = "ProlifElementalAilmentsFromSelf", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalDamagePerPowerChargeUnique__1"] = { affix = "", "(3-5)% increased Elemental Damage per Power charge", statOrder = { 6308 }, level = 1, group = "ElementalDamagePerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["LosePowerChargesOnBlockUnique__1"] = { affix = "", "Lose all Power Charges when you Block", statOrder = { 8138 }, level = 1, group = "LosePowerChargesOnBlock", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainPowerChargesNotLostRecentlyUnique__1_"] = { affix = "", "Gain a Power Charge every Second if you haven't lost Power Charges Recently", statOrder = { 6810 }, level = 1, group = "GainPowerChargesNotLostRecently", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["SocketedGemQualityUnique__1"] = { affix = "", "+(30-50)% to Quality of Socketed Gems", statOrder = { 204 }, level = 1, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["SocketedGemQualityUnique__2_"] = { affix = "", "+30% to Quality of Socketed Gems", statOrder = { 204 }, level = 57, group = "SocketedGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["NearbyEnemiesAreBlindedPhysicalAegisUnique__1"] = { affix = "", "Nearby Enemies are Blinded while Physical Aegis is not depleted", statOrder = { 9449 }, level = 1, group = "NearbyEnemiesAreBlindedPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CriticalStrikeChanceWithoutPhysicalAegisUnique__1"] = { affix = "", "(50-70)% increased Critical Strike Chance while Physical Aegis is depleted", statOrder = { 5946 }, level = 1, group = "CriticalStrikeChanceWithoutPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackAndCastSpeedWithoutPhysicalAegisUnique__1"] = { affix = "", "(8-15)% increased Attack and Cast Speed while Physical Aegis is depleted", statOrder = { 4824 }, level = 1, group = "AttackAndCastSpeedWithoutPhysicalAegis", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellsGainIntensityUnique__1"] = { affix = "", "Spells which have gained Intensity Recently gain 1 Intensity every 0.5 Seconds", statOrder = { 10067 }, level = 1, group = "SpellsGainIntensity", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellsLoseIntensityUnique__1"] = { affix = "", "Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds", statOrder = { 10068 }, level = 1, group = "SpellsLoseIntensity", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CriticalStrikeChancePerIntensityUnique__1"] = { affix = "", "Spells have 10% reduced Critical Strike Chance per Intensity", statOrder = { 5936 }, level = 1, group = "CriticalStrikeChancePerIntensity", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CriticalStrikeChancePerIntensityUnique__2"] = { affix = "", "Spells have (30-50)% increased Critical Strike Chance per Intensity", statOrder = { 5936 }, level = 1, group = "CriticalStrikeChancePerIntensity", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeFlaskPassiveChargeGainUnique__1_"] = { affix = "", "Life Flasks gain 1 Charge every 3 seconds", statOrder = { 7347 }, level = 1, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeFlaskPassiveChargeGainUnique__2"] = { affix = "", "Life Flasks gain (0-3) Charges every 3 seconds", statOrder = { 7347 }, level = 98, group = "LifeFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeFlaskPassiveChargeGainOnLowLifeUnique__1"] = { affix = "", "While on Low Life, Life Flasks gain (3-6) Charges every 3 seconds", statOrder = { 7348 }, level = 70, group = "LifeFlaskPassiveChargeGainOnLowLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ManaFlaskPassiveChargeGainUnique__1"] = { affix = "", "Mana Flasks gain (0-3) Charges every 3 seconds", statOrder = { 8175 }, level = 1, group = "ManaFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UtilityFlaskPassiveChargeGainUnique__1"] = { affix = "", "Utility Flasks gain (0-3) Charges every 3 seconds", statOrder = { 10513 }, level = 1, group = "UtilityFlaskPassiveChargeGain", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalDamageLowestResistUnique__1"] = { affix = "", "Elemental Damage you Deal with Hits is Resisted by lowest Elemental Resistance instead", statOrder = { 6313 }, level = 1, group = "ElementalDamageLowestResist", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["ReducedAttackSpeedWhilePhasingUnique__1"] = { affix = "", "30% reduced Attack Speed while Phasing", statOrder = { 4907 }, level = 1, group = "AttackSpeedWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["PhysicalDamageAddedAsRandomWhileIgnitedUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as Extra Damage of a random Element while you are Ignited", statOrder = { 9636 }, level = 1, group = "PhysicalDamageAddedAsRandomWhileIgnited", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalPenetrationWhileChilledUnique__1___"] = { affix = "", "Damage Penetrates (8-10)% Elemental Resistances while you are Chilled", statOrder = { 6333 }, level = 1, group = "ElementalPenetrationWhileChilled", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalDamageLuckyWhileShockedUnique__1__"] = { affix = "", "Elemental Damage with Hits is Lucky while you are Shocked", statOrder = { 6296 }, level = 1, group = "ElementalDamageLuckyWhileShocked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffect1"] = { affix = "Enchantment Physical Modifier Effect", "8% increased Explicit Physical Modifier magnitudes", statOrder = { 50 }, level = 1, group = "WeaponEnchantmentHeistPhysicalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffect1"] = { affix = "Enchantment Fire Modifier Effect", "8% increased Explicit Fire Modifier magnitudes", statOrder = { 46 }, level = 1, group = "WeaponEnchantmentHeistFireModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffect1"] = { affix = "Enchantment Lightning Modifier Effect", "8% increased Explicit Lightning Modifier magnitudes", statOrder = { 48 }, level = 1, group = "WeaponEnchantmentHeistLightningModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffect1__"] = { affix = "Enchantment Cold Modifier Effect", "8% increased Explicit Cold Modifier magnitudes", statOrder = { 42 }, level = 1, group = "WeaponEnchantmentHeistColdModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffect1__"] = { affix = "Enchantment Chaos Modifier Effect", "8% increased Explicit Chaos Modifier magnitudes", statOrder = { 41 }, level = 1, group = "WeaponEnchantmentHeistChaosModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect", "8% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 40 }, level = 1, group = "WeaponEnchantmentHeistCasterDamageModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffect1"] = { affix = "Enchantment Mana Modifier Effect", "8% increased Explicit Mana Modifier magnitudes", statOrder = { 49 }, level = 10, group = "WeaponEnchantmentHeistManaModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffect1_"] = { affix = "Enchantment Speed Modifier Effect", "8% increased Explicit Speed Modifier magnitudes", statOrder = { 52 }, level = 70, group = "WeaponEnchantmentHeistSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffect1_"] = { affix = "Enchantment Critical Modifier Effect", "8% increased Explicit Critical Modifier magnitudes", statOrder = { 43 }, level = 70, group = "WeaponEnchantmentHeistCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffect1"] = { affix = "Enchantment Attribute Modifier Effect", "8% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffect1"] = { affix = "Enchantment Ailment Modifier Effect", "8% increased Explicit Ailment Modifier magnitudes", statOrder = { 38 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeRequirement1"] = { affix = "Enchantment Attribute Requirement", "40% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "WeaponEnchantmentHeistAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSocketsAreLinked1_"] = { affix = "Enchantment Sockets Are Linked", "All Sockets Linked", statOrder = { 71 }, level = 40, group = "WeaponEnchantmentHeistSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistWhiteSockets1_"] = { affix = "Enchantment White Sockets", "Has 2 White Sockets", statOrder = { 77 }, level = 70, group = "WeaponEnchantmentHeistWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectSpeedEffect1"] = { affix = "Enchantment Physical Modifier Effect and Speed Modifier Effect", "6% increased Explicit Physical Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 50, 52 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectCriticalEffect1"] = { affix = "Enchantment Physical Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 43, 50 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectAttributeEffect1____"] = { affix = "Enchantment Physical Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 39, 50 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectAilmentEffect1"] = { affix = "Enchantment Physical Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Physical Modifier magnitudes", statOrder = { 38, 50 }, level = 70, group = "WeaponEnchantmentHeistPhysicalModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectAttributeRequirement1"] = { affix = "Enchantment Physical Modifier Effect and Attribute Requirement", "6% increased Explicit Physical Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 50, 1075 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectSocketsAreLinked1"] = { affix = "Enchantment Physical Modifier Effect and Sockets Are Linked", "6% increased Explicit Physical Modifier magnitudes", "All Sockets Linked", statOrder = { 50, 71 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectNoRedSockets1"] = { affix = "Enchantment Physical Modifier Effect and No Red Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Red Sockets", statOrder = { 50, 66 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectNoBlueSockets1"] = { affix = "Enchantment Physical Modifier Effect and No Blue Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Green Sockets", statOrder = { 50, 65 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectNoGreenSockets1_"] = { affix = "Enchantment Physical Modifier Effect and No Green Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has no Blue Sockets", statOrder = { 50, 64 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectWhiteSockets1_"] = { affix = "Enchantment Physical Modifier Effect and White Sockets", "8% increased Explicit Physical Modifier magnitudes", "Has 1 White Socket", statOrder = { 50, 77 }, level = 20, group = "WeaponEnchantmentHeistPhysicalModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectSpeedEffect1"] = { affix = "Enchantment Fire Modifier Effect and Speed Modifier Effect", "6% increased Explicit Fire Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 46, 52 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectCriticalEffect1"] = { affix = "Enchantment Fire Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 43, 46 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectAttributeEffect1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 39, 46 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectAilmentEffect1_"] = { affix = "Enchantment Fire Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Fire Modifier magnitudes", statOrder = { 38, 46 }, level = 70, group = "WeaponEnchantmentHeistFireModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectAttributeRequirement1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Requirement", "6% increased Explicit Fire Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 46, 1075 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectSocketsAreLinked1"] = { affix = "Enchantment Fire Modifier Effect and Sockets Are Linked", "6% increased Explicit Fire Modifier magnitudes", "All Sockets Linked", statOrder = { 46, 71 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectNoRedSockets1"] = { affix = "Enchantment Fire Modifier Effect and No Red Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Red Sockets", statOrder = { 46, 66 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectNoBlueSockets1"] = { affix = "Enchantment Fire Modifier Effect and No Blue Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Green Sockets", statOrder = { 46, 65 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectNoGreenSockets1_"] = { affix = "Enchantment Fire Modifier Effect and No Green Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has no Blue Sockets", statOrder = { 46, 64 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectWhiteSockets1"] = { affix = "Enchantment Fire Modifier Effect and White Sockets", "8% increased Explicit Fire Modifier magnitudes", "Has 1 White Socket", statOrder = { 46, 77 }, level = 20, group = "WeaponEnchantmentHeistFireModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectSpeedEffect1_"] = { affix = "Enchantment Lightning Modifier Effect and Speed Modifier Effect", "6% increased Explicit Lightning Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 48, 52 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectCriticalEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 43, 48 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectAttributeEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 39, 48 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectAilmentEffect1"] = { affix = "Enchantment Lightning Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Lightning Modifier magnitudes", statOrder = { 38, 48 }, level = 70, group = "WeaponEnchantmentHeistLightningModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectAttributeRequirement1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Requirement", "6% increased Explicit Lightning Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 48, 1075 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectSocketsAreLinked1"] = { affix = "Enchantment Lightning Modifier Effect and Sockets Are Linked", "6% increased Explicit Lightning Modifier magnitudes", "All Sockets Linked", statOrder = { 48, 71 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectNoRedSockets1"] = { affix = "Enchantment Lightning Modifier Effect and No Red Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Red Sockets", statOrder = { 48, 66 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectNoBlueSockets1_"] = { affix = "Enchantment Lightning Modifier Effect and No Blue Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Green Sockets", statOrder = { 48, 65 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectNoGreenSockets1"] = { affix = "Enchantment Lightning Modifier Effect and No Green Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has no Blue Sockets", statOrder = { 48, 64 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectWhiteSockets1_"] = { affix = "Enchantment Lightning Modifier Effect and White Sockets", "8% increased Explicit Lightning Modifier magnitudes", "Has 1 White Socket", statOrder = { 48, 77 }, level = 20, group = "WeaponEnchantmentHeistLightningModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectSpeedEffect1"] = { affix = "Enchantment Cold Modifier Effect and Speed Modifier Effect", "6% increased Explicit Cold Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 42, 52 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectCriticalEffect1_"] = { affix = "Enchantment Cold Modifier Effect and Critical Modifier Effect", "6% increased Explicit Cold Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 42, 43 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectAttributeEffect1"] = { affix = "Enchantment Cold Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Cold Modifier magnitudes", statOrder = { 39, 42 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectAilmentEffect1"] = { affix = "Enchantment Cold Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Cold Modifier magnitudes", statOrder = { 38, 42 }, level = 70, group = "WeaponEnchantmentHeistColdModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectAttributeRequirement1"] = { affix = "Enchantment Cold Modifier Effect and Attribute Requirement", "6% increased Explicit Cold Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 42, 1075 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectSocketsAreLinked1"] = { affix = "Enchantment Cold Modifier Effect and Sockets Are Linked", "6% increased Explicit Cold Modifier magnitudes", "All Sockets Linked", statOrder = { 42, 71 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectNoRedSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Red Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Red Sockets", statOrder = { 42, 66 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectNoBlueSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Blue Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Green Sockets", statOrder = { 42, 65 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectNoGreenSockets1"] = { affix = "Enchantment Cold Modifier Effect and No Green Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has no Blue Sockets", statOrder = { 42, 64 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectWhiteSockets1___"] = { affix = "Enchantment Cold Modifier Effect and White Sockets", "8% increased Explicit Cold Modifier magnitudes", "Has 1 White Socket", statOrder = { 42, 77 }, level = 20, group = "WeaponEnchantmentHeistColdModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectSpeedEffect1_"] = { affix = "Enchantment Chaos Modifier Effect and Speed Modifier Effect", "6% increased Explicit Chaos Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 41, 52 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectCriticalEffect1"] = { affix = "Enchantment Chaos Modifier Effect and Critical Modifier Effect", "6% increased Explicit Chaos Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 41, 43 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectAttributeEffect1"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Chaos Modifier magnitudes", statOrder = { 39, 41 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectAilmentEffect1_"] = { affix = "Enchantment Chaos Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Chaos Modifier magnitudes", statOrder = { 38, 41 }, level = 70, group = "WeaponEnchantmentHeistChaosModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectAttributeRequirement1_"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Requirement", "6% increased Explicit Chaos Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 41, 1075 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectSocketsAreLinked1_"] = { affix = "Enchantment Chaos Modifier Effect and Sockets Are Linked", "6% increased Explicit Chaos Modifier magnitudes", "All Sockets Linked", statOrder = { 41, 71 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectNoRedSockets1___"] = { affix = "Enchantment Chaos Modifier Effect and No Red Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Red Sockets", statOrder = { 41, 66 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectNoBlueSockets1"] = { affix = "Enchantment Chaos Modifier Effect and No Blue Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Green Sockets", statOrder = { 41, 65 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectNoGreenSockets1"] = { affix = "Enchantment Chaos Modifier Effect and No Green Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has no Blue Sockets", statOrder = { 41, 64 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectWhiteSockets1"] = { affix = "Enchantment Chaos Modifier Effect and White Sockets", "8% increased Explicit Chaos Modifier magnitudes", "Has 1 White Socket", statOrder = { 41, 77 }, level = 20, group = "WeaponEnchantmentHeistChaosModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectSpeedEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Speed Modifier Effect", "6% increased Explicit Caster Damage Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 40, 52 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectCriticalEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Critical Modifier Effect", "6% increased Explicit Caster Damage Modifier magnitudes", "6% increased Explicit Critical Modifier magnitudes", statOrder = { 40, 43 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectAttributeEffect1"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 39, 40 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectAilmentEffect1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Caster Damage Modifier magnitudes", statOrder = { 38, 40 }, level = 70, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectAttributeRequirement1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Requirement", "6% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 40, 1075 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectSocketsAreLinked1"] = { affix = "Enchantment Caster Damage Modifier Effect and Sockets Are Linked", "6% increased Explicit Caster Damage Modifier magnitudes", "All Sockets Linked", statOrder = { 40, 71 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectNoRedSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and No Red Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Red Sockets", statOrder = { 40, 66 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectNoBlueSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and No Blue Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Green Sockets", statOrder = { 40, 65 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectNoGreenSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and No Green Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has no Blue Sockets", statOrder = { 40, 64 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectWhiteSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and White Sockets", "8% increased Explicit Caster Damage Modifier magnitudes", "Has 1 White Socket", statOrder = { 40, 77 }, level = 20, group = "WeaponEnchantmentHeistCasterDamageModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectSpeedEffect1"] = { affix = "Enchantment Mana Modifier Effect and Speed Modifier Effect", "6% increased Explicit Mana Modifier magnitudes", "6% increased Explicit Speed Modifier magnitudes", statOrder = { 49, 52 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectSpeedModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectCriticalEffect1"] = { affix = "Enchantment Mana Modifier Effect and Critical Modifier Effect", "6% increased Explicit Critical Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 43, 49 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectCriticalModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectAttributeEffect1_"] = { affix = "Enchantment Mana Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 39, 49 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectAilmentEffect1"] = { affix = "Enchantment Mana Modifier Effect and Ailment Modifier Effect", "6% increased Explicit Ailment Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 38, 49 }, level = 70, group = "WeaponEnchantmentHeistManaModifierEffectAilmentModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectAttributeRequirement1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirement", "6% increased Explicit Mana Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 49, 1075 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectSocketsAreLinked1"] = { affix = "Enchantment Mana Modifier Effect and Sockets Are Linked", "6% increased Explicit Mana Modifier magnitudes", "All Sockets Linked", statOrder = { 49, 71 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectNoRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Red Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Red Sockets", statOrder = { 49, 66 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectNoBlueSockets1__"] = { affix = "Enchantment Mana Modifier Effect and No Blue Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Green Sockets", statOrder = { 49, 65 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectNoGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Green Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Blue Sockets", statOrder = { 49, 64 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectWhiteSockets1"] = { affix = "Enchantment Mana Modifier Effect and White Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has 1 White Socket", statOrder = { 49, 77 }, level = 20, group = "WeaponEnchantmentHeistManaModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectAttributeRequirement1__"] = { affix = "Enchantment Speed Modifier Effect and Attribute Requirement", "6% increased Explicit Speed Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 52, 1075 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectSocketsAreLinked1__"] = { affix = "Enchantment Speed Modifier Effect and Sockets Are Linked", "6% increased Explicit Speed Modifier magnitudes", "All Sockets Linked", statOrder = { 52, 71 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectNoRedSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Red Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Red Sockets", statOrder = { 52, 66 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectNoBlueSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Blue Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Green Sockets", statOrder = { 52, 65 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectNoGreenSockets1"] = { affix = "Enchantment Speed Modifier Effect and No Green Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has no Blue Sockets", statOrder = { 52, 64 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectWhiteSockets1_"] = { affix = "Enchantment Speed Modifier Effect and White Sockets", "8% increased Explicit Speed Modifier magnitudes", "Has 1 White Socket", statOrder = { 52, 77 }, level = 20, group = "WeaponEnchantmentHeistSpeedModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectAttributeRequirement1_"] = { affix = "Enchantment Critical Modifier Effect and Attribute Requirement", "6% increased Explicit Critical Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 43, 1075 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectSocketsAreLinked1"] = { affix = "Enchantment Critical Modifier Effect and Sockets Are Linked", "6% increased Explicit Critical Modifier magnitudes", "All Sockets Linked", statOrder = { 43, 71 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectNoRedSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Red Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Red Sockets", statOrder = { 43, 66 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectNoBlueSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Blue Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Green Sockets", statOrder = { 43, 65 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectNoGreenSockets1"] = { affix = "Enchantment Critical Modifier Effect and No Green Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has no Blue Sockets", statOrder = { 43, 64 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectWhiteSockets1_"] = { affix = "Enchantment Critical Modifier Effect and White Sockets", "8% increased Explicit Critical Modifier magnitudes", "Has 1 White Socket", statOrder = { 43, 77 }, level = 30, group = "WeaponEnchantmentHeistCriticalModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectAttributeRequirement1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirement", "6% increased Explicit Attribute Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 39, 1075 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectSocketsAreLinked1_"] = { affix = "Enchantment Attribute Modifier Effect and Sockets Are Linked", "6% increased Explicit Attribute Modifier magnitudes", "All Sockets Linked", statOrder = { 39, 71 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectNoRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Red Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Red Sockets", statOrder = { 39, 66 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectNoBlueSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and No Blue Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Green Sockets", statOrder = { 39, 65 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectNoGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Green Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Blue Sockets", statOrder = { 39, 64 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectWhiteSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and White Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has 1 White Socket", statOrder = { 39, 77 }, level = 20, group = "WeaponEnchantmentHeistAttributeModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffectAttributeRequirement1_"] = { affix = "Enchantment Ailment Modifier Effect and Attribute Requirement", "6% increased Explicit Ailment Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 38, 1075 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectAttributeRequirement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffectSocketsAreLinked1"] = { affix = "Enchantment Ailment Modifier Effect and Sockets Are Linked", "6% increased Explicit Ailment Modifier magnitudes", "All Sockets Linked", statOrder = { 38, 71 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffectNoRedSockets1_"] = { affix = "Enchantment Ailment Modifier Effect and No Red Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Red Sockets", statOrder = { 38, 66 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffectNoBlueSockets1__"] = { affix = "Enchantment Ailment Modifier Effect and No Blue Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Green Sockets", statOrder = { 38, 65 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffectNoGreenSockets1"] = { affix = "Enchantment Ailment Modifier Effect and No Green Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has no Blue Sockets", statOrder = { 38, 64 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffectWhiteSockets1"] = { affix = "Enchantment Ailment Modifier Effect and White Sockets", "8% increased Explicit Ailment Modifier magnitudes", "Has 1 White Socket", statOrder = { 38, 77 }, level = 20, group = "WeaponEnchantmentHeistAilmentModifierEffectWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectSpeedEffectPenalty1___"] = { affix = "Enchantment Physical Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Physical Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 50, 52 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectCriticalEffectPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Physical Modifier magnitudes", statOrder = { 43, 50 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectSocketPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Socket Penalty", "15% increased Explicit Physical Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 50, 78 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Physical Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Physical Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 50, 1075 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectOnlyRedSockets1"] = { affix = "Enchantment Physical Modifier Effect and Only Red Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Red", statOrder = { 50, 75 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectOnlyBlueSockets1_"] = { affix = "Enchantment Physical Modifier Effect and Only Blue Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Blue", statOrder = { 50, 73 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistPhysicalEffectOnlyGreenSockets1"] = { affix = "Enchantment Physical Modifier Effect and Only Green Sockets", "10% increased Explicit Physical Modifier magnitudes", "All Sockets are Green", statOrder = { 50, 74 }, level = 69, group = "WeaponEnchantmentHeistPhysicalModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectSpeedEffectPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Fire Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 46, 52 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectCriticalEffectPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Fire Modifier magnitudes", statOrder = { 43, 46 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectSocketPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Socket Penalty", "15% increased Explicit Fire Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 46, 78 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Fire Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Fire Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 46, 1075 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectOnlyRedSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Red Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Red", statOrder = { 46, 75 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectOnlyBlueSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Blue Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Blue", statOrder = { 46, 73 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistFireEffectOnlyGreenSockets1"] = { affix = "Enchantment Fire Modifier Effect and Only Green Sockets", "10% increased Explicit Fire Modifier magnitudes", "All Sockets are Green", statOrder = { 46, 74 }, level = 69, group = "WeaponEnchantmentHeistFireModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectSpeedEffectPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Lightning Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 48, 52 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectCriticalEffectPenalty1_"] = { affix = "Enchantment Lightning Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Lightning Modifier magnitudes", statOrder = { 43, 48 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectSocketPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Socket Penalty", "15% increased Explicit Lightning Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 48, 78 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Lightning Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Lightning Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 48, 1075 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectOnlyRedSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Red Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Red", statOrder = { 48, 75 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectOnlyBlueSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Blue Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Blue", statOrder = { 48, 73 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistLightningEffectOnlyGreenSockets1"] = { affix = "Enchantment Lightning Modifier Effect and Only Green Sockets", "10% increased Explicit Lightning Modifier magnitudes", "All Sockets are Green", statOrder = { 48, 74 }, level = 69, group = "WeaponEnchantmentHeistLightningModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectSpeedEffectPenalty1"] = { affix = "Enchantment Cold Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Cold Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 42, 52 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectCriticalEffectPenalty1"] = { affix = "Enchantment Cold Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Cold Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 42, 43 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectSocketPenalty1_"] = { affix = "Enchantment Cold Modifier Effect and Socket Penalty", "15% increased Explicit Cold Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 42, 78 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectAttributeRequirementPenalty1_"] = { affix = "Enchantment Cold Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Cold Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 42, 1075 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectOnlyRedSockets1_"] = { affix = "Enchantment Cold Modifier Effect and Only Red Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Red", statOrder = { 42, 75 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectOnlyBlueSockets1_"] = { affix = "Enchantment Cold Modifier Effect and Only Blue Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Blue", statOrder = { 42, 73 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistColdEffectOnlyGreenSockets1__"] = { affix = "Enchantment Cold Modifier Effect and Only Green Sockets", "10% increased Explicit Cold Modifier magnitudes", "All Sockets are Green", statOrder = { 42, 74 }, level = 69, group = "WeaponEnchantmentHeistColdModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectSpeedEffectPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Chaos Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 41, 52 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectCriticalEffectPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Chaos Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 41, 43 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectSocketPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Socket Penalty", "15% increased Explicit Chaos Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 41, 78 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Chaos Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Chaos Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 41, 1075 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectOnlyRedSockets1"] = { affix = "Enchantment Chaos Modifier Effect and Only Red Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Red", statOrder = { 41, 75 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectOnlyBlueSockets1"] = { affix = "Enchantment Chaos Modifier Effect and Only Blue Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Blue", statOrder = { 41, 73 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistChaosEffectOnlyGreenSockets1___"] = { affix = "Enchantment Chaos Modifier Effect and Only Green Sockets", "10% increased Explicit Chaos Modifier magnitudes", "All Sockets are Green", statOrder = { 41, 74 }, level = 69, group = "WeaponEnchantmentHeistChaosModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectSpeedEffectPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 40, 52 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectCriticalEffectPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Critical Modifier Effect Penalty", "10% increased Explicit Caster Damage Modifier magnitudes", "25% reduced Explicit Critical Modifier magnitudes", statOrder = { 40, 43 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectSocketPenalty1__"] = { affix = "Enchantment Caster Damage Modifier Effect and Socket Penalty", "15% increased Explicit Caster Damage Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 40, 78 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Caster Damage Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Caster Damage Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 40, 1075 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectOnlyRedSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Red Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Red", statOrder = { 40, 75 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectOnlyBlueSockets1_"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Blue Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Blue", statOrder = { 40, 73 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCasterDamageEffectOnlyGreenSockets1"] = { affix = "Enchantment Caster Damage Modifier Effect and Only Green Sockets", "10% increased Explicit Caster Damage Modifier magnitudes", "All Sockets are Green", statOrder = { 40, 74 }, level = 69, group = "WeaponEnchantmentHeistCasterDamageModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectSpeedEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Speed Modifier Effect Penalty", "10% increased Explicit Mana Modifier magnitudes", "25% reduced Explicit Speed Modifier magnitudes", statOrder = { 49, 52 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectSpeedModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectCriticalEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Critical Modifier Effect Penalty", "25% reduced Explicit Critical Modifier magnitudes", "10% increased Explicit Mana Modifier magnitudes", statOrder = { 43, 49 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectCriticalModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectSocketPenalty1_"] = { affix = "Enchantment Mana Modifier Effect and Socket Penalty", "15% increased Explicit Mana Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 49, 78 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectAttributeRequirementPenalty1__"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Mana Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 49, 1075 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectOnlyRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Red Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Red", statOrder = { 49, 75 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectOnlyBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Blue Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Blue", statOrder = { 49, 73 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistManaEffectOnlyGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Green Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Green", statOrder = { 49, 74 }, level = 69, group = "WeaponEnchantmentHeistManaModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectDamageEffectPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Damage Modifier Effect Penalty", "25% reduced Explicit Damage Modifier magnitudes", "12% increased Explicit Speed Modifier magnitudes", statOrder = { 44, 52 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectSocketPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Socket Penalty", "15% increased Explicit Speed Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 52, 78 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Speed Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Speed Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 52, 1075 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectOnlyRedSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Red Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Red", statOrder = { 52, 75 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectOnlyBlueSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Blue Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Blue", statOrder = { 52, 73 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistSpeedEffectOnlyGreenSockets1"] = { affix = "Enchantment Speed Modifier Effect and Only Green Sockets", "10% increased Explicit Speed Modifier magnitudes", "All Sockets are Green", statOrder = { 52, 74 }, level = 74, group = "WeaponEnchantmentHeistSpeedModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectDamageEffectPenalty1"] = { affix = "Enchantment Critical Modifier Effect and Damage Modifier Effect Penalty", "12% increased Explicit Critical Modifier magnitudes", "25% reduced Explicit Damage Modifier magnitudes", statOrder = { 43, 44 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectSocketPenalty1___"] = { affix = "Enchantment Critical Modifier Effect and Socket Penalty", "15% increased Explicit Critical Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 43, 78 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Critical Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Critical Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 43, 1075 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectOnlyRedSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Red Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Red", statOrder = { 43, 75 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectOnlyBlueSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Blue Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Blue", statOrder = { 43, 73 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistCriticalEffectOnlyGreenSockets1"] = { affix = "Enchantment Critical Modifier Effect and Only Green Sockets", "10% increased Explicit Critical Modifier magnitudes", "All Sockets are Green", statOrder = { 43, 74 }, level = 78, group = "WeaponEnchantmentHeistCriticalModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectDamageEffectPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Damage Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "25% reduced Explicit Damage Modifier magnitudes", statOrder = { 39, 44 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectDamageModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectSocketPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Socket Penalty", "15% increased Explicit Attribute Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 39, 78 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Attribute Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 39, 1075 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectOnlyRedSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and Only Red Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Red", statOrder = { 39, 75 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectOnlyBlueSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Blue Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Blue", statOrder = { 39, 73 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAttributeEffectOnlyGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Green Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Green", statOrder = { 39, 74 }, level = 69, group = "WeaponEnchantmentHeistAttributeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffectSocketPenalty1__"] = { affix = "Enchantment Ailment Modifier Effect and Socket Penalty", "15% increased Explicit Ailment Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 38, 78 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffectAttributeRequirementPenalty1"] = { affix = "Enchantment Ailment Modifier Effect and Attribute Requirement Penalty", "15% increased Explicit Ailment Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 38, 1075 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectAttributeRequirementPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffectOnlyRedSockets1"] = { affix = "Enchantment Ailment Modifier Effect and Only Red Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Red", statOrder = { 38, 75 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffectOnlyBlueSockets1__"] = { affix = "Enchantment Ailment Modifier Effect and Only Blue Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Blue", statOrder = { 38, 73 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAilmentEffectOnlyGreenSockets1"] = { affix = "Enchantment Ailment Modifier Effect and Only Green Sockets", "10% increased Explicit Ailment Modifier magnitudes", "All Sockets are Green", statOrder = { 38, 74 }, level = 69, group = "WeaponEnchantmentHeistAilmentModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WeaponEnchantmentHeistAdditionalCraftingModifier1_"] = { affix = "Enchantment Additional Crafted Modifier", "Can have 1 additional Crafted Modifier", statOrder = { 27 }, level = 80, group = "WeaponEnchantmentHeistAdditionalCraftingModifier", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DischargeThresholdJewel__1"] = { affix = "", "With at least 40 Intelligence in Radius, Discharge has 60% less Area of Effect", "With at least 40 Intelligence in Radius, Discharge Cooldown is 250 ms", "With at least 40 Intelligence in Radius, Discharge deals 60% less Damage", statOrder = { 8051, 8052, 8053 }, level = 1, group = "DischargeThresholdJewel1", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["DisplaySupportedByUnleashUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 18 Unleash", statOrder = { 396 }, level = 1, group = "DisplaySupportedByUnleash", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["CanHaveEveryInfluenceTypeImplicitE1"] = { affix = "", "Implicit Modifiers Cannot Be Changed", "Has Elder, Shaper and all Conqueror Influences", statOrder = { 21, 7949 }, level = 87, group = "HasEveryInfluenceType", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffect1"] = { affix = "Enchantment Life Modifier Effect", "8% increased Explicit Life Modifier magnitudes", statOrder = { 47 }, level = 1, group = "ArmourEnchantmentHeistLifeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffect1"] = { affix = "Enchantment Defence Modifier Effect", "8% increased Explicit Defence Modifier magnitudes", statOrder = { 45 }, level = 1, group = "ArmourEnchantmentHeistDefenceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffect1"] = { affix = "Enchantment Mana Modifier Effect", "8% increased Explicit Mana Modifier magnitudes", statOrder = { 49 }, level = 1, group = "ArmourEnchantmentHeistManaModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffect1__"] = { affix = "Enchantment Resistance Modifier Effect", "8% increased Explicit Resistance Modifier magnitudes", statOrder = { 51 }, level = 1, group = "ArmourEnchantmentHeistResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffect1"] = { affix = "Enchantment Attribute Modifier Effect", "8% increased Explicit Attribute Modifier magnitudes", statOrder = { 39 }, level = 1, group = "ArmourEnchantmentHeistAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeRequirements1"] = { affix = "Enchantment Attribute Requirements", "40% reduced Attribute Requirements", statOrder = { 1075 }, level = 1, group = "ArmourEnchantmentHeistAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistSocketsAreLinked1"] = { affix = "Enchantment Sockets Are Linked", "All Sockets Linked", statOrder = { 71 }, level = 1, group = "ArmourEnchantmentHeistSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistWhiteSockets1__"] = { affix = "Enchantment White Sockets", "Has 2 White Sockets", statOrder = { 77 }, level = 1, group = "ArmourEnchantmentHeistWhiteSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectResistanceEffect1__"] = { affix = "Enchantment Life Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Life Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 47, 51 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectAttributeEffect1_"] = { affix = "Enchantment Life Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Life Modifier magnitudes", statOrder = { 39, 47 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectAttributeRequirements1"] = { affix = "Enchantment Life Modifier Effect and Attribute Requirements", "6% increased Explicit Life Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 47, 1075 }, level = 20, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectSocketsAreLinked1_"] = { affix = "Enchantment Life Modifier Effect and Sockets Are Linked", "6% increased Explicit Life Modifier magnitudes", "All Sockets Linked", statOrder = { 47, 71 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectNoRedSockets1"] = { affix = "Enchantment Life Modifier Effect and No Red Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Red Sockets", statOrder = { 47, 66 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectNoBlueSockets1"] = { affix = "Enchantment Life Modifier Effect and No Blue Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Green Sockets", statOrder = { 47, 65 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectNoGreenSockets1__"] = { affix = "Enchantment Life Modifier Effect and No Green Sockets", "8% increased Explicit Life Modifier magnitudes", "Has no Blue Sockets", statOrder = { 47, 64 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectWhiteSocket1_"] = { affix = "Enchantment Life Modifier Effect and White Socket", "8% increased Explicit Life Modifier magnitudes", "Has 1 White Socket", statOrder = { 47, 77 }, level = 30, group = "ArmourEnchantmentHeistLifeModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectResistanceEffect1"] = { affix = "Enchantment Defence Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Defence Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 45, 51 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectAttributeEffect1"] = { affix = "Enchantment Defence Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Defence Modifier magnitudes", statOrder = { 39, 45 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectAttributeRequirements1"] = { affix = "Enchantment Defence Modifier Effect and Attribute Requirements", "6% increased Explicit Defence Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 45, 1075 }, level = 20, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectSocketsAreLinked1"] = { affix = "Enchantment Defence Modifier Effect and Sockets Are Linked", "6% increased Explicit Defence Modifier magnitudes", "All Sockets Linked", statOrder = { 45, 71 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectNoRedSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Red Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Red Sockets", statOrder = { 45, 66 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectNoBlueSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Blue Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Green Sockets", statOrder = { 45, 65 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectNoGreenSockets1"] = { affix = "Enchantment Defence Modifier Effect and No Green Sockets", "8% increased Explicit Defence Modifier magnitudes", "Has no Blue Sockets", statOrder = { 45, 64 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectWhiteSocket1"] = { affix = "Enchantment Defence Modifier Effect and White Socket", "8% increased Explicit Defence Modifier magnitudes", "Has 1 White Socket", statOrder = { 45, 77 }, level = 30, group = "ArmourEnchantmentHeistDefenceModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectResistanceEffect1"] = { affix = "Enchantment Mana Modifier Effect and Resistance Modifier Effect", "6% increased Explicit Mana Modifier magnitudes", "6% increased Explicit Resistance Modifier magnitudes", statOrder = { 49, 51 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectResistanceModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectAttributeEffect1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Modifier Effect", "6% increased Explicit Attribute Modifier magnitudes", "6% increased Explicit Mana Modifier magnitudes", statOrder = { 39, 49 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectAttributeModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectAttributeRequirements1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirements", "6% increased Explicit Mana Modifier magnitudes", "25% reduced Attribute Requirements", statOrder = { 49, 1075 }, level = 70, group = "ArmourEnchantmentHeistManaModifierEffectAttributeRequirements", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectSocketsAreLinked1"] = { affix = "Enchantment Mana Modifier Effect and Sockets Are Linked", "6% increased Explicit Mana Modifier magnitudes", "All Sockets Linked", statOrder = { 49, 71 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectNoRedSockets1_"] = { affix = "Enchantment Mana Modifier Effect and No Red Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Red Sockets", statOrder = { 49, 66 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectNoBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Blue Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Green Sockets", statOrder = { 49, 65 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectNoGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and No Green Sockets", "8% increased Explicit Mana Modifier magnitudes", "Has no Blue Sockets", statOrder = { 49, 64 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectWhiteSocket1_"] = { affix = "Enchantment Mana Modifier Effect and White Socket", "8% increased Explicit Mana Modifier magnitudes", "Has 1 White Socket", statOrder = { 49, 77 }, level = 30, group = "ArmourEnchantmentHeistManaModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectSocketsAreLinked1_"] = { affix = "Enchantment Resistance Modifier Effect and Sockets Are Linked", "6% increased Explicit Resistance Modifier magnitudes", "All Sockets Linked", statOrder = { 51, 71 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectNoRedSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Red Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Red Sockets", statOrder = { 51, 66 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectNoBlueSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Blue Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Green Sockets", statOrder = { 51, 65 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectNoGreenSockets1"] = { affix = "Enchantment Resistance Modifier Effect and No Green Sockets", "8% increased Explicit Resistance Modifier magnitudes", "Has no Blue Sockets", statOrder = { 51, 64 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectWhiteSocket1"] = { affix = "Enchantment Resistance Modifier Effect and White Socket", "8% increased Explicit Resistance Modifier magnitudes", "Has 1 White Socket", statOrder = { 51, 77 }, level = 30, group = "ArmourEnchantmentHeistResistanceModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectSocketsAreLinked1"] = { affix = "Enchantment Attribute Modifier Effect and Sockets Are Linked", "6% increased Explicit Attribute Modifier magnitudes", "All Sockets Linked", statOrder = { 39, 71 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectSocketsAreLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectNoRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Red Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Red Sockets", statOrder = { 39, 66 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectNoBlueSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Blue Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Green Sockets", statOrder = { 39, 65 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectNoGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and No Green Sockets", "8% increased Explicit Attribute Modifier magnitudes", "Has no Blue Sockets", statOrder = { 39, 64 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectNoGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectWhiteSocket1_"] = { affix = "Enchantment Attribute Modifier Effect and White Socket", "8% increased Explicit Attribute Modifier magnitudes", "Has 1 White Socket", statOrder = { 39, 77 }, level = 30, group = "ArmourEnchantmentHeistAttributeModifierEffectWhiteSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectResistanceEffectPenalty1"] = { affix = "Enchantment Life Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Life Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 47, 51 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectSocketPenalty1"] = { affix = "Enchantment Life Modifier Effect and Socket Penalty", "15% increased Explicit Life Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 47, 78 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectAttributeRequirementsPenalty1_"] = { affix = "Enchantment Life Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Life Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 47, 1075 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectOnlyRedSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Red Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Red", statOrder = { 47, 75 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectOnlyBlueSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Blue Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Blue", statOrder = { 47, 73 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistLifeEffectOnlyGreenSockets1"] = { affix = "Enchantment Life Modifier Effect and Only Green Sockets", "10% increased Explicit Life Modifier magnitudes", "All Sockets are Green", statOrder = { 47, 74 }, level = 69, group = "ArmourEnchantmentHeistLifeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectResistanceEffectPenalty1"] = { affix = "Enchantment Defence Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Defence Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 45, 51 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectSocketPenalty1"] = { affix = "Enchantment Defence Modifier Effect and Socket Penalty", "15% increased Explicit Defence Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 45, 78 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectAttributeRequirementsPenalty1_"] = { affix = "Enchantment Defence Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Defence Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 45, 1075 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectOnlyRedSockets1___"] = { affix = "Enchantment Defence Modifier Effect and Only Red Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Red", statOrder = { 45, 75 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectOnlyBlueSockets1"] = { affix = "Enchantment Defence Modifier Effect and Only Blue Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Blue", statOrder = { 45, 73 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistDefenceEffectOnlyGreenSockets1"] = { affix = "Enchantment Defence Modifier Effect and Only Green Sockets", "10% increased Explicit Defence Modifier magnitudes", "All Sockets are Green", statOrder = { 45, 74 }, level = 69, group = "ArmourEnchantmentHeistDefenceModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectResistanceEffectPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Resistance Modifier Effect Penalty", "12% increased Explicit Mana Modifier magnitudes", "50% reduced Explicit Resistance Modifier magnitudes", statOrder = { 49, 51 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectResistanceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectSocketPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Socket Penalty", "15% increased Explicit Mana Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 49, 78 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Mana Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Mana Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 49, 1075 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectOnlyRedSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Red Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Red", statOrder = { 49, 75 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectOnlyBlueSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Blue Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Blue", statOrder = { 49, 73 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistManaEffectOnlyGreenSockets1"] = { affix = "Enchantment Mana Modifier Effect and Only Green Sockets", "10% increased Explicit Mana Modifier magnitudes", "All Sockets are Green", statOrder = { 49, 74 }, level = 69, group = "ArmourEnchantmentHeistManaModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectLifeEffectPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Life Modifier Effect Penalty", "50% reduced Explicit Life Modifier magnitudes", "12% increased Explicit Resistance Modifier magnitudes", statOrder = { 47, 51 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectLifeModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectDefenceEffectPenalty1__"] = { affix = "Enchantment Resistance Modifier Effect and Defence Modifier Effect Penalty", "50% reduced Explicit Defence Modifier magnitudes", "12% increased Explicit Resistance Modifier magnitudes", statOrder = { 45, 51 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectDefenceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectSocketPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Socket Penalty", "15% increased Explicit Resistance Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 51, 78 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Resistance Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Resistance Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 51, 1075 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectOnlyRedSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Red Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Red", statOrder = { 51, 75 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectOnlyBlueSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Blue Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Blue", statOrder = { 51, 73 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistResistanceEffectOnlyGreenSockets1"] = { affix = "Enchantment Resistance Modifier Effect and Only Green Sockets", "10% increased Explicit Resistance Modifier magnitudes", "All Sockets are Green", statOrder = { 51, 74 }, level = 69, group = "ArmourEnchantmentHeistResistanceModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectLifeEffectPenalty1_"] = { affix = "Enchantment Attribute Modifier Effect and Life Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "50% reduced Explicit Life Modifier magnitudes", statOrder = { 39, 47 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectLifeModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectDefenceEffectPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Defence Modifier Effect Penalty", "12% increased Explicit Attribute Modifier magnitudes", "50% reduced Explicit Defence Modifier magnitudes", statOrder = { 39, 45 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectDefenceModifierEffectPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectSocketPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Socket Penalty", "15% increased Explicit Attribute Modifier magnitudes", "-3 to maximum Sockets", statOrder = { 39, 78 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectSocketPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectAttributeRequirementsPenalty1"] = { affix = "Enchantment Attribute Modifier Effect and Attribute Requirements Penalty", "15% increased Explicit Attribute Modifier magnitudes", "200% increased Attribute Requirements", statOrder = { 39, 1075 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectAttributeRequirementsPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectOnlyRedSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Red Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Red", statOrder = { 39, 75 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyRedSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectOnlyBlueSockets1_"] = { affix = "Enchantment Attribute Modifier Effect and Only Blue Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Blue", statOrder = { 39, 73 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyBlueSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAttributeEffectOnlyGreenSockets1"] = { affix = "Enchantment Attribute Modifier Effect and Only Green Sockets", "10% increased Explicit Attribute Modifier magnitudes", "All Sockets are Green", statOrder = { 39, 74 }, level = 69, group = "ArmourEnchantmentHeistAttributeModifierEffectOnlyGreenSockets", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourEnchantmentHeistAdditionalCraftingModifier1"] = { affix = "Enchantment Additional Crafting Modifier", "Can have 1 additional Crafted Modifier", statOrder = { 27 }, level = 80, group = "ArmourEnchantmentHeistAdditionalCraftingModifier", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WarcriesExertAnAdditionalAttackImplicitE1_"] = { affix = "", "Warcries Exert 1 additional Attack", statOrder = { 10570 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WarcriesExertAnAdditionalAttackImplicitE2"] = { affix = "", "Warcries Exert 2 additional Attacks", statOrder = { 10570 }, level = 1, group = "WarcriesExertAnAdditionalAttack", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueSecretBladeGrantHiddenBlade"] = { affix = "", "Trigger Level 20 Unseen Strike every 0.5 seconds while Phasing", statOrder = { 780 }, level = 1, group = "GrantHiddenBladeSkillUnique", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["LifeRecoveryRateUnique__1"] = { affix = "", "(20-25)% increased Life Regeneration rate", statOrder = { 1577 }, level = 1, group = "LifeRegenerationRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["EnergyShieldRegenerationWhileShockedUnique__1"] = { affix = "", "Regenerate 5% of Energy Shield per second while Shocked", statOrder = { 3025 }, level = 1, group = "EnergyShieldRegenerationWhileShocked", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["StrUniqueShieldTriggerShieldShatterOnBlock"] = { affix = "", "Trigger Level 20 Shield Shatter when you Block", statOrder = { 804 }, level = 1, group = "UniqueTriggerShieldShatter", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["UniqueStaffTriggerAtziriStormCall__1____"] = { affix = "", "Queen's Demand can Trigger Level 20 Storm of Judgement", statOrder = { 800 }, level = 1, group = "UniqueTriggerAtziriStormCall", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["UniqueStaffTriggerAtziriStormFlameblast__1"] = { affix = "", "Queen's Demand can Trigger Level 20 Flames of Judgement", statOrder = { 799 }, level = 1, group = "UniqueTriggerAtziriFlameBlast", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["UniqueStaffGrantQueensDemand___"] = { affix = "", "Grants Level 20 Queen's Demand Skill", statOrder = { 750 }, level = 1, group = "UniqueStaffGrantQueensDemand", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["UniqueWandGrantsBloodSacrament__1"] = { affix = "", "Grants Level 1 Blood Sacrament Skill", statOrder = { 642 }, level = 1, group = "UniqueGrantBloodSacrament", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ImmuneToChillUnique__1"] = { affix = "", "Immune to Chill", statOrder = { 2894 }, level = 1, group = "ImmuneToChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ImmuneToChillUnique__2__"] = { affix = "", "Immune to Chill", statOrder = { 2894 }, level = 1, group = "ImmuneToChill", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ColdDamageCannotFreeze"] = { affix = "", "Your Cold Damage cannot Freeze", statOrder = { 2885 }, level = 1, group = "ColdDamageCannotFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["FasterIgniteDamageUnique__1"] = { affix = "", "Ignites you inflict deal Damage (35-45)% faster", statOrder = { 2564 }, level = 20, group = "FasterIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["MaximumLifeLeechRateUnique__1"] = { affix = "", "40% increased Maximum total Life Recovery per second from Leech", statOrder = { 1731 }, level = 80, group = "MaximumLifeLeechRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["FleshAndStoneManaReservationUnique__1_"] = { affix = "", "Flesh and Stone has no Reservation", statOrder = { 6651 }, level = 1, group = "FleshAndStoneNoReservation", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KeystoneHollowPalmTechniqueUnique__1"] = { affix = "", "Hollow Palm Technique", statOrder = { 10791 }, level = 1, group = "KeystoneHollowPalmTechnique", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack", "speed" }, }, + ["ElusiveEffectUnique__1"] = { affix = "", "(10-30)% increased Elusive Effect", statOrder = { 6349 }, level = 1, group = "ElusiveEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MovementSpeedIfHitRecentlyUnique__1_"] = { affix = "", "10% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["GrantsWintertideBrandUnique__1"] = { affix = "", "Grants Level 25 Wintertide Brand Skill", statOrder = { 683 }, level = 1, group = "GrantsWintertideBrand", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["WintertideBrandChillEffectUnique__1_"] = { affix = "", "Wintertide Brand has (20-30)% increased Chill Effect", statOrder = { 10618 }, level = 1, group = "WintertideBrandChillEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToAvoidPoisonUnique__1"] = { affix = "", "25% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["PhysicalDamageCanFreezeUnique__1_"] = { affix = "", "Your Physical Damage can Freeze", statOrder = { 2880 }, level = 1, group = "PhysicalDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "elemental", "cold", "ailment" }, }, + ["ElusiveOnCriticalStrikeUnique__1"] = { affix = "", "Gain Elusive on Critical Strike", statOrder = { 4281 }, level = 1, group = "ElusiveOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SupportedByArrowNovaUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Arrow Nova", statOrder = { 361 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["CriticalStrikeChanceAgainstBleedingEnemiesUnique__1"] = { affix = "", "(100-150)% increased Critical Strike Chance against Bleeding Enemies", statOrder = { 3190 }, level = 1, group = "CriticalStrikeChanceAgainstBleedingEnemies", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["DealNoColdDamageUnique__1"] = { affix = "", "Deal no Cold Damage", statOrder = { 2792 }, level = 1, group = "DealNoColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["OneHandedMeleeCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(60-100)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrder = { 1501 }, level = 1, group = "OneHandedMeleeCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["PhysicalDamageTakenAsChaosUnique__1"] = { affix = "", "10% of Physical Damage from Hits taken as Chaos Damage", statOrder = { 2451 }, level = 1, group = "PhysicalDamageTakenAsChaosUber", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, }, + ["ChanceToBeFrozenShockedIgnitedUnique__1"] = { affix = "", "+10% chance to be Frozen, Shocked and Ignited", statOrder = { 2950 }, level = 1, group = "ChanceToBeFrozenShockedIgnited", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["CallOfSteelAreaOfEffectUnique__1"] = { affix = "", "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect", statOrder = { 10229 }, level = 1, group = "CallOfSteelAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CallOfSteelAreaOfEffectUnique__2___"] = { affix = "", "Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect", statOrder = { 10229 }, level = 1, group = "CallOfSteelAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CallOfSteelReflectDamageUnique__1"] = { affix = "", "Call of Steel causes (20-25)% increased Reflected Damage", statOrder = { 10231 }, level = 1, group = "CallOfSteelReflectDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CallOfSteelReflectDamageUnique__2"] = { affix = "", "Call of Steel causes (20-25)% increased Reflected Damage", statOrder = { 10231 }, level = 1, group = "CallOfSteelReflectDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CallOfSteelUseSpeedUnique__1"] = { affix = "", "Call of Steel has (80-100)% increased Use Speed", statOrder = { 10230 }, level = 1, group = "CallOfSteelUseSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CallOfSteelUseSpeedUnique__2"] = { affix = "", "Call of Steel has (80-100)% increased Use Speed", statOrder = { 10230 }, level = 1, group = "CallOfSteelUseSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SecretsOfSufferingKeystoneSceptreImplicit1"] = { affix = "", "Secrets of Suffering", statOrder = { 10811 }, level = 1, group = "SecretsOfSufferingKeystone", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ManaCostTotalNonChannelledUnique__1__"] = { affix = "", "Non-Channelling Skills have -9 to Total Mana Cost", statOrder = { 10062 }, level = 1, group = "ManaCostTotalNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["TriggerFlameDashOnSocketedSkillUseImplicitE1"] = { affix = "", "Trigger Level 10 Flame Dash when you use a Socketed Skill", statOrder = { 809 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TriggerFlameDashOnSocketedSkillUseImplicitE2"] = { affix = "", "Trigger Level 20 Flame Dash when you use a Socketed Skill", "20% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 809, 4381 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TriggerFlameDashOnSocketedSkillUseImplicitE3_"] = { affix = "", "Trigger Level 30 Flame Dash when you use a Socketed Skill", "40% increased Cooldown Recovery Rate of Travel Skills", statOrder = { 809, 4381 }, level = 1, group = "TriggerFlameDashOnSocketedSkillUse", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainRandomChargeEvery6SecondsImplicitE1"] = { affix = "", "Gain an Endurance, Frenzy or Power Charge every 6 seconds", statOrder = { 6706 }, level = 1, group = "GainRandomChargesEvery6Seconds", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainRandomChargeEvery6SecondsImplicitE2"] = { affix = "", "Gain 2 Endurance, Frenzy or Power Charges every 6 seconds", statOrder = { 6706 }, level = 1, group = "GainRandomChargesEvery6Seconds", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE1"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(66-80) to maximum Energy Shield", statOrder = { 584, 1558 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE2"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(100-120) to maximum Energy Shield", statOrder = { 584, 1558 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE3"] = { affix = "", "Spend Energy Shield before Mana for Costs of Socketed Skills", "+(140-165) to maximum Energy Shield", statOrder = { 584, 1558 }, level = 1, group = "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkills", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackCriticalStrikesIgnoreElementalResistancesImplicitE1"] = { affix = "", "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", statOrder = { 4846 }, level = 1, group = "AttackCriticalStrikesIgnoreElementalResistances", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalMaximumQualityImplicitE1"] = { affix = "", "+25% to Maximum Quality", statOrder = { 7996 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalMaximumQualityImplicitE2"] = { affix = "", "+25% to Maximum Quality", statOrder = { 7996 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalMaximumQualityImplicitE3"] = { affix = "", "+25% to Maximum Quality", statOrder = { 7996 }, level = 1, group = "LocalMaximumQuality", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalIgnorePhysReductionImplicitE1"] = { affix = "", "Hits with this Weapon have 30% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7939 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIgnorePhysReductionImplicitE2"] = { affix = "", "Hits with this Weapon have 50% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7939 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIgnorePhysReductionImplicitE3"] = { affix = "", "Hits with this Weapon ignore Enemy Physical Damage Reduction", statOrder = { 7939 }, level = 1, group = "LocalArmourPenetration", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalAugmentedQualityE1"] = { affix = "", "1% increased Attack Speed per 8% Quality", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 7858, 7881 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalAugmentedQualityE2"] = { affix = "", "2% increased Attack Speed per 8% Quality", "1% increased Critical Strike Chance per 4% Quality", statOrder = { 7858, 7881 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalAugmentedQualityE3"] = { affix = "", "2% increased Attack Speed per 8% Quality", "2% increased Critical Strike Chance per 4% Quality", statOrder = { 7858, 7881 }, level = 1, group = "LocalAugmentedQuality", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotUseFlaskInFifthSlotImplicitE1_"] = { affix = "", "Flasks applied to you have 30% increased Effect", "Can't use Flask in Fifth Slot", statOrder = { 2742, 5449 }, level = 30, group = "CannotUseFlaskInFifthSlotFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumPowerandEnduranceChargesImplicitE1"] = { affix = "", "+1 to Maximum Power Charges and Maximum Endurance Charges", statOrder = { 9177 }, level = 1, group = "MaximumPowerandEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonTauntingContraptionOnFlaskUseImplicitE1"] = { affix = "", "Trigger Level 20 Summon Taunting Contraption when you use a Flask", statOrder = { 820 }, level = 70, group = "SummonTauntingContraptionOnFlaskUse", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionChanceToMaimOnHitUnique__1_"] = { affix = "", "Minions have 5% chance to Maim Enemies on Hit with Attacks", statOrder = { 9315 }, level = 1, group = "MinionChanceToMaimOnHit", weightKey = { }, weightVal = { }, modTags = { "attack", "minion" }, }, + ["PhysicalDamagePercentAddedAsChaosPerElderItemUnique__1"] = { affix = "", "Gain (3-5)% of Physical Damage as Extra Chaos Damage per Elder Item Equipped", statOrder = { 6793 }, level = 1, group = "PhysicalDamagePercentAddedAsChaosPerElderItem", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["AddedChaosDamageToAttacksPer50StrengthUnique__1"] = { affix = "", "Adds 1 to 80 Chaos Damage to Attacks per 80 Strength", statOrder = { 9228 }, level = 1, group = "AddedChaosDamageToAttacksPer50Strength", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["CannotDealNonChaosDamageUnique__1_"] = { affix = "", "Cannot deal non-Chaos Damage", statOrder = { 6144 }, level = 1, group = "CannotDealNonChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["TravelSkillMoreDamageUnique__1"] = { affix = "", "Socketed Travel Skills deal 80% more Damage", statOrder = { 569 }, level = 1, group = "TravelSkillMoreDamage", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["DamageTakenWhilePhasingUnique__1"] = { affix = "", "10% increased Damage taken while Phasing", statOrder = { 6122 }, level = 1, group = "DamageTakenWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ProjectilesChainWhilePhasingUnique__1_"] = { affix = "", "Projectiles Chain +1 times while you have Phasing", statOrder = { 9517 }, level = 1, group = "ProjectilesChainWhilePhasing", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionPhysicalDamageAddedAsFireUnique__1"] = { affix = "", "Minions gain 20% of Physical Damage as Extra Fire Damage", statOrder = { 9325 }, level = 1, group = "MinionPhysicalDamageAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire", "minion" }, }, + ["ChaosDamageCanIgniteUnique__1"] = { affix = "", "Your Chaos Damage can Ignite", statOrder = { 5001 }, level = 1, group = "ChaosDamageCanIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "poison", "damage", "elemental", "fire", "chaos", "ailment" }, }, + ["ChanceToIgniteWithChaosSkillsUnique__1"] = { affix = "", "Chaos Skills have 20% chance to Ignite", statOrder = { 5755 }, level = 1, group = "ChanceToIgniteWithChaosSkills", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "fire", "chaos", "ailment" }, }, + ["UniqueVolkuursGuidanceIgniteDurationFinal"] = { affix = "", "50% less Ignite Duration", statOrder = { 10507 }, level = 1, group = "UniqueVolkuursGuidanceIgniteDurationFinal", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ManaRegenerationAuraUnique__1"] = { affix = "", "30% increased Mana Regeneration Rate", "You and nearby Allies have 30% increased Mana Regeneration Rate", statOrder = { 1584, 7899 }, level = 1, group = "ManaRegenerationAura", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AvoidPhysicalDamageWhilePhasingUnique__1"] = { affix = "", "+(8-15)% chance to Avoid Physical Damage from Hits while Phasing", statOrder = { 4949 }, level = 1, group = "AvoidPhysicalDamageWhilePhasing", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["GrantsAlliesFrenzyChargeOnKillUnique__1_"] = { affix = "", "10% chance to grant a Frenzy Charge to nearby Allies on Kill", statOrder = { 5703 }, level = 1, group = "GrantsAlliesFrenzyChargeOnKill", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["GrantsAlliesEnduranceChargeOnHitUnique__1"] = { affix = "", "5% chance to grant an Endurance Charge to nearby Allies on Hit", statOrder = { 5702 }, level = 1, group = "GrantsAlliesEnduranceChargeOnHit", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["ChanceToImpaleWithSpellsUnique__1"] = { affix = "", "20% chance to Impale on Spell Hit", statOrder = { 10192 }, level = 1, group = "ChanceToImpaleWithSpells", weightKey = { }, weightVal = { }, modTags = { "physical", "caster" }, }, + ["ImpaleEffectUnique__1"] = { affix = "", "20% increased Impale Effect", statOrder = { 7242 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["ImpaleEffectUnique__2"] = { affix = "", "5% increased Impale Effect", statOrder = { 7242 }, level = 1, group = "ImpaleEffect", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["AttackDamagePer450ArmourUnique__1__"] = { affix = "", "1% increased Attack Damage per 450 Armour", statOrder = { 4857 }, level = 1, group = "AttackDamagePer450Armour", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["ZombiesTakeFireDamagePerSecondUnique__1_"] = { affix = "", "Raised Zombies take (15-30)% of their Maximum Life per second as Fire Damage", statOrder = { 9820 }, level = 1, group = "ZombiesTakeFireDamagePerSecond", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["ZombiesHaveAvatarOfFireUnique__1"] = { affix = "", "Raised Zombies have Avatar of Fire", statOrder = { 9821 }, level = 1, group = "ZombiesHaveAvatarOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["ZombiesCoverInAshOnHitUnique__1"] = { affix = "", "Raised Zombies Cover Enemies in Ash on Hit", statOrder = { 9819 }, level = 1, group = "ZombiesCoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["LifeLeechPermyriadOnFrozenEnemiesUnique__1"] = { affix = "", "1% of Damage against Frozen Enemies Leeched as Life", statOrder = { 1691 }, level = 1, group = "LifeLeechPermyriadOnFrozenEnemies", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["EnduranceChargeIfAttackFreezesUnique__1"] = { affix = "", "Gain an Endurance Charge if an Attack Freezes an Enemy", statOrder = { 6745 }, level = 1, group = "EnduranceChargeIfAttackFreezes", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "elemental", "cold", "attack", "ailment" }, }, + ["PowerChargeOnHittingFrozenEnemyUnique__1"] = { affix = "", "50% chance to gain a Power Charge when you Hit a Frozen Enemy", statOrder = { 6805 }, level = 1, group = "PowerChargeOnHittingFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["TakeColdDamageOnMaximumPowerChargesUnique__1____"] = { affix = "", "Take 500 Cold Damage on reaching Maximum Power Charges", statOrder = { 9970 }, level = 1, group = "TakeColdDamageOnMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["MovementVelocityWhileChilledUnique__1_"] = { affix = "", "(10-20)% increased Movement Speed while Chilled", statOrder = { 9445 }, level = 1, group = "MovementVelocityWhileChilled", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["AttackSpeedWhileChilledUnique__1"] = { affix = "", "(10-20)% increased Attack Speed while Chilled", statOrder = { 4905 }, level = 1, group = "AttackSpeedWhileChilled", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["CastSpeedWhileChilledUnique__1"] = { affix = "", "(10-20)% increased Cast Speed while Chilled", statOrder = { 5472 }, level = 1, group = "CastSpeedWhileChilled", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["ReflectFireDamageOnBlockUnique__1___"] = { affix = "", "Reflects (22-44) Fire Damage to Attackers on Block", statOrder = { 6575 }, level = 1, group = "ReflectFireDamageOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "elemental_damage", "damage", "elemental", "fire" }, }, + ["DealNoDamageWhenNotOnLowLifeUnique__1"] = { affix = "", "Deal no Damage when not on Low Life", statOrder = { 6141 }, level = 1, group = "DealNoDamageWhenNotOnLowLife", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["TriggeredFieryImpactOnHitWithWeaponImplicitE1"] = { affix = "", "Trigger Level 10 Fiery Impact on Melee Hit with this Weapon", statOrder = { 808 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TriggeredFieryImpactOnHitWithWeaponImplicitE2_"] = { affix = "", "Trigger Level 15 Fiery Impact on Melee Hit with this Weapon", statOrder = { 808 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TriggeredFieryImpactOnHitWithWeaponImplicitE3"] = { affix = "", "Trigger Level 20 Fiery Impact on Melee Hit with this Weapon", statOrder = { 808 }, level = 1, group = "TriggeredFieryImpactOnHitWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaxPrefixMaxSuffixImplicitE1__"] = { affix = "", "-1 Prefix Modifier allowed", "+1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Suffix Modifier magnitudes", statOrder = { 15, 16, 21, 8030 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaxPrefixMaxSuffixImplicitE2_"] = { affix = "", "+1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Prefix Modifier magnitudes", statOrder = { 15, 16, 21, 8003 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaxPrefixMaxSuffixImplicitE3"] = { affix = "", "+3 Prefix Modifiers allowed", "-3 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", statOrder = { 15, 16, 21 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaxPrefixMaxSuffixImplicitE4"] = { affix = "", "+1 Prefix Modifier allowed", "-2 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", "50% increased Prefix Modifier magnitudes", statOrder = { 15, 16, 21, 8003 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaxPrefixMaxSuffixImplicitE5"] = { affix = "", "-3 Prefix Modifiers allowed", "+3 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", statOrder = { 15, 16, 21 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaxPrefixMaxSuffixImplicitE6"] = { affix = "", "-2 Prefix Modifiers allowed", "+1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "50% increased Suffix Modifier magnitudes", statOrder = { 15, 16, 21, 8030 }, level = 30, group = "MaxPrefixMaxSuffixImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReflectedDurationRingImplicitK1"] = { affix = "", "Left ring slot: 15% reduced Skill Effect Duration", "Right ring slot: 15% increased Skill Effect Duration", statOrder = { 2662, 2669 }, level = 30, group = "ReflectedDurationRingImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReflectedFireColdDamageTakenConversionImplicitK5a"] = { affix = "", "Left ring slot: 25% of Cold Damage from Hits taken as Fire Damage", "Right ring slot: 25% of Fire Damage from Hits taken as Cold Damage", statOrder = { 2655, 2666 }, level = 30, group = "ReflectedFireColdDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold" }, }, + ["ReflectedFireLightningDamageTakenConversionImplicitK5b"] = { affix = "", "Left ring slot: 25% of Fire Damage from Hits taken as Lightning Damage", "Right ring slot: 25% of Lightning Damage from Hits taken as Fire Damage", statOrder = { 2657, 2667 }, level = 30, group = "ReflectedFireLightningDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "lightning" }, }, + ["ReflectedColdLightningDamageTakenConversionImplicitK5c"] = { affix = "", "Left ring slot: 25% of Lightning Damage from Hits taken as Cold Damage", "Right ring slot: 25% of Cold Damage from Hits taken as Lightning Damage", statOrder = { 2658, 2664 }, level = 30, group = "ReflectedColdLightningDamageTakenConversion", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "lightning" }, }, + ["ReflectedCurseEffectOnSelfImplicitK2"] = { affix = "", "Left ring slot: 30% reduced Effect of Curses on you", "Right ring slot: 30% increased Effect of Curses on you", statOrder = { 2656, 2665 }, level = 30, group = "ReflectedCurseEffectOnSelf", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, + ["ReflectedMinionDamageTakenImplicitK3"] = { affix = "", "Left ring slot: Minions take 15% reduced Damage", "Right ring slot: Minions take 15% increased Damage", statOrder = { 2661, 2668 }, level = 30, group = "ReflectedMinionDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["ReflectedAilmentDurationOnSelfImplicitK4"] = { affix = "", "Left ring slot: 30% reduced Duration of Ailments on You", "Right ring slot: 30% increased Duration of Ailments on You", statOrder = { 2654, 2663 }, level = 30, group = "ReflectedAilmentDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["CurseEffectElementalAilmentDurationOnSelfR1"] = { affix = "", "50% increased Elemental Ailment Duration on you", "50% reduced Effect of Curses on you", statOrder = { 1867, 2170 }, level = 30, group = "CurseEffectElementalAilmentDurationOnSelf", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["MaxPrefixMaxSuffixModEffectImplicitE1"] = { affix = "", "-1 Prefix Modifier allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "25% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 57 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaxPrefixMaxSuffixModEffectImplicitE2"] = { affix = "", "-2 Prefix Modifiers allowed", "-1 Suffix Modifier allowed", "Implicit Modifiers Cannot Be Changed", "100% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 57 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaxPrefixMaxSuffixModEffectImplicitE3"] = { affix = "", "-1 Prefix Modifier allowed", "-2 Suffix Modifiers allowed", "Implicit Modifiers Cannot Be Changed", "100% increased Explicit Modifier magnitudes", statOrder = { 15, 16, 21, 57 }, level = 30, group = "MaxPrefixMaxSuffixModEffectImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalAllDamageCanPoisonImplicitE1_"] = { affix = "", "All Damage from Hits with This Weapon can Poison", statOrder = { 2470 }, level = 1, group = "LocalAllDamageCanPoison", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToInflictScorchOnEnemyOnBlockImplicitE1"] = { affix = "", "Scorch Enemies when you Block their Damage", statOrder = { 5713 }, level = 1, group = "ChanceToInflictScorchOnEnemyOnBlockCopy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToInflictBrittleOnEnemyOnBlockImplicitE1"] = { affix = "", "Inflict Brittle on Enemies when you Block their Damage", statOrder = { 5708 }, level = 1, group = "ChanceToInflictBrittleOnEnemyOnBlockCopy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToInflictSapOnEnemyOnBlockImplicitE1"] = { affix = "", "Sap Enemies when you Block their Damage", statOrder = { 5712 }, level = 1, group = "ChanceToInflictSapOnEnemyOnBlock", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemNecroticFootprintsUnique__1s"] = { affix = "", "Necrotic Footprints", statOrder = { 9477 }, level = 1, group = "ItemNecroticFootprints", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChaosResistanceWhileStationaryUnique__1"] = { affix = "", "+30% to Chaos Resistance while stationary", statOrder = { 5742 }, level = 1, group = "ChaosResistanceWhileStationary", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["PowerChargeOnHitWhilePoisonedUnique__1"] = { affix = "", "Gain a Power Charge on Hit while Poisoned", statOrder = { 4531 }, level = 1, group = "PowerChargeOnHitWhilePoisoned", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["ChanceToBePoisonedBySpellsUnique__1_"] = { affix = "", "50% chance for Spell Hits against you to inflict Poison", statOrder = { 10160 }, level = 1, group = "ChanceToBePoisonedBySpells", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["SpiritMinionRefreshOnUniqueHitUnique__1"] = { affix = "", "Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", "Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy", statOrder = { 9614, 9802 }, level = 1, group = "SpiritMinionRefreshOnUniqueHit", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MovementVelocityPerPowerChargeUnique__1__"] = { affix = "", "5% increased Movement Speed per Power Charge", statOrder = { 9428 }, level = 1, group = "MovementVelocityPerPowerChargeCopy", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["LifeRegenerationPerPowerChargeUnique__1__"] = { affix = "", "Regenerate 0.5% of Life per second per Power Charge", statOrder = { 7421 }, level = 1, group = "LifeRegenerationPerPowerCharge", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["LocalFlaskAttackAndCastSpeedWhileHealingUnique__1"] = { affix = "", "(5-15)% increased Attack Speed during Effect", "(5-15)% increased Cast Speed during Effect", statOrder = { 944, 945 }, level = 1, group = "LocalFlaskAttackAndCastSpeedWhileHealing", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed" }, }, + ["IncreasedElementalResistancesUnique__1"] = { affix = "", "(18-22)% increased Elemental Resistances", statOrder = { 6312 }, level = 1, group = "IncreasedElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["IncreasedElementalResistancesUnique__2_"] = { affix = "", "(60-70)% reduced Elemental Resistances", statOrder = { 6312 }, level = 1, group = "IncreasedElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["DefencesAreZeroUnique__1_"] = { affix = "", "Defences are Zero", statOrder = { 6154 }, level = 1, group = "DefencesAreZero", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["ChaosResistanceIsZeroUnique__1"] = { affix = "", "Chaos Resistance is Zero", statOrder = { 10726 }, level = 1, group = "ChaosResistanceIsZero", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["ElementalDamageDuringFlaskEffectUnique__1"] = { affix = "", "30% increased Elemental Damage during any Flask Effect", statOrder = { 4225 }, level = 1, group = "ElementalDamageDuringFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask", "elemental_damage", "damage", "elemental" }, }, + ["SupportedByCastOnDamageTakenUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 12 Cast when Damage Taken", statOrder = { 239 }, level = 1, group = "SupportedByCastOnDamageTaken", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ShieldArmourIncreaseUnique__1"] = { affix = "", "50% increased Defences from Equipped Shield", statOrder = { 1994 }, level = 1, group = "ShieldArmourIncrease", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["AddedFireDamageIfBlockedRecentlyUnique__1"] = { affix = "", "Adds 45 to 75 Fire Damage if you've Blocked Recently", statOrder = { 4275 }, level = 1, group = "AddedFireDamageIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AddedFireDamagePer100LowestOfLifeOrManaUnique__1"] = { affix = "", "(3-4) to (7-8) added Fire Damage per 100 of Maximum Life or Maximum Mana, whichever is lower", statOrder = { 9236 }, level = 1, group = "AddedFireDamagePer100LowestOfLifeOrMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["TauntedEnemiesTakeIncreasedDamage_"] = { affix = "", "Enemies Taunted by you take 10% increased Damage", statOrder = { 4280 }, level = 1, group = "TauntedEnemiesTakeIncreasedDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ChaosDamageCanChill"] = { affix = "", "Your Chaos Damage can Chill", statOrder = { 2868 }, level = 1, group = "ChaosDamageCanChill", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, }, + ["ChaosDamageCanFreezeUnique_1"] = { affix = "", "Your Chaos Damage can Freeze", statOrder = { 2869 }, level = 1, group = "ChaosDamageCanFreeze", weightKey = { }, weightVal = { }, modTags = { "poison", "elemental", "cold", "chaos", "ailment" }, }, + ["MainHandTriggerSocketedSpellOnFreezingHitUnique_1"] = { affix = "", "Trigger a Socketed Spell when a Hit from this", "Weapon Freezes a Target, with a 0.25 second Cooldown", statOrder = { 829, 829.1 }, level = 83, group = "MainHandTriggerSocketedSpellOnFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["ElementalDamageIfCritRecently"] = { affix = "", "(120-150)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 6302 }, level = 1, group = "ElementalDamageIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SupportedByMultiTotemUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Multiple Totems", statOrder = { 340 }, level = 1, group = "SupportedByMultiTotem", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["AttackAdditionalProjectilesUnique__1"] = { affix = "", "Attacks fire an additional Projectile", statOrder = { 4196 }, level = 1, group = "AttackAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ExtraMaximumPhantasmsUnique__1"] = { affix = "", "+3 to maximum number of Summoned Phantasms", statOrder = { 5038 }, level = 1, group = "ExtraMaximumPhantasms", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["ExtraRagingSpiritsUnique__1"] = { affix = "", "+6 to maximum number of Raging Spirits", statOrder = { 2163 }, level = 1, group = "ExtraRagingSpirits", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["HungryLoopSupportedByPinpoint"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Pinpoint", statOrder = { 104, 353 }, level = 1, group = "HungryLoopSupportedByPinpoint", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["SpellBlockIfNotBlockedRecentlyUnique__1"] = { affix = "", "You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently", statOrder = { 10132 }, level = 1, group = "MaximumSpellBlockIfNotBlockedRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["LocalEnergyShieldRegenerationIfCritRecentlyUnique__1"] = { affix = "", "Regenerate 20% of Energy Shield per second if you've dealt a Critical Strike with this weapon Recently", statOrder = { 7930 }, level = 1, group = "LocalEnergyShieldRegenerationIfCritRecently", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ColdDamagePerMissingColdResistanceUnique__1"] = { affix = "", "(15-20)% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300%", statOrder = { 5813 }, level = 1, group = "ColdDamagePerMissingColdResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["FireDamagePerMissingFireResistanceUnique__1"] = { affix = "", "(15-20)% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300%", statOrder = { 6566 }, level = 1, group = "FireDamagePerMissingFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ElementalDamagePerMissingResistanceUnique_1"] = { affix = "", "(10-15)% increased Elemental Damage per 1% Missing", "Fire, Cold, or Lightning Resistance, up to a maximum of 450%", statOrder = { 6295, 6295.1 }, level = 1, group = "ElementalDamagePerMissingResistance", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ReplicaNebulisImplicitModifierMagnitudeUnique_1"] = { affix = "", "(60-120)% increased Implicit Modifier magnitudes", statOrder = { 58 }, level = 1, group = "LocalImplicitStatMagnitude", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HyrrisTruthHatredManaReservationFinalUnique__1"] = { affix = "", "Hatred has 100% increased Mana Reservation Efficiency", statOrder = { 6941 }, level = 1, group = "HyrrisTruthHatredManaReservationFinal", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["HatredManaReservationEfficiencyUnique__1__"] = { affix = "", "Hatred has 100% increased Mana Reservation Efficiency", statOrder = { 6942 }, level = 1, group = "HatredReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "aura" }, }, + ["GrantsHatredUnique__1__"] = { affix = "", "Grants Level 22 Hatred Skill", statOrder = { 649 }, level = 81, group = "HatredSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["WingsOfEntropyMainHandAttackSpeedFinalUnique__1_"] = { affix = "", "(50-100)% more Main Hand attack speed", statOrder = { 8156 }, level = 1, group = "WingsOfEntropyMainHandAttackSpeedFinal", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OffHandBaseCriticalStrikeChanceUnique__1"] = { affix = "", "+(10-20)% to Off Hand Critical Strike Chance", statOrder = { 4568 }, level = 1, group = "OffHandBaseCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlammabilityOnBlockChanceUnique__1"] = { affix = "", "Curse Enemies with Flammability on Block", statOrder = { 2986 }, level = 1, group = "FlammabilityOnBlockChance", weightKey = { }, weightVal = { }, modTags = { "block", "curse" }, }, + ["AttackProjectilesForkUnique__1"] = { affix = "", "Projectiles from Attacks Fork", statOrder = { 4881 }, level = 1, group = "AttackProjectilesFork", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AttackProjectilesForkExtraTimesUnique__1"] = { affix = "", "Projectiles from Attacks can Fork 1 additional time", statOrder = { 4882 }, level = 1, group = "AttackProjectilesForkExtraTimes", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ImpalePhysicalReductionPenaltyUnique__1"] = { affix = "", "Impale Damage dealt to Enemies Impaled by you Overwhelms 10% Physical Damage Reduction", statOrder = { 2979 }, level = 1, group = "ImpalePhysicalReductionPenalty", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["MinionLargerAggroRadiusUnique__1"] = { affix = "", "Minions are Aggressive", statOrder = { 10760 }, level = 1, group = "MinionLargerAggroRadius", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["HungryLoopSupportedByTrinity"] = { affix = "", "Has Consumed 1 Gem", "Socketed Gems are Supported by Level 20 Trinity", statOrder = { 104, 392 }, level = 1, group = "HungryLoopSupportedByTrinity", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["LoseLifePercentOnCritUnique__1"] = { affix = "", "Lose (10-15)% of Life when you deal a Critical Strike", statOrder = { 8141 }, level = 1, group = "LoseLifePercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, }, + ["LoseEnergyShieldPercentOnCritUnique__1"] = { affix = "", "Lose (10-15)% of Energy Shield when you deal a Critical Strike", statOrder = { 8139 }, level = 1, group = "LoseEnergyShieldPercentOnCrit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "critical" }, }, + ["DamageOverTimeMultiplierIfCrit8SecondsUnique__1_"] = { affix = "", "+(40-60)% to Damage over Time Multiplier if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 6258 }, level = 1, group = "DamageOverTimeMultiplierIfCrit8Seconds", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["LifeRegenerationIfCrit8SecondsUnique__1"] = { affix = "", "(2-2.5)% of Life Regenerated per Second if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 7414 }, level = 1, group = "LifeRegenerationIfCrit8Seconds", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "critical" }, }, + ["ArmourPerStrengthUnique__1_"] = { affix = "", "10% reduced Armour per 50 Strength", statOrder = { 4769 }, level = 65, group = "ArmourPerStrength", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["EnemiesIgniteChaosDamageUnique__1"] = { affix = "", "Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite", statOrder = { 6411 }, level = 62, group = "EnemiesIgniteChaosDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["EnemiesIgniteWitherNeverExpiresUnique__1"] = { affix = "", "Withered does not expire on Enemies Ignited by you", statOrder = { 6412 }, level = 1, group = "EnemiesIgniteWitherNeverExpires", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["GrantsVampiricIconSkillUnique__1"] = { affix = "", "Grants Level 20 Thirst for Blood Skill", statOrder = { 727 }, level = 1, group = "GrantsVampiricIconSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["LocalBleedDamageOverTimeMultiplierUnique__1"] = { affix = "", "+(25-35)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon", statOrder = { 7864 }, level = 1, group = "LocalBleedDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["SacrificialZealOnSkillUseUnique__1_"] = { affix = "", "Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second", statOrder = { 6815 }, level = 1, group = "SacrificialZealOnSkillUse", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourPenetrationSacrificialZealUnique__1"] = { affix = "", "Hits have (35-50)% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal", statOrder = { 7171 }, level = 1, group = "ArmourPenetrationSacrificialZeal", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["RightRingMagicHexproofUnique__1"] = { affix = "", "You are Hexproof if you have a Magic Ring in right slot", statOrder = { 7139 }, level = 1, group = "RightRingMagicHexproof", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, + ["LeftRingMagicNoCritDamageUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes if you have a Magic Ring in left slot", statOrder = { 9981 }, level = 1, group = "LeftRingMagicNoCritDamage", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["AnyRingMagicDamageExtraRollUnique__1"] = { affix = "", "Damage of Enemies Hitting you is Unlucky while you have a Magic Ring Equipped", statOrder = { 6418 }, level = 1, group = "AnyRingMagicDamageExtraRoll", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SocketedGemsApplyExposureReducedResistsImplicitR1"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 554, 1619 }, level = 15, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SocketedGemsApplyExposureReducedResistsImplicitR2"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 554, 1619 }, level = 45, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SocketedGemsApplyExposureReducedResistsImplicitR3___"] = { affix = "", "Socketed Skills apply Fire, Cold and Lightning Exposure on Hit", "-10% to all Elemental Resistances", statOrder = { 554, 1619 }, level = 75, group = "SocketedGemsApplyExposureReducedResists", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SocketedActiveGemLevelSupportGemPenaltyImplicitR1"] = { affix = "", "-1 to Level of Socketed Support Gems", "+1 to Level of Socketed Skill Gems", statOrder = { 189, 190 }, level = 15, group = "SocketedActiveGemLevelSupportGemPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SocketedActiveGemLevelSupportGemPenaltyImplicitR2"] = { affix = "", "-2 to Level of Socketed Support Gems", "+2 to Level of Socketed Skill Gems", statOrder = { 189, 190 }, level = 45, group = "SocketedActiveGemLevelSupportGemPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR1"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 20, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR2__"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 50, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR3"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 20% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 80, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR4"] = { affix = "", "+(3-4)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 20, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR5"] = { affix = "", "+(4-5)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 50, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR6"] = { affix = "", "+(5-6)% Chance to Block Attack Damage", "You take 10% of Damage from Blocked Hits", statOrder = { 2458, 4996 }, level = 80, group = "ChanceToBlockAndDamageTakenFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["IncreasedStunRecoveryReducedStunThresholdImplicitR1"] = { affix = "", "30% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 20, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedStunRecoveryReducedStunThresholdImplicitR2"] = { affix = "", "40% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 50, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedStunRecoveryReducedStunThresholdImplicitR3"] = { affix = "", "50% increased Stun and Block Recovery", "20% reduced Stun Threshold", statOrder = { 1902, 3272 }, level = 80, group = "IncreasedStunRecoveryReducedStunThreshold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MovementSkillCooldownReducedMoveSpeedImplicitR1"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1798, 9405 }, level = 20, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementSkillCooldownReducedMoveSpeedImplicitR2_"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1798, 9405 }, level = 50, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MovementSkillCooldownReducedMoveSpeedImplicitR3_"] = { affix = "", "10% reduced Movement Speed", "(45-50)% increased Cooldown Recovery Rate of Movement Skills", statOrder = { 1798, 9405 }, level = 80, group = "MovementSkillCooldownReducedMoveSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR1_"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4873, 5257 }, level = 20, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR2_"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4873, 5257 }, level = 50, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AddedLightningDamagePerAccuracyReducedAccuracyImplicitR3"] = { affix = "", "1 to (5-6) Added Attack Lightning Damage per 200 Accuracy Rating", "25% less Accuracy Rating", statOrder = { 4873, 5257 }, level = 80, group = "AddedLightningDamagePerAccuracyReducedAccuracy", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["MainHandOffHandDamage1_"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1282, 1283 }, level = 10, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["MainHandOffHandDamage2"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1282, 1283 }, level = 40, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["MainHandOffHandDamage3_"] = { affix = "", "25% reduced Attack Damage with Main Hand", "(40-50)% increased Attack Damage with Off Hand", statOrder = { 1282, 1283 }, level = 70, group = "MainHandOffHandDamage", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR1"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (10-15)% increased Skill Effect Duration", statOrder = { 3461, 10418 }, level = 10, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR2"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (15-20)% increased Skill Effect Duration", statOrder = { 3461, 10418 }, level = 40, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TrapSkillEffectDurationTrapCooldownPenaltyImplicitR3"] = { affix = "", "30% reduced Cooldown Recovery Rate for throwing Traps", "Trap Skills have (20-25)% increased Skill Effect Duration", statOrder = { 3461, 10418 }, level = 70, group = "TrapSkillEffectDurationTrapCooldownPenalty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainManaOnManaPaidManaCost1"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1580, 5699 }, level = 10, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["GainManaOnManaPaidManaCost2"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1580, 5699 }, level = 40, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["GainManaOnManaPaidManaCost3____"] = { affix = "", "30% reduced maximum Mana", "(25-30)% chance when you pay a Skill's Cost to gain that much Mana", statOrder = { 1580, 5699 }, level = 70, group = "GainManaOnManaPaidManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ExertedDamageWarcryCooldown1"] = { affix = "", "Exerted Attacks deal (25-30)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6356, 10568 }, level = 10, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ExertedDamageWarcryCooldown2"] = { affix = "", "Exerted Attacks deal (30-40)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6356, 10568 }, level = 40, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ExertedDamageWarcryCooldown3"] = { affix = "", "Exerted Attacks deal (40-50)% increased Damage", "Warcry Skills have +2 seconds to Cooldown", statOrder = { 6356, 10568 }, level = 70, group = "ExertedDamageWarcryCooldown", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["FortifyEffectCrushed1"] = { affix = "", "-15% additional Physical Damage Reduction", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 2273, 7919, 9117 }, level = 15, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FortifyEffectCrushed2_"] = { affix = "", "-15% additional Physical Damage Reduction", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 2273, 7919, 9117 }, level = 45, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FortifyEffectCrushed3_"] = { affix = "", "-15% additional Physical Damage Reduction", "You are Crushed", "+(2-3) to maximum Fortification", statOrder = { 2273, 7919, 9117 }, level = 75, group = "FortifyEffectCrushed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaxChaosResistanceCrushedImplicitR1"] = { affix = "", "+2% to maximum Chaos Resistance", "-15% additional Physical Damage Reduction", "You are Crushed", statOrder = { 1640, 2273, 7919 }, level = 15, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaxChaosResistanceCrushedImplicitR2"] = { affix = "", "+3% to maximum Chaos Resistance", "-15% additional Physical Damage Reduction", "You are Crushed", statOrder = { 1640, 2273, 7919 }, level = 45, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaxChaosResistanceCrushedImplicitR3"] = { affix = "", "+4% to maximum Chaos Resistance", "-15% additional Physical Damage Reduction", "You are Crushed", statOrder = { 1640, 2273, 7919 }, level = 75, group = "MaxChaosResistanceCrushed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AddedColdDamageColdPenetration1"] = { affix = "", "Adds (3-4) to (5-6) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1368, 2983 }, level = 15, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageColdPenetration2"] = { affix = "", "Adds (15-20) to (28-35) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1368, 2983 }, level = 45, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AddedColdDamageColdPenetration3"] = { affix = "", "Adds (75-85) to (115-128) Cold Damage", "Your Hits treat Cold Resistance as 10% higher than actual value", statOrder = { 1368, 2983 }, level = 75, group = "AddedColdDamageColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["GrantsUnhingeUnique__1"] = { affix = "", "Grants Level 20 Unhinge Skill", statOrder = { 723 }, level = 1, group = "GrantsUnhingeSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["PhysicalChaosDamageTakenNotUnhingedUnique__1_"] = { affix = "", "(30-40)% less Physical and Chaos Damage Taken while Sane", statOrder = { 9621 }, level = 1, group = "PhysicalChaosDamageTakenNotUnhinged", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, }, + ["RegenerateLifeNotUnhingedUnique__1"] = { affix = "", "Regenerate 10% Life over one second when Hit while Sane", statOrder = { 9894 }, level = 1, group = "RegenerateLifeNotUnhinged", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["CriticalStrikeChanceFinalUnhingedUnique__1"] = { affix = "", "(40-60)% more Critical Strike Chance while Insane", statOrder = { 5923 }, level = 1, group = "CriticalStrikeChanceFinalUnhinged", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["EnemiesExplodeOnKillUnhingedUnique__1_"] = { affix = "", "Enemies Killed by your Hits are destroyed while Insane", statOrder = { 6376 }, level = 1, group = "EnemiesExplodeOnKillUnhinged", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CurseAurasAffectYouUnique__1"] = { affix = "", "Curse Auras from Socketed Skills also affect you", statOrder = { 551 }, level = 70, group = "CurseAurasAffectYou", weightKey = { }, weightVal = { }, modTags = { "support", "gem", "curse" }, }, + ["HitAndAilmentDamageCursedEnemiesUnique__1"] = { affix = "", "(15-25)% increased Damage with Hits and Ailments against Cursed Enemies", statOrder = { 7151 }, level = 1, group = "HitAndAilmentDamageCursedEnemies", weightKey = { }, weightVal = { }, modTags = { "damage", "curse" }, }, + ["ScorchedGroundWhileMovingUnique__1"] = { affix = "", "Drops Scorched Ground while moving, lasting 4 seconds", statOrder = { 4310 }, level = 1, group = "ScorchedGroundWhileMoving", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["NearbyEnemiesAreScorchedUnique__1"] = { affix = "", "Nearby Enemies are Scorched", statOrder = { 3399 }, level = 1, group = "NearbyEnemiesAreScorched", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ScorchEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Scorch", statOrder = { 9962 }, level = 1, group = "ScorchEffect", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["ScorchedEnemiesDegenExplodeUnique__1_"] = { affix = "", "(30-40)% chance when you Kill a Scorched Enemy to Burn Each surrounding", "Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second", statOrder = { 9964, 9964.1 }, level = 87, group = "ScorchedEnemiesDegenExplode", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["AttackSpeedFrenzyChargeNotGainedUnique__1"] = { affix = "", "(20-25)% increased Attack Speed if you haven't gained a Frenzy Charge Recently", statOrder = { 4899 }, level = 1, group = "AttackSpeedFrenzyChargeNotGained", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["CriticalStrikeChancePowerChargeNotGainedUnique__1"] = { affix = "", "(60-80)% increased Critical Strike Chance if you haven't gained a Power Charge Recently", statOrder = { 5929 }, level = 1, group = "CriticalStrikeChancePowerChargeNotGained", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["ExtendFrenzyPowerChargeDurationCullUnique__1"] = { affix = "", "+3 seconds to Duration of Frenzy and Power Charges on Culling Strike", statOrder = { 6671 }, level = 1, group = "ExtendFrenzyPowerChargeDurationCull", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeGainOnCullUnique__1"] = { affix = "", "Gain (120-150) Life on Culling Strike", statOrder = { 7358 }, level = 1, group = "LifeGainOnCull", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ManaGainOnCullUnique__1_"] = { affix = "", "Gain (10-20) Mana on Culling Strike", statOrder = { 8178 }, level = 1, group = "ManaGainOnCull", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["GainBrutalChargesInsteadOfEnduranceUnique__1"] = { affix = "", "Gain Brutal Charges instead of Endurance Charges", statOrder = { 6738 }, level = 85, group = "GainBrutalChargesInsteadOfEndurance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainAfflictionChargesInsteadOfFrenzyUnique__1"] = { affix = "", "Gain Affliction Charges instead of Frenzy Charges", statOrder = { 6719 }, level = 85, group = "GainAfflictionChargesInsteadOfFrenzy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainAbsorptionChargesInsteadOfPowerUnique__1"] = { affix = "", "Gain Absorption Charges instead of Power Charges", statOrder = { 6709 }, level = 85, group = "GainAbsorptionChargesInsteadOfPower", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumBrutalChargesEqualsEnduranceUnique__1__"] = { affix = "", "Maximum Brutal Charges is equal to Maximum Endurance Charges", statOrder = { 1807 }, level = 1, group = "MaximumBrutalChargesEqualsEndurance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumAfflictionChargesEqualsFrenzyUnique__1"] = { affix = "", "Maximum Affliction Charges is equal to Maximum Frenzy Charges", statOrder = { 1812 }, level = 1, group = "MaximumAfflictionChargesEqualsFrenzy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumAbsorptionChargesEqualsPowerUnique__1_"] = { affix = "", "Maximum Absorption Charges is equal to Maximum Power Charges", statOrder = { 1817 }, level = 1, group = "MaximumAbsorptionChargesEqualsPower", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinimumBrutalChargeModifiersEqualsEnduranceUnique__1"] = { affix = "", "Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges", statOrder = { 1806 }, level = 1, group = "MinimumBrutalChargeModifiersEqualsEndurance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinimumAfflictionChargeModifiersEqualsFrenzyUnique__1"] = { affix = "", "Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges", statOrder = { 1811 }, level = 1, group = "MinimumAfflictionChargeModifiersEqualsFrenzy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinimumAbsorptionChargeModifiersEqualsPowerUnique__1"] = { affix = "", "Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges", statOrder = { 1816 }, level = 1, group = "MinimumAbsorptionChargeModifiersEqualsPower", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionsCrazyOnCritUnique__1__"] = { affix = "", "Minions can hear the whispers for 5 seconds after they deal a Critical Strike", statOrder = { 9354 }, level = 1, group = "MinionsCrazyOnCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, }, + ["MinionCriticalStrikeChanceMaximumPowerChargeUnique__1"] = { affix = "", "Minions have 50% increased Critical Strike Chance per Maximum Power Charge you have", statOrder = { 9289 }, level = 1, group = "MinionCriticalStrikeChanceMaximumPowerCharge", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, }, + ["PhysicalDamageTakenAsLightningDescentTwoHandSword1"] = { affix = "", "50% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2449 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1"] = { affix = "", "30% increased Rarity of Items found", "You and Nearby Allies have 30% increased Item Rarity", statOrder = { 1596, 1598 }, level = 1, group = "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarity", weightKey = { }, weightVal = { }, modTags = { "drop" }, }, + ["BattlemageKeystoneUnique__1"] = { affix = "", "Battlemage", statOrder = { 10771 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BattlemageKeystoneUnique__2_"] = { affix = "", "Battlemage", statOrder = { 10771 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BattlemageKeystoneUnique__3"] = { affix = "", "Battlemage", statOrder = { 10771 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BattlemageKeystoneUnique__4"] = { affix = "", "Battlemage", statOrder = { 10771 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BattlemageKeystoneUnique__6"] = { affix = "", "Battlemage", statOrder = { 10771 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChainOffTerrainChancePerRangedAbyssJewelUnique__1__"] = { affix = "", "Projectiles have 4% chance to be able to Chain when colliding with terrain per", "Searching Eye Jewel affecting you, up to a maximum of 20%", statOrder = { 9727, 9727.1 }, level = 1, group = "ChainOffTerrainChancePerRangedAbyssJewel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MainHandCriticalStrikeChancePerMeleeAbyssJewelUnique__1"] = { affix = "", "40% increased Main Hand Critical Strike Chance per", "Murderous Eye Jewel affecting you, up to a maximum of 200%", statOrder = { 8158, 8158.1 }, level = 1, group = "MainHandCriticalStrikeChancePerMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["OffHandCriticalStrikeMultiplierPerMeleeAbyssJewelUnique__1__"] = { affix = "", "+20% to Off Hand Critical Strike Multiplier per", "Murderous Eye Jewel affecting you, up to a maximum of +100%", statOrder = { 9550, 9550.1 }, level = 1, group = "OffHandCriticalStrikeMultiplierPerMeleeAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "attack", "critical" }, }, + ["MinionDamageOverTimeMultiplierPerMinionAbyssJewelUnique__1"] = { affix = "", "Minions have +6% to Damage over Time Multiplier per", "Ghastly Eye Jewel affecting you, up to a maximum of +30%", statOrder = { 9294, 9294.1 }, level = 1, group = "MinionDamageOverTimeMultiplierPerMinionAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["ArcaneSurgeEffectPerCasterAbyssJewelUnique__1"] = { affix = "", "8% increased Effect of Arcane Surge on you per", "Hypnotic Eye Jewel affecting you, up to a maximum of 40%", statOrder = { 3287, 3287.1 }, level = 1, group = "ArcaneSurgeEffectPerCasterAbyssJewel", weightKey = { }, weightVal = { }, modTags = { "caster" }, }, + ["GrantsCallOfSteelSkillUnique__1_"] = { affix = "", "Grants Call of Steel", statOrder = { 694 }, level = 1, group = "GrantsCallOfSteelSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["GrantsCallOfSteelSkillUnique__2"] = { affix = "", "Grants Call of Steel", statOrder = { 694 }, level = 1, group = "GrantsCallOfSteelSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["LocalVeiledModEffectUnique__1"] = { affix = "", "(60-90)% increased Unveiled Modifier magnitudes", statOrder = { 56 }, level = 85, group = "LocalVeiledModEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalFreezeAsThoughDealingMoreDamageUnique__1"] = { affix = "", "Hits with this Weapon Freeze Enemies as though dealing (150-200)% more Damage", statOrder = { 7941 }, level = 1, group = "LocalFreezeAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "attack", "ailment" }, }, + ["LocalShockAsThoughDealingMoreDamageUnique__1"] = { affix = "", "Hits with this Weapon Shock Enemies as though dealing (150-200)% more Damage", statOrder = { 7942 }, level = 1, group = "LocalShockAsThoughDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "attack", "ailment" }, }, + ["LocalWeaponMoreIgniteDamageUnique__1"] = { affix = "", "Ignites inflicted with this Weapon deal (50-75)% more Damage", statOrder = { 7943 }, level = 1, group = "LocalWeaponMoreIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack", "ailment" }, }, + ["ChanceToThrowFourAdditionalTrapsUnique__1"] = { affix = "", "(4-6)% chance to throw up to 4 additional Traps", statOrder = { 5724 }, level = 1, group = "ChanceToThrowFourAdditionalTraps", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainMaximumPowerChargesOnVaalSkillUseUnique__1"] = { affix = "", "Gain up to maximum Power Charges when you use a Vaal Skill", statOrder = { 6776 }, level = 1, group = "GainMaximumPowerChargesOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "power_charge", "vaal" }, }, + ["GainRandomChargeOnVaalSkillUseUnique__1_"] = { affix = "", "Gain an Endurance Charge, Frenzy Charge, and Power Charge when you use a Vaal Skill", statOrder = { 6765 }, level = 1, group = "GainRandomChargeOnVaalSkillUse", weightKey = { }, weightVal = { }, modTags = { "power_charge", "frenzy_charge", "endurance_charge", "vaal" }, }, + ["CountOnFullLifeWhileAffectedByVulnerabilityUnique__1"] = { affix = "", "You count as on Full Life while you are Cursed with Vulnerability", statOrder = { 3119 }, level = 1, group = "CountOnFullLifeWhileAffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["VaalAttacksUseRageInsteadOfSoulsUnique__1_"] = { affix = "", "Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls", statOrder = { 2691 }, level = 90, group = "VaalAttacksUseRageInsteadOfSouls", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["CannotGainRageDuringSoulGainPreventionUnique__1__"] = { affix = "", "You cannot gain Rage during Soul Gain Prevention", statOrder = { 5436 }, level = 1, group = "CannotGainRageDuringSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["SupportedByRageUnique__1__"] = { affix = "", "Socketed Gems are Supported by Level 30 Rage", statOrder = { 360 }, level = 1, group = "SupportedByRage", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["ReducedRageCostUnique__1"] = { affix = "", "(10-25)% reduced Rage Cost of Skills", statOrder = { 1884 }, level = 1, group = "RageCost", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeAndReducedFireResistanceUnique__1"] = { affix = "", "(30-40)% increased maximum Life and reduced Fire Resistance", statOrder = { 1587 }, level = 1, group = "LifeAndReducedFireResistance", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, + ["ManaAndReducedColdResistanceUnique__1"] = { affix = "", "(30-40)% increased maximum Mana and reduced Cold Resistance", statOrder = { 1588 }, level = 1, group = "ManaAndReducedColdResistance", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning", "resistance" }, }, + ["EnergyShieldAndReducedLightningResistanceUnique__1"] = { affix = "", "(30-40)% increased Global maximum Energy Shield and reduced Lightning Resistance", statOrder = { 1589 }, level = 1, group = "EnergyShieldAndReducedLightningResistance", weightKey = { }, weightVal = { }, modTags = { "defences", "elemental", "cold", "resistance" }, }, + ["VaalSkillDamageUnique__1"] = { affix = "", "(80-120)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "vaal" }, }, + ["VaalSoulGainPreventionUnique__1__"] = { affix = "", "(6-8)% reduced Soul Gain Prevention Duration", statOrder = { 3106 }, level = 1, group = "VaalSoulGainPrevention", weightKey = { }, weightVal = { }, modTags = { "vaal" }, }, + ["LuckyCriticalsOnLowLifeUnique__1___"] = { affix = "", "Your Critical Strike Chance is Lucky while on Low Life", statOrder = { 6531 }, level = 1, group = "LuckyCriticalsOnLowLife", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["EnergyShieldAdditiveModifiersInsteadApplyToWardUnique__"] = { affix = "", "Increases and Reductions to Maximum Energy Shield instead apply to Ward", statOrder = { 6428 }, level = 1, group = "EnergyShieldAdditiveModifiersInsteadApplyToWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["GlobalAddedChaosDamageWardUnique__"] = { affix = "", "Gain Added Chaos Damage equal to 10% of Ward", statOrder = { 2068 }, level = 1, group = "GlobalAddedChaosDamageWard", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["LocalIncreasedWardPercentUnique__1_"] = { affix = "", "(33-48)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentUnique__2"] = { affix = "", "(25-35)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentUnique__3"] = { affix = "", "(30-50)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["LocalIncreasedWardPercentUnique__4_"] = { affix = "", "(50-80)% increased Ward", statOrder = { 1530 }, level = 1, group = "LocalWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["DamageBypassesWardPercentUnique__1"] = { affix = "", "75% of Damage taken bypasses Ward", statOrder = { 5006 }, level = 1, group = "DamageBypassesWardPercent", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["LocalIncreasedWardUnique__1"] = { affix = "", "+(100-150) to Ward", statOrder = { 1528 }, level = 1, group = "LocalWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["WardDelayRecoveryUnique__1"] = { affix = "", "(40-60)% faster Restoration of Ward", statOrder = { 1531 }, level = 1, group = "WardDelayRecovery", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["WardDelayRecoveryUnique__2"] = { affix = "", "(30-50)% slower Restoration of Ward", statOrder = { 1531 }, level = 1, group = "WardDelayRecovery", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["GrantsSummonArbalistsSkillUnique__1_"] = { affix = "", "Triggers Level 20 Summon Arbalists when Equipped", statOrder = { 776 }, level = 1, group = "GrantsSummonArbalistsSkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["AdrenalineOnWardBreakUnique__1"] = { affix = "", "Gain Adrenaline for 3 seconds when Ward Breaks", statOrder = { 6718 }, level = 1, group = "AdrenalineOnWardBreak", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskChargesFromKillsFinalUnique__1_"] = { affix = "", "80% less Flask Charges gained from Kills", statOrder = { 6634 }, level = 1, group = "FlaskChargesFromKillsFinal", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargePerSecondUniqueEnemyUnique__1___"] = { affix = "", "Flasks gain 1 Charge per second if you've Hit a Unique Enemy Recently", statOrder = { 6752 }, level = 1, group = "FlaskChargePerSecondUniqueEnemy", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["SummonArbalistNumberOfArbalistsAllowed"] = { affix = "", "+1 to number of Summoned Arbalists", statOrder = { 9531 }, level = 1, group = "SummonArbalistNumberOfArbalistsAllowed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistNumberOfAdditionalProjectiles_"] = { affix = "", "Summoned Arbalists fire (2-4) additional Projectiles", statOrder = { 10280 }, level = 1, group = "SummonArbalistNumberOfAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistAttackSpeed_"] = { affix = "", "Summoned Arbalists have (30-40)% increased Attack Speed", statOrder = { 10270 }, level = 1, group = "SummonArbalistAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistTargetsToPierce"] = { affix = "", "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets", statOrder = { 10289 }, level = 1, group = "SummonArbalistTargetsToPierce", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistProjectilesFork"] = { affix = "", "Summoned Arbalists' Projectiles Fork", statOrder = { 10288 }, level = 1, group = "SummonArbalistProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChains_"] = { affix = "", "Summoned Arbalists' Projectiles Chain +2 times", statOrder = { 10271 }, level = 1, group = "SummonArbalistChains", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistNumberOfSplits__"] = { affix = "", "Summoned Arbalists' Projectiles Split into 3", statOrder = { 10281 }, level = 1, group = "SummonArbalistNumberOfSplits", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToDealDoubleDamage___"] = { affix = "", "Summoned Arbalists have (25-35)% chance to deal Double Damage", statOrder = { 10274 }, level = 1, group = "SummonArbalistChanceToDealDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToMaimfor4secondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit", statOrder = { 10277 }, level = 1, group = "SummonArbalistChanceToMaimfor4secondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToIntimidateFor4SecondsOnHit"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit", statOrder = { 10276 }, level = 1, group = "SummonArbalistChanceToIntimidateFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToUnnerveFor4SecondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit", statOrder = { 10279 }, level = 1, group = "SummonArbalistChanceToUnnerveFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToInflictFireExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit", statOrder = { 10294 }, level = 1, group = "SummonArbalistChanceToInflictFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToInflictColdExposureonHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit", statOrder = { 10293 }, level = 1, group = "SummonArbalistChanceToInflictColdExposureonHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToInflictLightningExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 10295 }, level = 1, group = "SummonArbalistChanceToInflictLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToCrushOnHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to Crush on Hit", statOrder = { 10273 }, level = 1, group = "SummonArbalistChanceToCrushOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToConvertToFire"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage", "Summoned Arbalists have (10-20)% chance to Ignite", statOrder = { 10286, 10291 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToConvertToCold_"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage", "Summoned Arbalists have (10-20)% chance to Freeze", statOrder = { 10285, 10290 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToConvertToLightning"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage", "Summoned Arbalists have (10-20)% chance to Shock", statOrder = { 10287, 10292 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToAddAsFire"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage", "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit", statOrder = { 10283, 10294 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToAddAsCold_"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage", "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit", statOrder = { 10282, 10293 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsCold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToAddAsLightning"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage", "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit", statOrder = { 10284, 10295 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsLightning", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToBleedPercent_"] = { affix = "", "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding", statOrder = { 10272 }, level = 1, group = "SummonArbalistChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToPoisonPercent"] = { affix = "", "Summoned Arbalists have (40-60)% chance to Poison", statOrder = { 10278 }, level = 1, group = "SummonArbalistChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToIgniteFreezeShockPercent"] = { affix = "", "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite", statOrder = { 10275 }, level = 1, group = "SummonArbalistChanceToIgniteFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskMoreWardUnique1"] = { affix = "", "85% less Ward during Effect", statOrder = { 1010 }, level = 1, group = "FlaskMoreWardUnique1", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskFireColdLightningExposureOnNearbyEnemiesUnique1"] = { affix = "", "Inflict Fire, Cold and Lightning Exposure on nearby Enemies when used", statOrder = { 891 }, level = 1, group = "FlaskFireColdLightningExposureOnNearbyEnemies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskNonDamagingAilmentIncreasedEffectUnique__1"] = { affix = "", "(20-30)% increased Effect of Non-Damaging Ailments you inflict during Effect", statOrder = { 995 }, level = 1, group = "FlaskNonDamagingAilmentIncreasedEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskEnduranceChargePerSecondUnique1"] = { affix = "", "Gain 1 Endurance Charge per Second during Effect", statOrder = { 980 }, level = 1, group = "FlaskEnduranceChargePerSecond", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskLoseAllEnduranceChargesGainLifePerLostChargeUnique1"] = { affix = "", "Recover 4% of Life per Endurance Charge on use", "Lose all Endurance Charges on use", statOrder = { 892, 892.1 }, level = 1, group = "FlaskLoseAllEnduranceChargesGainLifePerLostCharge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskCullingStrikeUnique1"] = { affix = "", "Culling Strike during Effect", statOrder = { 977 }, level = 1, group = "FlaskCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskRemoveEffectWhenWardBreaksUnique1"] = { affix = "", "Effect is removed when Ward Breaks", statOrder = { 867 }, level = 1, group = "FlaskRemoveEffectWhenWardBreaks", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskDebilitateNearbyEnemiesWhenEffectEndsUnique_1"] = { affix = "", "Debilitate nearby Enemies for 2 Seconds when Effect ends", statOrder = { 862 }, level = 1, group = "FlaskDebilitateNearbyEnemiesWhenEffectEnds", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemiesKilledCountAsYoursUnique__1"] = { affix = "", "Nearby Enemies Killed by anyone count as being Killed by you instead", statOrder = { 7890 }, level = 1, group = "EnemiesKilledCountAsYours", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MagicUtilityFlasksAlwaysApplyUnique__1"] = { affix = "", "Leftmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you", statOrder = { 4421 }, level = 56, group = "MagicUtilityFlasksAlwaysApply", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MagicUtilityFlasksCannotUseUnique__1____"] = { affix = "", "Magic Utility Flasks cannot be Used", statOrder = { 4420 }, level = 1, group = "MagicUtilityFlasksCannotUse", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MagicUtilityFlasksCannotRemoveUnique__1"] = { affix = "", "Magic Utility Flask Effects cannot be removed", statOrder = { 4423 }, level = 1, group = "MagicUtilityFlasksCannotRemove", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumElementalResistanceUnique__1__"] = { affix = "", "+(1-5)% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["MaximumElementalResistanceUnique__2"] = { affix = "", "-(6-4)% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["MaximumElementalResistanceUnique__3"] = { affix = "", "+1% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["MaximumElementalResistanceUnique__4"] = { affix = "", "+(0-5)% to all maximum Elemental Resistances", statOrder = { 1643 }, level = 1, group = "MaximumElementalResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["BaseBlockDamageTakenUnique__1___"] = { affix = "", "You take 20% of Damage from Blocked Hits", statOrder = { 4996 }, level = 1, group = "BaseBlockDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DoedresSkinLessCurseEffectUnique__1"] = { affix = "", "20% less Effect of your Curses", statOrder = { 2597 }, level = 1, group = "DoedresSkinLessCurseEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChronomanceReservesNoMana"] = { affix = "", "Temporal Rift has no Reservation", statOrder = { 5780 }, level = 1, group = "ChronomanceReservesNoMana", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SupportGemsSocketedInOffHandAlsoSupportMainHandSkills"] = { affix = "", "Socketed Support Gems can also Support Skills from your Main Hand", statOrder = { 223 }, level = 1, group = "SupportGemsSocketedInOffHandAlsoSupportMainHandSkills", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SupportGemsSocketedInAmuletAlsoSupportBodySkills"] = { affix = "", "Socketed Support Gems can also Support Skills from Equipped Body Armour", statOrder = { 222 }, level = 90, group = "SupportGemsSocketedInAmuletAlsoSupportBodySkills", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskLifeLeechIsInstantDuringEffect"] = { affix = "Pactbreaker's", "(80-90)% reduced Amount Recovered", "(200-250)% increased Recovery rate", "Life Leech is instant during Effect", statOrder = { 854, 855, 991 }, level = 78, group = "FlaskLifeLeechIsInstantDuringEffect", weightKey = { "life_flask", "default", "hybrid_flask", }, weightVal = { 0, 0, 0 }, modTags = { "flask" }, }, + ["FlaskLessDurationUnique1"] = { affix = "", "(40-60)% less Duration", statOrder = { 858 }, level = 1, group = "FlaskMoreDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskLessDurationUnique2"] = { affix = "", "(40-60)% less Duration", statOrder = { 858 }, level = 1, group = "FlaskMoreDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskEffectUniqueJewel_10"] = { affix = "", "Flasks applied to you have 20% reduced Effect", statOrder = { 2742 }, level = 1, group = "FlaskEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskDurationUniqueJewel_____8"] = { affix = "", "50% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "FlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesUniqueJewel___8"] = { affix = "", "20% reduced Flask Charges gained", statOrder = { 2183 }, level = 1, group = "FlaskChargesUnique", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskChargesFromKillUniqueJewel_9"] = { affix = "", "80% less Flask Charges gained from Kills", statOrder = { 10497 }, level = 1, group = "FlaskChargesFromKillUniqueJewel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskChargeOnHitNonUniqueUniqueJewel____9"] = { affix = "", "Flasks gain 2 Charges when you hit a Non-Unique Enemy, no more than once per second", statOrder = { 6646 }, level = 1, group = "FlaskChargeOnHitNonUnique", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskChargePerSecondInactiveUniqueJewel_10"] = { affix = "", "Flasks gain 3 Charges every 3 seconds while they are inactive", statOrder = { 6647 }, level = 1, group = "FlaskChargePerSecondInactive", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalResistanceHighestMaxResistanceUnique__1_"] = { affix = "", "Elemental Resistances are capped by your highest Maximum Elemental Resistance instead", statOrder = { 6340 }, level = 1, group = "ElementalResistanceHighestMaxResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["EnergyShieldRechargeOnKillUnique__1__"] = { affix = "", "(10-20)% chance for Energy Shield Recharge to start when you Kill an Enemy", statOrder = { 6448 }, level = 1, group = "EnergyShieldRechargeOnKill", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LessRechargeRateSoullessEleganceUnique__1"] = { affix = "", "(30-40)% less Energy Shield Recharge Rate", statOrder = { 10508 }, level = 1, group = "LessRechargeRateSoullessElegance", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["GlobalSkillGemLevelUnique__1"] = { affix = "", "+1 to Level of all Skill Gems", statOrder = { 4634 }, level = 75, group = "GlobalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["GlobalSkillGemQualityUnique__1"] = { affix = "", "+(20-30)% to Quality of all Skill Gems", statOrder = { 4635 }, level = 1, group = "GlobalSkillGemQuality", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["GlobalGemExperienceGainUnique__1"] = { affix = "", "(5-10)% increased Experience Gain of Gems", statOrder = { 1879 }, level = 1, group = "GlobalGemExperienceGain", weightKey = { }, weightVal = { }, modTags = { "gem" }, }, + ["ElementalSkillsTripleDamageUnique__1"] = { affix = "", "Deal Triple Damage with Elemental Skills", statOrder = { 6342 }, level = 85, group = "ElementalSkillsTripleDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["SocketedGemsMoreDamageForSpellsCastUnique__1"] = { affix = "", "Socketed Projectile Spells deal 150% more Damage with Hits", statOrder = { 558 }, level = 1, group = "SocketedGemsMoreDamageForSpellsCast", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SocketedGemsAddedCooldownUnique__1__"] = { affix = "", "Socketed Projectile Spells have +4 seconds to Cooldown", statOrder = { 559 }, level = 1, group = "SocketedGemsAddedCooldown", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SocketedGemsLessDurationUnique__1"] = { affix = "", "Socketed Projectile Spells have 80% less Skill Effect Duration", statOrder = { 612 }, level = 1, group = "SocketedGemsLessDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttributeModifiersAscendanceUnique__1_"] = { affix = "", "Modifiers to Attributes instead apply to Omniscience", statOrder = { 1187 }, level = 77, group = "AttributeModifiersAscendance", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["ElementalResistPerAscendanceUnique__1__"] = { affix = "", "+1% to all Elemental Resistances per 15 Omniscience", statOrder = { 1188 }, level = 1, group = "ElementalResistPerAscendance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["ElementalPenPerAscendanceUnique__1"] = { affix = "", "Penetrate 1% Elemental Resistances per 15 Omniscience", statOrder = { 1189 }, level = 1, group = "ElementalPenPerAscendance", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["AttributeRequirementsAscendanceUnique__1"] = { affix = "", "Attribute Requirements can be satisfied by (15-25)% of Omniscience", statOrder = { 1190 }, level = 1, group = "AttributeRequirementsAscendance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LeftRingCoveredInAshUnique__1_"] = { affix = "", "Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them", statOrder = { 7979 }, level = 100, group = "LeftRingCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RightRingCoveredInFrostUnique__1"] = { affix = "", "Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them", statOrder = { 8006 }, level = 1, group = "RightRingCoveredInFrost", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeLossReservesLifeUnique__1"] = { affix = "", "Life that would be lost by taking Damage is instead Reserved", "until you take no Damage to Life for 2 seconds", statOrder = { 9921, 9921.1 }, level = 1, group = "LifeLossReservesLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackCorrosionOnHitChanceUnique__1"] = { affix = "", "(20-30)% chance to inflict Corrosion on Hit with Attacks", statOrder = { 4917 }, level = 1, group = "AttackCorrosionOnHitChance", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["EnduranceChargeNoArmourUnique__1_"] = { affix = "", "(20-30)% chance to gain an Endurance Charge on Hitting an Enemy with no Armour", statOrder = { 6360 }, level = 1, group = "EnduranceChargeNoArmour", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["FrenzyChargeNoEvasionRatingUnique__1"] = { affix = "", "(20-30)% chance to gain a Frenzy Charge on Hitting an Enemy with no Evasion Rating", statOrder = { 6672 }, level = 1, group = "FrenzyChargeNoEvasionRating", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["BowAttacksFrenzyChargesArrowsUnique__1"] = { affix = "", "Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows", statOrder = { 1793 }, level = 1, group = "BowAttacksFrenzyChargesArrows", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["CriticalStrikeMultiplierFrenzyChargesUnique__1"] = { affix = "", "+(30-50)% Global Critical Strike Multiplier while you have a Frenzy Charge", statOrder = { 2054 }, level = 1, group = "CriticalStrikeMultiplierFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["FrenzyChargePerEnemyCritUnique__1"] = { affix = "", "(20-40)% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike", statOrder = { 6763 }, level = 1, group = "FrenzyChargePerEnemyCrit", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["MoreMaximumReservedLifeUnique__1"] = { affix = "", "(20-30)% more Maximum Life", statOrder = { 10501 }, level = 1, group = "MoreMaximumReservedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["PuzzlePieceCleansingFireUnique__1"] = { affix = "", "Allocates 1 if you have the matching modifier on Forbidden Flesh", statOrder = { 10499 }, level = 1, group = "PuzzlePieceCleansingFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PuzzlePieceGreatTangleUnique__1"] = { affix = "", "Allocates 1 if you have the matching modifier on Forbidden Flame", statOrder = { 10500 }, level = 1, group = "PuzzlePieceGreatTangle", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalNoEnergyShieldUnique__1"] = { affix = "", "Removes all Energy Shield", statOrder = { 2166 }, level = 1, group = "NoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["NearbyStationaryEnemiesGainVinesUnique__1"] = { affix = "", "Nearby stationary Enemies gain a Grasping Vine every 0.5 seconds", statOrder = { 4425 }, level = 1, group = "NearbyStationaryEnemiesGainVines", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainVinesOnCriticalStrikeUnique__1"] = { affix = "", "You gain 3 Grasping Vines when you take a Critical Strike", statOrder = { 4424 }, level = 1, group = "GainVinesOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AllDamagePoisonsGraspingVinesUnique__1"] = { affix = "", "All Damage inflicts Poison against Enemies affected by at least 3 Grasping Vines", statOrder = { 4426 }, level = 1, group = "AllDamagePoisonsGraspingVines", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReducedCriticalDamageTakenPoisonUnique__1"] = { affix = "", "You take (30-50)% reduced Extra Damage from Critical Strikes by Poisoned Enemies", statOrder = { 4428 }, level = 1, group = "ReducedCriticalDamageTakenPoison", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhysicalHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Physical Damage taken as Fire Damage", statOrder = { 9669 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhysicalHitAndDoTDamageTakenAsFireUnique__2"] = { affix = "", "40% of Physical Damage taken as Fire Damage", statOrder = { 9669 }, level = 1, group = "PhysicalHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ColdHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Cold Damage taken as Fire Damage", statOrder = { 5825 }, level = 1, group = "ColdHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightningHitAndDoTDamageTakenAsFireUnique__1"] = { affix = "", "(10-20)% of Lightning Damage taken as Fire Damage", statOrder = { 7459 }, level = 1, group = "LightningHitAndDoTDamageTakenAsFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ScorchOnEnemiesOnBlockUnique__1"] = { affix = "", "Scorch Enemies in Close Range when you Block", statOrder = { 9963 }, level = 1, group = "ScorchOnEnemiesOnBlock", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackBlockPerFireDamageTakenUnique__1"] = { affix = "", "-1% Chance to Block Attack Damage for every 200 Fire Damage taken from Hits Recently", statOrder = { 4836 }, level = 1, group = "AttackBlockPerFireDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["InfernalCryThresholdJewel"] = { affix = "", "With at least 40 Strength in Radius, Combust is Disabled", "With at least 40 Strength in Radius, Attacks Exerted by Infernal Cry deal (40-60)% more Damage with Ignite", statOrder = { 7957, 7971 }, level = 1, group = "InfernalCryThresholdJewel", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Chaos Damage taken does not bypass Energy Shield", statOrder = { 5002 }, level = 99, group = "ChaosDamageDoesNotBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NonChaosDamageBypassEnergyShieldPercentUnique__1"] = { affix = "", "33% of Non-Chaos Damage taken bypasses Energy Shield", statOrder = { 644 }, level = 1, group = "NonChaosDamageBypassEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KillEnemyInstantlyExarchDominantUnique__1"] = { affix = "", "Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant", statOrder = { 7977 }, level = 77, group = "KillEnemyInstantlyExarchDominant", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MalignantMadnessCritEaterDominantUnique__1"] = { affix = "", "Critical Strikes inflict Malignant Madness if The Eater of Worlds is dominant", statOrder = { 7947 }, level = 77, group = "MalignantMadnessCritEaterDominant", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SocketedWarcryCooldownCountUnique__1"] = { affix = "", "Socketed Warcry Skills have +1 Cooldown Use", statOrder = { 583 }, level = 1, group = "SocketedWarcryCooldownCount", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TakePhysicalDamagePerWarcryExertingUnique__1"] = { affix = "", "When you Attack, take (15-20)% of Life as Physical Damage for", "each Warcry Exerting the Attack", statOrder = { 9977, 9977.1 }, level = 1, group = "TakePhysicalDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MoreDamagePerWarcryExertingUnique__1"] = { affix = "", "Skills deal (10-15)% more Damage for each Warcry Exerting them", statOrder = { 10494 }, level = 1, group = "MoreDamagePerWarcryExerting", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AllDamageCanChillUnique__1"] = { affix = "", "All Damage with Hits can Chill", statOrder = { 2860 }, level = 21, group = "AllDamageCanChill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AllDamageTakenCanChillUnique__1"] = { affix = "", "All Damage Taken from Hits can Chill you", statOrder = { 2863 }, level = 1, group = "AllDamageTakenCanChill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AllDamageTakenCanIgniteUnique__1"] = { affix = "", "All Damage Taken from Hits can Ignite you", statOrder = { 4630 }, level = 20, group = "AllDamageTakenCanIgnite", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChillHitsCauseShatteringUnique__1"] = { affix = "", "Enemies Chilled by your Hits can be Shattered as though Frozen", statOrder = { 5779 }, level = 1, group = "ChillHitsCauseShattering", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemiesChilledIncreasedDamageTakenUnique__1"] = { affix = "", "Enemies Chilled by your Hits have Damage taken increased by Chill Effect", statOrder = { 6369 }, level = 1, group = "EnemiesChilledIncreasedDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemiesChilledLessDamageDealtUnique__1"] = { affix = "", "Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect", statOrder = { 6368 }, level = 1, group = "EnemiesChilledLessDamageDealt", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainSoulEaterStackOnHitUnique__1"] = { affix = "", "Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.5 seconds", statOrder = { 6823 }, level = 1, group = "GainSoulEaterStackOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainSoulEaterStackOnRareOrUniqueKillWithWeaponUnique__1"] = { affix = "", "Eat (2-4) Souls when you Kill a Rare or Unique Enemy with this Weapon", statOrder = { 7936 }, level = 1, group = "GainSoulEaterStackOnRareOrUniqueKillWithWeapon", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulEaterStackCountUnique__1"] = { affix = "", "+(-10-10) to maximum number of Eaten Souls", statOrder = { 7264 }, level = 1, group = "SoulEaterStackCount", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeRegenerationNotAppliedUnique__1"] = { affix = "", "Life Recovery from Regeneration is not applied", statOrder = { 7390 }, level = 1, group = "LifeRegenerationNotApplied", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RageRegenerationPerLifeRegenerationUnique__1"] = { affix = "", "Regenerate 1 Rage per second for every 200 Life Recovery per second from Regeneration", "Does not delay Inherent Loss of Rage", statOrder = { 9891, 9891.1 }, level = 1, group = "RageRegenerationPerLifeRegeneration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnduringCrySkillUnique__1"] = { affix = "", "Grants Level 10 Enduring Cry Skill", statOrder = { 702 }, level = 1, group = "EnduringCrySkill", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["NearbyEnemiesAreBlindedUnique__1"] = { affix = "", "Nearby Enemies are Blinded", statOrder = { 3396 }, level = 10, group = "NearbyEnemiesAreBlinded", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellsDoubleDamageChanceUnique__1"] = { affix = "", "Spells have a 20% chance to deal Double Damage", statOrder = { 10136 }, level = 1, group = "SpellsDoubleDamageChance", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "damage", "caster" }, }, + ["CoverInAshOnHitUnique__1"] = { affix = "", "10% chance to Cover Enemies in Ash on Hit", statOrder = { 5893 }, level = 1, group = "CoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GrantsTouchOfFireUnique__1"] = { affix = "", "Grants Level 20 Approaching Flames Skill", statOrder = { 722 }, level = 1, group = "GrantsTouchOfFireSkill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainAdrenalineFireTouchedGainUnique__1"] = { affix = "", "Gain Adrenaline when you become Flame-Touched", statOrder = { 6717 }, level = 1, group = "GainAdrenalineFireTouchedGain", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LoseAdrenalineFireTouchedLossUnique__1"] = { affix = "", "Lose Adrenaline when you cease to be Flame-Touched", statOrder = { 8133 }, level = 1, group = "LoseAdrenalineFireTouchedLoss", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FireDamageTakenFireTouchedUnique__1"] = { affix = "", "Take 6000 Fire Damage per Second while Flame-Touched", statOrder = { 6572 }, level = 1, group = "FireDamageTakenFireTouched", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasOnslaughtUnique__1"] = { affix = "", "Onslaught", statOrder = { 3597 }, level = 1, group = "HasOnslaught", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionPhysicalConvertToColdUnique__1"] = { affix = "", "Minions convert 50% of Physical Damage to Cold Damage", statOrder = { 1958 }, level = 1, group = "MinionPhysicalConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionOnlyDealColdDamageUnique__1"] = { affix = "", "Minions deal no Non-Cold Damage", statOrder = { 9299 }, level = 1, group = "MinionOnlyDealColdDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeRegenerationFlatOnLowLifeUnique__1"] = { affix = "", "Regenerate 100 Life per Second while on Low Life", statOrder = { 7428 }, level = 1, group = "LifeRegenerationFlatOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TouchedByTormentedSpiritsUnique__1"] = { affix = "", "You can be Touched by Tormented Spirits", statOrder = { 9677 }, level = 1, group = "TouchedByTormentedSpirits", weightKey = { }, weightVal = { }, modTags = { }, }, + ["QuicksilverFlaskAppliesToAlliesUnique__1"] = { affix = "", "Quicksilver Flasks you Use also apply to nearby Allies", statOrder = { 9780 }, level = 1, group = "QuicksilverFlaskAppliesToAllies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ColdAddedAsFireChilledEnemyUnique__1"] = { affix = "", "Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy", statOrder = { 5802 }, level = 1, group = "ColdAddedAsFireChilledEnemy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ColdAddedAsFireFrozenEnemyUnique__1"] = { affix = "", "Gain 30% of Cold Damage as Extra Fire Damage against Frozen Enemies", statOrder = { 5803 }, level = 1, group = "ColdAddedAsFireFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LightningAddedAsColdShockedEnemyUnique__1"] = { affix = "", "Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy", statOrder = { 7446 }, level = 1, group = "LightningAddedAsColdShockedEnemy", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DoubleDamageWith200StrengthUnique__1"] = { affix = "", "10% chance to deal Double Damage while you have at least 200 Strength", statOrder = { 5657 }, level = 1, group = "DoubleDamageWith200Strength", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TripleDamageWith400StrengthUnique__1"] = { affix = "", "5% chance to deal Triple Damage while you have at least 400 Strength", statOrder = { 5669 }, level = 1, group = "TripleDamageWith400Strength", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BlockChanceVersusCursedEnemiesUnique__1"] = { affix = "", "+20% Chance to Block Attack Damage from Cursed Enemies", statOrder = { 5226 }, level = 1, group = "BlockChanceVersusCursedEnemies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ApplyDecayOnCurseUnique__1"] = { affix = "", "Inflict Decay on Enemies you Curse with Hex Skills, dealing 700 Chaos Damage per Second for 8 Seconds", statOrder = { 6139 }, level = 1, group = "ApplyDecayOnCurse", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FrenzyChargeOnHitBlindedUnique__1"] = { affix = "", "(10-20)% chance to gain a Frenzy Charge on Hit while Blinded", statOrder = { 6757 }, level = 1, group = "FrenzyChargeOnHitBlinded", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RecoverLifeOnSuppressUnique__1"] = { affix = "", "Recover (100-200) Life when you Suppress Spell Damage", statOrder = { 9849 }, level = 1, group = "RecoverLifeOnSuppress", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhasingOnLowLifeUnique__1"] = { affix = "", "You have Phasing while on Low Life", statOrder = { 6800 }, level = 1, group = "PhasingOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElusiveOnLowLifeUnique__1"] = { affix = "", "Gain Elusive on reaching Low Life", statOrder = { 6744 }, level = 1, group = "ElusiveOnLowLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KnockbackDistanceUnique__1"] = { affix = "", "100% increased Knockback Distance", statOrder = { 2002 }, level = 1, group = "KnockbackDistance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StrikeSkillKnockbackUnique__1"] = { affix = "", "Melee Hits with Strike Skills always Knockback", statOrder = { 10259 }, level = 1, group = "StrikeSkillKnockback", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MeleeSplashUnique__1"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 1168 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AdrenalineOnKillUnique__1"] = { affix = "", "Gain Adrenaline for (1-3) second on Kill", statOrder = { 6714 }, level = 38, group = "AdrenalineOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeCostAsManaCostUnique__1"] = { affix = "", "Skills gain a Base Life Cost equal to 100% of Base Mana Cost", statOrder = { 5048 }, level = 1, group = "LifeCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnergyShieldCostAsManaCostUnique__1"] = { affix = "", "Skills gain a Base Energy Shield Cost equal to 200% of Base Mana Cost", statOrder = { 5047 }, level = 1, group = "EnergyShieldCostAsManaCost", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BowAttacksCullingStrikeUnique__1"] = { affix = "", "Bow Attacks have Culling Strike", statOrder = { 5263 }, level = 1, group = "BowAttacksCullingStrike", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MovementVelocityPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, 1% increased Movement Speed", statOrder = { 9410 }, level = 1, group = "MovementVelocityPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["FlatLifeRegenerationPerNearbyCorpseUnique__1"] = { affix = "", "For each nearby corpse, Regenerate 8 Life per second", statOrder = { 7398 }, level = 1, group = "FlatLifeRegenerationPerNearbyCorpse", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["WeaponAddedLightningDamagePerEnergyShieldUnique__1"] = { affix = "", "Attacks with this Weapon have Added Maximum Lightning Damage equal to (10-15)% of Player's Maximum Energy Shield", statOrder = { 6467 }, level = 1, group = "WeaponAddedLightningDamagePerEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SkillsExertAttacksDoNotCountChanceUnique__1"] = { affix = "", "Skills which Exert an Attack have (20-40)% chance to not count that Attack", statOrder = { 5541 }, level = 1, group = "SkillsExertAttacksDoNotCountChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotHaveNonSpectreMinionsUnique__1"] = { affix = "", "You cannot have Non-Spectre Minions", statOrder = { 10658 }, level = 1, group = "CannotHaveNonSpectreMinions", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinimumChargesEqualToMaximumWhileStationaryUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5886, 5886.1, 5886.2 }, level = 1, group = "MinimumChargesEqualToMaximumWhileStationary", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ThrowTrapsInCircleUnique__1"] = { affix = "", "Traps from Skills are thrown randomly around targeted location", statOrder = { 10509 }, level = 1, group = "ThrowTrapsInCircleSunblast", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TrapsCannotBeTriggeredByEnemiesUnique__1"] = { affix = "", "Traps cannot be triggered by Enemies", statOrder = { 10421 }, level = 1, group = "TrapsCannotBeTriggeredByEnemies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalTrapsThrownUnique__1"] = { affix = "", "Skills which Throw Traps throw up to 2 additional Traps", statOrder = { 9528 }, level = 1, group = "AdditionalTrapsThrown", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FreezeEnemiesWhenHitChanceUnique__1"] = { affix = "", "20% chance to Freeze Enemies for 1 second when they Hit you", statOrder = { 5679 }, level = 1, group = "FreezeEnemiesWhenHitChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AddedChaosDamagePerCurseUnique__1"] = { affix = "", "Adds 37 to 71 Chaos Damage for each Curse on the Enemy", statOrder = { 9225 }, level = 1, group = "AddedChaosDamagePerCurse", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GolemsAddedPhysicalDamageUnique__1"] = { affix = "", "Golems have (96-120) to (132-160) Added Attack Physical Damage", statOrder = { 6892 }, level = 1, group = "GolemsAddedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainMaximumEnduranceChargesWhenCritUnique__1"] = { affix = "", "Gain up to maximum Endurance Charges when you take a Critical Strike", statOrder = { 6770 }, level = 1, group = "GainMaximumEnduranceChargesWhenCrit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ShareMaximumEnduranceChargesPartyUnique__1"] = { affix = "", "Your nearby party members maximum Endurance Charges is equal to yours", statOrder = { 9465 }, level = 1, group = "ShareMaximumEnduranceChargesParty", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SkeletonWarriorsPermanentMinionUnique__1"] = { affix = "", "Summoned Skeleton Warriors are Permanent and Follow you", "Summon Skeletons cannot Summon more than 1 Skeleton Warrior", statOrder = { 10051, 10051.1 }, level = 1, group = "SkeletonWarriorsPermanentMinion", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ConsecratedGroundStationarySTRHighestUnique__1"] = { affix = "", "You have Consecrated Ground around you while", "stationary if Strength is your highest Attribute", statOrder = { 5857, 5857.1 }, level = 1, group = "ConsecratedGroundStationarySTRHighest", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ProfaneGroundCriticalStrikeINTHighestUnique__1"] = { affix = "", "25% chance to create Profane Ground on Critical", "Strike if Intelligence is your highest Attribute", statOrder = { 9725, 9725.1 }, level = 1, group = "ProfaneGroundCriticalStrikeINTHighest", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ConsecratedGroundLingersUnique__1"] = { affix = "", "Effects of Consecrated Ground you create Linger for 4 seconds", statOrder = { 10689 }, level = 1, group = "ConsecratedGroundLingers", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ProfaneGroundLingersUnique__1"] = { affix = "", "Effects of Profane Ground you create Linger for 4 seconds", statOrder = { 10694 }, level = 1, group = "ProfaneGroundLingers", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RandomProjectileDirectionUnique__1"] = { affix = "", "Projectiles are fired in random directions", statOrder = { 9827 }, level = 60, group = "RandomProjectileDirection", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ReturningProjectilesUnique__1"] = { affix = "", "Projectiles Return to you", statOrder = { 2823 }, level = 1, group = "ReturningProjectilesNoHitObject", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeLossToPreventDuringFlaskEffectToLoseOverTimeUnique__1"] = { affix = "", "When Hit during effect, 25% of Life loss from Damage taken occurs over 4 seconds instead", statOrder = { 10502 }, level = 75, group = "LifeLossToPreventDuringFlaskEffectToLoseOverTime", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemyExplosionRandomElementFlaskEffectUnique__1"] = { affix = "", "Enemies you Kill during Effect have a (20-30)% chance to Explode, dealing a tenth of their maximum Life as Damage of a Random Element", statOrder = { 1021 }, level = 71, group = "EnemyExplosionRandomElementFlaskEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CastSpeedAppliesToAttackSpeedUnique__1"] = { affix = "", "Increases and Reductions to Cast Speed apply to Attack Speed", statOrder = { 10493 }, level = 1, group = "CastSpeedAppliesToAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellImpaleOnCritChanceUnique__1"] = { affix = "", "Critical Strikes with Spells inflict Impale", statOrder = { 10161 }, level = 1, group = "SpellImpaleOnCritChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellImpaleEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Impales inflicted with Spells", statOrder = { 7245 }, level = 1, group = "SpellImpaleEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["YouCannotImpaleTheImpaledUnique_1UNUSED"] = { affix = "", "[DNT] Impaled Enemies Cannot be Impaled", statOrder = { 10659 }, level = 1, group = "ImpaledEnemiesCannotBeImpaled", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HitsCannotInflictMoreThanOneImpale_1UNUSED"] = { affix = "", "Your Hits cannot inflict more than 1 Impale", statOrder = { 7160 }, level = 100, group = "CannotInflictMoreThanOneImpale", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ImpalesInflictedLastAdditionalHitsUnique_1UNUSED"] = { affix = "", "Impales you inflict last (3-6) additional Hits", statOrder = { 7255 }, level = 1, group = "ImpaleLastsForExtraHits", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceMeleeHitsDontRemoveSTRONGESTImpaleUnique_1"] = { affix = "", "(20-30)% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit", statOrder = { 7258 }, level = 100, group = "ChanceMeleeHitsDontConsumeStrongestImpale", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["ImpaleDurationUnique_1"] = { affix = "", "(40-50)% less Impale Duration", statOrder = { 8013 }, level = 1, group = "ImpaledDebuffDurationFromWoeSpike", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceMeleeHitsDontConsumeImpalesUnique_1UNUSED"] = { affix = "", "(45-60)% chance on Melee Hit for all Impales on the Enemy to last for an additional Hit", statOrder = { 7257 }, level = 1, group = "ChanceMeleeHitsDontConsumeImpale", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AncestorTotemBuffLingersUnique__1"] = { affix = "", "Ancestral Bond", statOrder = { 10769 }, level = 1, group = "AncestralBond", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["OneAncestorTotemBuffUnique__1"] = { affix = "", "Socketed Slam Gems are Supported by Level 25 Earthbreaker", statOrder = { 262 }, level = 1, group = "OneAncestorTotemBuff", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageTakenFromTotemLifeBeforePlayerUnique__1"] = { affix = "", "(3-5)% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6094 }, level = 1, group = "DamageTakenFromTotemLifeBeforePlayer", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalDamageReductionChaosResistUnique__1"] = { affix = "", "Gain additional Elemental Damage Reduction equal to half your Chaos Resistance", statOrder = { 4065 }, level = 65, group = "ElementalDamageReductionChaosResist", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SelfIgniteDurationAllElementalAilmentsUnique__1"] = { affix = "", "Modifiers to Ignite Duration on you apply to all Elemental Ailments", statOrder = { 6932 }, level = 1, group = "SelfIgniteDurationAllElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ShockAvoidanceAllElementalAilmentsUnique__1"] = { affix = "", "Modifiers to Chance to Avoid being Shocked apply to all Elemental Ailments", statOrder = { 6930 }, level = 1, group = "ShockAvoidanceAllElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CurseLimitMaximumPowerChargesUnique__1"] = { affix = "", "Your Curse Limit is equal to your maximum Power Charges", statOrder = { 6931 }, level = 1, group = "CurseLimitMaximumPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PowerChargeOnCurseUnique__1"] = { affix = "", "(10-20)% chance to gain a Power Charge when you Cast a Curse Spell", statOrder = { 6804 }, level = 1, group = "PowerChargeOnCurse", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ImmuneToCursesRemainingDurationUnique__1"] = { affix = "", "When you Kill an Enemy Cursed with a Non-Aura Hex, become Immune to", "Curses for remaining Hex Duration", statOrder = { 7220, 7220.1 }, level = 1, group = "ImmuneToCursesRemainingDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellCritChanceEqualsWeaponCritChanceUnique__1"] = { affix = "", "Base Spell Critical Strike Chance of Spells is equal to that of Main Hand Weapon", statOrder = { 5050 }, level = 1, group = "SpellCritChanceEqualsWeaponCritChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttacksCannotCritUnique__1"] = { affix = "", "Cannot deal Critical Strikes with Attacks", statOrder = { 5430 }, level = 1, group = "AttacksCannotCrit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CursedEnemiesCannotInflictElementalAilmentsUnique__1"] = { affix = "", "Cursed Enemies cannot inflict Elemental Ailments on You", statOrder = { 5442 }, level = 30, group = "CursedEnemiesCannotInflictElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AvoidInterruptionWhileCastingUnique__1"] = { affix = "", "Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumCritChanceIs50Unique__1"] = { affix = "", "Maximum Critical Strike Chance is 50%", statOrder = { 9129 }, level = 1, group = "MaximumCritChanceIs50", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DealNoElementalPhysicalDamageUnique__1"] = { affix = "", "Deal no Physical or Elemental Damage", statOrder = { 6143 }, level = 1, group = "DealNoElementalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TemporalChainsCooldownRecoveryUnique__1"] = { affix = "", "(20-25)% increased Cooldown Recovery Rate if you've cast Temporal Chains in the past 10 seconds", statOrder = { 5869 }, level = 1, group = "TemporalChainsCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TemporalChainsCannotBeSlowedUnique__1"] = { affix = "", "Action Speed cannot be modified to below Base Value if you've cast Temporal Chains in the past 10 seconds", statOrder = { 4526 }, level = 1, group = "TemporalChainsCannotBeSlowed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DespairWitherOnHitUnique__1"] = { affix = "", "Inflict Withered for 2 seconds on Hit if you've cast Despair in the past 10 seconds", statOrder = { 7282 }, level = 1, group = "DespairWitherOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DespairImmuneToCursesUnique__1"] = { affix = "", "Immune to Curses if you've cast Despair in the past 10 seconds", statOrder = { 7219 }, level = 1, group = "DespairImmuneToCurses", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalWeaknessPhysicalAsRandomElementUnique__1"] = { affix = "", "Gain (30-40)% of Physical Damage as a Random Element if you've cast Elemental Weakness in the past 10 seconds", statOrder = { 6801 }, level = 1, group = "ElementalWeaknessPhysicalAsRandomElement", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalWeaknessImmuneToExposureUnique__1"] = { affix = "", "Immune to Exposure if you've cast Elemental Weakness in the past 10 seconds", statOrder = { 7228 }, level = 1, group = "ElementalWeaknessImmuneToExposure", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnfeebleCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(30-40)% to Critical Strike Multiplier if you've cast Enfeeble in the past 10 seconds", statOrder = { 5975 }, level = 1, group = "EnfeebleCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnfeebleNoExtraCritDamageUnique__1"] = { affix = "", "Take no Extra Damage from Critical Strikes if you've cast Enfeeble in the past 10 seconds", statOrder = { 10352 }, level = 1, group = "EnfeebleNoExtraCritDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ConductivityUnaffectedByShockUnique__1"] = { affix = "", "You are Unaffected by Shock if you've cast Conductivity in the past 10 seconds", statOrder = { 10478 }, level = 1, group = "ConductivityUnaffectedByShock", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ConductivityLightningExposureOnHitUnique__1"] = { affix = "", "Inflict Lightning Exposure on Hit if you've cast Conductivity in the past 10 seconds", statOrder = { 7279 }, level = 1, group = "ConductivityLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlammabilityUnaffectedByIgniteUnique__1"] = { affix = "", "You are Unaffected by Ignite if you've cast Flammability in the past 10 seconds", statOrder = { 10475 }, level = 1, group = "FlammabilityUnaffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlammabilityFireExposureOnHitUnique__1"] = { affix = "", "Inflict Fire Exposure on Hit if you've cast Flammability in the past 10 seconds", statOrder = { 7274 }, level = 1, group = "FlammabilityFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FrostbiteUnaffectedByFreezeUnique__1"] = { affix = "", "You are Unaffected by Freeze if you've cast Frostbite in the past 10 seconds", statOrder = { 10471 }, level = 1, group = "FrostbiteUnaffectedByFreeze", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FrostbiteColdExposureOnHitUnique__1"] = { affix = "", "Cold Exposure on Hit if you've cast Frostbite in the past 10 seconds", statOrder = { 7272 }, level = 1, group = "FrostbiteColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PunishmentImmuneToReflectedDamageUnique__1"] = { affix = "", "Immune to Reflected Damage if you've cast Punishment in the past 10 seconds", statOrder = { 7236 }, level = 1, group = "PunishmentImmuneToReflectedDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PunishmentIntimidateOnHitUnique__1"] = { affix = "", "Intimidate Enemies on Hit if you've cast Punishment in the past 10 seconds", statOrder = { 7295 }, level = 1, group = "PunishmentIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["VulnerabilityUnaffectedByBleedUnique__1"] = { affix = "", "You are Unaffected by Bleeding if you've cast Vulnerability in the past 10 seconds", statOrder = { 10452 }, level = 1, group = "VulnerabilityUnaffectedByBleed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["VulnerabilityDoubleDamageUnique__1"] = { affix = "", "(6-10)% chance to deal Double Damage if you've cast Vulnerability in the past 10 seconds", statOrder = { 5667 }, level = 1, group = "VulnerabilityDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NearbyEnemyZeroChaosDamageResistanceUnique__1"] = { affix = "", "Nearby Enemies' Chaos Resistance is 0", "Chaos Resistance is Zero", statOrder = { 7917, 10726 }, level = 65, group = "NearbyEnemyZeroChaosDamageResistance", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["AllElementalDamageConvertedToChaosUnique__1"] = { affix = "", "All Elemental Damage Converted to Chaos Damage", statOrder = { 5868 }, level = 65, group = "ConvertAllElementalToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "damage", "elemental", "chaos" }, }, + ["NearbyEnemyReservesLifeUnique__1"] = { affix = "", "Reserves 8% of Life", "Nearby Enemy Monsters have at least 8% of Life Reserved", statOrder = { 2439, 7915 }, level = 1, group = "NearbyEnemyReservesLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChaosDamageOverTimeHealsLeechLifeUnique__1"] = { affix = "", "Taking Chaos Damage over Time heals you instead while Leeching Life", statOrder = { 5732 }, level = 53, group = "ChaosDamageOverTimeHealsLeechLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ModifiersToSuppressionApplyToAilmentAvoidUnique__1"] = { affix = "", "Modifiers to Chance to Suppress Spell Damage also apply to Chance to Avoid Elemental Ailments at 50% of their Value", statOrder = { 10182 }, level = 1, group = "ModifiersToSuppressionApplyToAilmentAvoid", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ShockEffectLeechingESUnique__1"] = { affix = "", "(60-100)% increased Effect of Shocks you inflict while Leeching Energy Shield", statOrder = { 10006 }, level = 1, group = "ShockEffectLeechingES", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChillEffectLeechingManaUnique__1"] = { affix = "", "(60-100)% increased Effect of Chills you inflict while Leeching Mana", statOrder = { 5767 }, level = 1, group = "ChillEffectLeechingMana", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnaffectedByShockLeechingESUnique__1"] = { affix = "", "Unaffected by Shock while Leeching Energy Shield", statOrder = { 10480 }, level = 1, group = "UnaffectedByShockLeechingES", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnaffectedByChillLeechingManaUnique__1"] = { affix = "", "Unaffected by Chill while Leeching Mana", statOrder = { 10460 }, level = 1, group = "UnaffectedByChillLeechingMana", weightKey = { }, weightVal = { }, modTags = { }, }, + ["QuiverModifierEffectUnique__1"] = { affix = "", "(150-250)% increased bonuses gained from Equipped Quiver", statOrder = { 9781 }, level = 1, group = "QuiverModifierEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeRegenerationPercentPerAilmentUnique__1"] = { affix = "", "Regenerate 2% of Life per second for each different Ailment affecting you", statOrder = { 7399 }, level = 18, group = "LifeRegenerationPercentPerAilment", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdrenalineOnFillingLifeLeechUnique__1"] = { affix = "", "10% chance to gain Adrenaline for 2 Seconds when Leech is", "removed by Filling Unreserved Life", statOrder = { 5683, 5683.1 }, level = 1, group = "AdrenalineOnFillingLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OnslaughtOnFillingLifeLeechUnique__1"] = { affix = "", "10% chance to gain Onslaught for 4 Seconds when Leech is", "removed by Filling Unreserved Life", statOrder = { 5692, 5692.1 }, level = 1, group = "OnslaughtOnFillingLifeLeech", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotBeStunnedSuppressedDamageUnique__1"] = { affix = "", "Cannot be Stunned by Suppressed Spell Damage", statOrder = { 5418 }, level = 1, group = "CannotBeStunnedSuppressedDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DebilitateEnemiesSuppressedDamageUnique__1"] = { affix = "", "Debilitate Enemies for 4 Seconds when you Suppress their Spell Damage", statOrder = { 6148 }, level = 1, group = "DebilitateEnemiesSuppressedDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunningHitsRecoverLifeUnique__1"] = { affix = "", "(20-30)% of Damage taken from Stunning Hits is Recovered as Life", statOrder = { 6113 }, level = 1, group = "StunningHitsRecoverLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StunningHitsRecoverEnergyShieldUnique__1"] = { affix = "", "50% of Damage taken from Stunning Hits is Recovered as Energy Shield", statOrder = { 6112 }, level = 1, group = "StunningHitsRecoverEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArmourAppliesToChaosDamageUnique__1"] = { affix = "", "Armour also applies to Chaos Damage taken from Hits", statOrder = { 4988 }, level = 1, group = "ArmourAppliesToChaosDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhysicalDamageBypassesEnergyShieldUnique__1"] = { affix = "", "Physical Damage taken bypasses Energy Shield", statOrder = { 9607 }, level = 1, group = "PhysicalDamageBypassesEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SuppressedDamageBypassEnergyShieldUnique_1"] = { affix = "", "(50-100)% of Suppressed Spell Damage taken bypasses Energy Shield", statOrder = { 1147 }, level = 80, group = "SuppressedDamageBypassesEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SuppressedDamageRecoupedAsEnergyShield_1"] = { affix = "", "(50-100)% of Suppressed Spell Damage taken Recouped as Energy Shield", statOrder = { 1148 }, level = 1, group = "SuppressedSpellDamageRecoupedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RecoverLifeAlteratingUnique__1"] = { affix = "", "Every 10 seconds:", "Gain 2% of Life per Enemy Hit with Attacks for 5 seconds", "Gain 5% of Life per Enemy Killed for 5 seconds", statOrder = { 10506, 10506.1, 10506.2 }, level = 62, group = "RecoverLifeAlterating", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LinkLoseNoExperienceUnique__1"] = { affix = "", "Lose no Experience when you die because a Linked target died", statOrder = { 7492 }, level = 55, group = "LinkLoseNoExperience", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LinkTargetCannotDieUnique__1"] = { affix = "", "Linked Targets Cannot Die for 2 seconds after you Die", statOrder = { 7491 }, level = 1, group = "LinkTargetCannotDie", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LinkSkillCastSpeedUnique__1"] = { affix = "", "Link Skills have (10-15)% increased Cast Speed", statOrder = { 7487 }, level = 1, group = "LinkSkillCastSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LinkSkillEffectDurationUnique__1"] = { affix = "", "Link Skills have (10-15)% increased Skill Effect Duration", statOrder = { 7489 }, level = 1, group = "LinkSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LinkSkillFlaskEffectsUnique__1"] = { affix = "", "Non-Unique Utility Flasks you Use apply to Linked Targets", statOrder = { 6645 }, level = 50, group = "LinkSkillFlaskEffects", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionWitherOnHitUnique__1"] = { affix = "", "Minions have 60% chance to inflict Withered on Hit", statOrder = { 9359 }, level = 1, group = "MinionWitherOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionCriticalStrikeMultiplierAgainstWitheredUnique__1"] = { affix = "", "Minions have +5% to Critical Strike Multiplier per Withered Debuff on Enemy", statOrder = { 9360 }, level = 1, group = "MinionCriticalStrikeMultiplierAgainstWithered", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BleedingExpiresSlowerWhileMovingUnique__1"] = { affix = "", "Bleeding on you expires 75% slower while Moving", statOrder = { 5109 }, level = 1, group = "BleedingExpiresSlowerWhileMoving", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotBeStunnedWhileBleedingUnique__1"] = { affix = "", "Cannot be Stunned while Bleeding", statOrder = { 5424 }, level = 1, group = "CannotBeStunnedWhileBleeding", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotBePoisonedWhileBleedingUnique__1"] = { affix = "", "Cannot be Poisoned while Bleeding", statOrder = { 5410 }, level = 1, group = "CannotBePoisonedWhileBleeding", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ExertedAttackDamageUnique__1"] = { affix = "", "Exerted Attacks deal 200% increased Damage", statOrder = { 6356 }, level = 1, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["ExertedAttackKnockbackChanceUnique__1"] = { affix = "", "Exerted Attacks Knock Enemies Back on Hit", statOrder = { 6506 }, level = 1, group = "ExertedAttackKnockbackChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalChanceToBleedUnique__1"] = { affix = "", "25% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AlwaysPierceBurningEnemiesUnique__1"] = { affix = "", "Projectiles Pierce all Burning Enemies", statOrder = { 4655 }, level = 1, group = "AlwaysPierceBurningEnemies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArrowAddedFireDamagePerEnemyPiercedUnique__1"] = { affix = "", "Arrows deal 30 to 50 Added Fire Damage for each time they've Pierced", statOrder = { 4779 }, level = 1, group = "ArrowAddedFireDamagePerEnemyPierced", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionLifeIncreasedByOvercappedFireResistanceUnique__1"] = { affix = "", "Minion Life is increased by their Overcapped Fire Resistance", statOrder = { 9311 }, level = 1, group = "MinionLifeIncreasedByOvercappedFireResistance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SupportedByInfernalLegionUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 30 Infernal Legion", statOrder = { 315 }, level = 1, group = "SupportedByInfernalLegion", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NearbyEnemiesCoveredInAshUnique__1"] = { affix = "", "Nearby Enemies are Covered in Ash", statOrder = { 7906 }, level = 1, group = "NearbyEnemiesCoveredInAsh", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ColdExposureAdditionalResistanceUnique__1"] = { affix = "", "Cold Exposure you inflict applies an extra -12% to Cold Resistance", statOrder = { 5824 }, level = 1, group = "ColdExposureAdditionalResistance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FreezeProliferationUnique__1"] = { affix = "", "Freezes you inflict spread to other Enemies within 1.5 metres", statOrder = { 2220 }, level = 1, group = "FreezeProliferationAmulet", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ShockProliferationUnique__2"] = { affix = "", "Shocks you inflict spread to other Enemies within 1.5 metres", statOrder = { 2223 }, level = 1, group = "ShockProliferationShield", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AddedLightningDamagePerDexterityUnique__1"] = { affix = "", "Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Dexterity", statOrder = { 4871 }, level = 1, group = "AddedLightningDamagePerDexterity", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["CriticalStrikeChancePerIntelligenceUnique__1"] = { affix = "", "5% increased Critical Strike Chance per 25 Intelligence", statOrder = { 5931 }, level = 1, group = "CriticalStrikeChancePerIntelligence", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeLeechFromAttacksPermyriadUnique__1"] = { affix = "", "1% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LightningNonCriticalStrikesLuckyUnique__1"] = { affix = "", "Lightning Damage with Non-Critical Strikes is Lucky", statOrder = { 6535 }, level = 1, group = "LightningNonCriticalStrikesLucky", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AddedFireDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (1-2) to (3-4) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedFireDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (5-10) to (11-13) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedFireDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (18-36) to (53-59) Fire Damage to Spells and Attacks", statOrder = { 1373 }, level = 1, group = "AddedFireDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "attack", "caster" }, }, + ["AddedColdDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (2-3) to (4-7) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (4-8) to (10-12) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedColdDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (14-29) to (42-47) Cold Damage to Spells and Attacks", statOrder = { 1374 }, level = 1, group = "AddedColdDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "attack", "caster" }, }, + ["AddedLightningDamageSpellsAndAttacksImplicit1"] = { affix = "", "Adds (1-2) to (9-11) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["AddedLightningDamageSpellsAndAttacksImplicit2"] = { affix = "", "Adds (1-2) to (22-24) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["AddedLightningDamageSpellsAndAttacksImplicit3"] = { affix = "", "Adds (3-5) to (70-82) Lightning Damage to Spells and Attacks", statOrder = { 1409 }, level = 1, group = "AddedLightningDamageSpellsAndAttacksImplicit", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "attack", "caster" }, }, + ["ItemCanHaveShieldWeaponTreeUnique1"] = { affix = "", "Has a Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8033, 8033.1 }, level = 1, group = "ItemCanHaveShieldWeaponTree", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemCanHaveTwoHandedSwordWeaponTreeUnique1"] = { affix = "", "Has a Two Handed Sword Crucible Passive Skill Tree", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8034, 8034.1 }, level = 1, group = "ItemCanHaveTwoHandedSwordWeaponTree", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ItemCanHaveSupportGemsOnlyTreeUnique1"] = { affix = "", "Has a Crucible Passive Skill Tree with only Support Passive Skills", "Crucible Passive Skill Tree is removed if this Modifier is removed", statOrder = { 8032, 8032.1 }, level = 1, group = "ItemCanHaveSupportGemsOnlyTree", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LowLifeInstantLifeRecoveryUnique__1"] = { affix = "", "Life Flasks used while on Low Life apply Recovery Instantly", statOrder = { 7350 }, level = 38, group = "LowLifeInstantLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["LowManaInstantManaRecoveryUnique__1"] = { affix = "", "Mana Flasks used while on Low Mana apply Recovery Instantly", statOrder = { 8174 }, level = 1, group = "LowManaInstantManaRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "mana" }, }, + ["IncreasedLifeNoLifeModifiersUnique__1"] = { affix = "", "+(700-1000) to maximum Life if there are no Life Modifiers on other Equipped Items", statOrder = { 9149 }, level = 1, group = "IncreasedLifeNoLifeModifiers", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["HinekoraButterflyEffectUnique__1"] = { affix = "", "Every 5 seconds, gain one of the following for 5 seconds:", "Your Hits are always Critical Strikes", "Hits against you are always Critical Strikes", "Attacks cannot Hit you", "Attacks against you always Hit", "Your Damage with Hits is Lucky", "Damage of Hits against you is Lucky", statOrder = { 7147, 7147.1, 7147.2, 7147.3, 7147.4, 7147.5, 7147.6 }, level = 62, group = "HinekoraButterflyEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SoulTattooEffectUnique__1"] = { affix = "", "100% increased effect of Tattoos in Radius", statOrder = { 8124 }, level = 1, group = "SoulTattooEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainSpellCostAsESUnique__1"] = { affix = "", "Spells cause you to gain Energy Shield equal to their Upfront", "Cost every fifth time you Pay it", statOrder = { 6824, 6824.1 }, level = 55, group = "GainSpellCostAsES", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "caster" }, }, + ["WarcrySpeedUnique__1"] = { affix = "", "(20-25)% increased Warcry Speed", statOrder = { 3277 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["WarcrySpeedUnique__2"] = { affix = "", "(25-35)% increased Warcry Speed", statOrder = { 3277 }, level = 1, group = "WarcrySpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["LocalTreatElementalResistanceAsInvertedUnique__1"] = { affix = "", "Treats Enemy Monster Elemental Resistance values as inverted", statOrder = { 8031 }, level = 1, group = "LocalTreatElementalResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["LocalTreatChaosResistanceAsInvertedUnique__1"] = { affix = "", "Treats Enemy Monster Chaos Resistance values as inverted", statOrder = { 2816 }, level = 1, group = "LocalTreatChaoslResistanceAsInverted", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["MinionsUseMainHandBaseCritUnique__1"] = { affix = "", "Minions' Base Attack Critical Strike Chance is equal to the Critical", "Strike Chance of your Main Hand Weapon", statOrder = { 9369, 9369.1 }, level = 1, group = "MinionsUseMainHandBaseCrit", weightKey = { }, weightVal = { }, modTags = { "minion", "critical" }, }, + ["TreatResistancesAsMaxChanceUnique__1"] = { affix = "", "(30-40)% chance for Elemental Resistances to count as being 90% against Enemy Hits", statOrder = { 6420 }, level = 1, group = "TreatResistancesAsMaxChance", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["TakeNoBurningDamageIfStopBurningUnique__1"] = { affix = "", "Take no Burning Damage if you've stopped taking Burning Damage Recently", statOrder = { 10353 }, level = 1, group = "TakeNoBurningDamageIfStopBurning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["GainMissingLifeOnHitUnique__1"] = { affix = "", "Gain (10-20)% of Missing Unreserved Life before being Hit by an Enemy", statOrder = { 9377 }, level = 62, group = "GainMissingLifeOnHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["UnaffectedByDamagingAilmentsUnique__1"] = { affix = "", "Unaffected by Damaging Ailments", statOrder = { 10466 }, level = 1, group = "UnaffectedByDamagingAilments", weightKey = { }, weightVal = { }, modTags = { "ailment" }, }, + ["NonExertedAttacksNoDamageUnique__1"] = { affix = "", "Non-Exerted Attacks deal no Damage", statOrder = { 9508 }, level = 1, group = "NonExertedAttacksNoDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeLeechInstantExertedAttacksUnique__1"] = { affix = "", "Life Leech from Exerted Attacks is instant", statOrder = { 7372 }, level = 1, group = "LifeLeechInstantExertedAttacks", weightKey = { }, weightVal = { }, modTags = { }, }, + ["QuiverChillAsThoughtDealingMoreDamageUnique__1"] = { affix = "", "Chill Enemies as though dealing (60-100)% more Damage", statOrder = { 10505 }, level = 1, group = "QuiverChillAsThoughtDealingMoreDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NgamahusEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kaom on Kill", statOrder = { 667 }, level = 62, group = "NgamahusEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KitavasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Utula on Kill", statOrder = { 666 }, level = 62, group = "KitavasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TukohamasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Akoya on Kill", statOrder = { 672 }, level = 62, group = "TukohamasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RongokuraisEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kahuturoa on Kill", statOrder = { 669 }, level = 62, group = "RongokuraisEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TasaliosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Rakiata on Kill", statOrder = { 670 }, level = 62, group = "TasaliosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArohonguisEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Ikiaho on Kill", statOrder = { 664 }, level = 62, group = "ArohonguisEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RamakosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Ahuana on Kill", statOrder = { 668 }, level = 62, group = "RamakosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HinekorasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Tawhanuku on Kill", statOrder = { 665 }, level = 62, group = "HinekorasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TawhoasEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Maata on Kill", statOrder = { 671 }, level = 62, group = "TawhoasEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ValakosEmbraceOnKillUnique__1"] = { affix = "", "10% chance to Trigger Summon Spirit of Kiloava on Kill", statOrder = { 673 }, level = 62, group = "ValakosEmbraceOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["NearbyEnemyPhysicalDamageConvertedToFire__1"] = { affix = "", "Nearby Enemies Convert 25% of their Physical Damage to Fire", statOrder = { 10727 }, level = 1, group = "NearbyEnemyPhysicalDamageConvertedToFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedLifeEmptyRedSocketUnique__1"] = { affix = "", "+40 to maximum Life for each Empty Red Socket on any Equipped Item", statOrder = { 4433 }, level = 60, group = "IncreasedLifeEmptyRedSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["IncreasedAccuracyEmptyGreenSocketUnique__1"] = { affix = "", "+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item", statOrder = { 4434 }, level = 1, group = "IncreasedAccuracyEmptyGreenSocket", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["IncreasedManaEmptyBlueSocketUnique__1"] = { affix = "", "+40 to maximum Mana for each Empty Blue Socket on any Equipped Item", statOrder = { 4435 }, level = 1, group = "IncreasedManaEmptyBlueSocket", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AllResistEmptyWhiteSocketUnique__1"] = { affix = "", "+18% to all Elemental Resistances for each Empty White Socket on any Equipped Item", statOrder = { 4436 }, level = 1, group = "AllResistEmptyWhiteSocket", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["LocalIncreaseSocketedGemLevelPerFilledSocketUnique__1"] = { affix = "", "-2 to level of Socketed Skill Gems per Socketed Gem", statOrder = { 8018 }, level = 1, group = "LocalIncreaseSocketedGemLevelPerFilledSocket", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CorruptedMagicJewelModEffectUnique__1"] = { affix = "", "(0-100)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels", statOrder = { 8101 }, level = 1, group = "CorruptedMagicJewelModEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumQualityOverrideUnique__1"] = { affix = "", "Maximum Quality is 200%", statOrder = { 7995 }, level = 1, group = "MaximumQualityOverride", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RandomMovementVelocityWhenHitUnique__1"] = { affix = "", "When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again", statOrder = { 9262 }, level = 1, group = "RandomMovementVelocityWhenHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemyElementalResistanceZeroWhenHitUnique__1"] = { affix = "", "When an Enemy Hit deals Elemental Damage to you, their Resistance to those Elements becomes zero for 4 seconds", statOrder = { 6422 }, level = 1, group = "EnemyElementalResistanceZeroWhenHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AvoidMaimChanceUnique__1"] = { affix = "", "You cannot be Maimed", statOrder = { 4947 }, level = 56, group = "AvoidMaimChance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SkeletonAddedChaosDamageShieldUnique__1"] = { affix = "", "Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield", statOrder = { 10695 }, level = 1, group = "SkeletonAddedChaosDamageShield", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalDamageTakenAsPhysicalUnique__1"] = { affix = "", "40% of Elemental Damage from Hits taken as Physical Damage", statOrder = { 6328 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalDamageTakenAsPhysicalUnique__2"] = { affix = "", "(15-30)% of Elemental Damage from Hits taken as Physical Damage", statOrder = { 6328 }, level = 1, group = "ElementalDamageTakenAsPhysical", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalDamageFromBlockedHitsUnique__1"] = { affix = "", "You take 100% of Elemental Damage from Blocked Hits", statOrder = { 5229 }, level = 1, group = "ElementalDamageFromBlockedHits", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellAddedChaosDamageMaximumLifeUnique__1"] = { affix = "", "Spells deal added Chaos Damage equal to (15-20)% of your maximum Life", statOrder = { 4547 }, level = 1, group = "SpellAddedChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeDegenerationGracePeriodUnique__1"] = { affix = "", "Lose 500 Life per second", statOrder = { 1575 }, level = 1, group = "LifeDegenerationGracePeriod", weightKey = { }, weightVal = { }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["SocketedGemsSupportedByLifetapUnique__1"] = { affix = "", "Socketed Gems are Supported by Level 1 Lifetap", statOrder = { 325 }, level = 1, group = "SocketedGemsSupportedByLifetap", weightKey = { }, weightVal = { }, modTags = { "skill", "gem" }, }, + ["CriticalStrikeMultiplierMonsterPowerUnique__1"] = { affix = "", "Hits with this Weapon have +10% to Critical Strike Multiplier per Enemy Power", statOrder = { 7162 }, level = 1, group = "CriticalStrikeMultiplierMonsterPower", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LeechInstantMonsterPowerUnique__1"] = { affix = "", "5% of Leech from Hits with this Weapon is Instant per Enemy Power", statOrder = { 7163 }, level = 1, group = "LeechInstantMonsterPower", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainEnduranceChargeEverySecondUnique__1"] = { affix = "", "Lose an Endurance Charge each second", statOrder = { 6699 }, level = 1, group = "GainEnduranceChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainFrenzyChargeEverySecondUnique__1"] = { affix = "", "Lose a Frenzy Charge each second", statOrder = { 6702 }, level = 1, group = "GainFrenzyChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainPowerChargeEverySecondUnique__1"] = { affix = "", "Lose a Power Charge each second", statOrder = { 6705 }, level = 1, group = "GainPowerChargeEverySecond", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TinctureCriticalStrikeChanceImplicit1"] = { affix = "", "(100-150)% increased Critical Strike Chance with Melee Weapons", statOrder = { 10883 }, level = 1, group = "TinctureCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["TinctureElementalDamageImplicit1"] = { affix = "", "(70-100)% increased Elemental Damage with Melee Weapons", statOrder = { 10885 }, level = 1, group = "TinctureElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["TinctureStunThresholdImplicit1"] = { affix = "", "40% reduced Enemy Stun Threshold with Melee Weapons", "(15-25)% increased Stun Duration with Melee Weapons", statOrder = { 10860, 10919 }, level = 1, group = "TinctureStunThresholdDuration", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["TinctureChanceToIgniteImplicit1"] = { affix = "", "25% chance to Ignite with Melee Weapons", "(60-90)% increased Damage with Ignite from Melee Weapons", statOrder = { 10878, 10892 }, level = 1, group = "TinctureChanceToIgniteDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack", "ailment" }, }, + ["TinctureChanceToFreezeImplicit1"] = { affix = "", "25% chance to Freeze with Melee Weapons", "(25-35)% increased Effect of Chill from Melee Weapons", statOrder = { 10877, 10881 }, level = 1, group = "TinctureChanceToFreezeEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack", "ailment" }, }, + ["TinctureChanceToShockImplicit1"] = { affix = "", "25% chance to Shock with Melee Weapons", "(25-35)% increased Effect of Shock from Melee Weapons", statOrder = { 10880, 10915 }, level = 1, group = "TinctureChanceToShockEffect", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack", "ailment" }, }, + ["TinctureChanceToPoisonImplicit1"] = { affix = "", "20% chance to Poison with Melee Weapons", "(60-90)% increased Damage with Poison from Melee Weapons", statOrder = { 10879, 10902 }, level = 1, group = "TinctureChanceToPoisonDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["TinctureChanceToBleedImplicit1"] = { affix = "", "20% chance to cause Bleeding with Melee Weapons", "(60-90)% increased Damage with Bleeding from Melee Weapons", statOrder = { 10861, 10873 }, level = 1, group = "TinctureChanceToBleedDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["TinctureRageOnHitImplicit1"] = { affix = "", "Gain 3 Rage on Melee Weapon Hit", statOrder = { 10890 }, level = 1, group = "TinctureRageOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["TinctureChanceToBlindImplicit1"] = { affix = "", "25% chance to Blind Enemies on Hit with Melee Weapons", "(25-35)% increased Effect of Blind from Melee Weapons", statOrder = { 10862, 10874 }, level = 1, group = "TinctureChanceToBlindEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["TinctureToxicityRateUnique__1"] = { affix = "", "(15-25)% reduced Mana Burn rate", statOrder = { 10905 }, level = 1, group = "TinctureToxicityRate", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TinctureToxicityRateUnique__2"] = { affix = "", "(-35-35)% reduced Mana Burn rate", statOrder = { 10905 }, level = 1, group = "TinctureToxicityRate", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TinctureCooldownRecoveryUnique__1"] = { affix = "", "(20-40)% increased Cooldown Recovery Rate", statOrder = { 10903 }, level = 1, group = "TinctureCooldownRecovery", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TinctureMeleeSplashOnWeaponHitUnique__1"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 10896 }, level = 1, group = "MeleeSplashOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["TinctureGraspingVineOnWeaponHitUnique__1"] = { affix = "", "(20-30)% chance to inflict a Grasping Vine on Melee Weapon Hit", statOrder = { 10875 }, level = 1, group = "GraspingVineOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["TinctureApplyWitherStacksOnHitUnique__1"] = { affix = "", "Melee Weapon Hits Inflict (2-3) Withered Debuffs for 2 seconds", statOrder = { 10871 }, level = 1, group = "WeaponApplyWitherStacksOnHit", weightKey = { }, weightVal = { }, modTags = { "chaos", "attack" }, }, + ["TinctureToxicityOnHitUnique__1"] = { affix = "", "Does not inflict Mana Burn over time", "Inflicts Mana Burn on you when you Hit an Enemy with a Melee Weapon", statOrder = { 10863, 10864 }, level = 1, group = "TinctureToxicityOnHit", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["TinctureRarityPerToxicityUnique__1"] = { affix = "", "(1-5)% increased Rarity of Items found per Mana Burn, up to a maximum of 100%", statOrder = { 10865 }, level = 1, group = "TinctureRarityPerToxicity", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TincturePenetrationPerToxicityUnique__1"] = { affix = "", "Melee Weapon Damage Penetrates 1% Elemental Resistances per Mana Burn, up to a maximum of 200%", statOrder = { 10900 }, level = 1, group = "TincturePenetrationPerToxicity", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["TinctureCullingStrikeUnique__1"] = { affix = "", "Melee Weapon Attacks have Culling Strike", statOrder = { 10884 }, level = 1, group = "WeaponCullingStrike", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["TinctureCoverInAshOnFullLifeUnique__1"] = { affix = "", "Cover Full Life Enemies in Ash for (4-10) seconds on Melee Weapon Hit", statOrder = { 10936 }, level = 1, group = "WeaponCoverInAshVsFullLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "attack" }, }, + ["TinctureRefreshIgniteDurationUnique__1"] = { affix = "", "(15-25)% chance to refresh Ignite Duration on Melee Weapon Hit", statOrder = { 10913 }, level = 1, group = "RefreshIgniteDurationOnWeaponHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TinctureFireDamageTakenPerToxicityUnique__1"] = { affix = "", "-1 Fire Damage taken from Hits per Mana Burn", statOrder = { 10887 }, level = 1, group = "TinctureFireDamageTakenPerToxicity", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["CountAsHavingMaxEnduranceFrenzyPowerCharges1"] = { affix = "", "Count as having maximum number of Endurance Charges", "Count as having maximum number of Frenzy Charges", "Count as having maximum number of Power Charges", statOrder = { 5886, 5886.1, 5886.2 }, level = 1, group = "CountAsHavingMaxEnduranceFrenzyPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumFortificationUnique__1"] = { affix = "", "+(1-10) to maximum Fortification", statOrder = { 5031 }, level = 1, group = "MaximumFortification", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StrikeSkillsFortifyOnHitUnique__1"] = { affix = "", "Melee Hits from Strike Skills Fortify", statOrder = { 10258 }, level = 1, group = "StrikeSkillsFortify", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackSpeedPerFortificationUnique__1"] = { affix = "", "1% increased Attack Speed per Fortification", statOrder = { 4888 }, level = 1, group = "AttackSpeedPerFortification", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RageCasterStatsUnique__1"] = { affix = "", "Rage grants Spell Damage instead of Attack Damage", statOrder = { 9796 }, level = 1, group = "RageCasterStats", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainRageOnManaSpentUnique__1"] = { affix = "", "Gain (7-10) Rage after Spending a total of 200 Mana", statOrder = { 6845 }, level = 1, group = "GainRageOnManaSpent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LifeFromEnergyShieldArmourUnique__1"] = { affix = "", "Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items", statOrder = { 6774 }, level = 1, group = "LifeFromEnergyShieldArmour", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskDurationPerLevelUnique__1"] = { affix = "", "2% reduced Flask Effect Duration per Level", statOrder = { 6637 }, level = 1, group = "FlaskDurationPerLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FlaskEffectPerLevelUnique__1"] = { affix = "", "Flasks applied to you have 1% increased Effect per Level", statOrder = { 6638 }, level = 1, group = "FlaskEffectPerLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GrantsRavenousSkillUnique__1"] = { affix = "", "Grants Level 20 Ravenous Skill", "Enemies display their Monster Category", statOrder = { 696, 744 }, level = 1, group = "GrantsRavenousSkill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalSacredWispUnique__1"] = { affix = "", "+1 to maximum number of Sacred Wisps", "+1 to number of Sacred Wisps Summoned", statOrder = { 5036, 5036.1 }, level = 1, group = "AdditionalSacredWisp", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackCriticalStrikesUnnerveUnique__1"] = { affix = "", "Attacks inflict Unnerve on Critical Strike for 4 seconds", statOrder = { 4919 }, level = 1, group = "AttackCriticalStrikesUnnerve", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellCriticalStrikesIntimidateUnique__1"] = { affix = "", "Spells inflict Intimidate on Critical Strike for 4 seconds", statOrder = { 10193 }, level = 1, group = "SpellCriticalStrikesIntimidate", weightKey = { }, weightVal = { }, modTags = { }, }, + ["EnemiesCountAsMovingElementalAilmentsUnique__1"] = { affix = "", "You and Enemies in your Presence count as moving while affected by Elemental Ailments", statOrder = { 6384 }, level = 1, group = "EnemiesCountAsMovingElementalAilments", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionsHaveChargesYouHaveUnique__1"] = { affix = "", "Minions have the same maximum number of Endurance, Frenzy and Power Charges as you", "Minions count as having the same number of", "Endurance, Frenzy and Power Charges as you", statOrder = { 9361, 9362, 9362.1 }, level = 1, group = "MinionsHaveChargesYouHave", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AurasOnlyApplyToLinkedTargetUnique__1"] = { affix = "", "Linked Targets always count as in range of Non-Curse Auras from your Skills", "Non-Curse Auras from your Skills only apply to you and Linked Targets", statOrder = { 9495, 9495.1 }, level = 1, group = "AurasOnlyApplyToLinkedTarget", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AuraEffectWhileLinkedUnique__1"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target", statOrder = { 9494 }, level = 1, group = "AuraEffectWhileLinked", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumSpectrePerGhastlyEyeUnique__1"] = { affix = "", "+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel", statOrder = { 4587 }, level = 1, group = "MaximumSpectrePerGhastlyEye", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HeraldReservationEfficiencyUnique__1"] = { affix = "", "10% increased Mana Reservation Efficiency of Herald Skills", statOrder = { 7131 }, level = 80, group = "HeraldReservationEfficiency", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueJewelNodeIncreasedLifeUnique__1"] = { affix = "", "Passive Skills in Radius also grant +5 to maximum Life", statOrder = { 8104 }, level = 1, group = "UniqueJewelNodeIncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["UniqueJewelNodeIncreasedManaUnique__1"] = { affix = "", "Passive Skills in Radius also grant +5 to maximum Mana", statOrder = { 8105 }, level = 1, group = "UniqueJewelNodeIncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["UniqueJewelNodeCriticalStrikeChanceUnique__1"] = { affix = "", "Passive Skills in Radius also grant 5% increased Global Critical Strike Chance", statOrder = { 8108 }, level = 1, group = "UniqueJewelNodeCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["UniqueJewelNodeAllAttributesUnique__1"] = { affix = "", "Passive Skills in Radius also grant +2 to all Attributes", statOrder = { 8102 }, level = 1, group = "UniqueJewelNodeAllAttributes", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["UniqueJewelNodeChaosResistUnique__1"] = { affix = "", "Passive Skills in Radius also grant +4% to Chaos Resistance", statOrder = { 8103 }, level = 1, group = "UniqueJewelNodeChaosResist", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["UniqueJewelNodePhysicalDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Physical Damage", statOrder = { 8113 }, level = 1, group = "UniqueJewelNodePhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["UniqueJewelNodeFireDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Fire Damage", statOrder = { 8110 }, level = 1, group = "UniqueJewelNodeFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["UniqueJewelNodeColdDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Cold Damage", statOrder = { 8107 }, level = 1, group = "UniqueJewelNodeColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["UniqueJewelNodeLightningDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Lightning Damage", statOrder = { 8111 }, level = 1, group = "UniqueJewelNodeLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["UniqueJewelNodeChaosDamageUnique__1"] = { affix = "", "Passive Skills in Radius also grant 6% increased Chaos Damage", statOrder = { 8106 }, level = 1, group = "UniqueJewelNodeChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["UniqueJewelNodeArmourUnique__1"] = { affix = "", "Passive Skills in Radius also grant 7% increased Armour", statOrder = { 8114 }, level = 1, group = "UniqueJewelNodeArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["UniqueJewelNodeEvasionUnique__1"] = { affix = "", "Passive Skills in Radius also grant 7% increased Evasion Rating", statOrder = { 8109 }, level = 1, group = "UniqueJewelNodeEvasion", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["UniqueJewelNodeEnergyShieldUnique__1"] = { affix = "", "Passive Skills in Radius also grant 3% increased Energy Shield", statOrder = { 8112 }, level = 1, group = "UniqueJewelNodeEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["RunecraftingFireDamage"] = { affix = "", "(10-20)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["RunecraftingColdDamage"] = { affix = "", "(10-20)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["RunecraftingLightningDamage"] = { affix = "", "(10-20)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["RitualRingPenanceMark"] = { affix = "", "Grants level 20 Penance Mark", statOrder = { 62 }, level = 63, group = "RitualRingPenanceMark", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RitualRingAffliction"] = { affix = "", "Grants level 20 Affliction", statOrder = { 60 }, level = 63, group = "RitualRingAffliction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RitualRingPacify"] = { affix = "", "Grants level 20 Pacify", statOrder = { 61 }, level = 63, group = "RitualRingPacify", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RitualRingCastSpeed"] = { affix = "", "(6-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["RitualRingLife"] = { affix = "", "+(30-60) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["RitualRingMana"] = { affix = "", "+(30-60) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["RitualRingEnergyShield"] = { affix = "", "+(30-60) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["KeyStoneRetaliationHitsUnique_1"] = { affix = "", "Arsenal of Vengeance", statOrder = { 10807 }, level = 1, group = "RetaliationHits", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ConvertBodyArmourEvasionToWardUnique__1"] = { affix = "", "Gain Ward instead of 50% of Armour and Evasion Rating from Equipped Body Armour", statOrder = { 10581 }, level = 66, group = "ConvertBodyArmourEvasionToWard", weightKey = { }, weightVal = { }, modTags = { "defences" }, }, + ["BlockIsLuckyUnique__1"] = { affix = "", "Chance to Block is Lucky", statOrder = { 4995 }, level = 1, group = "BlockIsLucky", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BlockIsUnluckyUnique__1"] = { affix = "", "Chance to Block is Unlucky", statOrder = { 4995 }, level = 1, group = "BlockIsLucky", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GrantsTawhoasChosenUnique__1"] = { affix = "", "Trigger Level 20 Tawhoa's Chosen when you Attack with", "a Non-Vaal Slam or Strike Skill near an Enemy", statOrder = { 714, 714.1 }, level = 1, group = "GrantsTawhoasChosen", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WarcryAreaOfEffectUnique__1"] = { affix = "", "Warcry Skills have (25-35)% increased Area of Effect", statOrder = { 10574 }, level = 1, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WarcryAreaOfEffectUnique__2"] = { affix = "", "Warcry Skills have (15-25)% increased Area of Effect", statOrder = { 10574 }, level = 75, group = "WarcryAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WarcryCorpseExplosionUnique__1"] = { affix = "", "Nearby corpses Explode when you Warcry, dealing (5-10)% of their Life as Physical Damage", statOrder = { 9447 }, level = 1, group = "WarcryCorpseExplosion", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TinctureRemoveToxicityOnKillUnique__1"] = { affix = "", "10% chance to remove 1 Mana Burn on Kill", statOrder = { 5719 }, level = 1, group = "TinctureRemoveToxicityOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalTinctureUnique__1"] = { affix = "", "You can have an additional Tincture active", statOrder = { 5384 }, level = 1, group = "AdditionalTincture", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ChanceToGainMaximumRageUnique__1"] = { affix = "", "(10-20)% chance that if you would gain Rage on Hit, you instead gain up to your maximum Rage", statOrder = { 6769 }, level = 1, group = "ChanceToGainMaximumRage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["VillageLocalPhysicalDamagePercent1"] = { affix = "", "(11-15)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, }, + ["VillageLocalPhysicalDamagePercent2"] = { affix = "", "(16-20)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, }, + ["VillageLocalPhysicalDamagePercent3"] = { affix = "", "(21-25)% increased Physical Damage", statOrder = { 1232 }, level = 1, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "village_runesmithing_enchant", "damage", "physical", "attack" }, }, + ["VillageLocalFireDamage1"] = { affix = "", "Adds (8-10) to (15-18) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, }, + ["VillageLocalFireDamage2"] = { affix = "", "Adds (12-17) to (25-29) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, }, + ["VillageLocalFireDamage3"] = { affix = "", "Adds (17-24) to (35-41) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, }, + ["VillageLocalFireDamageTwoHand1"] = { affix = "", "Adds (14-20) to (29-33) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, }, + ["VillageLocalFireDamageTwoHand2"] = { affix = "", "Adds (23-31) to (47-54) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, }, + ["VillageLocalFireDamageTwoHand3"] = { affix = "", "Adds (32-44) to (65-76) Fire Damage", statOrder = { 1362 }, level = 1, group = "LocalFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, }, + ["VillageLocalColdDamage1"] = { affix = "", "Adds (7-9) to (14-16) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, }, + ["VillageLocalColdDamage2"] = { affix = "", "Adds (11-15) to (23-26) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, }, + ["VillageLocalColdDamage3"] = { affix = "", "Adds (16-21) to (31-37) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, }, + ["VillageLocalColdDamageTwoHand1"] = { affix = "", "Adds (12-17) to (26-30) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, }, + ["VillageLocalColdDamageTwoHand2"] = { affix = "", "Adds (21-28) to (42-48) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, }, + ["VillageLocalColdDamageTwoHand3"] = { affix = "", "Adds (29-40) to (58-68) Cold Damage", statOrder = { 1371 }, level = 1, group = "LocalColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, }, + ["VillageLocalLightningDamage1"] = { affix = "", "Adds 2 to (25-29) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, }, + ["VillageLocalLightningDamage2"] = { affix = "", "Adds 2 to (41-48) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, }, + ["VillageLocalLightningDamage3"] = { affix = "", "Adds 3 to (57-67) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, }, + ["VillageLocalLightningDamageTwoHand1"] = { affix = "", "Adds 3 to (46-53) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, }, + ["VillageLocalLightningDamageTwoHand2"] = { affix = "", "Adds (4-5) to (76-88) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, }, + ["VillageLocalLightningDamageTwoHand3"] = { affix = "", "Adds (5-8) to (106-123) Lightning Damage", statOrder = { 1382 }, level = 1, group = "LocalLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning", "attack" }, }, + ["VillageLocalChaosDamage1"] = { affix = "", "Adds (7-9) to (14-16) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, }, + ["VillageLocalChaosDamage2"] = { affix = "", "Adds (11-15) to (23-26) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, }, + ["VillageLocalChaosDamage3"] = { affix = "", "Adds (16-21) to (31-37) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, }, + ["VillageLocalChaosDamageTwoHand1"] = { affix = "", "Adds (12-17) to (26-30) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, }, + ["VillageLocalChaosDamageTwoHand2"] = { affix = "", "Adds (21-28) to (42-48) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, }, + ["VillageLocalChaosDamageTwoHand3"] = { affix = "", "Adds (29-40) to (58-68) Chaos Damage", statOrder = { 1390 }, level = 1, group = "LocalChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "village_runesmithing_enchant", "damage", "chaos", "attack" }, }, + ["VillageChanceToIgnite"] = { affix = "", "(10-15)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, }, + ["VillageChanceToIgniteTwoHand"] = { affix = "", "(20-25)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, }, + ["VillageChanceToFreeze"] = { affix = "", "(10-15)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, }, + ["VillageChanceToFreezeTwoHand"] = { affix = "", "(20-25)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, }, + ["VillageChanceToShock"] = { affix = "", "(10-15)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, }, + ["VillageChanceToShockTwoHand"] = { affix = "", "(20-25)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, }, + ["VillageLifeLeechLocalPermyriad"] = { affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Life", statOrder = { 1651 }, level = 1, group = "LifeLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life", "physical", "attack" }, }, + ["VillageManaLeechLocalPermyriad"] = { affix = "", "(0.2-0.3)% of Physical Attack Damage Leeched as Mana", statOrder = { 1701 }, level = 1, group = "ManaLeechLocalPermyriad", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana", "physical", "attack" }, }, + ["VillageLocalIncreasedAttackSpeed"] = { affix = "", "(3-6)% increased Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "speed" }, }, + ["VillageLocalCriticalStrikeChance"] = { affix = "", "(5-7)% increased Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "critical" }, }, + ["VillageIncreasedCastSpeed"] = { affix = "", "(6-10)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "speed" }, }, + ["VillageIncreasedCastSpeedTwoHand"] = { affix = "", "(13-18)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "speed" }, }, + ["VillageSpellCriticalStrikeChance"] = { affix = "", "(20-25)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "critical" }, }, + ["VillageSpellCriticalStrikeChanceTwoHand"] = { affix = "", "(30-35)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "critical" }, }, + ["VillageWeaponSpellDamage1"] = { affix = "", "(10-19)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, }, + ["VillageWeaponSpellDamage2"] = { affix = "", "(20-29)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, }, + ["VillageWeaponSpellDamage3"] = { affix = "", "(30-39)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, }, + ["VillageWeaponSpellDamageTwoHand1"] = { affix = "", "(15-29)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, }, + ["VillageWeaponSpellDamageTwoHand2"] = { affix = "", "(30-44)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, }, + ["VillageWeaponSpellDamageTwoHand3"] = { affix = "", "(45-59)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "WeaponSpellDamage", weightKey = { }, weightVal = { }, modTags = { "caster_damage", "village_runesmithing_enchant", "damage", "caster" }, }, + ["VillageMinionDamageOnWeapon1"] = { affix = "", "Minions deal (10-19)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, }, + ["VillageMinionDamageOnWeapon2"] = { affix = "", "Minions deal (20-29)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, }, + ["VillageMinionDamageOnWeapon3"] = { affix = "", "Minions deal (30-39)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, }, + ["VillageMinionDamageOnTwoHandWeapon1"] = { affix = "", "Minions deal (15-29)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, }, + ["VillageMinionDamageOnTwoHandWeapon2"] = { affix = "", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, }, + ["VillageMinionDamageOnTwoHandWeapon3"] = { affix = "", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, }, + ["VillageGlobalIncreaseFireSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Fire Spell Skill Gems", statOrder = { 1610 }, level = 1, group = "GlobalIncreaseFireSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "caster", "gem" }, }, + ["VillageGlobalIncreaseColdSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Cold Spell Skill Gems", statOrder = { 1611 }, level = 1, group = "GlobalIncreaseColdSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "caster", "gem" }, }, + ["VillageGlobalIncreaseLightningSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Lightning Spell Skill Gems", statOrder = { 1612 }, level = 1, group = "GlobalIncreaseLightningSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "caster", "gem" }, }, + ["VillageGlobalIncreaseChaosSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "chaos", "caster", "gem" }, }, + ["VillageGlobalIncreasePhysicalSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Physical Spell Skill Gems", statOrder = { 1609 }, level = 1, group = "GlobalIncreasePhysicalSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "physical", "caster", "gem" }, }, + ["VillageGlobalIncreaseMinionSpellSkillGemLevel"] = { affix = "", "+1 to Level of all Minion Skill Gems", statOrder = { 1614 }, level = 1, group = "GlobalIncreaseMinionSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion", "gem" }, }, + ["VillageLocalStunThresholdReduction"] = { affix = "", "(21-25)% reduced Enemy Stun Threshold with this Weapon", statOrder = { 2497 }, level = 1, group = "LocalStunThresholdReduction", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, }, + ["VillageAdditionalProjectiles"] = { affix = "", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 1, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageLocalIncreaseSocketedMeleeGemLevel"] = { affix = "", "+2 to Level of Socketed Melee Gems", statOrder = { 179 }, level = 1, group = "LocalIncreaseSocketedMeleeGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack", "gem" }, }, + ["VillageAdditionalVaalSoulOnKill"] = { affix = "", "100% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "vaal" }, }, + ["VillageLocalChanceToPoisonOnHit"] = { affix = "", "10% chance to Poison on Hit", statOrder = { 8002 }, level = 1, group = "LocalChanceToPoisonOnHit", weightKey = { }, weightVal = { }, modTags = { "poison", "village_runesmithing_enchant", "chaos", "attack", "ailment" }, }, + ["VillageLocalChanceToBleed"] = { affix = "", "10% chance to cause Bleeding on Hit", statOrder = { 2483 }, level = 1, group = "LocalChanceToBleed", weightKey = { }, weightVal = { }, modTags = { "bleed", "village_runesmithing_enchant", "physical", "attack", "ailment" }, }, + ["VillageMaximumLifeOnKillPercent"] = { affix = "", "Recover (1-3)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life" }, }, + ["VillageMaximumManaOnKillPercent"] = { affix = "", "Recover (1-3)% of Mana on Kill", statOrder = { 1751 }, level = 1, group = "MaximumManaOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana" }, }, + ["VillageCoverInAshOnHit"] = { affix = "", "(10-15)% chance to Cover Enemies in Ash on Hit", statOrder = { 5893 }, level = 1, group = "CoverInAshOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageCoverInFrostOnHit"] = { affix = "", "(10-15)% chance to Cover Enemies in Frost on Hit", statOrder = { 5897 }, level = 1, group = "CoverInFrostOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageElusiveOnCriticalStrike"] = { affix = "", "Gain Elusive on Critical Strike", statOrder = { 4281 }, level = 1, group = "ElusiveOnCriticalStrike", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "critical" }, }, + ["VillageFortifyOnMeleeHit"] = { affix = "", "Melee Hits Fortify", statOrder = { 2264 }, level = 1, group = "FortifyOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, }, + ["VillageLocalNoVaalSoulGainPrevention"] = { affix = "", "Socketed Vaal Skills do not apply Soul Gain Prevention", statOrder = { 578 }, level = 1, group = "LocalVaalSoulGainPreventionVillage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "vaal" }, }, + ["VillageTriggerSocketedFireSpellOnHit"] = { affix = "", "Trigger a Socketed Fire Spell on Hit, with a 0.25 second Cooldown", statOrder = { 8131 }, level = 1, group = "TriggerSocketedSpellOnHit", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "caster", "gem" }, }, + ["VillageLocalElementalDamageNoPhysical"] = { affix = "", "No Physical Damage", "Has (50-100)% increased Elemental Damage", statOrder = { 1232, 7927 }, level = 1, group = "LocalElementalDamageNoPhysical", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental" }, }, + ["VillageLocalPhysicalDamageAddedAsEachElement"] = { affix = "", "Gain (30-50)% of Weapon Physical Damage as Extra Damage of each Element", statOrder = { 4262 }, level = 1, group = "LocalPhysicalDamageAddedAsEachElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "village_runesmithing_enchant", "damage", "physical", "elemental", "attack" }, }, + ["VillageTormentHauntedItem"] = { affix = "", "Haunted by Tormented Spirits", statOrder = { 7306 }, level = 1, group = "TormentHauntedItem", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageSpellCorrosionOnHitChance"] = { affix = "", "(10-20)% chance to inflict Corrosion on Hit with Spells", statOrder = { 10191 }, level = 1, group = "SpellCorrosionOnHitChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster" }, }, + ["VillageAttackFireDamageMaximumMana"] = { affix = "", "Adds 5% of your Maximum Mana as Fire Damage to Attacks with this Weapon", statOrder = { 4922 }, level = 1, group = "AttackFireDamageMaximumMana", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "attack" }, }, + ["VillageAttackColdDamageEnergyShield"] = { affix = "", "Adds 5% of your Maximum Energy Shield as Cold Damage to Attacks with this Weapon", statOrder = { 4921 }, level = 1, group = "AttackColdDamageEnergyShield", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "attack" }, }, + ["VillageTemporalChainsOnHit"] = { affix = "", "Curse Enemies with Temporal Chains on Hit", statOrder = { 2519 }, level = 1, group = "TemporalChainsOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, }, + ["VillagePunishmentOnHit"] = { affix = "", "Curse Enemies with Punishment on Hit", statOrder = { 6002 }, level = 1, group = "PunishmentOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, }, + ["VillageEnfeebleOnHit"] = { affix = "", "Curse Enemies with Enfeeble on Hit", statOrder = { 2513 }, level = 1, group = "EnfeebleOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, }, + ["VillageAttackConvertToFire"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Fire Damage", statOrder = { 4879 }, level = 1, group = "AttackConvertToFire", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageAttackConvertToCold"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Cold Damage", statOrder = { 4878 }, level = 1, group = "AttackConvertToCold", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageAttackConvertToLightning"] = { affix = "", "(20-30)% of Attack Physical Damage Converted to Lightning Damage", statOrder = { 4880 }, level = 1, group = "AttackConvertToLightning", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageMaximumShock"] = { affix = "", "+10% to Maximum Effect of Shock", statOrder = { 10011 }, level = 1, group = "MaximumShock", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageSpellAddedChaosDamageMaximumLife"] = { affix = "", "Spells deal added Chaos Damage equal to 4% of your maximum Life", statOrder = { 4547 }, level = 1, group = "SpellAddedChaosDamageMaximumLife", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageRageOnMeleeHit"] = { affix = "", "Gain (2-4) Rage on Melee Hit", statOrder = { 6844 }, level = 1, group = "RageOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageRageEffect"] = { affix = "", "(7-10)% increased Rage Effect", statOrder = { 9794 }, level = 1, group = "RageEffect", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageAttacksCostLife"] = { affix = "", "Attacks Cost Life instead of Mana", statOrder = { 10831 }, level = 1, group = "AttacksHaveBloodMagic", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, }, + ["VillageAdditionalProjectilesRandomDirection"] = { affix = "", "Skills fire 2 additional Projectiles", "Projectiles are fired in random directions", statOrder = { 1792, 9827 }, level = 1, group = "AdditionalProjectilesRandomDirection", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageAdditionalCurseOnEnemies"] = { affix = "", "You can apply an additional Curse", statOrder = { 2168 }, level = 1, group = "AdditionalCurseOnEnemies", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, }, + ["VillagePointBlank"] = { affix = "", "Point Blank", statOrder = { 10801 }, level = 1, group = "PointBlank", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, }, + ["VillagePlayerFarShot"] = { affix = "", "Far Shot", statOrder = { 10827 }, level = 1, group = "PlayerFarShot", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageIronGrip"] = { affix = "", "Iron Grip", statOrder = { 10816 }, level = 1, group = "IronGrip", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, }, + ["VillageIronWill"] = { affix = "", "Iron Will", statOrder = { 10829 }, level = 1, group = "IronWill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster" }, }, + ["VillageGainMagicMonsterModsOnKill"] = { affix = "", "(20-25)% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds", statOrder = { 6767 }, level = 1, group = "GainMagicMonsterModsOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageLocalLifeLeechIsInstant"] = { affix = "", "Life Leech from Hits with this Weapon is instant", statOrder = { 2537 }, level = 1, group = "LocalLifeLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "life" }, }, + ["VillageLocalManaLeechIsInstant"] = { affix = "", "Mana Leech from Hits with this Weapon is Instant", statOrder = { 7990 }, level = 1, group = "LocalManaLeechIsInstant", weightKey = { }, weightVal = { }, modTags = { "resource", "village_runesmithing_enchant", "mana" }, }, + ["VillageESLeechFromAttacksNotRemovedOnFullES"] = { affix = "", "Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield", statOrder = { 6436 }, level = 1, group = "ESLeechFromAttacksNotRemovedOnFullES", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "defences", "energy_shield" }, }, + ["VillageReturningProjectiles"] = { affix = "", "Attack Projectiles Return to you", statOrder = { 2824 }, level = 1, group = "ReturningAttackProjectiles", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, }, + ["VillageLocalChanceForPoisonDamage"] = { affix = "", "(10-20)% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "poison", "village_runesmithing_enchant", "damage", "chaos", "attack", "ailment" }, }, + ["VillageLocalChanceForBleedingDamage"] = { affix = "", "(10-20)% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7870 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "bleed", "village_runesmithing_enchant", "damage", "physical", "attack", "ailment" }, }, + ["VillageFireExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Fire Exposure on Hit", statOrder = { 5027 }, level = 1, group = "FireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageColdExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Cold Exposure on Hit", statOrder = { 5026 }, level = 1, group = "ColdExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageLightningExposureOnHit"] = { affix = "", "(15-25)% chance to inflict Lightning Exposure on Hit", statOrder = { 5028 }, level = 1, group = "LightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageExertedAttackDamage"] = { affix = "", "Exerted Attacks deal (80-100)% increased Damage", statOrder = { 6356 }, level = 1, group = "ExertedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "attack" }, }, + ["VillageEnemiesDestroyedOnKill"] = { affix = "", "Enemies Killed by your Hits are destroyed", statOrder = { 6375 }, level = 1, group = "EnemiesDestroyedOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageChanceToImpaleWithSpells"] = { affix = "", "(10-15)% chance to Impale on Spell Hit", statOrder = { 10192 }, level = 1, group = "ChanceToImpaleWithSpells", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "physical", "caster" }, }, + ["VillageBlockWhileDualWielding"] = { affix = "", "+(6-8)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockWhileDualWielding", weightKey = { }, weightVal = { }, modTags = { "block", "village_runesmithing_enchant" }, }, + ["VillageAggravateBleedOnAttack"] = { affix = "", "(10-20)% chance to Aggravate Bleeding on targets you Hit with Attacks", statOrder = { 4608 }, level = 1, group = "AggravateBleedOnAttack", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillagePoisonDuration"] = { affix = "", "(15-25)% increased Poison Duration", statOrder = { 3170 }, level = 1, group = "PoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "village_runesmithing_enchant", "chaos", "ailment" }, }, + ["VillageSpellChanceToBlind"] = { affix = "", "(10-20)% chance to Blind Enemies on Hit with Spells", statOrder = { 10187 }, level = 1, group = "SpellChanceToBlind", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageWardRestoreChance"] = { affix = "", "(5-10)% chance to Restore your Ward on Hit", statOrder = { 9926 }, level = 1, group = "WardRestoreChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageMarkedEnemyNoBlockSuppress"] = { affix = "", "Your Hits against Marked Enemy cannot be Blocked or Suppressed", statOrder = { 7157 }, level = 1, group = "MarkedEnemyNoBlockSuppress", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageArcaneSurgeOnLifeSpent"] = { affix = "", "Gain Arcane Surge after Spending a total of 200 Life", statOrder = { 6724 }, level = 1, group = "ArcaneSurgeOnLifeSpent", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageOnslaughtOnManaSpent"] = { affix = "", "Gain Onslaught after Spending a total of 200 Mana", statOrder = { 6784 }, level = 1, group = "OnslaughtOnManaSpent", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageCriticalAilmentDamageOverTimeMultiplier"] = { affix = "", "+(15-25)% to Damage over Time Multiplier for Ailments from Critical Strikes", statOrder = { 1244 }, level = 1, group = "CriticalAilmentDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageWeaponIgnoreElementalResistance"] = { affix = "", "Attack Critical Strikes ignore Enemy Monster Elemental Resistances", statOrder = { 4846 }, level = 1, group = "AttackCriticalStrikesIgnoreElementalResistances", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageLocalMeleeWeaponRange"] = { affix = "", "+2 metres to Weapon Range", statOrder = { 2745 }, level = 1, group = "LocalMeleeWeaponRange", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, }, + ["VillageChaosDamageLuck"] = { affix = "", "Chaos Damage with Hits is Lucky", statOrder = { 5731 }, level = 1, group = "ChaosDamageLuck", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageGlobalIncreaseSpellSkillGemLevel"] = { affix = "", "+2 to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "gem" }, }, + ["VillageExplosionConflux"] = { affix = "", "Gain Flaming, Icy or Crackling Runesurge at random for 4 seconds every 10 seconds", statOrder = { 6742 }, level = 1, group = "ExplosionConflux", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageKeystoneBattlemage"] = { affix = "", "Battlemage", statOrder = { 10771 }, level = 1, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageElementalDamagePercentAddedAsChaos"] = { affix = "", "Gain (7-10)% of Elemental Damage as Extra Chaos Damage", statOrder = { 1942 }, level = 1, group = "ElementalDamagePercentAddedAsChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "village_runesmithing_enchant", "damage", "elemental", "chaos" }, }, + ["VillageMeleeAttacksUsableWithoutLife"] = { affix = "", "Insufficient Life doesn't prevent your Melee Attacks", statOrder = { 9185 }, level = 1, group = "MeleeAttacksUsableWithoutLife", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageEnduranceChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain an Endurance Charge on Kill", statOrder = { 2629 }, level = 1, group = "EnduranceChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "endurance_charge", "village_runesmithing_enchant" }, }, + ["VillageFrenzyChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain a Frenzy Charge on Kill", statOrder = { 2631 }, level = 1, group = "FrenzyChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge", "village_runesmithing_enchant" }, }, + ["VillagePowerChargeOnKillChance"] = { affix = "", "(5-10)% chance to gain a Power Charge on Kill", statOrder = { 2633 }, level = 1, group = "PowerChargeOnKillChance", weightKey = { }, weightVal = { }, modTags = { "power_charge", "village_runesmithing_enchant" }, }, + ["VillageUnholyMightOnCrit"] = { affix = "", "Gain Unholy Might for 4 seconds on Critical Strike", statOrder = { 2917 }, level = 1, group = "UnholyMightOnCrit", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "critical" }, }, + ["VillageMaximumGolems"] = { affix = "", "+1 to maximum number of Summoned Golems", statOrder = { 3690 }, level = 1, group = "MaximumGolems", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, }, + ["VillageIncreasedGold"] = { affix = "", "5% increased Quantity of Gold Dropped by Slain Enemies", statOrder = { 7303 }, level = 1, group = "IncreasedGold", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageMeleeSplash"] = { affix = "", "Melee Strike Skills deal Splash Damage to surrounding targets", statOrder = { 1168 }, level = 1, group = "MeleeSplash", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "attack" }, }, + ["VillageDamageCannotBeReflected"] = { affix = "", "Damage cannot be Reflected", statOrder = { 6021 }, level = 1, group = "DamageCannotBeReflected", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageConvertColdToChaos"] = { affix = "", "(20-25)% of Cold Damage Converted to Chaos Damage", statOrder = { 1969 }, level = 1, group = "ConvertColdToChaos", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "chaos_damage", "village_runesmithing_enchant", "damage", "elemental", "cold", "chaos" }, }, + ["VillageAlternatingShrineBuff"] = { affix = "", "Gain a random shrine buff every 10 seconds", statOrder = { 6818 }, level = 1, group = "AlternatingShrineBuff", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageSummonPhantasmOnCorpseConsume"] = { affix = "", "Trigger Level 20 Summon Phantasm Skill when you Consume a corpse", statOrder = { 818 }, level = 1, group = "TriggerSummonPhantasmOnCorpseConsume", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageMinionDamageAlsoAffectsYou"] = { affix = "", "Increases and Reductions to Minion Damage also affect you at 150% of their value", statOrder = { 3751 }, level = 1, group = "MinionDamageAlsoAffectsYouAt150%", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, }, + ["VillageFireDamagePerResistanceAbove75"] = { affix = "", "(7-10)% increased Fire Damage per 1% Fire Resistance above 75%", statOrder = { 6565 }, level = 1, group = "FireDamagePerResistanceAbove75", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire" }, }, + ["VillageSuppressChanceEmptyOffhand"] = { affix = "", "+(50-75)% chance to Suppress Spell Damage while your Off Hand is empty", statOrder = { 10179 }, level = 1, group = "ChanceToDodgeWhileOffhandIsEmpty", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageShepherdOfSouls"] = { affix = "", "Shepherd of Souls", statOrder = { 10813 }, level = 1, group = "ShepherdOfSouls", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "vaal" }, }, + ["VillageFireBurstOnHit"] = { affix = "", "Cast Level 10 Fire Burst on Hit", statOrder = { 7888 }, level = 1, group = "FireBurstOnHitLevel", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageBurningEnemiesExplode"] = { affix = "", "Burning Enemies you kill have a 10% chance to Explode, dealing a tenth of their maximum Life as Fire Damage", statOrder = { 6512 }, level = 1, group = "BurningEnemiesExplode", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageLightningStrikesOnCrit"] = { affix = "", "Trigger Level 5 Lightning Bolt when you deal a Critical Strike", statOrder = { 772 }, level = 1, group = "LightningStrikesOnCrit", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "critical" }, }, + ["VillageShockedGroundOnHit"] = { affix = "", "Trigger Level 10 Shock Ground on Hit", statOrder = { 770 }, level = 1, group = "ShockedGroundOnHitSkill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageShockNearbyEnemyOnShockedKill"] = { affix = "", "When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy", statOrder = { 2814 }, level = 1, group = "ShockNearbyEnemyOnShockedKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "lightning", "ailment" }, }, + ["VillageIgniteNearbyEnemyOnIgnitedKill"] = { affix = "", "When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy", statOrder = { 2815 }, level = 1, group = "IgniteNearbyEnemyOnIgnitedKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "fire", "ailment" }, }, + ["VillageSummonWolfOnKillOld"] = { affix = "", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 1, group = "SummonWolfOnKillOld", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, }, + ["VillageCullingStrike"] = { affix = "", "Culling Strike", statOrder = { 2039 }, level = 1, group = "CullingStrike", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageConsumeCorpseLifeRecovery"] = { affix = "", "Every 3 seconds, Consume a nearby Corpse to Recover (7-10)% of Life", statOrder = { 5863 }, level = 1, group = "ConsumeCorpseLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageSummonRagingSpiritOnKill"] = { affix = "", "25% chance to Trigger Level 10 Summon Raging Spirit on Kill", statOrder = { 784 }, level = 1, group = "SummonRagingSpiritOnKill", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "minion" }, }, + ["VillageMinionBurningCloudOnDeath"] = { affix = "", "Your Minions spread Burning Ground on Death, dealing 10% of their maximum Life as Fire Damage per second", statOrder = { 9304 }, level = 1, group = "MinionBurningCloudOnDeath", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "fire", "minion" }, }, + ["VillageAuraAddedLightningDamagePerBlueSocket"] = { affix = "", "You and Nearby Allies have 1 to (8-12) added Lightning Damage per Blue Socket", statOrder = { 3008 }, level = 1, group = "AuraAddedLightningDamagePerBlueSocket", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "village_runesmithing_enchant", "damage", "elemental", "lightning" }, }, + ["VillageStalkingPustuleOnKill"] = { affix = "", "Trigger Level 1 Stalking Pustule on Kill", statOrder = { 817 }, level = 1, group = "StalkingPustuleOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant" }, }, + ["VillageGrantsEnvy"] = { affix = "", "Grants Level 1 Envy Skill", statOrder = { 655 }, level = 1, group = "GrantsEnvy", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant" }, }, + ["VillageGrantsIcicleNovaTrigger"] = { affix = "", "Trigger Level 10 Icicle Burst when you Hit a Frozen Enemy", statOrder = { 811 }, level = 1, group = "GrantsLevel20IcicleNovaTrigger", weightKey = { }, weightVal = { }, modTags = { "skill", "village_runesmithing_enchant", "attack" }, }, + ["VillageSpreadChilledGroundOnFreeze"] = { affix = "", "(10-15)% chance to create Chilled Ground when you Freeze an Enemy", statOrder = { 3407 }, level = 1, group = "SpreadChilledGroundOnFreeze", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "elemental", "cold", "ailment" }, }, + ["VillageSpreadConsecratedGroundOnShatter"] = { affix = "", "(20-25)% chance to create Consecrated Ground when you Shatter an Enemy", statOrder = { 4127 }, level = 1, group = "SpreadConsecratedGroundOnShatter", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageColdAddedAsFireFrozenEnemy"] = { affix = "", "Gain (10-15)% of Cold Damage as Extra Fire Damage against Frozen Enemies", statOrder = { 5803 }, level = 1, group = "ColdAddedAsFireFrozenEnemy", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageCurseOnHitElementalWeakness"] = { affix = "", "(20-30)% chance to Curse Enemies with Elemental Weakness on Hit", statOrder = { 2516 }, level = 1, group = "CurseOnHitLevelElementalWeaknessChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "caster", "curse" }, }, + ["VillageChaoticMightOnKill"] = { affix = "", "(7-13)% chance to gain Chaotic Might for 10 seconds on Kill", statOrder = { 5701 }, level = 1, group = "UnholyMightOnKill10SecondsPercentChance", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant" }, }, + ["VillageIncreasedMinionDamageIfYouHitEnemy"] = { affix = "", "Minions deal (20-30)% increased Damage if you've Hit Recently", statOrder = { 9295 }, level = 1, group = "IncreasedMinionDamageIfYouHitEnemy", weightKey = { }, weightVal = { }, modTags = { "village_runesmithing_enchant", "damage", "minion" }, }, + ["TriggerSocketedElementalSpellOnBlockUnique__1"] = { affix = "", "Trigger a Socketed Elemental Spell on Block, with a 0.25 second Cooldown", statOrder = { 8016 }, level = 60, group = "TriggerSocketedElementalSpellOnBlock", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, }, + ["BannerResourceGainedUnique__1"] = { affix = "", "(25-50)% increased Valour gained", statOrder = { 4976 }, level = 1, group = "BannerResourceGained", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotGainPowerChargesUnique__1"] = { affix = "", "Cannot gain Power Charges", statOrder = { 5435 }, level = 1, group = "CannotGainPowerCharges", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["CannotGainEnduranceChargesUnique__2"] = { affix = "", "Cannot gain Endurance Charges", statOrder = { 4998 }, level = 1, group = "CannotGainEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["FireLightningTakenSsColdUniquFlask8"] = { affix = "", "(20-30)% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect", statOrder = { 956 }, level = 1, group = "FireLightningTakenSsColdUniquFlask8", weightKey = { }, weightVal = { }, modTags = { }, }, + ["KeystoneBloodsoakedBladeUnique__1"] = { affix = "", "Bloodsoaked Blade", statOrder = { 10818 }, level = 1, group = "BloodsoakedBlade", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumEnduranceFrenzyPowerChargesIs0Unique__1"] = { affix = "", "Maximum Endurance, Frenzy and Power Charges is 0", statOrder = { 9131 }, level = 1, group = "MaximumEnduranceFrenzyPowerChargesIs0", weightKey = { }, weightVal = { }, modTags = { "power_charge", "frenzy_charge", "endurance_charge" }, }, + ["VillageTripleEnchant1H"] = { affix = "", "Can be Enchanted by a Kalguuran Runesmith", "Can have 2 additional Runesmithing Enchantments", "Can be Runesmithed as though it were all One Handed Melee Weapon Types", statOrder = { 4438, 7867, 7868 }, level = 1, group = "VillageTripleEnchant1H", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ExcommunicateOnMeleeHitUnique"] = { affix = "", "Excommunicate Enemies on Melee Hit for 3 seconds", statOrder = { 6505 }, level = 97, group = "ExcommunicateOnMeleeHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MeleeCritChanceAgainstExcommunicatedUnique__1"] = { affix = "", "Melee Attacks have +(0.8-1.6)% to Critical Strike Chance against Excommunicated Enemies", statOrder = { 9183 }, level = 1, group = "MeleeCritChanceAgainstExcommunicated", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["AttackDamageIfHitRecentlyUnique"] = { affix = "", "(20-40)% increased Attack Damage if you've been Hit Recently", statOrder = { 3533 }, level = 98, group = "AttackDamageIfHitRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AttackCritAfterBeingCritUnique"] = { affix = "", "All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes", statOrder = { 4650 }, level = 98, group = "AttackCritAfterBeingCrit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["WarcryLifeCostUnique"] = { affix = "", "Warcries Cost +15% of Life", statOrder = { 10560 }, level = 75, group = "WarcryLifeCost", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["NoCooldownWarcriesUnique"] = { affix = "", "Non-Instant Warcries ignore their Cooldown when Used", statOrder = { 9509 }, level = 75, group = "NoCooldownWarcries", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ExtremelyLuckyUnique"] = { affix = "", "Your Lucky or Unlucky effects use the best or", "worst from three rolls instead of two", statOrder = { 6539, 6539.1 }, level = 1, group = "ExtremeLuck", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ProjectileAvoidUnique"] = { affix = "", "(1-10)% chance to avoid Projectiles", statOrder = { 4993 }, level = 68, group = "ChanceToAvoidProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MistyFootprintsUnique"] = { affix = "", "Misty Footprints", statOrder = { 10858 }, level = 1, group = "MistyFootprints", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArcaneSurgeMovementSpeedUnique"] = { affix = "", "Increases to Cast Speed from Arcane Surge also applies to Movement Speed", statOrder = { 4441 }, level = 68, group = "ArcaneSurgeMovementSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArcaneSurgeOnMovementSkillUnique"] = { affix = "", "Gain Arcane Surge when you use a Movement Skill", statOrder = { 4439 }, level = 68, group = "ArcaneSurgeOnMovementSkill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArcaneSurgeEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Arcane Surge on you", statOrder = { 3288 }, level = 1, group = "ArcaneSurgeEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["StarfellOnMeleeCriticalHitUnique__1"] = { affix = "", "Trigger Level 20 Starfall on Melee Critical Strike", statOrder = { 783 }, level = 85, group = "StarfellOnMeleeCriticalHit", weightKey = { }, weightVal = { }, modTags = { "skill", "attack" }, }, + ["InfluenceElementalConfluxUnique__1"] = { affix = "", "You have Elemental Conflux if the stars are aligned", statOrder = { 4059 }, level = 86, group = "InfluenceElementalConflux", weightKey = { }, weightVal = { }, modTags = { }, }, + ["InfluenceElementalSkillGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Elemental Skill Gems if the stars are aligned", statOrder = { 5010 }, level = 86, group = "InfluenceElementalSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["InfluenceElementalSupportGemLevelUnique__1"] = { affix = "", "+(1-3) to Level of all Elemental Support Gems if the stars are aligned", statOrder = { 5011 }, level = 86, group = "InfluenceElementalSupportGemLevel", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GrantsSummonVoidSpawnUnique__1"] = { affix = "", "Trigger Level 20 Summon Void Spawn every 4 seconds", statOrder = { 731 }, level = 97, group = "GrantSummonVoidSpawnEvery4Seconds", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["ExtraChaosDamagePerVoidSpawnUnique__1"] = { affix = "", "Gain (4-6)% of Non-Chaos Damage as Extra Chaos Damage per Summoned Void Spawn", statOrder = { 9487 }, level = 97, group = "ExtraChaosDamagePerVoidSpawn", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageRemovedFromVoidSpawnsUnique__1"] = { affix = "", "(4-6)% of Damage from Hits is taken from Void Spawns' Life before you per Void Spawn", statOrder = { 6093 }, level = 97, group = "DamageRemovedFromVoidSpawns", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["UnarmedStrikeSkillsAdditionalTargetUnique__1"] = { affix = "", "[DNT] Unarmed Non-Vaal Strike Skills target (1-7) additional nearby Enemy", statOrder = { 10487 }, level = 1, group = "UnarmedStrikeSkillsAdditionalTarget", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["UnarmedMeleeAttackCriticalStrikeMultiplierUnique__1"] = { affix = "", "+(10-77)% to Critical Strike Multiplier with Unarmed Melee Attacks", statOrder = { 10488 }, level = 97, group = "UnarmedMeleeAttackCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["MovementVelocityUnique__55"] = { affix = "", "(1-7)% increased Movement Speed", statOrder = { 1798 }, level = 97, group = "MovementVelocity", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["LocalIncreasedEvasionAndEnergyShieldUnique__38"] = { affix = "", "(100-777)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 97, group = "LocalEvasionAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["UnarmedStrikeRangeUnique__1"] = { affix = "", "+(0.1-0.7) metres to Melee Strike Range with Unarmed Attacks", statOrder = { 3079 }, level = 97, group = "UnarmedRange", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["BaseUnarmedCriticalStrikeChanceUnique__2"] = { affix = "", "+(1-7)% to Unarmed Melee Attack Critical Strike Chance", statOrder = { 3571 }, level = 97, group = "BaseUnarmedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["UnarmedMoreMeleeAttackSpeedUnique__1"] = { affix = "", "(1-7)% more Attack Speed with Unarmed Melee Attacks", statOrder = { 1430 }, level = 97, group = "UnarmedMoreMeleeAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["DoubleMinionLimitsUnique_1"] = { affix = "", "Maximum number of Animated Weapons is Doubled", "Cannot have Minions other than Animated Weapons", statOrder = { 9173, 9173.1 }, level = 100, group = "DoubleMinionLimitsUnique", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GainDivinationBuffOnFlaskUsedUniqueFlask__1"] = { affix = "", "Grants a random Divination Buff for 20 seconds when Used", statOrder = { 898 }, level = 42, group = "GainDivinationBuffOnFlaskUsed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TargetsUnaffectedByYourHexesUnique__1"] = { affix = "", "Targets are Unaffected by your Hexes", statOrder = { 2599 }, level = 40, group = "TargetsUnaffectedByYourHexes", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, + ["EatSoulAfterHexPercentCurseExpireUnique__1"] = { affix = "", "When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power", statOrder = { 6288 }, level = 40, group = "EatSoulAfterHexPercentCurseExpire", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, + ["LocalFlaskRemovePercentOfLifeOnUseUnique_7"] = { affix = "", "Removes (10-15)% of Life when Used", statOrder = { 872 }, level = 1, group = "LocalFlaskRemovePercentLifeOnUse", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["LocalFlaskStartEnergyShieldRechargeUnique_1"] = { affix = "", "Starts Energy Shield Recharge when Used", statOrder = { 873 }, level = 1, group = "LocalFlaskStartEnergyShieldRecharge", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["LocalFlaskEnergyShieldRechargeNotDelayedByDamageDuringEffectUnique_1"] = { affix = "", "Energy Shield Recharge is not delayed by Damage during Effect", statOrder = { 979 }, level = 80, group = "LocalFlaskEnergyShieldRechargeNotInterruptedDuringEffect", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["RecoverLifePercentOnBlockUnique__1"] = { affix = "", "Lose (3-5)% of Life when you Block", statOrder = { 3060 }, level = 1, group = "RecoverLifePercentOnBlock", weightKey = { }, weightVal = { }, modTags = { "block", "resource", "life" }, }, + ["BlockChancePerLifeSpentRecentlyUnique__1"] = { affix = "", "[DNT] (5-10)% increased Chance to Block Attack and Spell Damage for every 100 Life Spent Recently", statOrder = { 5227 }, level = 1, group = "BlockChancePerLifeSpentRecently", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["CanOnlyInflictWitherAgainstFullLifeEnemies__1"] = { affix = "", "Cannot Inflict Wither on targets that are not on Full Life", statOrder = { 5388 }, level = 1, group = "CanOnlyInflictWitherAgainstFullLifeEnemies", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ApplyMaximumWitherOnChaosSkillHitUnique__1"] = { affix = "", "Chaos Skills inflict up to 15 Withered Debuffs on Hit for (5-7) seconds", statOrder = { 4696 }, level = 38, group = "ApplyMaximumWitherOnChaosSkillHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnarmedAddedChaosDamageForEachPoisonOnTargetUnique__1"] = { affix = "", "[DNT] Unarmed Attacks deal (7-11) to (13-17) added Chaos Damage for each Poison on the target, up to 100", statOrder = { 10486 }, level = 1, group = "UnarmedAddedChaosDamageForEachPoisonOnTarget", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["LessPoisonDurationUnique_1"] = { affix = "", "(50-60)% less Poison Duration", statOrder = { 3171 }, level = 1, group = "VolkuurLessPoisonDuration", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["ChanceToPoisonWithAttacksUnique___2"] = { affix = "", "(40-50)% chance to Poison on Hit with Attacks", statOrder = { 3175 }, level = 1, group = "ChanceToPoisonWithAttacks", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "attack", "ailment" }, }, + ["IncreasedAttackSpeedUniqueGlovesDexInt_1"] = { affix = "", "(8-12)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["GainOnslaughtDuringLifeFlaskUnique__1"] = { affix = "", "[DNT] You have Onslaught during Effect of any Life Flask", statOrder = { 6779 }, level = 1, group = "GainOnslaughtDuringLifeFlask", weightKey = { }, weightVal = { }, modTags = { }, }, + ["OvercappedFireResistanceAsFirePrenetrationUnique__1"] = { affix = "", "Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200%", statOrder = { 2982 }, level = 100, group = "OvercappedFireResistanceAsFirePrenetration", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["FireDamageOnSkillUseUnique__1"] = { affix = "", "Take (300-500) Fire Damage when you Use a Skill", statOrder = { 2212 }, level = 100, group = "FireDamageOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["MinionHaveNoAmourOrEnergyShieldUnique__1"] = { affix = "", "[DNT] Your minions have no Armour or Maximum Energy Shield", statOrder = { 9358 }, level = 1, group = "MinionHaveNoAmourOrEnergyShield", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["MinionGainYourSpellSuppressUnique__1"] = { affix = "", "[DNT] Your minions gain your chance to Suppress Spell Damage", statOrder = { 9352 }, level = 1, group = "MinionGainYourSpellSuppress", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["AllResistancesReducedPerActiveMinionUnique_1UNUSED"] = { affix = "", "[DNT] -2% to All Resistances per Minion", statOrder = { 4633 }, level = 1, group = "MinionCountAffectsResistances", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, }, + ["GlobalDefensesIncreasedPerActiveMinionUnique_1UNUSED"] = { affix = "", "[DNT] +(3-5)% to Global Defenses per Minion", statOrder = { 6875 }, level = 1, group = "MinionCountAffectsGlobalDefenses", weightKey = { }, weightVal = { }, modTags = { "defences", "minion" }, }, + ["AllResistancesReducedPerActiveNonVaalSkillMinionUnique_1"] = { affix = "", "-2% to all Resistances per Minion from your Non-Vaal Skills", statOrder = { 1637 }, level = 1, group = "NonVaalMinionSkillCountAffectsResistances", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, }, + ["GlobalDefensesIncreasedPerActiveNonVaalSkillMinionUnique_1"] = { affix = "", "(3-4)% increased Defences per Minion from your Non-Vaal Skills", statOrder = { 2834 }, level = 1, group = "NonVaalMinionSkillCountAffectsGlobalDefenses", weightKey = { }, weightVal = { }, modTags = { "defences", "minion" }, }, + ["MinionsGainPercentOfYourResistancesUnique_1"] = { affix = "", "Minions gain added Resistances equal to 50% of your Resistances", statOrder = { 9351 }, level = 93, group = "MinionsGainYourResistancesPercent", weightKey = { }, weightVal = { }, modTags = { "resistance", "minion" }, }, + ["SacrificeLifeToGainArrowUnique__1"] = { affix = "", "[DNT] Bow Attacks Sacrifice (5-7)% of your Life to fire an additional Arrow for every 100 Life Sacrificed", statOrder = { 9953 }, level = 1, group = "SacrificeLifeToGainArrow", weightKey = { }, weightVal = { }, modTags = { "bow", "attack" }, }, + ["ArmourFromShieldDoubledUnique__1"] = { affix = "", "Armour from Equipped Shield is doubled", statOrder = { 1993 }, level = 40, group = "ArmourFromShieldDoubled", weightKey = { }, weightVal = { }, modTags = { "shield", "defences", "armour" }, }, + ["GainNoArmourFromBodyArmourUnique__1"] = { affix = "", "Gain no Armour from Equipped Body Armour", statOrder = { 3338 }, level = 40, group = "GainNoArmourFromBodyArmour", weightKey = { }, weightVal = { }, modTags = { "body_armour", "defences", "armour" }, }, + ["EnergyShieldRechargeApplyToManaUnique__1"] = { affix = "", "[DNT] Energy Shield Recharge instead applies to Mana", statOrder = { 6445 }, level = 1, group = "EnergyShieldRechargeApplyToMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["GrantShaperSkill_1"] = { affix = "", "Grants Level 20 Summon Shaper Memory", "Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory", statOrder = { 743, 743.1 }, level = 85, group = "GrantShaperSkill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumRemembranceUnique_1"] = { affix = "", "Maximum 10 Remembrance", statOrder = { 9126 }, level = 85, group = "MaximumRemembrance", weightKey = { }, weightVal = { }, modTags = { }, }, + ["RemembranceGainedPerEnergyShieldUnique_1"] = { affix = "", "Gain 1 Remembrance when you spend a total of 200 Energy", "Shield with no Shaper Memory Summoned", statOrder = { 6739, 6739.1 }, level = 85, group = "RemembrancePerEnergyShieldSpent", weightKey = { }, weightVal = { }, modTags = { }, }, + ["Maximum2OfSameTotemUnique__1"] = { affix = "", "You cannot have more than 2 Summoned Totems of the same type", statOrder = { 2257 }, level = 78, group = "Maximum2OfSameTotem", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ManaFlaskEffectsAreNotRemovedAtFullManaUnique__1"] = { affix = "", "Mana Flask Effects are not removed when Unreserved Mana is Filled", "Mana Flask Effects do not Queue", statOrder = { 8173, 8173.1 }, level = 70, group = "ManaFlaskEffectsAreNotRemovedAtFullMana", weightKey = { }, weightVal = { }, modTags = { "mana_flask", "flask", "resource", "mana" }, }, + ["CannotUseLifeFlaskUnique__1"] = { affix = "", "Can't use Life Flasks", statOrder = { 72 }, level = 70, group = "CannotUseLifeFlask", weightKey = { }, weightVal = { }, modTags = { "life_flask", "flask" }, }, + ["FlaskEffectAlsoAffectsArcaneSurgeUnique__1"] = { affix = "", "Increases and Reductions to Effect of Flasks applied to you", "also applies to Effect of Arcane Surge on you at (200-250)% of their value", statOrder = { 4600, 4600.1 }, level = 70, group = "FlaskEffectAlsoAffectsArcaneSurge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ArcaneSurgeDuringManaFlaskEffectUnique__1"] = { affix = "", "You have Arcane Surge during Effect of any Mana Flask", statOrder = { 4704 }, level = 70, group = "ArcaneSurgeDuringManaFlaskEffect", weightKey = { }, weightVal = { }, modTags = { "mana_flask" }, }, + ["NearbyAlliesShockedGrantYouChargesOnDeathUnique__1"] = { affix = "", "[DNT] Nearby Non-Player Allies are Shocked, taking 30% increased damage", "Gain a Power, Frenzy and Endurance Charge when a nearby Non-Player Ally dies", statOrder = { 9464, 9464.1 }, level = 1, group = "NearbyAlliesShockedGrantYouChargesOnDeath", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe10"] = { affix = "", "(120-180)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["WeaponPhysicalDamageAddedAsRandomElementUnique__2"] = { affix = "", "Gain (40-60)% of Weapon Physical Damage as Extra Damage of a random Element", statOrder = { 2935 }, level = 85, group = "WeaponPhysicalDamageAddedAsRandomElement", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "attack" }, }, + ["LocalCriticalStrikeChanceUniqueTwoHandAxe_1"] = { affix = "", "(20-30)% increased Critical Strike Chance", statOrder = { 1464 }, level = 85, group = "LocalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["SupportedByArrowNovaUnique__2"] = { affix = "", "Socketed Gems are Supported by Level 20 Arrow Nova", statOrder = { 361 }, level = 1, group = "SupportedByArrowNova", weightKey = { }, weightVal = { }, modTags = { "support", "gem" }, }, + ["PhysicalAddedAsFireIfUsedRubyFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Fire Damage if you've", "used a Ruby Flask Recently", statOrder = { 9625, 9625.1 }, level = 1, group = "PhysicalAddedAsFireIfUsedRubyFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["PhysicalAddedAsColdIfUsedSapphireFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Cold Damage if you've", "used a Sapphire Flask Recently", statOrder = { 9623, 9623.1 }, level = 1, group = "PhysicalAddedAsColdIfUsedSapphireFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, + ["PhysicalAddedAsLightningIfUsedTopazFlaskRecentlyUnique__1"] = { affix = "", "Gain (20-40)% of Physical Damage as Extra Lightning Damage if you've", "used a Topaz Flask Recently", statOrder = { 9627, 9627.1 }, level = 1, group = "PhysicalAddedAsLightningIfUsedTopazFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["PhysicalAddedAsChaosIfUsedAmethystFlaskRecentlyUnique__1"] = { affix = "", "Gain (40-75)% of Physical Damage as Extra Chaos Damage if you've", "used an Amethyst Flask Recently", statOrder = { 9622, 9622.1 }, level = 1, group = "PhysicalAddedAsChaosIfUsedAmethystFlaskRecently", weightKey = { }, weightVal = { }, modTags = { "physical", "chaos" }, }, + ["TripleDamageIfSpentTimeOnAttackRecentlyUnique__1"] = { affix = "", "[DNT] Hits with this Weapon deal Triple Damage if you have spent at least 2 seconds on a single attack recently", statOrder = { 6146 }, level = 1, group = "TripleDamageIfSpentTimeOnAttackRecently", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["AreaOfEffectUnique_9"] = { affix = "", "(10-20)% increased Area of Effect", statOrder = { 1880 }, level = 85, group = "AreaOfEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SkillsCostEnergyShieldInsteadOfManaLifeUnique__1"] = { affix = "", "Skills Cost Energy Shield instead of Mana or Life", statOrder = { 5049 }, level = 93, group = "SkillsCostEnergyShieldInsteadOfManaLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana", "defences", "energy_shield" }, }, + ["AttacksGainMinMaxAddedChaosDamageBasedOnManaUnique__1"] = { affix = "", "(5-10) to (20-25) Added Attack Chaos Damage per 100 Maximum Mana", statOrder = { 1389 }, level = 93, group = "AttacksGainMinMaxAddedChaosDamageBasedOnMana", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "resource", "mana", "damage", "chaos", "attack" }, }, + ["AddedEnergyShieldFlatUnique_1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 1558 }, level = 93, group = "EnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["PercentReducedMaximumManaUnique_1"] = { affix = "", "(40-60)% reduced maximum Mana", statOrder = { 1580 }, level = 93, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["LocalIncreasedEnergyShieldUniqueHelmetInt_1"] = { affix = "", "+(50-100) to maximum Energy Shield", statOrder = { 1559 }, level = 100, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ChaosResistUniqueHelmetInt__1"] = { affix = "", "+(27-37)% to Chaos Resistance", statOrder = { 1641 }, level = 100, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["LifeDegenPerActiveMinionUniqueHelmetInt_1UNUSED"] = { affix = "", "Lose 0.3% Life per Second per Minion", statOrder = { 7346 }, level = 1, group = "LifeDegenPermyriadPerMinutePerMinion", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["FlaskChargesUsedUnique___12"] = { affix = "", "(20-100)% increased Charges per use", statOrder = { 846 }, level = 42, group = "FlaskChargesUsed", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskExtraChargesUnique__4"] = { affix = "", "+60 to Maximum Charges", statOrder = { 837 }, level = 42, group = "FlaskExtraMaxCharges", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["IgniteDealNoDamageUnique__1"] = { affix = "", "Ignites you inflict deal no Damage", statOrder = { 7205 }, level = 1, group = "IgniteDealNoDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TriggerIgnitionBlastOnIgnitedEnemyDeathUnique__1"] = { affix = "", "Trigger Level 5 Ignition Blast when an enemy dies while Ignited by you", statOrder = { 790 }, level = 1, group = "TriggerIgnitionBlastOnIgnitedEnemyDeath", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["KeystoneEldritchBatteryUnique__3"] = { affix = "", "Eldritch Battery", statOrder = { 10780 }, level = 85, group = "EldritchBattery", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["GlobalSpellGemsLevelUniqueStaff_1"] = { affix = "", "+(3-5) to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 85, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, }, + ["GlobalSpellGemsLevelUniqueStaff_2"] = { affix = "", "+(-1-1) to Level of all Spell Skill Gems", statOrder = { 1608 }, level = 1, group = "GlobalIncreaseSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "caster", "gem" }, }, + ["IncreasedCastSpeedUniqueStaff_1"] = { affix = "", "(25-40)% increased Cast Speed", statOrder = { 1446 }, level = 85, group = "IncreasedCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["LocalIncreasedEnergyShieldPercentUniqueBody_1"] = { affix = "", "(150-200)% increased Energy Shield", statOrder = { 1560 }, level = 97, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ChaosResistUniqueBody_1"] = { affix = "", "+(23-37)% to Chaos Resistance", statOrder = { 1641 }, level = 97, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["SpellBlockChancePerMinionUnique__1"] = { affix = "", "[DNT] +2% Chance to Block Spell Damage per Minion", statOrder = { 10130 }, level = 1, group = "SpellBlockChancePerMinion", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["AggressiveMinionIfBlockedRecentlyUnique__1"] = { affix = "", "[DNT] Minions are Aggressive if you've Blocked Recently", statOrder = { 9267 }, level = 1, group = "AggressiveMinionIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FeedingFrenzyIfBlockedRecentlyUnique__1"] = { affix = "", "[DNT] You have Feeding Frenzy if you've Blocked Recently", statOrder = { 10662 }, level = 1, group = "FeedingFrenzyIfBlockedRecently", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalTotemsUniqueScepter_1"] = { affix = "", "+(3-5) to maximum number of Summoned Totems", statOrder = { 2254 }, level = 78, group = "AdditionalTotems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BattlemageKeystoneUnique__5"] = { affix = "", "Battlemage", statOrder = { 10771 }, level = 78, group = "KeystoneBattlemage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonTotemCastSpeedUnique__3"] = { affix = "", "(40-70)% increased Totem Placement speed", statOrder = { 2578 }, level = 78, group = "SummonTotemCastSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["LocalAddedPhysicalDamageUnique__38"] = { affix = "", "Adds (60-85) to (100-133) Physical Damage", statOrder = { 1276 }, level = 78, group = "LocalPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt_1"] = { affix = "", "(150-200)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["LocalIncreasedArmourUniqueHelmetStrInt_2"] = { affix = "", "(350-650)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["IncreasedManaUniqueHelmetStrInt_1"] = { affix = "", "+(30-70) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ManaRegenerationUniqueHelmetStrInt_1"] = { affix = "", "(30-50)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["AdditionalProjectilesUniqueWand_1"] = { affix = "", "Skills fire (2-3) additional Projectiles", statOrder = { 1792 }, level = 42, group = "AdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ProjectilesExpireOnHitUniqueWand_1"] = { affix = "", "Projectiles cannot continue after colliding with targets", statOrder = { 9741 }, level = 42, group = "ProjectilesExpireOnHitv2", weightKey = { }, weightVal = { }, modTags = { }, }, + ["IncreasedProjectileDamageUnique___12"] = { affix = "", "(30-50)% increased Projectile Damage", statOrder = { 1996 }, level = 42, group = "ProjectileDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ProjectileSpeedUnique__9"] = { affix = "", "(10-20)% increased Projectile Speed", statOrder = { 1796 }, level = 42, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["GlobalChaosSpellGemsLevelUniqueWand_1"] = { affix = "", "+1 to Level of all Chaos Spell Skill Gems", statOrder = { 1613 }, level = 1, group = "GlobalIncreaseChaosSpellSkillGemLevel", weightKey = { }, weightVal = { }, modTags = { "chaos", "caster", "gem" }, }, + ["IncreasedChaosDamageUniqueWand_1"] = { affix = "", "(31-43)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { }, weightVal = { }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["NoManaRegenerationUniqueHelmetInt_1"] = { affix = "", "You have no Mana Regeneration", statOrder = { 2272 }, level = 1, group = "NoManaRegeneration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalNoEnergyShieldUnique__2"] = { affix = "", "Removes all Energy Shield", statOrder = { 2166 }, level = 1, group = "NoEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["MaximumManaUnique__9"] = { affix = "", "(20-40)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["DamageTakenFromManaUniqueHelmet_1"] = { affix = "", "(20-30)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["ChanceToIgniteUnique__7"] = { affix = "", "(10-20)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["GlobalAddedFireDamageUnique__5"] = { affix = "", "Adds (1-5) to (10-15) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireResistanceUniqueGlovesInt_1"] = { affix = "", "+(10-15)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FlaskDurationUniqueGlovesDex_1"] = { affix = "", "(10-20)% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { }, weightVal = { }, modTags = { "flask" }, }, + ["FlaskLifeRecoveryUniqueGlovesDex_1"] = { affix = "", "(-100-50)% reduced Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "BeltFlaskLifeRecovery", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["LocalIncreasedEvasionRatingUniqueGlovesDex_1"] = { affix = "", "+(20-45) to Evasion Rating", statOrder = { 1548 }, level = 1, group = "LocalEvasionRating", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["DexterityUniqueGlovesDex_1"] = { affix = "", "+(10-15) to Dexterity", statOrder = { 1178 }, level = 1, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IgnitesReflectedToSelfUnique__1"] = { affix = "", "Ignites you cause are reflected back to you", statOrder = { 3039 }, level = 1, group = "IgnitesReflectedToSelf", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["UnaffectedByIgniteUnique__1"] = { affix = "", "Unaffected by Ignite", statOrder = { 10473 }, level = 1, group = "UnaffectedByIgnite", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CannotPoisonEnemiesWithNumPoisonsUnique__1"] = { affix = "", "Cannot Poison Enemies with at least 12 Poisons on them", statOrder = { 5441 }, level = 1, group = "CannotPoisonEnemiesWithNumPoisons", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos" }, }, + ["WitherOnHitEnemiesWithNumPoisonsUnique__1"] = { affix = "", "Wither on Hit with this weapon against Enemies with at least 12 Poisons on them", statOrder = { 8132 }, level = 1, group = "WitherOnHitEnemiesWithNumPoisons", weightKey = { }, weightVal = { }, modTags = { "chaos" }, }, + ["ApplyAdditionalPoisonUnique__1"] = { affix = "", "100% chance to inflict an additional Poison on the same Target when you inflict Poison", statOrder = { 4585 }, level = 1, group = "ApplyAdditionalPoison", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LocalApplyAdditionalPoisonUnique__1"] = { affix = "", "Inflict (2-3) additional Poisons on the same Target", "when you inflict Poison with this weapon", statOrder = { 8000, 8000.1 }, level = 1, group = "LocalApplyAdditionalPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos_damage", "damage", "chaos" }, }, + ["SacrificeMinionToFireAdditionalArrowsUnique__1"] = { affix = "", "Bow Attacks Sacrifice a random Damageable Minion to fire (1-3) additional Arrow", statOrder = { 9954 }, level = 69, group = "SacrificeMinionToFireAdditionalArrows", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalPoisonChanceUnique__1"] = { affix = "", "(25-40)% chance to inflict an additional Poison on the same Target when you inflict Poison", statOrder = { 4585 }, level = 100, group = "AdditionalPoisonChance", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos_damage", "damage", "chaos" }, }, + ["ImpaleEffectPerImpaleOnYouUnique__1"] = { affix = "", "[DNT] Impales you inflict have (10-15)% increased Effect per Impale on you", statOrder = { 7244 }, level = 1, group = "ImpaleEffectPerImpaleOnYou", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SpellLightningDamagePerIntelligenceUnique__1"] = { affix = "", "1 to (31-53) Spell Lightning Damage per 10 Intelligence", statOrder = { 10124 }, level = 83, group = "SpellLightningDamagePerIntelligence", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["IncreasedSkillCostUnique_1"] = { affix = "", "31% increased Cost of Skills", statOrder = { 1881 }, level = 1, group = "SkillCostReduction", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ViolentPaceUnique__1"] = { affix = "", "[DNT] Triggers Level 20 Violent Path when Equipped", statOrder = { 6252 }, level = 1, group = "ViolentPace", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["AreaOfEffectPerRageUnique__1"] = { affix = "", "[DNT] (5-10)% increased Area of Effect per 10 Rage", statOrder = { 4722 }, level = 1, group = "AreaOfEffectPerRage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MinionMovementSpeedUnique_1"] = { affix = "", "Minions have (20-30)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionRunSpeed", weightKey = { }, weightVal = { }, modTags = { "speed", "minion" }, }, + ["MinionAttackSpeedUnique_1"] = { affix = "", "Minions have (6-12)% increased Attack Speed", statOrder = { 2907 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["MinionDoubleDamageChancePerFortificationUnique__1"] = { affix = "", "Minions have 1% chance to deal Double Damage per Fortification on you", statOrder = { 1976 }, level = 1, group = "MinionDoubleDamageChancePerFortification", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["MinionLifeAlsoAffectsYouUnique__1"] = { affix = "", "Increases and Reductions to Minion Maximum Life also apply to you at 15% of their value", statOrder = { 3754 }, level = 83, group = "MinionMaximumAlsoAffectsYou", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "minion" }, }, + ["FortifyDurationUnique_1"] = { affix = "", "(30-40)% increased Fortification Duration", statOrder = { 2265 }, level = 1, group = "FortifyDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TriggerSocketedSpellOnUnarmedMeleeCriticalHitUnique__1"] = { affix = "", "Trigger a Socketed Spell on Unarmed Melee Critical Strike, with a 0.25 second Cooldown", statOrder = { 752 }, level = 97, group = "TriggerSocketedSpellOnUnarmedMeleeCriticalHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LinkSkillsCostLifeUnique__1"] = { affix = "", "[DNT] Link Skills Cost Life instead of Mana", statOrder = { 7488 }, level = 1, group = "LinkSkillsCostLife", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GuardSkillForLinkTargetUnique__1"] = { affix = "", "[DNT] Your Guard Skill Buffs take Damage for Linked Targets as well as you", statOrder = { 6918 }, level = 1, group = "GuardSkillForLinkTarget", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LinksTargetDamageableMinionsUnique_1"] = { affix = "", "Link Skills can target Damageable Minions", statOrder = { 7498 }, level = 1, group = "LinksTargetDamageableMinions", weightKey = { }, weightVal = { }, modTags = { }, }, + ["LinksGrantMinionsLessDamageTakenUnique_1"] = { affix = "", "Your Linked Minions take (65-75)% less Damage", statOrder = { 7503 }, level = 1, group = "LinksGrantMinionsLessDamageTaken", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["LinkedMinionsStealRareModsUnique_1"] = { affix = "", "On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds", statOrder = { 7504 }, level = 1, group = "LinkedMinionsStealRareMods", weightKey = { }, weightVal = { }, modTags = { "minion" }, }, + ["LocalIncreasedPhysicalDamagePercentUnique__51"] = { affix = "", "(200-300)% increased Physical Damage", statOrder = { 1232 }, level = 85, group = "LocalPhysicalDamagePercent", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AddedPhysicalDamageUniqueQuiver10"] = { affix = "", "(5-10) to (12-24) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 69, group = "PhysicalDamageWithBows", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["MinionDamageUniqueQuiver_1"] = { affix = "", "Minions deal (30-50)% increased Damage", statOrder = { 1973 }, level = 69, group = "MinionDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "minion" }, }, + ["DexterityAndIntelligenceUniqueQuiver_1"] = { affix = "", "+(10-20) to Dexterity and Intelligence", statOrder = { 1182 }, level = 69, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityAndIntelligenceUnique_2"] = { affix = "", "+(20-30) to Dexterity and Intelligence", statOrder = { 1182 }, level = 20, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["DexterityAndIntelligenceUnique_3"] = { affix = "", "+(20-30) to Dexterity and Intelligence", statOrder = { 1182 }, level = 1, group = "DexterityAndIntelligence", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["IncreasedAttackSpeedUniqueQuiver10"] = { affix = "", "(7-14)% increased Attack Speed", statOrder = { 1410 }, level = 69, group = "IncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedLifeUniqueQuiver21"] = { affix = "", "+(75-200) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["ProjectileSpeedUnique__10"] = { affix = "", "(20-30)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "ProjectileSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["LifeGainPerTargetUniqueQuiver21"] = { affix = "", "Gain (5-10) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTarget", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "attack" }, }, + ["LocalIncreasedEnergyShieldUnique__13"] = { affix = "", "+(30-50) to maximum Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["LocalIncreasedEnergyShieldPercentUnique__34"] = { affix = "", "(60-100)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercent", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["DexterityUnique__33"] = { affix = "", "+(20-35) to Dexterity", statOrder = { 1178 }, level = 100, group = "Dexterity", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["ChaosResistUnique__32"] = { affix = "", "+(20-30)% to Chaos Resistance", statOrder = { 1641 }, level = 100, group = "ChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["AllResistancesUnique_1"] = { affix = "", "-(30-20)% to all Elemental Resistances", statOrder = { 1619 }, level = 100, group = "AllResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["ReducedFireResistanceUnique__2"] = { affix = "", "(65-75)% reduced Fire Resistance", statOrder = { 1628 }, level = 100, group = "IncreasedFireResistance", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["FireDamagePercentUnique__13"] = { affix = "", "(10-20)% increased Fire Damage", statOrder = { 1357 }, level = 100, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique__14"] = { affix = "", "(30-50)% increased Fire Damage", statOrder = { 1357 }, level = 41, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["FireDamagePercentUnique__15"] = { affix = "", "(90-110)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["InflictFireExposureNearbyOnMaxRageUnique_1"] = { affix = "", "[DNT] Inflict Fire Exposure on Nearby Enemies when you reach Maximum Rage", statOrder = { 7275 }, level = 1, group = "InflictFireExposureNearbyOnMaxRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["NearbyEnemiesHaveFireExposureWhileAtMaxRageUnique_1"] = { affix = "", "Nearby Enemies have Fire Exposure while at maximum Rage", statOrder = { 9459 }, level = 1, group = "NearbyEnemiesFireExposureWhileMaxRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["FireDoTMultiPerRageUnique_1"] = { affix = "", "Each Rage also grants +2% to Fire Damage Over Time Multiplier", statOrder = { 6578 }, level = 1, group = "FireDoTMultiPerRage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["LocalFireDamageFromLifePercentUnique_1"] = { affix = "", "Attacks with this Weapon have Added Fire Damage equal to (8-12)% of Player's Maximum Life", statOrder = { 2945 }, level = 1, group = "WeaponAddedFireDamagePerMaximumLife", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["GrantUnleashPowerUnique__1"] = { affix = "", "[DNT] Grants Level 10 Unleash Power", statOrder = { 732 }, level = 1, group = "GrantUnleashPower", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TriggerSocketedSpellOnKillUnique__1"] = { affix = "", "20% chance to Trigger Socketed Spell on Kill, with a 0.5 second Cooldown", statOrder = { 778 }, level = 40, group = "TriggerSocketedSpellOnKill", weightKey = { }, weightVal = { }, modTags = { "skill", "caster", "gem" }, }, + ["SummonWrithingWormEveryXMsUnique__1"] = { affix = "", "An Enemy Writhing Worm spawns every 2 seconds", statOrder = { 620 }, level = 40, group = "SummonWrithingWormEveryXMs", weightKey = { }, weightVal = { }, modTags = { "skill" }, }, + ["AddedDamagePerStrengthUnique__2"] = { affix = "", "Adds 8 to 24 Physical Damage to Attacks per 25 Strength", statOrder = { 4875 }, level = 1, group = "AddedDamagePerStrength", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["LocalIncreasedAttackSpeedUnique__41"] = { affix = "", "(20-30)% reduced Attack Speed", statOrder = { 1413 }, level = 1, group = "LocalIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["IncreasedAttackAreaOfEffectUnique__4"] = { affix = "", "(20-30)% increased Area of Effect for Attacks", statOrder = { 4835 }, level = 1, group = "IncreasedAttackAreaOfEffect", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["MaximumLifeOnKillPercentUnique__7"] = { affix = "", "Recover (4-6)% of Life on Kill", statOrder = { 1749 }, level = 1, group = "MaximumLifeOnKillPercent", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SummonFireSkitterbotUnique__1"] = { affix = "", "Summon Skitterbots also summons a Scorching Skitterbot", statOrder = { 10296 }, level = 20, group = "SummonFireSkitterbot", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SkitterbotAurasAlsoAffectYouUnique__1"] = { affix = "", "Summoned Skitterbots' Auras affect you as well as Enemies", statOrder = { 10314 }, level = 20, group = "SkitterbotAurasAlsoAffectYou", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SkitterbotIncreasedAilmentEffectUnique__1"] = { affix = "", "(50-75)% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots", statOrder = { 10316 }, level = 20, group = "SkitterbotIncreasedAilmentEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MaximumLifeIncreasePercent2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(10-15)% increased maximum Life if 2 Elder Items are Equipped", statOrder = { 4453 }, level = 1, group = "MaximumLifeIncreasePercent2ElderItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["NearbyEnemiesAreUnnerved2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", statOrder = { 4457 }, level = 1, group = "NearbyEnemiesAreUnnerved2ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", statOrder = { 4447 }, level = 1, group = "PhysicalEnergyShieldLeechPermyriad2ElderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["MaximumManaIncreasePercent2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped", statOrder = { 4454 }, level = 1, group = "MaximumManaIncreasePercent2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["GlobalCooldownRecovery2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", statOrder = { 4445 }, level = 1, group = "GlobalCooldownRecovery2ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", statOrder = { 4446 }, level = 1, group = "ElementalEnergyShieldLeechPermyriad2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["UnaffectedByPoison2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Unaffected by Poison if 2 Hunter Items are Equipped", statOrder = { 4448 }, level = 1, group = "UnaffectedByPoison2HunterItems", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["RegenerateLifeOver1Second2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped", statOrder = { 4451 }, level = 1, group = "RegenerateLifeOver1Second2HunterItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AdditionalPierce2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped", statOrder = { 4458 }, level = 1, group = "AdditionalPierce2HunterItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnaffectedByIgnite2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Unaffected by Ignite if 2 Warlord Items are Equipped", statOrder = { 4461 }, level = 1, group = "UnaffectedByIgnite2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["NearbyEnemiesAreIntimidated2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", statOrder = { 4456 }, level = 1, group = "NearbyEnemiesAreIntimidated2WarlordItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PercentageStrength2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "(10-15)% increased Strength if 2 Warlord Items are Equipped", statOrder = { 4459 }, level = 1, group = "PercentageStrength2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["UnaffectedByChill2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Unaffected by Chill if 2 Redeemer Items are Equipped", statOrder = { 4460 }, level = 1, group = "UnaffectedByChill2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["NearbyEnemiesAreBlinded2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", statOrder = { 4455 }, level = 1, group = "NearbyEnemiesAreBlinded2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PercentageDexterity2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped", statOrder = { 4450 }, level = 1, group = "PercentageDexterity2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["UnaffectedByShock2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Unaffected by Shock if 2 Crusader Items are Equipped", statOrder = { 4462 }, level = 1, group = "UnaffectedByShock2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ConsecratedGroundStationary2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", statOrder = { 4449 }, level = 1, group = "ConsecratedGroundStationary2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PercentageIntelligence2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "(10-15)% increased Intelligence if 2 Crusader Items are Equipped", statOrder = { 4452 }, level = 1, group = "PercentageIntelligence2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["MaximumBlockChance4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", statOrder = { 4476 }, level = 1, group = "MaximumBlockChance4ElderItems", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["PhysicalReflectImmune4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", statOrder = { 4473 }, level = 1, group = "PhysicalReflectImmune4ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped", statOrder = { 4465 }, level = 1, group = "AdditionalCriticalStrikeChanceWithAttacks4ElderItems", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["MaximumSpellBlockChance4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", statOrder = { 4470 }, level = 1, group = "MaximumSpellBlockChance4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ElementalReflectImmune4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", statOrder = { 4472 }, level = 1, group = "ElementalReflectImmune4ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", statOrder = { 4480 }, level = 1, group = "AdditionalCriticalStrikeChanceWithSpells4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["ElementalDamageTakenAsChaos4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped", statOrder = { 4474 }, level = 1, group = "ElementalDamageTakenAsChaos4HunterItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, }, + ["MovementVelocity4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped", statOrder = { 4471 }, level = 1, group = "MovementVelocity4HunterItems", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MaximumChaosResistance4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped", statOrder = { 4466 }, level = 1, group = "MaximumChaosResistance4HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", statOrder = { 4478 }, level = 1, group = "PhysicalDamageTakenAsFirePercent4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["EnduranceChargeIfHitRecently4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped", statOrder = { 4475, 4475.1 }, level = 1, group = "EnduranceChargeIfHitRecently4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["MaximumFireResist4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped", statOrder = { 4468 }, level = 1, group = "MaximumFireResist4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["PhysicalDamageTakenAsCold4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", statOrder = { 4477 }, level = 1, group = "PhysicalDamageTakenAsCold4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, + ["FrenzyChargeOnHitChance4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", statOrder = { 4463 }, level = 1, group = "FrenzyChargeOnHitChance4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["MaximumColdResist4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped", statOrder = { 4467 }, level = 1, group = "MaximumColdResist4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", statOrder = { 4479 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["PowerChargeOnHit4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", statOrder = { 4464 }, level = 1, group = "PowerChargeOnHit4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["MaximumLightningResistance4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped", statOrder = { 4469 }, level = 1, group = "MaximumLightningResistance4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["CannotBeStunned6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "Cannot be Stunned if 6 Elder Items are Equipped", statOrder = { 4485 }, level = 1, group = "CannotBeStunned6ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalPhysicalGemLevel6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped", statOrder = { 4497 }, level = 1, group = "GlobalPhysicalGemLevel6ElderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, }, + ["PercentageAllAttributes6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "(10-15)% increased Attributes if 6 Elder Items are Equipped", statOrder = { 4483 }, level = 1, group = "PercentageAllAttributes6ElderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PhysAddedAsEachElement6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped", statOrder = { 4496, 4496.1 }, level = 1, group = "PhysAddedAsEachElement6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, }, + ["MaximumElementalResistance6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", statOrder = { 4481 }, level = 1, group = "MaximumElementalResistance6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["GlobalSupportGemLevel6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", statOrder = { 4498 }, level = 1, group = "GlobalSupportGemLevel6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, }, + ["AdditionalCurseOnEnemies6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "You can apply an additional Curse if 6 Hunter Items are Equipped", statOrder = { 4495 }, level = 1, group = "AdditionalCurseOnEnemies6HunterItems", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["GlobalChaosGemLevel6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", statOrder = { 4487 }, level = 1, group = "GlobalChaosGemLevel6HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, }, + ["AdditionalProjectile6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "Skills fire an additional Projectile if 6 Hunter Items are Equipped", statOrder = { 4482 }, level = 1, group = "AdditionalProjectile6HunterItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FortifyOnMeleeHit6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "Melee Hits Fortify if 6 Warlord Items are Equipped", statOrder = { 4486 }, level = 1, group = "FortifyOnMeleeHit6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["GlobalFireGemLevel6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", statOrder = { 4489 }, level = 1, group = "GlobalFireGemLevel6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, + ["MaximumEnduranceCharges6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped", statOrder = { 4492 }, level = 1, group = "MaximumEnduranceCharges6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["CannotBeFrozen6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "Cannot be Frozen if 6 Redeemer Items are Equipped", statOrder = { 4484 }, level = 1, group = "CannotBeFrozen6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["GlobalColdGemLevel6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", statOrder = { 4488 }, level = 1, group = "GlobalColdGemLevel6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, + ["MaximumFrenzyCharges6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", statOrder = { 4493 }, level = 1, group = "MaximumFrenzyCharges6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", statOrder = { 4490 }, level = 1, group = "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["GlobalLightningGemLevel6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", statOrder = { 4491 }, level = 1, group = "GlobalLightningGemLevel6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, }, + ["IncreasedMaximumPowerCharges6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Maximum Power Charges if 6 Crusader Items are Equipped", statOrder = { 4494 }, level = 1, group = "IncreasedMaximumPowerCharges6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["MovementSpeedPer5RageUnique_1"] = { affix = "", "(2-3)% increased Movement Speed per 5 Rage", statOrder = { 9423 }, level = 1, group = "MovementSpeedPer5Rage", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MaximumRageHalvedUnique_1"] = { affix = "", "Maximum Rage is Halved", statOrder = { 9179 }, level = 80, group = "MaximumRageHalved", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DamageTakenPer5RageCappedAt50PercentUnique_1"] = { affix = "", "5% less Damage taken per 5 Rage, up to a maximum of 30%", statOrder = { 6096 }, level = 1, group = "DamageTakenLessPercentPer5RageCapped", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalRageLossPerMinute"] = { affix = "", "Lose (1-3) Rage per second", statOrder = { 4586 }, level = 1, group = "AdditionalRageLossPerMinute", weightKey = { }, weightVal = { }, modTags = { }, }, + ["TrapAndMineThrowSpeedUnique_1"] = { affix = "", "(15-25)% increased Trap and Mine Throwing Speed", statOrder = { 10414 }, level = 20, group = "TrapAndMineThrowSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["CountAsHavingMaxEnduranceChargesUnique__1"] = { affix = "", "Count as having maximum number of Endurance Charges", statOrder = { 5885 }, level = 1, group = "CountAsHavingMaxEnduranceCharges", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CountAsHavingMaxFrenzyChargesUnique__1"] = { affix = "", "Count as having maximum number of Frenzy Charges", statOrder = { 5887 }, level = 1, group = "CountAsHavingMaxFrenzyCharges", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CountAsHavingMaxPowerChargesUnique__1"] = { affix = "", "Count as having maximum number of Power Charges", statOrder = { 5888 }, level = 1, group = "CountAsHavingMaxPowerCharges", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CountAsBlockingAttackFromShieldAttackFirstTargetUnique__1"] = { affix = "", "Count as Blocking Attack Damage from the first target Hit with each Shield Attack", statOrder = { 5884 }, level = 40, group = "CountAsBlockingAttackFromShieldAttackFirstTarget", weightKey = { }, weightVal = { }, modTags = { }, }, + ["CorruptedBloodImmunityUnique_1"] = { affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 1, group = "CorruptedBloodImmunity", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "ailment" }, }, + ["GhostTotemLimitUnique__1"] = { affix = "", "Maximum (3-5) Spectral Totems", statOrder = { 9533 }, level = 1, group = "GhostTotemLimit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GhostTotemDurationUnique__1"] = { affix = "", "Totems which would be killed by Enemies become Spectral Totems for 8 seconds instead", statOrder = { 5021 }, level = 1, group = "GhostTotemDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GhostTotemDamageUnique__1"] = { affix = "", "Skills used by Spectral Totems deal (40-50)% less Damage", statOrder = { 6861 }, level = 80, group = "GhostTotemDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FoolishlyDrawnAttentionUnique_1"] = { affix = "", "The stars are aligned if you have 6 Influence types among other Equipped Items", statOrder = { 499 }, level = 86, group = "FoolishlyDrawnAttention", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ConsecratedGroundEffectUnique__1"] = { affix = "", "(30-50)% increased Effect of Consecrated Ground you create", statOrder = { 5847 }, level = 1, group = "ConsecratedGroundEffect", weightKey = { }, weightVal = { }, modTags = { }, }, + ["BeltEnchantImplicit"] = { affix = "", "Can be Anointed", statOrder = { 7866 }, level = 1, group = "BeltEnchantImplicit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueYourAttacksCannotBeBlocked__1"] = { affix = "", "Monsters cannot Block your Attacks", statOrder = { 10667 }, level = 1, group = "YourAttacksCannotBeBlocked", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["UniqueYourSpellsCannotBeSuppressed__1"] = { affix = "", "Monsters cannot Suppress your Spells", statOrder = { 10697 }, level = 1, group = "YourSpellsCannotBeSuppressed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueElementalResistancesCannotBePenetrated__1"] = { affix = "", "Elemental Resistances cannot be Penetrated", statOrder = { 6338 }, level = 1, group = "ElementalResistancesCannotBePenetrated", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueYourChargesCannotBeStolen__1"] = { affix = "", "Monsters cannot steal your Power, Frenzy or Endurance charges on Hit", statOrder = { 10685 }, level = 1, group = "YourChargesCannotBeStolen", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueAvoidChainingProjectiles__1"] = { affix = "", "Avoid Projectiles that have Chained", statOrder = { 4937 }, level = 1, group = "AvoidChainingProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UniqueJewelAlternateTreeInRadiusKalguur"] = { affix = "", "Remembrancing (100-8000) songworthy deeds by the line of Vorana", "Passives in radius are Conquered by the Kalguur", "Historic", statOrder = { 10, 10.1, 10712 }, level = 1, group = "UniqueJewelAlternateTreeInRadius", weightKey = { }, weightVal = { }, modTags = { "red_herring" }, }, +} \ No newline at end of file diff --git a/src/Data/ModJewel.lua b/src/Data/ModJewel.lua index 11b3d7a75b..04f3e26806 100644 --- a/src/Data/ModJewel.lua +++ b/src/Data/ModJewel.lua @@ -2,428 +2,428 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2062 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1877 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1878 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3031 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3137 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, }, - ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3101 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, }, - ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, }, - ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3104 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3105 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3107 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, }, - ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3099 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5413 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10655 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, }, - ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, }, - ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, - ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1196 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4952 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, }, - ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2238 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3099 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, - ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1849, 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1650 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 9977 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 9968 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, }, - ["MaceDamageJewel"] = { type = "Prefix", affix = "Brutal", "(14-16)% increased Damage with Maces or Sceptres", statOrder = { 1330 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["AxeDamageJewel"] = { type = "Prefix", affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1306 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["SwordDamageJewel"] = { type = "Prefix", affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1344 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["BowDamageJewel"] = { type = "Prefix", affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1336 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["ClawDamageJewel"] = { type = "Prefix", affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1318 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["DaggerDamageJewel"] = { type = "Prefix", affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1324 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["WandDamageJewel"] = { type = "Prefix", affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2948 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["StaffDamageJewel"] = { type = "Prefix", affix = "Judging", "(14-16)% increased Damage with Staves", statOrder = { 1313 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, - ["OneHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 3340 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["TwoHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 3341 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["DualWieldingMeleeDamageJewel"] = { type = "Prefix", affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1283 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["UnarmedMeleeDamageJewel"] = { type = "Prefix", affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1305 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["MeleeDamageJewel_"] = { type = "Suffix", affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1239 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["ProjectileDamageJewel"] = { type = "Suffix", affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 2001 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "damage" }, }, - ["SpellDamageJewel"] = { type = "Suffix", affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["StaffSpellDamageJewel"] = { type = "Prefix", affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1232 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 500, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["DualWieldingSpellDamageJewel_"] = { type = "Prefix", affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1235 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["ShieldSpellDamageJewel"] = { type = "Prefix", affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1234 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, - ["TrapDamageJewel"] = { type = "Prefix", affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 1199 }, level = 1, group = "TrapDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["MineDamageJewel"] = { type = "Prefix", affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1201 }, level = 1, group = "MineDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["DamageJewel"] = { type = "Suffix", affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1196 }, level = 1, group = "DamageForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "damage" }, }, - ["MinionDamageJewel"] = { type = "Prefix", affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "damage", "minion" }, }, - ["FireDamageJewel"] = { type = "Prefix", affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["ColdDamageJewel"] = { type = "Prefix", affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["LightningDamageJewel"] = { type = "Prefix", affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["PhysicalDamageJewel"] = { type = "Prefix", affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DamageOverTimeJewel"] = { type = "Suffix", affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1215 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, }, - ["ChaosDamageJewel"] = { type = "Prefix", affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AreaDamageJewel"] = { type = "Suffix", affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 2040 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, }, - ["MaceAttackSpeedJewel"] = { type = "Prefix", affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1429 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["AxeAttackSpeedJewel"] = { type = "Prefix", affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1425 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["SwordAttackSpeedJewel"] = { type = "Prefix", affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1431 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["BowAttackSpeedJewel"] = { type = "Prefix", affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1430 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["ClawAttackSpeedJewel"] = { type = "Prefix", affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1427 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["DaggerAttackSpeedJewel"] = { type = "Prefix", affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1428 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["WandAttackSpeedJewel"] = { type = "Prefix", affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1432 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["StaffAttackSpeedJewel"] = { type = "Prefix", affix = "Blunt", "(6-8)% increased Attack Speed with Staves", statOrder = { 1426 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["OneHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1424 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["TwoHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1423 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "attack", "speed" }, }, - ["DualWieldingAttackSpeedJewel"] = { type = "Prefix", affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1420 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 500 }, modTags = { "attack", "speed" }, }, - ["DualWieldingCastSpeedJewel"] = { type = "Prefix", affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1452 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, }, - ["ShieldAttackSpeedJewel"] = { type = "Prefix", affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1422 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 400 }, modTags = { "attack", "speed" }, }, - ["ShieldCastSpeedJewel"] = { type = "Prefix", affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1453 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, }, - ["StaffCastSpeedJewel"] = { type = "Prefix", affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1454 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "caster", "speed" }, }, - ["UnarmedAttackSpeedJewel"] = { type = "Prefix", affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1434 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, }, - ["AttackSpeedJewel"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1415 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attack", "speed" }, }, - ["ProjectileSpeedJewel"] = { type = "Suffix", affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 1801 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "speed" }, }, - ["CastSpeedJewel"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster", "speed" }, }, - ["TrapThrowSpeedJewel"] = { type = "Prefix", affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["MineLaySpeedJewel"] = { type = "Prefix", affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["AttackAndCastSpeedJewel"] = { type = "Suffix", affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "attack", "caster", "speed" }, }, - ["PhysicalDamageWhileHoldingAShield"] = { type = "Prefix", affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1211 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, - ["FireGemCastSpeedJewel"] = { type = "Prefix", affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1370 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "fire", "caster", "speed" }, }, - ["ColdGemCastSpeedJewel"] = { type = "Prefix", affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1381 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "caster", "speed" }, }, - ["LightningGemCastSpeedJewel_"] = { type = "Prefix", affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1389 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "caster", "speed" }, }, - ["ChaosGemCastSpeedJewel"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1397 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "speed" }, }, - ["CurseCastSpeedJewel_"] = { type = "Suffix", affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 2219 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed", "curse" }, }, - ["StrengthJewel"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1182 }, level = 1, group = "StrengthForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, - ["DexterityJewel"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1183 }, level = 1, group = "DexterityForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, - ["IntelligenceJewel"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1184 }, level = 1, group = "IntelligenceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, - ["StrengthDexterityJewel"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1185 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, - ["StrengthIntelligenceJewel"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1186 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, - ["DexterityIntelligenceJewel"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1187 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, - ["AllAttributesJewel"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "attribute" }, }, - ["IncreasedLifeJewel"] = { type = "Prefix", affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 1574 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["PercentIncreasedLifeJewel"] = { type = "Prefix", affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 1576 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 350, 500 }, modTags = { "resource", "life" }, }, - ["IncreasedManaJewel"] = { type = "Prefix", affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 1584 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["PercentIncreasedManaJewel"] = { type = "Prefix", affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 250 }, modTags = { "resource", "mana" }, }, - ["IncreasedManaRegenJewel"] = { type = "Prefix", affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "mana" }, }, - ["IncreasedEnergyShieldJewel_"] = { type = "Prefix", affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldJewel"] = { type = "Prefix", affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 1566 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, - ["IncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 1574, 1584 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, - ["PercentIncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 1576, 1585 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, }, - ["EnergyShieldAndManaJewel"] = { type = "Prefix", affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 1566, 1585 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, - ["LifeAndEnergyShieldJewel"] = { type = "Prefix", affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 1566, 1576 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["LifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["LifeLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1654 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "physical", "attack" }, }, - ["ManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["ManaLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "physical", "attack" }, }, - ["SpellLifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Transfusing", "0.2% of Spell Damage Leeched as Life", statOrder = { 1668 }, level = 1, group = "SpellLifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "caster" }, }, - ["SpellManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Siphoning", "0.2% of Spell Damage Leeched as Mana", statOrder = { 1709 }, level = 1, group = "SpellManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "caster" }, }, - ["LifeOnHitJewel"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1745 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "attack" }, }, - ["ManaOnHitJewel"] = { type = "Suffix", affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "attack" }, }, - ["EnergyShieldOnHitJewel"] = { type = "Suffix", affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1752 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield", "attack" }, }, - ["LifeRecoupJewel"] = { type = "Suffix", affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "life" }, }, - ["IncreasedArmourJewel"] = { type = "Prefix", affix = "Armoured", "(14-18)% increased Armour", statOrder = { 1546 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "armour" }, }, - ["IncreasedEvasionJewel"] = { type = "Prefix", affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 1554 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "evasion" }, }, - ["ArmourEvasionJewel"] = { type = "Prefix", affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 1546, 1554 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["ArmourEnergyShieldJewel"] = { type = "Prefix", affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 1546, 1566 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["EvasionEnergyShieldJewel"] = { type = "Prefix", affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 1554, 1566 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["IncreasedDefensesJewel"] = { type = "Prefix", affix = "Defensive", "(4-6)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, }, - ["ItemRarityJewel"] = { type = "Suffix", affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 1601 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, - ["IncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, - ["PercentIncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Precision", "(10-14)% increased Global Accuracy Rating", statOrder = { 1439 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "attack" }, }, - ["AccuracyAndCritsJewel"] = { type = "Suffix", affix = "of Deadliness", "(6-10)% increased Global Accuracy Rating", "(6-10)% increased Global Critical Strike Chance", statOrder = { 1439, 1464 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 150 }, modTags = { "attack", "critical" }, }, - ["CriticalStrikeChanceJewel"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CritChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "critical" }, }, - ["CriticalStrikeMultiplierJewel"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "damage", "critical" }, }, - ["CritChanceWithMaceJewel"] = { type = "Prefix", affix = "of Striking FIX ME", "(12-16)% increased Critical Strike Chance with Maces or Sceptres", statOrder = { 1474 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithAxeJewel"] = { type = "Prefix", affix = "of Biting FIX ME", "(12-16)% increased Critical Strike Chance with Axes", statOrder = { 1477 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithSwordJewel"] = { type = "Prefix", affix = "of Stinging FIX ME", "(12-16)% increased Critical Strike Chance with Swords", statOrder = { 1473 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithBowJewel"] = { type = "Prefix", affix = "of the Sniper FIX ME", "(12-16)% increased Critical Strike Chance with Bows", statOrder = { 1470 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithClawJewel"] = { type = "Prefix", affix = "of the Eagle FIX ME", "(12-16)% increased Critical Strike Chance with Claws", statOrder = { 1471 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithDaggerJewel"] = { type = "Prefix", affix = "of Needling FIX ME", "(12-16)% increased Critical Strike Chance with Daggers", statOrder = { 1472 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithWandJewel"] = { type = "Prefix", affix = "of Divination FIX ME", "(12-16)% increased Critical Strike Chance with Wands", statOrder = { 1476 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritChanceWithStaffJewel"] = { type = "Prefix", affix = "of Tyranny FIX ME", "(12-16)% increased Critical Strike Chance with Staves", statOrder = { 1475 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, - ["CritMultiplierWithMaceJewel"] = { type = "Prefix", affix = "of Crushing FIX ME", "+(8-10)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1499 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithAxeJewel"] = { type = "Prefix", affix = "of Execution FIX ME", "+(8-10)% to Critical Strike Multiplier with Axes", statOrder = { 1500 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithSwordJewel"] = { type = "Prefix", affix = "of Severing FIX ME", "+(8-10)% to Critical Strike Multiplier with Swords", statOrder = { 1502 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithBowJewel"] = { type = "Prefix", affix = "of the Hunter FIX ME", "+(8-10)% to Critical Strike Multiplier with Bows", statOrder = { 1501 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithClawJewel"] = { type = "Prefix", affix = "of the Bear FIX ME", "+(8-10)% to Critical Strike Multiplier with Claws", statOrder = { 1504 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithDaggerJewel"] = { type = "Prefix", affix = "of Assassination FIX ME", "+(8-10)% to Critical Strike Multiplier with Daggers", statOrder = { 1498 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithWandJewel_"] = { type = "Prefix", affix = "of Evocation FIX ME", "+(8-10)% to Critical Strike Multiplier with Wands", statOrder = { 1503 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["CritMultiplierWithStaffJewel"] = { type = "Prefix", affix = "of Trauma FIX ME", "+(8-10)% to Critical Strike Multiplier with Staves", statOrder = { 1505 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["OneHandedCritChanceJewel"] = { type = "Prefix", affix = "Harming", "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons", statOrder = { 1483 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, - ["TwoHandedCritChanceJewel"] = { type = "Prefix", affix = "Sundering", "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons", statOrder = { 1481 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, - ["DualWieldingCritChanceJewel"] = { type = "Prefix", affix = "Technical", "(14-18)% increased Attack Critical Strike Chance while Dual Wielding", statOrder = { 1485 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, - ["ShieldCritChanceJewel"] = { type = "Prefix", affix = "", "(10-14)% increased Critical Strike Chance while holding a Shield", statOrder = { 1478 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, }, - ["MeleeCritChanceJewel"] = { type = "Suffix", affix = "of Weight", "(10-14)% increased Melee Critical Strike Chance", statOrder = { 1484 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, - ["SpellCritChanceJewel"] = { type = "Suffix", affix = "of Annihilation", "(10-14)% increased Spell Critical Strike Chance", statOrder = { 1463 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster", "critical" }, }, - ["TrapCritChanceJewel_"] = { type = "Prefix", affix = "Inescapable", "(12-16)% increased Critical Strike Chance with Traps", statOrder = { 1479 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["MineCritChanceJewel"] = { type = "Prefix", affix = "Crippling", "(12-16)% increased Critical Strike Chance with Mines", statOrder = { 1480 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["FireCritChanceJewel"] = { type = "Prefix", affix = "Incinerating", "(14-18)% increased Critical Strike Chance with Fire Skills", statOrder = { 1486 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "fire", "critical" }, }, - ["ColdCritChanceJewel"] = { type = "Prefix", affix = "Avalanching", "(14-18)% increased Critical Strike Chance with Cold Skills", statOrder = { 1488 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "cold", "critical" }, }, - ["LightningCritChanceJewel"] = { type = "Prefix", affix = "Thundering", "(14-18)% increased Critical Strike Chance with Lightning Skills", statOrder = { 1487 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "lightning", "critical" }, }, - ["ElementalCritChanceJewel"] = { type = "Suffix", affix = "of the Apocalypse", "(10-14)% increased Critical Strike Chance with Elemental Skills", statOrder = { 1489 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental", "critical" }, }, - ["ChaosCritChanceJewel"] = { type = "Prefix", affix = "Obliterating", "(12-16)% increased Critical Strike Chance with Chaos Skills", statOrder = { 1490 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, }, - ["OneHandCritMultiplierJewel_"] = { type = "Prefix", affix = "Piercing", "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrder = { 1506 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TwoHandCritMultiplierJewel"] = { type = "Prefix", affix = "Rupturing", "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons", statOrder = { 1482 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["DualWieldingCritMultiplierJewel"] = { type = "Prefix", affix = "Puncturing", "+(15-18)% to Critical Strike Multiplier while Dual Wielding", statOrder = { 4269 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["ShieldCritMultiplierJewel"] = { type = "Prefix", affix = "", "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield", statOrder = { 1509 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, }, - ["MeleeCritMultiplier"] = { type = "Suffix", affix = "of Demolishing", "+(12-15)% to Melee Critical Strike Multiplier", statOrder = { 1507 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["SpellCritMultiplier"] = { type = "Suffix", affix = "of Unmaking", "+(12-15)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1497 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, - ["TrapCritMultiplier"] = { type = "Prefix", affix = "Debilitating", "+(8-10)% to Critical Strike Multiplier with Traps", statOrder = { 1510 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["MineCritMultiplier"] = { type = "Prefix", affix = "Incapacitating", "+(8-10)% to Critical Strike Multiplier with Mines", statOrder = { 1511 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, - ["FireCritMultiplier"] = { type = "Prefix", affix = "Infernal", "+(15-18)% to Critical Strike Multiplier with Fire Skills", statOrder = { 1512 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, }, - ["ColdCritMultiplier"] = { type = "Prefix", affix = "Arctic", "+(15-18)% to Critical Strike Multiplier with Cold Skills", statOrder = { 1514 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, }, - ["LightningCritMultiplier"] = { type = "Prefix", affix = "Surging", "+(15-18)% to Critical Strike Multiplier with Lightning Skills", statOrder = { 1513 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, }, - ["ElementalCritMultiplier"] = { type = "Suffix", affix = "of the Elements", "+(12-15)% to Critical Strike Multiplier with Elemental Skills", statOrder = { 1515 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, - ["ChaosCritMultiplier"] = { type = "Prefix", affix = "", "+(8-10)% to Critical Strike Multiplier with Chaos Skills", statOrder = { 1516 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, }, - ["FireResistanceJewel"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "fire", "resistance" }, }, - ["ColdResistanceJewel"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "cold", "resistance" }, }, - ["LightningResistanceJewel"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["FireColdResistanceJewel"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2803 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, }, - ["FireLightningResistanceJewel"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2804 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, - ["ColdLightningResistanceJewel"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2805 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, - ["AllResistancesJewel"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "resistance" }, }, - ["ChaosResistanceJewel"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, }, - ["MaximumFireResistanceJewel"] = { type = "Suffix", affix = "of the Phoenix", "+(1-2)% to maximum Fire Resistance", statOrder = { 1628 }, level = 1, group = "MaximumFireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "fire", "resistance" }, }, - ["MaximumColdResistanceJewel"] = { type = "Suffix", affix = "of the Kraken", "+(1-2)% to maximum Cold Resistance", statOrder = { 1634 }, level = 1, group = "MaximumColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "cold", "resistance" }, }, - ["MaximumLightningResistanceJewel"] = { type = "Suffix", affix = "of the Leviathan", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1639 }, level = 1, group = "MaximumLightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["StunDurationJewel"] = { type = "Suffix", affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 1868 }, level = 1, group = "StunDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, }, - ["StunRecoveryJewel"] = { type = "Suffix", affix = "of Recovery", "(25-35)% increased Stun and Block Recovery", statOrder = { 1907 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, }, - ["ManaCostReductionJewel"] = { type = "Suffix", affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["FasterAilmentDamageJewel"] = { type = "Prefix", affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 6132 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "ailment" }, }, - ["AuraRadiusJewel"] = { type = "Suffix", affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 2229 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, - ["CurseRadiusJewel"] = { type = "Suffix", affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Hex Skills", statOrder = { 2230 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["AvoidIgniteJewel"] = { type = "Suffix", affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AvoidShockJewel"] = { type = "Suffix", affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AvoidFreezeJewel"] = { type = "Suffix", affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidChillJewel"] = { type = "Suffix", affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1849 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AvoidStunJewel"] = { type = "Suffix", affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 2034 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ChanceToIgniteJewel_"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Ignite", statOrder = { 2031 }, level = 1, group = "ChanceToIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChanceToShockJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 2038 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["EnduranceChargeDurationJewel"] = { type = "Suffix", affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 2130 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, }, - ["FrenzyChargeDurationJewel"] = { type = "Suffix", affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 2132 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, }, - ["PowerChargeDurationJewel_"] = { type = "Suffix", affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 2147 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, }, - ["KnockbackChanceJewel_"] = { type = "Suffix", affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 2000 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { }, }, - ["BlockDualWieldingJewel"] = { type = "Prefix", affix = "Parrying", "+(2-3)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1167 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 350 }, modTags = { "block" }, }, - ["BlockShieldJewel"] = { type = "Prefix", affix = "Shielding", "+(2-3)% Chance to Block Attack Damage while holding a Shield", statOrder = { 1144 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, - ["BlockStaffJewel"] = { type = "Prefix", affix = "Deflecting", "+(2-3)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1159 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, }, - ["DualWieldingSpellBlockForJewel"] = { type = "Prefix", affix = "Dissipating", "+(2-3)% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1149 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, - ["ShieldSpellBlockJewel"] = { type = "Prefix", affix = "Thwarting", "+(2-3)% Chance to Block Spell Damage while holding a Shield", statOrder = { 1145 }, level = 1, group = "ShieldSpellBlockForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, - ["StaffSpellBlockJewel"] = { type = "Prefix", affix = "Halting", "+(2-3)% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1155 }, level = 1, group = "StaffSpellBlockForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, }, - ["FreezeDurationJewel"] = { type = "Suffix", affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5770 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ShockDurationJewel"] = { type = "Suffix", affix = "of the Storm", "(12-16)% increased Shock Duration on Enemies", statOrder = { 1862 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IgniteDurationJewel"] = { type = "Suffix", affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1864 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChillAndShockEffectOnYouJewel"] = { type = "Suffix", affix = "of Insulation", "15% reduced Effect of Chill and Shock on you", statOrder = { 10017 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, - ["CurseEffectOnYouJewel"] = { type = "Suffix", affix = "of Hexwarding", "(25-30)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "curse" }, }, - ["IgniteDurationOnYouJewel"] = { type = "Suffix", affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ChillEffectOnYouJewel"] = { type = "Suffix", affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1650 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ShockEffectOnYouJewel"] = { type = "Suffix", affix = "of the Stormdweller", "(30-35)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["PoisonDurationOnYouJewel"] = { type = "Suffix", affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 9977 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "poison", "chaos", "ailment" }, }, - ["BleedDurationOnYouJewel"] = { type = "Suffix", affix = "of Stemming", "(30-35)% reduced Bleed Duration on you", statOrder = { 9968 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "bleed", "physical", "ailment" }, }, - ["ManaReservationEfficiencyJewel"] = { type = "Prefix", affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 250 }, modTags = { "resource", "mana" }, }, - ["FlaskDurationJewel"] = { type = "Prefix", affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 2192 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "flask" }, }, - ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrder = { 1863, 2034 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ShockChanceAndDurationJewel"] = { type = "Suffix", affix = "of Shocking", "(12-16)% increased Shock Duration on Enemies", "(3-5)% chance to Shock", statOrder = { 1862, 2038 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IgniteChanceAndDurationJewel"] = { type = "Suffix", affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", "(3-5)% chance to Ignite", statOrder = { 1864, 2031 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "fire", "ailment" }, }, - ["PoisonChanceAndDurationForJewel"] = { type = "Suffix", affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 3175, 3178 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "poison", "chaos", "ailment" }, }, - ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2494, 4999 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["ImpaleChanceForJewel_"] = { type = "Suffix", affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4923 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "physical", "attack" }, }, - ["PoisonDamageForJewel"] = { type = "Suffix", affix = "of Venom", "(16-20)% increased Damage with Poison", statOrder = { 3186 }, level = 1, group = "PoisonDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 500 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["BleedDamageForJewel"] = { type = "Suffix", affix = "of Haemophilia", "(16-20)% increased Damage with Bleeding", statOrder = { 3174 }, level = 1, group = "BleedDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 500 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["BurningDamageForJewel"] = { type = "Suffix", affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1882 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["EnergyShieldDelayJewel"] = { type = "Prefix", affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1567 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, - ["EnergyShieldRateJewel"] = { type = "Prefix", affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 1570 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, - ["MinionBlockJewel"] = { type = "Suffix", affix = "of the Wall", "Minions have +(4-6)% Chance to Block Attack Damage", statOrder = { 2908 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, }, - ["MinionLifeJewel"] = { type = "Prefix", affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "resource", "life", "minion" }, }, - ["MinionElementalResistancesJewel"] = { type = "Suffix", affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2917 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "elemental", "resistance", "minion" }, }, - ["MinionAccuracyRatingJewel"] = { type = "Suffix", affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 9269 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, - ["TotemDamageJewel"] = { type = "Prefix", affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1198 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "damage" }, }, - ["TotemLifeJewel"] = { type = "Prefix", affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1779 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "resource", "life" }, }, - ["TotemElementalResistancesJewel"] = { type = "Suffix", affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2792 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "resistance" }, }, - ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, - ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1364 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7919 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, - ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1373 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7917 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, - ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1384 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7921 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7879 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, - ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2240 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2240 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2240 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2240 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, - ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4589 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, - ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7923 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5046 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, - ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5739 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, - ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7916 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6079 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6079 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, - ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2064 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, - ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7955 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2651 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1727 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6501 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9121 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9137 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, - ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7876 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7875 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4221 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4988 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4988 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9254 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2499 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3766 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1985 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1985 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, - ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 570 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 570 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 231 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 567 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, - ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 573 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, - ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 551 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 551 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 336 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 566 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, - ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 554 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, - ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8204 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8204 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8216 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1586 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1591 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, - ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4535 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4820 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2186 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5401 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5698 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, - ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5417 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6765 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5698 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, - ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3463 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3463 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1978 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1978 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1774 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1771 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1621 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, - ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, - ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 163 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 165 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 166 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9485 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9485 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3112 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, - ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3110 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, - ["JewelChaosNonAilmentDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Atrophy", "+(6-8)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, - ["JewelColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Gelidity", "+(6-8)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, - ["JewelFireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Zealousness", "+(6-8)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, - ["JewelPhysicalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Exsanguinating", "+(6-8)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 1, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, - ["JewelGlobalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(4-6)% to Damage over Time Multiplier", statOrder = { 1247 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "damage" }, }, + ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1872 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1873 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3132 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, }, + ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3096 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, }, + ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, }, + ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3099 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3100 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3102 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, }, + ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10656 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, }, + ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, }, + ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, + ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1191 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4947 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, }, + ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, + ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 9978 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 9969 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, }, + ["MaceDamageJewel"] = { type = "Prefix", affix = "Brutal", "(14-16)% increased Damage with Maces or Sceptres", statOrder = { 1325 }, level = 1, group = "IncreasedMaceDamageForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["AxeDamageJewel"] = { type = "Prefix", affix = "Sinister", "(14-16)% increased Damage with Axes", statOrder = { 1301 }, level = 1, group = "IncreasedAxeDamageForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["SwordDamageJewel"] = { type = "Prefix", affix = "Vicious", "(14-16)% increased Damage with Swords", statOrder = { 1339 }, level = 1, group = "IncreasedSwordDamageForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["BowDamageJewel"] = { type = "Prefix", affix = "Fierce", "(14-16)% increased Damage with Bows", statOrder = { 1331 }, level = 1, group = "IncreasedBowDamageForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["ClawDamageJewel"] = { type = "Prefix", affix = "Savage", "(14-16)% increased Damage with Claws", statOrder = { 1313 }, level = 1, group = "IncreasedClawDamageForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["DaggerDamageJewel"] = { type = "Prefix", affix = "Lethal", "(14-16)% increased Damage with Daggers", statOrder = { 1319 }, level = 1, group = "IncreasedDaggerDamageForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["WandDamageJewel"] = { type = "Prefix", affix = "Cruel", "(14-16)% increased Damage with Wands", statOrder = { 2943 }, level = 1, group = "IncreasedWandDamageForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["StaffDamageJewel"] = { type = "Prefix", affix = "Judging", "(14-16)% increased Damage with Staves", statOrder = { 1308 }, level = 1, group = "IncreasedStaffDamageForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "damage", "attack" }, }, + ["OneHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Soldier's", "(12-14)% increased Damage with One Handed Weapons", statOrder = { 3335 }, level = 1, group = "IncreasedOneHandedMeleeDamageForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["TwoHandedMeleeDamageJewel"] = { type = "Prefix", affix = "Champion's", "(12-14)% increased Damage with Two Handed Weapons", statOrder = { 3336 }, level = 1, group = "IncreasedTwoHandedMeleeDamageForJewel", weightKey = { "bow", "wand", "one_handed_mod", "dual_wielding_mod", "shield_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["DualWieldingMeleeDamageJewel"] = { type = "Prefix", affix = "Gladiator's", "(12-14)% increased Attack Damage while Dual Wielding", statOrder = { 1278 }, level = 1, group = "IncreasedDualWieldlingDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["UnarmedMeleeDamageJewel"] = { type = "Prefix", affix = "Brawling", "(14-16)% increased Melee Physical Damage with Unarmed Attacks", statOrder = { 1300 }, level = 1, group = "IncreasedUnarmedDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["MeleeDamageJewel_"] = { type = "Suffix", affix = "of Combat", "(10-12)% increased Melee Damage", statOrder = { 1234 }, level = 1, group = "MeleeDamageForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["ProjectileDamageJewel"] = { type = "Suffix", affix = "of Archery", "(10-12)% increased Projectile Damage", statOrder = { 1996 }, level = 1, group = "ProjectileDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "damage" }, }, + ["SpellDamageJewel"] = { type = "Suffix", affix = "of Mysticism", "(10-12)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["StaffSpellDamageJewel"] = { type = "Prefix", affix = "Wizard's", "(14-16)% increased Spell Damage while wielding a Staff", statOrder = { 1227 }, level = 1, group = "StaffSpellDamageForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 500, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["DualWieldingSpellDamageJewel_"] = { type = "Prefix", affix = "Sorcerer's", "(14-16)% increased Spell Damage while Dual Wielding", statOrder = { 1230 }, level = 1, group = "DualWieldingSpellDamageForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["ShieldSpellDamageJewel"] = { type = "Prefix", affix = "Battlemage's", "(14-16)% increased Spell Damage while holding a Shield", statOrder = { 1229 }, level = 1, group = "ShieldSpellDamageForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "bow", "staff", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 0, 500 }, modTags = { "caster_damage", "damage", "caster" }, }, + ["TrapDamageJewel"] = { type = "Prefix", affix = "Trapping", "(14-16)% increased Trap Damage", statOrder = { 1194 }, level = 1, group = "TrapDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["MineDamageJewel"] = { type = "Prefix", affix = "Sabotage", "(14-16)% increased Mine Damage", statOrder = { 1196 }, level = 1, group = "MineDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["DamageJewel"] = { type = "Suffix", affix = "of Wounding", "(8-10)% increased Damage", statOrder = { 1191 }, level = 1, group = "DamageForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "damage" }, }, + ["MinionDamageJewel"] = { type = "Prefix", affix = "Leadership", "Minions deal (14-16)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "damage", "minion" }, }, + ["FireDamageJewel"] = { type = "Prefix", affix = "Flaming", "(14-16)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["ColdDamageJewel"] = { type = "Prefix", affix = "Chilling", "(14-16)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["LightningDamageJewel"] = { type = "Prefix", affix = "Humming", "(14-16)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamageForJewel", weightKey = { "not_int", "default", }, weightVal = { 400, 500 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["PhysicalDamageJewel"] = { type = "Prefix", affix = "Sharpened", "(14-16)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DamageOverTimeJewel"] = { type = "Suffix", affix = "of Entropy", "(10-12)% increased Damage over Time", statOrder = { 1210 }, level = 1, group = "DamageOverTimeForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, }, + ["ChaosDamageJewel"] = { type = "Prefix", affix = "Chaotic", "(9-13)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "ChaosDamageForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AreaDamageJewel"] = { type = "Suffix", affix = "of Blasting", "(10-12)% increased Area Damage", statOrder = { 2035 }, level = 1, group = "AreaDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "damage" }, }, + ["MaceAttackSpeedJewel"] = { type = "Prefix", affix = "Beating", "(6-8)% increased Attack Speed with Maces or Sceptres", statOrder = { 1424 }, level = 1, group = "MaceAttackSpeedForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["AxeAttackSpeedJewel"] = { type = "Prefix", affix = "Cleaving", "(6-8)% increased Attack Speed with Axes", statOrder = { 1420 }, level = 1, group = "AxeAttackSpeedForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["SwordAttackSpeedJewel"] = { type = "Prefix", affix = "Fencing", "(6-8)% increased Attack Speed with Swords", statOrder = { 1426 }, level = 1, group = "SwordAttackSpeedForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 500, 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["BowAttackSpeedJewel"] = { type = "Prefix", affix = "Volleying", "(6-8)% increased Attack Speed with Bows", statOrder = { 1425 }, level = 1, group = "BowAttackSpeedForJewel", weightKey = { "one_handed_mod", "melee_mod", "dual_wielding_mod", "shield_mod", "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["ClawAttackSpeedJewel"] = { type = "Prefix", affix = "Ripping", "(6-8)% increased Attack Speed with Claws", statOrder = { 1422 }, level = 1, group = "ClawAttackSpeedForJewel", weightKey = { "two_handed_mod", "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["DaggerAttackSpeedJewel"] = { type = "Prefix", affix = "Slicing", "(6-8)% increased Attack Speed with Daggers", statOrder = { 1423 }, level = 1, group = "DaggerAttackSpeedForJewel", weightKey = { "two_handed_mod", "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["WandAttackSpeedJewel"] = { type = "Prefix", affix = "Jinxing", "(6-8)% increased Attack Speed with Wands", statOrder = { 1427 }, level = 1, group = "WandAttackSpeedForJewel", weightKey = { "melee_mod", "two_handed_mod", "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["StaffAttackSpeedJewel"] = { type = "Prefix", affix = "Blunt", "(6-8)% increased Attack Speed with Staves", statOrder = { 1421 }, level = 1, group = "StaffAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["OneHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Bandit's", "(4-6)% increased Attack Speed with One Handed Melee Weapons", statOrder = { 1419 }, level = 1, group = "OneHandedMeleeAttackSpeedForJewel", weightKey = { "two_handed_mod", "wand", "not_int", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["TwoHandedMeleeAttackSpeedJewel"] = { type = "Prefix", affix = "Warrior's", "(4-6)% increased Attack Speed with Two Handed Melee Weapons", statOrder = { 1418 }, level = 1, group = "TwoHandedMeleeAttackSpeedForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "bow", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "attack", "speed" }, }, + ["DualWieldingAttackSpeedJewel"] = { type = "Prefix", affix = "Harmonic", "(4-6)% increased Attack Speed while Dual Wielding", statOrder = { 1415 }, level = 1, group = "AttackSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "default", }, weightVal = { 0, 0, 500 }, modTags = { "attack", "speed" }, }, + ["DualWieldingCastSpeedJewel"] = { type = "Prefix", affix = "Resonant", "(3-5)% increased Cast Speed while Dual Wielding", statOrder = { 1447 }, level = 1, group = "CastSpeedWhileDualWieldingForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, }, + ["ShieldAttackSpeedJewel"] = { type = "Prefix", affix = "Charging", "(4-6)% increased Attack Speed while holding a Shield", statOrder = { 1417 }, level = 1, group = "AttackSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 500, 400 }, modTags = { "attack", "speed" }, }, + ["ShieldCastSpeedJewel"] = { type = "Prefix", affix = "Warding", "(3-5)% increased Cast Speed while holding a Shield", statOrder = { 1448 }, level = 1, group = "CastSpeedWithAShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 500 }, modTags = { "caster", "speed" }, }, + ["StaffCastSpeedJewel"] = { type = "Prefix", affix = "Wright's", "(3-5)% increased Cast Speed while wielding a Staff", statOrder = { 1449 }, level = 1, group = "CastSpeedWithAStaffForJewel", weightKey = { "one_handed_mod", "dual_wielding_mod", "shield_mod", "staff", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 500, 0, 0, 500 }, modTags = { "caster", "speed" }, }, + ["UnarmedAttackSpeedJewel"] = { type = "Prefix", affix = "Furious", "(6-8)% increased Unarmed Attack Speed with Melee Skills", statOrder = { 1429 }, level = 1, group = "AttackSpeedWhileUnarmedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "speed" }, }, + ["AttackSpeedJewel"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1410 }, level = 1, group = "IncreasedAttackSpeedForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attack", "speed" }, }, + ["ProjectileSpeedJewel"] = { type = "Suffix", affix = "of Soaring", "(6-8)% increased Projectile Speed", statOrder = { 1796 }, level = 1, group = "IncreasedProjectileSpeedForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "speed" }, }, + ["CastSpeedJewel"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "caster", "speed" }, }, + ["TrapThrowSpeedJewel"] = { type = "Prefix", affix = "Honed", "(6-8)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 1, group = "TrapThrowSpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["MineLaySpeedJewel"] = { type = "Prefix", affix = "Arming", "(6-8)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 1, group = "MineLaySpeedForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["AttackAndCastSpeedJewel"] = { type = "Suffix", affix = "of Zeal", "(2-4)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 1, group = "AttackAndCastSpeedForJewel", weightKey = { "default", }, weightVal = { 350 }, modTags = { "attack", "caster", "speed" }, }, + ["PhysicalDamageWhileHoldingAShield"] = { type = "Prefix", affix = "Flanking", "(12-14)% increased Attack Damage while holding a Shield", statOrder = { 1206 }, level = 1, group = "DamageWhileHoldingAShieldForJewel", weightKey = { "bow", "wand", "dual_wielding_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 500, 0 }, modTags = { "damage", "attack" }, }, + ["FireGemCastSpeedJewel"] = { type = "Prefix", affix = "Pyromantic", "(3-5)% increased Cast Speed with Fire Skills", statOrder = { 1365 }, level = 1, group = "FireGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "fire", "caster", "speed" }, }, + ["ColdGemCastSpeedJewel"] = { type = "Prefix", affix = "Cryomantic", "(3-5)% increased Cast Speed with Cold Skills", statOrder = { 1376 }, level = 1, group = "ColdGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "caster", "speed" }, }, + ["LightningGemCastSpeedJewel_"] = { type = "Prefix", affix = "Electromantic", "(3-5)% increased Cast Speed with Lightning Skills", statOrder = { 1384 }, level = 1, group = "LightningGemCastSpeedForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "caster", "speed" }, }, + ["ChaosGemCastSpeedJewel"] = { type = "Prefix", affix = "Withering", "(3-5)% increased Cast Speed with Chaos Skills", statOrder = { 1392 }, level = 1, group = "ChaosGemCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "caster", "speed" }, }, + ["CurseCastSpeedJewel_"] = { type = "Suffix", affix = "of Blasphemy", "Curse Skills have (5-10)% increased Cast Speed", statOrder = { 2214 }, level = 1, group = "CurseCastSpeedForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "speed", "curse" }, }, + ["StrengthJewel"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, + ["DexterityJewel"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, + ["IntelligenceJewel"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "attribute" }, }, + ["StrengthDexterityJewel"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, + ["StrengthIntelligenceJewel"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1181 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, + ["DexterityIntelligenceJewel"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1182 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "attribute" }, }, + ["AllAttributesJewel"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "attribute" }, }, + ["IncreasedLifeJewel"] = { type = "Prefix", affix = "Healthy", "+(8-12) to maximum Life", statOrder = { 1569 }, level = 1, group = "IncreasedLifeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["PercentIncreasedLifeJewel"] = { type = "Prefix", affix = "Vivid", "(5-7)% increased maximum Life", statOrder = { 1571 }, level = 1, group = "PercentIncreasedLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 350, 500 }, modTags = { "resource", "life" }, }, + ["IncreasedManaJewel"] = { type = "Prefix", affix = "Learned", "+(8-12) to maximum Mana", statOrder = { 1579 }, level = 1, group = "IncreasedManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["PercentIncreasedManaJewel"] = { type = "Prefix", affix = "Enlightened", "(8-10)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "PercentIncreasedManaForJewel", weightKey = { "not_str", "default", }, weightVal = { 500, 250 }, modTags = { "resource", "mana" }, }, + ["IncreasedManaRegenJewel"] = { type = "Prefix", affix = "Energetic", "(12-15)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "IncreasedManaRegenForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "mana" }, }, + ["IncreasedEnergyShieldJewel_"] = { type = "Prefix", affix = "Glowing", "+(8-12) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "IncreasedEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldJewel"] = { type = "Prefix", affix = "Shimmering", "(6-8)% increased maximum Energy Shield", statOrder = { 1561 }, level = 1, group = "EnergyShieldForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, + ["IncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Determined", "+(4-6) to maximum Life", "+(4-6) to maximum Mana", statOrder = { 1569, 1579 }, level = 1, group = "LifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "mana" }, }, + ["PercentIncreasedLifeAndManaJewel"] = { type = "Prefix", affix = "Passionate", "(2-4)% increased maximum Life", "(4-6)% increased maximum Mana", statOrder = { 1571, 1580 }, level = 1, group = "PercentageLifeAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "green_herring", "resource", "life", "mana" }, }, + ["EnergyShieldAndManaJewel"] = { type = "Prefix", affix = "Wise", "(2-4)% increased maximum Energy Shield", "(4-6)% increased maximum Mana", statOrder = { 1561, 1580 }, level = 1, group = "EnergyShieldAndManaForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "defences", "energy_shield" }, }, + ["LifeAndEnergyShieldJewel"] = { type = "Prefix", affix = "Faithful", "(2-4)% increased maximum Energy Shield", "(2-4)% increased maximum Life", statOrder = { 1561, 1571 }, level = 1, group = "LifeAndEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["LifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["LifeLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Hungering", "(0.2-0.4)% of Physical Attack Damage Leeched as Life", statOrder = { 1649 }, level = 1, group = "LifeLeechPermyriadForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "physical", "attack" }, }, + ["ManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["ManaLeechPermyriadSuffixJewel"] = { type = "Suffix", affix = "of Thirsting", "(0.2-0.4)% of Physical Attack Damage Leeched as Mana", statOrder = { 1699 }, level = 1, group = "ManaLeechPermyriadForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "physical", "attack" }, }, + ["SpellLifeLeechPermyriadJewel"] = { type = "Prefix", affix = "Transfusing", "0.2% of Spell Damage Leeched as Life", statOrder = { 1663 }, level = 1, group = "SpellLifeLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life", "caster" }, }, + ["SpellManaLeechPermyriadJewel"] = { type = "Prefix", affix = "Siphoning", "0.2% of Spell Damage Leeched as Mana", statOrder = { 1704 }, level = 1, group = "SpellManaLeechPermyriadForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana", "caster" }, }, + ["LifeOnHitJewel"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Attacks", statOrder = { 1740 }, level = 1, group = "LifeGainPerTargetForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "life", "attack" }, }, + ["ManaOnHitJewel"] = { type = "Suffix", affix = "of Absorption", "Gain (1-2) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTargetForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "resource", "mana", "attack" }, }, + ["EnergyShieldOnHitJewel"] = { type = "Suffix", affix = "of Focus", "Gain (2-3) Energy Shield per Enemy Hit with Attacks", statOrder = { 1747 }, level = 1, group = "EnergyShieldGainPerTargetForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield", "attack" }, }, + ["LifeRecoupJewel"] = { type = "Suffix", affix = "of Infusion", "(4-6)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 1, group = "LifeRecoupForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 500 }, modTags = { "resource", "life" }, }, + ["IncreasedArmourJewel"] = { type = "Prefix", affix = "Armoured", "(14-18)% increased Armour", statOrder = { 1541 }, level = 1, group = "IncreasedArmourForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "armour" }, }, + ["IncreasedEvasionJewel"] = { type = "Prefix", affix = "Evasive", "(14-18)% increased Evasion Rating", statOrder = { 1549 }, level = 1, group = "IncreasedEvasionForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "evasion" }, }, + ["ArmourEvasionJewel"] = { type = "Prefix", affix = "Fighter's", "(6-12)% increased Armour", "(6-12)% increased Evasion Rating", statOrder = { 1541, 1549 }, level = 1, group = "ArmourEvasionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["ArmourEnergyShieldJewel"] = { type = "Prefix", affix = "Paladin's", "(6-12)% increased Armour", "(2-4)% increased maximum Energy Shield", statOrder = { 1541, 1561 }, level = 1, group = "ArmourEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["EvasionEnergyShieldJewel"] = { type = "Prefix", affix = "Rogue's", "(6-12)% increased Evasion Rating", "(2-4)% increased maximum Energy Shield", statOrder = { 1549, 1561 }, level = 1, group = "EvasionEnergyShieldForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["IncreasedDefensesJewel"] = { type = "Prefix", affix = "Defensive", "(4-6)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "IncreasedDefensesForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "defences" }, }, + ["ItemRarityJewel"] = { type = "Suffix", affix = "of Raiding", "(4-6)% increased Rarity of Items found", statOrder = { 1596 }, level = 1, group = "ItemRarityForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "drop" }, }, + ["IncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Accuracy", "+(20-40) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracyForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack" }, }, + ["PercentIncreasedAccuracyJewel"] = { type = "Suffix", affix = "of Precision", "(10-14)% increased Global Accuracy Rating", statOrder = { 1434 }, level = 1, group = "IncreasedAccuracyPercentForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 500 }, modTags = { "attack" }, }, + ["AccuracyAndCritsJewel"] = { type = "Suffix", affix = "of Deadliness", "(6-10)% increased Global Accuracy Rating", "(6-10)% increased Global Critical Strike Chance", statOrder = { 1434, 1459 }, level = 1, group = "AccuracyAndCritsForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 150 }, modTags = { "attack", "critical" }, }, + ["CriticalStrikeChanceJewel"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CritChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "critical" }, }, + ["CriticalStrikeMultiplierJewel"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 1, group = "CritMultiplierForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "damage", "critical" }, }, + ["CritChanceWithMaceJewel"] = { type = "Prefix", affix = "of Striking FIX ME", "(12-16)% increased Critical Strike Chance with Maces or Sceptres", statOrder = { 1469 }, level = 1, group = "CritChanceWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithAxeJewel"] = { type = "Prefix", affix = "of Biting FIX ME", "(12-16)% increased Critical Strike Chance with Axes", statOrder = { 1472 }, level = 1, group = "CritChanceWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithSwordJewel"] = { type = "Prefix", affix = "of Stinging FIX ME", "(12-16)% increased Critical Strike Chance with Swords", statOrder = { 1468 }, level = 1, group = "CritChanceWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithBowJewel"] = { type = "Prefix", affix = "of the Sniper FIX ME", "(12-16)% increased Critical Strike Chance with Bows", statOrder = { 1465 }, level = 1, group = "CritChanceWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithClawJewel"] = { type = "Prefix", affix = "of the Eagle FIX ME", "(12-16)% increased Critical Strike Chance with Claws", statOrder = { 1466 }, level = 1, group = "CritChanceWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithDaggerJewel"] = { type = "Prefix", affix = "of Needling FIX ME", "(12-16)% increased Critical Strike Chance with Daggers", statOrder = { 1467 }, level = 1, group = "CritChanceWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithWandJewel"] = { type = "Prefix", affix = "of Divination FIX ME", "(12-16)% increased Critical Strike Chance with Wands", statOrder = { 1471 }, level = 1, group = "CritChanceWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritChanceWithStaffJewel"] = { type = "Prefix", affix = "of Tyranny FIX ME", "(12-16)% increased Critical Strike Chance with Staves", statOrder = { 1470 }, level = 1, group = "CritChanceWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "attack", "critical" }, }, + ["CritMultiplierWithMaceJewel"] = { type = "Prefix", affix = "of Crushing FIX ME", "+(8-10)% to Critical Strike Multiplier with Maces or Sceptres", statOrder = { 1494 }, level = 1, group = "CritMultiplierWithMaceForJewel", weightKey = { "mace", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithAxeJewel"] = { type = "Prefix", affix = "of Execution FIX ME", "+(8-10)% to Critical Strike Multiplier with Axes", statOrder = { 1495 }, level = 1, group = "CritMultiplierWithAxeForJewel", weightKey = { "axe", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithSwordJewel"] = { type = "Prefix", affix = "of Severing FIX ME", "+(8-10)% to Critical Strike Multiplier with Swords", statOrder = { 1497 }, level = 1, group = "CritMultiplierWithSwordForJewel", weightKey = { "sword", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithBowJewel"] = { type = "Prefix", affix = "of the Hunter FIX ME", "+(8-10)% to Critical Strike Multiplier with Bows", statOrder = { 1496 }, level = 1, group = "CritMultiplierWithBowForJewel", weightKey = { "bow", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithClawJewel"] = { type = "Prefix", affix = "of the Bear FIX ME", "+(8-10)% to Critical Strike Multiplier with Claws", statOrder = { 1499 }, level = 1, group = "CritMultiplierWithClawForJewel", weightKey = { "claw", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithDaggerJewel"] = { type = "Prefix", affix = "of Assassination FIX ME", "+(8-10)% to Critical Strike Multiplier with Daggers", statOrder = { 1493 }, level = 1, group = "CritMultiplierWithDaggerForJewel", weightKey = { "dagger", "specific_weapon", "not_dex", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithWandJewel_"] = { type = "Prefix", affix = "of Evocation FIX ME", "+(8-10)% to Critical Strike Multiplier with Wands", statOrder = { 1498 }, level = 1, group = "CritMultiplierWithWandForJewel", weightKey = { "wand", "specific_weapon", "not_int", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["CritMultiplierWithStaffJewel"] = { type = "Prefix", affix = "of Trauma FIX ME", "+(8-10)% to Critical Strike Multiplier with Staves", statOrder = { 1500 }, level = 1, group = "CritMultiplierWithStaffForJewel", weightKey = { "staff", "specific_weapon", "not_str", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["OneHandedCritChanceJewel"] = { type = "Prefix", affix = "Harming", "(14-18)% increased Critical Strike Chance with One Handed Melee Weapons", statOrder = { 1478 }, level = 1, group = "OneHandedCritChanceForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, + ["TwoHandedCritChanceJewel"] = { type = "Prefix", affix = "Sundering", "(14-18)% increased Critical Strike Chance with Two Handed Melee Weapons", statOrder = { 1476 }, level = 1, group = "TwoHandedCritChanceForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, + ["DualWieldingCritChanceJewel"] = { type = "Prefix", affix = "Technical", "(14-18)% increased Attack Critical Strike Chance while Dual Wielding", statOrder = { 1480 }, level = 1, group = "DualWieldingCritChanceForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, + ["ShieldCritChanceJewel"] = { type = "Prefix", affix = "", "(10-14)% increased Critical Strike Chance while holding a Shield", statOrder = { 1473 }, level = 1, group = "ShieldCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "attack", "critical" }, }, + ["MeleeCritChanceJewel"] = { type = "Suffix", affix = "of Weight", "(10-14)% increased Melee Critical Strike Chance", statOrder = { 1479 }, level = 1, group = "MeleeCritChanceForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "attack", "critical" }, }, + ["SpellCritChanceJewel"] = { type = "Suffix", affix = "of Annihilation", "(10-14)% increased Spell Critical Strike Chance", statOrder = { 1458 }, level = 1, group = "SpellCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster", "critical" }, }, + ["TrapCritChanceJewel_"] = { type = "Prefix", affix = "Inescapable", "(12-16)% increased Critical Strike Chance with Traps", statOrder = { 1474 }, level = 1, group = "TrapCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["MineCritChanceJewel"] = { type = "Prefix", affix = "Crippling", "(12-16)% increased Critical Strike Chance with Mines", statOrder = { 1475 }, level = 1, group = "MineCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["FireCritChanceJewel"] = { type = "Prefix", affix = "Incinerating", "(14-18)% increased Critical Strike Chance with Fire Skills", statOrder = { 1481 }, level = 1, group = "FireCritChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "fire", "critical" }, }, + ["ColdCritChanceJewel"] = { type = "Prefix", affix = "Avalanching", "(14-18)% increased Critical Strike Chance with Cold Skills", statOrder = { 1483 }, level = 1, group = "ColdCritChanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "cold", "critical" }, }, + ["LightningCritChanceJewel"] = { type = "Prefix", affix = "Thundering", "(14-18)% increased Critical Strike Chance with Lightning Skills", statOrder = { 1482 }, level = 1, group = "LightningCritChanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental", "lightning", "critical" }, }, + ["ElementalCritChanceJewel"] = { type = "Suffix", affix = "of the Apocalypse", "(10-14)% increased Critical Strike Chance with Elemental Skills", statOrder = { 1484 }, level = 1, group = "ElementalCritChanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental", "critical" }, }, + ["ChaosCritChanceJewel"] = { type = "Prefix", affix = "Obliterating", "(12-16)% increased Critical Strike Chance with Chaos Skills", statOrder = { 1485 }, level = 1, group = "ChaosCritChanceForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, }, + ["OneHandCritMultiplierJewel_"] = { type = "Prefix", affix = "Piercing", "+(15-18)% to Critical Strike Multiplier with One Handed Melee Weapons", statOrder = { 1501 }, level = 1, group = "OneHandCritMultiplierForJewel", weightKey = { "wand", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TwoHandCritMultiplierJewel"] = { type = "Prefix", affix = "Rupturing", "+(15-18)% to Critical Strike Multiplier with Two Handed Melee Weapons", statOrder = { 1477 }, level = 1, group = "TwoHandCritMultiplierForJewel", weightKey = { "bow", "one_handed_mod", "shield_mod", "dual_wielding_mod", "not_int", "default", }, weightVal = { 0, 0, 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["DualWieldingCritMultiplierJewel"] = { type = "Prefix", affix = "Puncturing", "+(15-18)% to Critical Strike Multiplier while Dual Wielding", statOrder = { 4264 }, level = 1, group = "DualWieldingCritMultiplierForJewel", weightKey = { "shield_mod", "two_handed_mod", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["ShieldCritMultiplierJewel"] = { type = "Prefix", affix = "", "+(6-8)% to Melee Critical Strike Multiplier while holding a Shield", statOrder = { 1504 }, level = 1, group = "ShieldCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "attack", "critical" }, }, + ["MeleeCritMultiplier"] = { type = "Suffix", affix = "of Demolishing", "+(12-15)% to Melee Critical Strike Multiplier", statOrder = { 1502 }, level = 1, group = "MeleeCritMultiplierForJewel", weightKey = { "bow", "wand", "not_int", "default", }, weightVal = { 0, 0, 250, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["SpellCritMultiplier"] = { type = "Suffix", affix = "of Unmaking", "+(12-15)% to Critical Strike Multiplier for Spell Damage", statOrder = { 1492 }, level = 1, group = "SpellCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 250 }, modTags = { "caster_damage", "damage", "caster", "critical" }, }, + ["TrapCritMultiplier"] = { type = "Prefix", affix = "Debilitating", "+(8-10)% to Critical Strike Multiplier with Traps", statOrder = { 1505 }, level = 1, group = "TrapCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["MineCritMultiplier"] = { type = "Prefix", affix = "Incapacitating", "+(8-10)% to Critical Strike Multiplier with Mines", statOrder = { 1506 }, level = 1, group = "MineCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "critical" }, }, + ["FireCritMultiplier"] = { type = "Prefix", affix = "Infernal", "+(15-18)% to Critical Strike Multiplier with Fire Skills", statOrder = { 1507 }, level = 1, group = "FireCritMultiplierForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "critical" }, }, + ["ColdCritMultiplier"] = { type = "Prefix", affix = "Arctic", "+(15-18)% to Critical Strike Multiplier with Cold Skills", statOrder = { 1509 }, level = 1, group = "ColdCritMultiplierForJewel", weightKey = { "not_dex", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "critical" }, }, + ["LightningCritMultiplier"] = { type = "Prefix", affix = "Surging", "+(15-18)% to Critical Strike Multiplier with Lightning Skills", statOrder = { 1508 }, level = 1, group = "LightningCritMultiplierForJewel", weightKey = { "not_int", "default", }, weightVal = { 200, 250 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, }, + ["ElementalCritMultiplier"] = { type = "Suffix", affix = "of the Elements", "+(12-15)% to Critical Strike Multiplier with Elemental Skills", statOrder = { 1510 }, level = 1, group = "ElementalCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["ChaosCritMultiplier"] = { type = "Prefix", affix = "", "+(8-10)% to Critical Strike Multiplier with Chaos Skills", statOrder = { 1511 }, level = 1, group = "ChaosCritMultiplierForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "critical" }, }, + ["FireResistanceJewel"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "fire", "resistance" }, }, + ["ColdResistanceJewel"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "cold", "resistance" }, }, + ["LightningResistanceJewel"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 300, 500 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["FireColdResistanceJewel"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, }, + ["FireLightningResistanceJewel"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, + ["ColdLightningResistanceJewel"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 450, 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, + ["AllResistancesJewel"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "resistance" }, }, + ["ChaosResistanceJewel"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, }, + ["MaximumFireResistanceJewel"] = { type = "Suffix", affix = "of the Phoenix", "+(1-2)% to maximum Fire Resistance", statOrder = { 1623 }, level = 1, group = "MaximumFireResistanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "fire", "resistance" }, }, + ["MaximumColdResistanceJewel"] = { type = "Suffix", affix = "of the Kraken", "+(1-2)% to maximum Cold Resistance", statOrder = { 1629 }, level = 1, group = "MaximumColdResistanceForJewel", weightKey = { "not_dex", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "cold", "resistance" }, }, + ["MaximumLightningResistanceJewel"] = { type = "Suffix", affix = "of the Leviathan", "+(1-2)% to maximum Lightning Resistance", statOrder = { 1634 }, level = 1, group = "MaximumLightningResistanceForJewel", weightKey = { "not_int", "default", }, weightVal = { 60, 100 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["StunDurationJewel"] = { type = "Suffix", affix = "of Stunning", "(10-14)% increased Stun Duration on Enemies", statOrder = { 1863 }, level = 1, group = "StunDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, }, + ["StunRecoveryJewel"] = { type = "Suffix", affix = "of Recovery", "(25-35)% increased Stun and Block Recovery", statOrder = { 1902 }, level = 1, group = "StunRecoveryForJewel", weightKey = { "not_str", "default", }, weightVal = { 200, 400 }, modTags = { }, }, + ["ManaCostReductionJewel"] = { type = "Suffix", affix = "of Efficiency", "(3-5)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReductionForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["FasterAilmentDamageJewel"] = { type = "Prefix", affix = "Decrepifying", "Damaging Ailments deal damage (4-6)% faster", statOrder = { 6127 }, level = 1, group = "FasterAilmentDamageForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "ailment" }, }, + ["AuraRadiusJewel"] = { type = "Suffix", affix = "Hero's FIX ME", "(10-15)% increased Area of Effect of Aura Skills", statOrder = { 2224 }, level = 1, group = "AuraRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "aura" }, }, + ["CurseRadiusJewel"] = { type = "Suffix", affix = "Hexing FIX ME", "(8-10)% increased Area of Effect of Hex Skills", statOrder = { 2225 }, level = 1, group = "CurseRadiusForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["AvoidIgniteJewel"] = { type = "Suffix", affix = "Dousing FIX ME", "(6-8)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AvoidShockJewel"] = { type = "Suffix", affix = "Insulating FIX ME", "(6-8)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AvoidFreezeJewel"] = { type = "Suffix", affix = "Thawing FIX ME", "(6-8)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "AvoidFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidChillJewel"] = { type = "Suffix", affix = "Heating FIX ME", "(6-8)% chance to Avoid being Chilled", statOrder = { 1844 }, level = 1, group = "AvoidChillForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AvoidStunJewel"] = { type = "Suffix", affix = "FIX ME", "(6-8)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStunForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ChanceToFreezeJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Freeze", statOrder = { 2029 }, level = 1, group = "ChanceToFreezeForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ChanceToIgniteJewel_"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Ignite", statOrder = { 2026 }, level = 1, group = "ChanceToIgniteForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChanceToShockJewel"] = { type = "Suffix", affix = "FIX ME", "(2-3)% chance to Shock", statOrder = { 2033 }, level = 1, group = "ChanceToShockForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["EnduranceChargeDurationJewel"] = { type = "Suffix", affix = "of Endurance", "(10-14)% increased Endurance Charge Duration", statOrder = { 2125 }, level = 1, group = "EnduranceChargeDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge" }, }, + ["FrenzyChargeDurationJewel"] = { type = "Suffix", affix = "of Frenzy", "(10-14)% increased Frenzy Charge Duration", statOrder = { 2127 }, level = 1, group = "FrenzyChargeDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 0, 0 }, modTags = { "frenzy_charge" }, }, + ["PowerChargeDurationJewel_"] = { type = "Suffix", affix = "of Power", "(10-14)% increased Power Charge Duration", statOrder = { 2142 }, level = 1, group = "PowerChargeDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "power_charge" }, }, + ["KnockbackChanceJewel_"] = { type = "Suffix", affix = "of Fending", "(4-6)% chance to Knock Enemies Back on hit", statOrder = { 1995 }, level = 1, group = "KnockbackChanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { }, }, + ["BlockDualWieldingJewel"] = { type = "Prefix", affix = "Parrying", "+(2-3)% Chance to Block Attack Damage while Dual Wielding", statOrder = { 1162 }, level = 1, group = "BlockDualWieldingForJewel", weightKey = { "staff", "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 0, 350 }, modTags = { "block" }, }, + ["BlockShieldJewel"] = { type = "Prefix", affix = "Shielding", "+(2-3)% Chance to Block Attack Damage while holding a Shield", statOrder = { 1139 }, level = 1, group = "BlockShieldForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, + ["BlockStaffJewel"] = { type = "Prefix", affix = "Deflecting", "+(2-3)% Chance to Block Attack Damage while wielding a Staff", statOrder = { 1154 }, level = 1, group = "BlockStaffForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, }, + ["DualWieldingSpellBlockForJewel"] = { type = "Prefix", affix = "Dissipating", "+(2-3)% Chance to Block Spell Damage while Dual Wielding", statOrder = { 1144 }, level = 1, group = "DualWieldingSpellBlockForJewel", weightKey = { "two_handed_mod", "shield_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, + ["ShieldSpellBlockJewel"] = { type = "Prefix", affix = "Thwarting", "+(2-3)% Chance to Block Spell Damage while holding a Shield", statOrder = { 1140 }, level = 1, group = "ShieldSpellBlockForJewel", weightKey = { "two_handed_mod", "dual_wielding_mod", "default", }, weightVal = { 0, 0, 350 }, modTags = { "block" }, }, + ["StaffSpellBlockJewel"] = { type = "Prefix", affix = "Halting", "+(2-3)% Chance to Block Spell Damage while wielding a Staff", statOrder = { 1150 }, level = 1, group = "StaffSpellBlockForJewel", weightKey = { "one_handed_mod", "staff", "specific_weapon", "shield_mod", "dual_wielding_mod", "not_dex", "default", }, weightVal = { 0, 350, 0, 0, 0, 350, 0 }, modTags = { "block" }, }, + ["FreezeDurationJewel"] = { type = "Suffix", affix = "of the Glacier", "(12-16)% increased Chill and Freeze Duration on Enemies", statOrder = { 5765 }, level = 1, group = "FreezeDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ShockDurationJewel"] = { type = "Suffix", affix = "of the Storm", "(12-16)% increased Shock Duration on Enemies", statOrder = { 1857 }, level = 1, group = "ShockDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IgniteDurationJewel"] = { type = "Suffix", affix = "of Immolation", "(3-5)% increased Ignite Duration on Enemies", statOrder = { 1859 }, level = 1, group = "BurnDurationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChillAndShockEffectOnYouJewel"] = { type = "Suffix", affix = "of Insulation", "15% reduced Effect of Chill and Shock on you", statOrder = { 10018 }, level = 1, group = "ChillAndShockEffectOnYouJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, + ["CurseEffectOnYouJewel"] = { type = "Suffix", affix = "of Hexwarding", "(25-30)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "curse" }, }, + ["IgniteDurationOnYouJewel"] = { type = "Suffix", affix = "of the Flameruler", "(30-35)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ChillEffectOnYouJewel"] = { type = "Suffix", affix = "of the Snowbreather", "(30-35)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ShockEffectOnYouJewel"] = { type = "Suffix", affix = "of the Stormdweller", "(30-35)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["PoisonDurationOnYouJewel"] = { type = "Suffix", affix = "of Neutralisation", "(30-35)% reduced Poison Duration on you", statOrder = { 9978 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "poison", "chaos", "ailment" }, }, + ["BleedDurationOnYouJewel"] = { type = "Suffix", affix = "of Stemming", "(30-35)% reduced Bleed Duration on you", statOrder = { 9969 }, level = 1, group = "ReducedBleedDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "bleed", "physical", "ailment" }, }, + ["ManaReservationEfficiencyJewel"] = { type = "Prefix", affix = "Cerebral", "(2-3)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "default", }, weightVal = { 250 }, modTags = { "resource", "mana" }, }, + ["FlaskDurationJewel"] = { type = "Prefix", affix = "Prolonging", "(6-10)% increased Flask Effect Duration", statOrder = { 2187 }, level = 1, group = "BeltIncreasedFlaskDuration", weightKey = { "default", }, weightVal = { 250 }, modTags = { "flask" }, }, + ["FreezeChanceAndDurationJewel"] = { type = "Suffix", affix = "of Freezing", "(12-16)% increased Freeze Duration on Enemies", "(3-5)% chance to Freeze", statOrder = { 1858, 2029 }, level = 1, group = "FreezeChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ShockChanceAndDurationJewel"] = { type = "Suffix", affix = "of Shocking", "(12-16)% increased Shock Duration on Enemies", "(3-5)% chance to Shock", statOrder = { 1857, 2033 }, level = 1, group = "ShockChanceAndDurationForJewel", weightKey = { "not_int", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IgniteChanceAndDurationJewel"] = { type = "Suffix", affix = "of Burning", "(6-8)% increased Ignite Duration on Enemies", "(3-5)% chance to Ignite", statOrder = { 1859, 2026 }, level = 1, group = "IgniteChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "fire", "ailment" }, }, + ["PoisonChanceAndDurationForJewel"] = { type = "Suffix", affix = "of Poisoning", "(6-8)% increased Poison Duration", "(3-5)% chance to Poison on Hit", statOrder = { 3170, 3173 }, level = 1, group = "PoisonChanceAndDurationForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 350 }, modTags = { "poison", "chaos", "ailment" }, }, + ["BleedChanceAndDurationForJewel__"] = { type = "Suffix", affix = "of Bleeding", "Attacks have (3-5)% chance to cause Bleeding", "(12-16)% increased Bleeding Duration", statOrder = { 2489, 4994 }, level = 1, group = "BleedChanceAndDurationForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["ImpaleChanceForJewel_"] = { type = "Suffix", affix = "of Impaling", "(5-7)% chance to Impale Enemies on Hit with Attacks", statOrder = { 4918 }, level = 1, group = "ImpaleChanceForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "physical", "attack" }, }, + ["PoisonDamageForJewel"] = { type = "Suffix", affix = "of Venom", "(16-20)% increased Damage with Poison", statOrder = { 3181 }, level = 1, group = "PoisonDamageForJewel", weightKey = { "not_dex", "default", }, weightVal = { 250, 500 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["BleedDamageForJewel"] = { type = "Suffix", affix = "of Haemophilia", "(16-20)% increased Damage with Bleeding", statOrder = { 3169 }, level = 1, group = "BleedDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 500 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["BurningDamageForJewel"] = { type = "Suffix", affix = "of Combusting", "(16-20)% increased Burning Damage", statOrder = { 1877 }, level = 1, group = "BurningDamageForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["EnergyShieldDelayJewel"] = { type = "Prefix", affix = "Serene", "(4-6)% faster start of Energy Shield Recharge", statOrder = { 1562 }, level = 1, group = "EnergyShieldDelayForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, + ["EnergyShieldRateJewel"] = { type = "Prefix", affix = "Fevered", "(6-8)% increased Energy Shield Recharge Rate", statOrder = { 1565 }, level = 1, group = "EnergyShieldRechargeRateForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 500 }, modTags = { "defences", "energy_shield" }, }, + ["MinionBlockJewel"] = { type = "Suffix", affix = "of the Wall", "Minions have +(4-6)% Chance to Block Attack Damage", statOrder = { 2903 }, level = 1, group = "MinionBlockForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "block", "minion" }, }, + ["MinionLifeJewel"] = { type = "Prefix", affix = "Master's", "Minions have (8-12)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLifeForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "resource", "life", "minion" }, }, + ["MinionElementalResistancesJewel"] = { type = "Suffix", affix = "of Resilience", "Minions have +(11-15)% to all Elemental Resistances", statOrder = { 2912 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 350 }, modTags = { "elemental", "resistance", "minion" }, }, + ["MinionAccuracyRatingJewel"] = { type = "Suffix", affix = "of Training", "(22-26)% increased Minion Accuracy Rating", statOrder = { 9265 }, level = 1, group = "MinionAccuracyRatingForJewel", weightKey = { "not_int", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, + ["TotemDamageJewel"] = { type = "Prefix", affix = "Shaman's", "(12-16)% increased Totem Damage", statOrder = { 1193 }, level = 1, group = "TotemDamageForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "damage" }, }, + ["TotemLifeJewel"] = { type = "Prefix", affix = "Carved", "(8-12)% increased Totem Life", statOrder = { 1774 }, level = 1, group = "TotemLifeForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "resource", "life" }, }, + ["TotemElementalResistancesJewel"] = { type = "Suffix", affix = "of Runes", "Totems gain +(6-10)% to all Elemental Resistances", statOrder = { 2787 }, level = 1, group = "TotemElementalResistancesForJewel", weightKey = { "not_str", "default", }, weightVal = { 250, 350 }, modTags = { "elemental", "resistance" }, }, + ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, + ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7914 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, + ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7912 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, + ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7916 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7874 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, + ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2235 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, + ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4584 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, + ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7918 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5041 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, + ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5734 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, + ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7911 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, + ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, + ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7950 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6496 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9117 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9133 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, + ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7870 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9250 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2494 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, + ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 226 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 562 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, + ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 568 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, + ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 331 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 561 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, + ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 549 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, + ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8199 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8199 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8211 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, + ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4530 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4815 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2181 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5396 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, + ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5412 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6760 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, + ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1769 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, + ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, + ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9486 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9486 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, + ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, + ["JewelChaosNonAilmentDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Atrophy", "+(6-8)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 1, group = "ChaosDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "chaos_damage", "damage", "chaos" }, }, + ["JewelColdDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Gelidity", "+(6-8)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 1, group = "ColdDamageOverTimeMultiplier", weightKey = { "not_str", "default", }, weightVal = { 300, 0 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "cold" }, }, + ["JewelFireDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Zealousness", "+(6-8)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 1, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "elemental_damage", "damage", "elemental", "fire" }, }, + ["JewelPhysicalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Exsanguinating", "+(6-8)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 1, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "physical_damage", "damage", "physical" }, }, + ["JewelGlobalDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(4-6)% to Damage over Time Multiplier", statOrder = { 1242 }, level = 1, group = "GlobalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 300 }, modTags = { "dot_multi", "damage" }, }, } \ No newline at end of file diff --git a/src/Data/ModJewelAbyss.lua b/src/Data/ModJewelAbyss.lua index 30164204ed..a979f67dc4 100644 --- a/src/Data/ModJewelAbyss.lua +++ b/src/Data/ModJewelAbyss.lua @@ -2,725 +2,725 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, - ["ReducedCharacterSizeAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2062 }, level = 1, group = "ActorSize", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["ReducedChillDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1877 }, level = 1, group = "ReducedChillDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedIgniteDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "ReducedBurnDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedShockDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1878 }, level = 1, group = "ReducedShockDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IncreasedChargeDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3031 }, level = 1, group = "ChargeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["AddedChaosDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["ChanceToBeCritAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3137 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, - ["DamageWhileDeadAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3101 }, level = 1, group = "DamageWhileDead", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, - ["VaalSkillDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 1, group = "VaalSkillDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "vaal" }, }, - ["ChaosDamagePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3104 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["LifeLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3105 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, - ["ManaLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3107 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, - ["SilenceImmunityAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3099 }, level = 1, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, - ["V2AvoidIgniteAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "fire", "ailment" }, }, - ["V2AvoidChillAndFreezeAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2AvoidShockAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2AvoidPoisonAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2AvoidBleedAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["V2AvoidStunAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["V2CorruptedBloodImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5413 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "ailment" }, }, - ["V2HinderImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10655 }, level = 40, group = "YouCannotBeHindered", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "blue_herring" }, }, - ["V2IncreasedAilmentEffectOnEnemiesAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "ailment" }, }, - ["V2IncreasedAreaOfEffectAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["V2IncreasedCriticalStrikeChanceAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "critical" }, }, - ["V2IncreasedDamageAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1196 }, level = 1, group = "IncreasedDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage" }, }, - ["V2MaimImmunityCorrupted_"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4952 }, level = 40, group = "AvoidMaimChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["V2MinionDamageCorrupted__"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage", "minion" }, }, - ["V2ReducedManaReservationCorrupted_"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2238 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, - ["V2ReducedManaReservationCorruptedEfficiency_____"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, - ["V2SilenceImmunityJewelCorrupted__"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3099 }, level = 60, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "caster", "curse" }, }, - ["V2FirePenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["V2ColdPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["V2LightningPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["V2ElementalPenetrationAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["V2ArmourPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "physical" }, }, - ["AbyssJewelAddedLife1"] = { type = "Prefix", affix = "Hale", "+(21-25) to maximum Life", statOrder = { 1574 }, level = 1, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, }, - ["AbyssJewelAddedLife2"] = { type = "Prefix", affix = "Healthy", "+(26-30) to maximum Life", statOrder = { 1574 }, level = 35, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, }, - ["AbyssJewelAddedLife3"] = { type = "Prefix", affix = "Sanguine", "+(31-35) to maximum Life", statOrder = { 1574 }, level = 74, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "life" }, }, - ["AbyssJewelAddedLife4"] = { type = "Prefix", affix = "Stalwart", "+(36-40) to maximum Life", statOrder = { 1574 }, level = 82, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "life" }, }, - ["AbyssJewelAddedMana1"] = { type = "Prefix", affix = "Beryl", "+(21-25) to maximum Mana", statOrder = { 1584 }, level = 1, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, - ["AbyssJewelAddedMana2"] = { type = "Prefix", affix = "Cobalt", "+(26-30) to maximum Mana", statOrder = { 1584 }, level = 40, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, - ["AbyssJewelAddedMana3"] = { type = "Prefix", affix = "Azure", "+(31-35) to maximum Mana", statOrder = { 1584 }, level = 75, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, - ["AbyssJewelAddedMana4"] = { type = "Prefix", affix = "Sapphire", "+(36-40) to maximum Mana", statOrder = { 1584 }, level = 83, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "mana" }, }, - ["AbyssJewelChillEffect1_"] = { type = "Suffix", affix = "of Chilling", "(10-15)% increased Effect of Cold Ailments", statOrder = { 5803 }, level = 30, group = "AbyssJewelChillEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AbyssJewelShockEffect1"] = { type = "Suffix", affix = "of Shocking", "(10-15)% increased Effect of Lightning Ailments", statOrder = { 7438 }, level = 30, group = "AbyssJewelShockEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AbyssStrengthJewel1_"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1182 }, level = 1, group = "StrengthForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssDexterityJewel1_"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1183 }, level = 1, group = "DexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssIntelligenceJewel1"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1184 }, level = 1, group = "IntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssStrengthDexterityJewel1"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1185 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssStrengthIntelligenceJewel1_"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1186 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssDexterityIntelligenceJewel1"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1187 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, - ["AbyssAllAttributesJewel1"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1181 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "attribute" }, }, - ["AbyssFireResistanceJewel1"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1630 }, level = 1, group = "FireResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AbyssColdResistanceJewel1"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1636 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AbyssLightningResistanceJewel1"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1641 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AbyssFireColdResistanceJewel1"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2803 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, }, - ["AbyssFireLightningResistanceJewel1"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2804 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, - ["AbyssColdLightningResistanceJewel1"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2805 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, - ["AbyssAllResistancesJewel1"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1624 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "elemental", "resistance" }, }, - ["AbyssChaosResistanceJewel1"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, }, - ["AbyssAttackSpeedJewel1_"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1415 }, level = 50, group = "IncreasedAttackSpeedForJewel", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "attack", "speed" }, }, - ["AbyssCastSpeedJewel1"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1451 }, level = 50, group = "IncreasedCastSpeedForJewel", weightKey = { "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 750, 750, 0 }, modTags = { "caster", "speed" }, }, - ["AbyssCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 50, group = "CritChanceForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "critical" }, }, - ["AbyssCriticalStrikeMultiplierJewel1"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 50, group = "CritMultiplierForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "damage", "critical" }, }, - ["AbyssDamageOverTimeWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while Dual Wielding", statOrder = { 2140 }, level = 1, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, }, - ["AbyssDamageOverTimeWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while Dual Wielding", statOrder = { 2140 }, level = 60, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, }, - ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2142 }, level = 1, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 900, 450 }, modTags = { "damage" }, }, - ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2142 }, level = 60, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 300, 150 }, modTags = { "damage" }, }, - ["AbyssDamageOverTimeWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while holding a Shield", statOrder = { 2141 }, level = 1, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, }, - ["AbyssDamageOverTimeWhileHoldingAShieldJewel2_"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while holding a Shield", statOrder = { 2141 }, level = 60, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, }, - ["AbyssMinionAddedFireDamageJewel1"] = { type = "Prefix", affix = "Heated", "Minions deal (3-6) to (8-11) additional Fire Damage", statOrder = { 3776 }, level = 1, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedFireDamageJewel2"] = { type = "Prefix", affix = "Flaming", "Minions deal (11-14) to (17-20) additional Fire Damage", statOrder = { 3776 }, level = 39, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedFireDamageJewel3"] = { type = "Prefix", affix = "Scorching", "Minions deal (15-18) to (21-24) additional Fire Damage", statOrder = { 3776 }, level = 48, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedFireDamageJewel4_"] = { type = "Prefix", affix = "Incinerating", "Minions deal (20-23) to (26-32) additional Fire Damage", statOrder = { 3776 }, level = 58, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedFireDamageJewel5"] = { type = "Prefix", affix = "Blasting", "Minions deal (24-27) to (33-36) additional Fire Damage", statOrder = { 3776 }, level = 70, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedFireDamageJewel6_"] = { type = "Prefix", affix = "Cremating", "Minions deal (29-35) to (42-51) additional Fire Damage", statOrder = { 3776 }, level = 82, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel1"] = { type = "Prefix", affix = "Frosted", "Minions deal (3-6) to (8-11) additional Cold Damage", statOrder = { 3775 }, level = 1, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel2"] = { type = "Prefix", affix = "Freezing", "Minions deal (11-14) to (17-20) additional Cold Damage", statOrder = { 3775 }, level = 39, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel3"] = { type = "Prefix", affix = "Frozen", "Minions deal (15-18) to (21-24) additional Cold Damage", statOrder = { 3775 }, level = 48, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel4"] = { type = "Prefix", affix = "Glaciated", "Minions deal (20-23) to (26-32) additional Cold Damage", statOrder = { 3775 }, level = 58, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel5"] = { type = "Prefix", affix = "Polar", "Minions deal (24-27) to (33-36) additional Cold Damage", statOrder = { 3775 }, level = 70, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedColdDamageJewel6_"] = { type = "Prefix", affix = "Entombing", "Minions deal (29-35) to (42-51) additional Cold Damage", statOrder = { 3775 }, level = 82, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel1_"] = { type = "Prefix", affix = "Humming", "Minions deal 1 to (9-15) additional Lightning Damage", statOrder = { 3777 }, level = 1, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel2"] = { type = "Prefix", affix = "Sparking", "Minions deal (1-2) to (26-32) additional Lightning Damage", statOrder = { 3777 }, level = 39, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel3_"] = { type = "Prefix", affix = "Arcing", "Minions deal (1-3) to (33-39) additional Lightning Damage", statOrder = { 3777 }, level = 48, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel4"] = { type = "Prefix", affix = "Shocking", "Minions deal (1-4) to (44-50) additional Lightning Damage", statOrder = { 3777 }, level = 58, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel5"] = { type = "Prefix", affix = "Discharging", "Minions deal (1-5) to (51-54) additional Lightning Damage", statOrder = { 3777 }, level = 70, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedLightningDamageJewel6"] = { type = "Prefix", affix = "Electrocuting", "Minions deal (1-6) to (65-77) additional Lightning Damage", statOrder = { 3777 }, level = 82, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel1"] = { type = "Prefix", affix = "Glinting", "Minions deal (2-3) to (5-8) additional Physical Damage", statOrder = { 3778 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel2"] = { type = "Prefix", affix = "Gleaming", "Minions deal (5-8) to (11-14) additional Physical Damage", statOrder = { 3778 }, level = 42, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel3"] = { type = "Prefix", affix = "Annealed", "Minions deal (9-12) to (15-18) additional Physical Damage", statOrder = { 3778 }, level = 54, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Minions deal (14-17) to (20-23) additional Physical Damage", statOrder = { 3778 }, level = 63, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel5"] = { type = "Prefix", affix = "Tempered", "Minions deal (18-21) to (24-27) additional Physical Damage", statOrder = { 3778 }, level = 72, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedPhysicalDamageJewel6"] = { type = "Prefix", affix = "Flaring", "Minions deal (23-26) to (33-39) additional Physical Damage", statOrder = { 3778 }, level = 83, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel1"] = { type = "Prefix", affix = "Tainted", "Minions deal (2-3) to (5-8) additional Chaos Damage", statOrder = { 3774 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel2_"] = { type = "Prefix", affix = "Clouded", "Minions deal (5-8) to (11-14) additional Chaos Damage", statOrder = { 3774 }, level = 42, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel3"] = { type = "Prefix", affix = "Darkened", "Minions deal (9-12) to (15-18) additional Chaos Damage", statOrder = { 3774 }, level = 54, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel4"] = { type = "Prefix", affix = "Malignant", "Minions deal (14-17) to (20-23) additional Chaos Damage", statOrder = { 3774 }, level = 65, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel5_"] = { type = "Prefix", affix = "Vile", "Minions deal (18-21) to (24-27) additional Chaos Damage", statOrder = { 3774 }, level = 75, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssMinionAddedChaosDamageJewel6"] = { type = "Prefix", affix = "Malicious", "Minions deal (23-26) to (33-39) additional Chaos Damage", statOrder = { 3774 }, level = 84, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while Dual Wielding", statOrder = { 2117 }, level = 1, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while Dual Wielding", statOrder = { 2117 }, level = 39, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while Dual Wielding", statOrder = { 2117 }, level = 48, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while Dual Wielding", statOrder = { 2117 }, level = 58, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while Dual Wielding", statOrder = { 2117 }, level = 70, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while Dual Wielding", statOrder = { 2117 }, level = 82, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while Dual Wielding", statOrder = { 2114 }, level = 1, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while Dual Wielding", statOrder = { 2114 }, level = 39, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while Dual Wielding", statOrder = { 2114 }, level = 48, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel4__"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while Dual Wielding", statOrder = { 2114 }, level = 58, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while Dual Wielding", statOrder = { 2114 }, level = 70, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while Dual Wielding", statOrder = { 2114 }, level = 82, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2120 }, level = 1, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2120 }, level = 39, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2120 }, level = 48, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2120 }, level = 58, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2120 }, level = 70, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2120 }, level = 82, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while Dual Wielding", statOrder = { 2123 }, level = 1, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while Dual Wielding", statOrder = { 2123 }, level = 42, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while Dual Wielding", statOrder = { 2123 }, level = 54, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while Dual Wielding", statOrder = { 2123 }, level = 63, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while Dual Wielding", statOrder = { 2123 }, level = 72, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while Dual Wielding", statOrder = { 2123 }, level = 83, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2111 }, level = 1, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2111 }, level = 42, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2111 }, level = 54, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2111 }, level = 65, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2111 }, level = 75, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2111 }, level = 84, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2119 }, level = 1, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2119 }, level = 39, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel3_"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2119 }, level = 48, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2119 }, level = 58, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2119 }, level = 70, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2119 }, level = 82, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2116 }, level = 1, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2116 }, level = 39, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2116 }, level = 48, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2116 }, level = 58, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2116 }, level = 70, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2116 }, level = 82, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2122 }, level = 1, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2122 }, level = 39, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2122 }, level = 48, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2122 }, level = 58, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2122 }, level = 70, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel6_"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2122 }, level = 82, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2125 }, level = 1, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2125 }, level = 42, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2125 }, level = 54, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2125 }, level = 63, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2125 }, level = 72, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2125 }, level = 83, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2113 }, level = 1, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2113 }, level = 42, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2113 }, level = 54, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2113 }, level = 65, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2113 }, level = 75, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2113 }, level = 84, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while holding a Shield", statOrder = { 2118 }, level = 1, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while holding a Shield", statOrder = { 2118 }, level = 39, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while holding a Shield", statOrder = { 2118 }, level = 48, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel4_"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while holding a Shield", statOrder = { 2118 }, level = 58, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while holding a Shield", statOrder = { 2118 }, level = 70, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel6__"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while holding a Shield", statOrder = { 2118 }, level = 82, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while holding a Shield", statOrder = { 2115 }, level = 1, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while holding a Shield", statOrder = { 2115 }, level = 39, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while holding a Shield", statOrder = { 2115 }, level = 48, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while holding a Shield", statOrder = { 2115 }, level = 58, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel5_"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while holding a Shield", statOrder = { 2115 }, level = 70, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while holding a Shield", statOrder = { 2115 }, level = 82, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while holding a Shield", statOrder = { 2121 }, level = 1, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while holding a Shield", statOrder = { 2121 }, level = 39, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while holding a Shield", statOrder = { 2121 }, level = 48, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while holding a Shield", statOrder = { 2121 }, level = 58, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while holding a Shield", statOrder = { 2121 }, level = 70, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while holding a Shield", statOrder = { 2121 }, level = 82, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while holding a Shield", statOrder = { 2124 }, level = 1, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while holding a Shield", statOrder = { 2124 }, level = 42, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while holding a Shield", statOrder = { 2124 }, level = 54, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while holding a Shield", statOrder = { 2124 }, level = 63, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while holding a Shield", statOrder = { 2124 }, level = 72, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while holding a Shield", statOrder = { 2124 }, level = 83, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while holding a Shield", statOrder = { 2112 }, level = 1, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while holding a Shield", statOrder = { 2112 }, level = 42, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel3__"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while holding a Shield", statOrder = { 2112 }, level = 54, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while holding a Shield", statOrder = { 2112 }, level = 65, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while holding a Shield", statOrder = { 2112 }, level = 75, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while holding a Shield", statOrder = { 2112 }, level = 84, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedFireDamageJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (6-8) to (9-11) Fire Damage to Spells", statOrder = { 1409 }, level = 30, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageJewel2_"] = { type = "Suffix", affix = "of Cinders", "Adds (9-11) to (12-14) Fire Damage to Spells", statOrder = { 1409 }, level = 43, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (12-14) to (15-19) Fire Damage to Spells", statOrder = { 1409 }, level = 55, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageJewel4"] = { type = "Suffix", affix = "of Immolation", "Adds (15-17) to (20-23) Fire Damage to Spells", statOrder = { 1409 }, level = 66, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedFireDamageJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (19-23) to (24-32) Fire Damage to Spells", statOrder = { 1409 }, level = 77, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, - ["AbyssSpellAddedColdDamageJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (6-8) to (9-11) Cold Damage to Spells", statOrder = { 1410 }, level = 30, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageJewel2"] = { type = "Suffix", affix = "of Ice", "Adds (9-11) to (12-14) Cold Damage to Spells", statOrder = { 1410 }, level = 43, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (12-14) to (15-19) Cold Damage to Spells", statOrder = { 1410 }, level = 55, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (15-17) to (20-23) Cold Damage to Spells", statOrder = { 1410 }, level = 66, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedColdDamageJewel5"] = { type = "Suffix", affix = "of Glaciation", "Adds (19-23) to (24-32) Cold Damage to Spells", statOrder = { 1410 }, level = 77, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, - ["AbyssSpellAddedLightningDamageJewel1__"] = { type = "Suffix", affix = "of Static", "Adds (1-2) to (15-19) Lightning Damage to Spells", statOrder = { 1411 }, level = 30, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-3) to (20-24) Lightning Damage to Spells", statOrder = { 1411 }, level = 43, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageJewel3__"] = { type = "Suffix", affix = "of Voltage", "Adds (1-4) to (25-29) Lightning Damage to Spells", statOrder = { 1411 }, level = 55, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-5) to (30-32) Lightning Damage to Spells", statOrder = { 1411 }, level = 66, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedLightningDamageJewel5_"] = { type = "Suffix", affix = "of Arcing", "Adds (1-6) to (37-45) Lightning Damage to Spells", statOrder = { 1411 }, level = 77, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageJewel1"] = { type = "Suffix", affix = "of Heft", "Adds (3-4) to (6-7) Physical Damage to Spells", statOrder = { 1408 }, level = 32, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageJewel2"] = { type = "Suffix", affix = "of Force", "Adds (5-7) to (8-10) Physical Damage to Spells", statOrder = { 1408 }, level = 45, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageJewel3"] = { type = "Suffix", affix = "of Weight", "Adds (8-10) to (11-13) Physical Damage to Spells", statOrder = { 1408 }, level = 56, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageJewel4"] = { type = "Suffix", affix = "of Impact", "Adds (11-13) to (14-16) Physical Damage to Spells", statOrder = { 1408 }, level = 65, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedPhysicalDamageJewel5__"] = { type = "Suffix", affix = "of Collision", "Adds (14-16) to (18-22) Physical Damage to Spells", statOrder = { 1408 }, level = 78, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, - ["AbyssSpellAddedChaosDamageJewel1"] = { type = "Suffix", affix = "of Dishonour", "Adds (3-4) to (6-7) Chaos Damage to Spells", statOrder = { 1412 }, level = 33, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageJewel2"] = { type = "Suffix", affix = "of Harm", "Adds (5-7) to (8-10) Chaos Damage to Spells", statOrder = { 1412 }, level = 48, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageJewel3"] = { type = "Suffix", affix = "of Malevolence", "Adds (8-10) to (11-13) Chaos Damage to Spells", statOrder = { 1412 }, level = 57, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageJewel4"] = { type = "Suffix", affix = "of Malice", "Adds (11-13) to (14-16) Chaos Damage to Spells", statOrder = { 1412 }, level = 68, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssSpellAddedChaosDamageJewel5"] = { type = "Suffix", affix = "of Sin", "Adds (14-16) to (18-22) Chaos Damage to Spells", statOrder = { 1412 }, level = 79, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Wand Attacks", statOrder = { 2081 }, level = 1, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Wand Attacks", statOrder = { 2081 }, level = 42, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Wand Attacks", statOrder = { 2081 }, level = 64, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Wand Attacks", statOrder = { 2081 }, level = 77, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 150, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithWandsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Wand Attacks", statOrder = { 2081 }, level = 85, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 75, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Dagger Attacks", statOrder = { 2077 }, level = 1, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Dagger Attacks", statOrder = { 2077 }, level = 42, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Dagger Attacks", statOrder = { 2077 }, level = 64, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Dagger Attacks", statOrder = { 2077 }, level = 77, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithDaggersJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Dagger Attacks", statOrder = { 2077 }, level = 85, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Claw Attacks", statOrder = { 2076 }, level = 1, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Claw Attacks", statOrder = { 2076 }, level = 42, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Claw Attacks", statOrder = { 2076 }, level = 64, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Claw Attacks", statOrder = { 2076 }, level = 77, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithClawsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Claw Attacks", statOrder = { 2076 }, level = 85, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Sword Attacks", statOrder = { 2080 }, level = 1, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Sword Attacks", statOrder = { 2080 }, level = 42, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Sword Attacks", statOrder = { 2080 }, level = 64, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Sword Attacks", statOrder = { 2080 }, level = 77, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Sword Attacks", statOrder = { 2080 }, level = 85, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Axe Attacks", statOrder = { 2074 }, level = 1, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Axe Attacks", statOrder = { 2074 }, level = 42, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Axe Attacks", statOrder = { 2074 }, level = 64, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Axe Attacks", statOrder = { 2074 }, level = 77, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithAxesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Axe Attacks", statOrder = { 2074 }, level = 85, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2078 }, level = 1, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2078 }, level = 42, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2078 }, level = 64, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2078 }, level = 77, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithMacesJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2078 }, level = 85, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Staff Attacks", statOrder = { 2079 }, level = 1, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Staff Attacks", statOrder = { 2079 }, level = 42, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Staff Attacks", statOrder = { 2079 }, level = 64, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Staff Attacks", statOrder = { 2079 }, level = 77, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithStavesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Staff Attacks", statOrder = { 2079 }, level = 85, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 1, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 42, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 64, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 77, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalDamageWithBowsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Bow Attacks", statOrder = { 2075 }, level = 85, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Wand Attacks", statOrder = { 2107 }, level = 1, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Wand Attacks", statOrder = { 2107 }, level = 37, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Wand Attacks", statOrder = { 2107 }, level = 48, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Wand Attacks", statOrder = { 2107 }, level = 60, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Wand Attacks", statOrder = { 2107 }, level = 70, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithWandsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Wand Attacks", statOrder = { 2107 }, level = 82, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Dagger Attacks", statOrder = { 2103 }, level = 1, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Dagger Attacks", statOrder = { 2103 }, level = 37, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Dagger Attacks", statOrder = { 2103 }, level = 48, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Dagger Attacks", statOrder = { 2103 }, level = 60, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Dagger Attacks", statOrder = { 2103 }, level = 70, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Dagger Attacks", statOrder = { 2103 }, level = 82, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel1__"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Claw Attacks", statOrder = { 2102 }, level = 1, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Claw Attacks", statOrder = { 2102 }, level = 37, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Claw Attacks", statOrder = { 2102 }, level = 48, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Claw Attacks", statOrder = { 2102 }, level = 60, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Claw Attacks", statOrder = { 2102 }, level = 70, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithClawsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Claw Attacks", statOrder = { 2102 }, level = 82, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 1, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 37, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 48, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 60, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 70, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithBowsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Bow Attacks", statOrder = { 2101 }, level = 82, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 625, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Sword Attacks", statOrder = { 2106 }, level = 1, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel2__"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Sword Attacks", statOrder = { 2106 }, level = 37, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Sword Attacks", statOrder = { 2106 }, level = 48, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Sword Attacks", statOrder = { 2106 }, level = 60, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Sword Attacks", statOrder = { 2106 }, level = 70, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Sword Attacks", statOrder = { 2106 }, level = 82, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Axe Attacks", statOrder = { 2100 }, level = 1, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Axe Attacks", statOrder = { 2100 }, level = 37, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel3_"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Axe Attacks", statOrder = { 2100 }, level = 48, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Axe Attacks", statOrder = { 2100 }, level = 60, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Axe Attacks", statOrder = { 2100 }, level = 70, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithAxesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Axe Attacks", statOrder = { 2100 }, level = 82, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2104 }, level = 1, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2104 }, level = 37, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2104 }, level = 48, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2104 }, level = 60, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2104 }, level = 70, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithMacesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2104 }, level = 82, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Staff Attacks", statOrder = { 2105 }, level = 1, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Staff Attacks", statOrder = { 2105 }, level = 37, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Staff Attacks", statOrder = { 2105 }, level = 48, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Staff Attacks", statOrder = { 2105 }, level = 60, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Staff Attacks", statOrder = { 2105 }, level = 70, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningDamageWithStavesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Staff Attacks", statOrder = { 2105 }, level = 82, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Wand Attacks", statOrder = { 2091 }, level = 1, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Wand Attacks", statOrder = { 2091 }, level = 40, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Wand Attacks", statOrder = { 2091 }, level = 51, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Wand Attacks", statOrder = { 2091 }, level = 62, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Wand Attacks", statOrder = { 2091 }, level = 72, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithWandsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Wand Attacks", statOrder = { 2091 }, level = 84, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Dagger Attacks", statOrder = { 2087 }, level = 1, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Dagger Attacks", statOrder = { 2087 }, level = 40, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Dagger Attacks", statOrder = { 2087 }, level = 51, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Dagger Attacks", statOrder = { 2087 }, level = 62, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Dagger Attacks", statOrder = { 2087 }, level = 72, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Dagger Attacks", statOrder = { 2087 }, level = 84, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Claw Attacks", statOrder = { 2086 }, level = 1, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Claw Attacks", statOrder = { 2086 }, level = 40, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Claw Attacks", statOrder = { 2086 }, level = 51, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Claw Attacks", statOrder = { 2086 }, level = 62, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Claw Attacks", statOrder = { 2086 }, level = 72, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithClawsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Claw Attacks", statOrder = { 2086 }, level = 84, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 1, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 40, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 51, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 62, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 72, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithBowsJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Bow Attacks", statOrder = { 2085 }, level = 84, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Sword Attacks", statOrder = { 2090 }, level = 1, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Sword Attacks", statOrder = { 2090 }, level = 40, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel3___"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Sword Attacks", statOrder = { 2090 }, level = 51, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Sword Attacks", statOrder = { 2090 }, level = 62, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Sword Attacks", statOrder = { 2090 }, level = 72, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Sword Attacks", statOrder = { 2090 }, level = 84, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Axe Attacks", statOrder = { 2084 }, level = 1, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Axe Attacks", statOrder = { 2084 }, level = 40, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Axe Attacks", statOrder = { 2084 }, level = 51, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Axe Attacks", statOrder = { 2084 }, level = 62, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Axe Attacks", statOrder = { 2084 }, level = 72, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithAxesJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Axe Attacks", statOrder = { 2084 }, level = 84, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2088 }, level = 1, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel2_"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2088 }, level = 40, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2088 }, level = 51, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2088 }, level = 62, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2088 }, level = 72, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithMacesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2088 }, level = 84, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Staff Attacks", statOrder = { 2089 }, level = 1, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Staff Attacks", statOrder = { 2089 }, level = 40, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel3__"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Staff Attacks", statOrder = { 2089 }, level = 51, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Staff Attacks", statOrder = { 2089 }, level = 62, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Staff Attacks", statOrder = { 2089 }, level = 72, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireDamageWithStavesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Staff Attacks", statOrder = { 2089 }, level = 84, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel1__"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Wand Attacks", statOrder = { 2099 }, level = 1, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Wand Attacks", statOrder = { 2099 }, level = 38, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Wand Attacks", statOrder = { 2099 }, level = 47, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Wand Attacks", statOrder = { 2099 }, level = 59, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Wand Attacks", statOrder = { 2099 }, level = 68, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithWandsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Wand Attacks", statOrder = { 2099 }, level = 83, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Dagger Attacks", statOrder = { 2095 }, level = 1, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Dagger Attacks", statOrder = { 2095 }, level = 38, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Dagger Attacks", statOrder = { 2095 }, level = 47, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Dagger Attacks", statOrder = { 2095 }, level = 59, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Dagger Attacks", statOrder = { 2095 }, level = 68, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Dagger Attacks", statOrder = { 2095 }, level = 83, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Claw Attacks", statOrder = { 2094 }, level = 1, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Claw Attacks", statOrder = { 2094 }, level = 38, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Claw Attacks", statOrder = { 2094 }, level = 47, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Claw Attacks", statOrder = { 2094 }, level = 59, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Claw Attacks", statOrder = { 2094 }, level = 68, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithClawsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Claw Attacks", statOrder = { 2094 }, level = 83, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 1, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 38, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 47, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 59, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 68, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithBowsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Bow Attacks", statOrder = { 2093 }, level = 83, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Sword Attacks", statOrder = { 2098 }, level = 1, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Sword Attacks", statOrder = { 2098 }, level = 38, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Sword Attacks", statOrder = { 2098 }, level = 47, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Sword Attacks", statOrder = { 2098 }, level = 59, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Sword Attacks", statOrder = { 2098 }, level = 68, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Sword Attacks", statOrder = { 2098 }, level = 83, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Axe Attacks", statOrder = { 2092 }, level = 1, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Axe Attacks", statOrder = { 2092 }, level = 38, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Axe Attacks", statOrder = { 2092 }, level = 47, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Axe Attacks", statOrder = { 2092 }, level = 59, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Axe Attacks", statOrder = { 2092 }, level = 68, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithAxesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Axe Attacks", statOrder = { 2092 }, level = 83, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2096 }, level = 1, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2096 }, level = 38, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2096 }, level = 47, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2096 }, level = 59, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2096 }, level = 68, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithMacesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2096 }, level = 83, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Staff Attacks", statOrder = { 2097 }, level = 1, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel2_"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Staff Attacks", statOrder = { 2097 }, level = 38, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Staff Attacks", statOrder = { 2097 }, level = 47, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Staff Attacks", statOrder = { 2097 }, level = 59, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Staff Attacks", statOrder = { 2097 }, level = 68, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdDamageWithStavesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Staff Attacks", statOrder = { 2097 }, level = 83, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedChaosDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Dagger Attacks", statOrder = { 2110 }, level = 1, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Dagger Attacks", statOrder = { 2110 }, level = 42, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithDaggersJewel3__"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Dagger Attacks", statOrder = { 2110 }, level = 64, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Dagger Attacks", statOrder = { 2110 }, level = 77, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Dagger Attacks", statOrder = { 2110 }, level = 85, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithBowsJewel1_"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Bow Attacks", statOrder = { 2108 }, level = 1, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithBowsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Bow Attacks", statOrder = { 2108 }, level = 42, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithBowsJewel3"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Bow Attacks", statOrder = { 2108 }, level = 64, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithBowsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Bow Attacks", statOrder = { 2108 }, level = 77, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithBowsJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Bow Attacks", statOrder = { 2108 }, level = 85, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithClawsJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Claw Attacks", statOrder = { 2109 }, level = 1, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithClawsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Claw Attacks", statOrder = { 2109 }, level = 42, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithClawsJewel3_"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Claw Attacks", statOrder = { 2109 }, level = 64, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithClawsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Claw Attacks", statOrder = { 2109 }, level = 77, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosDamageWithClawsJewel5_"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Claw Attacks", statOrder = { 2109 }, level = 85, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedFireSuffixJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (4-5) to (10-12) Fire Damage to Attacks", statOrder = { 1365 }, level = 35, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireSuffixJewel2"] = { type = "Suffix", affix = "of Cinders", "Adds (6-7) to (13-16) Fire Damage to Attacks", statOrder = { 1365 }, level = 44, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireSuffixJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (8-9) to (17-20) Fire Damage to Attacks", statOrder = { 1365 }, level = 52, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireSuffixJewel4_"] = { type = "Suffix", affix = "of Immolation", "Adds (10-12) to (21-24) Fire Damage to Attacks", statOrder = { 1365 }, level = 64, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedFireSuffixJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (13-15) to (25-28) Fire Damage to Attacks", statOrder = { 1365 }, level = 76, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, - ["AbyssAddedColdSuffixJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (4-5) to (8-10) Cold Damage to Attacks", statOrder = { 1374 }, level = 36, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdSuffixJewel2_"] = { type = "Suffix", affix = "of Ice", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1374 }, level = 45, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdSuffixJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (8-9) to (14-17) Cold Damage to Attacks", statOrder = { 1374 }, level = 53, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdSuffixJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (10-11) to (18-21) Cold Damage to Attacks", statOrder = { 1374 }, level = 65, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedColdSuffixJewel5_"] = { type = "Suffix", affix = "of Glaciation", "Adds (12-13) to (22-26) Cold Damage to Attacks", statOrder = { 1374 }, level = 77, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, - ["AbyssAddedLightningSuffixJewel1"] = { type = "Suffix", affix = "of Static", "Adds 1 to (19-20) Lightning Damage to Attacks", statOrder = { 1385 }, level = 35, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningSuffixJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-2) to (25-27) Lightning Damage to Attacks", statOrder = { 1385 }, level = 44, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningSuffixJewel3"] = { type = "Suffix", affix = "of Voltage", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1385 }, level = 52, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningSuffixJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-4) to (36-39) Lightning Damage to Attacks", statOrder = { 1385 }, level = 64, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedLightningSuffixJewel5"] = { type = "Suffix", affix = "of Arcing", "Adds (1-4) to (43-48) Lightning Damage to Attacks", statOrder = { 1385 }, level = 76, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, - ["AbyssAddedPhysicalSuffixJewel1"] = { type = "Suffix", affix = "of Weight", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 1271 }, level = 34, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalSuffixJewel2"] = { type = "Suffix", affix = "of Impact", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1271 }, level = 45, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedPhysicalSuffixJewel3"] = { type = "Suffix", affix = "of Collision", "Adds (4-5) to (6-7) Physical Damage to Attacks", statOrder = { 1271 }, level = 61, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AbyssAddedChaosSuffixJewel1"] = { type = "Suffix", affix = "of Malevolence", "Adds (6-7) to (11-13) Chaos Damage to Attacks", statOrder = { 1392 }, level = 36, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosSuffixJewel2"] = { type = "Suffix", affix = "of Malice", "Adds (8-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1392 }, level = 48, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssAddedChaosSuffixJewel3"] = { type = "Suffix", affix = "of Sin", "Adds (10-11) to (18-21) Chaos Damage to Attacks", statOrder = { 1392 }, level = 64, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["AbyssFlatMinionLifeRegenerationJewel1"] = { type = "Prefix", affix = "Fuelling", "Minions Regenerate (22-30) Life per second", statOrder = { 9318 }, level = 1, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssFlatMinionLifeRegenerationJewel2"] = { type = "Prefix", affix = "Lively", "Minions Regenerate (32-40) Life per second", statOrder = { 9318 }, level = 30, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssFlatMinionLifeRegenerationJewel3"] = { type = "Prefix", affix = "Exuberant", "Minions Regenerate (42-60) Life per second", statOrder = { 9318 }, level = 60, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssFlatEnergyShieldRegenerationJewel1"] = { type = "Prefix", affix = "Captivating", "Regenerate (9-12) Energy Shield per second", statOrder = { 6466 }, level = 1, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatEnergyShieldRegenerationJewel2"] = { type = "Prefix", affix = "Beautiful", "Regenerate (13-16) Energy Shield per second", statOrder = { 6466 }, level = 30, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatEnergyShieldRegenerationJewel3"] = { type = "Prefix", affix = "Breathtaking", "Regenerate (17-20) Energy Shield per second", statOrder = { 6466 }, level = 60, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatLifeRegenerationJewel1"] = { type = "Prefix", affix = "Youthful", "Regenerate (9-12) Life per second", statOrder = { 1579 }, level = 1, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["AbyssFlatLifeRegenerationJewel2"] = { type = "Prefix", affix = "Spirited", "Regenerate (13-16) Life per second", statOrder = { 1579 }, level = 40, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["AbyssFlatLifeRegenerationJewel3_"] = { type = "Prefix", affix = "Vivacious", "Regenerate (17-20) Life per second", statOrder = { 1579 }, level = 80, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, - ["AbyssFlatManaShieldRegenerationJewel1"] = { type = "Prefix", affix = "Energising", "Regenerate (1.1-2) Mana per second", statOrder = { 1587 }, level = 1, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, - ["AbyssFlatManaShieldRegenerationJewel2"] = { type = "Prefix", affix = "Inspirational", "Regenerate (2.1-3) Mana per second", statOrder = { 1587 }, level = 40, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, - ["AbyssFlatManaShieldRegenerationJewel3"] = { type = "Prefix", affix = "Resonating", "Regenerate (3.3-4) Mana per second", statOrder = { 1587 }, level = 75, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, - ["AbyssAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Blinding", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 32, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 800, 800, 0 }, modTags = { "attack" }, }, - ["AbyssAttacksBlindOnHitChanceJewel2___"] = { type = "Suffix", affix = "of Blinding", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4920 }, level = 65, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attack" }, }, - ["AbyssAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Taunting", "(3-5)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 32, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 800, 0 }, modTags = { "attack" }, }, - ["AbyssAttacksTauntOnHitChanceJewel2"] = { type = "Suffix", affix = "of Taunting", "(6-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4921 }, level = 65, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 400, 0 }, modTags = { "attack" }, }, - ["AbyssSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Hindering", "(3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 32, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 800, 0 }, modTags = { "caster" }, }, - ["AbyssSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Hindering", "(6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 65, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 400, 0 }, modTags = { "caster" }, }, - ["AbyssMinionAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Stifling", "Minions have (3-4)% chance to Blind on Hit with Attacks", statOrder = { 9280 }, level = 32, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssMinionAttacksBlindOnHitChanceJewel2"] = { type = "Suffix", affix = "of Stifling", "Minions have (5-6)% chance to Blind on Hit with Attacks", statOrder = { 9280 }, level = 65, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssMinionAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Distraction", "Minions have (3-5)% chance to Taunt on Hit with Attacks", statOrder = { 3436 }, level = 32, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssMinionAttacksTauntOnHitChanceJewel2_"] = { type = "Suffix", affix = "of Distraction", "Minions have (6-8)% chance to Taunt on Hit with Attacks", statOrder = { 3436 }, level = 65, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssMinionSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Delaying", "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9338 }, level = 32, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "caster", "minion" }, }, - ["AbyssMinionSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Delaying", "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9338 }, level = 65, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "caster", "minion" }, }, - ["AbyssMinionPoisonOnHitChanceJewel1"] = { type = "Suffix", affix = "of Venom", "Minions have (10-15)% chance to Poison Enemies on Hit", statOrder = { 3179 }, level = 60, group = "AbyssMinionPoisonOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, }, - ["AbyssMinionIgniteOnHitChanceJewel1"] = { type = "Suffix", affix = "of Combustion", "Minions have (10-15)% chance to Ignite", statOrder = { 9288 }, level = 60, group = "AbyssMinionIgniteOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "minion", "ailment" }, }, - ["AbyssMinionAttacksBleedOnHitChanceJewel1"] = { type = "Suffix", affix = "of Bloodletting", "Minions have (10-15)% chance to cause Bleeding with Attacks", statOrder = { 2495 }, level = 60, group = "AbyssMinionAttacksBleedOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "bleed", "physical", "minion", "ailment" }, }, - ["AbyssDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Banishing", "(30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6074 }, level = 1, group = "DamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "damage" }, }, - ["AbyssMinionDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Marshalling", "Minions deal (30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 9300 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "minion" }, }, - ["AbyssReducedPhysicalDamageTakenVsAbyssMonsterJewel1"] = { type = "Suffix", affix = "of Warding", "(4-6)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4583 }, level = 1, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { "default", }, weightVal = { 500 }, modTags = { "physical" }, }, - ["AbyssAvoidIgniteJewel1_"] = { type = "Suffix", affix = "of Nonflammability", "(31-40)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 50, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AbyssAvoidIgniteJewel2"] = { type = "Suffix", affix = "of Fireproofing", "(41-50)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 70, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "fire", "ailment" }, }, - ["AbyssAvoidFreezeAndChillJewel1"] = { type = "Suffix", affix = "of Warming", "(31-40)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 50, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AbyssAvoidFreezeAndChillJewel2"] = { type = "Suffix", affix = "of Heating", "(41-50)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 70, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "cold", "ailment" }, }, - ["AbyssAvoidShockJewel1"] = { type = "Suffix", affix = "of Insulating", "(31-40)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 50, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AbyssAvoidShockJewel2"] = { type = "Suffix", affix = "of the Lightning Rod", "(41-50)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 70, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AbyssAvoidPoisonJewel1__"] = { type = "Suffix", affix = "of Tolerance", "(31-40)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 50, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 300 }, modTags = { "poison", "chaos", "ailment" }, }, - ["AbyssAvoidPoisonJewel2__"] = { type = "Suffix", affix = "of Immunity", "(41-50)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 70, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 150 }, modTags = { "poison", "chaos", "ailment" }, }, - ["AbyssAvoidBleedingJewel1"] = { type = "Suffix", affix = "of Stemming", "(31-40)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 50, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 300 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AbyssAvoidBleedingJewel2"] = { type = "Suffix", affix = "of the Tourniquet", "(41-50)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 70, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 150 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AbyssAvoidStunJewel1"] = { type = "Suffix", affix = "of Balance", "(21-24)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 50, group = "AvoidStun", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, }, - ["AbyssAvoidStunJewel2"] = { type = "Suffix", affix = "of Poise", "(25-30)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 70, group = "AvoidStun", weightKey = { "default", }, weightVal = { 150 }, modTags = { }, }, - ["AbyssAccuracyRatingJewel1"] = { type = "Suffix", affix = "of Calm", "+(10-30) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, - ["AbyssAccuracyRatingJewel2"] = { type = "Suffix", affix = "of Steadiness", "+(31-60) to Accuracy Rating", statOrder = { 1438 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, - ["AbyssAccuracyRatingJewel3"] = { type = "Suffix", affix = "of the Marksman", "+(61-120) to Accuracy Rating", statOrder = { 1438 }, level = 52, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, - ["AbyssAccuracyRatingJewel4"] = { type = "Suffix", affix = "of the Ranger", "+(121-240) to Accuracy Rating", statOrder = { 1438 }, level = 78, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, - ["AbyssAccuracyRatingJewel5"] = { type = "Suffix", affix = "of the Deadeye", "+(241-300) to Accuracy Rating", statOrder = { 1438 }, level = 85, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 250, 500, 0 }, modTags = { "attack" }, }, - ["AbyssMinionAttackAndCastSpeedJewel1"] = { type = "Suffix", affix = "of Training", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AbyssMinionLifeRegenerationJewel1"] = { type = "Suffix", affix = "of Longevity", "Minions Regenerate (0.4-0.8)% of Life per second", statOrder = { 2916 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssMinionLifeLeechJewel1"] = { type = "Suffix", affix = "of Vampirism", "Minions Leech (0.3-0.5)% of Damage as Life", statOrder = { 2915 }, level = 1, group = "MinionLifeLeech", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssMinionMovementSpeedJewel1"] = { type = "Suffix", affix = "of Orchestration", "Minions have (6-10)% increased Movement Speed", statOrder = { 1774 }, level = 1, group = "MinionMovementSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "speed", "minion" }, }, - ["AbyssMinionLifeJewel1_"] = { type = "Suffix", affix = "of Fortitude", "Minions have (8-12)% increased maximum Life", statOrder = { 1771 }, level = 1, group = "MinionLifeForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AbyssFlatMinionAccuracy1"] = { type = "Suffix", affix = "of Suggestion", "Minions have +(95-125) to Accuracy Rating", statOrder = { 9267 }, level = 1, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssFlatMinionAccuracy2_"] = { type = "Suffix", affix = "of Instruction", "Minions have +(126-180) to Accuracy Rating", statOrder = { 9267 }, level = 52, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssFlatMinionAccuracy3"] = { type = "Suffix", affix = "of Command", "Minions have +(181-250) to Accuracy Rating", statOrder = { 9267 }, level = 78, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, - ["AbyssMinionElementalResistancesJewel1"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(6-10)% to all Elemental Resistances", statOrder = { 2917 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "elemental", "resistance", "minion" }, }, - ["AbyssMinionChaosResistanceJewel1"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-11)% to Chaos Resistance", statOrder = { 2918 }, level = 1, group = "MinionChaosResistance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "chaos", "resistance", "minion" }, }, - ["AbyssFlatArmourJewel1"] = { type = "Prefix", affix = "Lacquered", "+(36-60) to Armour", statOrder = { 1544 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, - ["AbyssFlatArmourJewel2"] = { type = "Prefix", affix = "Fortified", "+(61-100) to Armour", statOrder = { 1544 }, level = 40, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, - ["AbyssFlatArmourJewel3"] = { type = "Prefix", affix = "Carapaced", "+(101-180) to Armour", statOrder = { 1544 }, level = 75, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, - ["AbyssFlatArmourJewel4__"] = { type = "Prefix", affix = "Encased", "+(181-250) to Armour", statOrder = { 1544 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "armour" }, }, - ["AbyssFlatEvasionJewel1"] = { type = "Prefix", affix = "Agile", "+(36-60) to Evasion Rating", statOrder = { 1549 }, level = 1, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, - ["AbyssFlatEvasionJewel2"] = { type = "Prefix", affix = "Fleet", "+(61-100) to Evasion Rating", statOrder = { 1549 }, level = 40, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, - ["AbyssFlatEvasionJewel3"] = { type = "Prefix", affix = "Vaporous", "+(101-180) to Evasion Rating", statOrder = { 1549 }, level = 75, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, - ["AbyssFlatEvasionJewel4_"] = { type = "Prefix", affix = "Beclouded", "+(181-250) to Evasion Rating", statOrder = { 1549 }, level = 83, group = "EvasionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "evasion" }, }, - ["AbyssFlatEnergyShieldJewel1"] = { type = "Prefix", affix = "Shining", "+(21-25) to maximum Energy Shield", statOrder = { 1563 }, level = 1, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatEnergyShieldJewel2"] = { type = "Prefix", affix = "Seething", "+(26-30) to maximum Energy Shield", statOrder = { 1563 }, level = 40, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatEnergyShieldJewel3"] = { type = "Prefix", affix = "Incandescent", "+(31-35) to maximum Energy Shield", statOrder = { 1563 }, level = 75, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssFlatEnergyShieldJewel4"] = { type = "Prefix", affix = "Resplendent", "+(36-40) to maximum Energy Shield", statOrder = { 1563 }, level = 83, group = "EnergyShield", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "energy_shield" }, }, - ["AbyssCurseEffectJewel1"] = { type = "Prefix", affix = "Murmuring", "2% increased Effect of your Curses", statOrder = { 2601 }, level = 75, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, }, - ["AbyssCurseEffectJewel2"] = { type = "Prefix", affix = "Foul-tongued", "3% increased Effect of your Curses", statOrder = { 2601 }, level = 86, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, }, - ["AbyssCooldownRecoverySpeed1_"] = { type = "Prefix", affix = "Facilitating", "2% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, }, - ["AbyssCooldownRecoverySpeed2__"] = { type = "Prefix", affix = "Expediting", "3% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 86, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, }, - ["AbyssImpaleEffect1_"] = { type = "Prefix", affix = "Skewering", "(3-4)% increased Impale Effect", statOrder = { 7247 }, level = 75, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { "physical" }, }, - ["AbyssImpaleEffect2_"] = { type = "Prefix", affix = "Lancing", "(5-6)% increased Impale Effect", statOrder = { 7247 }, level = 86, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { "physical" }, }, - ["AbyssDamageRecoupedAsMana1"] = { type = "Prefix", affix = "Spurring", "2% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 75, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, }, - ["AbyssDamageRecoupedAsMana2"] = { type = "Prefix", affix = "Motivating", "3% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 86, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, }, - ["AbyssSpellBlockChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Instinct", "+(3-4)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5656 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "block" }, }, - ["AbyssReducedPhysicalDamageTakenIfNotHitRecentlyJewel1"] = { type = "Suffix", affix = "of Confidence", "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", statOrder = { 4579 }, level = 1, group = "ReducedPhysicalDamageTakenIfNotHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "physical" }, }, - ["AbyssMovementSpeedIfNotDamagedRecentlyJewel1"] = { type = "Suffix", affix = "of Momentum", "(3-4)% increased Movement Speed if you haven't taken Damage Recently", statOrder = { 9420 }, level = 1, group = "MovementSpeedIfNotDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "speed" }, }, - ["AbyssDamageIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Slayer", "(15-20)% increased Damage if you've Killed Recently", statOrder = { 6047 }, level = 1, group = "DamageIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "damage" }, }, - ["AbyssCriticalStrikeMultiplierIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Assassin", "+(8-14)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5962 }, level = 25, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "damage", "critical" }, }, - ["AbyssIncreasedArmourIfNoEnemySlainRecentlyJewel1__"] = { type = "Suffix", affix = "of the Guardian", "(20-30)% increased Armour if you haven't Killed Recently", statOrder = { 4773 }, level = 1, group = "IncreasedArmourIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "defences", "armour" }, }, - ["AbyssAccuracyIfNoEnemySlainRecentlyJewel1_"] = { type = "Suffix", affix = "of the Deadeye", "(20-30)% increased Accuracy Rating if you haven't Killed Recently", statOrder = { 4525 }, level = 1, group = "AccuracyIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, - ["AbyssDamagePenetratesElementalResistancesIfNoEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Inquisitor", "Damage Penetrates 2% Elemental Resistances if you haven't Killed Recently", statOrder = { 6037 }, level = 1, group = "DamagePenetratesElementalResistancesIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["AbyssCastSpeedIfMinionKilledRecentlyJewel1"] = { type = "Suffix", affix = "of Retaliation", "(7-10)% increased Cast Speed if a Minion has been Killed Recently", statOrder = { 5474 }, level = 30, group = "CastSpeedIfMinionKilledRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "speed" }, }, - ["AbyssMinionDamageIfMinionSkillUsedRecentlyJewel1"] = { type = "Suffix", affix = "of Authority", "Minions deal (15-20)% increased Damage if you've used a Minion Skill Recently", statOrder = { 1979 }, level = 1, group = "MinionDamageIfMinionSkillUsedRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "minion" }, }, - ["AbyssEvasionRatingWhileMovingJewel1"] = { type = "Suffix", affix = "of Maneuvering", "(25-35)% increased Evasion Rating while moving", statOrder = { 6503 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "defences", "evasion" }, }, - ["AbyssManaRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Praxis", "(20-25)% increased Mana Regeneration Rate while moving", statOrder = { 8216 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "resource", "mana" }, }, - ["AbyssLifeRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Vivaciousness", "Regenerate (0.5-1)% of Life per second while moving", statOrder = { 7429 }, level = 1, group = "LifeRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "resource", "life" }, }, - ["AbyssPhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of the Inferno", "Gain (2-4)% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9632 }, level = 40, group = "PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 150, 150, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["AbyssAttackSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Opportunity", "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrder = { 4902 }, level = 25, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 0, 0 }, modTags = { "attack", "speed" }, }, - ["AbyssCastSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Abuse", "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrder = { 5473 }, level = 25, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "caster", "speed" }, }, - ["AbyssCriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Preparation", "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5932 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "critical" }, }, - ["AbyssMinionAttackAndCastSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of Rallying", "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", statOrder = { 9274 }, level = 1, group = "MinionAttackAndCastSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AbyssSpellDodgeAndDodgeChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Readiness", "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5656 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "block" }, }, - ["AbyssMovementSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Raider", "(2-4)% increased Movement Speed if you've Killed Recently", statOrder = { 4266 }, level = 1, group = "MovementSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 0, 0 }, modTags = { "speed" }, }, - ["AbyssChanceToBlockIfDamagedRecentlyJewel1_"] = { type = "Suffix", affix = "of Guarding", "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3221 }, level = 1, group = "ChanceToBlockIfDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "block" }, }, - ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, - ["AbyssChancetoGainPhasingOnKillJewel1"] = { type = "Suffix", affix = "of Phasing", "(3-5)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 50, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["AbyssChancetoGainPhasingOnKillJewel2"] = { type = "Suffix", affix = "of Phasing", "(6-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AbyssChanceToGainUnholyMightOnKillAbyssJewel1"] = { type = "Suffix", affix = "of Unholy Might", "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3088 }, level = 60, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AbyssChanceToGainUnholyMightOnKillAbyssJewel2_"] = { type = "Suffix", affix = "of Unholy Might", "(4-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3088 }, level = 84, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AbyssSelfCurseEffectOnConsecratedGroundJewel1__"] = { type = "Suffix", affix = "of the Sanctum", "(10-15)% reduced Effect of Curses on you while on Consecrated Ground", statOrder = { 6001 }, level = 84, group = "EnchantmentConsecratedGround", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "caster", "curse" }, }, - ["AbyssAvoidElementalAilmentsWhileElusiveJewel1"] = { type = "Suffix", affix = "of Escape", "(8-10)% chance to Avoid Elemental Ailments while you have Elusive", statOrder = { 4946 }, level = 84, group = "EnchantmentElusive", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 500, 100, 100, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AbyssHinderedEnemiesLifeRegenerationRateJewel1"] = { type = "Suffix", affix = "of Enervation", "Enemies Hindered by you have (15-20)% reduced Life Regeneration rate", statOrder = { 6415 }, level = 84, group = "EnchantmentHinder", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["AbyssBlindedEnemiesCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Clouding", "Enemies Blinded by you have (15-20)% reduced Critical Strike Chance", statOrder = { 6409 }, level = 84, group = "EnchantmentBlind", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "critical" }, }, - ["AbyssWitheredEnemiesAllResistanceJewel1___"] = { type = "Suffix", affix = "of Languishing", "Enemies Withered by you have -2% to all Resistances", statOrder = { 6421 }, level = 84, group = "EnchantmentWither", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "damage" }, }, - ["AbyssMaimedEnemiesDamageOverTimeJewel1"] = { type = "Suffix", affix = "of Mangling", "Enemies Maimed by you take (4-5)% increased Damage Over Time", statOrder = { 6419 }, level = 84, group = "EnchantmentMaim", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "damage" }, }, - ["AbyssIntimidatedEnemiesStunDurationJewel1"] = { type = "Suffix", affix = "of Daunting", "Enemies Intimidated by you have (10-15)% increased duration of stuns against them", statOrder = { 6418 }, level = 84, group = "EnchantmentIntimidate", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 100, 100, 0 }, modTags = { }, }, - ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3378 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, - ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1364 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 172 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, - ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7919 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, - ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1362 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3379 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, - ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1373 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 173 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, - ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1680 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, - ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7917 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, - ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1371 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3380 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, - ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1384 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 174 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, - ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1684 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, - ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7921 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, - ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1382 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7879 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, - ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2240 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2240 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2240 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2240 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2278 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, - ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4589 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, - ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1270 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1671 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, - ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7923 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1236 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5046 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, - ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2533 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, - ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5739 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, - ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1391 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 175 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, - ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1687 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, - ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7916 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1390 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6079 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6079 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, - ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1574, 1576 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, - ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, - ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2064 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1949 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, - ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9651 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, - ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6494 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6463 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1547 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1555 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1565 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1558 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, - ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1557 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, - ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1559 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, - ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, - ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7955 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2651 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1727 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6501 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, - ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, - ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9121 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9137 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, - ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5676 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, - ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5678 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, - ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2838 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, - ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7876 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, - ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7875 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, - ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4221 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4988 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4988 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, - ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9254 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2499 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, - ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3766 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1985 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1985 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1985 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1985 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1872 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, - ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1985 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 570 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 570 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 231 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 567 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, - ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 573 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, - ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1903 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, - ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 551 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 551 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, - ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 336 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, - ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 566 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, - ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 554 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, - ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1669 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8204 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8204 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, - ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8216 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1749 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1586 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1591 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1888 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1585 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2998 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, - ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4535 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9417 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4820 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2186 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, - ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5401 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5698 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, - ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5417 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6765 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, - ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5698 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, - ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3463 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3463 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, - ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1978 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1978 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1978 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1978 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, - ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1774 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, - ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1771 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, - ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1621 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, - ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3571 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, - ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2237 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, - ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, }, - ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 163 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 165 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 166 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, - ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 73 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, }, - ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9485 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9485 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3109 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3112 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, - ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3110 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, - ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, + ["ChaosResistAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos", "resistance" }, }, + ["ReducedCharacterSizeAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["ReducedChillDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1872 }, level = 1, group = "ReducedChillDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedIgniteDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedShockDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1873 }, level = 1, group = "ReducedShockDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IncreasedChargeDurationAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 1, group = "ChargeDuration", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["AddedChaosDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["ChanceToBeCritAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3132 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "default", }, weightVal = { 0 }, modTags = { "critical" }, }, + ["DamageWhileDeadAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3096 }, level = 1, group = "DamageWhileDead", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage" }, }, + ["VaalSkillDamageAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "default", }, weightVal = { 0 }, modTags = { "damage", "vaal" }, }, + ["ChaosDamagePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3099 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["LifeLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3100 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "life" }, }, + ["ManaLeechRatePerCorruptedItemAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3102 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "mana" }, }, + ["SilenceImmunityAbyssJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 1, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 0 }, modTags = { "caster", "curse" }, }, + ["V2AvoidIgniteAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "fire", "ailment" }, }, + ["V2AvoidChillAndFreezeAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2AvoidShockAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "AvoidShock", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2AvoidPoisonAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2AvoidBleedAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["V2AvoidStunAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["V2CorruptedBloodImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "bleed", "physical", "ailment" }, }, + ["V2HinderImmunityAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10656 }, level = 40, group = "YouCannotBeHindered", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "blue_herring" }, }, + ["V2IncreasedAilmentEffectOnEnemiesAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "ailment" }, }, + ["V2IncreasedAreaOfEffectAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["V2IncreasedCriticalStrikeChanceAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "critical" }, }, + ["V2IncreasedDamageAbyssJewelCorrupted_"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1191 }, level = 1, group = "IncreasedDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage" }, }, + ["V2MaimImmunityCorrupted_"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4947 }, level = 40, group = "AvoidMaimChance", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["V2MinionDamageCorrupted__"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "damage", "minion" }, }, + ["V2ReducedManaReservationCorrupted_"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "default", }, weightVal = { 0 }, modTags = { }, }, + ["V2ReducedManaReservationCorruptedEfficiency_____"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "default", }, weightVal = { 1000 }, modTags = { }, }, + ["V2SilenceImmunityJewelCorrupted__"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 60, group = "ImmuneToSilence", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "caster", "curse" }, }, + ["V2FirePenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["V2ColdPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["V2LightningPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["V2ElementalPenetrationAbyssalJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["V2ArmourPenetrationAbyssalJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "physical" }, }, + ["AbyssJewelAddedLife1"] = { type = "Prefix", affix = "Hale", "+(21-25) to maximum Life", statOrder = { 1569 }, level = 1, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, }, + ["AbyssJewelAddedLife2"] = { type = "Prefix", affix = "Healthy", "+(26-30) to maximum Life", statOrder = { 1569 }, level = 35, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 3000 }, modTags = { "resource", "life" }, }, + ["AbyssJewelAddedLife3"] = { type = "Prefix", affix = "Sanguine", "+(31-35) to maximum Life", statOrder = { 1569 }, level = 74, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "life" }, }, + ["AbyssJewelAddedLife4"] = { type = "Prefix", affix = "Stalwart", "+(36-40) to maximum Life", statOrder = { 1569 }, level = 82, group = "AbyssJewelLife", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "life" }, }, + ["AbyssJewelAddedMana1"] = { type = "Prefix", affix = "Beryl", "+(21-25) to maximum Mana", statOrder = { 1579 }, level = 1, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, + ["AbyssJewelAddedMana2"] = { type = "Prefix", affix = "Cobalt", "+(26-30) to maximum Mana", statOrder = { 1579 }, level = 40, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, + ["AbyssJewelAddedMana3"] = { type = "Prefix", affix = "Azure", "+(31-35) to maximum Mana", statOrder = { 1579 }, level = 75, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 1000 }, modTags = { "resource", "mana" }, }, + ["AbyssJewelAddedMana4"] = { type = "Prefix", affix = "Sapphire", "+(36-40) to maximum Mana", statOrder = { 1579 }, level = 83, group = "AbyssJewelMana", weightKey = { "default", }, weightVal = { 500 }, modTags = { "resource", "mana" }, }, + ["AbyssJewelChillEffect1_"] = { type = "Suffix", affix = "of Chilling", "(10-15)% increased Effect of Cold Ailments", statOrder = { 5798 }, level = 30, group = "AbyssJewelChillEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AbyssJewelShockEffect1"] = { type = "Suffix", affix = "of Shocking", "(10-15)% increased Effect of Lightning Ailments", statOrder = { 7433 }, level = 30, group = "AbyssJewelShockEffect", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AbyssStrengthJewel1_"] = { type = "Suffix", affix = "of Strength", "+(12-16) to Strength", statOrder = { 1177 }, level = 1, group = "StrengthForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssDexterityJewel1_"] = { type = "Suffix", affix = "of Dexterity", "+(12-16) to Dexterity", statOrder = { 1178 }, level = 1, group = "DexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssIntelligenceJewel1"] = { type = "Suffix", affix = "of Intelligence", "+(12-16) to Intelligence", statOrder = { 1179 }, level = 1, group = "IntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssStrengthDexterityJewel1"] = { type = "Suffix", affix = "of Athletics", "+(8-10) to Strength and Dexterity", statOrder = { 1180 }, level = 1, group = "StrengthDexterityForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssStrengthIntelligenceJewel1_"] = { type = "Suffix", affix = "of Spirit", "+(8-10) to Strength and Intelligence", statOrder = { 1181 }, level = 1, group = "StrengthIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssDexterityIntelligenceJewel1"] = { type = "Suffix", affix = "of Cunning", "+(8-10) to Dexterity and Intelligence", statOrder = { 1182 }, level = 1, group = "DexterityIntelligenceForJewel", weightKey = { "default", }, weightVal = { 500 }, modTags = { "attribute" }, }, + ["AbyssAllAttributesJewel1"] = { type = "Suffix", affix = "of Adaption", "+(6-8) to all Attributes", statOrder = { 1176 }, level = 1, group = "AllAttributesForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "attribute" }, }, + ["AbyssFireResistanceJewel1"] = { type = "Suffix", affix = "of the Dragon", "+(12-15)% to Fire Resistance", statOrder = { 1625 }, level = 1, group = "FireResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AbyssColdResistanceJewel1"] = { type = "Suffix", affix = "of the Beast", "+(12-15)% to Cold Resistance", statOrder = { 1631 }, level = 1, group = "ColdResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AbyssLightningResistanceJewel1"] = { type = "Suffix", affix = "of Grounding", "+(12-15)% to Lightning Resistance", statOrder = { 1636 }, level = 1, group = "LightningResistanceForJewel", weightKey = { "default", }, weightVal = { 400 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AbyssFireColdResistanceJewel1"] = { type = "Suffix", affix = "of the Hearth", "+(10-12)% to Fire and Cold Resistances", statOrder = { 2798 }, level = 1, group = "FireColdResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "cold", "resistance" }, }, + ["AbyssFireLightningResistanceJewel1"] = { type = "Suffix", affix = "of Insulation", "+(10-12)% to Fire and Lightning Resistances", statOrder = { 2799 }, level = 1, group = "FireLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "fire", "lightning", "resistance" }, }, + ["AbyssColdLightningResistanceJewel1"] = { type = "Suffix", affix = "of Shelter", "+(10-12)% to Cold and Lightning Resistances", statOrder = { 2800 }, level = 1, group = "ColdLightningResistanceForJewel", weightKey = { "default", }, weightVal = { 250 }, modTags = { "elemental", "cold", "lightning", "resistance" }, }, + ["AbyssAllResistancesJewel1"] = { type = "Suffix", affix = "of Resistance", "+(8-10)% to all Elemental Resistances", statOrder = { 1619 }, level = 1, group = "AllResistancesForJewel", weightKey = { "default", }, weightVal = { 200 }, modTags = { "elemental", "resistance" }, }, + ["AbyssChaosResistanceJewel1"] = { type = "Suffix", affix = "of Order", "+(7-13)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistanceForJewel", weightKey = { "default", }, weightVal = { 100 }, modTags = { "chaos", "resistance" }, }, + ["AbyssAttackSpeedJewel1_"] = { type = "Suffix", affix = "of Berserking", "(3-5)% increased Attack Speed", statOrder = { 1410 }, level = 50, group = "IncreasedAttackSpeedForJewel", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "attack", "speed" }, }, + ["AbyssCastSpeedJewel1"] = { type = "Suffix", affix = "of Enchanting", "(2-4)% increased Cast Speed", statOrder = { 1446 }, level = 50, group = "IncreasedCastSpeedForJewel", weightKey = { "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 750, 750, 0 }, modTags = { "caster", "speed" }, }, + ["AbyssCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Menace", "(8-12)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 50, group = "CritChanceForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "critical" }, }, + ["AbyssCriticalStrikeMultiplierJewel1"] = { type = "Suffix", affix = "of Potency", "+(9-12)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 50, group = "CritMultiplierForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 900 }, modTags = { "damage", "critical" }, }, + ["AbyssDamageOverTimeWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while Dual Wielding", statOrder = { 2135 }, level = 1, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, }, + ["AbyssDamageOverTimeWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while Dual Wielding", statOrder = { 2135 }, level = 60, group = "DamageOverTimeWhileDualWielding", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, }, + ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2137 }, level = 1, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 900, 450 }, modTags = { "damage" }, }, + ["AbyssDamageOverTimeWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while wielding a Two Handed Weapon", statOrder = { 2137 }, level = 60, group = "DamageOverTimeWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_summoner", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 300, 150 }, modTags = { "damage" }, }, + ["AbyssDamageOverTimeWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Degenerative", "(10-14)% increased Damage over Time while holding a Shield", statOrder = { 2136 }, level = 1, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 600, 300 }, modTags = { "damage" }, }, + ["AbyssDamageOverTimeWhileHoldingAShieldJewel2_"] = { type = "Prefix", affix = "Deleterious", "(15-18)% increased Damage over Time while holding a Shield", statOrder = { 2136 }, level = 60, group = "DamageOverTimeWhileHoldingAShield", weightKey = { "abyss_jewel_summoner", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 200, 100 }, modTags = { "damage" }, }, + ["AbyssMinionAddedFireDamageJewel1"] = { type = "Prefix", affix = "Heated", "Minions deal (3-6) to (8-11) additional Fire Damage", statOrder = { 3771 }, level = 1, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedFireDamageJewel2"] = { type = "Prefix", affix = "Flaming", "Minions deal (11-14) to (17-20) additional Fire Damage", statOrder = { 3771 }, level = 39, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedFireDamageJewel3"] = { type = "Prefix", affix = "Scorching", "Minions deal (15-18) to (21-24) additional Fire Damage", statOrder = { 3771 }, level = 48, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedFireDamageJewel4_"] = { type = "Prefix", affix = "Incinerating", "Minions deal (20-23) to (26-32) additional Fire Damage", statOrder = { 3771 }, level = 58, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedFireDamageJewel5"] = { type = "Prefix", affix = "Blasting", "Minions deal (24-27) to (33-36) additional Fire Damage", statOrder = { 3771 }, level = 70, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedFireDamageJewel6_"] = { type = "Prefix", affix = "Cremating", "Minions deal (29-35) to (42-51) additional Fire Damage", statOrder = { 3771 }, level = 82, group = "MinionAddedFireDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel1"] = { type = "Prefix", affix = "Frosted", "Minions deal (3-6) to (8-11) additional Cold Damage", statOrder = { 3770 }, level = 1, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel2"] = { type = "Prefix", affix = "Freezing", "Minions deal (11-14) to (17-20) additional Cold Damage", statOrder = { 3770 }, level = 39, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel3"] = { type = "Prefix", affix = "Frozen", "Minions deal (15-18) to (21-24) additional Cold Damage", statOrder = { 3770 }, level = 48, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel4"] = { type = "Prefix", affix = "Glaciated", "Minions deal (20-23) to (26-32) additional Cold Damage", statOrder = { 3770 }, level = 58, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel5"] = { type = "Prefix", affix = "Polar", "Minions deal (24-27) to (33-36) additional Cold Damage", statOrder = { 3770 }, level = 70, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedColdDamageJewel6_"] = { type = "Prefix", affix = "Entombing", "Minions deal (29-35) to (42-51) additional Cold Damage", statOrder = { 3770 }, level = 82, group = "MinionAddedColdDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel1_"] = { type = "Prefix", affix = "Humming", "Minions deal 1 to (9-15) additional Lightning Damage", statOrder = { 3772 }, level = 1, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel2"] = { type = "Prefix", affix = "Sparking", "Minions deal (1-2) to (26-32) additional Lightning Damage", statOrder = { 3772 }, level = 39, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel3_"] = { type = "Prefix", affix = "Arcing", "Minions deal (1-3) to (33-39) additional Lightning Damage", statOrder = { 3772 }, level = 48, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel4"] = { type = "Prefix", affix = "Shocking", "Minions deal (1-4) to (44-50) additional Lightning Damage", statOrder = { 3772 }, level = 58, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel5"] = { type = "Prefix", affix = "Discharging", "Minions deal (1-5) to (51-54) additional Lightning Damage", statOrder = { 3772 }, level = 70, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedLightningDamageJewel6"] = { type = "Prefix", affix = "Electrocuting", "Minions deal (1-6) to (65-77) additional Lightning Damage", statOrder = { 3772 }, level = 82, group = "MinionAddedLightningDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel1"] = { type = "Prefix", affix = "Glinting", "Minions deal (2-3) to (5-8) additional Physical Damage", statOrder = { 3773 }, level = 1, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel2"] = { type = "Prefix", affix = "Gleaming", "Minions deal (5-8) to (11-14) additional Physical Damage", statOrder = { 3773 }, level = 42, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel3"] = { type = "Prefix", affix = "Annealed", "Minions deal (9-12) to (15-18) additional Physical Damage", statOrder = { 3773 }, level = 54, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel4"] = { type = "Prefix", affix = "Razor-sharp", "Minions deal (14-17) to (20-23) additional Physical Damage", statOrder = { 3773 }, level = 63, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel5"] = { type = "Prefix", affix = "Tempered", "Minions deal (18-21) to (24-27) additional Physical Damage", statOrder = { 3773 }, level = 72, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedPhysicalDamageJewel6"] = { type = "Prefix", affix = "Flaring", "Minions deal (23-26) to (33-39) additional Physical Damage", statOrder = { 3773 }, level = 83, group = "MinionAddedPhysicalDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "damage", "physical", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel1"] = { type = "Prefix", affix = "Tainted", "Minions deal (2-3) to (5-8) additional Chaos Damage", statOrder = { 3769 }, level = 1, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel2_"] = { type = "Prefix", affix = "Clouded", "Minions deal (5-8) to (11-14) additional Chaos Damage", statOrder = { 3769 }, level = 42, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel3"] = { type = "Prefix", affix = "Darkened", "Minions deal (9-12) to (15-18) additional Chaos Damage", statOrder = { 3769 }, level = 54, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel4"] = { type = "Prefix", affix = "Malignant", "Minions deal (14-17) to (20-23) additional Chaos Damage", statOrder = { 3769 }, level = 65, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 700, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel5_"] = { type = "Prefix", affix = "Vile", "Minions deal (18-21) to (24-27) additional Chaos Damage", statOrder = { 3769 }, level = 75, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssMinionAddedChaosDamageJewel6"] = { type = "Prefix", affix = "Malicious", "Minions deal (23-26) to (33-39) additional Chaos Damage", statOrder = { 3769 }, level = 84, group = "MinionAddedChaosDamage", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 175, 0 }, modTags = { "chaos_damage", "damage", "chaos", "minion" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 1, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 39, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 48, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 58, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 70, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while Dual Wielding", statOrder = { 2112 }, level = 82, group = "SpellAddedFireDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 1, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 39, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 48, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel4__"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 58, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 70, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while Dual Wielding", statOrder = { 2109 }, level = 82, group = "SpellAddedColdDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 1, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 39, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 48, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 58, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 70, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while Dual Wielding", statOrder = { 2115 }, level = 82, group = "SpellAddedLightningDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 1, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 42, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 54, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 63, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 72, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while Dual Wielding", statOrder = { 2118 }, level = 83, group = "SpellAddedPhysicalDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 1, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 42, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel3"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 54, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 65, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 75, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileDualWieldingJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while Dual Wielding", statOrder = { 2106 }, level = 84, group = "SpellAddedChaosDamageWhileDualWielding", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "dual_wielding_mod", "two_handed_mod", "shield_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 1, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 39, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel3_"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 48, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 58, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 70, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while wielding a Two Handed Weapon", statOrder = { 2114 }, level = 82, group = "SpellAddedFireDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 1, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 39, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 48, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 58, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 70, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while wielding a Two Handed Weapon", statOrder = { 2111 }, level = 82, group = "SpellAddedColdDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 1, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 39, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 48, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 58, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel5_"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 70, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileWieldingTwoHandedWeaponJewel6_"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while wielding a Two Handed Weapon", statOrder = { 2117 }, level = 82, group = "SpellAddedLightningDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 1, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 42, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 54, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 63, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 72, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while wielding a Two Handed Weapon", statOrder = { 2120 }, level = 83, group = "SpellAddedPhysicalDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 1, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 42, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel3"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 54, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 65, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 75, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileWieldingTwoHandedWeaponJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while wielding a Two Handed Weapon", statOrder = { 2108 }, level = 84, group = "SpellAddedChaosDamageWhileWieldingTwoHandedWeapon", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "two_handed_mod", "one_handed_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Heated", "(2-4) to (5-7) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 1, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Flaming", "(7-9) to (11-13) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 39, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Scorching", "(10-12) to (14-16) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 48, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel4_"] = { type = "Prefix", affix = "Incinerating", "(13-15) to (17-21) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 58, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Blasting", "(16-18) to (22-24) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 70, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageWhileHoldingAShieldJewel6__"] = { type = "Prefix", affix = "Cremating", "(19-25) to (26-34) Added Spell Fire Damage while holding a Shield", statOrder = { 2113 }, level = 82, group = "SpellAddedFireDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel1_"] = { type = "Prefix", affix = "Frosted", "(2-4) to (5-7) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 1, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Freezing", "(7-9) to (11-13) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 39, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Frozen", "(10-12) to (14-16) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 48, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Glaciated", "(13-15) to (17-21) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 58, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel5_"] = { type = "Prefix", affix = "Polar", "(16-18) to (22-24) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 70, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Entombing", "(19-25) to (26-34) Added Spell Cold Damage while holding a Shield", statOrder = { 2110 }, level = 82, group = "SpellAddedColdDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Humming", "1 to (6-10) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 1, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (17-21) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 39, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (22-26) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 48, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (29-33) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 58, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Discharging", "(1-5) to (34-36) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 70, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Electrocuting", "(1-6) to (43-51) Added Spell Lightning Damage while holding a Shield", statOrder = { 2116 }, level = 82, group = "SpellAddedLightningDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Glinting", "(1-2) to (3-5) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 1, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Gleaming", "(3-5) to (7-9) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 42, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel3"] = { type = "Prefix", affix = "Annealed", "(6-8) to (10-12) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 54, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Razor-sharp", "(9-11) to (13-15) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 63, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Tempered", "(12-14) to (15-17) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 72, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Flaring", "(15-17) to (20-24) Added Spell Physical Damage while holding a Shield", statOrder = { 2119 }, level = 83, group = "SpellAddedPhysicalDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel1"] = { type = "Prefix", affix = "Tainted", "(1-2) to (3-5) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 1, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel2"] = { type = "Prefix", affix = "Clouded", "(3-5) to (7-9) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 42, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel3__"] = { type = "Prefix", affix = "Darkened", "(6-8) to (10-12) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 54, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel4"] = { type = "Prefix", affix = "Malignant", "(9-11) to (13-15) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 65, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 700, 0, 0, 250, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel5"] = { type = "Prefix", affix = "Vile", "(12-14) to (15-17) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 75, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 350, 0, 0, 125, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageWhileHoldingAShieldJewel6"] = { type = "Prefix", affix = "Malicious", "(15-17) to (20-24) Added Spell Chaos Damage while holding a Shield", statOrder = { 2107 }, level = 84, group = "SpellAddedChaosDamageWhileHoldingAShield", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_summoner", "shield_mod", "two_handed_mod", "dual_wielding_mod", "abyss_jewel_caster", "default", }, weightVal = { 0, 0, 0, 175, 0, 0, 62, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedFireDamageJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (6-8) to (9-11) Fire Damage to Spells", statOrder = { 1404 }, level = 30, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageJewel2_"] = { type = "Suffix", affix = "of Cinders", "Adds (9-11) to (12-14) Fire Damage to Spells", statOrder = { 1404 }, level = 43, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (12-14) to (15-19) Fire Damage to Spells", statOrder = { 1404 }, level = 55, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageJewel4"] = { type = "Suffix", affix = "of Immolation", "Adds (15-17) to (20-23) Fire Damage to Spells", statOrder = { 1404 }, level = 66, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedFireDamageJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (19-23) to (24-32) Fire Damage to Spells", statOrder = { 1404 }, level = 77, group = "SpellAddedFireSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "fire", "caster" }, }, + ["AbyssSpellAddedColdDamageJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (6-8) to (9-11) Cold Damage to Spells", statOrder = { 1405 }, level = 30, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageJewel2"] = { type = "Suffix", affix = "of Ice", "Adds (9-11) to (12-14) Cold Damage to Spells", statOrder = { 1405 }, level = 43, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (12-14) to (15-19) Cold Damage to Spells", statOrder = { 1405 }, level = 55, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (15-17) to (20-23) Cold Damage to Spells", statOrder = { 1405 }, level = 66, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedColdDamageJewel5"] = { type = "Suffix", affix = "of Glaciation", "Adds (19-23) to (24-32) Cold Damage to Spells", statOrder = { 1405 }, level = 77, group = "SpellAddedColdSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "cold", "caster" }, }, + ["AbyssSpellAddedLightningDamageJewel1__"] = { type = "Suffix", affix = "of Static", "Adds (1-2) to (15-19) Lightning Damage to Spells", statOrder = { 1406 }, level = 30, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-3) to (20-24) Lightning Damage to Spells", statOrder = { 1406 }, level = 43, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageJewel3__"] = { type = "Suffix", affix = "of Voltage", "Adds (1-4) to (25-29) Lightning Damage to Spells", statOrder = { 1406 }, level = 55, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-5) to (30-32) Lightning Damage to Spells", statOrder = { 1406 }, level = 66, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedLightningDamageJewel5_"] = { type = "Suffix", affix = "of Arcing", "Adds (1-6) to (37-45) Lightning Damage to Spells", statOrder = { 1406 }, level = 77, group = "SpellAddedLightningSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "elemental_damage", "caster_damage", "damage", "elemental", "lightning", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageJewel1"] = { type = "Suffix", affix = "of Heft", "Adds (3-4) to (6-7) Physical Damage to Spells", statOrder = { 1403 }, level = 32, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageJewel2"] = { type = "Suffix", affix = "of Force", "Adds (5-7) to (8-10) Physical Damage to Spells", statOrder = { 1403 }, level = 45, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageJewel3"] = { type = "Suffix", affix = "of Weight", "Adds (8-10) to (11-13) Physical Damage to Spells", statOrder = { 1403 }, level = 56, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageJewel4"] = { type = "Suffix", affix = "of Impact", "Adds (11-13) to (14-16) Physical Damage to Spells", statOrder = { 1403 }, level = 65, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedPhysicalDamageJewel5__"] = { type = "Suffix", affix = "of Collision", "Adds (14-16) to (18-22) Physical Damage to Spells", statOrder = { 1403 }, level = 78, group = "SpellAddedPhysicalSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster" }, }, + ["AbyssSpellAddedChaosDamageJewel1"] = { type = "Suffix", affix = "of Dishonour", "Adds (3-4) to (6-7) Chaos Damage to Spells", statOrder = { 1407 }, level = 33, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageJewel2"] = { type = "Suffix", affix = "of Harm", "Adds (5-7) to (8-10) Chaos Damage to Spells", statOrder = { 1407 }, level = 48, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageJewel3"] = { type = "Suffix", affix = "of Malevolence", "Adds (8-10) to (11-13) Chaos Damage to Spells", statOrder = { 1407 }, level = 57, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 700, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageJewel4"] = { type = "Suffix", affix = "of Malice", "Adds (11-13) to (14-16) Chaos Damage to Spells", statOrder = { 1407 }, level = 68, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 350, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssSpellAddedChaosDamageJewel5"] = { type = "Suffix", affix = "of Sin", "Adds (14-16) to (18-22) Chaos Damage to Spells", statOrder = { 1407 }, level = 79, group = "SpellAddedChaosSuffix", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 175, 0 }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "caster" }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Wand Attacks", statOrder = { 2076 }, level = 1, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Wand Attacks", statOrder = { 2076 }, level = 42, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Wand Attacks", statOrder = { 2076 }, level = 64, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Wand Attacks", statOrder = { 2076 }, level = 77, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 150, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithWandsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Wand Attacks", statOrder = { 2076 }, level = 85, group = "AddedPhysicalDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 75, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Dagger Attacks", statOrder = { 2072 }, level = 1, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Dagger Attacks", statOrder = { 2072 }, level = 42, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Dagger Attacks", statOrder = { 2072 }, level = 64, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Dagger Attacks", statOrder = { 2072 }, level = 77, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithDaggersJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Dagger Attacks", statOrder = { 2072 }, level = 85, group = "AddedPhysicalDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Claw Attacks", statOrder = { 2071 }, level = 1, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Claw Attacks", statOrder = { 2071 }, level = 42, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Claw Attacks", statOrder = { 2071 }, level = 64, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Claw Attacks", statOrder = { 2071 }, level = 77, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithClawsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Claw Attacks", statOrder = { 2071 }, level = 85, group = "AddedPhysicalDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Sword Attacks", statOrder = { 2075 }, level = 1, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Sword Attacks", statOrder = { 2075 }, level = 42, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Sword Attacks", statOrder = { 2075 }, level = 64, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Sword Attacks", statOrder = { 2075 }, level = 77, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Sword Attacks", statOrder = { 2075 }, level = 85, group = "AddedPhysicalDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Axe Attacks", statOrder = { 2069 }, level = 1, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Axe Attacks", statOrder = { 2069 }, level = 42, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Axe Attacks", statOrder = { 2069 }, level = 64, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Axe Attacks", statOrder = { 2069 }, level = 77, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithAxesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Axe Attacks", statOrder = { 2069 }, level = 85, group = "AddedPhysicalDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2073 }, level = 1, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2073 }, level = 42, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2073 }, level = 64, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2073 }, level = 77, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithMacesJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Mace or Sceptre Attacks", statOrder = { 2073 }, level = 85, group = "AddedPhysicalDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Staff Attacks", statOrder = { 2074 }, level = 1, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel2"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Staff Attacks", statOrder = { 2074 }, level = 42, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Staff Attacks", statOrder = { 2074 }, level = 64, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel4"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Staff Attacks", statOrder = { 2074 }, level = 77, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithStavesJewel5_"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Staff Attacks", statOrder = { 2074 }, level = 85, group = "AddedPhysicalDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel1"] = { type = "Prefix", affix = "Glinting", "2 to 3 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 1, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Gleaming", "3 to 4 Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 42, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel3"] = { type = "Prefix", affix = "Tempered", "4 to (5-6) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 64, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel4_"] = { type = "Prefix", affix = "Flaring", "(5-6) to (7-8) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 77, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalDamageWithBowsJewel5"] = { type = "Prefix", affix = "Acuminate", "(7-8) to (9-10) Added Physical Damage with Bow Attacks", statOrder = { 2070 }, level = 85, group = "PhysicalDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel1_"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 1, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 37, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 48, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 60, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 70, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithWandsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Wand Attacks", statOrder = { 2102 }, level = 82, group = "AddedLightningDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 1, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 37, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 48, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 60, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 70, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Dagger Attacks", statOrder = { 2098 }, level = 82, group = "AddedLightningDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel1__"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 1, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 37, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 48, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 60, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 70, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithClawsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Claw Attacks", statOrder = { 2097 }, level = 82, group = "AddedLightningDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 1, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel2_"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 37, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 48, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 60, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 70, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithBowsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Bow Attacks", statOrder = { 2096 }, level = 82, group = "AddedLightningDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 625, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 1, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel2__"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 37, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 48, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 60, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 70, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Sword Attacks", statOrder = { 2101 }, level = 82, group = "AddedLightningDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 1, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 37, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel3_"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 48, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 60, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 70, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithAxesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Axe Attacks", statOrder = { 2095 }, level = 82, group = "AddedLightningDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 1, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 37, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 48, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel4_"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 60, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 70, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithMacesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Mace or Sceptre Attacks", statOrder = { 2099 }, level = 82, group = "AddedLightningDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel1"] = { type = "Prefix", affix = "Humming", "1 to (19-20) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 1, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel2"] = { type = "Prefix", affix = "Sparking", "(1-2) to (23-24) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 37, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel3"] = { type = "Prefix", affix = "Arcing", "(1-3) to (28-30) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 48, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel4"] = { type = "Prefix", affix = "Shocking", "(1-4) to (33-35) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 60, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel5"] = { type = "Prefix", affix = "Discharging", "(2-4) to (40-43) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 70, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningDamageWithStavesJewel6"] = { type = "Prefix", affix = "Electrocuting", "(2-5) to (48-50) Added Lightning Damage with Staff Attacks", statOrder = { 2100 }, level = 82, group = "AddedLightningDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 1, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 40, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 51, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 62, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 72, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithWandsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Wand Attacks", statOrder = { 2086 }, level = 84, group = "AddedFireDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 1, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 40, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 51, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 62, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 72, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Dagger Attacks", statOrder = { 2082 }, level = 84, group = "AddedFireDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 1, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 40, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 51, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 62, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 72, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithClawsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Claw Attacks", statOrder = { 2081 }, level = 84, group = "AddedFireDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 1, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 40, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 51, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 62, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 72, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithBowsJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Bow Attacks", statOrder = { 2080 }, level = 84, group = "FireDamageWithBowsJewel", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 1, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 40, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel3___"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 51, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 62, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 72, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Sword Attacks", statOrder = { 2085 }, level = 84, group = "AddedFireDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 1, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 40, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 51, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 62, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel5"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 72, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithAxesJewel6_"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Axe Attacks", statOrder = { 2079 }, level = 84, group = "AddedFireDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel1"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 1, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel2_"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 40, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel3"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 51, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 62, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 72, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithMacesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Mace or Sceptre Attacks", statOrder = { 2083 }, level = 84, group = "AddedFireDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel1_"] = { type = "Prefix", affix = "Heated", "(5-6) to (11-12) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 1, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel2"] = { type = "Prefix", affix = "Flaming", "(7-8) to (13-15) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 40, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel3__"] = { type = "Prefix", affix = "Scorching", "(9-11) to (16-19) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 51, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel4"] = { type = "Prefix", affix = "Incinerating", "(12-13) to (20-22) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 62, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel5__"] = { type = "Prefix", affix = "Blasting", "(14-15) to (23-26) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 72, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireDamageWithStavesJewel6"] = { type = "Prefix", affix = "Cremating", "(16-18) to (27-32) Added Fire Damage with Staff Attacks", statOrder = { 2084 }, level = 84, group = "AddedFireDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel1__"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 1, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 38, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 47, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 59, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2350, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 68, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1175, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithWandsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Wand Attacks", statOrder = { 2094 }, level = 83, group = "AddedColdDamageWithWands", weightKey = { "wand", "two_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 553, 0, 0, 87, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 1, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 38, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 47, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 59, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 68, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithDaggersJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Dagger Attacks", statOrder = { 2090 }, level = 83, group = "AddedColdDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 1, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 38, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 47, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 59, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 68, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithClawsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Claw Attacks", statOrder = { 2089 }, level = 83, group = "AddedColdDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 1, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 38, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 47, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 59, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 2500, 0, 0, 700, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 68, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithBowsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Bow Attacks", statOrder = { 2088 }, level = 83, group = "AddedColdDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 175, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 1, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 38, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 47, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 59, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 68, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithSwordsJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Sword Attacks", statOrder = { 2093 }, level = 83, group = "AddedColdDamageWithSwords", weightKey = { "sword", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 1, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 38, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 47, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 59, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 68, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithAxesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Axe Attacks", statOrder = { 2087 }, level = 83, group = "AddedColdDamageWithAxes", weightKey = { "axe", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 1, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel2"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 38, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel3"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 47, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 59, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel5_"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 68, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithMacesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Mace or Sceptre Attacks", statOrder = { 2091 }, level = 83, group = "AddedColdDamageWithMaces", weightKey = { "mace", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel1"] = { type = "Prefix", affix = "Frosted", "(4-5) to (9-10) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 1, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel2_"] = { type = "Prefix", affix = "Freezing", "(6-7) to (11-13) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 38, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel3_"] = { type = "Prefix", affix = "Frozen", "(8-9) to (14-16) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 47, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel4"] = { type = "Prefix", affix = "Glaciated", "(10-11) to (17-20) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 59, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 2000, 0, 0, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel5"] = { type = "Prefix", affix = "Polar", "(12-13) to (21-24) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 68, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdDamageWithStavesJewel6"] = { type = "Prefix", affix = "Entombing", "(14-15) to (25-28) Added Cold Damage with Staff Attacks", statOrder = { 2092 }, level = 83, group = "AddedColdDamageWithStaves", weightKey = { "staff", "one_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedChaosDamageWithDaggersJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Dagger Attacks", statOrder = { 2105 }, level = 1, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithDaggersJewel2_"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Dagger Attacks", statOrder = { 2105 }, level = 42, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithDaggersJewel3__"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Dagger Attacks", statOrder = { 2105 }, level = 64, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithDaggersJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Dagger Attacks", statOrder = { 2105 }, level = 77, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithDaggersJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Dagger Attacks", statOrder = { 2105 }, level = 85, group = "AddedChaosDamageWithDaggers", weightKey = { "dagger", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithBowsJewel1_"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 1, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithBowsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 42, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithBowsJewel3"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 64, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 1250, 0, 0, 350, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithBowsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 77, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithBowsJewel5"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Bow Attacks", statOrder = { 2103 }, level = 85, group = "AddedChaosDamageWithBows", weightKey = { "bow", "one_handed_mod", "specific_weapon", "abyss_jewel_ranged", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithClawsJewel1"] = { type = "Prefix", affix = "Tainted", "(4-5) to (9-10) Added Chaos Damage with Claw Attacks", statOrder = { 2104 }, level = 1, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithClawsJewel2"] = { type = "Prefix", affix = "Clouded", "(6-7) to (11-13) Added Chaos Damage with Claw Attacks", statOrder = { 2104 }, level = 42, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithClawsJewel3_"] = { type = "Prefix", affix = "Darkened", "(8-9) to (14-16) Added Chaos Damage with Claw Attacks", statOrder = { 2104 }, level = 64, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 1000, 0, 0, 250, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithClawsJewel4"] = { type = "Prefix", affix = "Malignant", "(10-11) to (17-20) Added Chaos Damage with Claw Attacks", statOrder = { 2104 }, level = 77, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 500, 0, 0, 125, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosDamageWithClawsJewel5_"] = { type = "Prefix", affix = "Vile", "(12-13) to (21-24) Added Chaos Damage with Claw Attacks", statOrder = { 2104 }, level = 85, group = "AddedChaosDamageWithClaws", weightKey = { "claw", "two_handed_mod", "specific_weapon", "abyss_jewel_melee", "default", }, weightVal = { 250, 0, 0, 60, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedFireSuffixJewel1"] = { type = "Suffix", affix = "of Coals", "Adds (4-5) to (10-12) Fire Damage to Attacks", statOrder = { 1360 }, level = 35, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireSuffixJewel2"] = { type = "Suffix", affix = "of Cinders", "Adds (6-7) to (13-16) Fire Damage to Attacks", statOrder = { 1360 }, level = 44, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireSuffixJewel3"] = { type = "Suffix", affix = "of Flames", "Adds (8-9) to (17-20) Fire Damage to Attacks", statOrder = { 1360 }, level = 52, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireSuffixJewel4_"] = { type = "Suffix", affix = "of Immolation", "Adds (10-12) to (21-24) Fire Damage to Attacks", statOrder = { 1360 }, level = 64, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedFireSuffixJewel5"] = { type = "Suffix", affix = "of Ashes", "Adds (13-15) to (25-28) Fire Damage to Attacks", statOrder = { 1360 }, level = 76, group = "AddedFireSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "attack" }, }, + ["AbyssAddedColdSuffixJewel1"] = { type = "Suffix", affix = "of Sleet", "Adds (4-5) to (8-10) Cold Damage to Attacks", statOrder = { 1369 }, level = 36, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdSuffixJewel2_"] = { type = "Suffix", affix = "of Ice", "Adds (6-7) to (11-13) Cold Damage to Attacks", statOrder = { 1369 }, level = 45, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdSuffixJewel3"] = { type = "Suffix", affix = "of Rime", "Adds (8-9) to (14-17) Cold Damage to Attacks", statOrder = { 1369 }, level = 53, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdSuffixJewel4"] = { type = "Suffix", affix = "of Floe", "Adds (10-11) to (18-21) Cold Damage to Attacks", statOrder = { 1369 }, level = 65, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedColdSuffixJewel5_"] = { type = "Suffix", affix = "of Glaciation", "Adds (12-13) to (22-26) Cold Damage to Attacks", statOrder = { 1369 }, level = 77, group = "AddedColdSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "attack" }, }, + ["AbyssAddedLightningSuffixJewel1"] = { type = "Suffix", affix = "of Static", "Adds 1 to (19-20) Lightning Damage to Attacks", statOrder = { 1380 }, level = 35, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningSuffixJewel2"] = { type = "Suffix", affix = "of Electricity", "Adds (1-2) to (25-27) Lightning Damage to Attacks", statOrder = { 1380 }, level = 44, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningSuffixJewel3"] = { type = "Suffix", affix = "of Voltage", "Adds (1-3) to (29-32) Lightning Damage to Attacks", statOrder = { 1380 }, level = 52, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningSuffixJewel4"] = { type = "Suffix", affix = "of Discharge", "Adds (1-4) to (36-39) Lightning Damage to Attacks", statOrder = { 1380 }, level = 64, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedLightningSuffixJewel5"] = { type = "Suffix", affix = "of Arcing", "Adds (1-4) to (43-48) Lightning Damage to Attacks", statOrder = { 1380 }, level = 76, group = "AddedLightningSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "attack" }, }, + ["AbyssAddedPhysicalSuffixJewel1"] = { type = "Suffix", affix = "of Weight", "Adds 1 to 3 Physical Damage to Attacks", statOrder = { 1266 }, level = 34, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalSuffixJewel2"] = { type = "Suffix", affix = "of Impact", "Adds (2-3) to (4-5) Physical Damage to Attacks", statOrder = { 1266 }, level = 45, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedPhysicalSuffixJewel3"] = { type = "Suffix", affix = "of Collision", "Adds (4-5) to (6-7) Physical Damage to Attacks", statOrder = { 1266 }, level = 61, group = "AddedPhysicalSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AbyssAddedChaosSuffixJewel1"] = { type = "Suffix", affix = "of Malevolence", "Adds (6-7) to (11-13) Chaos Damage to Attacks", statOrder = { 1387 }, level = 36, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosSuffixJewel2"] = { type = "Suffix", affix = "of Malice", "Adds (8-9) to (14-17) Chaos Damage to Attacks", statOrder = { 1387 }, level = 48, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 750, 750, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssAddedChaosSuffixJewel3"] = { type = "Suffix", affix = "of Sin", "Adds (10-11) to (18-21) Chaos Damage to Attacks", statOrder = { 1387 }, level = 64, group = "AddedChaosSuffix", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 375, 375, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["AbyssFlatMinionLifeRegenerationJewel1"] = { type = "Prefix", affix = "Fuelling", "Minions Regenerate (22-30) Life per second", statOrder = { 9314 }, level = 1, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssFlatMinionLifeRegenerationJewel2"] = { type = "Prefix", affix = "Lively", "Minions Regenerate (32-40) Life per second", statOrder = { 9314 }, level = 30, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssFlatMinionLifeRegenerationJewel3"] = { type = "Prefix", affix = "Exuberant", "Minions Regenerate (42-60) Life per second", statOrder = { 9314 }, level = 60, group = "FlatMinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssFlatEnergyShieldRegenerationJewel1"] = { type = "Prefix", affix = "Captivating", "Regenerate (9-12) Energy Shield per second", statOrder = { 6461 }, level = 1, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatEnergyShieldRegenerationJewel2"] = { type = "Prefix", affix = "Beautiful", "Regenerate (13-16) Energy Shield per second", statOrder = { 6461 }, level = 30, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatEnergyShieldRegenerationJewel3"] = { type = "Prefix", affix = "Breathtaking", "Regenerate (17-20) Energy Shield per second", statOrder = { 6461 }, level = 60, group = "FlatEnergyShieldRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatLifeRegenerationJewel1"] = { type = "Prefix", affix = "Youthful", "Regenerate (9-12) Life per second", statOrder = { 1574 }, level = 1, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["AbyssFlatLifeRegenerationJewel2"] = { type = "Prefix", affix = "Spirited", "Regenerate (13-16) Life per second", statOrder = { 1574 }, level = 40, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["AbyssFlatLifeRegenerationJewel3_"] = { type = "Prefix", affix = "Vivacious", "Regenerate (17-20) Life per second", statOrder = { 1574 }, level = 80, group = "LifeRegeneration", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 250, 0 }, modTags = { "flat_life_regen", "resource", "life" }, }, + ["AbyssFlatManaShieldRegenerationJewel1"] = { type = "Prefix", affix = "Energising", "Regenerate (1.1-2) Mana per second", statOrder = { 1582 }, level = 1, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, + ["AbyssFlatManaShieldRegenerationJewel2"] = { type = "Prefix", affix = "Inspirational", "Regenerate (2.1-3) Mana per second", statOrder = { 1582 }, level = 40, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, + ["AbyssFlatManaShieldRegenerationJewel3"] = { type = "Prefix", affix = "Resonating", "Regenerate (3.3-4) Mana per second", statOrder = { 1582 }, level = 75, group = "AddedManaRegeneration", weightKey = { "default", }, weightVal = { 350 }, modTags = { "resource", "mana" }, }, + ["AbyssAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Blinding", "(3-4)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 32, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 800, 800, 0 }, modTags = { "attack" }, }, + ["AbyssAttacksBlindOnHitChanceJewel2___"] = { type = "Suffix", affix = "of Blinding", "(5-6)% chance to Blind Enemies on Hit with Attacks", statOrder = { 4915 }, level = 65, group = "AttacksBlindOnHitChance", weightKey = { "abyss_jewel_ranged", "abyss_jewel_melee", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attack" }, }, + ["AbyssAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Taunting", "(3-5)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 32, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 800, 0 }, modTags = { "attack" }, }, + ["AbyssAttacksTauntOnHitChanceJewel2"] = { type = "Suffix", affix = "of Taunting", "(6-8)% chance to Taunt Enemies on Hit with Attacks", statOrder = { 4916 }, level = 65, group = "AttacksTauntOnHitChance", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 400, 0 }, modTags = { "attack" }, }, + ["AbyssSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Hindering", "(3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 32, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 800, 0 }, modTags = { "caster" }, }, + ["AbyssSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Hindering", "(6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 65, group = "SpellsHinderOnHitChance", weightKey = { "abyss_jewel_caster", "default", }, weightVal = { 400, 0 }, modTags = { "caster" }, }, + ["AbyssMinionAttacksBlindOnHitChanceJewel1"] = { type = "Suffix", affix = "of Stifling", "Minions have (3-4)% chance to Blind on Hit with Attacks", statOrder = { 9276 }, level = 32, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssMinionAttacksBlindOnHitChanceJewel2"] = { type = "Suffix", affix = "of Stifling", "Minions have (5-6)% chance to Blind on Hit with Attacks", statOrder = { 9276 }, level = 65, group = "MinionAttacksBlindOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssMinionAttacksTauntOnHitChanceJewel1"] = { type = "Suffix", affix = "of Distraction", "Minions have (3-5)% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 32, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssMinionAttacksTauntOnHitChanceJewel2_"] = { type = "Suffix", affix = "of Distraction", "Minions have (6-8)% chance to Taunt on Hit with Attacks", statOrder = { 3431 }, level = 65, group = "MinionAttacksTauntOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssMinionSpellsHinderOnHitChanceJewel1"] = { type = "Suffix", affix = "of Delaying", "Minions have (3-5)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9334 }, level = 32, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "caster", "minion" }, }, + ["AbyssMinionSpellsHinderOnHitChanceJewel2"] = { type = "Suffix", affix = "of Delaying", "Minions have (6-8)% chance to Hinder Enemies on Hit with Spells", statOrder = { 9334 }, level = 65, group = "MinionSpellsHinderOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "caster", "minion" }, }, + ["AbyssMinionPoisonOnHitChanceJewel1"] = { type = "Suffix", affix = "of Venom", "Minions have (10-15)% chance to Poison Enemies on Hit", statOrder = { 3174 }, level = 60, group = "AbyssMinionPoisonOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "poison", "chaos", "minion", "ailment" }, }, + ["AbyssMinionIgniteOnHitChanceJewel1"] = { type = "Suffix", affix = "of Combustion", "Minions have (10-15)% chance to Ignite", statOrder = { 9284 }, level = 60, group = "AbyssMinionIgniteOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "minion", "ailment" }, }, + ["AbyssMinionAttacksBleedOnHitChanceJewel1"] = { type = "Suffix", affix = "of Bloodletting", "Minions have (10-15)% chance to cause Bleeding with Attacks", statOrder = { 2490 }, level = 60, group = "AbyssMinionAttacksBleedOnHitChance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 400, 0 }, modTags = { "bleed", "physical", "minion", "ailment" }, }, + ["AbyssDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Banishing", "(30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 6069 }, level = 1, group = "DamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 500 }, modTags = { "damage" }, }, + ["AbyssMinionDamageVSAbyssMonstersJewel1"] = { type = "Suffix", affix = "of Marshalling", "Minions deal (30-40)% increased Damage with Hits and Ailments against Abyssal Monsters", statOrder = { 9296 }, level = 1, group = "MinionDamageVSAbyssMonsters", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "minion" }, }, + ["AbyssReducedPhysicalDamageTakenVsAbyssMonsterJewel1"] = { type = "Suffix", affix = "of Warding", "(4-6)% additional Physical Damage Reduction against Abyssal Monsters", statOrder = { 4578 }, level = 1, group = "ReducedPhysicalDamageTakenVsAbyssMonsters", weightKey = { "default", }, weightVal = { 500 }, modTags = { "physical" }, }, + ["AbyssAvoidIgniteJewel1_"] = { type = "Suffix", affix = "of Nonflammability", "(31-40)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 50, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AbyssAvoidIgniteJewel2"] = { type = "Suffix", affix = "of Fireproofing", "(41-50)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 70, group = "AvoidIgnite", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "fire", "ailment" }, }, + ["AbyssAvoidFreezeAndChillJewel1"] = { type = "Suffix", affix = "of Warming", "(31-40)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 50, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AbyssAvoidFreezeAndChillJewel2"] = { type = "Suffix", affix = "of Heating", "(41-50)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 70, group = "ChanceToAvoidFreezeAndChill", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "cold", "ailment" }, }, + ["AbyssAvoidShockJewel1"] = { type = "Suffix", affix = "of Insulating", "(31-40)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 50, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 300 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AbyssAvoidShockJewel2"] = { type = "Suffix", affix = "of the Lightning Rod", "(41-50)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 70, group = "AvoidShockForJewel", weightKey = { "default", }, weightVal = { 150 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AbyssAvoidPoisonJewel1__"] = { type = "Suffix", affix = "of Tolerance", "(31-40)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 50, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 300 }, modTags = { "poison", "chaos", "ailment" }, }, + ["AbyssAvoidPoisonJewel2__"] = { type = "Suffix", affix = "of Immunity", "(41-50)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 70, group = "ChanceToAvoidPoison", weightKey = { "default", }, weightVal = { 150 }, modTags = { "poison", "chaos", "ailment" }, }, + ["AbyssAvoidBleedingJewel1"] = { type = "Suffix", affix = "of Stemming", "(31-40)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 50, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 300 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AbyssAvoidBleedingJewel2"] = { type = "Suffix", affix = "of the Tourniquet", "(41-50)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 70, group = "ChanceToAvoidBleeding", weightKey = { "default", }, weightVal = { 150 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AbyssAvoidStunJewel1"] = { type = "Suffix", affix = "of Balance", "(21-24)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 50, group = "AvoidStun", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, }, + ["AbyssAvoidStunJewel2"] = { type = "Suffix", affix = "of Poise", "(25-30)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 70, group = "AvoidStun", weightKey = { "default", }, weightVal = { 150 }, modTags = { }, }, + ["AbyssAccuracyRatingJewel1"] = { type = "Suffix", affix = "of Calm", "+(10-30) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { "attack" }, }, + ["AbyssAccuracyRatingJewel2"] = { type = "Suffix", affix = "of Steadiness", "+(31-60) to Accuracy Rating", statOrder = { 1433 }, level = 1, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, + ["AbyssAccuracyRatingJewel3"] = { type = "Suffix", affix = "of the Marksman", "+(61-120) to Accuracy Rating", statOrder = { 1433 }, level = 52, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, + ["AbyssAccuracyRatingJewel4"] = { type = "Suffix", affix = "of the Ranger", "+(121-240) to Accuracy Rating", statOrder = { 1433 }, level = 78, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 500, 1000, 0 }, modTags = { "attack" }, }, + ["AbyssAccuracyRatingJewel5"] = { type = "Suffix", affix = "of the Deadeye", "+(241-300) to Accuracy Rating", statOrder = { 1433 }, level = 85, group = "IncreasedAccuracy", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 250, 500, 0 }, modTags = { "attack" }, }, + ["AbyssMinionAttackAndCastSpeedJewel1"] = { type = "Suffix", affix = "of Training", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AbyssMinionLifeRegenerationJewel1"] = { type = "Suffix", affix = "of Longevity", "Minions Regenerate (0.4-0.8)% of Life per second", statOrder = { 2911 }, level = 1, group = "MinionLifeRegeneration", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssMinionLifeLeechJewel1"] = { type = "Suffix", affix = "of Vampirism", "Minions Leech (0.3-0.5)% of Damage as Life", statOrder = { 2910 }, level = 1, group = "MinionLifeLeech", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssMinionMovementSpeedJewel1"] = { type = "Suffix", affix = "of Orchestration", "Minions have (6-10)% increased Movement Speed", statOrder = { 1769 }, level = 1, group = "MinionMovementSpeed", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "speed", "minion" }, }, + ["AbyssMinionLifeJewel1_"] = { type = "Suffix", affix = "of Fortitude", "Minions have (8-12)% increased maximum Life", statOrder = { 1766 }, level = 1, group = "MinionLifeForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AbyssFlatMinionAccuracy1"] = { type = "Suffix", affix = "of Suggestion", "Minions have +(95-125) to Accuracy Rating", statOrder = { 9263 }, level = 1, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssFlatMinionAccuracy2_"] = { type = "Suffix", affix = "of Instruction", "Minions have +(126-180) to Accuracy Rating", statOrder = { 9263 }, level = 52, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssFlatMinionAccuracy3"] = { type = "Suffix", affix = "of Command", "Minions have +(181-250) to Accuracy Rating", statOrder = { 9263 }, level = 78, group = "MinionAccuracyRatingFlat", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "minion" }, }, + ["AbyssMinionElementalResistancesJewel1"] = { type = "Suffix", affix = "of Acclimatisation", "Minions have +(6-10)% to all Elemental Resistances", statOrder = { 2912 }, level = 1, group = "MinionElementalResistancesForJewel", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "elemental", "resistance", "minion" }, }, + ["AbyssMinionChaosResistanceJewel1"] = { type = "Suffix", affix = "of Righteousness", "Minions have +(7-11)% to Chaos Resistance", statOrder = { 2913 }, level = 1, group = "MinionChaosResistance", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 800, 0 }, modTags = { "chaos", "resistance", "minion" }, }, + ["AbyssFlatArmourJewel1"] = { type = "Prefix", affix = "Lacquered", "+(36-60) to Armour", statOrder = { 1539 }, level = 1, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, + ["AbyssFlatArmourJewel2"] = { type = "Prefix", affix = "Fortified", "+(61-100) to Armour", statOrder = { 1539 }, level = 40, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, + ["AbyssFlatArmourJewel3"] = { type = "Prefix", affix = "Carapaced", "+(101-180) to Armour", statOrder = { 1539 }, level = 75, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "armour" }, }, + ["AbyssFlatArmourJewel4__"] = { type = "Prefix", affix = "Encased", "+(181-250) to Armour", statOrder = { 1539 }, level = 83, group = "PhysicalDamageReductionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "armour" }, }, + ["AbyssFlatEvasionJewel1"] = { type = "Prefix", affix = "Agile", "+(36-60) to Evasion Rating", statOrder = { 1544 }, level = 1, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, + ["AbyssFlatEvasionJewel2"] = { type = "Prefix", affix = "Fleet", "+(61-100) to Evasion Rating", statOrder = { 1544 }, level = 40, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, + ["AbyssFlatEvasionJewel3"] = { type = "Prefix", affix = "Vaporous", "+(101-180) to Evasion Rating", statOrder = { 1544 }, level = 75, group = "EvasionRating", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "evasion" }, }, + ["AbyssFlatEvasionJewel4_"] = { type = "Prefix", affix = "Beclouded", "+(181-250) to Evasion Rating", statOrder = { 1544 }, level = 83, group = "EvasionRating", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "evasion" }, }, + ["AbyssFlatEnergyShieldJewel1"] = { type = "Prefix", affix = "Shining", "+(21-25) to maximum Energy Shield", statOrder = { 1558 }, level = 1, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatEnergyShieldJewel2"] = { type = "Prefix", affix = "Seething", "+(26-30) to maximum Energy Shield", statOrder = { 1558 }, level = 40, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatEnergyShieldJewel3"] = { type = "Prefix", affix = "Incandescent", "+(31-35) to maximum Energy Shield", statOrder = { 1558 }, level = 75, group = "EnergyShield", weightKey = { "default", }, weightVal = { 600 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssFlatEnergyShieldJewel4"] = { type = "Prefix", affix = "Resplendent", "+(36-40) to maximum Energy Shield", statOrder = { 1558 }, level = 83, group = "EnergyShield", weightKey = { "default", }, weightVal = { 300 }, modTags = { "defences", "energy_shield" }, }, + ["AbyssCurseEffectJewel1"] = { type = "Prefix", affix = "Murmuring", "2% increased Effect of your Curses", statOrder = { 2596 }, level = 75, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, }, + ["AbyssCurseEffectJewel2"] = { type = "Prefix", affix = "Foul-tongued", "3% increased Effect of your Curses", statOrder = { 2596 }, level = 86, group = "CurseEffectiveness", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "caster", "curse" }, }, + ["AbyssCooldownRecoverySpeed1_"] = { type = "Prefix", affix = "Facilitating", "2% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 75, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, }, + ["AbyssCooldownRecoverySpeed2__"] = { type = "Prefix", affix = "Expediting", "3% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 86, group = "GlobalCooldownRecovery", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { }, }, + ["AbyssImpaleEffect1_"] = { type = "Prefix", affix = "Skewering", "(3-4)% increased Impale Effect", statOrder = { 7242 }, level = 75, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { "physical" }, }, + ["AbyssImpaleEffect2_"] = { type = "Prefix", affix = "Lancing", "(5-6)% increased Impale Effect", statOrder = { 7242 }, level = 86, group = "ImpaleEffect", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 300, 100, 100, 0 }, modTags = { "physical" }, }, + ["AbyssDamageRecoupedAsMana1"] = { type = "Prefix", affix = "Spurring", "2% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 75, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, }, + ["AbyssDamageRecoupedAsMana2"] = { type = "Prefix", affix = "Motivating", "3% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 86, group = "PercentDamageGoesToMana", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 300, 300, 0 }, modTags = { "resource", "mana" }, }, + ["AbyssSpellBlockChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Instinct", "+(3-4)% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5651 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "block" }, }, + ["AbyssReducedPhysicalDamageTakenIfNotHitRecentlyJewel1"] = { type = "Suffix", affix = "of Confidence", "2% additional Physical Damage Reduction if you weren't Damaged by a Hit Recently", statOrder = { 4574 }, level = 1, group = "ReducedPhysicalDamageTakenIfNotHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "physical" }, }, + ["AbyssMovementSpeedIfNotDamagedRecentlyJewel1"] = { type = "Suffix", affix = "of Momentum", "(3-4)% increased Movement Speed if you haven't taken Damage Recently", statOrder = { 9421 }, level = 1, group = "MovementSpeedIfNotDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "speed" }, }, + ["AbyssDamageIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Slayer", "(15-20)% increased Damage if you've Killed Recently", statOrder = { 6042 }, level = 1, group = "DamageIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "damage" }, }, + ["AbyssCriticalStrikeMultiplierIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Assassin", "+(8-14)% to Critical Strike Multiplier if you've Killed Recently", statOrder = { 5957 }, level = 25, group = "CriticalStrikeMultiplierIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "damage", "critical" }, }, + ["AbyssIncreasedArmourIfNoEnemySlainRecentlyJewel1__"] = { type = "Suffix", affix = "of the Guardian", "(20-30)% increased Armour if you haven't Killed Recently", statOrder = { 4768 }, level = 1, group = "IncreasedArmourIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 0, 0 }, modTags = { "defences", "armour" }, }, + ["AbyssAccuracyIfNoEnemySlainRecentlyJewel1_"] = { type = "Suffix", affix = "of the Deadeye", "(20-30)% increased Accuracy Rating if you haven't Killed Recently", statOrder = { 4520 }, level = 1, group = "AccuracyIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 0, 0, 0, 0, 0 }, modTags = { "attack" }, }, + ["AbyssDamagePenetratesElementalResistancesIfNoEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Inquisitor", "Damage Penetrates 2% Elemental Resistances if you haven't Killed Recently", statOrder = { 6032 }, level = 1, group = "DamagePenetratesElementalResistancesIfNoEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["AbyssCastSpeedIfMinionKilledRecentlyJewel1"] = { type = "Suffix", affix = "of Retaliation", "(7-10)% increased Cast Speed if a Minion has been Killed Recently", statOrder = { 5469 }, level = 30, group = "CastSpeedIfMinionKilledRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "caster", "speed" }, }, + ["AbyssMinionDamageIfMinionSkillUsedRecentlyJewel1"] = { type = "Suffix", affix = "of Authority", "Minions deal (15-20)% increased Damage if you've used a Minion Skill Recently", statOrder = { 1974 }, level = 1, group = "MinionDamageIfMinionSkillUsedRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "minion" }, }, + ["AbyssEvasionRatingWhileMovingJewel1"] = { type = "Suffix", affix = "of Maneuvering", "(25-35)% increased Evasion Rating while moving", statOrder = { 6498 }, level = 1, group = "EvasionRatingWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "defences", "evasion" }, }, + ["AbyssManaRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Praxis", "(20-25)% increased Mana Regeneration Rate while moving", statOrder = { 8211 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 250, 0 }, modTags = { "resource", "mana" }, }, + ["AbyssLifeRegenerationRateWhileMovingJewel1"] = { type = "Suffix", affix = "of Vivaciousness", "Regenerate (0.5-1)% of Life per second while moving", statOrder = { 7424 }, level = 1, group = "LifeRegenerationRateWhileMoving", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "resource", "life" }, }, + ["AbyssPhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of the Inferno", "Gain (2-4)% of Physical Damage as Extra Fire Damage if you've dealt a Critical Strike Recently", statOrder = { 9633 }, level = 40, group = "PhysicalDamageAddedAsExtraFireIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 300, 150, 150, 0, 0 }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["AbyssAttackSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Opportunity", "(6-8)% increased Attack Speed if you've dealt a Critical Strike Recently", statOrder = { 4897 }, level = 25, group = "AttackSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 250, 0, 0 }, modTags = { "attack", "speed" }, }, + ["AbyssCastSpeedIfCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Abuse", "(5-7)% increased Cast Speed if you've dealt a Critical Strike Recently", statOrder = { 5468 }, level = 25, group = "CastSpeedIfCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "caster", "speed" }, }, + ["AbyssCriticalStrikeChanceIfNoCriticalStrikeDealtRecentlyJewel1"] = { type = "Suffix", affix = "of Preparation", "(20-30)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5927 }, level = 1, group = "CriticalStrikeChanceIfNoCriticalStrikeDealtRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 250, 500, 0, 0 }, modTags = { "critical" }, }, + ["AbyssMinionAttackAndCastSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of Rallying", "Minions have (6-8)% increased Attack and Cast Speed if you or your Minions have Killed Recently", statOrder = { 9270 }, level = 1, group = "MinionAttackAndCastSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_summoner", "default", }, weightVal = { 0, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AbyssSpellDodgeAndDodgeChanceIfHitRecentlyJewel1"] = { type = "Suffix", affix = "of Readiness", "+2% Chance to Block Spell Damage if you were Damaged by a Hit Recently", statOrder = { 5651 }, level = 1, group = "SpellBlockChanceIfHitRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 250, 0 }, modTags = { "block" }, }, + ["AbyssMovementSpeedIfEnemySlainRecentlyJewel1"] = { type = "Suffix", affix = "of the Raider", "(2-4)% increased Movement Speed if you've Killed Recently", statOrder = { 4261 }, level = 1, group = "MovementSpeedIfEnemySlainRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 250, 500, 250, 0, 0 }, modTags = { "speed" }, }, + ["AbyssChanceToBlockIfDamagedRecentlyJewel1_"] = { type = "Suffix", affix = "of Guarding", "+(3-4)% Chance to Block Attack Damage if you were Damaged by a Hit Recently", statOrder = { 3216 }, level = 1, group = "ChanceToBlockIfDamagedRecently", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 250, 250, 250, 0 }, modTags = { "block" }, }, + ["AbyssChanceToGainOnslaughtOnKillJewel1"] = { type = "Suffix", affix = "of Onslaught", "(3-5)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 50, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AbyssChanceToGainOnslaughtOnKillJewel2"] = { type = "Suffix", affix = "of Onslaught", "(6-8)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 80, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "default", }, weightVal = { 0, 0, 0 }, modTags = { }, }, + ["AbyssChancetoGainPhasingOnKillJewel1"] = { type = "Suffix", affix = "of Phasing", "(3-5)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 50, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["AbyssChancetoGainPhasingOnKillJewel2"] = { type = "Suffix", affix = "of Phasing", "(6-8)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 80, group = "ChancetoGainPhasingOnKill", weightKey = { "abyss_jewel_ranged", "abyss_jewel_caster", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AbyssChanceToGainUnholyMightOnKillAbyssJewel1"] = { type = "Suffix", affix = "of Unholy Might", "(2-3)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3083 }, level = 60, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AbyssChanceToGainUnholyMightOnKillAbyssJewel2_"] = { type = "Suffix", affix = "of Unholy Might", "(4-5)% chance to Gain Unholy Might for 4 seconds on Melee Kill", statOrder = { 3083 }, level = 84, group = "ChanceToGainUnholyMightOnKillAbyss", weightKey = { "abyss_jewel_melee", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AbyssSelfCurseEffectOnConsecratedGroundJewel1__"] = { type = "Suffix", affix = "of the Sanctum", "(10-15)% reduced Effect of Curses on you while on Consecrated Ground", statOrder = { 5996 }, level = 84, group = "EnchantmentConsecratedGround", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "caster", "curse" }, }, + ["AbyssAvoidElementalAilmentsWhileElusiveJewel1"] = { type = "Suffix", affix = "of Escape", "(8-10)% chance to Avoid Elemental Ailments while you have Elusive", statOrder = { 4941 }, level = 84, group = "EnchantmentElusive", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 500, 100, 100, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AbyssHinderedEnemiesLifeRegenerationRateJewel1"] = { type = "Suffix", affix = "of Enervation", "Enemies Hindered by you have (15-20)% reduced Life Regeneration rate", statOrder = { 6410 }, level = 84, group = "EnchantmentHinder", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["AbyssBlindedEnemiesCriticalStrikeChanceJewel1"] = { type = "Suffix", affix = "of Clouding", "Enemies Blinded by you have (15-20)% reduced Critical Strike Chance", statOrder = { 6404 }, level = 84, group = "EnchantmentBlind", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "critical" }, }, + ["AbyssWitheredEnemiesAllResistanceJewel1___"] = { type = "Suffix", affix = "of Languishing", "Enemies Withered by you have -2% to all Resistances", statOrder = { 6416 }, level = 84, group = "EnchantmentWither", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 100, 100, 500, 500, 0 }, modTags = { "damage" }, }, + ["AbyssMaimedEnemiesDamageOverTimeJewel1"] = { type = "Suffix", affix = "of Mangling", "Enemies Maimed by you take (4-5)% increased Damage Over Time", statOrder = { 6414 }, level = 84, group = "EnchantmentMaim", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 500, 100, 100, 0 }, modTags = { "damage" }, }, + ["AbyssIntimidatedEnemiesStunDurationJewel1"] = { type = "Suffix", affix = "of Daunting", "Enemies Intimidated by you have (10-15)% increased duration of stuns against them", statOrder = { 6413 }, level = 84, group = "EnchantmentIntimidate", weightKey = { "abyss_jewel_melee", "abyss_jewel_ranged", "abyss_jewel_caster", "abyss_jewel_summoner", "default", }, weightVal = { 500, 100, 100, 100, 0 }, modTags = { }, }, + ["DelveWeaponFirePenetration1h1_"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponFirePenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveJewelFirePenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveBodyArmourAvoidFire1_"] = { type = "Prefix", affix = "Subterranean", "(8-10)% chance to Avoid Fire Damage from Hits", statOrder = { 3373 }, level = 1, group = "FireDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "fire" }, }, + ["DelveGlovesFireDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Fire Damage", statOrder = { 1359 }, level = 1, group = "GlobalAddedFireDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveBootsSocketedFireGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Fire Gems", statOrder = { 167 }, level = 1, group = "LocalIncreaseSocketedFireGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "fire", "gem" }, }, + ["DelveRingFireLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Fire Damage Leeched as Life", statOrder = { 1670 }, level = 1, group = "FireDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["DelveHelmetEnemyFireResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Fire Resistance", statOrder = { 7914 }, level = 1, group = "NearbyEnemyFireDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "resistance" }, }, + ["DelveJewelryFireDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Fire Damage", statOrder = { 1357 }, level = 1, group = "FireDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["DelveWeaponColdPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponColdPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveJewelColdPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveBodyArmourAvoidCold1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Cold Damage from Hits", statOrder = { 3374 }, level = 1, group = "ColdDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "cold" }, }, + ["DelveGlovesColdDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (20-25) to (26-35) Cold Damage", statOrder = { 1368 }, level = 1, group = "GlobalAddedColdDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveBootsSocketedColdGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Cold Gems", statOrder = { 168 }, level = 1, group = "LocalIncreaseSocketedColdGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "gem" }, }, + ["DelveRingColdLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Cold Damage Leeched as Life", statOrder = { 1675 }, level = 1, group = "ColdDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "cold" }, }, + ["DelveHelmetEnemyColdResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Cold Resistance", statOrder = { 7912 }, level = 1, group = "NearbyEnemyColdDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "resistance" }, }, + ["DelveJewelryColdDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Cold Damage", statOrder = { 1366 }, level = 1, group = "ColdDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["DelveWeaponLightningPenetration1h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (5-7)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponLightningPenetration2h1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (12-15)% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveJewelLightningPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveBodyArmourAvoidLightning1"] = { type = "Prefix", affix = "Subterranean", "(6-10)% chance to Avoid Lightning Damage from Hits", statOrder = { 3375 }, level = 1, group = "LightningDamageAvoidance", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "elemental", "lightning" }, }, + ["DelveGlovesLightningDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds 1 to (48-60) Lightning Damage", statOrder = { 1379 }, level = 1, group = "GlobalAddedLightningDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveBootsSocketedLightningGemLevel1_"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Lightning Gems", statOrder = { 169 }, level = 1, group = "LocalIncreaseSocketedLightningGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "gem" }, }, + ["DelveRingLightningLeech1_"] = { type = "Prefix", affix = "Subterranean", "0.2% of Lightning Damage Leeched as Life", statOrder = { 1679 }, level = 1, group = "LightningDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "elemental", "lightning" }, }, + ["DelveHelmetEnemyLightningResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Lightning Resistance", statOrder = { 7916 }, level = 1, group = "NearbyEnemyLightningDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "resistance" }, }, + ["DelveJewelryLightningDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Lightning Damage", statOrder = { 1377 }, level = 1, group = "LightningDamagePercentagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["DelveWeaponIntimidateOnHit1"] = { type = "Suffix", affix = "of the Underground", "15% chance to Intimidate Enemies for 4 seconds on Hit", statOrder = { 7874 }, level = 1, group = "LocalChanceToIntimidateOnHit", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack" }, }, + ["DelveArmourPhysDamageTaken1"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_1"] = { type = "Suffix", affix = "of the Underground", "-(34-20) Physical Damage taken from Hits", statOrder = { 2235 }, level = 1, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_2"] = { type = "Suffix", affix = "of the Underground", "-(49-35) Physical Damage taken from Hits", statOrder = { 2235 }, level = 30, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveArmourPhysDamageTakenv2_3"] = { type = "Suffix", affix = "of the Underground", "-(75-50) Physical Damage taken from Hits", statOrder = { 2235 }, level = 60, group = "FlatPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveShieldPhysicalDamageReductionRating1"] = { type = "Prefix", affix = "Subterranean", "(3-5)% additional Physical Damage Reduction", statOrder = { 2273 }, level = 1, group = "ReducedPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical" }, }, + ["DelveBootsPhyiscalDamageReductionRatingWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% additional Physical Damage Reduction while moving", statOrder = { 4584 }, level = 1, group = "AdditionalPhysicalDamageReductionWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical" }, }, + ["DelveGlovesGlobalAddedPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "Adds (6-8) to (9-11) Physical Damage", statOrder = { 1265 }, level = 1, group = "GlobalAddedPhysicalDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveRingPhysicalLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Physical Damage Leeched as Life", statOrder = { 1666 }, level = 1, group = "PhysicalDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "physical" }, }, + ["DelveHelmetEnemyPhysicalDamageTakenAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies take 9% increased Physical Damage", statOrder = { 7918 }, level = 1, group = "NearbyEnemyPhysicalDamageTaken", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelryPhysicalDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Global Physical Damage", statOrder = { 1231 }, level = 1, group = "PhysicalDamagePercentPrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveJewelPhysicalDamageOverTimeTaken1"] = { type = "Prefix", affix = "Subterranean", "(1-2)% reduced Physical Damage taken over time", statOrder = { 5041 }, level = 1, group = "PhysicalDamageOverTimeTaken", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "physical" }, }, + ["DelveWeaponDespairOnHit1h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveWeaponDespairOnHit2h1"] = { type = "Suffix", affix = "of the Underground", "Curse Enemies with Despair on Hit", statOrder = { 2528 }, level = 1, group = "CurseOnHitDespair", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "caster", "curse" }, }, + ["DelveArmourChaosResistance1_"] = { type = "Prefix", affix = "Subterranean", "+(20-35)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistancePrefix", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "boots", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveBodyArmourChaosDegenResist1"] = { type = "Suffix", affix = "of the Underground", "+(30-40)% Chaos Resistance against Damage Over Time", statOrder = { 5734 }, level = 1, group = "ChaosResistanceAgainstDamageOverTime", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "quiver", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "chaos", "resistance" }, }, + ["DelveGlovesChaosDamageToSpells1"] = { type = "Prefix", affix = "Subterranean", "Adds (15-20) to (21-30) Chaos Damage", statOrder = { 1386 }, level = 1, group = "GlobalAddedChaosDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveBootsSocketedChaosGemLevel1"] = { type = "Prefix", affix = "Subterranean", "+2 to Level of Socketed Chaos Gems", statOrder = { 170 }, level = 1, group = "LocalIncreaseSocketedChaosGemLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos", "gem" }, }, + ["DelveRingChaosLeech1"] = { type = "Prefix", affix = "Subterranean", "0.2% of Chaos Damage Leeched as Life", statOrder = { 1682 }, level = 1, group = "ChaosDamageLifeLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "resource", "life", "chaos" }, }, + ["DelveHelmetEnemyChaosResistanceAura1"] = { type = "Suffix", affix = "of the Underground", "Nearby Enemies have -9% to Chaos Resistance", statOrder = { 7911 }, level = 1, group = "NearbyEnemyChaosDamageResistance", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["DelveJewelryChaosDamage1"] = { type = "Prefix", affix = "Subterranean", "(20-30)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamagePrefix", weightKey = { "abyss_jewel", "jewel", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveJewelChaosDamage1"] = { type = "Suffix", affix = "of the Underground", "(13-19)% increased Chaos Damage", statOrder = { 1385 }, level = 1, group = "IncreasedChaosDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["DelveWeaponDamageOnFullLife1h1__"] = { type = "Suffix", affix = "of the Underground", "(50-60)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveWeaponDamageOnFullLife2h1"] = { type = "Suffix", affix = "of the Underground", "(100-120)% increased Damage when on Full Life", statOrder = { 6074 }, level = 1, group = "DamageOnFullLife", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage" }, }, + ["DelveBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(25-40) to maximum Life", "(3-5)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveNonBodyArmourLife1"] = { type = "Prefix", affix = "Subterranean", "+(15-25) to maximum Life", "(2-3)% increased maximum Life", statOrder = { 1569, 1571 }, level = 1, group = "LifeAndPercentLife", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "gloves", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "life" }, }, + ["DelveArmourLifeRegen1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "abyss_jewel", "jewel", "quiver", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "resource", "life" }, }, + ["DelveJewelryFlaskLifeRecovery1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Life Recovery from Flasks", statOrder = { 2059 }, level = 1, group = "GlobalFlaskLifeRecovery", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "flask", "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "sceptre", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelLifeRegeneration1"] = { type = "Prefix", affix = "Subterranean", "Regenerate 0.3% of Life per second", statOrder = { 1944 }, level = 1, group = "LifeRegenerationRatePercentage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life" }, }, + ["DelveWeaponArmourIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "staff", "mace", "axe", "sword", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelArmourIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Armour if you've Hit an Enemy Recently", statOrder = { 9652 }, level = 1, group = "PhysicalDamageReductionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, + ["DelveWeaponEvasionIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "+500 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "axe", "sword", "dagger", "claw", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEvasionIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "+1000 to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "axe", "sword", "bow", "default", }, weightVal = { 0, 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelEvasionIfYouHitRecently1"] = { type = "Suffix", affix = "of the Underground", "+(250-300) to Evasion Rating if Hit an Enemy Recently", statOrder = { 6489 }, level = 1, group = "EvasionRatingIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "dagger", "claw", "wand", "sceptre", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveWeaponEnergyShieldRegenIfYouHitRecently2h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "abyss_jewel", "jewel", "staff", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelEnergyShieldRegenIfYouHitRecently1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.3% of Energy Shield per second if you've Hit an Enemy Recently", statOrder = { 6458 }, level = 1, group = "EnergyShieldRegenerationRatePerMinuteIfYouHaveHitAnEnemyRecently", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmour1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour", statOrder = { 1542 }, level = 1, group = "LocalPhysicalDamageReductionRatingPercentSuffix", weightKey = { "abyss_jewel", "jewel", "str_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourEvasion1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion Rating", statOrder = { 1550 }, level = 1, group = "LocalEvasionRatingIncreasePercentSuffix", weightKey = { "abyss_jewel", "jewel", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Energy Shield", statOrder = { 1560 }, level = 1, group = "LocalEnergyShieldPercentSuffix", weightKey = { "abyss_jewel", "jewel", "int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourArmourAndEvasion1_"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Evasion", statOrder = { 1553 }, level = 1, group = "LocalArmourAndEvasionSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion" }, }, + ["DelveArmourArmourAndEnergyShield1__"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour and Energy Shield", statOrder = { 1552 }, level = 1, group = "LocalArmourAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "energy_shield" }, }, + ["DelveArmourEvasionAndEnergyShield1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Evasion and Energy Shield", statOrder = { 1554 }, level = 1, group = "LocalEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "evasion", "energy_shield" }, }, + ["DelveArmourDefences1"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Armour, Evasion and Energy Shield", statOrder = { 1555 }, level = 1, group = "LocalArmourAndEvasionAndEnergyShieldSuffix", weightKey = { "abyss_jewel", "jewel", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "defences", "armour", "evasion", "energy_shield" }, }, + ["DelveArmourQuality"] = { type = "Suffix", affix = "of the Underground", "+(10-20)% to Quality", statOrder = { 7950 }, level = 1, group = "LocalItemQuality", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEnergyShieldRegen"] = { type = "Suffix", affix = "of the Underground", "Regenerate 1% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "EnergyShieldRegenerationPerMinute", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourEnergyShieldLeechSpells_"] = { type = "Suffix", affix = "of the Underground", "0.3% of Spell Damage Leeched as Energy Shield", statOrder = { 1722 }, level = 1, group = "EnergyShieldLeechPermyriad", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveArmourSpellBlock__"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 1, group = "SpellBlockPercentage", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "gloves", "int_armour", "dex_int_armour", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourDodgeAndSpellDodge_"] = { type = "Suffix", affix = "of the Underground", "+(4-6)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 1, group = "ChanceToDodgeAndSpellDodge", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourBlindChance"] = { type = "Suffix", affix = "of the Underground", "(4-6)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "GlobalChanceToBlindOnHit", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveArmourEvasionOnFullLife"] = { type = "Suffix", affix = "of the Underground", "(25-50)% increased Global Evasion Rating when on Full Life", statOrder = { 6496 }, level = 1, group = "GlobalEvasionRatingPercentOnFullLife", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "dex_armour", "dex_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveArmourDoubleArmourEffectOnHit"] = { type = "Suffix", affix = "of the Underground", "(10-20)% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "defences", "armour" }, }, + ["DelveArmourAttackBlock"] = { type = "Suffix", affix = "of the Underground", "(3-4)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 1, group = "BlockPercent", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "boots", "helmet", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { "block" }, }, + ["DelveArmourFortifyEffect"] = { type = "Suffix", affix = "of the Underground", "+(3-5) to maximum Fortification", statOrder = { 9117 }, level = 1, group = "FortifyEffect", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "gloves", "boots", "str_armour", "str_int_armour", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveJewelryIncreasedEnergyShieldFromBodyArmour1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased Energy Shield from Equipped Body Armour", statOrder = { 9133 }, level = 1, group = "MaximumEnergyShieldFromBodyArmour", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "energy_shield" }, }, + ["DelveJewelryChanceWhenHitForArmourToBeDoubled1"] = { type = "Suffix", affix = "of the Underground", "20% chance to Defend with 200% of Armour", statOrder = { 5671 }, level = 1, group = "ChanceWhenHitForArmourToBeDoubled", weightKey = { "abyss_jewel", "jewel", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 0 }, modTags = { "defences", "armour" }, }, + ["DelveJewelryChanceToEvade"] = { type = "Suffix", affix = "of the Underground", "+(1-2)% chance to Evade Attack Hits", statOrder = { 5673 }, level = 1, group = "AdditionalChanceToEvade", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "defences", "evasion" }, }, + ["DelveJewelGlobalDefences1"] = { type = "Prefix", affix = "Subterranean", "(4-6)% increased Global Defences", statOrder = { 2833 }, level = 1, group = "AllDefences", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "defences" }, }, + ["DelveWeaponLocalChanceForPoisonDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Poisons inflicted with this Weapon to deal 100% more Damage", statOrder = { 7871 }, level = 1, group = "LocalChanceForPoisonDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "chaos_damage", "poison", "damage", "chaos", "attack", "ailment" }, }, + ["DelveWeaponLocalChanceForBleedingDamage100FinalInflictedWithThisWeapon1"] = { type = "Prefix", affix = "Subterranean", "60% chance for Bleeding inflicted with this Weapon to deal 100% more Damage", statOrder = { 7870 }, level = 1, group = "LocalChanceForBleedingDamage100FinalInflictedWithThisWeapon", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "bleed", "damage", "physical", "attack", "ailment" }, }, + ["DelveArmourAvoidPoison1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["DelveArmourAvoidBleeding1"] = { type = "Suffix", affix = "of the Underground", "50% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "abyss_jewel", "jewel", "shield", "helmet", "boots", "body_armour", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["DelveJewelryAilmentDamage1_"] = { type = "Suffix", affix = "of the Underground", "(30-40)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "belt", "default", }, weightVal = { 0, 0, 1600, 1600, 1600, 1600, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveJewelAilmentDamage1__"] = { type = "Suffix", affix = "of the Underground", "(15-20)% increased Damage with Ailments", statOrder = { 4983 }, level = 1, group = "AilmentDamage", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "damage", "ailment" }, }, + ["DelveGlovesAddedPhysicalDamageVsPoisonedEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Poisoned Enemies", statOrder = { 9250 }, level = 1, group = "AddedPhysicalDamageVsPoisonedEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveGlovesAddedPhysicalDamageVsBleedingEnemies1"] = { type = "Prefix", affix = "Subterranean", "Adds (7-11) to (12-18) Physical Damage against Bleeding Enemies", statOrder = { 2494 }, level = 1, group = "AddedPhysicalDamageVsBleedingEnemies", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 1600, 0 }, modTags = { "physical_damage", "damage", "physical" }, }, + ["DelveWeaponLocalAttackReduceEnemyElementalResistance1h1"] = { type = "Prefix", affix = "Subterranean", "Attacks with this Weapon Penetrate (9-12)% Elemental Resistances", statOrder = { 3761 }, level = 1, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "abyss_jewel", "jewel", "weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["DelveWeaponElementalDamage1h1"] = { type = "Prefix", affix = "Subterranean", "(40-60)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamage2h1"] = { type = "Prefix", affix = "Subterranean", "(80-120)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h1"] = { type = "Prefix", affix = "Subterranean", "(19-25)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h2_"] = { type = "Prefix", affix = "Subterranean", "(26-32)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h3"] = { type = "Prefix", affix = "Subterranean", "(33-39)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_1h4"] = { type = "Prefix", affix = "Subterranean", "(40-49)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h1"] = { type = "Prefix", affix = "Subterranean", "(37-50)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h2__"] = { type = "Prefix", affix = "Subterranean", "(51-65)% increased Elemental Damage", statOrder = { 1980 }, level = 25, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h3"] = { type = "Prefix", affix = "Subterranean", "(66-79)% increased Elemental Damage", statOrder = { 1980 }, level = 50, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponElementalDamagev2_2h4_"] = { type = "Prefix", affix = "Subterranean", "(80-94)% increased Elemental Damage", statOrder = { 1980 }, level = 75, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveArmourElementalAilmentDuration1___"] = { type = "Suffix", affix = "of the Underground", "(20-30)% reduced Elemental Ailment Duration on you", statOrder = { 1867 }, level = 1, group = "SelfStatusAilmentDuration", weightKey = { "abyss_jewel", "jewel", "shield", "body_armour", "helmet", "gloves", "boots", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { "elemental", "ailment" }, }, + ["DelveJewelryElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates (3-5)% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "quiver", "amulet", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveRingElementalDamage1"] = { type = "Suffix", affix = "of the Underground", "(25-30)% increased Elemental Damage", statOrder = { 1980 }, level = 1, group = "ElementalDamagePercent", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveJewelElementalPenetration1"] = { type = "Prefix", affix = "Subterranean", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 1600, 1600, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["DelveWeaponSocketedSpellsDamageFinal1h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveWeaponSocketedSpellsDamageFinal2h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Spell Damage", statOrder = { 565 }, level = 1, group = "SocketedSpellsDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster_damage", "damage", "caster", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByArcaneSurge1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Arcane Surge", statOrder = { 226 }, level = 1, group = "SupportedByArcaneSurge", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 600, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesSocketedSkillsCastSpeed1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Cast Speed", statOrder = { 562 }, level = 1, group = "SocketedSkillsCastSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "caster", "speed", "gem" }, }, + ["DelveArmourSocketedSpellsManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Spells have 20% reduced Mana Cost", statOrder = { 568 }, level = 1, group = "SocketedSpellsManaCost", weightKey = { "abyss_jewel", "jewel", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "caster", "gem" }, }, + ["DelveJewelAvoidInterruptionWhileCasting1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to Ignore Stuns while Casting", statOrder = { 1898 }, level = 1, group = "AvoidInterruptionWhileCasting", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { }, }, + ["DelveWeaponSocketedAttacksDamageFinal1h1"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 40% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveWeaponSocketedAttacksDamageFinal2h1_"] = { type = "Prefix", affix = "Subterranean", "Socketed Skills deal 20% more Attack Damage", statOrder = { 546 }, level = 1, group = "SocketedAttacksDamageFinal", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, weightMultiplierKey = { "attack_dagger", "dagger", "warstaff", "staff", "sceptre", "wand_can_roll_caster_modifiers", "default", }, weightMultiplierVal = { 100, 50, 100, 50, 50, 50, 100 }, tags = { "has_attack_mod", }, modTags = { "skill", "damage", "attack", "gem" }, }, + ["DelveBodyArmourSocketedSkillsSupportedByMaim1"] = { type = "Suffix", affix = "of the Underground", "Socketed Gems are Supported by Level 1 Maim", statOrder = { 331 }, level = 1, group = "SupportedByMaim", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "support", "gem" }, }, + ["DelveGlovesLocalDisplaySocketedSkillsAttackSpeed1"] = { type = "Suffix", affix = "of the Underground", "Socketed Skills have 18% increased Attack Speed", statOrder = { 561 }, level = 1, group = "SocketedSkillsAttackSpeed", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "attack", "speed", "gem" }, }, + ["DelveArmourLocalDisplaySocketedAttacksManaCost1_"] = { type = "Suffix", affix = "of the Underground", "Socketed Attacks have -15 to Total Mana Cost", statOrder = { 549 }, level = 1, group = "SocketedAttacksManaCost", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "boots", "helmet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "skill", "resource", "mana", "attack", "gem" }, }, + ["DelveJewelAttackLeech1"] = { type = "Suffix", affix = "of the Underground", "0.3% of Attack Damage Leeched as Life", statOrder = { 1664 }, level = 1, group = "LifeLeechFromAttacksPermyriad", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently1h1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.4% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8199 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponManaRegeneratedIfYouveHitRecently2h1_"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.8% of Mana per second if you've Hit an Enemy Recently", statOrder = { 8199 }, level = 1, group = "ManaRegeneratedIfYouveHitRecently", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLife1_"] = { type = "Suffix", affix = "of the Underground", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 0, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBodyDamageRemovedFromManaBeforeLifeNew1"] = { type = "Prefix", affix = "Subterranean", "(5-10)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 1, group = "DamageRemovedFromManaBeforeLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "life", "mana" }, }, + ["DelveBootsManaRegenerationRateWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "(50-70)% increased Mana Regeneration Rate while moving", statOrder = { 8211 }, level = 1, group = "ManaRegenerationRateWhileMoving", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveGlovesManaGainPerTarget1"] = { type = "Suffix", affix = "of the Underground", "Gain (2-4) Mana per Enemy Hit with Attacks", statOrder = { 1744 }, level = 1, group = "ManaGainPerTarget", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["DelveHelmBaseManaRegeneration1"] = { type = "Suffix", affix = "of the Underground", "Regenerate 0.5% of Mana per second", statOrder = { 1581 }, level = 1, group = "BaseManaRegeneration", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveAmuletBeltManaRecoveryRate1"] = { type = "Suffix", affix = "of the Underground", "(8-12)% increased Mana Recovery rate", statOrder = { 1586 }, level = 1, group = "ManaRecoveryRate", weightKey = { "abyss_jewel", "jewel", "belt", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveRingManaCostReduction1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% reduced Mana Cost of Skills", statOrder = { 1883 }, level = 1, group = "ManaCostReduction", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveQuiverIncreasedMana1"] = { type = "Suffix", affix = "of the Underground", "(20-30)% increased maximum Mana", statOrder = { 1580 }, level = 1, group = "MaximumManaIncreasePercent", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveJewelDamageTakenGainedAsMana1"] = { type = "Suffix", affix = "of the Underground", "(2-3)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 1, group = "PercentDamageGoesToMana", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill1h1_"] = { type = "Suffix", affix = "of the Underground", "10% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { }, }, + ["DelveWeaponChanceToGainOnslaughtOnKill2h1"] = { type = "Suffix", affix = "of the Underground", "20% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 2993 }, level = 1, group = "ChanceToGainOnslaughtOnKill", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { }, }, + ["DelveBodyFrenzyChargeWhenHit1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain a Frenzy Charge when Hit", statOrder = { 4530 }, level = 1, group = "FrenzyChargeWhenHit", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveBootsMovementSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(4-6)% increased Movement Speed if you've Hit an Enemy Recently", statOrder = { 9418 }, level = 1, group = "MovementSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveGlovesAttackAndCastSpeedIfHitRecently1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% increased Attack and Cast Speed if you've Hit an Enemy Recently", statOrder = { 4815 }, level = 1, group = "AttackAndCastSpeedIfHitRecently", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["DelveHelmIgnoreArmourMovementPenalties1"] = { type = "Suffix", affix = "of the Underground", "Ignore all Movement Penalties from Armour", statOrder = { 2181 }, level = 1, group = "IgnoreArmourMovementPenalties", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "speed" }, }, + ["DelveAmuletCannotBeChilledOrFrozenWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Chilled or Frozen while moving", statOrder = { 5396 }, level = 1, group = "CannotBeChilledOrFrozenWhileMoving", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["DelveBeltChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(15-20)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "abyss_jewel", "jewel", "belt", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "flask" }, }, + ["DelveRingCannotBeShockedWhileMoving1"] = { type = "Suffix", affix = "of the Underground", "Cannot be Shocked or Ignited while moving", statOrder = { 5412 }, level = 1, group = "CannotBeShockedOrIgnitedWhileMoving", weightKey = { "abyss_jewel", "jewel", "ring", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["DelveQuiverFrenzyChargeOnHittingRareOrUnique1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain a Frenzy Charge when you Hit a Rare or Unique Enemy", statOrder = { 6760 }, level = 1, group = "FrenzyChargeOnHittingRareOrUnique", weightKey = { "abyss_jewel", "jewel", "quiver", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "frenzy_charge" }, }, + ["DelveJewelChanceToGainOnslaughtOnFlaskUse1"] = { type = "Suffix", affix = "of the Underground", "(5-10)% chance to gain Onslaught when you use a Flask", statOrder = { 5693 }, level = 1, group = "ChanceToGainOnslaughtOnFlaskUse", weightKey = { "jewel", "abyss_jewel", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "flask" }, }, + ["DelveWeaponIncreasedDamageFromAuras1h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 2% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponIncreasedDamageFromAuras2h1"] = { type = "Suffix", affix = "of the Underground", "Auras from your Skills grant 4% increased Damage to you and Allies", statOrder = { 3458 }, level = 1, group = "IncreasedDamageFromAuras", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "aura" }, }, + ["DelveWeaponMinionDamage1h1_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (30-44)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (45-59)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h3___"] = { type = "Prefix", affix = "Subterranean", "Minions deal (60-74)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage1h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (75-80)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (51-70)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h2"] = { type = "Prefix", affix = "Subterranean", "Minions deal (71-90)% increased Damage", statOrder = { 1973 }, level = 25, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h3_"] = { type = "Prefix", affix = "Subterranean", "Minions deal (91-110)% increased Damage", statOrder = { 1973 }, level = 50, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 1000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveWeaponMinionDamage2h4"] = { type = "Prefix", affix = "Subterranean", "Minions deal (111-130)% increased Damage", statOrder = { 1973 }, level = 75, group = "MinionDamageOnWeapon", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 500, 0 }, modTags = { "damage", "minion" }, }, + ["DelveGlovesMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (20-30)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "jewel", "gloves", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveJewelryMinionRunSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (15-30)% increased Movement Speed", statOrder = { 1769 }, level = 74, group = "MinionRunSpeed", weightKey = { "abyss_jewel", "jewel", "quiver", "ring", "amulet", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "speed", "minion" }, }, + ["DelveArmourMinionLife1"] = { type = "Suffix", affix = "of the Underground", "Minions have (20-30)% increased maximum Life", statOrder = { 1766 }, level = 74, group = "MinionLife", weightKey = { "abyss_jewel", "jewel", "body_armour", "shield", "belt", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 0 }, modTags = { "resource", "life", "minion" }, }, + ["DelveBootsAdditionalSpectre1_"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of all Raise Spectre Gems", statOrder = { 1616 }, level = 1, group = "MinionGlobalSkillLevel", weightKey = { "abyss_jewel", "jewel", "boots", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "skill", "minion", "gem" }, }, + ["DelveBodyArmourAuraEffect1_"] = { type = "Suffix", affix = "of the Underground", "(20-25)% increased effect of Non-Curse Auras from your Skills", statOrder = { 3566 }, level = 1, group = "AuraEffect", weightKey = { "abyss_jewel", "jewel", "body_armour", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "aura" }, }, + ["DelveHelmetReducedManaReserved1"] = { type = "Suffix", affix = "of the Underground", "(8-10)% increased Mana Reservation Efficiency of Skills", statOrder = { 2232 }, level = 1, group = "ReducedReservation", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveHelmetManaReservationEfficiency1"] = { type = "Suffix", affix = "of the Underground", "10% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 1, group = "ManaReservationEfficiency", weightKey = { "abyss_jewel", "jewel", "helmet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "resource", "mana" }, }, + ["DelveAbyssJewelMinionDamage1"] = { type = "Prefix", affix = "Subterranean", "Minions deal (14-16)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "abyss_jewel", "default", }, weightVal = { 2000, 0 }, modTags = { "damage", "minion" }, }, + ["DelveJewelMinionAttackAndCastSpeed1"] = { type = "Suffix", affix = "of the Underground", "Minions have (4-6)% increased Attack Speed", "Minions have (4-6)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 1, group = "MinionAttackAndCastSpeed", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["DelveStrengthGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Strength Gems", statOrder = { 158 }, level = 1, group = "DelveStrengthGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 750, 1600, 750, 750, 1000, 1000, 750, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveDexterityGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Dexterity Gems", statOrder = { 160 }, level = 1, group = "DelveDexterityGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 750, 750, 750, 1000, 1000, 1600, 1000, 1000, 750, 750, 750, 1600, 1000, 750, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveIntelligenceGemLevel1"] = { type = "Suffix", affix = "of the Underground", "+1 to Level of Socketed Intelligence Gems", statOrder = { 161 }, level = 1, group = "DelveIntelligenceGemLevel", weightKey = { "abyss_jewel", "jewel", "staff", "sceptre", "mace", "axe", "sword", "bow", "dagger", "claw", "wand", "str_armour", "int_armour", "dex_armour", "str_dex_armour", "str_int_armour", "dex_int_armour", "str_dex_int_armour", "unset_ring", "default", }, weightVal = { 0, 0, 1000, 1000, 750, 750, 750, 750, 1000, 1000, 1600, 750, 1600, 750, 750, 1000, 1000, 1000, 1000, 0 }, modTags = { "attribute", "gem" }, }, + ["DelveAbyssJewelSocket1"] = { type = "Suffix", affix = "of the Underground", "Has 1 Abyssal Socket", statOrder = { 68 }, level = 1, group = "AbyssJewelSocket", weightKey = { "abyss_jewel", "jewel", "weapon", "helmet", "boots", "gloves", "body_armour", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 2000, 0 }, modTags = { }, }, + ["DelveWeaponVaalSoulCost1h1_"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 20% reduced Souls Per Use", statOrder = { 9486 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "one_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveWeaponVaalSoulCost2h1"] = { type = "Suffix", affix = "of the Underground", "Non-Aura Vaal Skills require 40% reduced Souls Per Use", statOrder = { 9486 }, level = 1, group = "VaalSoulCost", weightKey = { "abyss_jewel", "jewel", "two_hand_weapon", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveArmourVaalSoulsOnKill1_"] = { type = "Suffix", affix = "of the Underground", "(5-8)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "helmet", "body_armour", "boots", "shield", "default", }, weightVal = { 0, 0, 2000, 2000, 2000, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveJewelVaalSoulsOnKill1"] = { type = "Suffix", affix = "of the Underground", "(3-5)% chance to gain an additional Vaal Soul on Kill", statOrder = { 3104 }, level = 1, group = "AdditionalVaalSoulOnKill", weightKey = { "abyss_jewel", "jewel", "default", }, weightVal = { 2000, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveGlovesVaalSkillCriticalChance1"] = { type = "Suffix", affix = "of the Underground", "(80-120)% increased Vaal Skill Critical Strike Chance", statOrder = { 3107 }, level = 1, group = "VaalSkillCriticalStrikeChance", weightKey = { "abyss_jewel", "jewel", "quiver", "gloves", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "critical", "vaal" }, }, + ["DelveAmuletVaalSkillDuration1"] = { type = "Suffix", affix = "of the Underground", "Vaal Skills have (15-25)% increased Skill Effect Duration", statOrder = { 3105 }, level = 1, group = "VaalSkillDuration", weightKey = { "abyss_jewel", "jewel", "amulet", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "vaal" }, }, + ["DelveJewelryVaalSkillDamage1"] = { type = "Suffix", affix = "of the Underground", "(20-40)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "abyss_jewel", "jewel", "belt", "ring", "default", }, weightVal = { 0, 0, 2000, 2000, 0 }, modTags = { "damage", "vaal" }, }, } \ No newline at end of file diff --git a/src/Data/ModJewelCharm.lua b/src/Data/ModJewelCharm.lua index e30784a1fe..b1d6219c98 100644 --- a/src/Data/ModJewelCharm.lua +++ b/src/Data/ModJewelCharm.lua @@ -2,246 +2,246 @@ -- Item data (c) Grinding Gear Games return { - ["AnimalCharmMovementSpeedCannotBeBelowBase"] = { type = "Prefix", affix = "Juggernaut's", "Movement Speed cannot be modified to below Base Value", statOrder = { 3201 }, level = 70, group = "AnimalCharmMovementSpeedCannotBeBelowBase", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of the Juggernaut", "2% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4753 }, level = 81, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, - ["AnimalCharmArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of the Juggernaut", "3% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4753 }, level = 83, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 10, 0 }, modTags = { }, }, - ["AnimalCharmEnduranceChargeOnStun1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5692 }, level = 1, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmEnduranceChargeOnStun2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5692 }, level = 60, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAreaOfEffectPerEnduranceCharge1"] = { type = "Prefix", affix = "Juggernaut's", "(3-4)% increased Area of Effect per Endurance Charge", statOrder = { 4738 }, level = 1, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmAreaOfEffectPerEnduranceCharge2"] = { type = "Prefix", affix = "Juggernaut's", "(5-6)% increased Area of Effect per Endurance Charge", statOrder = { 4738 }, level = 60, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmEnchangeChargeWhenHit1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2756 }, level = 1, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmEnchangeChargeWhenHit2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2756 }, level = 60, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmChaosResistancePerEnduranceCharge1"] = { type = "Suffix", affix = "of the Juggernaut", "+(2-3)% to Chaos Resistance per Endurance Charge", statOrder = { 5744 }, level = 1, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmChaosResistancePerEnduranceCharge2"] = { type = "Suffix", affix = "of the Juggernaut", "+(4-5)% to Chaos Resistance per Endurance Charge", statOrder = { 5744 }, level = 60, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmLIfeRegenerationRate1"] = { type = "Suffix", affix = "of the Juggernaut", "(10-15)% increased Life Regeneration rate", statOrder = { 1582 }, level = 45, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmLIfeRegenerationRate2"] = { type = "Suffix", affix = "of the Juggernaut", "(16-20)% increased Life Regeneration rate", statOrder = { 1582 }, level = 72, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmTotemTauntEnemiesWhenSummoned"] = { type = "Suffix", affix = "of the Chieftain", "Totems Taunt Enemies around them for 2 seconds when Summoned", statOrder = { 10407 }, level = 45, group = "AnimalCharmTotemTauntEnemiesWhenSummoned", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmTotemRecoup1"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (5-7)% of Damage Taken by your Totems as Life", statOrder = { 9835 }, level = 1, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmTotemRecoup2"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (8-12)% of Damage Taken by your Totems as Life", statOrder = { 9835 }, level = 60, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmFireExplode"] = { type = "Prefix", affix = "Chieftain's", "Enemies you or your Totems Kill have 1% chance to Explode, dealing 250% of their maximum Life as Fire Damage", statOrder = { 6520 }, level = 70, group = "AnimalCharmFireExplode", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmAshOnHittingRareUniqueEnemy1"] = { type = "Prefix", affix = "Chieftain's", "(5-10)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4699 }, level = 45, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAshOnHittingRareUniqueEnemy2"] = { type = "Prefix", affix = "Chieftain's", "(11-20)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4699 }, level = 72, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmStrengthPercent1"] = { type = "Prefix", affix = "Chieftain's", "(3-5)% increased Strength", statOrder = { 1189 }, level = 1, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmStrengthPercent2"] = { type = "Prefix", affix = "Chieftain's", "(6-8)% increased Strength", statOrder = { 1189 }, level = 60, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMaximumFireDamageResistance1"] = { type = "Suffix", affix = "of the Chieftain", "+1% to maximum Fire Resistance", statOrder = { 1628 }, level = 45, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMaximumFireDamageResistance2"] = { type = "Suffix", affix = "of the Chieftain", "+2% to maximum Fire Resistance", statOrder = { 1628 }, level = 72, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmIgniteDurationOnSelf1"] = { type = "Suffix", affix = "of the Chieftain", "(20-30)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmIgniteDurationOnSelf2"] = { type = "Suffix", affix = "of the Chieftain", "(31-50)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 60, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmStunImmuneWith25Rage"] = { type = "Suffix", affix = "of the Berserker", "Cannot be Stunned while you have at least 25 Rage", statOrder = { 9790 }, level = 45, group = "AnimalCharmStunImmuneWith25Rage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAddedPhysicalDamageIfCritRecently1"] = { type = "Prefix", affix = "Berserker's", "Adds (5-7) to (14-17) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9251 }, level = 1, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmAddedPhysicalDamageIfCritRecently2"] = { type = "Prefix", affix = "Berserker's", "Adds (8-12) to (18-22) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9251 }, level = 60, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMaximumRage1"] = { type = "Prefix", affix = "Berserker's", "+(2-3) to Maximum Rage", statOrder = { 9784 }, level = 1, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmMaximumRage2"] = { type = "Prefix", affix = "Berserker's", "+(4-5) to Maximum Rage", statOrder = { 9784 }, level = 60, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmWarcriesGrantRage1"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (2-3) Rage per 5 Power if you have less than 25 Rage", statOrder = { 5076 }, level = 1, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmWarcriesGrantRage2"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (4-5) Rage per 5 Power if you have less than 25 Rage", statOrder = { 5076 }, level = 60, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmLeechPercentIsInstant1"] = { type = "Suffix", affix = "of the Berserker", "(3-5)% of Leech is Instant", statOrder = { 7343 }, level = 45, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmLeechPercentIsInstant2"] = { type = "Suffix", affix = "of the Berserker", "(6-8)% of Leech is Instant", statOrder = { 7343 }, level = 72, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmLeechIfKilledRecently1"] = { type = "Suffix", affix = "of the Berserker", "1% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 7350 }, level = 1, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmLeechIfKilledRecently2"] = { type = "Suffix", affix = "of the Berserker", "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 7350 }, level = 60, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmCorpseExplodeOnWarcry1"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (3-4)% of their Life as Physical Damage", statOrder = { 9446 }, level = 70, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmCorpseExplodeOnWarcry2"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (5-6)% of their Life as Physical Damage", statOrder = { 9446 }, level = 81, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["AnimalCharmStunImmuneWhileFortified"] = { type = "Suffix", affix = "of the Champion", "Cannot be Stunned while Fortified", statOrder = { 5430 }, level = 70, group = "AnimalCharmStunImmuneWhileFortified", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmTauntOnHitChance1"] = { type = "Prefix", affix = "Champion's", "(10-19)% chance to Taunt on Hit", statOrder = { 3435 }, level = 1, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmTauntOnHitChance2"] = { type = "Prefix", affix = "Champion's", "(20-30)% chance to Taunt on Hit", statOrder = { 3435 }, level = 60, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmBannersNoReservation"] = { type = "Prefix", affix = "Champion's", "Banner Skills have no Reservation", statOrder = { 4985 }, level = 45, group = "AnimalCharmBannersNoReservation", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmRecoverBannerStagesOnPlacingBanner1"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (10-15)% of the Valour consumed for that Banner", statOrder = { 9555 }, level = 1, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmRecoverBannerStagesOnPlacingBanner2"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (16-25)% of the Valour consumed for that Banner", statOrder = { 9555 }, level = 60, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmGainAdrenalineOnReachingLowLife"] = { type = "Prefix", affix = "Champion's", "Gain Adrenaline for 4 seconds when you reach Low Life", statOrder = { 6720 }, level = 70, group = "AnimalCharmGainAdrenalineOnReachingLowLife", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmImpaleLastsForExtraHits"] = { type = "Prefix", affix = "Champion's", "Impales you inflict last 1 additional Hit", statOrder = { 7260 }, level = 81, group = "AnimalCharmImpaleLastsForExtraHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 10, 10, 0 }, modTags = { }, }, - ["AnimalCharmFortifyOnMeleeHitChance1"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (5-10)% chance to Fortify", statOrder = { 2269 }, level = 45, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmFortifyOnMeleeHitChance2"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (11-20)% chance to Fortify", statOrder = { 2269 }, level = 72, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmBleedExplode1"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (2-3)% of", "their Maximum Life as Physical Damage", statOrder = { 3486, 3486.1 }, level = 70, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmBleedExplode2"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (4-5)% of", "their Maximum Life as Physical Damage", statOrder = { 3486, 3486.1 }, level = 81, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, - ["AnimalCharmBlindOnHitVsBleedingEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (10-19)% chance to Blind", statOrder = { 4846 }, level = 1, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmBlindOnHitVsBleedingEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (20-30)% chance to Blind", statOrder = { 4846 }, level = 60, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMaimOnHitVsBlindedEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (10-19)% chance to Maim", statOrder = { 4847 }, level = 1, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmMaimOnHitVsBlindedEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (20-30)% chance to Maim", statOrder = { 4847 }, level = 60, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmStunImmuneAgainstBlockedHits"] = { type = "Suffix", affix = "of the Gladiator", "Cannot be Stunned by Hits you Block", statOrder = { 5421 }, level = 45, group = "AnimalCharmStunImmuneAgainstBlockedHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMaximumBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 45, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMaximumBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1993 }, level = 72, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmOverwhelmIfBlockedinPast20Seconds"] = { type = "Prefix", affix = "Gladiator's", "Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds", statOrder = { 7174 }, level = 1, group = "AnimalCharmOverwhelmIfBlockedinPast20Seconds", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmArmourAndEvasionPerBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4763 }, level = 1, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmArmourAndEvasionPerBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4763 }, level = 60, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmAttackBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4)% Chance to Block Attack Damage", statOrder = { 2463 }, level = 1, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmAttackBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6)% Chance to Block Attack Damage", statOrder = { 2463 }, level = 60, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmAttackSpeedOnKillingRareUnique1"] = { type = "Prefix", affix = "Slayer's", "Gain (4-7)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6741 }, level = 1, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmAttackSpeedOnKillingRareUnique2"] = { type = "Prefix", affix = "Slayer's", "Gain (8-12)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6741 }, level = 60, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmPhysicalReflectImmune"] = { type = "Suffix", affix = "of the Slayer", "Cannot take Reflected Physical Damage", statOrder = { 5452 }, level = 45, group = "AnimalCharmPhysicalReflectImmune", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmStunImmuneWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "Cannot be Stunned while Leeching", statOrder = { 3217 }, level = 70, group = "AnimalCharmStunImmuneWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmUnaffectedbyBleedingWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "You are Unaffected by Bleeding while Leeching", statOrder = { 10453 }, level = 70, group = "AnimalCharmUnaffectedbyBleedingWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmOverkillLeech1"] = { type = "Suffix", affix = "of the Slayer", "(4-7)% of Overkill Damage is Leeched as Life", statOrder = { 3214 }, level = 1, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmOverkillLeech2"] = { type = "Suffix", affix = "of the Slayer", "(8-12)% of Overkill Damage is Leeched as Life", statOrder = { 3214 }, level = 60, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMaximumAmountPerLifeLeech1"] = { type = "Prefix", affix = "Slayer's", "(10-20)% increased Maximum Recovery per Life Leech", statOrder = { 1729 }, level = 45, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMaximumAmountPerLifeLeech2"] = { type = "Prefix", affix = "Slayer's", "(21-30)% increased Maximum Recovery per Life Leech", statOrder = { 1729 }, level = 72, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmAreaOfEffectIfKilledRecently1"] = { type = "Prefix", affix = "Slayer's", "(4-7)% increased Area of Effect if you've Killed Recently", statOrder = { 4224 }, level = 1, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmAreaOfEffectIfKilledRecently2"] = { type = "Prefix", affix = "Slayer's", "(8-12)% increased Area of Effect if you've Killed Recently", statOrder = { 4224 }, level = 60, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCullingStrike"] = { type = "Prefix", affix = "Slayer's", "Culling Strike", statOrder = { 2044 }, level = 45, group = "AnimalCharmCullingStrike", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmStrengthAndIntelligence1"] = { type = "Suffix", affix = "of the Inquisitor", "+(20-30) to Strength and Intelligence", statOrder = { 466 }, level = 1, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmStrengthAndIntelligence2"] = { type = "Suffix", affix = "of the Inquisitor", "+(31-40) to Strength and Intelligence", statOrder = { 466 }, level = 60, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect1"] = { type = "Prefix", affix = "Inquisitor's", "(20-30)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9502 }, level = 1, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect2"] = { type = "Prefix", affix = "Inquisitor's", "(31-40)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9502 }, level = 60, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmConsecratedGroundLingerDuration"] = { type = "Suffix", affix = "of the Inquisitor", "Effects of Consecrated Ground you create Linger for 2 seconds", statOrder = { 10688 }, level = 70, group = "AnimalCharmConsecratedGroundLingerDuration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmConsecratedGroundDamageTaken1"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (5-6)% increased Damage taken to Enemies", statOrder = { 5853 }, level = 45, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmConsecratedGroundDamageTaken2"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (7-10)% increased Damage taken to Enemies", statOrder = { 5853 }, level = 72, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmElementalPenetration1"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (3-4)% of Enemy Elemental Resistances", statOrder = { 3564 }, level = 1, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmElementalPenetration2"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (5-6)% of Enemy Elemental Resistances", statOrder = { 3564 }, level = 60, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmConsecratedGroundVsRareUnique1"] = { type = "Suffix", affix = "of the Inquisitor", "(10-19)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5908 }, level = 1, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmConsecratedGroundVsRareUnique2"] = { type = "Suffix", affix = "of the Inquisitor", "(20-30)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5908 }, level = 60, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeChanceIfNotCritRecently1"] = { type = "Prefix", affix = "Inquisitor's", "(50-70)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5932 }, level = 1, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeChanceIfNotCritRecently2"] = { type = "Prefix", affix = "Inquisitor's", "(71-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5932 }, level = 60, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmDamageRemovedFromManaBeforeLife1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 70, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmDamageRemovedFromManaBeforeLife2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage is taken from Mana before Life", statOrder = { 2704 }, level = 81, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, - ["AnimalCharmManaReservationEfficiency1"] = { type = "Prefix", affix = "Hierophant's", "(4-7)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 45, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmManaReservationEfficiency2"] = { type = "Prefix", affix = "Hierophant's", "(8-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 72, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmManaToAddAsExtraEnergyShield1"] = { type = "Suffix", affix = "of the Hierophant", "Gain (2-3)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2180 }, level = 1, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmManaToAddAsExtraEnergyShield2"] = { type = "Suffix", affix = "of the Hierophant", "Gain (4-5)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2180 }, level = 60, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmArcaneSurgeOnHit"] = { type = "Prefix", affix = "Hierophant's", "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", statOrder = { 6736 }, level = 70, group = "AnimalCharmArcaneSurgeOnHit", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge1"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (20-30)% reduced Effect on you while you have Arcane Surge", statOrder = { 4336 }, level = 1, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge2"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (31-40)% reduced Effect on you while you have Arcane Surge", statOrder = { 4336 }, level = 60, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6099 }, level = 1, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6099 }, level = 60, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMinimumEnduranceAndPowerCharges"] = { type = "Suffix", affix = "of the Hierophant", "+1 to Minimum Endurance Charges", "+1 to Minimum Power Charges", statOrder = { 1808, 1818 }, level = 70, group = "AnimalCharmMinimumEnduranceAndPowerCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmChanceToSummonTwoTotems1"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (20-30)% chance to Summon two Totems instead of one", statOrder = { 5728 }, level = 1, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmChanceToSummonTwoTotems2"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (31-50)% chance to Summon two Totems instead of one", statOrder = { 5728 }, level = 60, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmBlockChanceIfAttackedRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(4-5)% Chance to Block Attack Damage", statOrder = { 10635 }, level = 1, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmBlockChanceIfAttackedRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(6-8)% Chance to Block Attack Damage", statOrder = { 10635 }, level = 60, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmSpellBlockChanceIfCastSpellRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(4-5)% Chance to Block Spell Damage", statOrder = { 10636 }, level = 1, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmSpellBlockChanceIfCastSpellRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(6-8)% Chance to Block Spell Damage", statOrder = { 10636 }, level = 60, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmRemoveCursesAndAilmentsEvery10seconds"] = { type = "Suffix", affix = "of the Guardian", "Every 4 seconds, remove Curses and Ailments from you", statOrder = { 3790 }, level = 45, group = "AnimalCharmRemoveCursesAndAilmentsEvery10seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmReservedManaGrantedAsArmour1"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (3-4)% of your Reserved Mana to you and nearby Allies", statOrder = { 3788 }, level = 45, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmReservedManaGrantedAsArmour2"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (5-6)% of your Reserved Mana to you and nearby Allies", statOrder = { 3788 }, level = 72, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments"] = { type = "Suffix", affix = "of the Guardian", "Enemies in your Link Beams cannot apply Elemental Ailments", statOrder = { 7504 }, level = 45, group = "AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmLifeRegenerationForASecondEvery10Seconds1"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 10% of Life over one second", statOrder = { 3791 }, level = 1, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmLifeRegenerationForASecondEvery10Seconds2"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 20% of Life over one second", statOrder = { 3791 }, level = 60, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmNearbyEnemiesCannotGainCharges"] = { type = "Prefix", affix = "Guardian's", "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges", statOrder = { 3786 }, level = 45, group = "AnimalCharmNearbyEnemiesCannotGainCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby"] = { type = "Prefix", affix = "Guardian's", "While there are at least five nearby Allies, you and nearby Allies have Onslaught", statOrder = { 6929 }, level = 45, group = "AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmExposureExtraResistance1"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(5-4)% to the affected Resistance", statOrder = { 6527 }, level = 1, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmExposureExtraResistance2"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(7-6)% to the affected Resistance", statOrder = { 6527 }, level = 60, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAllDamageCanIgnite"] = { type = "Prefix", affix = "Elementalist's", "All Damage can Ignite", statOrder = { 4630 }, level = 81, group = "AnimalCharmAllDamageCanIgnite", weightKey = { "int_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, - ["AnimalCharmShockMinimumDamageIncrease1"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (5-7)%", statOrder = { 4447 }, level = 45, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmShockMinimumDamageIncrease2"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (8-10)%", statOrder = { 4447 }, level = 72, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmChillMinimumSlow1"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (3-4)%", statOrder = { 4445 }, level = 45, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmChillMinimumSlow2"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (5-6)%", statOrder = { 4445 }, level = 72, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmGolemBuffEffect1"] = { type = "Suffix", affix = "of the Elementalist", "(15-20)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 1, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmGolemBuffEffect2"] = { type = "Suffix", affix = "of the Elementalist", "(21-35)% increased Effect of Buffs granted by your Golems", statOrder = { 6898 }, level = 60, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmIgniteFreezeShockChance1"] = { type = "Prefix", affix = "Elementalist's", "(10-15)% chance to Freeze, Shock and Ignite", statOrder = { 2806 }, level = 1, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmIgniteFreezeShockChance2"] = { type = "Prefix", affix = "Elementalist's", "(16-25)% chance to Freeze, Shock and Ignite", statOrder = { 2806 }, level = 60, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmElementalReflectImmune"] = { type = "Suffix", affix = "of the Elementalist", "Cannot take Reflected Elemental Damage", statOrder = { 5451 }, level = 45, group = "AnimalCharmElementalReflectImmune", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmIgnoreHexproofEnemies"] = { type = "Prefix", affix = "Occultist's", "Your Hexes can affect Hexproof Enemies", statOrder = { 2605 }, level = 45, group = "AnimalCharmIgnoreHexproofEnemies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmChaosExplode1"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (6-10)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3311 }, level = 70, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmChaosExplode2"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (11-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3311 }, level = 81, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["AnimalCharmAreaofEffectPerPowerCharge1"] = { type = "Prefix", affix = "Occultist's", "(2-3)% increased Area of Effect per Power Charge", statOrder = { 2134 }, level = 1, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmAreaofEffectPerPowerCharge2"] = { type = "Prefix", affix = "Occultist's", "4% increased Area of Effect per Power Charge", statOrder = { 2134 }, level = 60, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmCurseEffect1"] = { type = "Prefix", affix = "Occultist's", "(3-5)% increased Effect of your Curses", statOrder = { 2601 }, level = 1, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmCurseEffect2"] = { type = "Prefix", affix = "Occultist's", "(6-8)% increased Effect of your Curses", statOrder = { 2601 }, level = 60, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmNearbyEnemiesAreChilled"] = { type = "Suffix", affix = "of the Occultist", "Nearby Enemies are Chilled", statOrder = { 9449 }, level = 70, group = "AnimalCharmNearbyEnemiesAreChilled", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmEnergyShieldRegeneration1"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2651 }, level = 1, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmEnergyShieldRegeneration2"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (2-3)% of Energy Shield per second", statOrder = { 2651 }, level = 60, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmSpellHinderOnHitChance1"] = { type = "Suffix", affix = "of the Occultist", "(10-19)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 1, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmSpellHinderOnHitChance2"] = { type = "Suffix", affix = "of the Occultist", "(20-30)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 60, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMinionUnholyMightChance1"] = { type = "Prefix", affix = "Necromancer's", "Minions have (10-19)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3384 }, level = 1, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmMinionUnholyMightChance2"] = { type = "Prefix", affix = "Necromancer's", "Minions have (20-30)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3384 }, level = 60, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmOfferingEffect1"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (15-20)% increased Effect on you", statOrder = { 1175 }, level = 1, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmOfferingEffect2"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (21-30)% increased Effect on you", statOrder = { 1175 }, level = 60, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmRegenerateManaOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 9895 }, level = 1, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmRegenerateManaOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 9895 }, level = 60, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 9894 }, level = 1, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 9894 }, level = 60, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmElementalResistancesForAuraAffectedAllies1"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(10-14)% to Elemental Resistances", statOrder = { 4075 }, level = 1, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmElementalResistancesForAuraAffectedAllies2"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(15-20)% to Elemental Resistances", statOrder = { 4075 }, level = 60, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield1"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (3-5)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10690 }, level = 45, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield2"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (6-10)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10690 }, level = 72, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmCorpseLife1"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (5-10)% increased Maximum Life", statOrder = { 9166 }, level = 45, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmCorpseLife2"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (11-20)% increased Maximum Life", statOrder = { 9166 }, level = 72, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmMinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (5-8)% additional Physical Damage Reduction", statOrder = { 2279 }, level = 1, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmMinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (9-12)% additional Physical Damage Reduction", statOrder = { 2279 }, level = 60, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmPowerChargeOnCriticalStrike1"] = { type = "Prefix", affix = "Assassin's", "(10-15)% chance to gain a Power Charge on Critical Strike", statOrder = { 1835 }, level = 1, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmPowerChargeOnCriticalStrike2"] = { type = "Prefix", affix = "Assassin's", "(16-25)% chance to gain a Power Charge on Critical Strike", statOrder = { 1835 }, level = 60, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge1"] = { type = "Prefix", affix = "Assassin's", "+(2-3)% to Critical Strike Multiplier per Power Charge", statOrder = { 3287 }, level = 1, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge2"] = { type = "Prefix", affix = "Assassin's", "+(4-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3287 }, level = 60, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges1"] = { type = "Prefix", affix = "Assassin's", "+(0.4-0.6)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3475 }, level = 1, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges2"] = { type = "Prefix", affix = "Assassin's", "+(0.6-1)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3475 }, level = 60, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikesHaveCullingStrike"] = { type = "Prefix", affix = "Assassin's", "Critical Strikes have Culling Strike", statOrder = { 3445 }, level = 45, group = "AnimalCharmCriticalStrikesHaveCullingStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies1"] = { type = "Prefix", affix = "Assassin's", "(80-120)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3771 }, level = 1, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies2"] = { type = "Prefix", affix = "Assassin's", "(130-160)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3771 }, level = 60, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCriticalStrikeDamageCannotBeReflected"] = { type = "Suffix", affix = "of the Assassin", "Damage from your Critical Strikes cannot be Reflected", statOrder = { 5952 }, level = 45, group = "AnimalCharmCriticalStrikeDamageCannotBeReflected", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmElusiveEffect1"] = { type = "Suffix", affix = "of the Assassin", "(10-15)% increased Elusive Effect", statOrder = { 6354 }, level = 45, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmElusiveEffect2"] = { type = "Suffix", affix = "of the Assassin", "(16-25)% increased Elusive Effect", statOrder = { 6354 }, level = 72, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive"] = { type = "Suffix", affix = "of the Assassin", "You take no Extra Damage from Critical Strikes while Elusive", statOrder = { 9983 }, level = 70, group = "AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmPoisonDurationPerPoisonAppliedRecently1"] = { type = "Prefix", affix = "Assassin's", "(1-2)% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%", statOrder = { 9685, 9685.1 }, level = 1, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmPoisonDurationPerPoisonAppliedRecently2"] = { type = "Prefix", affix = "Assassin's", "3% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%", statOrder = { 9685, 9685.1 }, level = 60, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCannotBeBlinded"] = { type = "Suffix", affix = "of the Saboteur", "Cannot be Blinded", statOrder = { 2979 }, level = 45, group = "AnimalCharmCannotBeBlinded", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmBlindOnHitChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-10)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 1, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmBlindOnHitChance2"] = { type = "Suffix", affix = "of the Saboteur", "(11-15)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 60, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmMineAuraEffect1"] = { type = "Prefix", affix = "Saboteur's", "(20-30)% increased Effect of Auras from Mines", statOrder = { 9223 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmMineAuraEffect2"] = { type = "Prefix", affix = "Saboteur's", "(31-50)% increased Effect of Auras from Mines", statOrder = { 9223 }, level = 60, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmTakeHalfAreaDamageChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-6)% chance to take 50% less Area Damage from Hits", statOrder = { 10350 }, level = 45, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmTakeHalfAreaDamageChance2"] = { type = "Suffix", affix = "of the Saboteur", "(7-10)% chance to take 50% less Area Damage from Hits", statOrder = { 10350 }, level = 72, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmChanceFor150%AreaDamage1"] = { type = "Prefix", affix = "Saboteur's", "Hits have (5-6)% chance to deal 50% more Area Damage", statOrder = { 9596 }, level = 1, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmChanceFor150%AreaDamage2"] = { type = "Prefix", affix = "Saboteur's", "Hits have (7-10)% chance to deal 50% more Area Damage", statOrder = { 9596 }, level = 60, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCooldownRecoveryRate1"] = { type = "Prefix", affix = "Saboteur's", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 70, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmCooldownRecoveryRate2"] = { type = "Prefix", affix = "Saboteur's", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 81, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, - ["AnimalCharmChanceToThrow4AdditionalTraps1"] = { type = "Prefix", affix = "Saboteur's", "(2-3)% chance to throw up to 4 additional Traps", statOrder = { 5729 }, level = 1, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmChanceToThrow4AdditionalTraps2"] = { type = "Prefix", affix = "Saboteur's", "(4-5)% chance to throw up to 4 additional Traps", statOrder = { 5729 }, level = 60, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmCritVsBurningAndShockedEnemies1"] = { type = "Prefix", affix = "Saboteur's", "+(10-15)% to Critical Strike Multiplier against Burning Enemies", "(20-30)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3193, 5918 }, level = 1, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmCritVsBurningAndShockedEnemies2"] = { type = "Prefix", affix = "Saboteur's", "+(16-25)% to Critical Strike Multiplier against Burning Enemies", "(31-50)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3193, 5918 }, level = 60, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmChargeDuration1"] = { type = "Prefix", affix = "Trickster's", "(40-60)% increased Charge Duration", statOrder = { 5008 }, level = 1, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmChargeDuration2"] = { type = "Prefix", affix = "Trickster's", "(61-100)% increased Charge Duration", statOrder = { 5008 }, level = 60, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmLifeManaESOnKill1"] = { type = "Suffix", affix = "of the Trickster", "Recover 1% of Life on Kill", "Recover 1% of Energy Shield on Kill", "Recover 1% of Mana on Kill", statOrder = { 1754, 1755, 1756 }, level = 1, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmLifeManaESOnKill2"] = { type = "Suffix", affix = "of the Trickster", "Recover 2% of Life on Kill", "Recover 2% of Energy Shield on Kill", "Recover 2% of Mana on Kill", statOrder = { 1754, 1755, 1756 }, level = 60, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress1"] = { type = "Suffix", affix = "of the Trickster", "(5-8)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3428 }, level = 45, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress2"] = { type = "Suffix", affix = "of the Trickster", "(9-12)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3428 }, level = 72, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage1"] = { type = "Prefix", affix = "Trickster's", "(7-13)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4362 }, level = 45, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage2"] = { type = "Prefix", affix = "Trickster's", "(17-23)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4362 }, level = 72, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, - ["AnimalCharmEvasionPerEnergyShieldOnHelmet1"] = { type = "Suffix", affix = "of the Trickster", "+(1-2) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1552 }, level = 1, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmEvasionPerEnergyShieldOnHelmet2"] = { type = "Suffix", affix = "of the Trickster", "+(3-4) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1552 }, level = 60, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield1"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(3-4)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1151 }, level = 70, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, - ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield2"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(5-6)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1151 }, level = 81, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, - ["AnimalCharmEnergyShieldLeech1"] = { type = "Prefix", affix = "Trickster's", "(0.5-1)% of Damage Leeched as Energy Shield", statOrder = { 1726 }, level = 1, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmEnergyShieldLeech2"] = { type = "Prefix", affix = "Trickster's", "(1.1-2)% of Damage Leeched as Energy Shield", statOrder = { 1726 }, level = 60, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmRecover10PercentManaOnSkillUseChance1"] = { type = "Suffix", affix = "of the Trickster", "(4-6)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3480 }, level = 1, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, - ["AnimalCharmRecover10PercentManaOnSkillUseChance2"] = { type = "Suffix", affix = "of the Trickster", "(7-10)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3480 }, level = 60, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, - ["AnimalCharmNoBarrageSpread"] = { type = "Prefix", affix = "Deadeye's", "Projectile Barrages have no spread", statOrder = { 9479 }, level = 45, group = "AnimalCharmNoBarrageSpread", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMarkEffect1"] = { type = "Prefix", affix = "Deadeye's", "(10-15)% increased Effect of your Marks", statOrder = { 2603 }, level = 1, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmMarkEffect2"] = { type = "Prefix", affix = "Deadeye's", "(16-25)% increased Effect of your Marks", statOrder = { 2603 }, level = 60, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmProjectileChainFromTerrainChance1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (7-13)% chance to be able to Chain when colliding with terrain", statOrder = { 1832 }, level = 45, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmProjectileChainFromTerrainChance2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (14-20)% chance to be able to Chain when colliding with terrain", statOrder = { 1832 }, level = 72, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmAdditionalProjectiles"] = { type = "Prefix", affix = "Deadeye's", "Skills fire an additional Projectile", statOrder = { 1797 }, level = 81, group = "AnimalCharmAdditionalProjectiles", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, - ["AnimalCharmMirageArcherDuration1"] = { type = "Suffix", affix = "of the Deadeye", "(30-50)% increased Mirage Archer Duration", statOrder = { 9374 }, level = 1, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmMirageArcherDuration2"] = { type = "Suffix", affix = "of the Deadeye", "(51-100)% increased Mirage Archer Duration", statOrder = { 9374 }, level = 60, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmProjectileDamageWithDistanceTravelled1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (25-40)% increased Damage with Hits to targets", statOrder = { 4086, 4086.1 }, level = 1, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmProjectileDamageWithDistanceTravelled2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (41-60)% increased Damage with Hits to targets", statOrder = { 4086, 4086.1 }, level = 60, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmLifeOnHitVsBleedingEnemies1"] = { type = "Suffix", affix = "of the Deadeye", "Gain (6-10) Life per Bleeding Enemy Hit", statOrder = { 3575 }, level = 1, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmLifeOnHitVsBleedingEnemies2"] = { type = "Suffix", affix = "of the Deadeye", "Gain (11-20) Life per Bleeding Enemy Hit", statOrder = { 3575 }, level = 60, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAccuracyIfCritInLast8Seconds1"] = { type = "Prefix", affix = "Deadeye's", "(7-13)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4526 }, level = 1, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmAccuracyIfCritInLast8Seconds2"] = { type = "Prefix", affix = "Deadeye's", "(14-20)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4526 }, level = 60, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmOnslaughtEffect1"] = { type = "Prefix", affix = "Raider's", "(15-25)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 1, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmOnslaughtEffect2"] = { type = "Prefix", affix = "Raider's", "(26-40)% increased Effect of Onslaught on you", statOrder = { 3295 }, level = 60, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmPhasingOnKillChance1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 1, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmPhasingOnKillChance2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3470 }, level = 60, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmSpellSuppressionChance1"] = { type = "Suffix", affix = "of the Raider", "+(5-9)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 1, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmSpellSuppressionChance2"] = { type = "Suffix", affix = "of the Raider", "+(10-15)% chance to Suppress Spell Damage", statOrder = { 1148 }, level = 60, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4947 }, level = 1, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4947 }, level = 60, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmOnslaughtOnKillChance1"] = { type = "Prefix", affix = "Raider's", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 1, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmOnslaughtOnKillChance2"] = { type = "Prefix", affix = "Raider's", "(16-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3385 }, level = 60, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmEvasionRatingPerFrenzyCharge1"] = { type = "Suffix", affix = "of the Raider", "(3-5)% increased Evasion Rating per Frenzy Charge", statOrder = { 1561 }, level = 1, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmEvasionRatingPerFrenzyCharge2"] = { type = "Suffix", affix = "of the Raider", "(6-9)% increased Evasion Rating per Frenzy Charge", statOrder = { 1561 }, level = 60, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMovementSpeedPerFrenzyCharge"] = { type = "Prefix", affix = "Raider's", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1807 }, level = 70, group = "AnimalCharmMovementSpeedPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmFrenzyOnHItChance1"] = { type = "Prefix", affix = "Raider's", "(3-5)% chance to gain a Frenzy Charge on Hit", statOrder = { 1838 }, level = 45, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmFrenzyOnHItChance2"] = { type = "Prefix", affix = "Raider's", "(6-8)% chance to gain a Frenzy Charge on Hit", statOrder = { 1838 }, level = 72, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmFlaskChargesEvery3Seconds"] = { type = "Suffix", affix = "of the Pathfinder", "Flasks gain a Charge every 3 seconds", statOrder = { 3483 }, level = 81, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { "flask" }, }, - ["AnimalCharmRemoveBleedOnFlaskUse"] = { type = "Suffix", affix = "of the Pathfinder", "Removes Bleeding when you use a Flask", statOrder = { 3391 }, level = 45, group = "AnimalCharmRemoveBleedOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmMagicUtilityFlaskEffect1"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (6-10)% increased Effect", statOrder = { 2748 }, level = 70, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, - ["AnimalCharmMagicUtilityFlaskEffect2"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (11-15)% increased Effect", statOrder = { 2748 }, level = 81, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, - ["AnimalCharmWitheredOnHitChance1"] = { type = "Prefix", affix = "Pathfinder's", "(6-10)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4402 }, level = 45, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmWitheredOnHitChance2"] = { type = "Prefix", affix = "Pathfinder's", "(11-15)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4402 }, level = 72, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmRecoverLifeOnFlaskUse1"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (2-3)% of Life when you use a Flask", statOrder = { 4347 }, level = 45, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmRecoverLifeOnFlaskUse2"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (4-5)% of Life when you use a Flask", statOrder = { 4347 }, level = 72, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AnimalCharmWitheredEffect1"] = { type = "Prefix", affix = "Pathfinder's", "(7-13)% increased Effect of Withered", statOrder = { 10624 }, level = 1, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmWitheredEffect2"] = { type = "Prefix", affix = "Pathfinder's", "(14-20)% increased Effect of Withered", statOrder = { 10624 }, level = 60, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments1"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (15-25)% increased Flask Charges", statOrder = { 4254, 4254.1 }, level = 1, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments2"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (26-40)% increased Flask Charges", statOrder = { 4254, 4254.1 }, level = 60, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, - ["AnimalCharmPhysicalDamageAsRandomElement1"] = { type = "Prefix", affix = "Pathfinder's", "Gain (5-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 1, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["AnimalCharmPhysicalDamageAsRandomElement2"] = { type = "Prefix", affix = "Pathfinder's", "Gain (9-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2941 }, level = 60, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMovementSpeedCannotBeBelowBase"] = { type = "Prefix", affix = "Juggernaut's", "Movement Speed cannot be modified to below Base Value", statOrder = { 3196 }, level = 70, group = "AnimalCharmMovementSpeedCannotBeBelowBase", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmArmourAppliesToElementalDamage1"] = { type = "Suffix", affix = "of the Juggernaut", "2% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4748 }, level = 81, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, + ["AnimalCharmArmourAppliesToElementalDamage2"] = { type = "Suffix", affix = "of the Juggernaut", "3% of Armour applies to Fire, Cold and Lightning Damage taken from Hits", statOrder = { 4748 }, level = 83, group = "AnimalCharmArmourAppliesToElementalDamage", weightKey = { "str_animal_charm", "default", }, weightVal = { 10, 0 }, modTags = { }, }, + ["AnimalCharmEnduranceChargeOnStun1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5687 }, level = 1, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmEnduranceChargeOnStun2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you Stun an Enemy", statOrder = { 5687 }, level = 60, group = "AnimalCharmEnduranceChargeOnStun", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAreaOfEffectPerEnduranceCharge1"] = { type = "Prefix", affix = "Juggernaut's", "(3-4)% increased Area of Effect per Endurance Charge", statOrder = { 4733 }, level = 1, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmAreaOfEffectPerEnduranceCharge2"] = { type = "Prefix", affix = "Juggernaut's", "(5-6)% increased Area of Effect per Endurance Charge", statOrder = { 4733 }, level = 60, group = "AnimalCharmAreaOfEffectPerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmEnchangeChargeWhenHit1"] = { type = "Prefix", affix = "Juggernaut's", "(10-19)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2751 }, level = 1, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmEnchangeChargeWhenHit2"] = { type = "Prefix", affix = "Juggernaut's", "(20-30)% chance to gain an Endurance Charge when you are Hit", statOrder = { 2751 }, level = 60, group = "AnimalCharmEnchangeChargeWhenHit", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmChaosResistancePerEnduranceCharge1"] = { type = "Suffix", affix = "of the Juggernaut", "+(2-3)% to Chaos Resistance per Endurance Charge", statOrder = { 5739 }, level = 1, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmChaosResistancePerEnduranceCharge2"] = { type = "Suffix", affix = "of the Juggernaut", "+(4-5)% to Chaos Resistance per Endurance Charge", statOrder = { 5739 }, level = 60, group = "AnimalCharmChaosResistancePerEnduranceCharge", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmLIfeRegenerationRate1"] = { type = "Suffix", affix = "of the Juggernaut", "(10-15)% increased Life Regeneration rate", statOrder = { 1577 }, level = 45, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmLIfeRegenerationRate2"] = { type = "Suffix", affix = "of the Juggernaut", "(16-20)% increased Life Regeneration rate", statOrder = { 1577 }, level = 72, group = "AnimalCharmLIfeRegenerationRate", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmTotemTauntEnemiesWhenSummoned"] = { type = "Suffix", affix = "of the Chieftain", "Totems Taunt Enemies around them for 2 seconds when Summoned", statOrder = { 10408 }, level = 45, group = "AnimalCharmTotemTauntEnemiesWhenSummoned", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmTotemRecoup1"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (5-7)% of Damage Taken by your Totems as Life", statOrder = { 9836 }, level = 1, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmTotemRecoup2"] = { type = "Suffix", affix = "of the Chieftain", "Recoup (8-12)% of Damage Taken by your Totems as Life", statOrder = { 9836 }, level = 60, group = "AnimalCharmTotemRecoup", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmFireExplode"] = { type = "Prefix", affix = "Chieftain's", "Enemies you or your Totems Kill have 1% chance to Explode, dealing 250% of their maximum Life as Fire Damage", statOrder = { 6515 }, level = 70, group = "AnimalCharmFireExplode", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmAshOnHittingRareUniqueEnemy1"] = { type = "Prefix", affix = "Chieftain's", "(5-10)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4694 }, level = 45, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAshOnHittingRareUniqueEnemy2"] = { type = "Prefix", affix = "Chieftain's", "(11-20)% chance to Cover Rare or Unique Enemies in Ash for 10 Seconds on Hit", statOrder = { 4694 }, level = 72, group = "AnimalCharmAshOnHittingRareUniqueEnemy", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmStrengthPercent1"] = { type = "Prefix", affix = "Chieftain's", "(3-5)% increased Strength", statOrder = { 1184 }, level = 1, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmStrengthPercent2"] = { type = "Prefix", affix = "Chieftain's", "(6-8)% increased Strength", statOrder = { 1184 }, level = 60, group = "AnimalCharmStrengthPercent", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMaximumFireDamageResistance1"] = { type = "Suffix", affix = "of the Chieftain", "+1% to maximum Fire Resistance", statOrder = { 1623 }, level = 45, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMaximumFireDamageResistance2"] = { type = "Suffix", affix = "of the Chieftain", "+2% to maximum Fire Resistance", statOrder = { 1623 }, level = 72, group = "AnimalCharmMaximumFireDamageResistance", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmIgniteDurationOnSelf1"] = { type = "Suffix", affix = "of the Chieftain", "(20-30)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmIgniteDurationOnSelf2"] = { type = "Suffix", affix = "of the Chieftain", "(31-50)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 60, group = "AnimalCharmIgniteDurationOnSelf", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmStunImmuneWith25Rage"] = { type = "Suffix", affix = "of the Berserker", "Cannot be Stunned while you have at least 25 Rage", statOrder = { 9791 }, level = 45, group = "AnimalCharmStunImmuneWith25Rage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAddedPhysicalDamageIfCritRecently1"] = { type = "Prefix", affix = "Berserker's", "Adds (5-7) to (14-17) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9247 }, level = 1, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmAddedPhysicalDamageIfCritRecently2"] = { type = "Prefix", affix = "Berserker's", "Adds (8-12) to (18-22) Physical Damage if you've dealt a Critical Strike Recently", statOrder = { 9247 }, level = 60, group = "AnimalCharmAddedPhysicalDamageIfCritRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMaximumRage1"] = { type = "Prefix", affix = "Berserker's", "+(2-3) to Maximum Rage", statOrder = { 9785 }, level = 1, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmMaximumRage2"] = { type = "Prefix", affix = "Berserker's", "+(4-5) to Maximum Rage", statOrder = { 9785 }, level = 60, group = "AnimalCharmMaximumRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmWarcriesGrantRage1"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (2-3) Rage per 5 Power if you have less than 25 Rage", statOrder = { 5071 }, level = 1, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmWarcriesGrantRage2"] = { type = "Prefix", affix = "Berserker's", "Warcries grant (4-5) Rage per 5 Power if you have less than 25 Rage", statOrder = { 5071 }, level = 60, group = "AnimalCharmWarcriesGrantRage", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmLeechPercentIsInstant1"] = { type = "Suffix", affix = "of the Berserker", "(3-5)% of Leech is Instant", statOrder = { 7338 }, level = 45, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmLeechPercentIsInstant2"] = { type = "Suffix", affix = "of the Berserker", "(6-8)% of Leech is Instant", statOrder = { 7338 }, level = 72, group = "AnimalCharmLeechPercentIsInstant", weightKey = { "str_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmLeechIfKilledRecently1"] = { type = "Suffix", affix = "of the Berserker", "1% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 7345 }, level = 1, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmLeechIfKilledRecently2"] = { type = "Suffix", affix = "of the Berserker", "2% of Attack Damage Leeched as Life and Mana if you've Killed Recently", statOrder = { 7345 }, level = 60, group = "AnimalCharmLeechIfKilledRecently", weightKey = { "str_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmCorpseExplodeOnWarcry1"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (3-4)% of their Life as Physical Damage", statOrder = { 9447 }, level = 70, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmCorpseExplodeOnWarcry2"] = { type = "Prefix", affix = "Berserker's", "Nearby corpses Explode when you Warcry, dealing (5-6)% of their Life as Physical Damage", statOrder = { 9447 }, level = 81, group = "AnimalCharmCorpseExplodeOnWarcry", weightKey = { "str_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["AnimalCharmStunImmuneWhileFortified"] = { type = "Suffix", affix = "of the Champion", "Cannot be Stunned while Fortified", statOrder = { 5425 }, level = 70, group = "AnimalCharmStunImmuneWhileFortified", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmTauntOnHitChance1"] = { type = "Prefix", affix = "Champion's", "(10-19)% chance to Taunt on Hit", statOrder = { 3430 }, level = 1, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmTauntOnHitChance2"] = { type = "Prefix", affix = "Champion's", "(20-30)% chance to Taunt on Hit", statOrder = { 3430 }, level = 60, group = "AnimalCharmTauntOnHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmBannersNoReservation"] = { type = "Prefix", affix = "Champion's", "Banner Skills have no Reservation", statOrder = { 4980 }, level = 45, group = "AnimalCharmBannersNoReservation", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmRecoverBannerStagesOnPlacingBanner1"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (10-15)% of the Valour consumed for that Banner", statOrder = { 9556 }, level = 1, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmRecoverBannerStagesOnPlacingBanner2"] = { type = "Suffix", affix = "of the Champion", "When you leave your Banner's Area, recover (16-25)% of the Valour consumed for that Banner", statOrder = { 9556 }, level = 60, group = "AnimalCharmRecoverBannerStagesOnPlacingBanner", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmGainAdrenalineOnReachingLowLife"] = { type = "Prefix", affix = "Champion's", "Gain Adrenaline for 4 seconds when you reach Low Life", statOrder = { 6715 }, level = 70, group = "AnimalCharmGainAdrenalineOnReachingLowLife", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmImpaleLastsForExtraHits"] = { type = "Prefix", affix = "Champion's", "Impales you inflict last 1 additional Hit", statOrder = { 7255 }, level = 81, group = "AnimalCharmImpaleLastsForExtraHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 10, 10, 0 }, modTags = { }, }, + ["AnimalCharmFortifyOnMeleeHitChance1"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (5-10)% chance to Fortify", statOrder = { 2264 }, level = 45, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmFortifyOnMeleeHitChance2"] = { type = "Suffix", affix = "of the Champion", "Melee Hits have (11-20)% chance to Fortify", statOrder = { 2264 }, level = 72, group = "AnimalCharmFortifyOnMeleeHitChance", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmBleedExplode1"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (2-3)% of", "their Maximum Life as Physical Damage", statOrder = { 3481, 3481.1 }, level = 70, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmBleedExplode2"] = { type = "Prefix", affix = "Gladiator's", "Bleeding Enemies you Kill Explode, dealing (4-5)% of", "their Maximum Life as Physical Damage", statOrder = { 3481, 3481.1 }, level = 81, group = "AnimalCharmBleedExplode", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, + ["AnimalCharmBlindOnHitVsBleedingEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (10-19)% chance to Blind", statOrder = { 4841 }, level = 1, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmBlindOnHitVsBleedingEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Bleeding Enemies have (20-30)% chance to Blind", statOrder = { 4841 }, level = 60, group = "AnimalCharmBlindOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMaimOnHitVsBlindedEnemies1"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (10-19)% chance to Maim", statOrder = { 4842 }, level = 1, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmMaimOnHitVsBlindedEnemies2"] = { type = "Prefix", affix = "Gladiator's", "Attack Hits against Blinded Enemies have (20-30)% chance to Maim", statOrder = { 4842 }, level = 60, group = "AnimalCharmMaimOnHitVsBlindedEnemies", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmStunImmuneAgainstBlockedHits"] = { type = "Suffix", affix = "of the Gladiator", "Cannot be Stunned by Hits you Block", statOrder = { 5416 }, level = 45, group = "AnimalCharmStunImmuneAgainstBlockedHits", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMaximumBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(1-2)% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 45, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMaximumBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+3% to maximum Chance to Block Attack Damage", statOrder = { 1988 }, level = 72, group = "AnimalCharmMaximumBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmOverwhelmIfBlockedinPast20Seconds"] = { type = "Prefix", affix = "Gladiator's", "Hits ignore Enemy Physical Damage Reduction if you've Blocked in the past 20 seconds", statOrder = { 7169 }, level = 1, group = "AnimalCharmOverwhelmIfBlockedinPast20Seconds", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmArmourAndEvasionPerBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4758 }, level = 1, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmArmourAndEvasionPerBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6) to Armour and Evasion Rating per 1% Chance to Block Attack Damage", statOrder = { 4758 }, level = 60, group = "AnimalCharmArmourAndEvasionPerBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmAttackBlock1"] = { type = "Suffix", affix = "of the Gladiator", "+(3-4)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 1, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmAttackBlock2"] = { type = "Suffix", affix = "of the Gladiator", "+(5-6)% Chance to Block Attack Damage", statOrder = { 2458 }, level = 60, group = "AnimalCharmAttackBlock", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmAttackSpeedOnKillingRareUnique1"] = { type = "Prefix", affix = "Slayer's", "Gain (4-7)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6736 }, level = 1, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmAttackSpeedOnKillingRareUnique2"] = { type = "Prefix", affix = "Slayer's", "Gain (8-12)% increased Attack Speed for 20 seconds when you Kill a Rare or Unique Enemy", statOrder = { 6736 }, level = 60, group = "AnimalCharmAttackSpeedOnKillingRareUnique", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmPhysicalReflectImmune"] = { type = "Suffix", affix = "of the Slayer", "Cannot take Reflected Physical Damage", statOrder = { 5447 }, level = 45, group = "AnimalCharmPhysicalReflectImmune", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmStunImmuneWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "Cannot be Stunned while Leeching", statOrder = { 3212 }, level = 70, group = "AnimalCharmStunImmuneWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmUnaffectedbyBleedingWhileLeeching"] = { type = "Suffix", affix = "of the Slayer", "You are Unaffected by Bleeding while Leeching", statOrder = { 10454 }, level = 70, group = "AnimalCharmUnaffectedbyBleedingWhileLeeching", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmOverkillLeech1"] = { type = "Suffix", affix = "of the Slayer", "(4-7)% of Overkill Damage is Leeched as Life", statOrder = { 3209 }, level = 1, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmOverkillLeech2"] = { type = "Suffix", affix = "of the Slayer", "(8-12)% of Overkill Damage is Leeched as Life", statOrder = { 3209 }, level = 60, group = "AnimalCharmOverkillLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMaximumAmountPerLifeLeech1"] = { type = "Prefix", affix = "Slayer's", "(10-20)% increased Maximum Recovery per Life Leech", statOrder = { 1724 }, level = 45, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMaximumAmountPerLifeLeech2"] = { type = "Prefix", affix = "Slayer's", "(21-30)% increased Maximum Recovery per Life Leech", statOrder = { 1724 }, level = 72, group = "AnimalCharmMaximumAmountPerLifeLeech", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmAreaOfEffectIfKilledRecently1"] = { type = "Prefix", affix = "Slayer's", "(4-7)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 1, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmAreaOfEffectIfKilledRecently2"] = { type = "Prefix", affix = "Slayer's", "(8-12)% increased Area of Effect if you've Killed Recently", statOrder = { 4219 }, level = 60, group = "AnimalCharmAreaOfEffectIfKilledRecently", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCullingStrike"] = { type = "Prefix", affix = "Slayer's", "Culling Strike", statOrder = { 2039 }, level = 45, group = "AnimalCharmCullingStrike", weightKey = { "dex_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmStrengthAndIntelligence1"] = { type = "Suffix", affix = "of the Inquisitor", "+(20-30) to Strength and Intelligence", statOrder = { 461 }, level = 1, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmStrengthAndIntelligence2"] = { type = "Suffix", affix = "of the Inquisitor", "+(31-40) to Strength and Intelligence", statOrder = { 461 }, level = 60, group = "AnimalCharmStrengthAndIntelligence", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect1"] = { type = "Prefix", affix = "Inquisitor's", "(20-30)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9503 }, level = 1, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikesNonDamagingAilmentEffect2"] = { type = "Prefix", affix = "Inquisitor's", "(31-40)% increased Effect of non-Damaging Ailments you inflict with Critical Strikes", statOrder = { 9503 }, level = 60, group = "AnimalCharmCriticalStrikesNonDamagingAilmentEffect", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmConsecratedGroundLingerDuration"] = { type = "Suffix", affix = "of the Inquisitor", "Effects of Consecrated Ground you create Linger for 2 seconds", statOrder = { 10689 }, level = 70, group = "AnimalCharmConsecratedGroundLingerDuration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmConsecratedGroundDamageTaken1"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (5-6)% increased Damage taken to Enemies", statOrder = { 5848 }, level = 45, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmConsecratedGroundDamageTaken2"] = { type = "Prefix", affix = "Inquisitor's", "Consecrated Ground you create applies (7-10)% increased Damage taken to Enemies", statOrder = { 5848 }, level = 72, group = "AnimalCharmConsecratedGroundDamageTaken", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmElementalPenetration1"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (3-4)% of Enemy Elemental Resistances", statOrder = { 3559 }, level = 1, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmElementalPenetration2"] = { type = "Prefix", affix = "Inquisitor's", "Damage Penetrates (5-6)% of Enemy Elemental Resistances", statOrder = { 3559 }, level = 60, group = "AnimalCharmElementalPenetration", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmConsecratedGroundVsRareUnique1"] = { type = "Suffix", affix = "of the Inquisitor", "(10-19)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5903 }, level = 1, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmConsecratedGroundVsRareUnique2"] = { type = "Suffix", affix = "of the Inquisitor", "(20-30)% chance to create Consecrated Ground when you Hit a Rare or Unique Enemy, lasting 8 seconds", statOrder = { 5903 }, level = 60, group = "AnimalCharmConsecratedGroundVsRareUnique", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeChanceIfNotCritRecently1"] = { type = "Prefix", affix = "Inquisitor's", "(50-70)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5927 }, level = 1, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeChanceIfNotCritRecently2"] = { type = "Prefix", affix = "Inquisitor's", "(71-100)% increased Critical Strike Chance if you haven't dealt a Critical Strike Recently", statOrder = { 5927 }, level = 60, group = "AnimalCharmCriticalStrikeChanceIfNotCritRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmDamageRemovedFromManaBeforeLife1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 70, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmDamageRemovedFromManaBeforeLife2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage is taken from Mana before Life", statOrder = { 2699 }, level = 81, group = "AnimalCharmDamageRemovedFromManaBeforeLife", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, + ["AnimalCharmManaReservationEfficiency1"] = { type = "Prefix", affix = "Hierophant's", "(4-7)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 45, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmManaReservationEfficiency2"] = { type = "Prefix", affix = "Hierophant's", "(8-12)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 72, group = "AnimalCharmManaReservationEfficiency", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmManaToAddAsExtraEnergyShield1"] = { type = "Suffix", affix = "of the Hierophant", "Gain (2-3)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 1, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmManaToAddAsExtraEnergyShield2"] = { type = "Suffix", affix = "of the Hierophant", "Gain (4-5)% of Maximum Mana as Extra Maximum Energy Shield", statOrder = { 2175 }, level = 60, group = "AnimalCharmManaToAddAsExtraEnergyShield", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmArcaneSurgeOnHit"] = { type = "Prefix", affix = "Hierophant's", "Gain Arcane Surge when you or your Totems Hit an Enemy with a Spell", statOrder = { 6731 }, level = 70, group = "AnimalCharmArcaneSurgeOnHit", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge1"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (20-30)% reduced Effect on you while you have Arcane Surge", statOrder = { 4331 }, level = 1, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge2"] = { type = "Prefix", affix = "Hierophant's", "Non-Damaging Ailments have (31-40)% reduced Effect on you while you have Arcane Surge", statOrder = { 4331 }, level = 60, group = "AnimalCharmNonDamagingAilmentEffectOnSelfWithArcaneSurge", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf1"] = { type = "Suffix", affix = "of the Hierophant", "(1-2)% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6094 }, level = 1, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmDamageRemovedFromTotemLifeBeforeSelf2"] = { type = "Suffix", affix = "of the Hierophant", "3% of Damage from Hits is taken from your nearest Totem's Life before you", statOrder = { 6094 }, level = 60, group = "AnimalCharmDamageRemovedFromTotemLifeBeforeSelf", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMinimumEnduranceAndPowerCharges"] = { type = "Suffix", affix = "of the Hierophant", "+1 to Minimum Endurance Charges", "+1 to Minimum Power Charges", statOrder = { 1803, 1813 }, level = 70, group = "AnimalCharmMinimumEnduranceAndPowerCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmChanceToSummonTwoTotems1"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (20-30)% chance to Summon two Totems instead of one", statOrder = { 5723 }, level = 1, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmChanceToSummonTwoTotems2"] = { type = "Prefix", affix = "Hierophant's", "Skills that Summon a Totem have (31-50)% chance to Summon two Totems instead of one", statOrder = { 5723 }, level = 60, group = "AnimalCharmChanceToSummonTwoTotems", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmBlockChanceIfAttackedRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(4-5)% Chance to Block Attack Damage", statOrder = { 10636 }, level = 1, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmBlockChanceIfAttackedRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Attacked Recently, you and nearby Allies have +(6-8)% Chance to Block Attack Damage", statOrder = { 10636 }, level = 60, group = "AnimalCharmBlockChanceIfAttackedRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmSpellBlockChanceIfCastSpellRecently1"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(4-5)% Chance to Block Spell Damage", statOrder = { 10637 }, level = 1, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmSpellBlockChanceIfCastSpellRecently2"] = { type = "Suffix", affix = "of the Guardian", "If you've Cast a Spell Recently, you and nearby Allies have +(6-8)% Chance to Block Spell Damage", statOrder = { 10637 }, level = 60, group = "AnimalCharmSpellBlockChanceIfCastSpellRecently", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmRemoveCursesAndAilmentsEvery10seconds"] = { type = "Suffix", affix = "of the Guardian", "Every 4 seconds, remove Curses and Ailments from you", statOrder = { 3785 }, level = 45, group = "AnimalCharmRemoveCursesAndAilmentsEvery10seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmReservedManaGrantedAsArmour1"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (3-4)% of your Reserved Mana to you and nearby Allies", statOrder = { 3783 }, level = 45, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmReservedManaGrantedAsArmour2"] = { type = "Prefix", affix = "Guardian's", "Grants Armour equal to (5-6)% of your Reserved Mana to you and nearby Allies", statOrder = { 3783 }, level = 72, group = "AnimalCharmReservedManaGrantedAsArmour", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments"] = { type = "Suffix", affix = "of the Guardian", "Enemies in your Link Beams cannot apply Elemental Ailments", statOrder = { 7499 }, level = 45, group = "AnimalCharmEnemiesInLinkBeamCannotInflictElementalAilments", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmLifeRegenerationForASecondEvery10Seconds1"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 10% of Life over one second", statOrder = { 3786 }, level = 1, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmLifeRegenerationForASecondEvery10Seconds2"] = { type = "Prefix", affix = "Guardian's", "Every 4 seconds, Regenerate 20% of Life over one second", statOrder = { 3786 }, level = 60, group = "AnimalCharmLifeRegenerationForASecondEvery10Seconds", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmNearbyEnemiesCannotGainCharges"] = { type = "Prefix", affix = "Guardian's", "Nearby Enemies cannot gain Power, Frenzy or Endurance Charges", statOrder = { 3781 }, level = 45, group = "AnimalCharmNearbyEnemiesCannotGainCharges", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby"] = { type = "Prefix", affix = "Guardian's", "While there are at least five nearby Allies, you and nearby Allies have Onslaught", statOrder = { 6924 }, level = 45, group = "AnimalCharmNearbyAlliesHaveOnslaughtIfYouHaveAtLeast5Nearby", weightKey = { "int_animal_charm", "str_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmExposureExtraResistance1"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(5-4)% to the affected Resistance", statOrder = { 6522 }, level = 1, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmExposureExtraResistance2"] = { type = "Prefix", affix = "Elementalist's", "Exposure you inflict applies an extra -(7-6)% to the affected Resistance", statOrder = { 6522 }, level = 60, group = "AnimalCharmExposureExtraResistance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAllDamageCanIgnite"] = { type = "Prefix", affix = "Elementalist's", "All Damage can Ignite", statOrder = { 4625 }, level = 81, group = "AnimalCharmAllDamageCanIgnite", weightKey = { "int_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, + ["AnimalCharmShockMinimumDamageIncrease1"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (5-7)%", statOrder = { 4442 }, level = 45, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmShockMinimumDamageIncrease2"] = { type = "Prefix", affix = "Elementalist's", "Shocks from your Hits always increase Damage taken by at least (8-10)%", statOrder = { 4442 }, level = 72, group = "AnimalCharmShockMinimumDamageIncrease", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmChillMinimumSlow1"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (3-4)%", statOrder = { 4440 }, level = 45, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmChillMinimumSlow2"] = { type = "Suffix", affix = "of the Elementalist", "Chills from your Hits always reduce Action Speed by at least (5-6)%", statOrder = { 4440 }, level = 72, group = "AnimalCharmChillMinimumSlow", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmGolemBuffEffect1"] = { type = "Suffix", affix = "of the Elementalist", "(15-20)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 1, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmGolemBuffEffect2"] = { type = "Suffix", affix = "of the Elementalist", "(21-35)% increased Effect of Buffs granted by your Golems", statOrder = { 6893 }, level = 60, group = "AnimalCharmGolemBuffEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmIgniteFreezeShockChance1"] = { type = "Prefix", affix = "Elementalist's", "(10-15)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 1, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmIgniteFreezeShockChance2"] = { type = "Prefix", affix = "Elementalist's", "(16-25)% chance to Freeze, Shock and Ignite", statOrder = { 2801 }, level = 60, group = "AnimalCharmIgniteFreezeShockChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmElementalReflectImmune"] = { type = "Suffix", affix = "of the Elementalist", "Cannot take Reflected Elemental Damage", statOrder = { 5446 }, level = 45, group = "AnimalCharmElementalReflectImmune", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmIgnoreHexproofEnemies"] = { type = "Prefix", affix = "Occultist's", "Your Hexes can affect Hexproof Enemies", statOrder = { 2600 }, level = 45, group = "AnimalCharmIgnoreHexproofEnemies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmChaosExplode1"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (6-10)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3306 }, level = 70, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmChaosExplode2"] = { type = "Prefix", affix = "Occultist's", "Cursed Enemies you or your Minions Kill have a (11-15)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3306 }, level = 81, group = "AnimalCharmChaosExplode", weightKey = { "int_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["AnimalCharmAreaofEffectPerPowerCharge1"] = { type = "Prefix", affix = "Occultist's", "(2-3)% increased Area of Effect per Power Charge", statOrder = { 2129 }, level = 1, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmAreaofEffectPerPowerCharge2"] = { type = "Prefix", affix = "Occultist's", "4% increased Area of Effect per Power Charge", statOrder = { 2129 }, level = 60, group = "AnimalCharmAreaofEffectPerPowerCharge", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmCurseEffect1"] = { type = "Prefix", affix = "Occultist's", "(3-5)% increased Effect of your Curses", statOrder = { 2596 }, level = 1, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmCurseEffect2"] = { type = "Prefix", affix = "Occultist's", "(6-8)% increased Effect of your Curses", statOrder = { 2596 }, level = 60, group = "AnimalCharmCurseEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmNearbyEnemiesAreChilled"] = { type = "Suffix", affix = "of the Occultist", "Nearby Enemies are Chilled", statOrder = { 9450 }, level = 70, group = "AnimalCharmNearbyEnemiesAreChilled", weightKey = { "int_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmEnergyShieldRegeneration1"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (1-1.5)% of Energy Shield per second", statOrder = { 2646 }, level = 1, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmEnergyShieldRegeneration2"] = { type = "Suffix", affix = "of the Occultist", "Regenerate (2-3)% of Energy Shield per second", statOrder = { 2646 }, level = 60, group = "AnimalCharmEnergyShieldRegeneration", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmSpellHinderOnHitChance1"] = { type = "Suffix", affix = "of the Occultist", "(10-19)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 1, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmSpellHinderOnHitChance2"] = { type = "Suffix", affix = "of the Occultist", "(20-30)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 60, group = "AnimalCharmSpellHinderOnHitChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMinionUnholyMightChance1"] = { type = "Prefix", affix = "Necromancer's", "Minions have (10-19)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 1, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmMinionUnholyMightChance2"] = { type = "Prefix", affix = "Necromancer's", "Minions have (20-30)% chance to gain Unholy Might for 4 seconds on Kill", statOrder = { 3379 }, level = 60, group = "AnimalCharmMinionUnholyMightChance", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmOfferingEffect1"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (15-20)% increased Effect on you", statOrder = { 1170 }, level = 1, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmOfferingEffect2"] = { type = "Prefix", affix = "Necromancer's", "Your Offerings have (21-30)% increased Effect on you", statOrder = { 1170 }, level = 60, group = "AnimalCharmOfferingEffect", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmRegenerateManaOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 9896 }, level = 1, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmRegenerateManaOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Mana over 2 seconds when you Consume a corpse", statOrder = { 9896 }, level = 60, group = "AnimalCharmRegenerateManaOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse1"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (2-3)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 9895 }, level = 1, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmRegenerateEnergyShieldOnConsumeCorpse2"] = { type = "Suffix", affix = "of the Necromancer", "Regenerate (4-5)% of Energy Shield over 2 seconds when you Consume a corpse", statOrder = { 9895 }, level = 60, group = "AnimalCharmRegenerateEnergyShieldOnConsumeCorpse", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmElementalResistancesForAuraAffectedAllies1"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(10-14)% to Elemental Resistances", statOrder = { 4070 }, level = 1, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmElementalResistancesForAuraAffectedAllies2"] = { type = "Suffix", affix = "of the Necromancer", "You and nearby Allies have +(15-20)% to Elemental Resistances", statOrder = { 4070 }, level = 60, group = "AnimalCharmElementalResistancesForAuraAffectedAllies", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield1"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (3-5)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10691 }, level = 45, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield2"] = { type = "Prefix", affix = "Necromancer's", "Minions gain Added Physical Damage equal to (6-10)% of Maximum Energy Shield on your Equipped Helmet", statOrder = { 10691 }, level = 72, group = "AnimalCharmMinionPhysicalDamageBasedOffHelmetEnergyShield", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmCorpseLife1"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (5-10)% increased Maximum Life", statOrder = { 9162 }, level = 45, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmCorpseLife2"] = { type = "Prefix", affix = "Necromancer's", "Corpses you Spawn have (11-20)% increased Maximum Life", statOrder = { 9162 }, level = 72, group = "AnimalCharmCorpseLife", weightKey = { "int_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmMinionPhysicalDamageReduction1"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (5-8)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 1, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmMinionPhysicalDamageReduction2"] = { type = "Suffix", affix = "of the Necromancer", "Minions have (9-12)% additional Physical Damage Reduction", statOrder = { 2274 }, level = 60, group = "AnimalCharmMinionPhysicalDamageReduction", weightKey = { "int_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmPowerChargeOnCriticalStrike1"] = { type = "Prefix", affix = "Assassin's", "(10-15)% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 1, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmPowerChargeOnCriticalStrike2"] = { type = "Prefix", affix = "Assassin's", "(16-25)% chance to gain a Power Charge on Critical Strike", statOrder = { 1830 }, level = 60, group = "AnimalCharmPowerChargeOnCriticalStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge1"] = { type = "Prefix", affix = "Assassin's", "+(2-3)% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 1, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeMultiplierPerPowerCharge2"] = { type = "Prefix", affix = "Assassin's", "+(4-5)% to Critical Strike Multiplier per Power Charge", statOrder = { 3282 }, level = 60, group = "AnimalCharmCriticalStrikeMultiplierPerPowerCharge", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges1"] = { type = "Prefix", affix = "Assassin's", "+(0.4-0.6)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3470 }, level = 1, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges2"] = { type = "Prefix", affix = "Assassin's", "+(0.6-1)% Critical Strike Chance while at maximum Power Charges", statOrder = { 3470 }, level = 60, group = "AnimalCharmAdditionalCriticalStrikeChanceAtMaximumPowerCharges", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikesHaveCullingStrike"] = { type = "Prefix", affix = "Assassin's", "Critical Strikes have Culling Strike", statOrder = { 3440 }, level = 45, group = "AnimalCharmCriticalStrikesHaveCullingStrike", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies1"] = { type = "Prefix", affix = "Assassin's", "(80-120)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3766 }, level = 1, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies2"] = { type = "Prefix", affix = "Assassin's", "(130-160)% increased Critical Strike Chance against Enemies that are on Full Life", statOrder = { 3766 }, level = 60, group = "AnimalCharmCriticalStrikeChanceAgainstFullLifeEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCriticalStrikeDamageCannotBeReflected"] = { type = "Suffix", affix = "of the Assassin", "Damage from your Critical Strikes cannot be Reflected", statOrder = { 5947 }, level = 45, group = "AnimalCharmCriticalStrikeDamageCannotBeReflected", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmElusiveEffect1"] = { type = "Suffix", affix = "of the Assassin", "(10-15)% increased Elusive Effect", statOrder = { 6349 }, level = 45, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmElusiveEffect2"] = { type = "Suffix", affix = "of the Assassin", "(16-25)% increased Elusive Effect", statOrder = { 6349 }, level = 72, group = "AnimalCharmElusiveEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive"] = { type = "Suffix", affix = "of the Assassin", "You take no Extra Damage from Critical Strikes while Elusive", statOrder = { 9984 }, level = 70, group = "AnimalCharmNoExtraDamageFromCriticalStrikesIfElusive", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmPoisonDurationPerPoisonAppliedRecently1"] = { type = "Prefix", affix = "Assassin's", "(1-2)% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%", statOrder = { 9686, 9686.1 }, level = 1, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmPoisonDurationPerPoisonAppliedRecently2"] = { type = "Prefix", affix = "Assassin's", "3% increased Poison Duration for each Poison you have inflicted Recently, up", "to a maximum of 100%", statOrder = { 9686, 9686.1 }, level = 60, group = "AnimalCharmPoisonDurationPerPoisonAppliedRecently", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCannotBeBlinded"] = { type = "Suffix", affix = "of the Saboteur", "Cannot be Blinded", statOrder = { 2974 }, level = 45, group = "AnimalCharmCannotBeBlinded", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmBlindOnHitChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-10)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 1, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmBlindOnHitChance2"] = { type = "Suffix", affix = "of the Saboteur", "(11-15)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 60, group = "AnimalCharmBlindOnHitChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmMineAuraEffect1"] = { type = "Prefix", affix = "Saboteur's", "(20-30)% increased Effect of Auras from Mines", statOrder = { 9219 }, level = 1, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmMineAuraEffect2"] = { type = "Prefix", affix = "Saboteur's", "(31-50)% increased Effect of Auras from Mines", statOrder = { 9219 }, level = 60, group = "AnimalCharmMineAuraEffect", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmTakeHalfAreaDamageChance1"] = { type = "Suffix", affix = "of the Saboteur", "(5-6)% chance to take 50% less Area Damage from Hits", statOrder = { 10351 }, level = 45, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmTakeHalfAreaDamageChance2"] = { type = "Suffix", affix = "of the Saboteur", "(7-10)% chance to take 50% less Area Damage from Hits", statOrder = { 10351 }, level = 72, group = "AnimalCharmTakeHalfAreaDamageChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmChanceFor150%AreaDamage1"] = { type = "Prefix", affix = "Saboteur's", "Hits have (5-6)% chance to deal 50% more Area Damage", statOrder = { 9597 }, level = 1, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmChanceFor150%AreaDamage2"] = { type = "Prefix", affix = "Saboteur's", "Hits have (7-10)% chance to deal 50% more Area Damage", statOrder = { 9597 }, level = 60, group = "AnimalCharmChanceFor150%AreaDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCooldownRecoveryRate1"] = { type = "Prefix", affix = "Saboteur's", "(5-8)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 70, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmCooldownRecoveryRate2"] = { type = "Prefix", affix = "Saboteur's", "(9-12)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 81, group = "AnimalCharmCooldownRecoveryRate", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, + ["AnimalCharmChanceToThrow4AdditionalTraps1"] = { type = "Prefix", affix = "Saboteur's", "(2-3)% chance to throw up to 4 additional Traps", statOrder = { 5724 }, level = 1, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmChanceToThrow4AdditionalTraps2"] = { type = "Prefix", affix = "Saboteur's", "(4-5)% chance to throw up to 4 additional Traps", statOrder = { 5724 }, level = 60, group = "AnimalCharmChanceToThrow4AdditionalTraps", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmCritVsBurningAndShockedEnemies1"] = { type = "Prefix", affix = "Saboteur's", "+(10-15)% to Critical Strike Multiplier against Burning Enemies", "(20-30)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3188, 5913 }, level = 1, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmCritVsBurningAndShockedEnemies2"] = { type = "Prefix", affix = "Saboteur's", "+(16-25)% to Critical Strike Multiplier against Burning Enemies", "(31-50)% increased Critical Strike Chance against Shocked Enemies", statOrder = { 3188, 5913 }, level = 60, group = "AnimalCharmCritVsBurningAndShockedEnemies", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmChargeDuration1"] = { type = "Prefix", affix = "Trickster's", "(40-60)% increased Charge Duration", statOrder = { 5003 }, level = 1, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmChargeDuration2"] = { type = "Prefix", affix = "Trickster's", "(61-100)% increased Charge Duration", statOrder = { 5003 }, level = 60, group = "AnimalCharmChargeDuration", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmLifeManaESOnKill1"] = { type = "Suffix", affix = "of the Trickster", "Recover 1% of Life on Kill", "Recover 1% of Energy Shield on Kill", "Recover 1% of Mana on Kill", statOrder = { 1749, 1750, 1751 }, level = 1, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmLifeManaESOnKill2"] = { type = "Suffix", affix = "of the Trickster", "Recover 2% of Life on Kill", "Recover 2% of Energy Shield on Kill", "Recover 2% of Mana on Kill", statOrder = { 1749, 1750, 1751 }, level = 60, group = "AnimalCharmLifeManaESOnKill", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress1"] = { type = "Suffix", affix = "of the Trickster", "(5-8)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3423 }, level = 45, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmChanceForEnergyShieldRechargeOnSuppress2"] = { type = "Suffix", affix = "of the Trickster", "(9-12)% chance for Energy Shield Recharge to start when you Suppress Spell Damage", statOrder = { 3423 }, level = 72, group = "AnimalCharmChanceForEnergyShieldRechargeOnSuppress", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage1"] = { type = "Prefix", affix = "Trickster's", "(7-13)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4357 }, level = 45, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage2"] = { type = "Prefix", affix = "Trickster's", "(17-23)% chance to gain 25% of Non-Chaos Damage with Hits as Extra Chaos Damage", statOrder = { 4357 }, level = 72, group = "AnimalCharmChanceFor25%NonChaosToAddAsChaosDamage", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 125, 125, 0 }, modTags = { }, }, + ["AnimalCharmEvasionPerEnergyShieldOnHelmet1"] = { type = "Suffix", affix = "of the Trickster", "+(1-2) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1547 }, level = 1, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmEvasionPerEnergyShieldOnHelmet2"] = { type = "Suffix", affix = "of the Trickster", "+(3-4) to Evasion Rating per 1 Maximum Energy Shield on Equipped Helmet", statOrder = { 1547 }, level = 60, group = "AnimalCharmEvasionPerEnergyShieldOnHelmet", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield1"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(3-4)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1146 }, level = 70, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 50, 50, 0 }, modTags = { }, }, + ["AnimalCharmSpellDamageSuppressedOnFullEnergyShield2"] = { type = "Suffix", affix = "of the Trickster", "Prevent +(5-6)% of Suppressed Spell Damage while on Full Energy Shield", statOrder = { 1146 }, level = 81, group = "AnimalCharmSpellDamageSuppressedOnFullEnergyShield", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 25, 25, 0 }, modTags = { }, }, + ["AnimalCharmEnergyShieldLeech1"] = { type = "Prefix", affix = "Trickster's", "(0.5-1)% of Damage Leeched as Energy Shield", statOrder = { 1721 }, level = 1, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmEnergyShieldLeech2"] = { type = "Prefix", affix = "Trickster's", "(1.1-2)% of Damage Leeched as Energy Shield", statOrder = { 1721 }, level = 60, group = "AnimalCharmEnergyShieldLeech", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmRecover10PercentManaOnSkillUseChance1"] = { type = "Suffix", affix = "of the Trickster", "(4-6)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3475 }, level = 1, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 500, 500, 0 }, modTags = { }, }, + ["AnimalCharmRecover10PercentManaOnSkillUseChance2"] = { type = "Suffix", affix = "of the Trickster", "(7-10)% chance to Recover 10% of Mana when you use a Skill", statOrder = { 3475 }, level = 60, group = "AnimalCharmRecover10PercentManaOnSkillUseChance", weightKey = { "int_animal_charm", "dex_animal_charm", "default", }, weightVal = { 250, 250, 0 }, modTags = { }, }, + ["AnimalCharmNoBarrageSpread"] = { type = "Prefix", affix = "Deadeye's", "Projectile Barrages have no spread", statOrder = { 9480 }, level = 45, group = "AnimalCharmNoBarrageSpread", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMarkEffect1"] = { type = "Prefix", affix = "Deadeye's", "(10-15)% increased Effect of your Marks", statOrder = { 2598 }, level = 1, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmMarkEffect2"] = { type = "Prefix", affix = "Deadeye's", "(16-25)% increased Effect of your Marks", statOrder = { 2598 }, level = 60, group = "AnimalCharmMarkEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmProjectileChainFromTerrainChance1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (7-13)% chance to be able to Chain when colliding with terrain", statOrder = { 1827 }, level = 45, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmProjectileChainFromTerrainChance2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles have (14-20)% chance to be able to Chain when colliding with terrain", statOrder = { 1827 }, level = 72, group = "AnimalCharmProjectileChainFromTerrainChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmAdditionalProjectiles"] = { type = "Prefix", affix = "Deadeye's", "Skills fire an additional Projectile", statOrder = { 1792 }, level = 81, group = "AnimalCharmAdditionalProjectiles", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { }, }, + ["AnimalCharmMirageArcherDuration1"] = { type = "Suffix", affix = "of the Deadeye", "(30-50)% increased Mirage Archer Duration", statOrder = { 9375 }, level = 1, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmMirageArcherDuration2"] = { type = "Suffix", affix = "of the Deadeye", "(51-100)% increased Mirage Archer Duration", statOrder = { 9375 }, level = 60, group = "AnimalCharmMirageArcherDuration", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmProjectileDamageWithDistanceTravelled1"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (25-40)% increased Damage with Hits to targets", statOrder = { 4081, 4081.1 }, level = 1, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmProjectileDamageWithDistanceTravelled2"] = { type = "Prefix", affix = "Deadeye's", "Projectiles gain Damage as they travel farther, dealing up", "to (41-60)% increased Damage with Hits to targets", statOrder = { 4081, 4081.1 }, level = 60, group = "AnimalCharmProjectileDamageWithDistanceTravelled", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmLifeOnHitVsBleedingEnemies1"] = { type = "Suffix", affix = "of the Deadeye", "Gain (6-10) Life per Bleeding Enemy Hit", statOrder = { 3570 }, level = 1, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmLifeOnHitVsBleedingEnemies2"] = { type = "Suffix", affix = "of the Deadeye", "Gain (11-20) Life per Bleeding Enemy Hit", statOrder = { 3570 }, level = 60, group = "AnimalCharmLifeOnHitVsBleedingEnemies", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAccuracyIfCritInLast8Seconds1"] = { type = "Prefix", affix = "Deadeye's", "(7-13)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4521 }, level = 1, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmAccuracyIfCritInLast8Seconds2"] = { type = "Prefix", affix = "Deadeye's", "(14-20)% increased Accuracy Rating if you've dealt a Critical Strike in the past 8 seconds", statOrder = { 4521 }, level = 60, group = "AnimalCharmAccuracyIfCritInLast8Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmOnslaughtEffect1"] = { type = "Prefix", affix = "Raider's", "(15-25)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 1, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmOnslaughtEffect2"] = { type = "Prefix", affix = "Raider's", "(26-40)% increased Effect of Onslaught on you", statOrder = { 3290 }, level = 60, group = "AnimalCharmOnslaughtEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmPhasingOnKillChance1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 1, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmPhasingOnKillChance2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to gain Phasing for 4 seconds on Kill", statOrder = { 3465 }, level = 60, group = "AnimalCharmPhasingOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmSpellSuppressionChance1"] = { type = "Suffix", affix = "of the Raider", "+(5-9)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 1, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmSpellSuppressionChance2"] = { type = "Suffix", affix = "of the Raider", "+(10-15)% chance to Suppress Spell Damage", statOrder = { 1143 }, level = 60, group = "AnimalCharmSpellSuppressionChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing1"] = { type = "Suffix", affix = "of the Raider", "(10-15)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4942 }, level = 1, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmAvoidElementalAilmentsChanceWhilePhasing2"] = { type = "Suffix", affix = "of the Raider", "(16-25)% chance to Avoid Elemental Ailments while Phasing", statOrder = { 4942 }, level = 60, group = "AnimalCharmAvoidElementalAilmentsChanceWhilePhasing", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmOnslaughtOnKillChance1"] = { type = "Prefix", affix = "Raider's", "(10-15)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 1, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmOnslaughtOnKillChance2"] = { type = "Prefix", affix = "Raider's", "(16-25)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 3380 }, level = 60, group = "AnimalCharmOnslaughtOnKillChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmEvasionRatingPerFrenzyCharge1"] = { type = "Suffix", affix = "of the Raider", "(3-5)% increased Evasion Rating per Frenzy Charge", statOrder = { 1556 }, level = 1, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmEvasionRatingPerFrenzyCharge2"] = { type = "Suffix", affix = "of the Raider", "(6-9)% increased Evasion Rating per Frenzy Charge", statOrder = { 1556 }, level = 60, group = "AnimalCharmEvasionRatingPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMovementSpeedPerFrenzyCharge"] = { type = "Prefix", affix = "Raider's", "2% increased Movement Speed per Frenzy Charge", statOrder = { 1802 }, level = 70, group = "AnimalCharmMovementSpeedPerFrenzyCharge", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmFrenzyOnHItChance1"] = { type = "Prefix", affix = "Raider's", "(3-5)% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 45, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmFrenzyOnHItChance2"] = { type = "Prefix", affix = "Raider's", "(6-8)% chance to gain a Frenzy Charge on Hit", statOrder = { 1833 }, level = 72, group = "AnimalCharmFrenzyOnHItChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmFlaskChargesEvery3Seconds"] = { type = "Suffix", affix = "of the Pathfinder", "Flasks gain a Charge every 3 seconds", statOrder = { 3478 }, level = 81, group = "AnimalCharmFlaskChargesEvery3Seconds", weightKey = { "dex_animal_charm", "default", }, weightVal = { 20, 0 }, modTags = { "flask" }, }, + ["AnimalCharmRemoveBleedOnFlaskUse"] = { type = "Suffix", affix = "of the Pathfinder", "Removes Bleeding when you use a Flask", statOrder = { 3386 }, level = 45, group = "AnimalCharmRemoveBleedOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmMagicUtilityFlaskEffect1"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (6-10)% increased Effect", statOrder = { 2743 }, level = 70, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 100, 0 }, modTags = { }, }, + ["AnimalCharmMagicUtilityFlaskEffect2"] = { type = "Prefix", affix = "Pathfinder's", "Magic Utility Flasks applied to you have (11-15)% increased Effect", statOrder = { 2743 }, level = 81, group = "AnimalCharmMagicUtilityFlaskEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 50, 0 }, modTags = { }, }, + ["AnimalCharmWitheredOnHitChance1"] = { type = "Prefix", affix = "Pathfinder's", "(6-10)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4397 }, level = 45, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmWitheredOnHitChance2"] = { type = "Prefix", affix = "Pathfinder's", "(11-15)% chance to inflict Withered for 2 seconds on Hit", statOrder = { 4397 }, level = 72, group = "AnimalCharmWitheredOnHitChance", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmRecoverLifeOnFlaskUse1"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (2-3)% of Life when you use a Flask", statOrder = { 4342 }, level = 45, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmRecoverLifeOnFlaskUse2"] = { type = "Suffix", affix = "of the Pathfinder", "Recover (4-5)% of Life when you use a Flask", statOrder = { 4342 }, level = 72, group = "AnimalCharmRecoverLifeOnFlaskUse", weightKey = { "dex_animal_charm", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AnimalCharmWitheredEffect1"] = { type = "Prefix", affix = "Pathfinder's", "(7-13)% increased Effect of Withered", statOrder = { 10625 }, level = 1, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmWitheredEffect2"] = { type = "Prefix", affix = "Pathfinder's", "(14-20)% increased Effect of Withered", statOrder = { 10625 }, level = 60, group = "AnimalCharmWitheredEffect", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments1"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (15-25)% increased Flask Charges", statOrder = { 4249, 4249.1 }, level = 1, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmFlaskChargesGainedFromEnemiesWithAilments2"] = { type = "Suffix", affix = "of the Pathfinder", "Enemies you Kill that are affected by Elemental Ailments", "grant (26-40)% increased Flask Charges", statOrder = { 4249, 4249.1 }, level = 60, group = "AnimalCharmFlaskChargesGainedFromEnemiesWithAilments", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, + ["AnimalCharmPhysicalDamageAsRandomElement1"] = { type = "Prefix", affix = "Pathfinder's", "Gain (5-8)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 1, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["AnimalCharmPhysicalDamageAsRandomElement2"] = { type = "Prefix", affix = "Pathfinder's", "Gain (9-12)% of Physical Damage as Extra Damage of a random Element", statOrder = { 2936 }, level = 60, group = "AnimalCharmPhysicalDamageAsRandomElement", weightKey = { "dex_animal_charm", "default", }, weightVal = { 500, 0 }, modTags = { }, }, } \ No newline at end of file diff --git a/src/Data/ModJewelCluster.lua b/src/Data/ModJewelCluster.lua index 16eec7a306..cd502b00a2 100644 --- a/src/Data/ModJewelCluster.lua +++ b/src/Data/ModJewelCluster.lua @@ -2,561 +2,561 @@ -- Item data (c) Grinding Gear Games return { - ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1646 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, }, - ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2062 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1877 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1879 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1878 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3031 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, - ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, - ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3137 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, }, - ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3101 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, }, - ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3100 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, }, - ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3104 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3105 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, - ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3107 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, }, - ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3099 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, - ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5413 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10655 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, }, - ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, }, - ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1885 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, - ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1196 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, - ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4952 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1978 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, }, - ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2238 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2235 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3099 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, - ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2986 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2988 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2989 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2985 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7175 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, - ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1849, 1850 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1854 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4221 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1856 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, - ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1880 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, - ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1650 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, - ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 10018 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, - ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 9977 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, - ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 9968 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, - ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2175 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, }, - ["AfflictionNotableProdigiousDefense__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prodigious Defence", statOrder = { 7759 }, level = 1, group = "AfflictionNotableProdigiousDefense", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, }, - ["AfflictionNotableAdvanceGuard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Advance Guard", statOrder = { 7560 }, level = 50, group = "AfflictionNotableAdvanceGuard", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, - ["AfflictionNotableGladiatorialCombat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiatorial Combat", statOrder = { 7682 }, level = 68, group = "AfflictionNotableGladiatorialCombat", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, - ["AfflictionNotableStrikeLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Strike Leader", statOrder = { 7814 }, level = 1, group = "AfflictionNotableStrikeLeader", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, }, - ["AfflictionNotablePowerfulWard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Ward", statOrder = { 7749 }, level = 68, group = "AfflictionNotablePowerfulWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge" }, }, - ["AfflictionNotableEnduringWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Ward", statOrder = { 7650 }, level = 68, group = "AfflictionNotableEnduringWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge" }, }, - ["AfflictionNotableGladiatorsFortitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiator's Fortitude", statOrder = { 7683 }, level = 68, group = "AfflictionNotableGladiatorsFortitude", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_maximum_life", "default", }, weightVal = { 113, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, }, - ["AfflictionNotablePreciseRetaliation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Retaliation", statOrder = { 7753 }, level = 50, group = "AfflictionNotablePreciseRetaliation", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_critical_chance", "default", }, weightVal = { 300, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableVeteranDefender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Veteran Defender", statOrder = { 7836 }, level = 1, group = "AfflictionNotableVeteranDefender", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "elemental", "resistance", "attribute" }, }, - ["AfflictionNotableIronBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Iron Breaker", statOrder = { 7710 }, level = 1, group = "AfflictionNotableIronBreaker", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AfflictionNotableDeepCuts"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Cuts", statOrder = { 7628 }, level = 75, group = "AfflictionNotableDeepCuts", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack" }, }, - ["AfflictionNotableMastertheFundamentals_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master the Fundamentals", statOrder = { 7727 }, level = 50, group = "AfflictionNotableMastertheFundamentals", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "resistance" }, }, - ["AfflictionNotableForceMultiplier"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Force Multiplier", statOrder = { 7677 }, level = 50, group = "AfflictionNotableForceMultiplier", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, }, - ["AfflictionNotableFuriousAssault"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Furious Assault", statOrder = { 7680 }, level = 1, group = "AfflictionNotableFuriousAssault", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "damage", "physical", "attack", "caster" }, }, - ["AfflictionNotableViciousSkewering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Skewering", statOrder = { 7839 }, level = 68, group = "AfflictionNotableViciousSkewering", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 81, 141, 141, 151, 145, 151, 113, 117, 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AfflictionNotableGrimOath"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Grim Oath", statOrder = { 7687 }, level = 68, group = "AfflictionNotableGrimOath", weightKey = { "affliction_physical_damage", "affliction_chaos_damage", "default", }, weightVal = { 87, 97, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, - ["AfflictionNotableBattleHardened_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battle-Hardened", statOrder = { 7581 }, level = 50, group = "AfflictionNotableBattleHardened", weightKey = { "affliction_physical_damage", "affliction_armour", "affliction_evasion", "default", }, weightVal = { 232, 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "evasion", "physical" }, }, - ["AfflictionNotableReplenishingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Replenishing Presence", statOrder = { 7777 }, level = 50, group = "AfflictionNotableReplenishingPresence", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, }, - ["AfflictionNotableMasterofCommand__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Command", statOrder = { 7723 }, level = 68, group = "AfflictionNotableMasterofCommand", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, - ["AfflictionNotableFirstAmongEquals__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiteful Presence", statOrder = { 7672 }, level = 1, group = "AfflictionNotableFirstAmongEquals", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 960, 960, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "cold", "aura", "ailment" }, }, - ["AfflictionNotablePurposefulHarbinger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Purposeful Harbinger", statOrder = { 7766 }, level = 75, group = "AfflictionNotablePurposefulHarbinger", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 60, 60, 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, - ["AfflictionNotablePreciseCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Destructive Aspect", statOrder = { 7751 }, level = 68, group = "AfflictionNotablePreciseCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_critical_chance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, - ["AfflictionNotablePureCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Electric Presence", statOrder = { 7763 }, level = 68, group = "AfflictionNotablePureCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "aura", "ailment" }, }, - ["AfflictionNotableSummerCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mortifying Aspect", statOrder = { 7818 }, level = 68, group = "AfflictionNotableSummerCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "chaos", "resistance", "aura" }, }, - ["AfflictionNotableWinterCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Frantic Aspect", statOrder = { 7854 }, level = 68, group = "AfflictionNotableWinterCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_cold_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "speed", "aura" }, }, - ["AfflictionNotableGroundedCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Introspection", statOrder = { 7688 }, level = 68, group = "AfflictionNotableGroundedCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, }, - ["AfflictionNotableStalwartCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Volatile Presence", statOrder = { 7807 }, level = 50, group = "AfflictionNotableStalwartCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_armour", "affliction_evasion", "affliction_maximum_energy_shield", "default", }, weightVal = { 480, 480, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "fire", "aura", "ailment" }, }, - ["AfflictionNotableVengefulCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Righteous Path", statOrder = { 7835 }, level = 1, group = "AfflictionNotableVengefulCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 960, 960, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, - ["AfflictionNotableSkullbreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skullbreaker", statOrder = { 7798 }, level = 68, group = "AfflictionNotableSkullbreaker", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotablePressurePoints__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pressure Points", statOrder = { 7754 }, level = 50, group = "AfflictionNotablePressurePoints", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableOverwhelmingMalice"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overwhelming Malice", statOrder = { 7743 }, level = 68, group = "AfflictionNotableOverwhelmingMalice", weightKey = { "affliction_critical_chance", "affliction_chaos_damage", "default", }, weightVal = { 171, 97, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableMagnifier"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Magnifier", statOrder = { 7719 }, level = 1, group = "AfflictionNotableMagnifier", weightKey = { "affliction_critical_chance", "affliction_area_damage", "default", }, weightVal = { 914, 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableSavageResponse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savage Response", statOrder = { 7786 }, level = 50, group = "AfflictionNotableSavageResponse", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableEyeoftheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye of the Storm", statOrder = { 7660 }, level = 50, group = "AfflictionNotableEyeoftheStorm", weightKey = { "affliction_critical_chance", "affliction_fire_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 457, 366, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "critical", "ailment" }, }, - ["AfflictionNotableBasicsofPain"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Basics of Pain", statOrder = { 7580 }, level = 1, group = "AfflictionNotableBasicsofPain", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableQuickGetaway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick Getaway", statOrder = { 7768 }, level = 1, group = "AfflictionNotableQuickGetaway", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "critical" }, }, - ["AfflictionNotableAssertDominance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Assert Dominance", statOrder = { 7578 }, level = 68, group = "AfflictionNotableAssertDominance", weightKey = { "affliction_area_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableVastPower"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vast Power", statOrder = { 7834 }, level = 50, group = "AfflictionNotableVastPower", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotablePowerfulAssault_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Assault", statOrder = { 7748 }, level = 50, group = "AfflictionNotablePowerfulAssault", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableIntensity"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Intensity", statOrder = { 7708 }, level = 68, group = "AfflictionNotableIntensity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableTitanicSwings_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Titanic Swings", statOrder = { 7826 }, level = 50, group = "AfflictionNotableTitanicSwings", weightKey = { "affliction_area_damage", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 980, 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableToweringThreat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Towering Threat", statOrder = { 7828 }, level = 68, group = "AfflictionNotableToweringThreat", weightKey = { "affliction_area_damage", "affliction_maximum_life", "default", }, weightVal = { 367, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, - ["AfflictionNotableAncestralEcho"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Echo", statOrder = { 7566 }, level = 1, group = "AfflictionNotableAncestralEcho", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionNotableAncestralReach"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Reach", statOrder = { 7571 }, level = 1, group = "AfflictionNotableAncestralReach", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, - ["AfflictionNotableAncestralMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Might", statOrder = { 7569 }, level = 50, group = "AfflictionNotableAncestralMight", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableAncestralPreservation__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Preservation", statOrder = { 7570 }, level = 68, group = "AfflictionNotableAncestralPreservation", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance" }, }, - ["AfflictionNotableSnaringSpirits"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snaring Spirits", statOrder = { 7802 }, level = 50, group = "AfflictionNotableSnaringSpirits", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableSleeplessSentries"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sleepless Sentries", statOrder = { 7799 }, level = 68, group = "AfflictionNotableSleeplessSentries", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableAncestralGuidance_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Guidance", statOrder = { 7567 }, level = 50, group = "AfflictionNotableAncestralGuidance", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, - ["AfflictionNotableAncestralInspiration__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Inspiration", statOrder = { 7568 }, level = 68, group = "AfflictionNotableAncestralInspiration", weightKey = { "affliction_totem_damage", "affliction_spell_damage", "default", }, weightVal = { 277, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster" }, }, - ["AfflictionNotableVitalFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vital Focus", statOrder = { 7842 }, level = 1, group = "AfflictionNotableVitalFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 1811, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, }, - ["AfflictionNotableRapidInfusion_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unrestrained Focus", statOrder = { 7769 }, level = 68, group = "AfflictionNotableRapidInfusion", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 340, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, - ["AfflictionNotableUnwaveringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwavering Focus", statOrder = { 7832 }, level = 50, group = "AfflictionNotableUnwaveringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "damage" }, }, - ["AfflictionNotableEnduringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Focus", statOrder = { 7649 }, level = 75, group = "AfflictionNotableEnduringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "damage" }, }, - ["AfflictionNotablePreciseFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Focus", statOrder = { 7752 }, level = 50, group = "AfflictionNotablePreciseFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableStoicFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stoic Focus", statOrder = { 7809 }, level = 1, group = "AfflictionNotableStoicFocus", weightKey = { "affliction_channelling_skill_damage", "affliction_chance_to_block", "default", }, weightVal = { 1811, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage" }, }, - ["AfflictionNotableHexBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hex Breaker", statOrder = { 7696 }, level = 75, group = "AfflictionNotableHexBreaker", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "curse" }, }, - ["AfflictionNotableArcaneAdept_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Adept", statOrder = { 7574 }, level = 68, group = "AfflictionNotableArcaneAdept", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, }, - ["AfflictionNotableDistilledPerfection_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Distilled Perfection", statOrder = { 7637 }, level = 1, group = "AfflictionNotableDistilledPerfection", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana" }, }, - ["AfflictionNotableSpikedConcoction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiked Concoction", statOrder = { 7805 }, level = 50, group = "AfflictionNotableSpikedConcoction", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "attack", "caster", "speed" }, }, - ["AfflictionNotableFasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fasting", statOrder = { 7664 }, level = 50, group = "AfflictionNotableFasting", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "speed" }, }, - ["AfflictionNotableMendersWellspring__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mender's Wellspring", statOrder = { 7728 }, level = 68, group = "AfflictionNotableMendersWellspring", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, }, - ["AfflictionNotableSpecialReserve"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Special Reserve", statOrder = { 7804 }, level = 1, group = "AfflictionNotableSpecialReserve", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "damage" }, }, - ["AfflictionNotableNumbingElixir"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Numbing Elixir", statOrder = { 7737 }, level = 68, group = "AfflictionNotableNumbingElixir", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "caster", "ailment", "curse" }, }, - ["AfflictionNotableMobMentality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mob Mentality", statOrder = { 7731 }, level = 75, group = "AfflictionNotableMobMentality", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 109, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "damage", "attack" }, }, - ["AfflictionNotableCryWolf__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cry Wolf", statOrder = { 7619 }, level = 68, group = "AfflictionNotableCryWolf", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableHauntingShout"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haunting Shout", statOrder = { 7691 }, level = 50, group = "AfflictionNotableHauntingShout", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 873, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableLeadByExample__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lead By Example", statOrder = { 7712 }, level = 1, group = "AfflictionNotableLeadByExample", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, }, - ["AfflictionNotableProvocateur"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Provocateur", statOrder = { 7760 }, level = 50, group = "AfflictionNotableProvocateur", weightKey = { "affliction_warcry_buff_effect", "affliction_critical_chance", "default", }, weightVal = { 873, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableWarningCall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Warning Call", statOrder = { 7846 }, level = 68, group = "AfflictionNotableWarningCall", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, }, - ["AfflictionNotableRattlingBellow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rattling Bellow", statOrder = { 7770 }, level = 1, group = "AfflictionNotableRattlingBellow", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, }, - ["AfflictionNotableBloodscent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bloodscent", statOrder = { 7589 }, level = 75, group = "AfflictionNotableBloodscent", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, }, - ["AfflictionNotableRunThrough"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Run Through", statOrder = { 7782 }, level = 68, group = "AfflictionNotableRunThrough", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AfflictionNotableWoundAggravation____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wound Aggravation", statOrder = { 7858 }, level = 1, group = "AfflictionNotableWoundAggravation", weightKey = { "affliction_axe_and_sword_damage", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 750, 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AfflictionNotableOverlord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overlord", statOrder = { 7741 }, level = 75, group = "AfflictionNotableOverlord", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableExpansiveMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expansive Might", statOrder = { 7655 }, level = 68, group = "AfflictionNotableExpansiveMight", weightKey = { "affliction_mace_and_staff_damage", "affliction_area_damage", "default", }, weightVal = { 141, 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableWeightAdvantage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Weight Advantage", statOrder = { 7848 }, level = 1, group = "AfflictionNotableWeightAdvantage", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, }, - ["AfflictionNotableWindup_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wind-up", statOrder = { 7853 }, level = 68, group = "AfflictionNotableWindup", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "damage", "attack", "critical" }, }, - ["AfflictionNotableFanofBlades_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan of Blades", statOrder = { 7662 }, level = 75, group = "AfflictionNotableFanofBlades", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 51, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableDiseaseVector"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disease Vector", statOrder = { 7634 }, level = 50, group = "AfflictionNotableDiseaseVector", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 404, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["AfflictionNotableArcingShot__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcing Shot", statOrder = { 7577 }, level = 50, group = "AfflictionNotableArcingShot", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, - ["AfflictionNotableTemperedArrowheads"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempered Arrowheads", statOrder = { 7823 }, level = 50, group = "AfflictionNotableTemperedArrowheads", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "ailment" }, }, - ["AfflictionNotableBroadside_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Broadside", statOrder = { 7595 }, level = 1, group = "AfflictionNotableBroadside", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 774, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, }, - ["AfflictionNotableExplosiveForce"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Explosive Force", statOrder = { 7658 }, level = 68, group = "AfflictionNotableExplosiveForce", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, - ["AfflictionNotableOpportunisticFusilade_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Opportunistic Fusilade", statOrder = { 7740 }, level = 1, group = "AfflictionNotableOpportunisticFusilade", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 807, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, - ["AfflictionNotableStormsHand"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm's Hand", statOrder = { 7812 }, level = 50, group = "AfflictionNotableStormsHand", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 403, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, - ["AfflictionNotableBattlefieldDominator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battlefield Dominator", statOrder = { 7582 }, level = 1, group = "AfflictionNotableBattlefieldDominator", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableMartialMastery"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Mastery", statOrder = { 7720 }, level = 50, group = "AfflictionNotableMartialMastery", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "attribute" }, }, - ["AfflictionNotableSurefootedStriker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surefooted Striker", statOrder = { 7820 }, level = 50, group = "AfflictionNotableSurefootedStriker", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, - ["AfflictionNotableGracefulExecution_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Graceful Execution", statOrder = { 7684 }, level = 1, group = "AfflictionNotableGracefulExecution", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "critical", "attribute" }, }, - ["AfflictionNotableBrutalInfamy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brutal Infamy", statOrder = { 7597 }, level = 50, group = "AfflictionNotableBrutalInfamy", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableFearsomeWarrior"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fearsome Warrior", statOrder = { 7665 }, level = 68, group = "AfflictionNotableFearsomeWarrior", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableCombatRhythm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Combat Rhythm", statOrder = { 7611 }, level = 50, group = "AfflictionNotableCombatRhythm", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed" }, }, - ["AfflictionNotableHitandRun"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hit and Run", statOrder = { 7698 }, level = 1, group = "AfflictionNotableHitandRun", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 623, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableInsatiableKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insatiable Killer", statOrder = { 7705 }, level = 50, group = "AfflictionNotableInsatiableKiller", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "frenzy_charge", "attack", "speed" }, }, - ["AfflictionNotableMageBane__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Bane", statOrder = { 7717 }, level = 68, group = "AfflictionNotableMageBane", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_block", "default", }, weightVal = { 117, 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "damage", "attack" }, }, - ["AfflictionNotableMartialMomentum"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Momentum", statOrder = { 7721 }, level = 50, group = "AfflictionNotableMartialMomentum", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, - ["AfflictionNotableDeadlyRepartee"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deadly Repartee", statOrder = { 7626 }, level = 1, group = "AfflictionNotableDeadlyRepartee", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 623, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack", "critical" }, }, - ["AfflictionNotableQuickandDeadly_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick and Deadly", statOrder = { 7767 }, level = 68, group = "AfflictionNotableQuickandDeadly", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 117, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, - ["AfflictionNotableSmitetheWeak"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Smite the Weak", statOrder = { 7800 }, level = 1, group = "AfflictionNotableSmitetheWeak", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableHeavyHitter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Heavy Hitter", statOrder = { 7693 }, level = 50, group = "AfflictionNotableHeavyHitter", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableMartialProwess"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Martial Prowess", statOrder = { 7722 }, level = 1, group = "AfflictionNotableMartialProwess", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, - ["AfflictionNotableCalamitous"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Calamitous", statOrder = { 7600 }, level = 50, group = "AfflictionNotableCalamitous", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, }, - ["AfflictionNotableDevastator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Devastator", statOrder = { 7631 }, level = 75, group = "AfflictionNotableDevastator", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 27, 47, 47, 51, 48, 50, 38, 39, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["AfflictionNotableFueltheFight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fuel the Fight", statOrder = { 7679 }, level = 1, group = "AfflictionNotableFueltheFight", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack", "speed" }, }, - ["AfflictionNotableDrivetheDestruction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Drive the Destruction", statOrder = { 7643 }, level = 1, group = "AfflictionNotableDrivetheDestruction", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, }, - ["AfflictionNotableFeedtheFury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feed the Fury", statOrder = { 7668 }, level = 50, group = "AfflictionNotableFeedtheFury", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack", "speed" }, }, - ["AfflictionNotableSealMender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seal Mender", statOrder = { 7789 }, level = 75, group = "AfflictionNotableSealMender", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 94, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableConjuredWall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conjured Wall", statOrder = { 7614 }, level = 50, group = "AfflictionNotableConjuredWall", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "caster_damage", "damage", "caster" }, }, - ["AfflictionNotableArcaneHeroism_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Heroism", statOrder = { 7575 }, level = 68, group = "AfflictionNotableArcaneHeroism", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotablePracticedCaster"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Practiced Caster", statOrder = { 7750 }, level = 1, group = "AfflictionNotablePracticedCaster", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 1500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, }, - ["AfflictionNotableBurdenProjection"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burden Projection", statOrder = { 7598 }, level = 50, group = "AfflictionNotableBurdenProjection", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, }, - ["AfflictionNotableThaumophage"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Thaumophage", statOrder = { 7824 }, level = 50, group = "AfflictionNotableThaumophage", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "caster" }, }, - ["AfflictionNotableEssenceRush"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Essence Rush", statOrder = { 7652 }, level = 50, group = "AfflictionNotableEssenceRush", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "attack", "caster", "speed" }, }, - ["AfflictionNotableSapPsyche"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Sap Psyche", statOrder = { 7785 }, level = 68, group = "AfflictionNotableSapPsyche", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "resource", "mana", "defences", "energy_shield", "damage", "caster" }, }, - ["AfflictionNotableSadist_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sadist", statOrder = { 7783 }, level = 68, group = "AfflictionNotableSadist", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["AfflictionNotableCorrosiveElements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Corrosive Elements", statOrder = { 7617 }, level = 75, group = "AfflictionNotableCorrosiveElements", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 94, 45, 32, 30, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["AfflictionNotableDoryanisLesson_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Doryani's Lesson", statOrder = { 7640 }, level = 68, group = "AfflictionNotableDoryanisLesson", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental" }, }, - ["AfflictionNotableDisorientingDisplay____"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Disorienting Display", statOrder = { 7635 }, level = 50, group = "AfflictionNotableDisorientingDisplay", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 750, 364, 253, 238, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["AfflictionNotablePrismaticHeart__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Heart", statOrder = { 7758 }, level = 1, group = "AfflictionNotablePrismaticHeart", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 1500, 727, 505, 475, 1371, 1371, 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "resistance" }, }, - ["AfflictionNotableWidespreadDestruction"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Widespread Destruction", statOrder = { 7851 }, level = 1, group = "AfflictionNotableWidespreadDestruction", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 1500, 727, 505, 475, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, - ["AfflictionNotableMasterofFire"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fire", statOrder = { 7725 }, level = 75, group = "AfflictionNotableMasterofFire", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 30, 46, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableSmokingRemains"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Smoking Remains", statOrder = { 7801 }, level = 50, group = "AfflictionNotableSmokingRemains", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AfflictionNotableCremator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cremator", statOrder = { 7618 }, level = 50, group = "AfflictionNotableCremator", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AfflictionNotableSnowstorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snowstorm", statOrder = { 7803 }, level = 50, group = "AfflictionNotableSnowstorm", weightKey = { "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 364, 253, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, - ["AfflictionNotableStormDrinker___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm Drinker", statOrder = { 7810 }, level = 1, group = "AfflictionNotableStormDrinker", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 727, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "defences", "energy_shield", "damage", "elemental", "lightning" }, }, - ["AfflictionNotableParalysis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Paralysis", statOrder = { 7744 }, level = 50, group = "AfflictionNotableParalysis", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AfflictionNotableSupercharge"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Supercharge", statOrder = { 7819 }, level = 75, group = "AfflictionNotableSupercharge", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["AfflictionNotableBlanketedSnow_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blanketed Snow", statOrder = { 7584 }, level = 68, group = "AfflictionNotableBlanketedSnow", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AfflictionNotableColdtotheCore"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold to the Core", statOrder = { 7610 }, level = 68, group = "AfflictionNotableColdtotheCore", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["AfflictionNotableColdBloodedKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold-Blooded Killer", statOrder = { 7608 }, level = 50, group = "AfflictionNotableColdBloodedKiller", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 253, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental", "cold" }, }, - ["AfflictionNotableTouchofCruelty_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Touch of Cruelty", statOrder = { 7827 }, level = 1, group = "AfflictionNotableTouchofCruelty", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableUnwaveringlyEvil"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwaveringly Evil", statOrder = { 7833 }, level = 1, group = "AfflictionNotableUnwaveringlyEvil", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 519, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableUnspeakableGifts"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unspeakable Gifts", statOrder = { 7830 }, level = 75, group = "AfflictionNotableUnspeakableGifts", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 32, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableDarkIdeation"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Ideation", statOrder = { 7623 }, level = 68, group = "AfflictionNotableDarkIdeation", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 97, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableUnholyGrace_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unholy Grace", statOrder = { 7829 }, level = 1, group = "AfflictionNotableUnholyGrace", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster", "speed" }, }, - ["AfflictionNotableWickedPall_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wicked Pall", statOrder = { 7850 }, level = 50, group = "AfflictionNotableWickedPall", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 259, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableRenewal"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Renewal", statOrder = { 7775 }, level = 50, group = "AfflictionNotableRenewal", weightKey = { "affliction_minion_damage", "affliction_minion_life", "default", }, weightVal = { 500, 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, - ["AfflictionNotableRazeandPillage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Raze and Pillage", statOrder = { 7771 }, level = 68, group = "AfflictionNotableRazeandPillage", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "bleed", "damage", "physical", "elemental", "fire", "minion", "ailment" }, }, - ["AfflictionNotableRottenClaws"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rotten Claws", statOrder = { 7781 }, level = 50, group = "AfflictionNotableRottenClaws", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack", "minion" }, }, - ["AfflictionNotableCalltotheSlaughter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Call to the Slaughter", statOrder = { 7601 }, level = 1, group = "AfflictionNotableCalltotheSlaughter", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed", "minion" }, }, - ["AfflictionNotableSkeletalAtrophy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skeletal Atrophy", statOrder = { 7797 }, level = 68, group = "AfflictionNotableSkeletalAtrophy", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, }, - ["AfflictionNotableHulkingCorpses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hulking Corpses", statOrder = { 7703 }, level = 50, group = "AfflictionNotableHulkingCorpses", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionNotableViciousBite"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Vicious Bite", statOrder = { 7837 }, level = 75, group = "AfflictionNotableViciousBite", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "minion", "critical" }, }, - ["AfflictionNotablePrimordialBond"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Primordial Bond", statOrder = { 7755 }, level = 68, group = "AfflictionNotablePrimordialBond", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, - ["AfflictionNotableBlowback"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blowback", statOrder = { 7590 }, level = 50, group = "AfflictionNotableBlowback", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["AfflictionNotableFantheFlames_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan the Flames", statOrder = { 7663 }, level = 68, group = "AfflictionNotableFantheFlames", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, }, - ["AfflictionNotableCookedAlive"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cooked Alive", statOrder = { 7616 }, level = 68, group = "AfflictionNotableCookedAlive", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, - ["AfflictionNotableBurningBright"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burning Bright", statOrder = { 7599 }, level = 50, group = "AfflictionNotableBurningBright", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_fire_damage", "default", }, weightVal = { 366, 238, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AfflictionNotableWrappedinFlame_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wrapped in Flame", statOrder = { 7859 }, level = 68, group = "AfflictionNotableWrappedinFlame", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AfflictionNotableVividHues"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vivid Hues", statOrder = { 7843 }, level = 50, group = "AfflictionNotableVividHues", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "resource", "life", "physical", "attack", "ailment" }, }, - ["AfflictionNotableRend"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rend", statOrder = { 7774 }, level = 50, group = "AfflictionNotableRend", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AfflictionNotableDisorientingWounds"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disorienting Wounds", statOrder = { 7636 }, level = 1, group = "AfflictionNotableDisorientingWounds", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AfflictionNotableCompoundInjury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Compound Injury", statOrder = { 7612 }, level = 50, group = "AfflictionNotableCompoundInjury", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["AfflictionNotableBloodArtist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blood Artist", statOrder = { 7588 }, level = 75, group = "AfflictionNotableBloodArtist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "ailment" }, }, - ["AfflictionNotablePhlebotomist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Phlebotomist", statOrder = { 7747 }, level = 50, group = "AfflictionNotablePhlebotomist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "critical", "ailment" }, }, - ["AfflictionNotableSepticSpells"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Septic Spells", statOrder = { 7793 }, level = 50, group = "AfflictionNotableSepticSpells", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "speed", "ailment" }, }, - ["AfflictionNotableLowTolerance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Low Tolerance", statOrder = { 7716 }, level = 68, group = "AfflictionNotableLowTolerance", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, - ["AfflictionNotableSteadyTorment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Steady Torment", statOrder = { 7808 }, level = 68, group = "AfflictionNotableSteadyTorment", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 130, 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "damage", "physical", "chaos", "attack", "ailment", "ailment" }, }, - ["AfflictionNotableEternalSuffering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eternal Suffering", statOrder = { 7653 }, level = 50, group = "AfflictionNotableEternalSuffering", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, - ["AfflictionNotableEldritchInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eldritch Inspiration", statOrder = { 7644 }, level = 50, group = "AfflictionNotableEldritchInspiration", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_mana", "default", }, weightVal = { 348, 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "resource", "mana", "damage", "chaos" }, }, - ["AfflictionNotableWastingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wasting Affliction", statOrder = { 7847 }, level = 68, group = "AfflictionNotableWastingAffliction", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 222, 178, 129, 137, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, - ["AfflictionNotableHaemorrhage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haemorrhage", statOrder = { 7690 }, level = 50, group = "AfflictionNotableHaemorrhage", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_critical_chance", "default", }, weightVal = { 593, 475, 343, 366, 348, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical", "ailment" }, }, - ["AfflictionNotableFlowofLife_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flow of Life", statOrder = { 7675 }, level = 68, group = "AfflictionNotableFlowofLife", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, }, - ["AfflictionNotableExposureTherapy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exposure Therapy", statOrder = { 7659 }, level = 1, group = "AfflictionNotableExposureTherapy", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_chaos_resistance", "default", }, weightVal = { 1185, 950, 686, 733, 696, 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["AfflictionNotableBrushwithDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brush with Death", statOrder = { 7596 }, level = 68, group = "AfflictionNotableBrushwithDeath", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield", "damage" }, }, - ["AfflictionNotableVileReinvigoration_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vile Reinvigoration", statOrder = { 7841 }, level = 50, group = "AfflictionNotableVileReinvigoration", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_energy_shield", "default", }, weightVal = { 593, 475, 343, 366, 348, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "damage" }, }, - ["AfflictionNotableCirclingOblivion"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Circling Oblivion", statOrder = { 7606 }, level = 1, group = "AfflictionNotableCirclingOblivion", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1185, 950, 686, 733, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, - ["AfflictionNotableBrewedforPotency"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brewed for Potency", statOrder = { 7594 }, level = 1, group = "AfflictionNotableBrewedforPotency", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_flask_duration", "default", }, weightVal = { 1185, 950, 686, 733, 696, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana", "damage" }, }, - ["AfflictionNotableAstonishingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Astonishing Affliction", statOrder = { 7579 }, level = 1, group = "AfflictionNotableAstonishingAffliction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 1627, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, - ["AfflictionNotableColdConduction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold Conduction", statOrder = { 7609 }, level = 68, group = "AfflictionNotableColdConduction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, - ["AfflictionNotableInspiredOppression"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Inspired Oppression", statOrder = { 7706 }, level = 75, group = "AfflictionNotableInspiredOppression", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 102, 94, 45, 32, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "ailment" }, }, - ["AfflictionNotableChillingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chilling Presence", statOrder = { 7604 }, level = 75, group = "AfflictionNotableChillingPresence", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 102, 59, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, }, - ["AfflictionNotableDeepChill"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Chill", statOrder = { 7627 }, level = 1, group = "AfflictionNotableDeepChill", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 1627, 505, 950, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, }, - ["AfflictionNotableBlastFreeze_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blast-Freeze", statOrder = { 7585 }, level = 68, group = "AfflictionNotableBlastFreeze", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 95, 178, 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, }, - ["AfflictionNotableThunderstruck"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Thunderstruck", statOrder = { 7825 }, level = 50, group = "AfflictionNotableThunderstruck", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, }, - ["AfflictionNotableStormrider"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stormrider", statOrder = { 7811 }, level = 68, group = "AfflictionNotableStormrider", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_lightning_damage", "default", }, weightVal = { 305, 95, 136, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, - ["AfflictionNotableOvershock"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overshock", statOrder = { 7742 }, level = 50, group = "AfflictionNotableOvershock", weightKey = { "affliction_lightning_damage", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 364, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AfflictionNotableEvilEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7654 }, level = 1, group = "AfflictionNotableEvilEye", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, - ["AfflictionNotableWhispersofDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7849 }, level = 1, group = "AfflictionNotableWhispersofDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableWardbreaker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Forbidden Words", statOrder = { 7845 }, level = 68, group = "AfflictionNotableWardbreaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "caster", "curse" }, }, - ["AfflictionNotableDarkDiscourse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Spite", statOrder = { 7622 }, level = 50, group = "AfflictionNotableDarkDiscourse", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableVictimMaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Victim Maker", statOrder = { 7840 }, level = 50, group = "AfflictionNotableVictimMaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, }, - ["AfflictionNotableMasterofFear"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fear", statOrder = { 7724 }, level = 68, group = "AfflictionNotableMasterofFear", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableWishforDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wish for Death", statOrder = { 7856 }, level = 50, group = "AfflictionNotableWishforDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableLordofDrought_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lord of Drought", statOrder = { 7673 }, level = 50, group = "AfflictionNotableLordofDrought", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_fire_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableBlizzardCaller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blizzard Caller", statOrder = { 7678 }, level = 50, group = "AfflictionNotableBlizzardCaller", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_cold_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "critical", "curse" }, }, - ["AfflictionNotableTempttheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempt the Storm", statOrder = { 7714 }, level = 50, group = "AfflictionNotableTempttheStorm", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_lightning_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, }, - ["AfflictionNotableMiseryEverlasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Misery Everlasting", statOrder = { 7629 }, level = 50, group = "AfflictionNotableMiseryEverlasting", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_chaos_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableExploitWeakness_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exploit Weakness", statOrder = { 7694 }, level = 50, group = "AfflictionNotableExploitWeakness", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_physical_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster", "curse" }, }, - ["AfflictionNotableHoundsMark"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hound's Mark", statOrder = { 7702 }, level = 1, group = "AfflictionNotableHoundsMark", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, - ["AfflictionNotableDoedresGluttony"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Gluttony", statOrder = { 7639 }, level = 50, group = "AfflictionNotableDoedresGluttony", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, - ["AfflictionNotableDoedresApathy____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Apathy", statOrder = { 7638 }, level = 68, group = "AfflictionNotableDoedresApathy", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 132, 132, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, - ["AfflictionNotableMasterOfTheMaelstrom_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of the Maelstrom", statOrder = { 7726 }, level = 50, group = "AfflictionNotableMasterOfTheMaelstrom", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "caster", "ailment", "curse" }, }, - ["AfflictionNotableHeraldry"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heraldry", statOrder = { 7695 }, level = 75, group = "AfflictionNotableHeraldry", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableEndbringer"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Endbringer", statOrder = { 7647 }, level = 68, group = "AfflictionNotableEndbringer", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableCultLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cult-Leader", statOrder = { 7620 }, level = 1, group = "AfflictionNotableCultLeader", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 2526, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, }, - ["AfflictionNotableEmpoweredEnvoy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Empowered Envoy", statOrder = { 7646 }, level = 1, group = "AfflictionNotableEmpoweredEnvoy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableDarkMessenger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Messenger", statOrder = { 7624 }, level = 50, group = "AfflictionNotableDarkMessenger", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 941, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableAgentofDestruction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Agent of Destruction", statOrder = { 7563 }, level = 1, group = "AfflictionNotableAgentofDestruction", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AfflictionNotableLastingImpression_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lasting Impression", statOrder = { 7711 }, level = 68, group = "AfflictionNotableLastingImpression", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableSelfFulfillingProphecy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Fulfilling Prophecy", statOrder = { 7792 }, level = 68, group = "AfflictionNotableSelfFulfillingProphecy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, - ["AfflictionNotableInvigoratingPortents"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Invigorating Portents", statOrder = { 7709 }, level = 50, group = "AfflictionNotableInvigoratingPortents", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 1263, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, }, - ["AfflictionNotablePureAgony_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Agony", statOrder = { 7761 }, level = 68, group = "AfflictionNotablePureAgony", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, }, - ["AfflictionNotableDisciples_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disciples", statOrder = { 7632 }, level = 68, group = "AfflictionNotableDisciples", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, }, - ["AfflictionNotableDreadMarch_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dread March", statOrder = { 7642 }, level = 1, group = "AfflictionNotableDreadMarch", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1433, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance", "speed", "minion" }, }, - ["AfflictionNotableBlessedRebirth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed Rebirth", statOrder = { 7587 }, level = 68, group = "AfflictionNotableBlessedRebirth", weightKey = { "affliction_minion_life", "default", }, weightVal = { 269, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionNotableLifefromDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Life from Death", statOrder = { 7713 }, level = 50, group = "AfflictionNotableLifefromDeath", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionNotableFeastingFiends"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feasting Fiends", statOrder = { 7667 }, level = 1, group = "AfflictionNotableFeastingFiends", weightKey = { "affliction_minion_life", "affliction_minion_damage", "default", }, weightVal = { 1433, 1000, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, - ["AfflictionNotableBodyguards"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bodyguards", statOrder = { 7591 }, level = 50, group = "AfflictionNotableBodyguards", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionNotableFollowThrough_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Follow-Through", statOrder = { 7676 }, level = 68, group = "AfflictionNotableFollowThrough", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableStreamlined"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Streamlined", statOrder = { 7813 }, level = 1, group = "AfflictionNotableStreamlined", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, - ["AfflictionNotableShriekingBolts_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shrieking Bolts", statOrder = { 7796 }, level = 50, group = "AfflictionNotableShriekingBolts", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableEyetoEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye to Eye", statOrder = { 7661 }, level = 50, group = "AfflictionNotableEyetoEye", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableRepeater"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Repeater", statOrder = { 7776 }, level = 1, group = "AfflictionNotableRepeater", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, }, - ["AfflictionNotableAerodynamics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerodynamics", statOrder = { 7562 }, level = 68, group = "AfflictionNotableAerodynamics", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, - ["AfflictionNotableChipAway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chip Away", statOrder = { 7605 }, level = 50, group = "AfflictionNotableChipAway", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, - ["AfflictionNotableSeekerRunes"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seeker Runes", statOrder = { 7791 }, level = 68, group = "AfflictionNotableSeekerRunes", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, }, - ["AfflictionNotableRemarkable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Remarkable", statOrder = { 7773 }, level = 68, group = "AfflictionNotableRemarkable", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, - ["AfflictionNotableBrandLoyalty"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brand Loyalty", statOrder = { 7593 }, level = 1, group = "AfflictionNotableBrandLoyalty", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, }, - ["AfflictionNotableHolyConquest"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Conquest", statOrder = { 7700 }, level = 50, group = "AfflictionNotableHolyConquest", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, - ["AfflictionNotableGrandDesign_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Grand Design", statOrder = { 7686 }, level = 68, group = "AfflictionNotableGrandDesign", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, - ["AfflictionNotableSetandForget_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Set and Forget", statOrder = { 7794 }, level = 50, group = "AfflictionNotableSetandForget", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableExpertSabotage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expert Sabotage", statOrder = { 7657 }, level = 50, group = "AfflictionNotableExpertSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, - ["AfflictionNotableGuerillaTactics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Guerilla Tactics", statOrder = { 7689 }, level = 1, group = "AfflictionNotableGuerillaTactics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, - ["AfflictionNotableExpendability"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expendability", statOrder = { 7656 }, level = 68, group = "AfflictionNotableExpendability", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableArcanePyrotechnics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Pyrotechnics", statOrder = { 7576 }, level = 68, group = "AfflictionNotableArcanePyrotechnics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableSurpriseSabotage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surprise Sabotage", statOrder = { 7822 }, level = 50, group = "AfflictionNotableSurpriseSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, - ["AfflictionNotableCarefulHandling"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Careful Handling", statOrder = { 7603 }, level = 68, group = "AfflictionNotableCarefulHandling", weightKey = { "affliction_trap_and_mine_damage", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 367, 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "damage" }, }, - ["AfflictionNotablePeakVigour"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peak Vigour", statOrder = { 7746 }, level = 1, group = "AfflictionNotablePeakVigour", weightKey = { "affliction_maximum_life", "affliction_flask_duration", "default", }, weightVal = { 780, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, }, - ["AfflictionNotableFettle"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fettle", statOrder = { 7669 }, level = 75, group = "AfflictionNotableFettle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, - ["AfflictionNotableFeastofFlesh"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feast of Flesh", statOrder = { 7666 }, level = 68, group = "AfflictionNotableFeastofFlesh", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attack" }, }, - ["AfflictionNotableSublimeSensation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Sensation", statOrder = { 7817 }, level = 50, group = "AfflictionNotableSublimeSensation", weightKey = { "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 390, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["AfflictionNotableSurgingVitality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surging Vitality", statOrder = { 7821 }, level = 1, group = "AfflictionNotableSurgingVitality", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, - ["AfflictionNotablePeaceAmidstChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peace Amidst Chaos", statOrder = { 7745 }, level = 50, group = "AfflictionNotablePeaceAmidstChaos", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, }, - ["AfflictionNotableAdrenaline_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Adrenaline", statOrder = { 7559 }, level = 68, group = "AfflictionNotableAdrenaline", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, - ["AfflictionNotableWallofMuscle_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wall of Muscle", statOrder = { 7844 }, level = 75, group = "AfflictionNotableWallofMuscle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attribute" }, }, - ["AfflictionNotableMindfulness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mindfulness", statOrder = { 7730 }, level = 50, group = "AfflictionNotableMindfulness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, - ["AfflictionNotableLiquidInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Liquid Inspiration", statOrder = { 7715 }, level = 68, group = "AfflictionNotableLiquidInspiration", weightKey = { "affliction_maximum_mana", "affliction_flask_duration", "default", }, weightVal = { 175, 202, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "power_charge", "resource", "mana" }, }, - ["AfflictionNotableOpenness__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Openness", statOrder = { 7739 }, level = 1, group = "AfflictionNotableOpenness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, - ["AfflictionNotableDaringIdeas"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Daring Ideas", statOrder = { 7621 }, level = 50, group = "AfflictionNotableDaringIdeas", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, }, - ["AfflictionNotableClarityofPurpose"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Clarity of Purpose", statOrder = { 7607 }, level = 1, group = "AfflictionNotableClarityofPurpose", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, - ["AfflictionNotableScintillatingIdea_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Scintillating Idea", statOrder = { 7788 }, level = 50, group = "AfflictionNotableScintillatingIdea", weightKey = { "affliction_maximum_mana", "affliction_lightning_damage", "default", }, weightVal = { 466, 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "lightning" }, }, - ["AfflictionNotableHolisticHealth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holistic Health", statOrder = { 7699 }, level = 68, group = "AfflictionNotableHolisticHealth", weightKey = { "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana" }, }, - ["AfflictionNotableGenius"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Genius", statOrder = { 7681 }, level = 75, group = "AfflictionNotableGenius", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, - ["AfflictionNotableImprovisor"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Improvisor", statOrder = { 7704 }, level = 68, group = "AfflictionNotableImprovisor", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, }, - ["AfflictionNotableStubbornStudent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stubborn Student", statOrder = { 7815 }, level = 68, group = "AfflictionNotableStubbornStudent", weightKey = { "affliction_maximum_mana", "affliction_armour", "default", }, weightVal = { 175, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "armour" }, }, - ["AfflictionNotableSavourtheMoment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savour the Moment", statOrder = { 7787 }, level = 1, group = "AfflictionNotableSavourtheMoment", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionNotableEnergyFromNaught"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Energy From Naught", statOrder = { 7651 }, level = 50, group = "AfflictionNotableEnergyFromNaught", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionNotableWillShaper"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Will Shaper", statOrder = { 7852 }, level = 75, group = "AfflictionNotableWillShaper", weightKey = { "affliction_maximum_energy_shield", "affliction_maximum_mana", "default", }, weightVal = { 63, 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionNotableSpringBack_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spring Back", statOrder = { 7806 }, level = 1, group = "AfflictionNotableSpringBack", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionNotableConservationofEnergy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conservation of Energy", statOrder = { 7615 }, level = 68, group = "AfflictionNotableConservationofEnergy", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "caster" }, }, - ["AfflictionNotableSelfControl"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Control", statOrder = { 7633 }, level = 50, group = "AfflictionNotableSelfControl", weightKey = { "affliction_maximum_energy_shield", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 505, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, - ["AfflictionNotableHeartofIron"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heart of Iron", statOrder = { 7692 }, level = 68, group = "AfflictionNotableHeartofIron", weightKey = { "affliction_maximum_life", "affliction_armour", "default", }, weightVal = { 146, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, }, - ["AfflictionNotablePrismaticCarapace_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Carapace", statOrder = { 7756 }, level = 75, group = "AfflictionNotablePrismaticCarapace", weightKey = { "affliction_armour", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 87, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "resistance" }, }, - ["AfflictionNotableMilitarism"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Militarism", statOrder = { 7729 }, level = 50, group = "AfflictionNotableMilitarism", weightKey = { "affliction_armour", "default", }, weightVal = { 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, }, - ["AfflictionNotableSecondSkin"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Second Skin", statOrder = { 7790 }, level = 1, group = "AfflictionNotableSecondSkin", weightKey = { "affliction_armour", "affliction_chance_to_block", "default", }, weightVal = { 1391, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "armour" }, }, - ["AfflictionNotableDragonHunter__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dragon Hunter", statOrder = { 7641 }, level = 50, group = "AfflictionNotableDragonHunter", weightKey = { "affliction_armour", "affliction_fire_resistance", "default", }, weightVal = { 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "fire", "resistance" }, }, - ["AfflictionNotableEnduringComposure"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Composure", statOrder = { 7648 }, level = 68, group = "AfflictionNotableEnduringComposure", weightKey = { "affliction_armour", "default", }, weightVal = { 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "defences", "armour" }, }, - ["AfflictionNotableUncompromising_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Uncompromising", statOrder = { 7630 }, level = 50, group = "AfflictionNotableUncompromising", weightKey = { "affliction_armour", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 696, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, - ["AfflictionNotablePrismaticDance____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Dance", statOrder = { 7757 }, level = 75, group = "AfflictionNotablePrismaticDance", weightKey = { "affliction_evasion", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 82, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "elemental", "resistance" }, }, - ["AfflictionNotableNaturalVigour_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Natural Vigour", statOrder = { 7734 }, level = 50, group = "AfflictionNotableNaturalVigour", weightKey = { "affliction_evasion", "affliction_maximum_life", "default", }, weightVal = { 658, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "evasion" }, }, - ["AfflictionNotableUntouchable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Untouchable", statOrder = { 7831 }, level = 1, group = "AfflictionNotableUntouchable", weightKey = { "affliction_evasion", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1315, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion" }, }, - ["AfflictionNotableShiftingShadow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shifting Shadow", statOrder = { 7795 }, level = 50, group = "AfflictionNotableShiftingShadow", weightKey = { "affliction_evasion", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "attribute" }, }, - ["AfflictionNotableReadiness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Readiness", statOrder = { 7772 }, level = 1, group = "AfflictionNotableReadiness", weightKey = { "affliction_evasion", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "defences", "evasion", "physical", "attack", "ailment" }, }, - ["AfflictionNotableSublimeForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Form", statOrder = { 7685 }, level = 50, group = "AfflictionNotableSublimeForm", weightKey = { "affliction_evasion", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 658, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "resistance" }, }, - ["AfflictionNotableConfidentCombatant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Confident Combatant", statOrder = { 7613 }, level = 68, group = "AfflictionNotableConfidentCombatant", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, - ["AfflictionNotableFlexibleSentry___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flexible Sentry", statOrder = { 7674 }, level = 50, group = "AfflictionNotableFlexibleSentry", weightKey = { "affliction_chance_to_block", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 375, 686, 686, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "ailment" }, }, - ["AfflictionNotableViciousGuard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Guard", statOrder = { 7838 }, level = 1, group = "AfflictionNotableViciousGuard", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 750, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "attack" }, }, - ["AfflictionNotableMysticalWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mystical Ward", statOrder = { 7733 }, level = 1, group = "AfflictionNotableMysticalWard", weightKey = { "affliction_chance_to_block", "affliction_maximum_energy_shield", "default", }, weightVal = { 750, 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "energy_shield" }, }, - ["AfflictionNotableRoteReinforcement"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rote Reinforcement", statOrder = { 7780 }, level = 68, group = "AfflictionNotableRoteReinforcement", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 141, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge", "resource", "life" }, }, - ["AfflictionNotableMageHunter___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Hunter", statOrder = { 7718 }, level = 68, group = "AfflictionNotableMageHunter", weightKey = { "affliction_chance_to_block", "affliction_spell_damage", "default", }, weightVal = { 141, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "caster_damage", "damage", "caster" }, }, - ["AfflictionNotableRiotQueller"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Riot Queller", statOrder = { 7778 }, level = 75, group = "AfflictionNotableRiotQueller", weightKey = { "affliction_chance_to_block", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 47, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block" }, }, - ["AfflictionNotableOnewiththeShield_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is One with the Shield", statOrder = { 7738 }, level = 50, group = "AfflictionNotableOnewiththeShield", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 375, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "defences" }, }, - ["AfflictionNotableAerialist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerialist", statOrder = { 7561 }, level = 75, group = "AfflictionNotableAerialist", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 92, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, }, - ["AfflictionNotableElegantForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Elegant Form", statOrder = { 7645 }, level = 1, group = "AfflictionNotableElegantForm", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "ailment" }, }, - ["AfflictionNotableDartingMovements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Darting Movements", statOrder = { 7625 }, level = 1, group = "AfflictionNotableDartingMovements", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, - ["AfflictionNotableNoWitnesses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is No Witnesses", statOrder = { 7735 }, level = 75, group = "AfflictionNotableNoWitnesses", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, - ["AfflictionNotableMoltenOnesMark_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Molten One's Mark", statOrder = { 7732 }, level = 68, group = "AfflictionNotableMoltenOnesMark", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 247, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, - ["AfflictionNotableFireAttunement_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fire Attunement", statOrder = { 7671 }, level = 1, group = "AfflictionNotableFireAttunement", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, }, - ["AfflictionNotablePureMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Might", statOrder = { 7765 }, level = 68, group = "AfflictionNotablePureMight", weightKey = { "affliction_fire_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 247, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, - ["AfflictionNotableBlacksmith_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blacksmith", statOrder = { 7583 }, level = 68, group = "AfflictionNotableBlacksmith", weightKey = { "affliction_fire_resistance", "affliction_armour", "default", }, weightVal = { 247, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour", "elemental", "fire", "resistance" }, }, - ["AfflictionNotableNonFlammable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Non-Flammable", statOrder = { 7736 }, level = 50, group = "AfflictionNotableNonFlammable", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "resistance", "ailment" }, }, - ["AfflictionNotableWinterProwler"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Winter Prowler", statOrder = { 7855 }, level = 68, group = "AfflictionNotableWinterProwler", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 257, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "speed" }, }, - ["AfflictionNotableHibernator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hibernator", statOrder = { 7697 }, level = 50, group = "AfflictionNotableHibernator", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, }, - ["AfflictionNotablePureGuile"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Guile", statOrder = { 7764 }, level = 68, group = "AfflictionNotablePureGuile", weightKey = { "affliction_cold_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, - ["AfflictionNotableAlchemist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Alchemist", statOrder = { 7565 }, level = 1, group = "AfflictionNotableAlchemist", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 1371, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "elemental", "cold", "resistance", "attack", "caster", "speed" }, }, - ["AfflictionNotableAntifreeze"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antifreeze", statOrder = { 7572 }, level = 50, group = "AfflictionNotableAntifreeze", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "ailment" }, }, - ["AfflictionNotableWizardry_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wizardry", statOrder = { 7857 }, level = 68, group = "AfflictionNotableWizardry", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "default", }, weightVal = { 257, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "resistance" }, }, - ["AfflictionNotableCapacitor____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Capacitor", statOrder = { 7602 }, level = 50, group = "AfflictionNotableCapacitor", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, }, - ["AfflictionNotablePureAptitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Aptitude", statOrder = { 7762 }, level = 68, group = "AfflictionNotablePureAptitude", weightKey = { "affliction_lightning_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "energy_shield", "attribute" }, }, - ["AfflictionNotableSage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sage", statOrder = { 7784 }, level = 1, group = "AfflictionNotableSage", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 1371, 932, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "elemental", "lightning", "resistance" }, }, - ["AfflictionNotableInsulated"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insulated", statOrder = { 7707 }, level = 50, group = "AfflictionNotableInsulated", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "resistance", "ailment" }, }, - ["AfflictionNotableBornofChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Born of Chaos", statOrder = { 7592 }, level = 68, group = "AfflictionNotableBornofChaos", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos", "resistance" }, }, - ["AfflictionNotableAntivenom"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antivenom", statOrder = { 7573 }, level = 50, group = "AfflictionNotableAntivenom", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "poison", "chaos", "resistance", "ailment" }, }, - ["AfflictionNotableRotResistant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rot-Resistant", statOrder = { 7779 }, level = 68, group = "AfflictionNotableRotResistant", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "defences", "energy_shield", "chaos", "resistance" }, }, - ["AfflictionNotableBlessed"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed", statOrder = { 7586 }, level = 68, group = "AfflictionNotableBlessed", weightKey = { "affliction_chaos_resistance", "affliction_maximum_life", "affliction_maximum_mana", "default", }, weightVal = { 439, 146, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "chaos", "resistance" }, }, - ["AfflictionNotableStudentofDecay"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Student of Decay", statOrder = { 7816 }, level = 50, group = "AfflictionNotableStudentofDecay", weightKey = { "affliction_chaos_resistance", "affliction_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1171, 593, 343, 366, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, - ["AfflictionNotableAggressiveDefence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aggressive Defence", statOrder = { 7564 }, level = 1, group = "AfflictionNotableAggressiveDefence", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 750, 750, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, - ["AfflictionNotableHolyWord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Word", statOrder = { 7701 }, level = 50, group = "AfflictionNotableHolyWord", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 873, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire" }, }, - ["AfflictionNotableFieryAegis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fiery Aegis", statOrder = { 7670 }, level = 50, group = "AfflictionNotableFieryAegis", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire" }, }, - ["AfflictionJewelSmallPassivesGrantLife_"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7547 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLife2_"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7547 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLife3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7547 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantMana"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7548 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantMana2"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7548 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantMana3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7548 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantES"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7546 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantES2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7546 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantES3"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7546 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantArmour"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7517 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmour2"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7517 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmour3_"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7517 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantEvasion"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7541 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasion2__"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7541 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasion3"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7541 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantStr"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7554 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStr2_"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7554 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStr3_"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7554 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDex_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7539 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDex2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7539 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDex3_"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7539 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantInt_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7543 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantInt2_"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7543 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantInt3"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7543 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7516 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributes2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7516 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributes3"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7516 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegen"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7545 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegen2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7545 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegen3_"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7545 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegen___"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7552 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegen2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7552 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegen3"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7552 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantFireRes"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7542 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireRes2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7542 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireRes3"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7542 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdRes_"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7535 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdRes2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7535 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdRes3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7535 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningRes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7544 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningRes2_"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7544 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningRes3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7544 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalRes"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7540 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalRes2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7540 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalRes3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7540 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosRes"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7533 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosRes2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7533 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosRes3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7533 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantDamage_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7538 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamage2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7538 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamage3"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7538 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7547 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall2"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7547 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7547 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall4"] = { type = "Prefix", affix = "Stalwart", "Added Small Passive Skills also grant: +(11-13) to Maximum Life", statOrder = { 7547 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeSmall5_"] = { type = "Prefix", affix = "Stout", "Added Small Passive Skills also grant: +(14-16) to Maximum Life", statOrder = { 7547 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7548 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall2_"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7548 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7548 }, level = 73, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall4_"] = { type = "Prefix", affix = "Sapphire", "Added Small Passive Skills also grant: +(11-13) to Maximum Mana", statOrder = { 7548 }, level = 78, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaSmall5_"] = { type = "Prefix", affix = "Cerulean", "Added Small Passive Skills also grant: +(14-16) to Maximum Mana", statOrder = { 7548 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantESSmall"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7546 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantESSmall2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7546 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantESSmall3_"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7546 }, level = 73, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantESSmall4"] = { type = "Prefix", affix = "Radiating", "Added Small Passive Skills also grant: +(13-16) to Maximum Energy Shield", statOrder = { 7546 }, level = 78, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantESSmall5"] = { type = "Prefix", affix = "Pulsing", "Added Small Passive Skills also grant: +(17-20) to Maximum Energy Shield", statOrder = { 7546 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall__"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7517 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall2__"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7517 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall3"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7517 }, level = 73, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall4___"] = { type = "Prefix", affix = "Fortified", "Added Small Passive Skills also grant: +(41-53) to Armour", statOrder = { 7517 }, level = 78, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantArmourSmall5"] = { type = "Prefix", affix = "Plated", "Added Small Passive Skills also grant: +(54-66) to Armour", statOrder = { 7517 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "armour" }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7541 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall2_"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7541 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall3___"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7541 }, level = 73, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall4_"] = { type = "Prefix", affix = "Fleet", "Added Small Passive Skills also grant: +(41-53) to Evasion", statOrder = { 7541 }, level = 78, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantEvasionSmall5"] = { type = "Prefix", affix = "Blurred", "Added Small Passive Skills also grant: +(54-66) to Evasion", statOrder = { 7541 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "evasion" }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall_"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7554 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall2"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7554 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall3"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7554 }, level = 73, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall4_"] = { type = "Suffix", affix = "of the Lion", "Added Small Passive Skills also grant: +(9-11) to Strength", statOrder = { 7554 }, level = 78, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantStrSmall5"] = { type = "Suffix", affix = "of the Gorilla", "Added Small Passive Skills also grant: +(12-14) to Strength", statOrder = { 7554 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7539 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7539 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall3"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7539 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall4_"] = { type = "Suffix", affix = "of the Falcon", "Added Small Passive Skills also grant: +(9-11) to Dexterity", statOrder = { 7539 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantDexSmall5"] = { type = "Suffix", affix = "of the Panther", "Added Small Passive Skills also grant: +(12-14) to Dexterity", statOrder = { 7539 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7543 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall2"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7543 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall3______"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7543 }, level = 73, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall4_"] = { type = "Suffix", affix = "of the Augur", "Added Small Passive Skills also grant: +(9-11) to Intelligence", statOrder = { 7543 }, level = 78, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantIntSmall5"] = { type = "Suffix", affix = "of the Philosopher", "Added Small Passive Skills also grant: +(12-14) to Intelligence", statOrder = { 7543 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7516 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7516 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall3_"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7516 }, level = 73, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall4"] = { type = "Suffix", affix = "of the Comet", "Added Small Passive Skills also grant: +5 to All Attributes", statOrder = { 7516 }, level = 78, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantAttributesSmall5"] = { type = "Suffix", affix = "of the Heavens", "Added Small Passive Skills also grant: +6 to All Attributes", statOrder = { 7516 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall_"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7545 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7545 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall3"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7545 }, level = 73, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall4"] = { type = "Suffix", affix = "of Bliss", "Added Small Passive Skills also grant: (7-8)% increased Mana Regeneration Rate", statOrder = { 7545 }, level = 78, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantManaRegenSmall5"] = { type = "Suffix", affix = "of Euphoria", "Added Small Passive Skills also grant: (9-10)% increased Mana Regeneration Rate", statOrder = { 7545 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7552 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7552 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall3_"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7552 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall4_"] = { type = "Suffix", affix = "of the Starfish", "Added Small Passive Skills also grant: Regenerate 0.25% of Life per Second", statOrder = { 7552 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantLifeRegenSmall5"] = { type = "Suffix", affix = "of the Hydra", "Added Small Passive Skills also grant: Regenerate 0.3% of Life per Second", statOrder = { 7552 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7542 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7542 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall3_"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7542 }, level = 73, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall4"] = { type = "Suffix", affix = "of the Kiln", "Added Small Passive Skills also grant: +(8-9)% to Fire Resistance", statOrder = { 7542 }, level = 78, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantFireResSmall5"] = { type = "Suffix", affix = "of the Furnace", "Added Small Passive Skills also grant: +(10-11)% to Fire Resistance", statOrder = { 7542 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7535 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7535 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7535 }, level = 73, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall4"] = { type = "Suffix", affix = "of the Yeti", "Added Small Passive Skills also grant: +(8-9)% to Cold Resistance", statOrder = { 7535 }, level = 78, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantColdResSmall5_"] = { type = "Suffix", affix = "of the Walrus", "Added Small Passive Skills also grant: +(10-11)% to Cold Resistance", statOrder = { 7535 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7544 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall2__"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7544 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7544 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall4_"] = { type = "Suffix", affix = "of the Thunderhead", "Added Small Passive Skills also grant: +(8-9)% to Lightning Resistance", statOrder = { 7544 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantLightningResSmall5"] = { type = "Suffix", affix = "of the Tempest", "Added Small Passive Skills also grant: +(10-11)% to Lightning Resistance", statOrder = { 7544 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7540 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7540 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7540 }, level = 73, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall4"] = { type = "Suffix", affix = "of Variegation", "Added Small Passive Skills also grant: +5% to all Elemental Resistances", statOrder = { 7540 }, level = 78, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantElementalResSmall5"] = { type = "Suffix", affix = "of the Rainbow", "Added Small Passive Skills also grant: +6% to all Elemental Resistances", statOrder = { 7540 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7533 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7533 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7533 }, level = 73, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall4"] = { type = "Suffix", affix = "of Expulsion", "Added Small Passive Skills also grant: +6% to Chaos Resistance", statOrder = { 7533 }, level = 78, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantChaosResSmall5"] = { type = "Suffix", affix = "of Exile", "Added Small Passive Skills also grant: +(7-8)% to Chaos Resistance", statOrder = { 7533 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7538 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7538 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall3_"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7538 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall4_"] = { type = "Prefix", affix = "Destructive", "Added Small Passive Skills also grant: 5% increased Damage", statOrder = { 7538 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageSmall5"] = { type = "Prefix", affix = "Deadly", "Added Small Passive Skills also grant: 6% increased Damage", statOrder = { 7538 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesHaveIncreasedEffect"] = { type = "Prefix", affix = "Potent", "Added Small Passive Skills have 25% increased Effect", statOrder = { 7558 }, level = 1, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesHaveIncreasedEffect2"] = { type = "Prefix", affix = "Powerful", "Added Small Passive Skills have 35% increased Effect", statOrder = { 7558 }, level = 84, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed"] = { type = "Suffix", affix = "of Skill", "Added Small Passive Skills also grant: 1% increased Attack Speed", statOrder = { 7526 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed2_"] = { type = "Suffix", affix = "of Ease", "Added Small Passive Skills also grant: 2% increased Attack Speed", statOrder = { 7526 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantAttackSpeed3__"] = { type = "Suffix", affix = "of Mastery", "Added Small Passive Skills also grant: 3% increased Attack Speed", statOrder = { 7526 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "attack", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantCastSpeed"] = { type = "Suffix", affix = "of Talent", "Added Small Passive Skills also grant: 1% increased Cast Speed", statOrder = { 7528 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Added Small Passive Skills also grant: 2% increased Cast Speed", statOrder = { 7528 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantCastSpeed3_"] = { type = "Suffix", affix = "of Expertise", "Added Small Passive Skills also grant: 3% increased Cast Speed", statOrder = { 7528 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime"] = { type = "Suffix", affix = "of Decline", "Added Small Passive Skills also grant: 1% increased Damage over Time", statOrder = { 7537 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime2"] = { type = "Suffix", affix = "of Degeneration", "Added Small Passive Skills also grant: 2% increased Damage over Time", statOrder = { 7537 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantDamageOverTime3"] = { type = "Suffix", affix = "of Disintegration", "Added Small Passive Skills also grant: 3% increased Damage over Time", statOrder = { 7537 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "damage" }, }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration_"] = { type = "Suffix", affix = "of Tumult", "Added Small Passive Skills also grant: 3% increased Duration of Elemental Ailments on Enemies", statOrder = { 7530 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration2"] = { type = "Suffix", affix = "of Turbulence", "Added Small Passive Skills also grant: 4% increased Duration of Elemental Ailments on Enemies", statOrder = { 7530 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration3"] = { type = "Suffix", affix = "of Disturbance", "Added Small Passive Skills also grant: 5% increased Duration of Elemental Ailments on Enemies", statOrder = { 7530 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect__"] = { type = "Suffix", affix = "of Outreach", "Added Small Passive Skills also grant: 2% increased Area of Effect of Aura Skills", statOrder = { 7527 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect2"] = { type = "Suffix", affix = "of Influence", "Added Small Passive Skills also grant: 4% increased Area of Effect of Aura Skills", statOrder = { 7527 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, }, - ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect3"] = { type = "Suffix", affix = "of Guidance", "Added Small Passive Skills also grant: 6% increased Area of Effect of Aura Skills", statOrder = { 7527 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 250, 0 }, modTags = { "aura" }, }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect"] = { type = "Suffix", affix = "of Clout", "Added Small Passive Skills also grant: 1% increased Area of Effect of Hex Skills", statOrder = { 7536 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect2"] = { type = "Suffix", affix = "of Dominance", "Added Small Passive Skills also grant: 2% increased Area of Effect of Hex Skills", statOrder = { 7536 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, }, - ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect3"] = { type = "Suffix", affix = "of Suppression", "Added Small Passive Skills also grant: 3% increased Area of Effect of Hex Skills", statOrder = { 7536 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration"] = { type = "Suffix", affix = "of Yelling", "Added Small Passive Skills also grant: 2% increased Warcry Duration", statOrder = { 7557 }, level = 1, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration2"] = { type = "Suffix", affix = "of Shouting", "Added Small Passive Skills also grant: 3% increased Warcry Duration", statOrder = { 7557 }, level = 68, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantWarcryDuration3"] = { type = "Suffix", affix = "of Bellowing", "Added Small Passive Skills also grant: 4% increased Warcry Duration", statOrder = { 7557 }, level = 84, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Ire", "Added Small Passive Skills also grant: +1% to Critical Strike Multiplier", statOrder = { 7529 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier2_"] = { type = "Suffix", affix = "of Anger", "Added Small Passive Skills also grant: +2% to Critical Strike Multiplier", statOrder = { 7529 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, }, - ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "Added Small Passive Skills also grant: +3% to Critical Strike Multiplier", statOrder = { 7529 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen"] = { type = "Suffix", affix = "of Fostering", "Added Small Passive Skills also grant: Minions Regenerate 0.1% of Life per Second", statOrder = { 7551 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen2"] = { type = "Suffix", affix = "of Nurturing", "Added Small Passive Skills also grant: Minions Regenerate 0.15% of Life per Second", statOrder = { 7551 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantMinionLifeRegen3"] = { type = "Suffix", affix = "of Motherhood", "Added Small Passive Skills also grant: Minions Regenerate 0.2% of Life per Second", statOrder = { 7551 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect_"] = { type = "Suffix", affix = "of Reach", "Added Small Passive Skills also grant: 1% increased Area of Effect", statOrder = { 7532 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect2"] = { type = "Suffix", affix = "of Range", "Added Small Passive Skills also grant: 2% increased Area of Effect", statOrder = { 7532 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantAreaOfEffect3"] = { type = "Suffix", affix = "of Horizons", "Added Small Passive Skills also grant: 3% increased Area of Effect", statOrder = { 7532 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 250, 0 }, modTags = { }, }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed"] = { type = "Suffix", affix = "of Darting", "Added Small Passive Skills also grant: 2% increased Projectile Speed", statOrder = { 7531 }, level = 1, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "Added Small Passive Skills also grant: 3% increased Projectile Speed", statOrder = { 7531 }, level = 68, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "Added Small Passive Skills also grant: 4% increased Projectile Speed", statOrder = { 7531 }, level = 84, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed_"] = { type = "Suffix", affix = "of Tinkering", "Added Small Passive Skills also grant: 1% increased Trap and Mine Throwing Speed", statOrder = { 7556 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed2"] = { type = "Suffix", affix = "of Assembly", "Added Small Passive Skills also grant: 2% increased Trap and Mine Throwing Speed", statOrder = { 7556 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed3_"] = { type = "Suffix", affix = "of Deployment", "Added Small Passive Skills also grant: 3% increased Trap and Mine Throwing Speed", statOrder = { 7556 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed"] = { type = "Suffix", affix = "of the Karui", "Added Small Passive Skills also grant: 1% increased Totem Placement speed", statOrder = { 7555 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed2"] = { type = "Suffix", affix = "of the Ancestors", "Added Small Passive Skills also grant: 2% increased Totem Placement speed", statOrder = { 7555 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed3"] = { type = "Suffix", affix = "of The Way", "Added Small Passive Skills also grant: 3% increased Totem Placement speed", statOrder = { 7555 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange_"] = { type = "Suffix", affix = "of Gripping", "Added Small Passive Skills also grant: 1% increased Brand Attachment range", statOrder = { 7553 }, level = 1, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange2"] = { type = "Suffix", affix = "of Grasping", "Added Small Passive Skills also grant: 2% increased Brand Attachment range", statOrder = { 7553 }, level = 68, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, }, - ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange3____"] = { type = "Suffix", affix = "of Latching", "Added Small Passive Skills also grant: 3% increased Brand Attachment range", statOrder = { 7553 }, level = 84, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster" }, }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed"] = { type = "Suffix", affix = "of Attention", "Added Small Passive Skills also grant: Channelling Skills have 1% increased Attack and Cast Speed", statOrder = { 7519 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Concentration", "Added Small Passive Skills also grant: Channelling Skills have 2% increased Attack and Cast Speed", statOrder = { 7519 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Forethought", "Added Small Passive Skills also grant: Channelling Skills have 3% increased Attack and Cast Speed", statOrder = { 7519 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained"] = { type = "Suffix", affix = "of Refilling", "Added Small Passive Skills also grant: 1% increased Flask Charges gained", statOrder = { 7534 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained2_"] = { type = "Suffix", affix = "of Brimming", "Added Small Passive Skills also grant: 2% increased Flask Charges gained", statOrder = { 7534 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, }, - ["AfflictionJewelSmallPassivesGrantFlaskChargesGained3"] = { type = "Suffix", affix = "of Overflowing", "Added Small Passive Skills also grant: 3% increased Flask Charges gained", statOrder = { 7534 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 250, 250, 0 }, modTags = { "flask" }, }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Kindling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Fire Skills", statOrder = { 7523 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Smoke", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Fire Skills", statOrder = { 7523 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Flashfires", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Fire Skills", statOrder = { 7523 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Cooling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Cold Skills", statOrder = { 7521 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Frigidity", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Cold Skills", statOrder = { 7521 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Avalanche", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Cold Skills", statOrder = { 7521 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Gathering Clouds", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7524 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Sudden Storms", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7524 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Strike", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7524 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Dusk", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7520 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed2____"] = { type = "Suffix", affix = "of Midnight", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7520 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Eclipse", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7520 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Rumbling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Physical Skills", statOrder = { 7525 }, level = 1, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Tremors", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Physical Skills", statOrder = { 7525 }, level = 68, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of the Earthquake", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Physical Skills", statOrder = { 7525 }, level = 84, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 250, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Coaxing", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7522 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Evoking", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7522 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Manifesting", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7522 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of Pillaging", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed", statOrder = { 7549 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Ravaging", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed", statOrder = { 7549 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Razing", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed", statOrder = { 7549 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Courier", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7518 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Messenger", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7518 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Herald", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7518 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Message", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7550 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Teachings", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7550 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, - ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Canon", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7550 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["ChaosResistJewelCorrupted"] = { type = "Corrupted", affix = "", "+(1-3)% to Chaos Resistance", statOrder = { 1641 }, level = 1, group = "ChaosResistance", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos", "resistance" }, }, + ["ReducedCharacterSizeJewelCorrupted"] = { type = "Corrupted", affix = "", "1% reduced Character Size", statOrder = { 2057 }, level = 1, group = "ActorSize", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["ReducedChillDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Chill Duration on you", statOrder = { 1872 }, level = 1, group = "ReducedChillDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedFreezeDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Freeze Duration on you", statOrder = { 1874 }, level = 1, group = "ReducedFreezeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["ReducedIgniteDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedBurnDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["ReducedShockDurationJewelCorrupted"] = { type = "Corrupted", affix = "", "(3-5)% reduced Shock Duration on you", statOrder = { 1873 }, level = 1, group = "ReducedShockDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["IncreasedChargeDurationJewelCorrupted_"] = { type = "Corrupted", affix = "", "(3-7)% increased Endurance, Frenzy and Power Charge Duration", statOrder = { 3026 }, level = 1, group = "ChargeDuration", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "endurance_charge", "frenzy_charge", "power_charge" }, }, + ["AddedChaosDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "Adds 1 to (2-3) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos", "attack" }, }, + ["ChanceToBeCritJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (60-100)% increased Critical Strike Chance against you", statOrder = { 3132 }, level = 1, group = "ChanceToTakeCriticalStrike", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "critical" }, }, + ["DamageWhileDeadJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-30)% increased Damage while Dead", statOrder = { 3096 }, level = 1, group = "DamageWhileDead", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage" }, }, + ["VaalSkillDamageJewelCorrupted"] = { type = "Corrupted", affix = "", "(5-10)% increased Damage with Vaal Skills", statOrder = { 3095 }, level = 1, group = "VaalSkillDamage", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "damage", "vaal" }, }, + ["ChaosDamagePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased Chaos Damage for each Corrupted Item Equipped", statOrder = { 3099 }, level = 1, group = "ChaosDamagePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["LifeLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Life Leech for each Corrupted Item Equipped", statOrder = { 3100 }, level = 1, group = "LifeLeechRatePerCorruptedItem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "life" }, }, + ["ManaLeechRatePerCorruptedItemJewelCorrupted"] = { type = "Corrupted", affix = "", "1% increased total Recovery per second from Mana Leech for each Corrupted Item Equipped", statOrder = { 3102 }, level = 1, group = "ManaLeechRatePerCorrupteditem", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "mana" }, }, + ["SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 1, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "caster", "curse" }, }, + ["V2CorruptedBloodImmunityCorrupted"] = { type = "Corrupted", affix = "", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 33, group = "CorruptedBloodImmunity", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["V2HinderImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Hindered", statOrder = { 10656 }, level = 40, group = "YouCannotBeHindered", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "blue_herring" }, }, + ["V2IncreasedAilmentEffectOnEnemiesCorrupted"] = { type = "Corrupted", affix = "", "(5-7)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 1, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "ailment" }, }, + ["V2IncreasedAreaOfEffectCorrupted"] = { type = "Corrupted", affix = "", "(4-5)% increased Area of Effect", statOrder = { 1880 }, level = 1, group = "AreaOfEffect", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2IncreasedCriticalStrikeChanceCorrupted_"] = { type = "Corrupted", affix = "", "(8-10)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "critical" }, }, + ["V2IncreasedDamageJewelCorrupted___"] = { type = "Corrupted", affix = "", "(4-5)% increased Damage", statOrder = { 1191 }, level = 1, group = "IncreasedDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage" }, }, + ["V2MaimImmunityCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Maimed", statOrder = { 4947 }, level = 40, group = "AvoidMaimChance", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2MinionDamageCorrupted"] = { type = "Corrupted", affix = "", "Minions deal (4-5)% increased Damage", statOrder = { 1973 }, level = 1, group = "MinionDamage", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "damage", "minion" }, }, + ["V2ReducedManaReservationCorrupted"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2233 }, level = 1, group = "ReducedReservationForJewel", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2ReducedManaReservationCorruptedEfficiency__"] = { type = "Corrupted", affix = "", "2% increased Reservation Efficiency of Skills", statOrder = { 2230 }, level = 1, group = "ReservationEfficiencyForJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["V2SilenceImmunityJewelCorrupted"] = { type = "Corrupted", affix = "", "You cannot be Cursed with Silence", statOrder = { 3094 }, level = 60, group = "ImmuneToSilence", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "caster", "curse" }, }, + ["V2FirePenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Fire Resistance", statOrder = { 2981 }, level = 1, group = "FireResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["V2ColdPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Cold Resistance", statOrder = { 2983 }, level = 1, group = "ColdResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["V2LightningPenetrationJewelCorrupted__"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Lightning Resistance", statOrder = { 2984 }, level = 1, group = "LightningResistancePenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["V2ElementalPenetrationJewelCorrupted_"] = { type = "Corrupted", affix = "", "Damage Penetrates 1% Elemental Resistances", statOrder = { 2980 }, level = 1, group = "ElementalPenetration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["V2ArmourPenetrationJewelCorrupted"] = { type = "Corrupted", affix = "", "Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 7170 }, level = 1, group = "ChanceToIgnoreEnemyArmour", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "physical" }, }, + ["V2AvoidIgniteJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 1, group = "AvoidIgnite", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["V2AvoidChillAndFreezeJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Chilled", "(20-25)% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 1, group = "ChanceToAvoidFreezeAndChill", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2AvoidShockJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 1, group = "AvoidShock", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2AvoidPoisonJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Poisoned", statOrder = { 1849 }, level = 1, group = "ChanceToAvoidPoison", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2AvoidBleedJewelCorrupted__"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid Bleeding", statOrder = { 4216 }, level = 1, group = "ChanceToAvoidBleeding", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["V2AvoidStunJewelCorrupted_"] = { type = "Corrupted", affix = "", "(20-25)% chance to Avoid being Stunned", statOrder = { 1851 }, level = 1, group = "AvoidStun", weightKey = { "jewel", "default", }, weightVal = { 0, 0 }, modTags = { }, }, + ["V2IgniteDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Ignite Duration on you", statOrder = { 1875 }, level = 1, group = "ReducedIgniteDurationOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "fire", "ailment" }, }, + ["V2ChillEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Chill on you", statOrder = { 1645 }, level = 1, group = "ChillEffectivenessOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "cold", "ailment" }, }, + ["V2ShockEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Shock on you", statOrder = { 10019 }, level = 1, group = "ReducedShockEffectOnSelf", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "elemental", "lightning", "ailment" }, }, + ["V2PoisonDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Poison Duration on you", statOrder = { 9978 }, level = 1, group = "ReducedPoisonDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "poison", "chaos", "ailment" }, }, + ["V2BleedDurationOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Bleed Duration on you", statOrder = { 9969 }, level = 1, group = "ReducedBleedDuration", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "bleed", "physical", "ailment" }, }, + ["V2CurseEffectOnYouJewelCorrupted"] = { type = "Corrupted", affix = "", "(20-25)% reduced Effect of Curses on you", statOrder = { 2170 }, level = 1, group = "CurseEffectOnYouJewel", weightKey = { "jewel", "default", }, weightVal = { 1000, 0 }, modTags = { "curse" }, }, + ["AfflictionNotableProdigiousDefense__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prodigious Defence", statOrder = { 7754 }, level = 1, group = "AfflictionNotableProdigiousDefense", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, }, + ["AfflictionNotableAdvanceGuard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Advance Guard", statOrder = { 7555 }, level = 50, group = "AfflictionNotableAdvanceGuard", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, + ["AfflictionNotableGladiatorialCombat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiatorial Combat", statOrder = { 7677 }, level = 68, group = "AfflictionNotableGladiatorialCombat", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, + ["AfflictionNotableStrikeLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Strike Leader", statOrder = { 7809 }, level = 1, group = "AfflictionNotableStrikeLeader", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_chance_to_block", "default", }, weightVal = { 600, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack" }, }, + ["AfflictionNotablePowerfulWard"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Ward", statOrder = { 7744 }, level = 68, group = "AfflictionNotablePowerfulWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge" }, }, + ["AfflictionNotableEnduringWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Ward", statOrder = { 7645 }, level = 68, group = "AfflictionNotableEnduringWard", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge" }, }, + ["AfflictionNotableGladiatorsFortitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Gladiator's Fortitude", statOrder = { 7678 }, level = 68, group = "AfflictionNotableGladiatorsFortitude", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_maximum_life", "default", }, weightVal = { 113, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, }, + ["AfflictionNotablePreciseRetaliation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Retaliation", statOrder = { 7748 }, level = 50, group = "AfflictionNotablePreciseRetaliation", weightKey = { "affliction_attack_damage_while_holding_a_shield", "affliction_critical_chance", "default", }, weightVal = { 300, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableVeteranDefender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Veteran Defender", statOrder = { 7831 }, level = 1, group = "AfflictionNotableVeteranDefender", weightKey = { "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "elemental", "resistance", "attribute" }, }, + ["AfflictionNotableIronBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Iron Breaker", statOrder = { 7705 }, level = 1, group = "AfflictionNotableIronBreaker", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AfflictionNotableDeepCuts"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Cuts", statOrder = { 7623 }, level = 75, group = "AfflictionNotableDeepCuts", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack" }, }, + ["AfflictionNotableMastertheFundamentals_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master the Fundamentals", statOrder = { 7722 }, level = 50, group = "AfflictionNotableMastertheFundamentals", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "resistance" }, }, + ["AfflictionNotableForceMultiplier"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Force Multiplier", statOrder = { 7672 }, level = 50, group = "AfflictionNotableForceMultiplier", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 232, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical" }, }, + ["AfflictionNotableFuriousAssault"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Furious Assault", statOrder = { 7675 }, level = 1, group = "AfflictionNotableFuriousAssault", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 464, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "damage", "physical", "attack", "caster" }, }, + ["AfflictionNotableViciousSkewering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Skewering", statOrder = { 7834 }, level = 68, group = "AfflictionNotableViciousSkewering", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 81, 141, 141, 151, 145, 151, 113, 117, 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AfflictionNotableGrimOath"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Grim Oath", statOrder = { 7682 }, level = 68, group = "AfflictionNotableGrimOath", weightKey = { "affliction_physical_damage", "affliction_chaos_damage", "default", }, weightVal = { 87, 97, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos" }, }, + ["AfflictionNotableBattleHardened_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battle-Hardened", statOrder = { 7576 }, level = 50, group = "AfflictionNotableBattleHardened", weightKey = { "affliction_physical_damage", "affliction_armour", "affliction_evasion", "default", }, weightVal = { 232, 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "evasion", "physical" }, }, + ["AfflictionNotableReplenishingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Replenishing Presence", statOrder = { 7772 }, level = 50, group = "AfflictionNotableReplenishingPresence", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, }, + ["AfflictionNotableMasterofCommand__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Command", statOrder = { 7718 }, level = 68, group = "AfflictionNotableMasterofCommand", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, + ["AfflictionNotableFirstAmongEquals__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiteful Presence", statOrder = { 7667 }, level = 1, group = "AfflictionNotableFirstAmongEquals", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 960, 960, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "cold", "aura", "ailment" }, }, + ["AfflictionNotablePurposefulHarbinger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Purposeful Harbinger", statOrder = { 7761 }, level = 75, group = "AfflictionNotablePurposefulHarbinger", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 60, 60, 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, + ["AfflictionNotablePreciseCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Destructive Aspect", statOrder = { 7746 }, level = 68, group = "AfflictionNotablePreciseCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_critical_chance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, + ["AfflictionNotablePureCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Electric Presence", statOrder = { 7758 }, level = 68, group = "AfflictionNotablePureCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "aura", "ailment" }, }, + ["AfflictionNotableSummerCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mortifying Aspect", statOrder = { 7813 }, level = 68, group = "AfflictionNotableSummerCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_fire_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "chaos", "resistance", "aura" }, }, + ["AfflictionNotableWinterCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Frantic Aspect", statOrder = { 7849 }, level = 68, group = "AfflictionNotableWinterCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_cold_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "speed", "aura" }, }, + ["AfflictionNotableGroundedCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Introspection", statOrder = { 7683 }, level = 68, group = "AfflictionNotableGroundedCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_lightning_resistance", "default", }, weightVal = { 180, 180, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "aura" }, }, + ["AfflictionNotableStalwartCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Volatile Presence", statOrder = { 7802 }, level = 50, group = "AfflictionNotableStalwartCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_armour", "affliction_evasion", "affliction_maximum_energy_shield", "default", }, weightVal = { 480, 480, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "fire", "aura", "ailment" }, }, + ["AfflictionNotableVengefulCommander"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Righteous Path", statOrder = { 7830 }, level = 1, group = "AfflictionNotableVengefulCommander", weightKey = { "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 960, 960, 0, 0, 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "aura" }, }, + ["AfflictionNotableSkullbreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skullbreaker", statOrder = { 7793 }, level = 68, group = "AfflictionNotableSkullbreaker", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotablePressurePoints__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pressure Points", statOrder = { 7749 }, level = 50, group = "AfflictionNotablePressurePoints", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableOverwhelmingMalice"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overwhelming Malice", statOrder = { 7738 }, level = 68, group = "AfflictionNotableOverwhelmingMalice", weightKey = { "affliction_critical_chance", "affliction_chaos_damage", "default", }, weightVal = { 171, 97, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableMagnifier"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Magnifier", statOrder = { 7714 }, level = 1, group = "AfflictionNotableMagnifier", weightKey = { "affliction_critical_chance", "affliction_area_damage", "default", }, weightVal = { 914, 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableSavageResponse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savage Response", statOrder = { 7781 }, level = 50, group = "AfflictionNotableSavageResponse", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableEyeoftheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye of the Storm", statOrder = { 7655 }, level = 50, group = "AfflictionNotableEyeoftheStorm", weightKey = { "affliction_critical_chance", "affliction_fire_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 457, 366, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "critical", "ailment" }, }, + ["AfflictionNotableBasicsofPain"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Basics of Pain", statOrder = { 7575 }, level = 1, group = "AfflictionNotableBasicsofPain", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableQuickGetaway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick Getaway", statOrder = { 7763 }, level = 1, group = "AfflictionNotableQuickGetaway", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 914, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "critical" }, }, + ["AfflictionNotableAssertDominance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Assert Dominance", statOrder = { 7573 }, level = 68, group = "AfflictionNotableAssertDominance", weightKey = { "affliction_area_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableVastPower"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vast Power", statOrder = { 7829 }, level = 50, group = "AfflictionNotableVastPower", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotablePowerfulAssault_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Powerful Assault", statOrder = { 7743 }, level = 50, group = "AfflictionNotablePowerfulAssault", weightKey = { "affliction_area_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableIntensity"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Intensity", statOrder = { 7703 }, level = 68, group = "AfflictionNotableIntensity", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableTitanicSwings_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Titanic Swings", statOrder = { 7821 }, level = 50, group = "AfflictionNotableTitanicSwings", weightKey = { "affliction_area_damage", "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 980, 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableToweringThreat"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Towering Threat", statOrder = { 7823 }, level = 68, group = "AfflictionNotableToweringThreat", weightKey = { "affliction_area_damage", "affliction_maximum_life", "default", }, weightVal = { 367, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, + ["AfflictionNotableAncestralEcho"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Echo", statOrder = { 7561 }, level = 1, group = "AfflictionNotableAncestralEcho", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionNotableAncestralReach"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Reach", statOrder = { 7566 }, level = 1, group = "AfflictionNotableAncestralReach", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, + ["AfflictionNotableAncestralMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Might", statOrder = { 7564 }, level = 50, group = "AfflictionNotableAncestralMight", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableAncestralPreservation__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Preservation", statOrder = { 7565 }, level = 68, group = "AfflictionNotableAncestralPreservation", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance" }, }, + ["AfflictionNotableSnaringSpirits"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snaring Spirits", statOrder = { 7797 }, level = 50, group = "AfflictionNotableSnaringSpirits", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableSleeplessSentries"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sleepless Sentries", statOrder = { 7794 }, level = 68, group = "AfflictionNotableSleeplessSentries", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 277, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableAncestralGuidance_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Guidance", statOrder = { 7562 }, level = 50, group = "AfflictionNotableAncestralGuidance", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 738, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, + ["AfflictionNotableAncestralInspiration__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Ancestral Inspiration", statOrder = { 7563 }, level = 68, group = "AfflictionNotableAncestralInspiration", weightKey = { "affliction_totem_damage", "affliction_spell_damage", "default", }, weightVal = { 277, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster" }, }, + ["AfflictionNotableVitalFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vital Focus", statOrder = { 7837 }, level = 1, group = "AfflictionNotableVitalFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 1811, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, }, + ["AfflictionNotableRapidInfusion_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unrestrained Focus", statOrder = { 7764 }, level = 68, group = "AfflictionNotableRapidInfusion", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 340, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, + ["AfflictionNotableUnwaveringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwavering Focus", statOrder = { 7827 }, level = 50, group = "AfflictionNotableUnwaveringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "damage" }, }, + ["AfflictionNotableEnduringFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Focus", statOrder = { 7644 }, level = 75, group = "AfflictionNotableEnduringFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "damage" }, }, + ["AfflictionNotablePreciseFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Precise Focus", statOrder = { 7747 }, level = 50, group = "AfflictionNotablePreciseFocus", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 906, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableStoicFocus"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stoic Focus", statOrder = { 7804 }, level = 1, group = "AfflictionNotableStoicFocus", weightKey = { "affliction_channelling_skill_damage", "affliction_chance_to_block", "default", }, weightVal = { 1811, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage" }, }, + ["AfflictionNotableHexBreaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hex Breaker", statOrder = { 7691 }, level = 75, group = "AfflictionNotableHexBreaker", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "caster", "speed", "curse" }, }, + ["AfflictionNotableArcaneAdept_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Adept", statOrder = { 7569 }, level = 68, group = "AfflictionNotableArcaneAdept", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, }, + ["AfflictionNotableDistilledPerfection_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Distilled Perfection", statOrder = { 7632 }, level = 1, group = "AfflictionNotableDistilledPerfection", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana" }, }, + ["AfflictionNotableSpikedConcoction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spiked Concoction", statOrder = { 7800 }, level = 50, group = "AfflictionNotableSpikedConcoction", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "attack", "caster", "speed" }, }, + ["AfflictionNotableFasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fasting", statOrder = { 7659 }, level = 50, group = "AfflictionNotableFasting", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 539, 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "speed" }, }, + ["AfflictionNotableMendersWellspring__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mender's Wellspring", statOrder = { 7723 }, level = 68, group = "AfflictionNotableMendersWellspring", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, }, + ["AfflictionNotableSpecialReserve"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Special Reserve", statOrder = { 7799 }, level = 1, group = "AfflictionNotableSpecialReserve", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 1079, 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "damage" }, }, + ["AfflictionNotableNumbingElixir"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Numbing Elixir", statOrder = { 7732 }, level = 68, group = "AfflictionNotableNumbingElixir", weightKey = { "affliction_flask_duration", "affliction_life_and_mana_recovery_from_flasks", "default", }, weightVal = { 202, 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "caster", "ailment", "curse" }, }, + ["AfflictionNotableMobMentality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mob Mentality", statOrder = { 7726 }, level = 75, group = "AfflictionNotableMobMentality", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 109, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "frenzy_charge", "power_charge", "damage", "attack" }, }, + ["AfflictionNotableCryWolf__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cry Wolf", statOrder = { 7614 }, level = 68, group = "AfflictionNotableCryWolf", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableHauntingShout"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haunting Shout", statOrder = { 7686 }, level = 50, group = "AfflictionNotableHauntingShout", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 873, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableLeadByExample__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lead By Example", statOrder = { 7707 }, level = 1, group = "AfflictionNotableLeadByExample", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, }, + ["AfflictionNotableProvocateur"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Provocateur", statOrder = { 7755 }, level = 50, group = "AfflictionNotableProvocateur", weightKey = { "affliction_warcry_buff_effect", "affliction_critical_chance", "default", }, weightVal = { 873, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableWarningCall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Warning Call", statOrder = { 7841 }, level = 68, group = "AfflictionNotableWarningCall", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 327, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, }, + ["AfflictionNotableRattlingBellow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rattling Bellow", statOrder = { 7765 }, level = 1, group = "AfflictionNotableRattlingBellow", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 1745, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, }, + ["AfflictionNotableBloodscent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bloodscent", statOrder = { 7584 }, level = 75, group = "AfflictionNotableBloodscent", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, }, + ["AfflictionNotableRunThrough"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Run Through", statOrder = { 7777 }, level = 68, group = "AfflictionNotableRunThrough", weightKey = { "affliction_axe_and_sword_damage", "default", }, weightVal = { 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AfflictionNotableWoundAggravation____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wound Aggravation", statOrder = { 7853 }, level = 1, group = "AfflictionNotableWoundAggravation", weightKey = { "affliction_axe_and_sword_damage", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 750, 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AfflictionNotableOverlord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overlord", statOrder = { 7736 }, level = 75, group = "AfflictionNotableOverlord", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 47, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableExpansiveMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expansive Might", statOrder = { 7650 }, level = 68, group = "AfflictionNotableExpansiveMight", weightKey = { "affliction_mace_and_staff_damage", "affliction_area_damage", "default", }, weightVal = { 141, 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableWeightAdvantage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Weight Advantage", statOrder = { 7843 }, level = 1, group = "AfflictionNotableWeightAdvantage", weightKey = { "affliction_mace_and_staff_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "attribute" }, }, + ["AfflictionNotableWindup_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wind-up", statOrder = { 7848 }, level = 68, group = "AfflictionNotableWindup", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "damage", "attack", "critical" }, }, + ["AfflictionNotableFanofBlades_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan of Blades", statOrder = { 7657 }, level = 75, group = "AfflictionNotableFanofBlades", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 51, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableDiseaseVector"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disease Vector", statOrder = { 7629 }, level = 50, group = "AfflictionNotableDiseaseVector", weightKey = { "affliction_dagger_and_claw_damage", "default", }, weightVal = { 404, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["AfflictionNotableArcingShot__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcing Shot", statOrder = { 7572 }, level = 50, group = "AfflictionNotableArcingShot", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, + ["AfflictionNotableTemperedArrowheads"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempered Arrowheads", statOrder = { 7818 }, level = 50, group = "AfflictionNotableTemperedArrowheads", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 387, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "ailment" }, }, + ["AfflictionNotableBroadside_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Broadside", statOrder = { 7590 }, level = 1, group = "AfflictionNotableBroadside", weightKey = { "affliction_bow_damage", "default", }, weightVal = { 774, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack" }, }, + ["AfflictionNotableExplosiveForce"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Explosive Force", statOrder = { 7653 }, level = 68, group = "AfflictionNotableExplosiveForce", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 151, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "attack" }, }, + ["AfflictionNotableOpportunisticFusilade_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Opportunistic Fusilade", statOrder = { 7735 }, level = 1, group = "AfflictionNotableOpportunisticFusilade", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 807, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, + ["AfflictionNotableStormsHand"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm's Hand", statOrder = { 7807 }, level = 50, group = "AfflictionNotableStormsHand", weightKey = { "affliction_wand_damage", "default", }, weightVal = { 403, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning", "attack" }, }, + ["AfflictionNotableBattlefieldDominator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Battlefield Dominator", statOrder = { 7577 }, level = 1, group = "AfflictionNotableBattlefieldDominator", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableMartialMastery"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Mastery", statOrder = { 7715 }, level = 50, group = "AfflictionNotableMartialMastery", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "attribute" }, }, + ["AfflictionNotableSurefootedStriker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surefooted Striker", statOrder = { 7815 }, level = 50, group = "AfflictionNotableSurefootedStriker", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "critical" }, }, + ["AfflictionNotableGracefulExecution_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Graceful Execution", statOrder = { 7679 }, level = 1, group = "AfflictionNotableGracefulExecution", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 604, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed", "critical", "attribute" }, }, + ["AfflictionNotableBrutalInfamy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brutal Infamy", statOrder = { 7592 }, level = 50, group = "AfflictionNotableBrutalInfamy", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 302, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableFearsomeWarrior"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fearsome Warrior", statOrder = { 7660 }, level = 68, group = "AfflictionNotableFearsomeWarrior", weightKey = { "affliction_damage_with_two_handed_melee_weapons", "default", }, weightVal = { 113, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableCombatRhythm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Combat Rhythm", statOrder = { 7606 }, level = 50, group = "AfflictionNotableCombatRhythm", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attack", "speed" }, }, + ["AfflictionNotableHitandRun"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hit and Run", statOrder = { 7693 }, level = 1, group = "AfflictionNotableHitandRun", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 623, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableInsatiableKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insatiable Killer", statOrder = { 7700 }, level = 50, group = "AfflictionNotableInsatiableKiller", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "frenzy_charge", "attack", "speed" }, }, + ["AfflictionNotableMageBane__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Bane", statOrder = { 7712 }, level = 68, group = "AfflictionNotableMageBane", weightKey = { "affliction_attack_damage_while_dual_wielding_", "affliction_chance_to_block", "default", }, weightVal = { 117, 141, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "damage", "attack" }, }, + ["AfflictionNotableMartialMomentum"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Martial Momentum", statOrder = { 7716 }, level = 50, group = "AfflictionNotableMartialMomentum", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 312, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, + ["AfflictionNotableDeadlyRepartee"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deadly Repartee", statOrder = { 7621 }, level = 1, group = "AfflictionNotableDeadlyRepartee", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 623, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "damage", "attack", "critical" }, }, + ["AfflictionNotableQuickandDeadly_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Quick and Deadly", statOrder = { 7762 }, level = 68, group = "AfflictionNotableQuickandDeadly", weightKey = { "affliction_attack_damage_while_dual_wielding_", "default", }, weightVal = { 117, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, + ["AfflictionNotableSmitetheWeak"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Smite the Weak", statOrder = { 7795 }, level = 1, group = "AfflictionNotableSmitetheWeak", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableHeavyHitter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Heavy Hitter", statOrder = { 7688 }, level = 50, group = "AfflictionNotableHeavyHitter", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableMartialProwess"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Martial Prowess", statOrder = { 7717 }, level = 1, group = "AfflictionNotableMartialProwess", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "attack", "speed" }, }, + ["AfflictionNotableCalamitous"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Calamitous", statOrder = { 7595 }, level = 50, group = "AfflictionNotableCalamitous", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "cold", "lightning", "attack", "ailment" }, }, + ["AfflictionNotableDevastator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Devastator", statOrder = { 7626 }, level = 75, group = "AfflictionNotableDevastator", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 27, 47, 47, 51, 48, 50, 38, 39, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["AfflictionNotableFueltheFight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fuel the Fight", statOrder = { 7674 }, level = 1, group = "AfflictionNotableFueltheFight", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack", "speed" }, }, + ["AfflictionNotableDrivetheDestruction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Drive the Destruction", statOrder = { 7638 }, level = 1, group = "AfflictionNotableDrivetheDestruction", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 432, 750, 750, 808, 774, 807, 604, 623, 600, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack" }, }, + ["AfflictionNotableFeedtheFury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feed the Fury", statOrder = { 7663 }, level = 50, group = "AfflictionNotableFeedtheFury", weightKey = { "affliction_attack_damage_", "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 216, 375, 375, 404, 387, 403, 302, 312, 300, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "attack", "speed" }, }, + ["AfflictionNotableSealMender"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seal Mender", statOrder = { 7784 }, level = 75, group = "AfflictionNotableSealMender", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 94, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableConjuredWall"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conjured Wall", statOrder = { 7609 }, level = 50, group = "AfflictionNotableConjuredWall", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "caster_damage", "damage", "caster" }, }, + ["AfflictionNotableArcaneHeroism_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Heroism", statOrder = { 7570 }, level = 68, group = "AfflictionNotableArcaneHeroism", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotablePracticedCaster"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Practiced Caster", statOrder = { 7745 }, level = 1, group = "AfflictionNotablePracticedCaster", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 1500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, }, + ["AfflictionNotableBurdenProjection"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burden Projection", statOrder = { 7593 }, level = 50, group = "AfflictionNotableBurdenProjection", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "speed" }, }, + ["AfflictionNotableThaumophage"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Thaumophage", statOrder = { 7819 }, level = 50, group = "AfflictionNotableThaumophage", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "caster" }, }, + ["AfflictionNotableEssenceRush"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Essence Rush", statOrder = { 7647 }, level = 50, group = "AfflictionNotableEssenceRush", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "defences", "energy_shield", "damage", "attack", "caster", "speed" }, }, + ["AfflictionNotableSapPsyche"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Sap Psyche", statOrder = { 7780 }, level = 68, group = "AfflictionNotableSapPsyche", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 281, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "resource", "mana", "defences", "energy_shield", "damage", "caster" }, }, + ["AfflictionNotableSadist_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sadist", statOrder = { 7778 }, level = 68, group = "AfflictionNotableSadist", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["AfflictionNotableCorrosiveElements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Corrosive Elements", statOrder = { 7612 }, level = 75, group = "AfflictionNotableCorrosiveElements", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 94, 45, 32, 30, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["AfflictionNotableDoryanisLesson_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Doryani's Lesson", statOrder = { 7635 }, level = 68, group = "AfflictionNotableDoryanisLesson", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 281, 136, 95, 89, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental" }, }, + ["AfflictionNotableDisorientingDisplay____"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Disorienting Display", statOrder = { 7630 }, level = 50, group = "AfflictionNotableDisorientingDisplay", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 750, 364, 253, 238, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["AfflictionNotablePrismaticHeart__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Heart", statOrder = { 7753 }, level = 1, group = "AfflictionNotablePrismaticHeart", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 1500, 727, 505, 475, 1371, 1371, 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "resistance" }, }, + ["AfflictionNotableWidespreadDestruction"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Widespread Destruction", statOrder = { 7846 }, level = 1, group = "AfflictionNotableWidespreadDestruction", weightKey = { "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "affliction_fire_damage", "default", }, weightVal = { 1500, 727, 505, 475, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental" }, }, + ["AfflictionNotableMasterofFire"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fire", statOrder = { 7720 }, level = 75, group = "AfflictionNotableMasterofFire", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 30, 46, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableSmokingRemains"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Smoking Remains", statOrder = { 7796 }, level = 50, group = "AfflictionNotableSmokingRemains", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AfflictionNotableCremator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cremator", statOrder = { 7613 }, level = 50, group = "AfflictionNotableCremator", weightKey = { "affliction_fire_damage", "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 238, 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AfflictionNotableSnowstorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Snowstorm", statOrder = { 7798 }, level = 50, group = "AfflictionNotableSnowstorm", weightKey = { "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 364, 253, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, + ["AfflictionNotableStormDrinker___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Storm Drinker", statOrder = { 7805 }, level = 1, group = "AfflictionNotableStormDrinker", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 727, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "defences", "energy_shield", "damage", "elemental", "lightning" }, }, + ["AfflictionNotableParalysis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Paralysis", statOrder = { 7739 }, level = 50, group = "AfflictionNotableParalysis", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AfflictionNotableSupercharge"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Supercharge", statOrder = { 7814 }, level = 75, group = "AfflictionNotableSupercharge", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["AfflictionNotableBlanketedSnow_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blanketed Snow", statOrder = { 7579 }, level = 68, group = "AfflictionNotableBlanketedSnow", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AfflictionNotableColdtotheCore"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold to the Core", statOrder = { 7605 }, level = 68, group = "AfflictionNotableColdtotheCore", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 95, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["AfflictionNotableColdBloodedKiller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold-Blooded Killer", statOrder = { 7603 }, level = 50, group = "AfflictionNotableColdBloodedKiller", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 253, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "life", "damage", "elemental", "cold" }, }, + ["AfflictionNotableTouchofCruelty_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Touch of Cruelty", statOrder = { 7822 }, level = 1, group = "AfflictionNotableTouchofCruelty", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableUnwaveringlyEvil"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Unwaveringly Evil", statOrder = { 7828 }, level = 1, group = "AfflictionNotableUnwaveringlyEvil", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 519, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableUnspeakableGifts"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unspeakable Gifts", statOrder = { 7825 }, level = 75, group = "AfflictionNotableUnspeakableGifts", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 32, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableDarkIdeation"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Ideation", statOrder = { 7618 }, level = 68, group = "AfflictionNotableDarkIdeation", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 97, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableUnholyGrace_"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Unholy Grace", statOrder = { 7824 }, level = 1, group = "AfflictionNotableUnholyGrace", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 519, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "damage", "chaos", "attack", "caster", "speed" }, }, + ["AfflictionNotableWickedPall_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wicked Pall", statOrder = { 7845 }, level = 50, group = "AfflictionNotableWickedPall", weightKey = { "affliction_chaos_damage", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 259, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableRenewal"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Renewal", statOrder = { 7770 }, level = 50, group = "AfflictionNotableRenewal", weightKey = { "affliction_minion_damage", "affliction_minion_life", "default", }, weightVal = { 500, 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, + ["AfflictionNotableRazeandPillage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Raze and Pillage", statOrder = { 7766 }, level = 68, group = "AfflictionNotableRazeandPillage", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "elemental_damage", "bleed", "damage", "physical", "elemental", "fire", "minion", "ailment" }, }, + ["AfflictionNotableRottenClaws"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rotten Claws", statOrder = { 7776 }, level = 50, group = "AfflictionNotableRottenClaws", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 500, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical", "attack", "minion" }, }, + ["AfflictionNotableCalltotheSlaughter"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Call to the Slaughter", statOrder = { 7596 }, level = 1, group = "AfflictionNotableCalltotheSlaughter", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 1000, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed", "minion" }, }, + ["AfflictionNotableSkeletalAtrophy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Skeletal Atrophy", statOrder = { 7792 }, level = 68, group = "AfflictionNotableSkeletalAtrophy", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "damage", "physical", "chaos", "minion" }, }, + ["AfflictionNotableHulkingCorpses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hulking Corpses", statOrder = { 7698 }, level = 50, group = "AfflictionNotableHulkingCorpses", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionNotableViciousBite"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Vicious Bite", statOrder = { 7832 }, level = 75, group = "AfflictionNotableViciousBite", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 63, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "damage", "minion", "critical" }, }, + ["AfflictionNotablePrimordialBond"] = { type = "Suffix", affix = "of Significance", "1 Added Passive Skill is Primordial Bond", statOrder = { 7750 }, level = 68, group = "AfflictionNotablePrimordialBond", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 188, 0 }, weightMultiplierKey = { "has_affliction_notable2", "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 0, 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable2", "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, + ["AfflictionNotableBlowback"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blowback", statOrder = { 7585 }, level = 50, group = "AfflictionNotableBlowback", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 366, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["AfflictionNotableFantheFlames_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fan the Flames", statOrder = { 7658 }, level = 68, group = "AfflictionNotableFantheFlames", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, }, + ["AfflictionNotableCookedAlive"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cooked Alive", statOrder = { 7611 }, level = 68, group = "AfflictionNotableCookedAlive", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "ailment" }, }, + ["AfflictionNotableBurningBright"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Burning Bright", statOrder = { 7594 }, level = 50, group = "AfflictionNotableBurningBright", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_fire_damage", "default", }, weightVal = { 366, 238, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AfflictionNotableWrappedinFlame_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wrapped in Flame", statOrder = { 7854 }, level = 68, group = "AfflictionNotableWrappedinFlame", weightKey = { "affliction_fire_damage_over_time_multiplier", "default", }, weightVal = { 137, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AfflictionNotableVividHues"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vivid Hues", statOrder = { 7838 }, level = 50, group = "AfflictionNotableVividHues", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "resource", "life", "physical", "attack", "ailment" }, }, + ["AfflictionNotableRend"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rend", statOrder = { 7769 }, level = 50, group = "AfflictionNotableRend", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AfflictionNotableDisorientingWounds"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disorienting Wounds", statOrder = { 7631 }, level = 1, group = "AfflictionNotableDisorientingWounds", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AfflictionNotableCompoundInjury"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Compound Injury", statOrder = { 7607 }, level = 50, group = "AfflictionNotableCompoundInjury", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["AfflictionNotableBloodArtist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blood Artist", statOrder = { 7583 }, level = 75, group = "AfflictionNotableBloodArtist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "ailment" }, }, + ["AfflictionNotablePhlebotomist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Phlebotomist", statOrder = { 7742 }, level = 50, group = "AfflictionNotablePhlebotomist", weightKey = { "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 343, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "physical", "critical", "ailment" }, }, + ["AfflictionNotableSepticSpells"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Septic Spells", statOrder = { 7788 }, level = 50, group = "AfflictionNotableSepticSpells", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "chaos_damage", "poison", "damage", "chaos", "caster", "speed", "ailment" }, }, + ["AfflictionNotableLowTolerance"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Low Tolerance", statOrder = { 7711 }, level = 68, group = "AfflictionNotableLowTolerance", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "poison", "damage", "chaos", "ailment" }, }, + ["AfflictionNotableSteadyTorment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Steady Torment", statOrder = { 7803 }, level = 68, group = "AfflictionNotableSteadyTorment", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "default", }, weightVal = { 130, 129, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "damage", "physical", "chaos", "attack", "ailment", "ailment" }, }, + ["AfflictionNotableEternalSuffering"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eternal Suffering", statOrder = { 7648 }, level = 50, group = "AfflictionNotableEternalSuffering", weightKey = { "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos" }, }, + ["AfflictionNotableEldritchInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eldritch Inspiration", statOrder = { 7639 }, level = 50, group = "AfflictionNotableEldritchInspiration", weightKey = { "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_mana", "default", }, weightVal = { 348, 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "resource", "mana", "damage", "chaos" }, }, + ["AfflictionNotableWastingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wasting Affliction", statOrder = { 7842 }, level = 68, group = "AfflictionNotableWastingAffliction", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 222, 178, 129, 137, 130, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, + ["AfflictionNotableHaemorrhage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Haemorrhage", statOrder = { 7685 }, level = 50, group = "AfflictionNotableHaemorrhage", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_critical_chance", "default", }, weightVal = { 593, 475, 343, 366, 348, 457, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical", "ailment" }, }, + ["AfflictionNotableFlowofLife_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flow of Life", statOrder = { 7670 }, level = 68, group = "AfflictionNotableFlowofLife", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage" }, }, + ["AfflictionNotableExposureTherapy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exposure Therapy", statOrder = { 7654 }, level = 1, group = "AfflictionNotableExposureTherapy", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_chaos_resistance", "default", }, weightVal = { 1185, 950, 686, 733, 696, 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["AfflictionNotableBrushwithDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brush with Death", statOrder = { 7591 }, level = 68, group = "AfflictionNotableBrushwithDeath", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 222, 178, 129, 137, 130, 146, 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield", "damage" }, }, + ["AfflictionNotableVileReinvigoration_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vile Reinvigoration", statOrder = { 7836 }, level = 50, group = "AfflictionNotableVileReinvigoration", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_maximum_energy_shield", "default", }, weightVal = { 593, 475, 343, 366, 348, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "damage" }, }, + ["AfflictionNotableCirclingOblivion"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Circling Oblivion", statOrder = { 7601 }, level = 1, group = "AfflictionNotableCirclingOblivion", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1185, 950, 686, 733, 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, + ["AfflictionNotableBrewedforPotency"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brewed for Potency", statOrder = { 7589 }, level = 1, group = "AfflictionNotableBrewedforPotency", weightKey = { "affliction_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_flask_duration", "default", }, weightVal = { 1185, 950, 686, 733, 696, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life", "mana", "damage" }, }, + ["AfflictionNotableAstonishingAffliction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Astonishing Affliction", statOrder = { 7574 }, level = 1, group = "AfflictionNotableAstonishingAffliction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 1627, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "ailment" }, }, + ["AfflictionNotableColdConduction__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cold Conduction", statOrder = { 7604 }, level = 68, group = "AfflictionNotableColdConduction", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "lightning", "ailment" }, }, + ["AfflictionNotableInspiredOppression"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Inspired Oppression", statOrder = { 7701 }, level = 75, group = "AfflictionNotableInspiredOppression", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_elemental_damage", "affliction_lightning_damage", "affliction_cold_damage", "default", }, weightVal = { 102, 94, 45, 32, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "ailment" }, }, + ["AfflictionNotableChillingPresence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chilling Presence", statOrder = { 7599 }, level = 75, group = "AfflictionNotableChillingPresence", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 102, 59, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, }, + ["AfflictionNotableDeepChill"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Deep Chill", statOrder = { 7622 }, level = 1, group = "AfflictionNotableDeepChill", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "default", }, weightVal = { 1627, 505, 950, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, }, + ["AfflictionNotableBlastFreeze_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blast-Freeze", statOrder = { 7580 }, level = 68, group = "AfflictionNotableBlastFreeze", weightKey = { "affliction_cold_damage", "affliction_cold_damage_over_time_multiplier", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 95, 178, 305, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "cold", "ailment" }, }, + ["AfflictionNotableThunderstruck"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Thunderstruck", statOrder = { 7820 }, level = 50, group = "AfflictionNotableThunderstruck", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "lightning", "critical" }, }, + ["AfflictionNotableStormrider"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stormrider", statOrder = { 7806 }, level = 68, group = "AfflictionNotableStormrider", weightKey = { "affliction_effect_of_non-damaging_ailments", "affliction_cold_damage", "affliction_lightning_damage", "default", }, weightVal = { 305, 95, 136, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "power_charge", "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, + ["AfflictionNotableOvershock"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Overshock", statOrder = { 7737 }, level = 50, group = "AfflictionNotableOvershock", weightKey = { "affliction_lightning_damage", "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 364, 814, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AfflictionNotableEvilEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7649 }, level = 1, group = "AfflictionNotableEvilEye", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, + ["AfflictionNotableWhispersofDeath"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Evil Eye", statOrder = { 7844 }, level = 1, group = "AfflictionNotableWhispersofDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableWardbreaker_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Forbidden Words", statOrder = { 7840 }, level = 68, group = "AfflictionNotableWardbreaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "caster", "curse" }, }, + ["AfflictionNotableDarkDiscourse"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Spite", statOrder = { 7617 }, level = 50, group = "AfflictionNotableDarkDiscourse", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableVictimMaker"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Victim Maker", statOrder = { 7835 }, level = 50, group = "AfflictionNotableVictimMaker", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, }, + ["AfflictionNotableMasterofFear"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of Fear", statOrder = { 7719 }, level = 68, group = "AfflictionNotableMasterofFear", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableWishforDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wish for Death", statOrder = { 7851 }, level = 50, group = "AfflictionNotableWishforDeath", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 0, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableLordofDrought_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lord of Drought", statOrder = { 7668 }, level = 50, group = "AfflictionNotableLordofDrought", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_fire_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableBlizzardCaller_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blizzard Caller", statOrder = { 7673 }, level = 50, group = "AfflictionNotableBlizzardCaller", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_cold_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "critical", "curse" }, }, + ["AfflictionNotableTempttheStorm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Tempt the Storm", statOrder = { 7709 }, level = 50, group = "AfflictionNotableTempttheStorm", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_lightning_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed", "curse" }, }, + ["AfflictionNotableMiseryEverlasting"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Misery Everlasting", statOrder = { 7624 }, level = 50, group = "AfflictionNotableMiseryEverlasting", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_chaos_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableExploitWeakness_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Exploit Weakness", statOrder = { 7689 }, level = 50, group = "AfflictionNotableExploitWeakness", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "affliction_physical_damage", "default", }, weightVal = { 353, 353, 0, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "physical_damage", "caster_damage", "damage", "physical", "caster", "curse" }, }, + ["AfflictionNotableHoundsMark"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hound's Mark", statOrder = { 7697 }, level = 1, group = "AfflictionNotableHoundsMark", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 706, 706, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, + ["AfflictionNotableDoedresGluttony"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Gluttony", statOrder = { 7634 }, level = 50, group = "AfflictionNotableDoedresGluttony", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster", "curse" }, }, + ["AfflictionNotableDoedresApathy____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Doedre's Apathy", statOrder = { 7633 }, level = 68, group = "AfflictionNotableDoedresApathy", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 132, 132, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "curse" }, }, + ["AfflictionNotableMasterOfTheMaelstrom_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Master of the Maelstrom", statOrder = { 7721 }, level = 50, group = "AfflictionNotableMasterOfTheMaelstrom", weightKey = { "old_do_not_use_affliction_curse_effect", "affliction_curse_effect_small", "default", }, weightVal = { 353, 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "caster", "ailment", "curse" }, }, + ["AfflictionNotableHeraldry"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heraldry", statOrder = { 7690 }, level = 75, group = "AfflictionNotableHeraldry", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 118, 158, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableEndbringer"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Endbringer", statOrder = { 7642 }, level = 68, group = "AfflictionNotableEndbringer", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableCultLeader_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Cult-Leader", statOrder = { 7615 }, level = 1, group = "AfflictionNotableCultLeader", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 2526, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, }, + ["AfflictionNotableEmpoweredEnvoy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Empowered Envoy", statOrder = { 7641 }, level = 1, group = "AfflictionNotableEmpoweredEnvoy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableDarkMessenger"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dark Messenger", statOrder = { 7619 }, level = 50, group = "AfflictionNotableDarkMessenger", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 941, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableAgentofDestruction"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Agent of Destruction", statOrder = { 7558 }, level = 1, group = "AfflictionNotableAgentofDestruction", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 1882, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AfflictionNotableLastingImpression_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Lasting Impression", statOrder = { 7706 }, level = 68, group = "AfflictionNotableLastingImpression", weightKey = { "affliction_damage_while_you_have_a_herald", "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableSelfFulfillingProphecy_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Fulfilling Prophecy", statOrder = { 7787 }, level = 68, group = "AfflictionNotableSelfFulfillingProphecy", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 353, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "critical" }, }, + ["AfflictionNotableInvigoratingPortents"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Invigorating Portents", statOrder = { 7704 }, level = 50, group = "AfflictionNotableInvigoratingPortents", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 1263, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, }, + ["AfflictionNotablePureAgony_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Agony", statOrder = { 7756 }, level = 68, group = "AfflictionNotablePureAgony", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "minion" }, }, + ["AfflictionNotableDisciples_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Disciples", statOrder = { 7627 }, level = 68, group = "AfflictionNotableDisciples", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 474, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed", "minion" }, }, + ["AfflictionNotableDreadMarch_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dread March", statOrder = { 7637 }, level = 1, group = "AfflictionNotableDreadMarch", weightKey = { "affliction_minion_life", "default", }, weightVal = { 1433, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "chaos", "resistance", "speed", "minion" }, }, + ["AfflictionNotableBlessedRebirth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed Rebirth", statOrder = { 7582 }, level = 68, group = "AfflictionNotableBlessedRebirth", weightKey = { "affliction_minion_life", "default", }, weightVal = { 269, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionNotableLifefromDeath_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Life from Death", statOrder = { 7708 }, level = 50, group = "AfflictionNotableLifefromDeath", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionNotableFeastingFiends"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feasting Fiends", statOrder = { 7662 }, level = 1, group = "AfflictionNotableFeastingFiends", weightKey = { "affliction_minion_life", "affliction_minion_damage", "default", }, weightVal = { 1433, 1000, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "damage", "minion" }, }, + ["AfflictionNotableBodyguards"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Bodyguards", statOrder = { 7586 }, level = 50, group = "AfflictionNotableBodyguards", weightKey = { "affliction_minion_life", "default", }, weightVal = { 716, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionNotableFollowThrough_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Follow-Through", statOrder = { 7671 }, level = 68, group = "AfflictionNotableFollowThrough", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableStreamlined"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Streamlined", statOrder = { 7808 }, level = 1, group = "AfflictionNotableStreamlined", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, + ["AfflictionNotableShriekingBolts_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shrieking Bolts", statOrder = { 7791 }, level = 50, group = "AfflictionNotableShriekingBolts", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableEyetoEye"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Eye to Eye", statOrder = { 7656 }, level = 50, group = "AfflictionNotableEyetoEye", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 889, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableRepeater"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Repeater", statOrder = { 7771 }, level = 1, group = "AfflictionNotableRepeater", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 1778, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "attack", "caster", "speed" }, }, + ["AfflictionNotableAerodynamics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerodynamics", statOrder = { 7557 }, level = 68, group = "AfflictionNotableAerodynamics", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 333, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, + ["AfflictionNotableChipAway"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Chip Away", statOrder = { 7600 }, level = 50, group = "AfflictionNotableChipAway", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, + ["AfflictionNotableSeekerRunes"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Seeker Runes", statOrder = { 7786 }, level = 68, group = "AfflictionNotableSeekerRunes", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, }, + ["AfflictionNotableRemarkable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Remarkable", statOrder = { 7768 }, level = 68, group = "AfflictionNotableRemarkable", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, + ["AfflictionNotableBrandLoyalty"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Brand Loyalty", statOrder = { 7588 }, level = 1, group = "AfflictionNotableBrandLoyalty", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 2341, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster_damage", "damage", "caster" }, }, + ["AfflictionNotableHolyConquest"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Conquest", statOrder = { 7695 }, level = 50, group = "AfflictionNotableHolyConquest", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, + ["AfflictionNotableGrandDesign_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Grand Design", statOrder = { 7681 }, level = 68, group = "AfflictionNotableGrandDesign", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "caster", "speed" }, }, + ["AfflictionNotableSetandForget_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Set and Forget", statOrder = { 7789 }, level = 50, group = "AfflictionNotableSetandForget", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableExpertSabotage"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expert Sabotage", statOrder = { 7652 }, level = 50, group = "AfflictionNotableExpertSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, + ["AfflictionNotableGuerillaTactics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Guerilla Tactics", statOrder = { 7684 }, level = 1, group = "AfflictionNotableGuerillaTactics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 1959, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "speed" }, }, + ["AfflictionNotableExpendability"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Expendability", statOrder = { 7651 }, level = 68, group = "AfflictionNotableExpendability", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableArcanePyrotechnics"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Arcane Pyrotechnics", statOrder = { 7571 }, level = 68, group = "AfflictionNotableArcanePyrotechnics", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 367, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableSurpriseSabotage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surprise Sabotage", statOrder = { 7817 }, level = 50, group = "AfflictionNotableSurpriseSabotage", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 980, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["AfflictionNotableCarefulHandling"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Careful Handling", statOrder = { 7598 }, level = 68, group = "AfflictionNotableCarefulHandling", weightKey = { "affliction_trap_and_mine_damage", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 367, 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "damage" }, }, + ["AfflictionNotablePeakVigour"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peak Vigour", statOrder = { 7741 }, level = 1, group = "AfflictionNotablePeakVigour", weightKey = { "affliction_maximum_life", "affliction_flask_duration", "default", }, weightVal = { 780, 1079, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "resource", "life" }, }, + ["AfflictionNotableFettle"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fettle", statOrder = { 7664 }, level = 75, group = "AfflictionNotableFettle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, + ["AfflictionNotableFeastofFlesh"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Feast of Flesh", statOrder = { 7661 }, level = 68, group = "AfflictionNotableFeastofFlesh", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attack" }, }, + ["AfflictionNotableSublimeSensation_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Sensation", statOrder = { 7812 }, level = 50, group = "AfflictionNotableSublimeSensation", weightKey = { "affliction_maximum_life", "affliction_maximum_energy_shield", "default", }, weightVal = { 390, 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["AfflictionNotableSurgingVitality"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Surging Vitality", statOrder = { 7816 }, level = 1, group = "AfflictionNotableSurgingVitality", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, + ["AfflictionNotablePeaceAmidstChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Peace Amidst Chaos", statOrder = { 7740 }, level = 50, group = "AfflictionNotablePeaceAmidstChaos", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, }, + ["AfflictionNotableAdrenaline_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Adrenaline", statOrder = { 7554 }, level = 68, group = "AfflictionNotableAdrenaline", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life" }, }, + ["AfflictionNotableWallofMuscle_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wall of Muscle", statOrder = { 7839 }, level = 75, group = "AfflictionNotableWallofMuscle", weightKey = { "affliction_maximum_life", "default", }, weightVal = { 49, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "attribute" }, }, + ["AfflictionNotableMindfulness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mindfulness", statOrder = { 7725 }, level = 50, group = "AfflictionNotableMindfulness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, + ["AfflictionNotableLiquidInspiration"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Liquid Inspiration", statOrder = { 7710 }, level = 68, group = "AfflictionNotableLiquidInspiration", weightKey = { "affliction_maximum_mana", "affliction_flask_duration", "default", }, weightVal = { 175, 202, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "power_charge", "resource", "mana" }, }, + ["AfflictionNotableOpenness__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Openness", statOrder = { 7734 }, level = 1, group = "AfflictionNotableOpenness", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, + ["AfflictionNotableDaringIdeas"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Daring Ideas", statOrder = { 7616 }, level = 50, group = "AfflictionNotableDaringIdeas", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 466, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, }, + ["AfflictionNotableClarityofPurpose"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Clarity of Purpose", statOrder = { 7602 }, level = 1, group = "AfflictionNotableClarityofPurpose", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 932, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, + ["AfflictionNotableScintillatingIdea_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Scintillating Idea", statOrder = { 7783 }, level = 50, group = "AfflictionNotableScintillatingIdea", weightKey = { "affliction_maximum_mana", "affliction_lightning_damage", "default", }, weightVal = { 466, 364, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental_damage", "resource", "mana", "damage", "elemental", "lightning" }, }, + ["AfflictionNotableHolisticHealth"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holistic Health", statOrder = { 7694 }, level = 68, group = "AfflictionNotableHolisticHealth", weightKey = { "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 175, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana" }, }, + ["AfflictionNotableGenius"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Genius", statOrder = { 7676 }, level = 75, group = "AfflictionNotableGenius", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, + ["AfflictionNotableImprovisor"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Improvisor", statOrder = { 7699 }, level = 68, group = "AfflictionNotableImprovisor", weightKey = { "affliction_maximum_mana", "default", }, weightVal = { 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attack" }, }, + ["AfflictionNotableStubbornStudent"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Stubborn Student", statOrder = { 7810 }, level = 68, group = "AfflictionNotableStubbornStudent", weightKey = { "affliction_maximum_mana", "affliction_armour", "default", }, weightVal = { 175, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "armour" }, }, + ["AfflictionNotableSavourtheMoment"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Savour the Moment", statOrder = { 7782 }, level = 1, group = "AfflictionNotableSavourtheMoment", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionNotableEnergyFromNaught"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Energy From Naught", statOrder = { 7646 }, level = 50, group = "AfflictionNotableEnergyFromNaught", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 505, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionNotableWillShaper"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Will Shaper", statOrder = { 7847 }, level = 75, group = "AfflictionNotableWillShaper", weightKey = { "affliction_maximum_energy_shield", "affliction_maximum_mana", "default", }, weightVal = { 63, 58, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionNotableSpringBack_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Spring Back", statOrder = { 7801 }, level = 1, group = "AfflictionNotableSpringBack", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionNotableConservationofEnergy"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Conservation of Energy", statOrder = { 7610 }, level = 68, group = "AfflictionNotableConservationofEnergy", weightKey = { "affliction_maximum_energy_shield", "default", }, weightVal = { 189, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "energy_shield", "caster" }, }, + ["AfflictionNotableSelfControl"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Self-Control", statOrder = { 7628 }, level = 50, group = "AfflictionNotableSelfControl", weightKey = { "affliction_maximum_energy_shield", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 505, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, + ["AfflictionNotableHeartofIron"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Heart of Iron", statOrder = { 7687 }, level = 68, group = "AfflictionNotableHeartofIron", weightKey = { "affliction_maximum_life", "affliction_armour", "default", }, weightVal = { 146, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour" }, }, + ["AfflictionNotablePrismaticCarapace_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Carapace", statOrder = { 7751 }, level = 75, group = "AfflictionNotablePrismaticCarapace", weightKey = { "affliction_armour", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 87, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "resistance" }, }, + ["AfflictionNotableMilitarism"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Militarism", statOrder = { 7724 }, level = 50, group = "AfflictionNotableMilitarism", weightKey = { "affliction_armour", "default", }, weightVal = { 696, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour" }, }, + ["AfflictionNotableSecondSkin"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Second Skin", statOrder = { 7785 }, level = 1, group = "AfflictionNotableSecondSkin", weightKey = { "affliction_armour", "affliction_chance_to_block", "default", }, weightVal = { 1391, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "armour" }, }, + ["AfflictionNotableDragonHunter__"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Dragon Hunter", statOrder = { 7636 }, level = 50, group = "AfflictionNotableDragonHunter", weightKey = { "affliction_armour", "affliction_fire_resistance", "default", }, weightVal = { 696, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "armour", "elemental", "fire", "resistance" }, }, + ["AfflictionNotableEnduringComposure"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Enduring Composure", statOrder = { 7643 }, level = 68, group = "AfflictionNotableEnduringComposure", weightKey = { "affliction_armour", "default", }, weightVal = { 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "endurance_charge", "defences", "armour" }, }, + ["AfflictionNotableUncompromising_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Uncompromising", statOrder = { 7625 }, level = 50, group = "AfflictionNotableUncompromising", weightKey = { "affliction_armour", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 696, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana" }, }, + ["AfflictionNotablePrismaticDance____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Prismatic Dance", statOrder = { 7752 }, level = 75, group = "AfflictionNotablePrismaticDance", weightKey = { "affliction_evasion", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 82, 86, 86, 82, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "elemental", "resistance" }, }, + ["AfflictionNotableNaturalVigour_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Natural Vigour", statOrder = { 7729 }, level = 50, group = "AfflictionNotableNaturalVigour", weightKey = { "affliction_evasion", "affliction_maximum_life", "default", }, weightVal = { 658, 390, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "evasion" }, }, + ["AfflictionNotableUntouchable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Untouchable", statOrder = { 7826 }, level = 1, group = "AfflictionNotableUntouchable", weightKey = { "affliction_evasion", "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1315, 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion" }, }, + ["AfflictionNotableShiftingShadow"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Shifting Shadow", statOrder = { 7790 }, level = 50, group = "AfflictionNotableShiftingShadow", weightKey = { "affliction_evasion", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "defences", "evasion", "attribute" }, }, + ["AfflictionNotableReadiness"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Readiness", statOrder = { 7767 }, level = 1, group = "AfflictionNotableReadiness", weightKey = { "affliction_evasion", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "bleed", "defences", "evasion", "physical", "attack", "ailment" }, }, + ["AfflictionNotableSublimeForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sublime Form", statOrder = { 7680 }, level = 50, group = "AfflictionNotableSublimeForm", weightKey = { "affliction_evasion", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 658, 480, 480, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "resistance" }, }, + ["AfflictionNotableConfidentCombatant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Confident Combatant", statOrder = { 7608 }, level = 68, group = "AfflictionNotableConfidentCombatant", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage" }, }, + ["AfflictionNotableFlexibleSentry___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Flexible Sentry", statOrder = { 7669 }, level = 50, group = "AfflictionNotableFlexibleSentry", weightKey = { "affliction_chance_to_block", "affliction_lightning_resistance", "affliction_cold_resistance", "affliction_fire_resistance", "default", }, weightVal = { 375, 686, 686, 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "ailment" }, }, + ["AfflictionNotableViciousGuard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Vicious Guard", statOrder = { 7833 }, level = 1, group = "AfflictionNotableViciousGuard", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 750, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "attack" }, }, + ["AfflictionNotableMysticalWard_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mystical Ward", statOrder = { 7728 }, level = 1, group = "AfflictionNotableMysticalWard", weightKey = { "affliction_chance_to_block", "affliction_maximum_energy_shield", "default", }, weightVal = { 750, 1011, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "defences", "energy_shield" }, }, + ["AfflictionNotableRoteReinforcement"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rote Reinforcement", statOrder = { 7775 }, level = 68, group = "AfflictionNotableRoteReinforcement", weightKey = { "affliction_chance_to_block", "affliction_maximum_life", "default", }, weightVal = { 141, 146, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "endurance_charge", "resource", "life" }, }, + ["AfflictionNotableMageHunter___"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Mage Hunter", statOrder = { 7713 }, level = 68, group = "AfflictionNotableMageHunter", weightKey = { "affliction_chance_to_block", "affliction_spell_damage", "default", }, weightVal = { 141, 281, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "power_charge", "caster_damage", "damage", "caster" }, }, + ["AfflictionNotableRiotQueller"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Riot Queller", statOrder = { 7773 }, level = 75, group = "AfflictionNotableRiotQueller", weightKey = { "affliction_chance_to_block", "affliction_attack_damage_while_holding_a_shield", "default", }, weightVal = { 47, 38, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block" }, }, + ["AfflictionNotableOnewiththeShield_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is One with the Shield", statOrder = { 7733 }, level = 50, group = "AfflictionNotableOnewiththeShield", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 375, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "block", "resource", "life", "defences" }, }, + ["AfflictionNotableAerialist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aerialist", statOrder = { 7556 }, level = 75, group = "AfflictionNotableAerialist", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 92, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "attribute" }, }, + ["AfflictionNotableElegantForm"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Elegant Form", statOrder = { 7640 }, level = 1, group = "AfflictionNotableElegantForm", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "ailment" }, }, + ["AfflictionNotableDartingMovements"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Darting Movements", statOrder = { 7620 }, level = 1, group = "AfflictionNotableDartingMovements", weightKey = { "affliction_chance_to_dodge_attacks", "default", }, weightVal = { 1477, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "speed" }, }, + ["AfflictionNotableNoWitnesses"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is No Witnesses", statOrder = { 7730 }, level = 75, group = "AfflictionNotableNoWitnesses", weightKey = { "default", }, weightVal = { 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { }, }, + ["AfflictionNotableMoltenOnesMark_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Molten One's Mark", statOrder = { 7727 }, level = 68, group = "AfflictionNotableMoltenOnesMark", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 247, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "elemental", "fire", "resistance" }, }, + ["AfflictionNotableFireAttunement_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fire Attunement", statOrder = { 7666 }, level = 1, group = "AfflictionNotableFireAttunement", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 1315, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "ailment" }, }, + ["AfflictionNotablePureMight"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Might", statOrder = { 7760 }, level = 68, group = "AfflictionNotablePureMight", weightKey = { "affliction_fire_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 247, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, + ["AfflictionNotableBlacksmith_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blacksmith", statOrder = { 7578 }, level = 68, group = "AfflictionNotableBlacksmith", weightKey = { "affliction_fire_resistance", "affliction_armour", "default", }, weightVal = { 247, 261, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "defences", "armour", "elemental", "fire", "resistance" }, }, + ["AfflictionNotableNonFlammable"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Non-Flammable", statOrder = { 7731 }, level = 50, group = "AfflictionNotableNonFlammable", weightKey = { "affliction_fire_resistance", "default", }, weightVal = { 658, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire", "resistance", "ailment" }, }, + ["AfflictionNotableWinterProwler"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Winter Prowler", statOrder = { 7850 }, level = 68, group = "AfflictionNotableWinterProwler", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 257, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "speed" }, }, + ["AfflictionNotableHibernator"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Hibernator", statOrder = { 7692 }, level = 50, group = "AfflictionNotableHibernator", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "ailment" }, }, + ["AfflictionNotablePureGuile"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Guile", statOrder = { 7759 }, level = 68, group = "AfflictionNotablePureGuile", weightKey = { "affliction_cold_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "attribute" }, }, + ["AfflictionNotableAlchemist"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Alchemist", statOrder = { 7560 }, level = 1, group = "AfflictionNotableAlchemist", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 1371, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "flask", "elemental", "cold", "resistance", "attack", "caster", "speed" }, }, + ["AfflictionNotableAntifreeze"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antifreeze", statOrder = { 7567 }, level = 50, group = "AfflictionNotableAntifreeze", weightKey = { "affliction_cold_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "cold", "resistance", "ailment" }, }, + ["AfflictionNotableWizardry_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Wizardry", statOrder = { 7852 }, level = 68, group = "AfflictionNotableWizardry", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "default", }, weightVal = { 257, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "elemental", "lightning", "resistance" }, }, + ["AfflictionNotableCapacitor____"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Capacitor", statOrder = { 7597 }, level = 50, group = "AfflictionNotableCapacitor", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "ailment" }, }, + ["AfflictionNotablePureAptitude"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Pure Aptitude", statOrder = { 7757 }, level = 68, group = "AfflictionNotablePureAptitude", weightKey = { "affliction_lightning_resistance", "old_do_not_use_affliction_aura_effect", "affliction_reservation_efficiency_small", "default", }, weightVal = { 257, 180, 180, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "mana", "defences", "energy_shield", "attribute" }, }, + ["AfflictionNotableSage_"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Sage", statOrder = { 7779 }, level = 1, group = "AfflictionNotableSage", weightKey = { "affliction_lightning_resistance", "affliction_maximum_mana", "affliction_maximum_life", "default", }, weightVal = { 1371, 932, 780, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "elemental", "lightning", "resistance" }, }, + ["AfflictionNotableInsulated"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Insulated", statOrder = { 7702 }, level = 50, group = "AfflictionNotableInsulated", weightKey = { "affliction_lightning_resistance", "default", }, weightVal = { 686, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "lightning", "resistance", "ailment" }, }, + ["AfflictionNotableBornofChaos"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Born of Chaos", statOrder = { 7587 }, level = 68, group = "AfflictionNotableBornofChaos", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos", "resistance" }, }, + ["AfflictionNotableAntivenom"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Antivenom", statOrder = { 7568 }, level = 50, group = "AfflictionNotableAntivenom", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 1171, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "poison", "chaos", "resistance", "ailment" }, }, + ["AfflictionNotableRotResistant"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Rot-Resistant", statOrder = { 7774 }, level = 68, group = "AfflictionNotableRotResistant", weightKey = { "affliction_chaos_resistance", "default", }, weightVal = { 439, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "defences", "energy_shield", "chaos", "resistance" }, }, + ["AfflictionNotableBlessed"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Blessed", statOrder = { 7581 }, level = 68, group = "AfflictionNotableBlessed", weightKey = { "affliction_chaos_resistance", "affliction_maximum_life", "affliction_maximum_mana", "default", }, weightVal = { 439, 146, 175, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "resource", "life", "mana", "chaos", "resistance" }, }, + ["AfflictionNotableStudentofDecay"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Student of Decay", statOrder = { 7811 }, level = 50, group = "AfflictionNotableStudentofDecay", weightKey = { "affliction_chaos_resistance", "affliction_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "default", }, weightVal = { 1171, 593, 343, 366, 348, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "chaos_damage", "damage", "chaos", "resistance" }, }, + ["AfflictionNotableAggressiveDefence"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Aggressive Defence", statOrder = { 7559 }, level = 1, group = "AfflictionNotableAggressiveDefence", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "default", }, weightVal = { 750, 750, 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "damage", "attack" }, }, + ["AfflictionNotableHolyWord"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Holy Word", statOrder = { 7696 }, level = 50, group = "AfflictionNotableHolyWord", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 873, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire" }, }, + ["AfflictionNotableFieryAegis"] = { type = "Prefix", affix = "Notable", "1 Added Passive Skill is Fiery Aegis", statOrder = { 7665 }, level = 50, group = "AfflictionNotableFieryAegis", weightKey = { "affliction_chance_to_block", "default", }, weightVal = { 750, 0 }, weightMultiplierKey = { "expansion_jewel_large", "expansion_jewel_medium", "has_affliction_notable", "expansion_jewel_small", "default", }, weightMultiplierVal = { 100, 100, 0, 100, 0 }, tags = { "has_affliction_notable", }, modTags = { "elemental", "fire" }, }, + ["AfflictionJewelSmallPassivesGrantLife_"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7542 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLife2_"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7542 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLife3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7542 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantMana"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7543 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantMana2"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7543 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantMana3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7543 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantES"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7541 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantES2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7541 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantES3"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7541 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantArmour"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7512 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmour2"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7512 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmour3_"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7512 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantEvasion"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7536 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasion2__"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7536 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasion3"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7536 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantStr"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7549 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStr2_"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7549 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStr3_"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7549 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDex_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7534 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDex2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7534 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDex3_"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7534 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantInt_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7538 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantInt2_"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7538 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantInt3"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7538 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7511 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributes2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7511 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributes3"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7511 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegen"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7540 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegen2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7540 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegen3_"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7540 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegen___"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7547 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegen2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7547 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegen3"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7547 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantFireRes"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7537 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireRes2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7537 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireRes3"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7537 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdRes_"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7530 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdRes2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7530 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdRes3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7530 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningRes"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7539 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningRes2_"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7539 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningRes3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7539 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalRes"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7535 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalRes2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7535 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalRes3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7535 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosRes"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7528 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosRes2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7528 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosRes3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7528 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantDamage_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7533 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 500, 500, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamage2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7533 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 400, 400, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamage3"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7533 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_large", "expansion_jewel_medium", "default", }, weightVal = { 300, 300, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall"] = { type = "Prefix", affix = "Hale", "Added Small Passive Skills also grant: +(2-3) to Maximum Life", statOrder = { 7542 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall2"] = { type = "Prefix", affix = "Healthy", "Added Small Passive Skills also grant: +(4-7) to Maximum Life", statOrder = { 7542 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall3"] = { type = "Prefix", affix = "Sanguine", "Added Small Passive Skills also grant: +(8-10) to Maximum Life", statOrder = { 7542 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall4"] = { type = "Prefix", affix = "Stalwart", "Added Small Passive Skills also grant: +(11-13) to Maximum Life", statOrder = { 7542 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeSmall5_"] = { type = "Prefix", affix = "Stout", "Added Small Passive Skills also grant: +(14-16) to Maximum Life", statOrder = { 7542 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLife", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall"] = { type = "Prefix", affix = "Beryl", "Added Small Passive Skills also grant: +(2-5) to Maximum Mana", statOrder = { 7543 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall2_"] = { type = "Prefix", affix = "Cobalt", "Added Small Passive Skills also grant: +(6-8) to Maximum Mana", statOrder = { 7543 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall3"] = { type = "Prefix", affix = "Azure", "Added Small Passive Skills also grant: +(9-10) to Maximum Mana", statOrder = { 7543 }, level = 73, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall4_"] = { type = "Prefix", affix = "Sapphire", "Added Small Passive Skills also grant: +(11-13) to Maximum Mana", statOrder = { 7543 }, level = 78, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaSmall5_"] = { type = "Prefix", affix = "Cerulean", "Added Small Passive Skills also grant: +(14-16) to Maximum Mana", statOrder = { 7543 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMana", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantESSmall"] = { type = "Prefix", affix = "Shining", "Added Small Passive Skills also grant: +(4-5) to Maximum Energy Shield", statOrder = { 7541 }, level = 1, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantESSmall2"] = { type = "Prefix", affix = "Glimmering", "Added Small Passive Skills also grant: +(6-9) to Maximum Energy Shield", statOrder = { 7541 }, level = 68, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantESSmall3_"] = { type = "Prefix", affix = "Glowing", "Added Small Passive Skills also grant: +(10-12) to Maximum Energy Shield", statOrder = { 7541 }, level = 73, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantESSmall4"] = { type = "Prefix", affix = "Radiating", "Added Small Passive Skills also grant: +(13-16) to Maximum Energy Shield", statOrder = { 7541 }, level = 78, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantESSmall5"] = { type = "Prefix", affix = "Pulsing", "Added Small Passive Skills also grant: +(17-20) to Maximum Energy Shield", statOrder = { 7541 }, level = 84, group = "AfflictionJewelSmallPassivesGrantES", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "energy_shield" }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall__"] = { type = "Prefix", affix = "Lacquered", "Added Small Passive Skills also grant: +(11-20) to Armour", statOrder = { 7512 }, level = 1, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall2__"] = { type = "Prefix", affix = "Studded", "Added Small Passive Skills also grant: +(21-30) to Armour", statOrder = { 7512 }, level = 68, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall3"] = { type = "Prefix", affix = "Ribbed", "Added Small Passive Skills also grant: +(31-40) to Armour", statOrder = { 7512 }, level = 73, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall4___"] = { type = "Prefix", affix = "Fortified", "Added Small Passive Skills also grant: +(41-53) to Armour", statOrder = { 7512 }, level = 78, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantArmourSmall5"] = { type = "Prefix", affix = "Plated", "Added Small Passive Skills also grant: +(54-66) to Armour", statOrder = { 7512 }, level = 84, group = "AfflictionJewelSmallPassivesGrantArmour", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "armour" }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall"] = { type = "Prefix", affix = "Agile", "Added Small Passive Skills also grant: +(11-20) to Evasion", statOrder = { 7536 }, level = 1, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall2_"] = { type = "Prefix", affix = "Dancer's", "Added Small Passive Skills also grant: +(21-30) to Evasion", statOrder = { 7536 }, level = 68, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall3___"] = { type = "Prefix", affix = "Acrobat's", "Added Small Passive Skills also grant: +(31-40) to Evasion", statOrder = { 7536 }, level = 73, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall4_"] = { type = "Prefix", affix = "Fleet", "Added Small Passive Skills also grant: +(41-53) to Evasion", statOrder = { 7536 }, level = 78, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantEvasionSmall5"] = { type = "Prefix", affix = "Blurred", "Added Small Passive Skills also grant: +(54-66) to Evasion", statOrder = { 7536 }, level = 84, group = "AfflictionJewelSmallPassivesGrantEvasion", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "defences", "evasion" }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall_"] = { type = "Suffix", affix = "of the Brute", "Added Small Passive Skills also grant: +(2-3) to Strength", statOrder = { 7549 }, level = 1, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall2"] = { type = "Suffix", affix = "of the Wrestler", "Added Small Passive Skills also grant: +(4-5) to Strength", statOrder = { 7549 }, level = 68, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall3"] = { type = "Suffix", affix = "of the Bear", "Added Small Passive Skills also grant: +(6-8) to Strength", statOrder = { 7549 }, level = 73, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall4_"] = { type = "Suffix", affix = "of the Lion", "Added Small Passive Skills also grant: +(9-11) to Strength", statOrder = { 7549 }, level = 78, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantStrSmall5"] = { type = "Suffix", affix = "of the Gorilla", "Added Small Passive Skills also grant: +(12-14) to Strength", statOrder = { 7549 }, level = 84, group = "AfflictionJewelSmallPassivesGrantStr", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall_"] = { type = "Suffix", affix = "of the Mongoose", "Added Small Passive Skills also grant: +(2-3) to Dexterity", statOrder = { 7534 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall2"] = { type = "Suffix", affix = "of the Lynx", "Added Small Passive Skills also grant: +(4-5) to Dexterity", statOrder = { 7534 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall3"] = { type = "Suffix", affix = "of the Fox", "Added Small Passive Skills also grant: +(6-8) to Dexterity", statOrder = { 7534 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall4_"] = { type = "Suffix", affix = "of the Falcon", "Added Small Passive Skills also grant: +(9-11) to Dexterity", statOrder = { 7534 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantDexSmall5"] = { type = "Suffix", affix = "of the Panther", "Added Small Passive Skills also grant: +(12-14) to Dexterity", statOrder = { 7534 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDex", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall_"] = { type = "Suffix", affix = "of the Pupil", "Added Small Passive Skills also grant: +(2-3) to Intelligence", statOrder = { 7538 }, level = 1, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall2"] = { type = "Suffix", affix = "of the Student", "Added Small Passive Skills also grant: +(4-5) to Intelligence", statOrder = { 7538 }, level = 68, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall3______"] = { type = "Suffix", affix = "of the Prodigy", "Added Small Passive Skills also grant: +(6-8) to Intelligence", statOrder = { 7538 }, level = 73, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall4_"] = { type = "Suffix", affix = "of the Augur", "Added Small Passive Skills also grant: +(9-11) to Intelligence", statOrder = { 7538 }, level = 78, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantIntSmall5"] = { type = "Suffix", affix = "of the Philosopher", "Added Small Passive Skills also grant: +(12-14) to Intelligence", statOrder = { 7538 }, level = 84, group = "AfflictionJewelSmallPassivesGrantInt", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +2 to All Attributes", statOrder = { 7511 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall2"] = { type = "Suffix", affix = "of the Sky", "Added Small Passive Skills also grant: +3 to All Attributes", statOrder = { 7511 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall3_"] = { type = "Suffix", affix = "of the Meteor", "Added Small Passive Skills also grant: +4 to All Attributes", statOrder = { 7511 }, level = 73, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall4"] = { type = "Suffix", affix = "of the Comet", "Added Small Passive Skills also grant: +5 to All Attributes", statOrder = { 7511 }, level = 78, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantAttributesSmall5"] = { type = "Suffix", affix = "of the Heavens", "Added Small Passive Skills also grant: +6 to All Attributes", statOrder = { 7511 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttributes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "attribute" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall_"] = { type = "Suffix", affix = "of Excitement", "Added Small Passive Skills also grant: 4% increased Mana Regeneration Rate", statOrder = { 7540 }, level = 1, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall2"] = { type = "Suffix", affix = "of Joy", "Added Small Passive Skills also grant: 5% increased Mana Regeneration Rate", statOrder = { 7540 }, level = 68, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall3"] = { type = "Suffix", affix = "of Elation", "Added Small Passive Skills also grant: 6% increased Mana Regeneration Rate", statOrder = { 7540 }, level = 73, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall4"] = { type = "Suffix", affix = "of Bliss", "Added Small Passive Skills also grant: (7-8)% increased Mana Regeneration Rate", statOrder = { 7540 }, level = 78, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantManaRegenSmall5"] = { type = "Suffix", affix = "of Euphoria", "Added Small Passive Skills also grant: (9-10)% increased Mana Regeneration Rate", statOrder = { 7540 }, level = 84, group = "AfflictionJewelSmallPassivesGrantManaRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "mana" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall"] = { type = "Suffix", affix = "of the Newt", "Added Small Passive Skills also grant: Regenerate 0.1% of Life per Second", statOrder = { 7547 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall2_"] = { type = "Suffix", affix = "of the Lizard", "Added Small Passive Skills also grant: Regenerate 0.15% of Life per Second", statOrder = { 7547 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall3_"] = { type = "Suffix", affix = "of the Flatworm", "Added Small Passive Skills also grant: Regenerate 0.2% of Life per Second", statOrder = { 7547 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall4_"] = { type = "Suffix", affix = "of the Starfish", "Added Small Passive Skills also grant: Regenerate 0.25% of Life per Second", statOrder = { 7547 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantLifeRegenSmall5"] = { type = "Suffix", affix = "of the Hydra", "Added Small Passive Skills also grant: Regenerate 0.3% of Life per Second", statOrder = { 7547 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLifeRegen", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "life" }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall"] = { type = "Suffix", affix = "of the Whelpling", "Added Small Passive Skills also grant: +(2-3)% to Fire Resistance", statOrder = { 7537 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall2"] = { type = "Suffix", affix = "of the Salamander", "Added Small Passive Skills also grant: +(4-5)% to Fire Resistance", statOrder = { 7537 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall3_"] = { type = "Suffix", affix = "of the Drake", "Added Small Passive Skills also grant: +(6-7)% to Fire Resistance", statOrder = { 7537 }, level = 73, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall4"] = { type = "Suffix", affix = "of the Kiln", "Added Small Passive Skills also grant: +(8-9)% to Fire Resistance", statOrder = { 7537 }, level = 78, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantFireResSmall5"] = { type = "Suffix", affix = "of the Furnace", "Added Small Passive Skills also grant: +(10-11)% to Fire Resistance", statOrder = { 7537 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "fire", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall"] = { type = "Suffix", affix = "of the Inuit", "Added Small Passive Skills also grant: +(2-3)% to Cold Resistance", statOrder = { 7530 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall2"] = { type = "Suffix", affix = "of the Seal", "Added Small Passive Skills also grant: +(4-5)% to Cold Resistance", statOrder = { 7530 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall3"] = { type = "Suffix", affix = "of the Penguin", "Added Small Passive Skills also grant: +(6-7)% to Cold Resistance", statOrder = { 7530 }, level = 73, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall4"] = { type = "Suffix", affix = "of the Yeti", "Added Small Passive Skills also grant: +(8-9)% to Cold Resistance", statOrder = { 7530 }, level = 78, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantColdResSmall5_"] = { type = "Suffix", affix = "of the Walrus", "Added Small Passive Skills also grant: +(10-11)% to Cold Resistance", statOrder = { 7530 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "cold", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall"] = { type = "Suffix", affix = "of the Cloud", "Added Small Passive Skills also grant: +(2-3)% to Lightning Resistance", statOrder = { 7539 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall2__"] = { type = "Suffix", affix = "of the Squall", "Added Small Passive Skills also grant: +(4-5)% to Lightning Resistance", statOrder = { 7539 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall3"] = { type = "Suffix", affix = "of the Storm", "Added Small Passive Skills also grant: +(6-7)% to Lightning Resistance", statOrder = { 7539 }, level = 73, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall4_"] = { type = "Suffix", affix = "of the Thunderhead", "Added Small Passive Skills also grant: +(8-9)% to Lightning Resistance", statOrder = { 7539 }, level = 78, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantLightningResSmall5"] = { type = "Suffix", affix = "of the Tempest", "Added Small Passive Skills also grant: +(10-11)% to Lightning Resistance", statOrder = { 7539 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "lightning", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall"] = { type = "Suffix", affix = "of the Crystal", "Added Small Passive Skills also grant: +2% to all Elemental Resistances", statOrder = { 7535 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall2"] = { type = "Suffix", affix = "of the Prism", "Added Small Passive Skills also grant: +3% to all Elemental Resistances", statOrder = { 7535 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall3"] = { type = "Suffix", affix = "of the Kaleidoscope", "Added Small Passive Skills also grant: +4% to all Elemental Resistances", statOrder = { 7535 }, level = 73, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall4"] = { type = "Suffix", affix = "of Variegation", "Added Small Passive Skills also grant: +5% to all Elemental Resistances", statOrder = { 7535 }, level = 78, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantElementalResSmall5"] = { type = "Suffix", affix = "of the Rainbow", "Added Small Passive Skills also grant: +6% to all Elemental Resistances", statOrder = { 7535 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "elemental", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall"] = { type = "Suffix", affix = "of the Lost", "Added Small Passive Skills also grant: +3% to Chaos Resistance", statOrder = { 7528 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall2"] = { type = "Suffix", affix = "of Banishment", "Added Small Passive Skills also grant: +4% to Chaos Resistance", statOrder = { 7528 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall3"] = { type = "Suffix", affix = "of Eviction", "Added Small Passive Skills also grant: +5% to Chaos Resistance", statOrder = { 7528 }, level = 73, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall4"] = { type = "Suffix", affix = "of Expulsion", "Added Small Passive Skills also grant: +6% to Chaos Resistance", statOrder = { 7528 }, level = 78, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantChaosResSmall5"] = { type = "Suffix", affix = "of Exile", "Added Small Passive Skills also grant: +(7-8)% to Chaos Resistance", statOrder = { 7528 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosRes", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "chaos", "resistance" }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall_"] = { type = "Prefix", affix = "Harmful", "Added Small Passive Skills also grant: 2% increased Damage", statOrder = { 7533 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 500, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall2_"] = { type = "Prefix", affix = "Hazardous", "Added Small Passive Skills also grant: 3% increased Damage", statOrder = { 7533 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 400, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall3_"] = { type = "Prefix", affix = "Dangerous", "Added Small Passive Skills also grant: 4% increased Damage", statOrder = { 7533 }, level = 73, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 300, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall4_"] = { type = "Prefix", affix = "Destructive", "Added Small Passive Skills also grant: 5% increased Damage", statOrder = { 7533 }, level = 78, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 200, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageSmall5"] = { type = "Prefix", affix = "Deadly", "Added Small Passive Skills also grant: 6% increased Damage", statOrder = { 7533 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamage", weightKey = { "expansion_jewel_small", "default", }, weightVal = { 100, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesHaveIncreasedEffect"] = { type = "Prefix", affix = "Potent", "Added Small Passive Skills have 25% increased Effect", statOrder = { 7553 }, level = 1, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 500 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesHaveIncreasedEffect2"] = { type = "Prefix", affix = "Powerful", "Added Small Passive Skills have 35% increased Effect", statOrder = { 7553 }, level = 84, group = "AfflictionJewelSmallPassivesHaveIncreasedEffect", weightKey = { "default", }, weightVal = { 300 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed"] = { type = "Suffix", affix = "of Skill", "Added Small Passive Skills also grant: 1% increased Attack Speed", statOrder = { 7521 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed2_"] = { type = "Suffix", affix = "of Ease", "Added Small Passive Skills also grant: 2% increased Attack Speed", statOrder = { 7521 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 350, 350, 350, 350, 350, 350, 350, 350, 350, 0 }, modTags = { "attack", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantAttackSpeed3__"] = { type = "Suffix", affix = "of Mastery", "Added Small Passive Skills also grant: 3% increased Attack Speed", statOrder = { 7521 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAttackSpeed", weightKey = { "affliction_axe_and_sword_damage", "affliction_mace_and_staff_damage", "affliction_dagger_and_claw_damage", "affliction_bow_damage", "affliction_wand_damage", "affliction_damage_with_two_handed_melee_weapons", "affliction_attack_damage_while_dual_wielding_", "affliction_attack_damage_while_holding_a_shield", "affliction_attack_damage_", "default", }, weightVal = { 250, 250, 250, 250, 250, 250, 250, 250, 250, 0 }, modTags = { "attack", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantCastSpeed"] = { type = "Suffix", affix = "of Talent", "Added Small Passive Skills also grant: 1% increased Cast Speed", statOrder = { 7523 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantCastSpeed2"] = { type = "Suffix", affix = "of Nimbleness", "Added Small Passive Skills also grant: 2% increased Cast Speed", statOrder = { 7523 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantCastSpeed3_"] = { type = "Suffix", affix = "of Expertise", "Added Small Passive Skills also grant: 3% increased Cast Speed", statOrder = { 7523 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCastSpeed", weightKey = { "affliction_spell_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime"] = { type = "Suffix", affix = "of Decline", "Added Small Passive Skills also grant: 1% increased Damage over Time", statOrder = { 7532 }, level = 1, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime2"] = { type = "Suffix", affix = "of Degeneration", "Added Small Passive Skills also grant: 2% increased Damage over Time", statOrder = { 7532 }, level = 68, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 350, 350, 350, 350, 350, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantDamageOverTime3"] = { type = "Suffix", affix = "of Disintegration", "Added Small Passive Skills also grant: 3% increased Damage over Time", statOrder = { 7532 }, level = 84, group = "AfflictionJewelSmallPassivesGrantDamageOverTime", weightKey = { "affliction_fire_damage_over_time_multiplier", "affliction_chaos_damage_over_time_multiplier", "affliction_physical_damage_over_time_multiplier", "affliction_cold_damage_over_time_multiplier", "affliction_damage_over_time_multiplier", "default", }, weightVal = { 250, 250, 250, 250, 250, 0 }, modTags = { "damage" }, }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration_"] = { type = "Suffix", affix = "of Tumult", "Added Small Passive Skills also grant: 3% increased Duration of Elemental Ailments on Enemies", statOrder = { 7525 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration2"] = { type = "Suffix", affix = "of Turbulence", "Added Small Passive Skills also grant: 4% increased Duration of Elemental Ailments on Enemies", statOrder = { 7525 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AfflictionJewelSmallPassivesGrantElementalAilmentDuration3"] = { type = "Suffix", affix = "of Disturbance", "Added Small Passive Skills also grant: 5% increased Duration of Elemental Ailments on Enemies", statOrder = { 7525 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalAilmentDuration", weightKey = { "affliction_effect_of_non-damaging_ailments", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect__"] = { type = "Suffix", affix = "of Outreach", "Added Small Passive Skills also grant: 2% increased Area of Effect of Aura Skills", statOrder = { 7522 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect2"] = { type = "Suffix", affix = "of Influence", "Added Small Passive Skills also grant: 4% increased Area of Effect of Aura Skills", statOrder = { 7522 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 350, 0 }, modTags = { "aura" }, }, + ["AfflictionJewelSmallPassivesGrantAuraAreaOfEffect3"] = { type = "Suffix", affix = "of Guidance", "Added Small Passive Skills also grant: 6% increased Area of Effect of Aura Skills", statOrder = { 7522 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAuraAreaOfEffect", weightKey = { "old_do_not_use_affliction_aura_effect", "default", }, weightVal = { 250, 0 }, modTags = { "aura" }, }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect"] = { type = "Suffix", affix = "of Clout", "Added Small Passive Skills also grant: 1% increased Area of Effect of Hex Skills", statOrder = { 7531 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect2"] = { type = "Suffix", affix = "of Dominance", "Added Small Passive Skills also grant: 2% increased Area of Effect of Hex Skills", statOrder = { 7531 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 350, 0 }, modTags = { "caster", "curse" }, }, + ["AfflictionJewelSmallPassivesGrantCurseAreaOfEffect3"] = { type = "Suffix", affix = "of Suppression", "Added Small Passive Skills also grant: 3% increased Area of Effect of Hex Skills", statOrder = { 7531 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCurseAreaOfEffect", weightKey = { "old_do_not_use_affliction_curse_effect", "default", }, weightVal = { 250, 0 }, modTags = { "caster", "curse" }, }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration"] = { type = "Suffix", affix = "of Yelling", "Added Small Passive Skills also grant: 2% increased Warcry Duration", statOrder = { 7552 }, level = 1, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration2"] = { type = "Suffix", affix = "of Shouting", "Added Small Passive Skills also grant: 3% increased Warcry Duration", statOrder = { 7552 }, level = 68, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 350, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantWarcryDuration3"] = { type = "Suffix", affix = "of Bellowing", "Added Small Passive Skills also grant: 4% increased Warcry Duration", statOrder = { 7552 }, level = 84, group = "AfflictionJewelSmallPassivesGrantWarcryDuration", weightKey = { "affliction_warcry_buff_effect", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Ire", "Added Small Passive Skills also grant: +1% to Critical Strike Multiplier", statOrder = { 7524 }, level = 1, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier2_"] = { type = "Suffix", affix = "of Anger", "Added Small Passive Skills also grant: +2% to Critical Strike Multiplier", statOrder = { 7524 }, level = 68, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 350, 0 }, modTags = { "damage", "critical" }, }, + ["AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "Added Small Passive Skills also grant: +3% to Critical Strike Multiplier", statOrder = { 7524 }, level = 84, group = "AfflictionJewelSmallPassivesGrantCriticalStrikeMultiplier", weightKey = { "affliction_critical_chance", "default", }, weightVal = { 250, 0 }, modTags = { "damage", "critical" }, }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen"] = { type = "Suffix", affix = "of Fostering", "Added Small Passive Skills also grant: Minions Regenerate 0.1% of Life per Second", statOrder = { 7546 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen2"] = { type = "Suffix", affix = "of Nurturing", "Added Small Passive Skills also grant: Minions Regenerate 0.15% of Life per Second", statOrder = { 7546 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantMinionLifeRegen3"] = { type = "Suffix", affix = "of Motherhood", "Added Small Passive Skills also grant: Minions Regenerate 0.2% of Life per Second", statOrder = { 7546 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionLifeRegen", weightKey = { "affliction_minion_life", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "life", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect_"] = { type = "Suffix", affix = "of Reach", "Added Small Passive Skills also grant: 1% increased Area of Effect", statOrder = { 7527 }, level = 1, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect2"] = { type = "Suffix", affix = "of Range", "Added Small Passive Skills also grant: 2% increased Area of Effect", statOrder = { 7527 }, level = 68, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 350, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantAreaOfEffect3"] = { type = "Suffix", affix = "of Horizons", "Added Small Passive Skills also grant: 3% increased Area of Effect", statOrder = { 7527 }, level = 84, group = "AfflictionJewelSmallPassivesGrantAreaOfEffect", weightKey = { "affliction_area_damage", "default", }, weightVal = { 250, 0 }, modTags = { }, }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed"] = { type = "Suffix", affix = "of Darting", "Added Small Passive Skills also grant: 2% increased Projectile Speed", statOrder = { 7526 }, level = 1, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed2"] = { type = "Suffix", affix = "of Flight", "Added Small Passive Skills also grant: 3% increased Projectile Speed", statOrder = { 7526 }, level = 68, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantProjectileSpeed3"] = { type = "Suffix", affix = "of Propulsion", "Added Small Passive Skills also grant: 4% increased Projectile Speed", statOrder = { 7526 }, level = 84, group = "AfflictionJewelSmallPassivesGrantProjectileSpeed", weightKey = { "affliction_projectile_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed_"] = { type = "Suffix", affix = "of Tinkering", "Added Small Passive Skills also grant: 1% increased Trap and Mine Throwing Speed", statOrder = { 7551 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed2"] = { type = "Suffix", affix = "of Assembly", "Added Small Passive Skills also grant: 2% increased Trap and Mine Throwing Speed", statOrder = { 7551 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTrapAndMineSpeed3_"] = { type = "Suffix", affix = "of Deployment", "Added Small Passive Skills also grant: 3% increased Trap and Mine Throwing Speed", statOrder = { 7551 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTrapAndMineSpeed", weightKey = { "affliction_trap_and_mine_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed"] = { type = "Suffix", affix = "of the Karui", "Added Small Passive Skills also grant: 1% increased Totem Placement speed", statOrder = { 7550 }, level = 1, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed2"] = { type = "Suffix", affix = "of the Ancestors", "Added Small Passive Skills also grant: 2% increased Totem Placement speed", statOrder = { 7550 }, level = 68, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 350, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantTotemPlacementSpeed3"] = { type = "Suffix", affix = "of The Way", "Added Small Passive Skills also grant: 3% increased Totem Placement speed", statOrder = { 7550 }, level = 84, group = "AfflictionJewelSmallPassivesGrantTotemPlacementSpeed", weightKey = { "affliction_totem_damage", "default", }, weightVal = { 250, 0 }, modTags = { "speed" }, }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange_"] = { type = "Suffix", affix = "of Gripping", "Added Small Passive Skills also grant: 1% increased Brand Attachment range", statOrder = { 7548 }, level = 1, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange2"] = { type = "Suffix", affix = "of Grasping", "Added Small Passive Skills also grant: 2% increased Brand Attachment range", statOrder = { 7548 }, level = 68, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 350, 0 }, modTags = { "caster" }, }, + ["AfflictionJewelSmallPassivesGrantBrandAttachmentRange3____"] = { type = "Suffix", affix = "of Latching", "Added Small Passive Skills also grant: 3% increased Brand Attachment range", statOrder = { 7548 }, level = 84, group = "AfflictionJewelSmallPassivesGrantBrandAttachmentRange", weightKey = { "affliction_brand_damage", "default", }, weightVal = { 250, 0 }, modTags = { "caster" }, }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed"] = { type = "Suffix", affix = "of Attention", "Added Small Passive Skills also grant: Channelling Skills have 1% increased Attack and Cast Speed", statOrder = { 7514 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Concentration", "Added Small Passive Skills also grant: Channelling Skills have 2% increased Attack and Cast Speed", statOrder = { 7514 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Forethought", "Added Small Passive Skills also grant: Channelling Skills have 3% increased Attack and Cast Speed", statOrder = { 7514 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChannelledAttackAndCastSpeed", weightKey = { "affliction_channelling_skill_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained"] = { type = "Suffix", affix = "of Refilling", "Added Small Passive Skills also grant: 1% increased Flask Charges gained", statOrder = { 7529 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained2_"] = { type = "Suffix", affix = "of Brimming", "Added Small Passive Skills also grant: 2% increased Flask Charges gained", statOrder = { 7529 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 350, 350, 0 }, modTags = { "flask" }, }, + ["AfflictionJewelSmallPassivesGrantFlaskChargesGained3"] = { type = "Suffix", affix = "of Overflowing", "Added Small Passive Skills also grant: 3% increased Flask Charges gained", statOrder = { 7529 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFlaskChargesGained", weightKey = { "affliction_life_and_mana_recovery_from_flasks", "affliction_flask_duration", "default", }, weightVal = { 250, 250, 0 }, modTags = { "flask" }, }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Kindling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Fire Skills", statOrder = { 7518 }, level = 1, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Smoke", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Fire Skills", statOrder = { 7518 }, level = 68, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Flashfires", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Fire Skills", statOrder = { 7518 }, level = 84, group = "AfflictionJewelSmallPassivesGrantFireSkillAttackAndCastSpeed", weightKey = { "affliction_fire_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "fire", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Cooling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Cold Skills", statOrder = { 7516 }, level = 1, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Frigidity", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Cold Skills", statOrder = { 7516 }, level = 68, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Avalanche", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Cold Skills", statOrder = { 7516 }, level = 84, group = "AfflictionJewelSmallPassivesGrantColdSkillAttackAndCastSpeed", weightKey = { "affliction_cold_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "cold", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Gathering Clouds", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7519 }, level = 1, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Sudden Storms", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7519 }, level = 68, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Strike", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Lightning Skills", statOrder = { 7519 }, level = 84, group = "AfflictionJewelSmallPassivesGrantLightningSkillAttackAndCastSpeed", weightKey = { "affliction_lightning_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "lightning", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Dusk", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7515 }, level = 1, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed2____"] = { type = "Suffix", affix = "of Midnight", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7515 }, level = 68, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 350, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Eclipse", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Chaos Skills", statOrder = { 7515 }, level = 84, group = "AfflictionJewelSmallPassivesGrantChaosSkillAttackAndCastSpeed", weightKey = { "affliction_chaos_damage", "default", }, weightVal = { 250, 0 }, modTags = { "chaos", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Rumbling", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Physical Skills", statOrder = { 7520 }, level = 1, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Tremors", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Physical Skills", statOrder = { 7520 }, level = 68, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 350, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of the Earthquake", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Physical Skills", statOrder = { 7520 }, level = 84, group = "AfflictionJewelSmallPassivesGrantPhysicalSkillAttackAndCastSpeed", weightKey = { "affliction_physical_damage", "default", }, weightVal = { 250, 0 }, modTags = { "physical", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed"] = { type = "Suffix", affix = "of Coaxing", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7517 }, level = 1, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of Evoking", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7517 }, level = 68, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 350, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed3_"] = { type = "Suffix", affix = "of Manifesting", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed with Elemental Skills", statOrder = { 7517 }, level = 84, group = "AfflictionJewelSmallPassivesGrantElementalSkillAttackAndCastSpeed", weightKey = { "affliction_elemental_damage", "default", }, weightVal = { 250, 0 }, modTags = { "elemental", "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of Pillaging", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed", statOrder = { 7544 }, level = 1, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed2"] = { type = "Suffix", affix = "of Ravaging", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed", statOrder = { 7544 }, level = 68, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of Razing", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed", statOrder = { 7544 }, level = 84, group = "AfflictionJewelSmallPassivesGrantMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Courier", "Added Small Passive Skills also grant: 1% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7513 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Messenger", "Added Small Passive Skills also grant: 2% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7513 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Herald", "Added Small Passive Skills also grant: 3% increased Attack and Cast Speed while affected by a Herald", statOrder = { 7513 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldAttackAndCastSpeed", weightKey = { "affliction_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed"] = { type = "Suffix", affix = "of the Message", "Added Small Passive Skills also grant: Minions have 1% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7545 }, level = 1, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed2_"] = { type = "Suffix", affix = "of the Teachings", "Added Small Passive Skills also grant: Minions have 2% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7545 }, level = 68, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 350, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, + ["AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed3"] = { type = "Suffix", affix = "of the Canon", "Added Small Passive Skills also grant: Minions have 3% increased Attack and Cast Speed while you are affected by a Herald", statOrder = { 7545 }, level = 84, group = "AfflictionJewelSmallPassivesGrantHeraldMinionAttackAndCastSpeed", weightKey = { "affliction_minion_damage_while_you_have_a_herald", "default", }, weightVal = { 250, 0 }, modTags = { "attack", "caster", "speed", "minion" }, }, } \ No newline at end of file diff --git a/src/Data/ModNecropolis.lua b/src/Data/ModNecropolis.lua index 43d7726588..de581a05cd 100644 --- a/src/Data/ModNecropolis.lua +++ b/src/Data/ModNecropolis.lua @@ -2,55 +2,55 @@ -- Item data (c) Grinding Gear Games return { - ["NecropolisCraftingAllResistancesWithChaos"] = { type = "Suffix", affix = "of Haunting", "+(12-16)% to All Resistances", statOrder = { 9921 }, level = 12, group = "AllResistancesWithChaos", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "resistance" }, }, - ["NecropolisCraftingFireResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Fire Resistance cannot be Penetrated", statOrder = { 6589 }, level = 68, group = "FireResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "resistance" }, }, - ["NecropolisCraftingColdResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Cold Resistance cannot be Penetrated", statOrder = { 5838 }, level = 68, group = "ColdResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "resistance" }, }, - ["NecropolisCraftingLightningResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Lightning Resistance cannot be Penetrated", statOrder = { 7466 }, level = 68, group = "LightningResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "resistance" }, }, - ["NecropolisCraftingLocalNoAttributeRequirements"] = { type = "Suffix", affix = "of Haunting", "Has no Attribute Requirements", statOrder = { 1087 }, level = 50, group = "LocalNoAttributeRequirements", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingDamageTakenGainedAsLife"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Life", statOrder = { 6110 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, - ["NecropolisCraftingPercentDamageGoesToMana"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 2460 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingLocalCanSocketIgnoringColour"] = { type = "Suffix", affix = "of Haunting", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 96 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingReducedExtraDamageFromCrits"] = { type = "Suffix", affix = "of Haunting", "You take (40-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1517 }, level = 24, group = "ReducedExtraDamageFromCrits", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, - ["NecropolisCraftingManaReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(10-15)% increased Mana Reservation Efficiency of Skills", statOrder = { 2233 }, level = 24, group = "ManaReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingLifeReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(20-30)% increased Life Reservation Efficiency of Skills", statOrder = { 2231 }, level = 34, group = "LifeReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, - ["NecropolisCraftingCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Haunting", "Corrupted Blood cannot be inflicted on you", statOrder = { 5413 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, - ["NecropolisCraftingIncreasedStunThreshold"] = { type = "Suffix", affix = "of Haunting", "(80-120)% increased Stun Threshold", statOrder = { 3277 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "necropolis_boots", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCannotBeKnockedBack"] = { type = "Prefix", affix = "Haunted", "Cannot be Knocked Back", statOrder = { 1526 }, level = 50, group = "CannotBeKnockedBack", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingMaximumEnduranceCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Endurance Charges", statOrder = { 1809 }, level = 16, group = "MaximumEnduranceCharges", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingNoExtraBleedDamageWhileMoving"] = { type = "Suffix", affix = "of Haunting", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3197 }, level = 34, group = "NoExtraBleedDamageWhileMoving", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingAvoidIgnite"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Ignited", statOrder = { 1851 }, level = 16, group = "AvoidIgnite", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "ailment" }, }, - ["NecropolisCraftingAvoidFreeze"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Frozen", statOrder = { 1850 }, level = 16, group = "AvoidFreeze", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, - ["NecropolisCraftingAvoidShock"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Shocked", statOrder = { 1853 }, level = 16, group = "AvoidShock", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, - ["NecropolisCraftingReducedBleedDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Bleed Duration on you", statOrder = { 9968 }, level = 24, group = "ReducedBleedDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, - ["NecropolisCraftingReducedPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Poison Duration on you", statOrder = { 9977 }, level = 24, group = "ReducedPoisonDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingBurningGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Burning Ground", statOrder = { 10455 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire" }, }, - ["NecropolisCraftingShockedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Shocked Ground", statOrder = { 10480 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, - ["NecropolisCraftingChilledGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Chilled Ground", statOrder = { 10460 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, - ["NecropolisCraftingDesecratedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Desecrated Ground", statOrder = { 10466 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "chaos" }, }, - ["NecropolisCraftingMovementCannotBeSlowedBelowBase"] = { type = "Prefix", affix = "Haunted", "Movement Speed cannot be modified to below Base Value", statOrder = { 3201 }, level = 45, group = "MovementCannotBeSlowedBelowBase", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "speed" }, }, - ["NecropolisCraftingWarcriesOpenChests"] = { type = "Prefix", affix = "Haunted", "Your Warcries open Chests", statOrder = { 9558 }, level = 24, group = "WarcriesOpenChests", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingIncreasedMaximumPowerCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Power Charges", statOrder = { 1819 }, level = 16, group = "IncreasedMaximumPowerCharges", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCriticalStrikeChance"] = { type = "Suffix", affix = "of Haunting", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1464 }, level = 1, group = "CriticalStrikeChance", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "critical" }, }, - ["NecropolisCraftingManaRegeneration"] = { type = "Suffix", affix = "of Haunting", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1589 }, level = 1, group = "ManaRegeneration", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingImmunityToBlind"] = { type = "Suffix", affix = "of Haunting", "Cannot be Blinded", statOrder = { 2979 }, level = 38, group = "ImmunityToBlind", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingManaPer2Intelligence"] = { type = "Prefix", affix = "Haunted", "+1 to maximum Mana per 2 Intelligence", statOrder = { 9175 }, level = 68, group = "ManaPer2Intelligence", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingAccuracyPer2Dexterity"] = { type = "Suffix", affix = "of Haunting", "+2 to Accuracy Rating per 2 Dexterity", statOrder = { 4521 }, level = 68, group = "AccuracyPer2Dexterity", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellDamage"] = { type = "Prefix", affix = "Haunted", "(20-30)% increased Spell Damage", statOrder = { 1228 }, level = 1, group = "SpellDamage", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "caster_damage", "necropolis_exclusive_mod", "damage", "caster" }, }, - ["NecropolisCraftingIncreasedCastSpeed"] = { type = "Suffix", affix = "of Haunting", "(8-12)% increased Cast Speed", statOrder = { 1451 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "speed" }, }, - ["NecropolisCraftingArcaneSurgeOnSpendingMana"] = { type = "Suffix", affix = "of Haunting", "Gain Arcane Surge after Spending a total of 400 Mana", statOrder = { 7146 }, level = 34, group = "ArcaneSurgeOnSpendingMana", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, - ["NecropolisCraftingAreaOfEffect"] = { type = "Suffix", affix = "of Haunting", "(15-25)% increased Area of Effect", statOrder = { 1885 }, level = 12, group = "AreaOfEffect", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingCurseEffectiveness"] = { type = "Suffix", affix = "of Haunting", "(5-8)% increased Effect of your Curses", statOrder = { 2601 }, level = 24, group = "CurseEffectiveness", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "curse" }, }, - ["NecropolisCraftingMaximumFrenzyCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Frenzy Charges", statOrder = { 1814 }, level = 16, group = "MaximumFrenzyCharges", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingChaosDamage"] = { type = "Prefix", affix = "Haunted", "Adds (13-17) to (23-29) Chaos Damage to Attacks", statOrder = { 1392 }, level = 1, group = "ChaosDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 750, 0 }, modTags = { "chaos_damage", "necropolis_exclusive_mod", "damage", "chaos", "attack" }, }, - ["NecropolisCraftingCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Haunting", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1493 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, - ["NecropolisCraftingPoisonOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Poison on Hit", statOrder = { 3178 }, level = 16, group = "PoisonOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(12-20)% increased Poison Duration", statOrder = { 3175 }, level = 38, group = "PoisonDuration", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, - ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2494 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingFasterBleedDamage"] = { type = "Suffix", affix = "of Haunting", "Bleeding you inflict deals Damage (12-20)% faster", statOrder = { 6549 }, level = 38, group = "FasterBleedDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "physical_damage", "bleed", "necropolis_exclusive_mod", "damage", "physical", "attack", "ailment" }, }, - ["NecropolisCraftingGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% Global chance to Blind Enemies on hit", statOrder = { 2963 }, level = 16, group = "GlobalChanceToBlindOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, - ["NecropolisCraftingGlobalMaimOnHit"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to Maim on Hit", statOrder = { 8159 }, level = 34, group = "GlobalMaimOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellsHinderOnHitChance"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10187 }, level = 34, group = "SpellsHinderOnHitChance", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, - ["NecropolisCraftingMeleeKnockback"] = { type = "Suffix", affix = "of Haunting", "Melee Attacks Knock Enemies Back on Hit", statOrder = { 9197 }, level = 45, group = "MeleeKnockback", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingIntimidateOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4925 }, level = 38, group = "IntimidateOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, - ["NecropolisCraftingSpellUnnerveOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells", statOrder = { 5731 }, level = 38, group = "SpellUnnerveOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, + ["NecropolisCraftingAllResistancesWithChaos"] = { type = "Suffix", affix = "of Haunting", "+(12-16)% to All Resistances", statOrder = { 9922 }, level = 12, group = "AllResistancesWithChaos", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "resistance" }, }, + ["NecropolisCraftingFireResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Fire Resistance cannot be Penetrated", statOrder = { 6584 }, level = 68, group = "FireResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "resistance" }, }, + ["NecropolisCraftingColdResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Cold Resistance cannot be Penetrated", statOrder = { 5833 }, level = 68, group = "ColdResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "resistance" }, }, + ["NecropolisCraftingLightningResistanceCannotBePenetrated"] = { type = "Suffix", affix = "of Haunting", "Lightning Resistance cannot be Penetrated", statOrder = { 7461 }, level = 68, group = "LightningResistanceCannotBePenetrated", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "resistance" }, }, + ["NecropolisCraftingLocalNoAttributeRequirements"] = { type = "Suffix", affix = "of Haunting", "Has no Attribute Requirements", statOrder = { 1082 }, level = 50, group = "LocalNoAttributeRequirements", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingDamageTakenGainedAsLife"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Life", statOrder = { 6105 }, level = 45, group = "DamageTakenGainedAsLife", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, + ["NecropolisCraftingPercentDamageGoesToMana"] = { type = "Suffix", affix = "of Haunting", "(25-35)% of Damage taken Recouped as Mana", statOrder = { 2455 }, level = 45, group = "PercentDamageGoesToMana", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 350, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingLocalCanSocketIgnoringColour"] = { type = "Suffix", affix = "of Haunting", "Gems can be Socketed in this Item ignoring Socket Colour", statOrder = { 91 }, level = 1, group = "LocalCanSocketIgnoringColour", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingReducedExtraDamageFromCrits"] = { type = "Suffix", affix = "of Haunting", "You take (40-60)% reduced Extra Damage from Critical Strikes", statOrder = { 1512 }, level = 24, group = "ReducedExtraDamageFromCrits", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, + ["NecropolisCraftingManaReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(10-15)% increased Mana Reservation Efficiency of Skills", statOrder = { 2228 }, level = 24, group = "ManaReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingLifeReservationEfficiency"] = { type = "Suffix", affix = "of Haunting", "(20-30)% increased Life Reservation Efficiency of Skills", statOrder = { 2226 }, level = 34, group = "LifeReservationEfficiency", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "life" }, }, + ["NecropolisCraftingCorruptedBloodImmunity"] = { type = "Suffix", affix = "of Haunting", "Corrupted Blood cannot be inflicted on you", statOrder = { 5408 }, level = 60, group = "CorruptedBloodImmunity", weightKey = { "necropolis_body_armour", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, + ["NecropolisCraftingIncreasedStunThreshold"] = { type = "Suffix", affix = "of Haunting", "(80-120)% increased Stun Threshold", statOrder = { 3272 }, level = 1, group = "IncreasedStunThreshold", weightKey = { "necropolis_boots", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCannotBeKnockedBack"] = { type = "Prefix", affix = "Haunted", "Cannot be Knocked Back", statOrder = { 1521 }, level = 50, group = "CannotBeKnockedBack", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingMaximumEnduranceCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Endurance Charges", statOrder = { 1804 }, level = 16, group = "MaximumEnduranceCharges", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "endurance_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingNoExtraBleedDamageWhileMoving"] = { type = "Suffix", affix = "of Haunting", "Moving while Bleeding doesn't cause you to take extra Damage", statOrder = { 3192 }, level = 34, group = "NoExtraBleedDamageWhileMoving", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingAvoidIgnite"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Ignited", statOrder = { 1846 }, level = 16, group = "AvoidIgnite", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire", "ailment" }, }, + ["NecropolisCraftingAvoidFreeze"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Frozen", statOrder = { 1845 }, level = 16, group = "AvoidFreeze", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, + ["NecropolisCraftingAvoidShock"] = { type = "Suffix", affix = "of Haunting", "(60-75)% chance to Avoid being Shocked", statOrder = { 1848 }, level = 16, group = "AvoidShock", weightKey = { "necropolis_boots", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, + ["NecropolisCraftingReducedBleedDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Bleed Duration on you", statOrder = { 9969 }, level = 24, group = "ReducedBleedDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "ailment" }, }, + ["NecropolisCraftingReducedPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(60-75)% reduced Poison Duration on you", statOrder = { 9978 }, level = 24, group = "ReducedPoisonDuration", weightKey = { "necropolis_boots", "default", }, weightVal = { 350, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingBurningGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Burning Ground", statOrder = { 10456 }, level = 68, group = "BurningGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "fire" }, }, + ["NecropolisCraftingShockedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Shocked Ground", statOrder = { 10481 }, level = 68, group = "ShockedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "lightning", "ailment" }, }, + ["NecropolisCraftingChilledGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Chilled Ground", statOrder = { 10461 }, level = 68, group = "ChilledGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "elemental", "cold", "ailment" }, }, + ["NecropolisCraftingDesecratedGroundEffectEffectiveness"] = { type = "Prefix", affix = "Haunted", "Unaffected by Desecrated Ground", statOrder = { 10467 }, level = 68, group = "DesecratedGroundEffectEffectiveness", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "chaos" }, }, + ["NecropolisCraftingMovementCannotBeSlowedBelowBase"] = { type = "Prefix", affix = "Haunted", "Movement Speed cannot be modified to below Base Value", statOrder = { 3196 }, level = 45, group = "MovementCannotBeSlowedBelowBase", weightKey = { "necropolis_boots", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "speed" }, }, + ["NecropolisCraftingWarcriesOpenChests"] = { type = "Prefix", affix = "Haunted", "Your Warcries open Chests", statOrder = { 9559 }, level = 24, group = "WarcriesOpenChests", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingIncreasedMaximumPowerCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Power Charges", statOrder = { 1814 }, level = 16, group = "IncreasedMaximumPowerCharges", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "power_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCriticalStrikeChance"] = { type = "Suffix", affix = "of Haunting", "(30-50)% increased Global Critical Strike Chance", statOrder = { 1459 }, level = 1, group = "CriticalStrikeChance", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "critical" }, }, + ["NecropolisCraftingManaRegeneration"] = { type = "Suffix", affix = "of Haunting", "(40-60)% increased Mana Regeneration Rate", statOrder = { 1584 }, level = 1, group = "ManaRegeneration", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingImmunityToBlind"] = { type = "Suffix", affix = "of Haunting", "Cannot be Blinded", statOrder = { 2974 }, level = 38, group = "ImmunityToBlind", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingManaPer2Intelligence"] = { type = "Prefix", affix = "Haunted", "+1 to maximum Mana per 2 Intelligence", statOrder = { 9171 }, level = 68, group = "ManaPer2Intelligence", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingAccuracyPer2Dexterity"] = { type = "Suffix", affix = "of Haunting", "+2 to Accuracy Rating per 2 Dexterity", statOrder = { 4516 }, level = 68, group = "AccuracyPer2Dexterity", weightKey = { "necropolis_helmet", "default", }, weightVal = { 100, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellDamage"] = { type = "Prefix", affix = "Haunted", "(20-30)% increased Spell Damage", statOrder = { 1223 }, level = 1, group = "SpellDamage", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "caster_damage", "necropolis_exclusive_mod", "damage", "caster" }, }, + ["NecropolisCraftingIncreasedCastSpeed"] = { type = "Suffix", affix = "of Haunting", "(8-12)% increased Cast Speed", statOrder = { 1446 }, level = 1, group = "IncreasedCastSpeed", weightKey = { "necropolis_helmet", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "speed" }, }, + ["NecropolisCraftingArcaneSurgeOnSpendingMana"] = { type = "Suffix", affix = "of Haunting", "Gain Arcane Surge after Spending a total of 400 Mana", statOrder = { 7141 }, level = 34, group = "ArcaneSurgeOnSpendingMana", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "resource", "necropolis_exclusive_mod", "mana" }, }, + ["NecropolisCraftingAreaOfEffect"] = { type = "Suffix", affix = "of Haunting", "(15-25)% increased Area of Effect", statOrder = { 1880 }, level = 12, group = "AreaOfEffect", weightKey = { "necropolis_helmet", "default", }, weightVal = { 750, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingCurseEffectiveness"] = { type = "Suffix", affix = "of Haunting", "(5-8)% increased Effect of your Curses", statOrder = { 2596 }, level = 24, group = "CurseEffectiveness", weightKey = { "necropolis_helmet", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster", "curse" }, }, + ["NecropolisCraftingMaximumFrenzyCharges"] = { type = "Prefix", affix = "Haunted", "+1 to Maximum Frenzy Charges", statOrder = { 1809 }, level = 16, group = "MaximumFrenzyCharges", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "frenzy_charge", "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingChaosDamage"] = { type = "Prefix", affix = "Haunted", "Adds (13-17) to (23-29) Chaos Damage to Attacks", statOrder = { 1387 }, level = 1, group = "ChaosDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 750, 0 }, modTags = { "chaos_damage", "necropolis_exclusive_mod", "damage", "chaos", "attack" }, }, + ["NecropolisCraftingCriticalStrikeMultiplier"] = { type = "Suffix", affix = "of Haunting", "+(15-25)% to Global Critical Strike Multiplier", statOrder = { 1488 }, level = 24, group = "CriticalStrikeMultiplier", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "damage", "critical" }, }, + ["NecropolisCraftingPoisonOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Poison on Hit", statOrder = { 3173 }, level = 16, group = "PoisonOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingPoisonDuration"] = { type = "Suffix", affix = "of Haunting", "(12-20)% increased Poison Duration", statOrder = { 3170 }, level = 38, group = "PoisonDuration", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "poison", "necropolis_exclusive_mod", "chaos", "ailment" }, }, + ["NecropolisCraftingChanceToBleed"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to cause Bleeding", statOrder = { 2489 }, level = 16, group = "ChanceToBleed", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "bleed", "necropolis_exclusive_mod", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingFasterBleedDamage"] = { type = "Suffix", affix = "of Haunting", "Bleeding you inflict deals Damage (12-20)% faster", statOrder = { 6544 }, level = 38, group = "FasterBleedDamage", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "physical_damage", "bleed", "necropolis_exclusive_mod", "damage", "physical", "attack", "ailment" }, }, + ["NecropolisCraftingGlobalChanceToBlindOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% Global chance to Blind Enemies on hit", statOrder = { 2958 }, level = 16, group = "GlobalChanceToBlindOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod" }, }, + ["NecropolisCraftingGlobalMaimOnHit"] = { type = "Suffix", affix = "of Haunting", "Attacks have (15-25)% chance to Maim on Hit", statOrder = { 8154 }, level = 34, group = "GlobalMaimOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellsHinderOnHitChance"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Hinder Enemies on Hit with Spells", statOrder = { 10188 }, level = 34, group = "SpellsHinderOnHitChance", weightKey = { "necropolis_gloves", "default", }, weightVal = { 500, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, + ["NecropolisCraftingMeleeKnockback"] = { type = "Suffix", affix = "of Haunting", "Melee Attacks Knock Enemies Back on Hit", statOrder = { 9193 }, level = 45, group = "MeleeKnockback", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingIntimidateOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Intimidate Enemies for 4 seconds on Hit with Attacks", statOrder = { 4920 }, level = 38, group = "IntimidateOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "attack" }, }, + ["NecropolisCraftingSpellUnnerveOnHit"] = { type = "Suffix", affix = "of Haunting", "(15-25)% chance to Unnerve Enemies for 4 seconds on Hit with Spells", statOrder = { 5726 }, level = 38, group = "SpellUnnerveOnHit", weightKey = { "necropolis_gloves", "default", }, weightVal = { 250, 0 }, modTags = { "necropolis_exclusive_mod", "caster" }, }, } \ No newline at end of file diff --git a/src/Data/ModTincture.lua b/src/Data/ModTincture.lua index 9d2c15369a..94f9d5a968 100644 --- a/src/Data/ModTincture.lua +++ b/src/Data/ModTincture.lua @@ -2,70 +2,70 @@ -- Item data (c) Grinding Gear Games return { - ["TinctureEffect1"] = { type = "Prefix", affix = "Herbal", "(11-13)% increased effect", statOrder = { 10903 }, level = 1, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, - ["TinctureEffect2"] = { type = "Prefix", affix = "Natural", "(14-16)% increased effect", statOrder = { 10903 }, level = 35, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, - ["TinctureEffect3"] = { type = "Prefix", affix = "Medicinal", "(17-19)% increased effect", statOrder = { 10903 }, level = 64, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, - ["TinctureEffect4"] = { type = "Prefix", affix = "Horticultural", "(20-22)% increased effect", statOrder = { 10903 }, level = 85, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, - ["TinctureToxicityRate1"] = { type = "Prefix", affix = "Sustained", "(15-17)% reduced Mana Burn rate", statOrder = { 10904 }, level = 1, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureToxicityRate2"] = { type = "Prefix", affix = "Tenacious", "(18-20)% reduced Mana Burn rate", statOrder = { 10904 }, level = 30, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureToxicityRate3"] = { type = "Prefix", affix = "Persistent", "(21-23)% reduced Mana Burn rate", statOrder = { 10904 }, level = 58, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureToxicityRate4"] = { type = "Prefix", affix = "Persevering", "(24-26)% reduced Mana Burn rate", statOrder = { 10904 }, level = 80, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureCooldownRecovery1"] = { type = "Prefix", affix = "Lucid", "(13-17)% increased Cooldown Recovery Rate", statOrder = { 10902 }, level = 1, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureCooldownRecovery2"] = { type = "Prefix", affix = "Perceptive", "(18-22)% increased Cooldown Recovery Rate", statOrder = { 10902 }, level = 30, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureCooldownRecovery3"] = { type = "Prefix", affix = "Insightful", "(23-27)% increased Cooldown Recovery Rate", statOrder = { 10902 }, level = 58, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureCooldownRecovery4"] = { type = "Prefix", affix = "Astute", "(28-32)% increased Cooldown Recovery Rate", statOrder = { 10902 }, level = 82, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureEffectFasterToxicity1"] = { type = "Prefix", affix = "Potent", "35% increased effect", "(47-51)% increased Mana Burn rate", statOrder = { 10903, 10904 }, level = 1, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureEffectFasterToxicity2"] = { type = "Prefix", affix = "Concentrated", "35% increased effect", "(42-46)% increased Mana Burn rate", statOrder = { 10903, 10904 }, level = 49, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureEffectFasterToxicity3"] = { type = "Prefix", affix = "Enriched", "35% increased effect", "(37-41)% increased Mana Burn rate", statOrder = { 10903, 10904 }, level = 84, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureEffectSlowerToxicity1"] = { type = "Prefix", affix = "Thin", "(31-35)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10903, 10904 }, level = 1, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureEffectSlowerToxicity2"] = { type = "Prefix", affix = "Diluted", "(26-30)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10903, 10904 }, level = 49, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureEffectSlowerToxicity3"] = { type = "Prefix", affix = "Measured", "(21-25)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10903, 10904 }, level = 84, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, - ["TinctureIncreasedAilmentDuration1"] = { type = "Suffix", affix = "of the Wild", "(25-35)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10923 }, level = 1, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, - ["TinctureIncreasedAilmentDuration2"] = { type = "Suffix", affix = "of the Untamed", "(36-45)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10923 }, level = 42, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, - ["TinctureIncreasedAilmentDuration3"] = { type = "Suffix", affix = "of the Savage", "(46-55)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10923 }, level = 60, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, - ["TinctureIncreasedAilmentDuration4"] = { type = "Suffix", affix = "of the Beast", "(56-65)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10923 }, level = 82, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, - ["TinctureDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(9-13)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10922 }, level = 1, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Dispersion", "+(14-18)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10922 }, level = 34, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Liquefaction", "+(19-23)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10922 }, level = 58, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Melting", "+(24-28)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10922 }, level = 70, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Dissolution", "+(29-33)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10922 }, level = 84, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureElementalPenetration1"] = { type = "Suffix", affix = "of Catalysing", "Melee Weapon Damage Penetrates (5-7)% Elemental Resistances", statOrder = { 10928 }, level = 1, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["TinctureElementalPenetration2"] = { type = "Suffix", affix = "of Infusing", "Melee Weapon Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 10928 }, level = 32, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["TinctureElementalPenetration3"] = { type = "Suffix", affix = "of Empowering", "Melee Weapon Damage Penetrates (11-13)% Elemental Resistances", statOrder = { 10928 }, level = 60, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["TinctureElementalPenetration4"] = { type = "Suffix", affix = "of the Unleashed", "Melee Weapon Damage Penetrates (14-16)% Elemental Resistances", statOrder = { 10928 }, level = 73, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["TinctureElementalPenetration5"] = { type = "Suffix", affix = "of Overpowering", "Melee Weapon Damage Penetrates (17-19)% Elemental Resistances", statOrder = { 10928 }, level = 85, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, - ["TinctureCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(9-13)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10921 }, level = 1, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TinctureCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(14-18)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10921 }, level = 32, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TinctureCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(19-23)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10921 }, level = 60, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TinctureCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(24-28)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10921 }, level = 73, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TinctureCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(29-33)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10921 }, level = 85, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, - ["TinctureIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(15-19)% increased Melee Weapon Attack Speed", statOrder = { 10919 }, level = 1, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, - ["TinctureIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(20-24)% increased Melee Weapon Attack Speed", statOrder = { 10919 }, level = 65, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, - ["TinctureIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(25-29)% increased Melee Weapon Attack Speed", statOrder = { 10919 }, level = 85, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, - ["TinctureDamageAgainstLowLife1"] = { type = "Suffix", affix = "of Execution", "(40-47)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10929 }, level = 1, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageAgainstLowLife2"] = { type = "Suffix", affix = "of Elimination", "(48-55)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10929 }, level = 28, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageAgainstLowLife3"] = { type = "Suffix", affix = "of Termination", "(56-63)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10929 }, level = 47, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageAgainstLowLife4"] = { type = "Suffix", affix = "of Extermination", "(64-71)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10929 }, level = 65, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureDamageAgainstLowLife5"] = { type = "Suffix", affix = "of Assassination", "(72-79)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10929 }, level = 80, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, - ["TinctureLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (11-15) Life per Enemy Killed with Melee Weapons", statOrder = { 10926 }, level = 1, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (16-20) Life per Enemy Killed with Melee Weapons", statOrder = { 10926 }, level = 35, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (21-25) Life per Enemy Killed with Melee Weapons", statOrder = { 10926 }, level = 62, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (26-30) Life per Enemy Killed with Melee Weapons", statOrder = { 10926 }, level = 80, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per Enemy Killed with Melee Weapons", statOrder = { 10920 }, level = 38, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per Enemy Killed with Melee Weapons", statOrder = { 10920 }, level = 50, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (6-8) Mana per Enemy Killed with Melee Weapons", statOrder = { 10920 }, level = 68, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Assimilation", "Gain (9-11) Mana per Enemy Killed with Melee Weapons", statOrder = { 10920 }, level = 82, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, - ["TinctureLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Melee Weapons", statOrder = { 10925 }, level = 1, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (3-4) Life per Enemy Hit with Melee Weapons", statOrder = { 10925 }, level = 50, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (5-7) Life per Enemy Hit with Melee Weapons", statOrder = { 10925 }, level = 77, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, - ["TinctureManaGainPerTarget1"] = { type = "Suffix", affix = "of Enveloping", "Gain 1 Mana per Enemy Hit with Melee Weapons", statOrder = { 10927 }, level = 45, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["TinctureManaGainPerTarget2"] = { type = "Suffix", affix = "of Siphoning", "Gain 2 Mana per Enemy Hit with Melee Weapons", statOrder = { 10927 }, level = 68, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["TinctureManaGainPerTarget3"] = { type = "Suffix", affix = "of Devouring", "Gain 3 Mana per Enemy Hit with Melee Weapons", statOrder = { 10927 }, level = 84, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, - ["TinctureFlaskChargeIncrease1"] = { type = "Suffix", affix = "of Restocking", "(11-15)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10924 }, level = 1, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureFlaskChargeIncrease2"] = { type = "Suffix", affix = "of Replenishing", "(16-20)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10924 }, level = 40, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureFlaskChargeIncrease3"] = { type = "Suffix", affix = "of Pouring", "(21-25)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10924 }, level = 72, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureFlaskChargeIncrease4"] = { type = "Suffix", affix = "of Overflowing", "(26-30)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10924 }, level = 85, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, - ["TinctureIgnorePhysDR1"] = { type = "Suffix", affix = "of Battering", "Melee Weapon Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10890 }, level = 40, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["TinctureIgnorePhysDR2"] = { type = "Suffix", affix = "of Crushing", "Melee Weapon Hits have (40-49)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10890 }, level = 62, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, - ["TinctureIgnorePhysDR3"] = { type = "Suffix", affix = "of Overwhelming", "Melee Weapon Hits have (50-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10890 }, level = 80, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["TinctureEffect1"] = { type = "Prefix", affix = "Herbal", "(11-13)% increased effect", statOrder = { 10904 }, level = 1, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, + ["TinctureEffect2"] = { type = "Prefix", affix = "Natural", "(14-16)% increased effect", statOrder = { 10904 }, level = 35, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, + ["TinctureEffect3"] = { type = "Prefix", affix = "Medicinal", "(17-19)% increased effect", statOrder = { 10904 }, level = 64, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, + ["TinctureEffect4"] = { type = "Prefix", affix = "Horticultural", "(20-22)% increased effect", statOrder = { 10904 }, level = 85, group = "TinctureEffect", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { }, }, + ["TinctureToxicityRate1"] = { type = "Prefix", affix = "Sustained", "(15-17)% reduced Mana Burn rate", statOrder = { 10905 }, level = 1, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureToxicityRate2"] = { type = "Prefix", affix = "Tenacious", "(18-20)% reduced Mana Burn rate", statOrder = { 10905 }, level = 30, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureToxicityRate3"] = { type = "Prefix", affix = "Persistent", "(21-23)% reduced Mana Burn rate", statOrder = { 10905 }, level = 58, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureToxicityRate4"] = { type = "Prefix", affix = "Persevering", "(24-26)% reduced Mana Burn rate", statOrder = { 10905 }, level = 80, group = "TinctureToxicityRate", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureCooldownRecovery1"] = { type = "Prefix", affix = "Lucid", "(13-17)% increased Cooldown Recovery Rate", statOrder = { 10903 }, level = 1, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureCooldownRecovery2"] = { type = "Prefix", affix = "Perceptive", "(18-22)% increased Cooldown Recovery Rate", statOrder = { 10903 }, level = 30, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureCooldownRecovery3"] = { type = "Prefix", affix = "Insightful", "(23-27)% increased Cooldown Recovery Rate", statOrder = { 10903 }, level = 58, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureCooldownRecovery4"] = { type = "Prefix", affix = "Astute", "(28-32)% increased Cooldown Recovery Rate", statOrder = { 10903 }, level = 82, group = "TinctureCooldownRecovery", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureEffectFasterToxicity1"] = { type = "Prefix", affix = "Potent", "35% increased effect", "(47-51)% increased Mana Burn rate", statOrder = { 10904, 10905 }, level = 1, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureEffectFasterToxicity2"] = { type = "Prefix", affix = "Concentrated", "35% increased effect", "(42-46)% increased Mana Burn rate", statOrder = { 10904, 10905 }, level = 49, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureEffectFasterToxicity3"] = { type = "Prefix", affix = "Enriched", "35% increased effect", "(37-41)% increased Mana Burn rate", statOrder = { 10904, 10905 }, level = 84, group = "TinctureEffectFasterToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureEffectSlowerToxicity1"] = { type = "Prefix", affix = "Thin", "(31-35)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10904, 10905 }, level = 1, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureEffectSlowerToxicity2"] = { type = "Prefix", affix = "Diluted", "(26-30)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10904, 10905 }, level = 49, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureEffectSlowerToxicity3"] = { type = "Prefix", affix = "Measured", "(21-25)% reduced effect", "50% reduced Mana Burn rate", statOrder = { 10904, 10905 }, level = 84, group = "TinctureEffectSlowerToxicity", weightKey = { "tincture", "default", }, weightVal = { 400, 0 }, modTags = { }, }, + ["TinctureIncreasedAilmentDuration1"] = { type = "Suffix", affix = "of the Wild", "(25-35)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10924 }, level = 1, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, + ["TinctureIncreasedAilmentDuration2"] = { type = "Suffix", affix = "of the Untamed", "(36-45)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10924 }, level = 42, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, + ["TinctureIncreasedAilmentDuration3"] = { type = "Suffix", affix = "of the Savage", "(46-55)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10924 }, level = 60, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, + ["TinctureIncreasedAilmentDuration4"] = { type = "Suffix", affix = "of the Beast", "(56-65)% increased Duration of Elemental Ailments from Melee Weapon Attacks", statOrder = { 10924 }, level = 82, group = "TinctureIncreasedAilmentDuration", weightKey = { "tincture", "default", }, weightVal = { 700, 0 }, modTags = { "elemental", "attack", "ailment" }, }, + ["TinctureDamageOverTimeMultiplier1"] = { type = "Suffix", affix = "of Acrimony", "+(9-13)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10923 }, level = 1, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageOverTimeMultiplier2"] = { type = "Suffix", affix = "of Dispersion", "+(14-18)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10923 }, level = 34, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageOverTimeMultiplier3"] = { type = "Suffix", affix = "of Liquefaction", "+(19-23)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10923 }, level = 58, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageOverTimeMultiplier4"] = { type = "Suffix", affix = "of Melting", "+(24-28)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10923 }, level = 70, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageOverTimeMultiplier5"] = { type = "Suffix", affix = "of Dissolution", "+(29-33)% to Damage over Time Multiplier with Melee Weapon Attacks", statOrder = { 10923 }, level = 84, group = "TinctureDamageOverTimeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureElementalPenetration1"] = { type = "Suffix", affix = "of Catalysing", "Melee Weapon Damage Penetrates (5-7)% Elemental Resistances", statOrder = { 10929 }, level = 1, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["TinctureElementalPenetration2"] = { type = "Suffix", affix = "of Infusing", "Melee Weapon Damage Penetrates (8-10)% Elemental Resistances", statOrder = { 10929 }, level = 32, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["TinctureElementalPenetration3"] = { type = "Suffix", affix = "of Empowering", "Melee Weapon Damage Penetrates (11-13)% Elemental Resistances", statOrder = { 10929 }, level = 60, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["TinctureElementalPenetration4"] = { type = "Suffix", affix = "of the Unleashed", "Melee Weapon Damage Penetrates (14-16)% Elemental Resistances", statOrder = { 10929 }, level = 73, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["TinctureElementalPenetration5"] = { type = "Suffix", affix = "of Overpowering", "Melee Weapon Damage Penetrates (17-19)% Elemental Resistances", statOrder = { 10929 }, level = 85, group = "TinctureElementalPenetration", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "elemental_damage", "damage", "elemental", "attack" }, }, + ["TinctureCriticalStrikeMultiplier1"] = { type = "Suffix", affix = "of Ire", "+(9-13)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10922 }, level = 1, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TinctureCriticalStrikeMultiplier2"] = { type = "Suffix", affix = "of Anger", "+(14-18)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10922 }, level = 32, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TinctureCriticalStrikeMultiplier3"] = { type = "Suffix", affix = "of Rage", "+(19-23)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10922 }, level = 60, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TinctureCriticalStrikeMultiplier4"] = { type = "Suffix", affix = "of Fury", "+(24-28)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10922 }, level = 73, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TinctureCriticalStrikeMultiplier5"] = { type = "Suffix", affix = "of Ferocity", "+(29-33)% to Melee Weapon Critical Strike Multiplier", statOrder = { 10922 }, level = 85, group = "TinctureCriticalStrikeMultiplier", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "damage", "attack", "critical" }, }, + ["TinctureIncreasedAttackSpeed1"] = { type = "Suffix", affix = "of Skill", "(15-19)% increased Melee Weapon Attack Speed", statOrder = { 10920 }, level = 1, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, + ["TinctureIncreasedAttackSpeed2"] = { type = "Suffix", affix = "of Ease", "(20-24)% increased Melee Weapon Attack Speed", statOrder = { 10920 }, level = 65, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, + ["TinctureIncreasedAttackSpeed3"] = { type = "Suffix", affix = "of Mastery", "(25-29)% increased Melee Weapon Attack Speed", statOrder = { 10920 }, level = 85, group = "TinctureIncreasedAttackSpeed", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { "attack", "speed" }, }, + ["TinctureDamageAgainstLowLife1"] = { type = "Suffix", affix = "of Execution", "(40-47)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10930 }, level = 1, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageAgainstLowLife2"] = { type = "Suffix", affix = "of Elimination", "(48-55)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10930 }, level = 28, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageAgainstLowLife3"] = { type = "Suffix", affix = "of Termination", "(56-63)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10930 }, level = 47, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageAgainstLowLife4"] = { type = "Suffix", affix = "of Extermination", "(64-71)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10930 }, level = 65, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureDamageAgainstLowLife5"] = { type = "Suffix", affix = "of Assassination", "(72-79)% increased Melee Weapon Damage against Enemies that are on Low Life", statOrder = { 10930 }, level = 80, group = "WeaponDamageVsLowLifeEnemies", weightKey = { "tincture", "default", }, weightVal = { 600, 0 }, modTags = { "damage", "attack" }, }, + ["TinctureLifeGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Success", "Gain (11-15) Life per Enemy Killed with Melee Weapons", statOrder = { 10927 }, level = 1, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureLifeGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Victory", "Gain (16-20) Life per Enemy Killed with Melee Weapons", statOrder = { 10927 }, level = 35, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureLifeGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Triumph", "Gain (21-25) Life per Enemy Killed with Melee Weapons", statOrder = { 10927 }, level = 62, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureLifeGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Conquest", "Gain (26-30) Life per Enemy Killed with Melee Weapons", statOrder = { 10927 }, level = 80, group = "TinctureLifeGainedFromEnemyDeath", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureManaGainedFromEnemyDeath1"] = { type = "Suffix", affix = "of Absorption", "Gain (2-3) Mana per Enemy Killed with Melee Weapons", statOrder = { 10921 }, level = 38, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureManaGainedFromEnemyDeath2"] = { type = "Suffix", affix = "of Osmosis", "Gain (4-5) Mana per Enemy Killed with Melee Weapons", statOrder = { 10921 }, level = 50, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureManaGainedFromEnemyDeath3"] = { type = "Suffix", affix = "of Consumption", "Gain (6-8) Mana per Enemy Killed with Melee Weapons", statOrder = { 10921 }, level = 68, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureManaGainedFromEnemyDeath4"] = { type = "Suffix", affix = "of Assimilation", "Gain (9-11) Mana per Enemy Killed with Melee Weapons", statOrder = { 10921 }, level = 82, group = "ManaGainedOnWeaponKill", weightKey = { "tincture", "default", }, weightVal = { 1000, 0 }, modTags = { }, }, + ["TinctureLifeGainPerTarget1"] = { type = "Suffix", affix = "of Rejuvenation", "Gain (2-3) Life per Enemy Hit with Melee Weapons", statOrder = { 10926 }, level = 1, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureLifeGainPerTarget2"] = { type = "Suffix", affix = "of Restoration", "Gain (3-4) Life per Enemy Hit with Melee Weapons", statOrder = { 10926 }, level = 50, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureLifeGainPerTarget3"] = { type = "Suffix", affix = "of Regrowth", "Gain (5-7) Life per Enemy Hit with Melee Weapons", statOrder = { 10926 }, level = 77, group = "TinctureLifeGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "life", "attack" }, }, + ["TinctureManaGainPerTarget1"] = { type = "Suffix", affix = "of Enveloping", "Gain 1 Mana per Enemy Hit with Melee Weapons", statOrder = { 10928 }, level = 45, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["TinctureManaGainPerTarget2"] = { type = "Suffix", affix = "of Siphoning", "Gain 2 Mana per Enemy Hit with Melee Weapons", statOrder = { 10928 }, level = 68, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["TinctureManaGainPerTarget3"] = { type = "Suffix", affix = "of Devouring", "Gain 3 Mana per Enemy Hit with Melee Weapons", statOrder = { 10928 }, level = 84, group = "TinctureManaGainPerTarget", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "resource", "mana", "attack" }, }, + ["TinctureFlaskChargeIncrease1"] = { type = "Suffix", affix = "of Restocking", "(11-15)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10925 }, level = 1, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureFlaskChargeIncrease2"] = { type = "Suffix", affix = "of Replenishing", "(16-20)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10925 }, level = 40, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureFlaskChargeIncrease3"] = { type = "Suffix", affix = "of Pouring", "(21-25)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10925 }, level = 72, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureFlaskChargeIncrease4"] = { type = "Suffix", affix = "of Overflowing", "(26-30)% increased Flask Charges gained from Kills with Melee Weapons", statOrder = { 10925 }, level = 85, group = "FlaskChargesFromWeaponKills", weightKey = { "tincture", "default", }, weightVal = { 800, 0 }, modTags = { }, }, + ["TinctureIgnorePhysDR1"] = { type = "Suffix", affix = "of Battering", "Melee Weapon Hits have (30-39)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10891 }, level = 40, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["TinctureIgnorePhysDR2"] = { type = "Suffix", affix = "of Crushing", "Melee Weapon Hits have (40-49)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10891 }, level = 62, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, + ["TinctureIgnorePhysDR3"] = { type = "Suffix", affix = "of Overwhelming", "Melee Weapon Hits have (50-60)% chance to ignore Enemy Physical Damage Reduction", statOrder = { 10891 }, level = 80, group = "TinctureIgnorePhysDR", weightKey = { "tincture", "default", }, weightVal = { 500, 0 }, modTags = { "physical_damage", "damage", "physical", "attack" }, }, } \ No newline at end of file diff --git a/src/Data/ModVeiled.lua b/src/Data/ModVeiled.lua index 061f047665..3a0fbd2c75 100644 --- a/src/Data/ModVeiled.lua +++ b/src/Data/ModVeiled.lua @@ -2,261 +2,261 @@ -- Item data (c) Grinding Gear Games return { - ["JunMasterAvoidStunAndElementalStatusAilments1"] = { type = "Prefix", affix = "Chosen", "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1848, 1856 }, level = 1, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndImpaleCrafted"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1237, 7865 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBleedChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to cause Bleeding on Hit", statOrder = { 1237, 2488 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBlindChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Blind Enemies on hit", statOrder = { 1237, 2268 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, }, - ["JunMasterVeiledLocalIncreasedPhysicalDamageAndPoisonChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Poison on Hit", statOrder = { 1237, 8007 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, }, - ["JunMasterVeiledElementalPenetrationWithAttacks_"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Elemental Resistances", statOrder = { 3766 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, }, - ["JunMasterVeiledChaosPenetrationWithAttacks__"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Chaos Resistance", statOrder = { 7880 }, level = 60, group = "LocalChaosPenetration", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, }, - ["JunMasterVeiledDoubleDamageChance2h_"] = { type = "Suffix", affix = "of the Order", "(12-14)% chance to deal Double Damage", statOrder = { 5664 }, level = 60, group = "DoubleDamageChance", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDoubleDamageChance1h"] = { type = "Suffix", affix = "of the Order", "(6-7)% chance to deal Double Damage", statOrder = { 5664 }, level = 60, group = "DoubleDamageChance", weightKey = { "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledAreaDamageAndAreaOfEffect"] = { type = "Prefix", affix = "Chosen", "(14-16)% increased Area of Effect", "(17-20)% increased Area Damage", statOrder = { 1885, 2040 }, level = 60, group = "AreaDamageAndAreaOfEffect", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledProjectileDamageAndProjectileSpeed"] = { type = "Prefix", affix = "Chosen", "(23-25)% increased Projectile Speed", "(17-20)% increased Projectile Damage", statOrder = { 1801, 2001 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "speed" }, }, - ["JunMasterVeiledMeleeDamageAndMeleeRange"] = { type = "Prefix", affix = "Chosen", "(17-20)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1239, 2539 }, level = 60, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "attack" }, }, - ["JunMasterVeiledFireDamageAndChanceToIgnite1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Fire Damage", "(21-23)% chance to Ignite", statOrder = { 1362, 2031 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, }, - ["JunMasterVeiledFireDamageAndChanceToIgnite2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Fire Damage", "(35-40)% chance to Ignite", statOrder = { 1362, 2031 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, }, - ["JunMasterVeiledColdDamageAndBaseChanceToFreeze1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Cold Damage", "(21-23)% chance to Freeze", statOrder = { 1371, 2034 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, }, - ["JunMasterVeiledColdDamageAndBaseChanceToFreeze2h__"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Cold Damage", "(35-40)% chance to Freeze", statOrder = { 1371, 2034 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, }, - ["JunMasterVeiledLightningDamageAndChanceToShock1h_"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Lightning Damage", "(21-23)% chance to Shock", statOrder = { 1382, 2038 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["JunMasterVeiledLightningDamageAndChanceToShock2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Lightning Damage", "(35-40)% chance to Shock", statOrder = { 1382, 2038 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, }, - ["JunMasterVeiledChaosDamageAndChaosSkillDuration1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Chaos Damage", "Chaos Skills have (13-15)% increased Skill Effect Duration", statOrder = { 1390, 1901 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledChaosDamageAndChaosSkillDuration2h_"] = { type = "Prefix", affix = "Chosen", "(90-99)% increased Chaos Damage", "Chaos Skills have (26-30)% increased Skill Effect Duration", statOrder = { 1390, 1901 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledSpellDamageAndManaRegenerationRate1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Spell Damage", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1228, 1589 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, }, - ["JunMasterVeiledSpellDamageAndManaRegenerationRate2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Spell Damage", "(36-40)% increased Mana Regeneration Rate", statOrder = { 1228, 1589 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, }, - ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1228, 9487 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, }, - ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage2h"] = { type = "Prefix", affix = "Chosen", "(90-99)% increased Spell Damage", "Gain (9-10)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1228, 9487 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, }, - ["JunMasterVeiledMinionDamageAndMinionMaximumLife1h"] = { type = "Prefix", affix = "Chosen", "Minions have (34-38)% increased maximum Life", "Minions deal (34-38)% increased Damage", statOrder = { 1771, 1978 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, }, - ["JunMasterVeiledMinionDamageAndMinionMaximumLife2h__"] = { type = "Prefix", affix = "Chosen", "Minions have (50-59)% increased maximum Life", "Minions deal (50-59)% increased Damage", statOrder = { 1771, 1978 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, }, - ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon1h"] = { type = "Suffix", affix = "of the Order", "Minions have (18-20)% increased Attack Speed", "Minions have (18-20)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, }, - ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon2h"] = { type = "Suffix", affix = "of the Order", "Minions have (34-38)% increased Attack Speed", "Minions have (34-38)% increased Cast Speed", statOrder = { 2912, 2913 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, }, - ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier2h"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, - ["JunMasterVeiledColdDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, - ["JunMasterVeiledColdDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, - ["JunMasterVeiledFireDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, - ["JunMasterVeiledFireDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, - ["JunMasterVeiledChaosDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledChaosDamageOverTimeMultiplier__"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1264 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 0, 1000, 1000, 600, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplierTwoHand_"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, - ["JunMasterVeiledPhysicalDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1252 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "weapon", "default", }, weightVal = { 400, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, - ["JunMasterVeiledColdDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, - ["JunMasterVeiledColdDamageOverTimeMultiplier___"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1261 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, - ["JunMasterVeiledFireDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, - ["JunMasterVeiledFireDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 100, 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1558, 1574 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1557, 1574 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1559, 1574 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1547, 1574 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "shield", "helmet", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndLife__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1555, 1574 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedEnergyShieldAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1565, 1574 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedDefencesAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1560, 1574 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(19-22) to maximum Life", statOrder = { 1558, 1574 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1557, 1574 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1559, 1574 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(19-22) to maximum Life", statOrder = { 1547, 1574 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(19-22) to maximum Life", statOrder = { 1555, 1574 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(19-22) to maximum Life", statOrder = { 1565, 1574 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedDefencesAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1560, 1574 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(23-26) to maximum Life", statOrder = { 1558, 1574 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1557, 1574 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1559, 1574 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedArmourAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(23-26) to maximum Life", statOrder = { 1547, 1574 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, - ["JunMasterVeiledLocalIncreasedEvasionAndLifeHigh_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(23-26) to maximum Life", statOrder = { 1555, 1574 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, - ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(23-26) to maximum Life", statOrder = { 1565, 1574 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, - ["JunMasterVeiledLocalIncreasedDefencesAndLifeHigh__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1560, 1574 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, - ["JunMasterVeiledStrengthAndDexterity"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Dexterity", statOrder = { 1185 }, level = 60, group = "StrengthAndDexterity", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledDexterityAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity and Intelligence", statOrder = { 1187 }, level = 60, group = "DexterityAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledStrengthAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Intelligence", statOrder = { 1186 }, level = 60, group = "StrengthAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledMinimumEnduranceCharges_"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to gain an Endurance Charge on Kill", statOrder = { 1808, 2634 }, level = 60, group = "MinimumEnduranceChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "endurance_charge", "unveiled_mod" }, }, - ["JunMasterVeiledMinimumPowerCharges"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to gain a Power Charge on Kill", statOrder = { 1818, 2638 }, level = 60, group = "MinimumPowerChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "power_charge", "unveiled_mod" }, }, - ["JunMasterVeiledMinimumFrenzyCharges___"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to gain a Frenzy Charge on Kill", statOrder = { 1813, 2636 }, level = 60, group = "MinimumFrenzyChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, }, - ["JunMasterVeiledIncreasedManaAndRegen"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Regenerate 5.3 Mana per second", statOrder = { 1584, 1587 }, level = 60, group = "IncreasedManaAndRegen", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledManaAndManaCostPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(6-7)% reduced Mana Cost of Skills", statOrder = { 1584, 1888 }, level = 60, group = "ManaAndManaCostPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledManaAndDamageTakenGoesToManaPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(7-8)% of Damage taken Recouped as Mana", statOrder = { 1584, 2460 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledAttackAndCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Attack and Cast Speed", statOrder = { 2051 }, level = 60, group = "AttackAndCastSpeed", weightKey = { "amulet", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, }, - ["JunMasterVeiledMovementVelocityAndMovementVelocityIfNotHitRecently"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(10-12)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1803, 3228 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, }, - ["JunMasterVeiledMovementVelocityAndOnslaughtOnKill"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(13-16)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1803, 2998 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, }, - ["JunMasterVeiledMovementVelocityAndCannotBeChilled__"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1803, 1849 }, level = 60, group = "MovementVelocityAndCannotBeChilled", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, }, - ["JunMasterVeiledArmourAndEvasionRating"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour and Evasion Rating", statOrder = { 4271 }, level = 60, group = "ArmourAndEvasionRating", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "evasion" }, }, - ["JunMasterVeiledArmourAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour", "+(31-35) to maximum Energy Shield", statOrder = { 1544, 1563 }, level = 60, group = "ArmourAndEnergyShield", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, }, - ["JunMasterVeiledEvasionRatingAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Evasion Rating", "+(31-35) to maximum Energy Shield", statOrder = { 1549, 1563 }, level = 60, group = "EvasionRatingAndEnergyShield", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, }, - ["JunMasterVeiledFlaskEffect"] = { type = "Prefix", affix = "Chosen", "Flasks applied to you have (9-10)% increased Effect", statOrder = { 2747 }, level = 60, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledChanceToNotConsumeFlaskCharges"] = { type = "Prefix", affix = "Chosen", "(9-10)% chance for Flasks you use to not consume Charges", statOrder = { 4235 }, level = 60, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledFlaskEffectAndFlaskChargesGained"] = { type = "Prefix", affix = "Chosen", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2188, 2747 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledFlaskEffectAndFlaskChargesGainedNew"] = { type = "Suffix", affix = "of the Order", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2188, 2747 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledGlobalCooldownRecovery"] = { type = "Suffix", affix = "of the Order", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 5010 }, level = 60, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledDamagePerEnduranceCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDamagePerEnduranceCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Endurance Charge", statOrder = { 3204 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDamagePerFrenzyCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDamagePerFrenzyCharge2h__"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Frenzy Charge", statOrder = { 3291 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDamagePerPowerCharge1h_"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Power Charge", statOrder = { 6071 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledDamagePerPowerCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Power Charge", statOrder = { 6071 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledPhysicalDamageConvertedToFire_"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Fire Damage", statOrder = { 1960 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, }, - ["JunMasterVeiledPhysicalDamageConvertedToCold"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Cold Damage", statOrder = { 1962 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, }, - ["JunMasterVeiledPhysicalDamageConvertedToLightning"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Lightning Damage", statOrder = { 1964 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, }, - ["JunMasterVeiledMaximumZombieAndSkeleton"] = { type = "Prefix", affix = "Chosen", "Minions have (8-10)% increased maximum Life", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1771, 2165, 2167 }, level = 60, group = "MaximumMinionCountAndMinionLife", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 2000, 0, 0 }, modTags = { "unveiled_mod", "minion" }, }, - ["JunMasterVeiledEffectOfAilments__"] = { type = "Suffix", affix = "of the Order", "(33-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9498 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "ailment" }, }, - ["JunMasterVeiledMaximumCurse"] = { type = "Prefix", affix = "Chosen", "You can apply an additional Curse", statOrder = { 2173 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, }, - ["JunMasterVeiledCurseEffect"] = { type = "Suffix", affix = "of the Order", "(8-10)% increased Effect of your Curses", statOrder = { 2601 }, level = 60, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 3000, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, }, - ["JunMasterVeiledLifeRegeneration"] = { type = "Suffix", affix = "of the Order", "Regenerate (1.03-1.33)% of Life per second", statOrder = { 1949 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledAvoidElementalDamageChanceDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "(10-12)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4948 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "elemental" }, }, - ["JunMasterVeiledPhysicalDamageReductionRatingDuringSoulGainPrevention"] = { type = "Prefix", affix = "Chosen", "+(3201-4000) to Armour during Soul Gain Prevention", statOrder = { 9650 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "physical" }, }, - ["JunMasterVeiledGainOnslaughtDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "You have Onslaught during Soul Gain Prevention", statOrder = { 6785 }, level = 60, group = "GainOnslaughtDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledDamageWithNonVaalSkillsDuringSoulGainPrevention_"] = { type = "Suffix", affix = "of the Order", "(71-80)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 6089 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledSkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 181, 1885 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, }, - ["JunMasterVeiledProjectilePierceAndProjectileGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 182, 1795 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, }, - ["JunMasterVeiledMeleeRangeAndMeleeGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 184, 2539 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "attack", "attack", "gem" }, }, - ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "+(36-40)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5966 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, - ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "+(54-60)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5966 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, - ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4905 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "(27-30)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4905 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledEnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { type = "Suffix", affix = "of the Order", "Regenerate 200 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6461 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, }, - ["JunMasterVeiledCriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { type = "Suffix", affix = "of the Order", "(18-20)% increased Global Critical Strike Chance", "(6-7)% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1464, 6760 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", weightKey = { "quiver", "default", }, weightVal = { 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod", "critical" }, }, - ["JunMasterVeiledCriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "(27-30)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1464, 6307 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, }, - ["JunMasterVeiledCriticalChanceAndAddedChaosDamageIfHaveCritRecently_"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "Adds (22-25) to (28-32) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1464, 9228 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, }, - ["JunMasterVeiledBaseLifeAndMana_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "+(55-60) to maximum Mana", statOrder = { 1574, 1584 }, level = 60, group = "BaseLifeAndMana", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledBaseLifeAndManaRegen_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Regenerate 5.3 Mana per second", statOrder = { 1574, 1587 }, level = 60, group = "BaseLifeAndManaRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledBaseManaAndLifeRegen__"] = { type = "Prefix", affix = "Chosen", "Regenerate 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1579, 1584 }, level = 60, group = "BaseManaAndLifeRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledSummonTotemCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Totem Placement speed", statOrder = { 2583 }, level = 60, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, - ["JunMasterVeiledTrapThrowSpeed_"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Trap Throwing Speed", statOrder = { 1932 }, level = 60, group = "TrapThrowSpeed", weightKey = { "amulet", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, - ["JunMasterVeiledMineLayingSpeed"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Mine Throwing Speed", statOrder = { 1933 }, level = 60, group = "MineLayingSpeed", weightKey = { "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, - ["JunMasterVeiledBrandAttachmentRange"] = { type = "Suffix", affix = "of the Order", "(25-28)% increased Brand Attachment range", statOrder = { 10042 }, level = 60, group = "BrandAttachmentRange", weightKey = { "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "caster" }, }, - ["JunMasterVeiledAddedFireAndColdDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Cold Damage", statOrder = { 1364, 1373 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, - ["JunMasterVeiledAddedFireAndColdDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Cold Damage", statOrder = { 1364, 1373 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, - ["JunMasterVeiledAddedFireAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1364, 1384 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, - ["JunMasterVeiledAddedFireAndLightningDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1364, 1384 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, - ["JunMasterVeiledAddedColdAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1373, 1384 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, }, - ["JunMasterVeiledAddedColdAndLightningDamageQuiver"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Cold Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1373, 1384 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, }, - ["JunMasterVeiledLuckyCriticalsDuringFocus"] = { type = "Suffix", affix = "of the Order", "Your Critical Strike Chance is Lucky while Focused", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 6535, 6658 }, level = 60, group = "LuckyCriticalsDuringFocusCDR", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "critical" }, }, - ["JunMasterVeiledDodgeChanceDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(30-32)% increased Evasion Rating while Focused", statOrder = { 6482 }, level = 60, group = "DodgeChanceDuringFocus", weightKey = { "helmet", "boots", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "defences", "evasion" }, }, - ["JunMasterVeiledPhysicalDamageReductionDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(13-15)% additional Physical Damage Reduction while Focused", statOrder = { 4577 }, level = 60, group = "PhysicalDamageReductionDuringFocus", weightKey = { "helmet", "gloves", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "physical" }, }, - ["JunMasterVeiledShockNearbyEnemiesOnFocus"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 6658, 10012 }, level = 60, group = "ShockNearbyEnemiesOnFocusCDR", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, }, - ["JunMasterVeiledLifeRegenerationPerEvasionDuringFocus"] = { type = "Suffix", affix = "of the Order", "1.5% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6492 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledRestoreManaAndEnergyShieldOnFocus"] = { type = "Suffix", affix = "of the Order", "Recover (37-40)% of Mana and Energy Shield when you Focus", statOrder = { 9923 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, }, - ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused2h_"] = { type = "Suffix", affix = "of the Order", "(36-40)% chance to deal Double Damage while Focused", statOrder = { 5671 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused1h"] = { type = "Suffix", affix = "of the Order", "(18-20)% chance to deal Double Damage while Focused", statOrder = { 5671 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledAttackAndCastSpeedWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(45-50)% increased Attack and Cast Speed while Focused", statOrder = { 4827 }, level = 60, group = "AttackAndCastSpeedWhileFocused", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, }, - ["JunMasterVeiledStatusAilmentsYouInflictDurationWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Duration of Ailments you inflict while Focused", statOrder = { 10223 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "ailment" }, }, - ["JunMasterVeiledImmuneToStatusAilmentsWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "You are Immune to Ailments while Focused", statOrder = { 6658, 7244 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocusedCDR", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "ailment" }, }, - ["JunMasterVeiledFocusCooldownRecovery_"] = { type = "Suffix", affix = "of the Order", "Focus has (31-35)% increased Cooldown Recovery Rate", statOrder = { 6658 }, level = 60, group = "FocusCooldownRecovery", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched as Life while Focused", statOrder = { 6833, 7367 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", weightKey = { "amulet", "default", }, weightVal = { 3000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledFortifyEffectWhileFocused_"] = { type = "Suffix", affix = "of the Order", "+10 to maximum Fortification while Focused", statOrder = { 9122 }, level = 60, group = "FortifyEffectWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledTriggerSocketedSpellWhenYouFocus"] = { type = "Suffix", affix = "of the Order", "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 839, 6658 }, level = 60, group = "TriggerSocketedSpellWhenYouFocusCDR", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, }, - ["JunMasterVeiledDamageRemovedFromManaBeforeLifeWhileFocused"] = { type = "Suffix", affix = "of the Order", "(18-22)% of Damage is taken from Mana before Life while Focused", statOrder = { 6094 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledMinionsRecoverMaximumLifeWhenYouFocus_"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Minions Recover 100% of their Life when you Focus", statOrder = { 6658, 9370 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocusCDR", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, }, - ["JunMasterVeiledGainVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", statOrder = { 6833 }, level = 60, group = "GainVaalPactWhileFocused", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledSkillsCostNoManaWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Non-Aura Skills Cost no Mana or Life while Focused", statOrder = { 6658, 10064 }, level = 60, group = "SkillsCostNoManaWhileFocusedCDR", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledAllDamage"] = { type = "Prefix", affix = "Leo's", "(20-23)% increased Damage", statOrder = { 1196 }, level = 60, group = "AllDamage", weightKey = { "leo_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledLocalIncreaseSocketedSupportGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Support Gems", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 194, 210 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevelAndQuality", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, - ["JunMasterVeiledChaosExplosionOnKill"] = { type = "Prefix", affix = "Catarina's", "Enemies you Kill have a (15-25)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3310 }, level = 60, group = "ObliterationExplodeOnKillChaos", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, - ["JunMasterVeiledSupportedByCastOnCritAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are supported by Level 1 Cast On Critical Strike", "(80-89)% increased Spell Damage", statOrder = { 477, 1228 }, level = 60, group = "CastOnCritAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster", "critical" }, }, - ["JunMasterVeiledSupportedByCastWhileChannelingAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Cast While Channelling", "(80-89)% increased Spell Damage", statOrder = { 247, 1228 }, level = 60, group = "CastWhileChannelingAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, }, - ["JunMasterVeiledSupportedByArcaneSurgeAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Arcane Surge", "(80-89)% increased Spell Damage", statOrder = { 231, 1228 }, level = 60, group = "ArcaneSurgeAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, }, - ["JunMasterVeiledReduceGlobalFlatManaCost"] = { type = "Prefix", affix = "Elreon's", "-(10-9) to Total Mana Cost of Skills", statOrder = { 1896 }, level = 60, group = "IncreaseManaCostFlat", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledReduceGlobalFlatManaCostChannelling_"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills have -4 to Total Mana Cost", statOrder = { 10059 }, level = 60, group = "ManaCostTotalChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledReduceGlobalFlatManaCostNonChannelling"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(10-9) to Total Mana Cost", statOrder = { 10061 }, level = 60, group = "ManaCostTotalNonChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledDamageWhileLeeching"] = { type = "Prefix", affix = "Vorici's", "(54-60)% increased Damage while Leeching", statOrder = { 3068 }, level = 60, group = "DamageWhileLeeching", weightKey = { "vorici_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledSocketedGemQuality"] = { type = "Prefix", affix = "Haku's", "+(9-10)% to Quality of Socketed Gems", statOrder = { 209 }, level = 60, group = "SocketedGemQuality", weightKey = { "haku_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, - ["JunMasterVeiledBleedOnHitGained1h"] = { type = "Prefix", affix = "Tora's", "Adds (12-14) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1281, 2488 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, - ["JunMasterVeiledBleedOnHitGained2h"] = { type = "Prefix", affix = "Tora's", "Adds (17-20) to (26-28) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1281, 2488 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, - ["JunMasterVeiledAlwaysHits"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 2048 }, level = 60, group = "AlwaysHits", weightKey = { "vagan_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack" }, }, - ["JunMasterVeiledDamageDuringFlaskEffect"] = { type = "Prefix", affix = "Brinerot", "(36-40)% increased Damage during any Flask Effect", statOrder = { 4087 }, level = 60, group = "DamageDuringFlaskEffect", weightKey = { "brinerot_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "flask", "unveiled_mod", "damage" }, }, - ["JunMasterVeiledItemRarityFromRareAndUniqueEnemies_"] = { type = "Suffix", affix = "of Janus", "(55-60)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9829 }, level = 60, group = "RareOrUniqueMonsterDroppedItemRarity", weightKey = { "janus_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "drop" }, }, - ["JunMasterVeiledFireAddedAsChaos1h_"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 60, group = "FireAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, }, - ["JunMasterVeiledColdAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, }, - ["JunMasterVeiledLightningAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, }, - ["JunMasterVeiledPhysicalAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, - ["JunMasterVeiledFireAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1946 }, level = 60, group = "FireAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, }, - ["JunMasterVeiledColdAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1945 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, }, - ["JunMasterVeiledLightningAddedAsChaos2h__"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1943 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, }, - ["JunMasterVeiledPhysicalAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, - ["JunMasterVeiledPercentageAllAttributes"] = { type = "Suffix", affix = "of Hillock", "(7-8)% increased Attributes", statOrder = { 1188 }, level = 60, group = "PercentageAllAttributes", weightKey = { "hillock_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledLifeAddedAsEnergyShield"] = { type = "Prefix", affix = "Gravicius'", "Gain (12-14)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9164 }, level = 60, group = "LifeAddedAsEnergyShield", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, }, - ["JunMasterVeiledPhysicalTakenAsFireAndLightning"] = { type = "Prefix", affix = "Gravicius'", "(8-9)% of Physical Damage from Hits taken as Fire Damage", "(8-9)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2452, 2454 }, level = 60, group = "PhysicalDamageTakenAsFireAndLightningPercent", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire", "lightning" }, }, - ["JunMasterVeiledBannerEffect"] = { type = "Prefix", affix = "Gravicius'", "Banner Skills have (26-35)% increased Aura Effect", statOrder = { 3367 }, level = 60, group = "BannerEffect", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "aura" }, }, - ["JunMasterVeiledWolfOnKill___"] = { type = "Suffix", affix = "Jorgin's", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 796 }, level = 60, group = "SummonWolfOnKillOld", weightKey = { "jorgin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, - ["JunMasterVeiledPhysicalDamageTakenAsFirePercent__"] = { type = "Prefix", affix = "Korell's", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2452 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire" }, }, - ["JunMasterVeiledWarcryBuffEffect"] = { type = "Prefix", affix = "Korell's", "(20-25)% increased Warcry Buff Effect", statOrder = { 10565 }, level = 60, group = "WarcryBuffEffect", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledAvoidFreeze_"] = { type = "Prefix", affix = "Rin's", "(20-30)% chance to Avoid being Chilled", "100% chance to Avoid being Frozen", statOrder = { 1849, 1850 }, level = 60, group = "AvoidFreezeAndChill", weightKey = { "rin_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, }, - ["JunMasterVeiledCriticalMultiplierOnShatter_"] = { type = "Suffix", affix = "of Cameria", "(20-22)% increased Global Critical Strike Chance", "+(27-30)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1464, 5963 }, level = 60, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", weightKey = { "cameria_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, - ["JunMasterVeiledIncreasedChaosAndPhysicalDamage"] = { type = "Suffix", affix = "of Aisling", "(20-22)% increased Global Physical Damage", "(18-20)% increased Chaos Damage", statOrder = { 1236, 1390 }, level = 60, group = "IncreasedChaosAndPhysicalDamage", weightKey = { "aislin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, - ["JunMasterVeiledIncreasedFireAndLightningDamage"] = { type = "Suffix", affix = "of Riker", "(18-20)% increased Fire Damage", "(20-22)% increased Lightning Damage", statOrder = { 1362, 1382 }, level = 60, group = "IncreasedFireAndLightningDamage", weightKey = { "riker_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, - ["JunMasterVeiledLocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "Regenerate 3% of Life per second during Effect", statOrder = { 998 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledLocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 60, group = "LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "speed" }, }, - ["JunMasterVeiledLocalFlaskAvoidStunChanceDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 977 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskSkillManaCostDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-25)% reduced Mana Cost of Skills during Effect", statOrder = { 1004 }, level = 60, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledLocalFlaskItemFoundRarityDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 994 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod", "drop" }, }, - ["JunMasterVeiledLocalFlaskCriticalStrikeChanceDuringFlaskEffect_"] = { type = "Prefix", affix = "of the Order", "(40-60)% increased Critical Strike Chance during Effect", statOrder = { 981 }, level = 60, group = "LocalFlaskCriticalStrikeChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "critical" }, }, - ["JunMasterVeiledLocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 997 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledLocalAttackSpeedAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1418, 7955 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledLocalAttackSpeedAndLocalItemQualityRangedWeapon"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1418, 7955 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledLocalCriticalStrikeChanceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(28-32)% increased Critical Strike Chance", "+(13-18)% to Quality", statOrder = { 1469, 7955 }, level = 60, group = "LocalCriticalStrikeChanceAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "critical" }, }, - ["JunMasterVeiledLocalAccuracyRatingAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(311-350) to Accuracy Rating", "+(16-18)% to Quality", statOrder = { 2029, 7955 }, level = 60, group = "LocalAccuracyRatingAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack" }, }, - ["JunMasterVeiledLocalAttackSpeedDexterityIntelligence"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(18-22)% increased Attack Speed", statOrder = { 1187, 1418 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, }, - ["JunMasterVeiledLocalAttackSpeedDexterityIntelligenceRanged"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(12-15)% increased Attack Speed", statOrder = { 1187, 1418 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "wand", "bow", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, }, - ["JunMasterVeiledLocalCriticalStrikeChanceStrengthIntelligence__"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Intelligence", "(28-32)% increased Critical Strike Chance", statOrder = { 1186, 1469 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "critical", "attribute" }, }, - ["JunMasterVeiledLocalAccuracyRatingStrengthDexterity_"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Dexterity", "+(311-350) to Accuracy Rating", statOrder = { 1185, 2029 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "attribute" }, }, - ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance_"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(18-22)% increased Attack Speed", statOrder = { 797, 1418 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChanceRangedWeapon"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(12-15)% increased Attack Speed", statOrder = { 797, 1418 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "bow", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, - ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance1h__"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1451, 6735 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "wand", "dagger", "sceptre", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, }, - ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance2h_"] = { type = "Suffix", affix = "of the Order", "(26-31)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1451, 6735 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, }, - ["JunMasterVeiledTriggerSocketedSpellOnSkillUse_"] = { type = "Suffix", affix = "of the Order", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 837, 837.1 }, level = 60, group = "TriggerSocketedSpellOnSkillUseFourSeconds", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, }, - ["JunMasterVeiledFireAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Fire and Chaos Resistances", statOrder = { 6554 }, level = 60, group = "FireAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, }, - ["JunMasterVeiledLightningAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Lightning and Chaos Resistances", statOrder = { 7440 }, level = 60, group = "LightningAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, }, - ["JunMasterVeiledColdAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Cold and Chaos Resistances", statOrder = { 5805 }, level = 60, group = "ColdAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, }, - ["JunMasterVeiledStrengthAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "+(15-18)% to Quality", statOrder = { 1182, 7955 }, level = 60, group = "StrengthAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledDexterityAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "+(15-18)% to Quality", statOrder = { 1183, 7955 }, level = 60, group = "DexterityAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledIntelligenceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "+(15-18)% to Quality", statOrder = { 1184, 7955 }, level = 60, group = "IntelligenceAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledStrengthAndAvoidIgnite"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1182, 1851 }, level = 60, group = "StrengthAndAvoidIgnite", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledDexterityAndAvoidFreeze"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1183, 1850 }, level = 60, group = "DexterityAndAvoidFreeze", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledIntelligenceAndAvoidShock"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1184, 1853 }, level = 60, group = "IntelligenceAndAvoidShock", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, - ["JunMasterVeiledLifeRegenerationRatePerMinuteWhileUsingFlask"] = { type = "Suffix", affix = "of the Order", "Regenerate 3% of Life per second during any Flask Effect", statOrder = { 7431 }, level = 60, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledPercentageLifeAndMana"] = { type = "Prefix", affix = "Chosen", "(9-10)% increased maximum Life", "(9-10)% increased maximum Mana", statOrder = { 1576, 1585 }, level = 60, group = "PercentageLifeAndMana", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledBlockPercent"] = { type = "Prefix", affix = "Chosen", "(8-9)% Chance to Block Attack Damage", statOrder = { 1143 }, level = 60, group = "BlockPercent", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, }, - ["JunMasterVeiledSpellBlockPercent____"] = { type = "Prefix", affix = "Chosen", "(9-10)% Chance to Block Spell Damage", statOrder = { 1165 }, level = 60, group = "SpellBlockPercentage", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, }, - ["JunMasterVeiledSpellDodgePercentage__"] = { type = "Prefix", affix = "Chosen", "+(18-21)% chance to Suppress Spell Damage", statOrder = { 1147 }, level = 60, group = "ChanceToSuppressSpellsOld", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledAvoidStunAndElementalStatusAilments"] = { type = "Prefix", affix = "Chosen", "(30-35)% chance to Avoid Elemental Ailments", "(30-35)% chance to Avoid being Stunned", statOrder = { 1848, 1856 }, level = 60, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, - ["JunMasterVeiledLocalFlaskReducedReflectDuringEffect"] = { type = "Prefix", affix = "of the Order", "(60-80)% of Damage from your Hits cannot be Reflected during Effect", statOrder = { 973 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, }, - ["JunMasterVeiledMinimumEnduranceChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to lose an Endurance Charge on Kill", statOrder = { 1808, 2635 }, level = 60, group = "MinimumEnduranceChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "unveiled_mod" }, }, - ["JunMasterVeiledMinimumPowerChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to lose a Power Charge on Kill", statOrder = { 1818, 2639 }, level = 60, group = "MinimumPowerChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "unveiled_mod" }, }, - ["JunMasterVeiledMinimumFrenzyChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to lose a Frenzy Charge on Kill", statOrder = { 1813, 2637 }, level = 60, group = "MinimumFrenzyChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, }, - ["JunMasterVeiledAddedFireAndColdDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Cold Damage to Hits against you", statOrder = { 1363, 1372 }, level = 60, group = "SelfFireAndColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, - ["JunMasterVeiledAddedFireAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1363, 1383 }, level = 60, group = "SelfFireAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "lightning" }, }, - ["JunMasterVeiledAddedColdAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1372, 1383 }, level = 60, group = "SelfColdAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, - ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocusedInverted"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched by Enemy as Life while Focused", statOrder = { 6833, 7368 }, level = 60, group = "EnemyLifeLeechPermyriadWhileFocusedAndVaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, - ["JunMasterVeiledIncreasedManaAndRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Lose 5.3 Mana per second", statOrder = { 1584, 1588 }, level = 60, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledBaseLifeAndManaRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Lose 5.3 Mana per second", statOrder = { 1574, 1588 }, level = 60, group = "BaseLifeAndManaDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledBaseManaAndLifeRegenInverted"] = { type = "Prefix", affix = "Chosen", "Lose 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1580, 1584 }, level = 60, group = "BaseManaAndLifeDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, - ["JunMasterVeiledReduceGlobalFlatManaCostChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills Cost -4 Mana", statOrder = { 10060 }, level = 60, group = "ManaCostBaseChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledReduceGlobalFlatManaCostNonChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills Cost -(10-9) Mana", statOrder = { 10062 }, level = 60, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, - ["JunMasterVeiledShockNearbyEnemiesOnFocusInverted"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% reduced Cooldown Recovery Rate", "Shock yourself for 4 Seconds when you Focus", statOrder = { 6658, 10011 }, level = 60, group = "ShockYourselfOnFocusCDR", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, }, - ["JunMasterVeiledMinionLargerAggroRadius"] = { type = "Prefix", affix = "Catarina's", "Minions are Aggressive", statOrder = { 10759 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, - ["JunMasterVeiledMinionDamageAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3755 }, level = 60, group = "MinionDamageAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledMinionAttackSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3757 }, level = 60, group = "MinionAttackSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledMinionCastSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Cast Speed also affect you", statOrder = { 3758 }, level = 60, group = "MinionCastSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledMinionSkillCastSpeed"] = { type = "Prefix", affix = "Catarina's", "(20-40)% increased Cast Speed with Minion Skills", statOrder = { 5470 }, level = 60, group = "MinionSkillCastSpeed", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledMaximumSpectreCount"] = { type = "Prefix", affix = "Catarina's", "+1 to maximum number of Spectres", statOrder = { 2166 }, level = 60, group = "MaximumSpectreCount", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, - ["JunMasterVeiledSpectresBaseMaximumAllResistance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(5-10)% to all maximum Resistances", statOrder = { 10116 }, level = 60, group = "SpectresBaseMaximumAllResistance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledSpectresAdditionalProjectiles"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres fire 2 additional Projectiles", statOrder = { 10122 }, level = 60, group = "SpectresAdditionalProjectiles", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledSpectresAdditionalBaseCriticalChance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(3-5)% to Critical Strike Chance", statOrder = { 10114 }, level = 60, group = "SpectresAdditionalBaseCriticalChance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledSpectresAreaOfEffect"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have (30-50)% increased Area of Effect", statOrder = { 10117 }, level = 60, group = "SpectresAreaOfEffect", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalIncreaseSocketedGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Gems", statOrder = { 167 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, - ["JunMasterVeiledDamageIfConsumedCorpse"] = { type = "Prefix", affix = "Catarina's", "20% increased Damage if you have Consumed a corpse Recently", statOrder = { 4258 }, level = 60, group = "DamageIfConsumedCorpse", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, - ["JunMasterVeiledCorpseLife"] = { type = "Prefix", affix = "Catarina's", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 9166 }, level = 60, group = "CorpseLife", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledAttackAndCastSpeedIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "20% increased Attack and Cast Speed if you've Consumed a Corpse Recently", statOrder = { 4811 }, level = 60, group = "AttackAndCastSpeedIfCorpseConsumedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledTakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently"] = { type = "Prefix", affix = "Catarina's", "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently", statOrder = { 9978 }, level = 60, group = "TakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledOfferingEffect"] = { type = "Prefix", affix = "Catarina's", "20% increased effect of Offerings", statOrder = { 4068 }, level = 60, group = "OfferingEffect", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledOfferingDuration"] = { type = "Prefix", affix = "Catarina's", "Offering Skills have 20% increased Duration", statOrder = { 9551 }, level = 60, group = "OfferingDuration", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLifeRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Life per second if you've Consumed a corpse Recently", statOrder = { 7418 }, level = 60, group = "LifeRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledManaRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Mana per second if you've Consumed a corpse Recently", statOrder = { 8199 }, level = 60, group = "ManaRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledEnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Energy Shield per second if you've Consumed a Corpse Recently", statOrder = { 6460 }, level = 60, group = "EnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledAllow2Offerings"] = { type = "Prefix", affix = "Catarina's", "You can have two Offerings of different types", statOrder = { 4641 }, level = 60, group = "Allow2Offerings", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskPhysicalDamageCanIgnite"] = { type = "Prefix", affix = "Catarina's", "Your Physical Damage can Ignite during Effect", statOrder = { 1003 }, level = 60, group = "LocalFlaskPhysicalDamageCanIgnite", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskIgnitedEnemiesHaveMalediction"] = { type = "Prefix", affix = "Catarina's", "Enemies Ignited by you during Effect have Malediction", statOrder = { 987 }, level = 60, group = "LocalFlaskIgnitedEnemiesHaveMalediction", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskAdditionalCurseOnEnemies"] = { type = "Prefix", affix = "Catarina's", "You can apply an additional Curse during Effect", statOrder = { 1001 }, level = 60, group = "LocalFlaskAdditionalCurseOnEnemies", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskIgniteProlif"] = { type = "Prefix", affix = "Catarina's", "Ignites you inflict during Effect spread to other Enemies within 1.5 metres", statOrder = { 986 }, level = 60, group = "LocalFlaskIgniteProlif", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, - ["JunMasterVeiledLocalFlaskIgniteDamageLifeLeech"] = { type = "Prefix", affix = "Catarina's", "Leech 1.5% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect", statOrder = { 995 }, level = 60, group = "LocalFlaskIgniteDamageLifeLeech", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterAvoidStunAndElementalStatusAilments1"] = { type = "Prefix", affix = "Chosen", "(20-25)% chance to Avoid Elemental Ailments", "(20-25)% chance to Avoid being Stunned", statOrder = { 1843, 1851 }, level = 1, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndImpaleCrafted"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Impale Enemies on Hit with Attacks", statOrder = { 1232, 7860 }, level = 60, group = "LocalIncreasedPhysicalDamageAndImpaleChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBleedChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to cause Bleeding on Hit", statOrder = { 1232, 2483 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBleedChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndBlindChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Blind Enemies on hit", statOrder = { 1232, 2263 }, level = 60, group = "LocalIncreasedPhysicalDamageAndBlindChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "unveiled_mod", "damage", "physical", "attack" }, }, + ["JunMasterVeiledLocalIncreasedPhysicalDamageAndPoisonChanceCrafted_"] = { type = "Prefix", affix = "Chosen", "(120-139)% increased Physical Damage", "(21-25)% chance to Poison on Hit", statOrder = { 1232, 8002 }, level = 60, group = "LocalIncreasedPhysicalDamageAndPoisonChance", weightKey = { "wand", "sceptre", "dagger", "weapon", "default", }, weightVal = { 500, 500, 500, 1000, 0 }, modTags = { "physical_damage", "chaos_damage", "bleed", "poison", "unveiled_mod", "damage", "physical", "chaos", "attack", "ailment" }, }, + ["JunMasterVeiledElementalPenetrationWithAttacks_"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Elemental Resistances", statOrder = { 3761 }, level = 60, group = "LocalAttackReduceEnemyElementalResistance", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "attack" }, }, + ["JunMasterVeiledChaosPenetrationWithAttacks__"] = { type = "Prefix", affix = "Chosen", "Attacks with this Weapon Penetrate (14-16)% Chaos Resistance", statOrder = { 7875 }, level = 60, group = "LocalChaosPenetration", weightKey = { "wand", "dagger", "weapon", "default", }, weightVal = { 500, 500, 1000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "attack" }, }, + ["JunMasterVeiledDoubleDamageChance2h_"] = { type = "Suffix", affix = "of the Order", "(12-14)% chance to deal Double Damage", statOrder = { 5659 }, level = 60, group = "DoubleDamageChance", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDoubleDamageChance1h"] = { type = "Suffix", affix = "of the Order", "(6-7)% chance to deal Double Damage", statOrder = { 5659 }, level = 60, group = "DoubleDamageChance", weightKey = { "shield", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledAreaDamageAndAreaOfEffect"] = { type = "Prefix", affix = "Chosen", "(14-16)% increased Area of Effect", "(17-20)% increased Area Damage", statOrder = { 1880, 2035 }, level = 60, group = "AreaDamageAndAreaOfEffect", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledProjectileDamageAndProjectileSpeed"] = { type = "Prefix", affix = "Chosen", "(23-25)% increased Projectile Speed", "(17-20)% increased Projectile Damage", statOrder = { 1796, 1996 }, level = 60, group = "ProjectileDamageAndProjectileSpeed", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "speed" }, }, + ["JunMasterVeiledMeleeDamageAndMeleeRange"] = { type = "Prefix", affix = "Chosen", "(17-20)% increased Melee Damage", "+0.2 metres to Melee Strike Range", statOrder = { 1234, 2534 }, level = 60, group = "MeleeDamageAndMeleeRange", weightKey = { "gloves", "default", }, weightVal = { 750, 0 }, modTags = { "unveiled_mod", "damage", "attack" }, }, + ["JunMasterVeiledFireDamageAndChanceToIgnite1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Fire Damage", "(21-23)% chance to Ignite", statOrder = { 1357, 2026 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, }, + ["JunMasterVeiledFireDamageAndChanceToIgnite2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Fire Damage", "(35-40)% chance to Ignite", statOrder = { 1357, 2026 }, level = 60, group = "FireDamageAndChanceToIgnite", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "ailment" }, }, + ["JunMasterVeiledColdDamageAndBaseChanceToFreeze1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Cold Damage", "(21-23)% chance to Freeze", statOrder = { 1366, 2029 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, }, + ["JunMasterVeiledColdDamageAndBaseChanceToFreeze2h__"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Cold Damage", "(35-40)% chance to Freeze", statOrder = { 1366, 2029 }, level = 60, group = "ColdDamageAndBaseChanceToFreeze", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "ailment" }, }, + ["JunMasterVeiledLightningDamageAndChanceToShock1h_"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Lightning Damage", "(21-23)% chance to Shock", statOrder = { 1377, 2033 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["JunMasterVeiledLightningDamageAndChanceToShock2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Lightning Damage", "(35-40)% chance to Shock", statOrder = { 1377, 2033 }, level = 60, group = "LightningDamageAndChanceToShock", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "lightning", "ailment" }, }, + ["JunMasterVeiledChaosDamageAndChaosSkillDuration1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Chaos Damage", "Chaos Skills have (13-15)% increased Skill Effect Duration", statOrder = { 1385, 1896 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledChaosDamageAndChaosSkillDuration2h_"] = { type = "Prefix", affix = "Chosen", "(90-99)% increased Chaos Damage", "Chaos Skills have (26-30)% increased Skill Effect Duration", statOrder = { 1385, 1896 }, level = 60, group = "ChaosDamageAndChaosSkillDuration", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledSpellDamageAndManaRegenerationRate1h"] = { type = "Prefix", affix = "Chosen", "(70-79)% increased Spell Damage", "(18-20)% increased Mana Regeneration Rate", statOrder = { 1223, 1584 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, }, + ["JunMasterVeiledSpellDamageAndManaRegenerationRate2h"] = { type = "Prefix", affix = "Chosen", "(100-109)% increased Spell Damage", "(36-40)% increased Mana Regeneration Rate", statOrder = { 1223, 1584 }, level = 60, group = "SpellDamageAndManaRegenerationRate", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "resource", "unveiled_mod", "mana", "damage", "caster" }, }, + ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage1h"] = { type = "Prefix", affix = "Chosen", "(60-69)% increased Spell Damage", "Gain 5% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9488 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, }, + ["JunMasterVeiledSpellDamageAndNonChaosDamageToAddAsChaosDamage2h"] = { type = "Prefix", affix = "Chosen", "(90-99)% increased Spell Damage", "Gain (9-10)% of Non-Chaos Damage as extra Chaos Damage", statOrder = { 1223, 9488 }, level = 60, group = "SpellDamageAndNonChaosDamageToAddAsChaosDamage", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 100, 0 }, modTags = { "caster_damage", "chaos_damage", "unveiled_mod", "damage", "chaos", "caster" }, }, + ["JunMasterVeiledMinionDamageAndMinionMaximumLife1h"] = { type = "Prefix", affix = "Chosen", "Minions have (34-38)% increased maximum Life", "Minions deal (34-38)% increased Damage", statOrder = { 1766, 1973 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, }, + ["JunMasterVeiledMinionDamageAndMinionMaximumLife2h__"] = { type = "Prefix", affix = "Chosen", "Minions have (50-59)% increased maximum Life", "Minions deal (50-59)% increased Damage", statOrder = { 1766, 1973 }, level = 60, group = "MinionDamageAndMinionMaximumLife", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "resource", "unveiled_mod", "life", "damage", "minion" }, }, + ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon1h"] = { type = "Suffix", affix = "of the Order", "Minions have (18-20)% increased Attack Speed", "Minions have (18-20)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, }, + ["JunMasterVeiledMinionAttackAndCastSpeedOnWeapon2h"] = { type = "Suffix", affix = "of the Order", "Minions have (34-38)% increased Attack Speed", "Minions have (34-38)% increased Cast Speed", statOrder = { 2907, 2908 }, level = 60, group = "MinionAttackAndCastSpeedOnWeapon", weightKey = { "one_hand_weapon", "staff", "weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed", "minion" }, }, + ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier2h"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledChaosNonAilmentDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, + ["JunMasterVeiledColdDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, + ["JunMasterVeiledColdDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, + ["JunMasterVeiledFireDamageOverTimeMultiplier2h_"] = { type = "Prefix", affix = "Chosen", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, + ["JunMasterVeiledFireDamageOverTimeMultiplier1h"] = { type = "Prefix", affix = "Chosen", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "default", }, weightVal = { 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, + ["JunMasterVeiledChaosDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledChaosDamageOverTimeMultiplier__"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Chaos Damage over Time Multiplier", statOrder = { 1259 }, level = 60, group = "ChaosDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 1000, 0, 1000, 1000, 600, 100, 0 }, modTags = { "dot_multi", "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplierTwoHand_"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "one_hand_weapon", "bow", "staff", "weapon", "default", }, weightVal = { 0, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, + ["JunMasterVeiledPhysicalDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Physical Damage over Time Multiplier", statOrder = { 1247 }, level = 60, group = "PhysicalDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "weapon", "default", }, weightVal = { 400, 0, 1000, 400, 0 }, modTags = { "dot_multi", "physical_damage", "unveiled_mod", "damage", "physical" }, }, + ["JunMasterVeiledColdDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, + ["JunMasterVeiledColdDamageOverTimeMultiplier___"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Cold Damage over Time Multiplier", statOrder = { 1256 }, level = 60, group = "ColdDamageOverTimeMultiplier", weightKey = { "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "cold" }, }, + ["JunMasterVeiledFireDamageOverTimeMultiplierTwoHand"] = { type = "Suffix", affix = "of the Order", "+(44-48)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "staff", "two_hand_weapon", "default", }, weightVal = { 0, 1000, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, + ["JunMasterVeiledFireDamageOverTimeMultiplier"] = { type = "Suffix", affix = "of the Order", "+(24-28)% to Fire Damage over Time Multiplier", statOrder = { 1251 }, level = 60, group = "FireDamageOverTimeMultiplier", weightKey = { "bow", "two_hand_weapon", "wand", "dagger", "sceptre", "weapon", "default", }, weightVal = { 100, 0, 1000, 1000, 600, 400, 0 }, modTags = { "dot_multi", "elemental_damage", "unveiled_mod", "damage", "elemental", "fire" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(17-19) to maximum Life", statOrder = { 1553, 1569 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1552, 1569 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1554, 1569 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(17-19) to maximum Life", statOrder = { 1542, 1569 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "shield", "helmet", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndLife__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(17-19) to maximum Life", statOrder = { 1550, 1569 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "shield", "helmet", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedEnergyShieldAndLife_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(17-19) to maximum Life", statOrder = { 1560, 1569 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "shield", "helmet", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedDefencesAndLife"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(17-19) to maximum Life", statOrder = { 1555, 1569 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "shield", "helmet", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(19-22) to maximum Life", statOrder = { 1553, 1569 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1552, 1569 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1554, 1569 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(19-22) to maximum Life", statOrder = { 1542, 1569 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "body_armour", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndLifeMed___"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(19-22) to maximum Life", statOrder = { 1550, 1569 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "body_armour", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(19-22) to maximum Life", statOrder = { 1560, 1569 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "body_armour", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedDefencesAndLifeMed"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(19-22) to maximum Life", statOrder = { 1555, 1569 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "body_armour", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEvasionAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Evasion", "+(23-26) to maximum Life", statOrder = { 1553, 1569 }, level = 60, group = "LocalIncreasedArmourAndEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1552, 1569 }, level = 60, group = "LocalIncreasedArmourAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1554, 1569 }, level = 60, group = "LocalIncreasedEvasionAndEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedArmourAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour", "+(23-26) to maximum Life", statOrder = { 1542, 1569 }, level = 60, group = "LocalIncreasedArmourAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour" }, }, + ["JunMasterVeiledLocalIncreasedEvasionAndLifeHigh_"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Evasion Rating", "+(23-26) to maximum Life", statOrder = { 1550, 1569 }, level = 60, group = "LocalIncreasedEvasionAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "dex_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "evasion" }, }, + ["JunMasterVeiledLocalIncreasedEnergyShieldAndLifeHigh"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Energy Shield", "+(23-26) to maximum Life", statOrder = { 1560, 1569 }, level = 60, group = "LocalIncreasedEnergyShieldAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "energy_shield" }, }, + ["JunMasterVeiledLocalIncreasedDefencesAndLifeHigh__"] = { type = "Prefix", affix = "Chosen", "(24-28)% increased Armour, Evasion and Energy Shield", "+(23-26) to maximum Life", statOrder = { 1555, 1569 }, level = 60, group = "LocalIncreasedDefencesAndLife", weightKey = { "shield", "helmet", "gloves", "boots", "str_dex_int_armour", "default", }, weightVal = { 0, 0, 0, 0, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "defences", "armour", "evasion", "energy_shield" }, }, + ["JunMasterVeiledStrengthAndDexterity"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Dexterity", statOrder = { 1180 }, level = 60, group = "StrengthAndDexterity", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledDexterityAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity and Intelligence", statOrder = { 1182 }, level = 60, group = "DexterityAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledStrengthAndIntelligence"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength and Intelligence", statOrder = { 1181 }, level = 60, group = "StrengthAndIntelligence", weightKey = { "body_armour", "boots", "gloves", "helmet", "amulet", "ring", "belt", "shield", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledMinimumEnduranceCharges_"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to gain an Endurance Charge on Kill", statOrder = { 1803, 2629 }, level = 60, group = "MinimumEnduranceChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "endurance_charge", "unveiled_mod" }, }, + ["JunMasterVeiledMinimumPowerCharges"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to gain a Power Charge on Kill", statOrder = { 1813, 2633 }, level = 60, group = "MinimumPowerChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "power_charge", "unveiled_mod" }, }, + ["JunMasterVeiledMinimumFrenzyCharges___"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to gain a Frenzy Charge on Kill", statOrder = { 1808, 2631 }, level = 60, group = "MinimumFrenzyChargesAndOnKillChance", weightKey = { "ring", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, }, + ["JunMasterVeiledIncreasedManaAndRegen"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Regenerate 5.3 Mana per second", statOrder = { 1579, 1582 }, level = 60, group = "IncreasedManaAndRegen", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledManaAndManaCostPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(6-7)% reduced Mana Cost of Skills", statOrder = { 1579, 1883 }, level = 60, group = "ManaAndManaCostPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledManaAndDamageTakenGoesToManaPercent"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "(7-8)% of Damage taken Recouped as Mana", statOrder = { 1579, 2455 }, level = 60, group = "ManaAndDamageTakenGoesToManaPercent", weightKey = { "ring", "amulet", "default", }, weightVal = { 600, 600, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledAttackAndCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Attack and Cast Speed", statOrder = { 2046 }, level = 60, group = "AttackAndCastSpeed", weightKey = { "amulet", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, }, + ["JunMasterVeiledMovementVelocityAndMovementVelocityIfNotHitRecently"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(10-12)% increased Movement Speed if you haven't been Hit Recently", statOrder = { 1798, 3223 }, level = 60, group = "MovementVelocityAndMovementVelocityIfNotHitRecently", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, }, + ["JunMasterVeiledMovementVelocityAndOnslaughtOnKill"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "(13-16)% chance to gain Onslaught for 4 seconds on Kill", statOrder = { 1798, 2993 }, level = 60, group = "MovementVelocityAndOnslaughtOnKill", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "speed" }, }, + ["JunMasterVeiledMovementVelocityAndCannotBeChilled__"] = { type = "Prefix", affix = "Chosen", "(25-30)% increased Movement Speed", "100% chance to Avoid being Chilled", statOrder = { 1798, 1844 }, level = 60, group = "MovementVelocityAndCannotBeChilled", weightKey = { "boots", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "speed", "ailment" }, }, + ["JunMasterVeiledArmourAndEvasionRating"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour and Evasion Rating", statOrder = { 4266 }, level = 60, group = "ArmourAndEvasionRating", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "evasion" }, }, + ["JunMasterVeiledArmourAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Armour", "+(31-35) to maximum Energy Shield", statOrder = { 1539, 1558 }, level = 60, group = "ArmourAndEnergyShield", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "defences", "armour", "energy_shield" }, }, + ["JunMasterVeiledEvasionRatingAndEnergyShield"] = { type = "Prefix", affix = "Chosen", "+(365-400) to Evasion Rating", "+(31-35) to maximum Energy Shield", statOrder = { 1544, 1558 }, level = 60, group = "EvasionRatingAndEnergyShield", weightKey = { "belt", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "evasion", "energy_shield" }, }, + ["JunMasterVeiledFlaskEffect"] = { type = "Prefix", affix = "Chosen", "Flasks applied to you have (9-10)% increased Effect", statOrder = { 2742 }, level = 60, group = "FlaskEffect", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledChanceToNotConsumeFlaskCharges"] = { type = "Prefix", affix = "Chosen", "(9-10)% chance for Flasks you use to not consume Charges", statOrder = { 4230 }, level = 60, group = "FlaskChanceToNotConsumeCharges", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledFlaskEffectAndFlaskChargesGained"] = { type = "Prefix", affix = "Chosen", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2183, 2742 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledFlaskEffectAndFlaskChargesGainedNew"] = { type = "Suffix", affix = "of the Order", "33% reduced Flask Charges gained", "Flasks applied to you have (15-18)% increased Effect", statOrder = { 2183, 2742 }, level = 60, group = "FlaskEffectAndFlaskChargesGained", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledGlobalCooldownRecovery"] = { type = "Suffix", affix = "of the Order", "(13-16)% increased Cooldown Recovery Rate", statOrder = { 5005 }, level = 60, group = "GlobalCooldownRecovery", weightKey = { "belt", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledDamagePerEnduranceCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDamagePerEnduranceCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Endurance Charge", statOrder = { 3199 }, level = 60, group = "DamagePerEnduranceCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDamagePerFrenzyCharge1h"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDamagePerFrenzyCharge2h__"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Frenzy Charge", statOrder = { 3286 }, level = 60, group = "DamagePerFrenzyCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDamagePerPowerCharge1h_"] = { type = "Suffix", affix = "of the Order", "(5-6)% increased Damage per Power Charge", statOrder = { 6066 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledDamagePerPowerCharge2h"] = { type = "Suffix", affix = "of the Order", "(7-8)% increased Damage per Power Charge", statOrder = { 6066 }, level = 60, group = "IncreasedDamagePerPowerCharge", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledPhysicalDamageConvertedToFire_"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Fire Damage", statOrder = { 1955 }, level = 60, group = "ConvertPhysicalToFire", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "fire" }, }, + ["JunMasterVeiledPhysicalDamageConvertedToCold"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Cold Damage", statOrder = { 1957 }, level = 60, group = "ConvertPhysicalToCold", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "cold" }, }, + ["JunMasterVeiledPhysicalDamageConvertedToLightning"] = { type = "Prefix", affix = "Chosen", "(30-35)% of Physical Damage Converted to Lightning Damage", statOrder = { 1959 }, level = 60, group = "ConvertPhysicalToLightning", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "elemental_damage", "unveiled_mod", "damage", "physical", "elemental", "lightning" }, }, + ["JunMasterVeiledMaximumZombieAndSkeleton"] = { type = "Prefix", affix = "Chosen", "Minions have (8-10)% increased maximum Life", "+1 to maximum number of Raised Zombies", "+1 to maximum number of Skeletons", statOrder = { 1766, 2160, 2162 }, level = 60, group = "MaximumMinionCountAndMinionLife", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 2000, 0, 0 }, modTags = { "unveiled_mod", "minion" }, }, + ["JunMasterVeiledEffectOfAilments__"] = { type = "Suffix", affix = "of the Order", "(33-40)% increased Effect of Non-Damaging Ailments", statOrder = { 9499 }, level = 60, group = "IncreasedAilmentEffectOnEnemies", weightKey = { "boots", "amulet", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "ailment" }, }, + ["JunMasterVeiledMaximumCurse"] = { type = "Prefix", affix = "Chosen", "You can apply an additional Curse", statOrder = { 2168 }, level = 60, group = "AdditionalCurseOnEnemies", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, }, + ["JunMasterVeiledCurseEffect"] = { type = "Suffix", affix = "of the Order", "(8-10)% increased Effect of your Curses", statOrder = { 2596 }, level = 60, group = "CurseEffectiveness", weightKey = { "shield", "default", }, weightVal = { 3000, 0 }, modTags = { "unveiled_mod", "caster", "curse" }, }, + ["JunMasterVeiledLifeRegeneration"] = { type = "Suffix", affix = "of the Order", "Regenerate (1.03-1.33)% of Life per second", statOrder = { 1944 }, level = 60, group = "LifeRegenerationRatePercentage", weightKey = { "shield", "amulet", "default", }, weightVal = { 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledAvoidElementalDamageChanceDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "(10-12)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention", statOrder = { 4943 }, level = 60, group = "AvoidElementalDamageChanceDuringSoulGainPrevention", weightKey = { "helmet", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "elemental" }, }, + ["JunMasterVeiledPhysicalDamageReductionRatingDuringSoulGainPrevention"] = { type = "Prefix", affix = "Chosen", "+(3201-4000) to Armour during Soul Gain Prevention", statOrder = { 9651 }, level = 60, group = "PhysicalDamageReductionRatingDuringSoulGainPrevention", weightKey = { "shield", "body_armour", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "physical" }, }, + ["JunMasterVeiledGainOnslaughtDuringSoulGainPrevention"] = { type = "Suffix", affix = "of the Order", "You have Onslaught during Soul Gain Prevention", statOrder = { 6780 }, level = 60, group = "GainOnslaughtDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledDamageWithNonVaalSkillsDuringSoulGainPrevention_"] = { type = "Suffix", affix = "of the Order", "(71-80)% increased Damage with Non-Vaal Skills during Soul Gain Prevention", statOrder = { 6084 }, level = 60, group = "DamageWithNonVaalSkillsDuringSoulGainPrevention", weightKey = { "gloves", "boots", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledSkillAreaOfEffectPercentAndAreaOfEffectGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed AoE Gems", "(8-10)% increased Area of Effect", statOrder = { 176, 1880 }, level = 60, group = "SkillAreaOfEffectPercentAndAreaOfEffectGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, }, + ["JunMasterVeiledProjectilePierceAndProjectileGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Projectile Gems", "Projectiles Pierce an additional Target", statOrder = { 177, 1790 }, level = 60, group = "ProjectilePierceAndProjectileGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "gem" }, }, + ["JunMasterVeiledMeleeRangeAndMeleeGemLevel"] = { type = "Prefix", affix = "Chosen", "+2 to Level of Socketed Melee Gems", "+0.2 metres to Melee Strike Range", statOrder = { 179, 2534 }, level = 60, group = "MeleeRangeAndMeleeGemLevel", weightKey = { "helmet", "default", }, weightVal = { 1500, 0 }, modTags = { "unveiled_mod", "attack", "attack", "gem" }, }, + ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "+(36-40)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5961 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, + ["JunMasterVeiledCriticalStrikeMultiplierIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "+(54-60)% Critical Strike Multiplier while a Rare or Unique Enemy is Nearby", statOrder = { 5961 }, level = 60, group = "CriticalStrikeMultiplierIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, + ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby1h"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4900 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "one_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledAttackSpeedPercentIfRareOrUniqueEnemyNearby2h"] = { type = "Suffix", affix = "of the Order", "(27-30)% increased Attack Speed while a Rare or Unique Enemy is Nearby", statOrder = { 4900 }, level = 60, group = "AttackSpeedPercentIfRareOrUniqueEnemyNearby", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledEnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby"] = { type = "Suffix", affix = "of the Order", "Regenerate 200 Energy Shield per second while a Rare or Unique Enemy is Nearby", statOrder = { 6456 }, level = 60, group = "EnergyShieldRegenerationRatePerMinuteIfRareOrUniqueEnemyNearby", weightKey = { "body_armour", "belt", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, }, + ["JunMasterVeiledCriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent"] = { type = "Suffix", affix = "of the Order", "(18-20)% increased Global Critical Strike Chance", "(6-7)% chance to gain a Frenzy Charge on Critical Strike", statOrder = { 1459, 6755 }, level = 60, group = "CriticalChanceAndGainFrenzyChargeOnCriticalStrikePercent", weightKey = { "quiver", "default", }, weightVal = { 1500, 0 }, modTags = { "frenzy_charge", "unveiled_mod", "critical" }, }, + ["JunMasterVeiledCriticalChanceAndElementalDamagePercentIfHaveCritRecently"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "(27-30)% increased Elemental Damage if you've dealt a Critical Strike Recently", statOrder = { 1459, 6302 }, level = 60, group = "CriticalChanceAndElementalDamagePercentIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "critical" }, }, + ["JunMasterVeiledCriticalChanceAndAddedChaosDamageIfHaveCritRecently_"] = { type = "Suffix", affix = "of the Order", "(20-22)% increased Global Critical Strike Chance", "Adds (22-25) to (28-32) Chaos Damage if you've dealt a Critical Strike Recently", statOrder = { 1459, 9224 }, level = 60, group = "CriticalChanceAndAddedChaosDamageIfHaveCritRecently", weightKey = { "gloves", "quiver", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos", "critical" }, }, + ["JunMasterVeiledBaseLifeAndMana_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "+(55-60) to maximum Mana", statOrder = { 1569, 1579 }, level = 60, group = "BaseLifeAndMana", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 0, 0, 0, 0, 0, 0, 0, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledBaseLifeAndManaRegen_"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Regenerate 5.3 Mana per second", statOrder = { 1569, 1582 }, level = 60, group = "BaseLifeAndManaRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledBaseManaAndLifeRegen__"] = { type = "Prefix", affix = "Chosen", "Regenerate 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1574, 1579 }, level = 60, group = "BaseManaAndLifeRegen", weightKey = { "helmet", "boots", "gloves", "ring", "amulet", "belt", "quiver", "default", }, weightVal = { 1000, 1000, 1000, 1000, 1000, 1000, 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledSummonTotemCastSpeed_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Totem Placement speed", statOrder = { 2578 }, level = 60, group = "SummonTotemCastSpeed", weightKey = { "boots", "amulet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, + ["JunMasterVeiledTrapThrowSpeed_"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Trap Throwing Speed", statOrder = { 1927 }, level = 60, group = "TrapThrowSpeed", weightKey = { "amulet", "belt", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, + ["JunMasterVeiledMineLayingSpeed"] = { type = "Suffix", affix = "of the Order", "(14-16)% increased Mine Throwing Speed", statOrder = { 1928 }, level = 60, group = "MineLayingSpeed", weightKey = { "amulet", "helmet", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "speed" }, }, + ["JunMasterVeiledBrandAttachmentRange"] = { type = "Suffix", affix = "of the Order", "(25-28)% increased Brand Attachment range", statOrder = { 10043 }, level = 60, group = "BrandAttachmentRange", weightKey = { "amulet", "gloves", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "caster" }, }, + ["JunMasterVeiledAddedFireAndColdDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Cold Damage", statOrder = { 1359, 1368 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, + ["JunMasterVeiledAddedFireAndColdDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Cold Damage", statOrder = { 1359, 1368 }, level = 60, group = "AddedFireAndColdDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, + ["JunMasterVeiledAddedFireAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1359, 1379 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, + ["JunMasterVeiledAddedFireAndLightningDamageQuiver_"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Fire Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1359, 1379 }, level = 60, group = "AddedFireAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, + ["JunMasterVeiledAddedColdAndLightningDamage"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage", "Adds (14-16) to (20-22) Lightning Damage", statOrder = { 1368, 1379 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "shield", "ring", "quiver", "amulet", "default", }, weightVal = { 1000, 1000, 1000, 1000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, }, + ["JunMasterVeiledAddedColdAndLightningDamageQuiver"] = { type = "Prefix", affix = "Chosen", "Adds (9-10) to (13-14) Cold Damage", "Adds (9-10) to (13-14) Lightning Damage", statOrder = { 1368, 1379 }, level = 60, group = "AddedColdAndLightningDamage", weightKey = { "quiver", "default", }, weightVal = { 0, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "cold", "lightning" }, }, + ["JunMasterVeiledLuckyCriticalsDuringFocus"] = { type = "Suffix", affix = "of the Order", "Your Critical Strike Chance is Lucky while Focused", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 6530, 6653 }, level = 60, group = "LuckyCriticalsDuringFocusCDR", weightKey = { "belt", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "critical" }, }, + ["JunMasterVeiledDodgeChanceDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(30-32)% increased Evasion Rating while Focused", statOrder = { 6477 }, level = 60, group = "DodgeChanceDuringFocus", weightKey = { "helmet", "boots", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "defences", "evasion" }, }, + ["JunMasterVeiledPhysicalDamageReductionDuringFocus_"] = { type = "Prefix", affix = "Chosen", "(13-15)% additional Physical Damage Reduction while Focused", statOrder = { 4572 }, level = 60, group = "PhysicalDamageReductionDuringFocus", weightKey = { "helmet", "gloves", "default", }, weightVal = { 1500, 1500, 0 }, modTags = { "unveiled_mod", "physical" }, }, + ["JunMasterVeiledShockNearbyEnemiesOnFocus"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Shock nearby Enemies for 4 Seconds when you Focus", statOrder = { 6653, 10013 }, level = 60, group = "ShockNearbyEnemiesOnFocusCDR", weightKey = { "ring", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, }, + ["JunMasterVeiledLifeRegenerationPerEvasionDuringFocus"] = { type = "Suffix", affix = "of the Order", "1.5% of Evasion Rating is Regenerated as Life per second while Focused", statOrder = { 6487 }, level = 60, group = "LifeRegenerationPerEvasionDuringFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledRestoreManaAndEnergyShieldOnFocus"] = { type = "Suffix", affix = "of the Order", "Recover (37-40)% of Mana and Energy Shield when you Focus", statOrder = { 9924 }, level = 60, group = "RestoreManaAndEnergyShieldOnFocus", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "mana", "defences", "energy_shield" }, }, + ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused2h_"] = { type = "Suffix", affix = "of the Order", "(36-40)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "two_hand_weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledChanceToDealDoubleDamageWhileFocused1h"] = { type = "Suffix", affix = "of the Order", "(18-20)% chance to deal Double Damage while Focused", statOrder = { 5666 }, level = 60, group = "ChanceToDealDoubleDamageWhileFocused", weightKey = { "one_hand_weapon", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledAttackAndCastSpeedWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(45-50)% increased Attack and Cast Speed while Focused", statOrder = { 4822 }, level = 60, group = "AttackAndCastSpeedWhileFocused", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack", "caster", "speed" }, }, + ["JunMasterVeiledStatusAilmentsYouInflictDurationWhileFocused_"] = { type = "Suffix", affix = "of the Order", "(36-40)% increased Duration of Ailments you inflict while Focused", statOrder = { 10224 }, level = 60, group = "StatusAilmentsYouInflictDurationWhileFocused", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "ailment" }, }, + ["JunMasterVeiledImmuneToStatusAilmentsWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "You are Immune to Ailments while Focused", statOrder = { 6653, 7239 }, level = 60, group = "ImmuneToStatusAilmentsWhileFocusedCDR", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "ailment" }, }, + ["JunMasterVeiledFocusCooldownRecovery_"] = { type = "Suffix", affix = "of the Order", "Focus has (31-35)% increased Cooldown Recovery Rate", statOrder = { 6653 }, level = 60, group = "FocusCooldownRecovery", weightKey = { "boots", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched as Life while Focused", statOrder = { 6828, 7362 }, level = 60, group = "LifeLeechFromAnyDamagePermyriadWhileFocusedAndVaalPact", weightKey = { "amulet", "default", }, weightVal = { 3000, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledFortifyEffectWhileFocused_"] = { type = "Suffix", affix = "of the Order", "+10 to maximum Fortification while Focused", statOrder = { 9118 }, level = 60, group = "FortifyEffectWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledTriggerSocketedSpellWhenYouFocus"] = { type = "Suffix", affix = "of the Order", "Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown", "Focus has (5-8)% increased Cooldown Recovery Rate", statOrder = { 834, 6653 }, level = 60, group = "TriggerSocketedSpellWhenYouFocusCDR", weightKey = { "helmet", "default", }, weightVal = { 1000, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, }, + ["JunMasterVeiledDamageRemovedFromManaBeforeLifeWhileFocused"] = { type = "Suffix", affix = "of the Order", "(18-22)% of Damage is taken from Mana before Life while Focused", statOrder = { 6089 }, level = 60, group = "DamageRemovedFromManaBeforeLifeWhileFocused", weightKey = { "body_armour", "default", }, weightVal = { 1000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledMinionsRecoverMaximumLifeWhenYouFocus_"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Minions Recover 100% of their Life when you Focus", statOrder = { 6653, 9366 }, level = 60, group = "MinionsRecoverMaximumLifeWhenYouFocusCDR", weightKey = { "gloves", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "minion" }, }, + ["JunMasterVeiledGainVaalPactWhileFocused"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", statOrder = { 6828 }, level = 60, group = "GainVaalPactWhileFocused", weightKey = { "ring", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledSkillsCostNoManaWhileFocused"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% increased Cooldown Recovery Rate", "Non-Aura Skills Cost no Mana or Life while Focused", statOrder = { 6653, 10065 }, level = 60, group = "SkillsCostNoManaWhileFocusedCDR", weightKey = { "amulet", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledAllDamage"] = { type = "Prefix", affix = "Leo's", "(20-23)% increased Damage", statOrder = { 1191 }, level = 60, group = "AllDamage", weightKey = { "leo_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledLocalIncreaseSocketedSupportGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Support Gems", "+(5-8)% to Quality of Socketed Support Gems", statOrder = { 189, 205 }, level = 60, group = "LocalIncreaseSocketedSupportGemLevelAndQuality", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, + ["JunMasterVeiledChaosExplosionOnKill"] = { type = "Prefix", affix = "Catarina's", "Enemies you Kill have a (15-25)% chance to Explode, dealing a quarter of their maximum Life as Chaos Damage", statOrder = { 3305 }, level = 60, group = "ObliterationExplodeOnKillChaos", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "chaos_damage", "unveiled_mod", "damage", "chaos" }, }, + ["JunMasterVeiledSupportedByCastOnCritAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are supported by Level 1 Cast On Critical Strike", "(80-89)% increased Spell Damage", statOrder = { 472, 1223 }, level = 60, group = "CastOnCritAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster", "critical" }, }, + ["JunMasterVeiledSupportedByCastWhileChannelingAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Cast While Channelling", "(80-89)% increased Spell Damage", statOrder = { 242, 1223 }, level = 60, group = "CastWhileChannelingAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, }, + ["JunMasterVeiledSupportedByArcaneSurgeAndSpellDamage"] = { type = "Prefix", affix = "Catarina's", "Socketed Gems are Supported by Level 1 Arcane Surge", "(80-89)% increased Spell Damage", statOrder = { 226, 1223 }, level = 60, group = "ArcaneSurgeAndSpellDamage", weightKey = { "helmet", "quiver", "flask", "shield", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "support_gem", "caster_damage", "unveiled_mod", "damage", "caster" }, }, + ["JunMasterVeiledReduceGlobalFlatManaCost"] = { type = "Prefix", affix = "Elreon's", "-(10-9) to Total Mana Cost of Skills", statOrder = { 1891 }, level = 60, group = "IncreaseManaCostFlat", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledReduceGlobalFlatManaCostChannelling_"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills have -4 to Total Mana Cost", statOrder = { 10060 }, level = 60, group = "ManaCostTotalChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledReduceGlobalFlatManaCostNonChannelling"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills have -(10-9) to Total Mana Cost", statOrder = { 10062 }, level = 60, group = "ManaCostTotalNonChannelled", weightKey = { "elreon_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledDamageWhileLeeching"] = { type = "Prefix", affix = "Vorici's", "(54-60)% increased Damage while Leeching", statOrder = { 3063 }, level = 60, group = "DamageWhileLeeching", weightKey = { "vorici_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledSocketedGemQuality"] = { type = "Prefix", affix = "Haku's", "+(9-10)% to Quality of Socketed Gems", statOrder = { 204 }, level = 60, group = "SocketedGemQuality", weightKey = { "haku_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, + ["JunMasterVeiledBleedOnHitGained1h"] = { type = "Prefix", affix = "Tora's", "Adds (12-14) to (18-20) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, + ["JunMasterVeiledBleedOnHitGained2h"] = { type = "Prefix", affix = "Tora's", "Adds (17-20) to (26-28) Physical Damage", "40% chance to cause Bleeding on Hit", statOrder = { 1276, 2483 }, level = 60, group = "LocalAddedPhysicalDamageAndCausesBleeding", weightKey = { "tora_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "bleed", "unveiled_mod", "damage", "physical", "attack", "ailment" }, }, + ["JunMasterVeiledAlwaysHits"] = { type = "Prefix", affix = "Vagan's", "Hits can't be Evaded", statOrder = { 2043 }, level = 60, group = "AlwaysHits", weightKey = { "vagan_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attack" }, }, + ["JunMasterVeiledDamageDuringFlaskEffect"] = { type = "Prefix", affix = "Brinerot", "(36-40)% increased Damage during any Flask Effect", statOrder = { 4082 }, level = 60, group = "DamageDuringFlaskEffect", weightKey = { "brinerot_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "flask", "unveiled_mod", "damage" }, }, + ["JunMasterVeiledItemRarityFromRareAndUniqueEnemies_"] = { type = "Suffix", affix = "of Janus", "(55-60)% increased Rarity of Items Dropped by Slain Rare or Unique Enemies", statOrder = { 9830 }, level = 60, group = "RareOrUniqueMonsterDroppedItemRarity", weightKey = { "janus_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "drop" }, }, + ["JunMasterVeiledFireAddedAsChaos1h_"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 60, group = "FireAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, }, + ["JunMasterVeiledColdAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, }, + ["JunMasterVeiledLightningAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, }, + ["JunMasterVeiledPhysicalAddedAsChaos1h"] = { type = "Prefix", affix = "It's", "Gain (9-10)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "two_hand_weapon", "it_veiled_prefix", "default", }, weightVal = { 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, + ["JunMasterVeiledFireAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Fire Damage as Extra Chaos Damage", statOrder = { 1941 }, level = 60, group = "FireAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "fire", "chaos" }, }, + ["JunMasterVeiledColdAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Cold Damage as Extra Chaos Damage", statOrder = { 1940 }, level = 60, group = "ColdAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "cold", "chaos" }, }, + ["JunMasterVeiledLightningAddedAsChaos2h__"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Lightning Damage as Extra Chaos Damage", statOrder = { 1938 }, level = 60, group = "LightningAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "elemental_damage", "chaos_damage", "unveiled_mod", "damage", "elemental", "lightning", "chaos" }, }, + ["JunMasterVeiledPhysicalAddedAsChaos2h_"] = { type = "Prefix", affix = "It's", "Gain (18-20)% of Physical Damage as Extra Chaos Damage", statOrder = { 1935 }, level = 60, group = "PhysicalAddedAsChaos", weightKey = { "one_hand_weapon", "shield", "it_veiled_prefix", "default", }, weightVal = { 0, 0, 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, + ["JunMasterVeiledPercentageAllAttributes"] = { type = "Suffix", affix = "of Hillock", "(7-8)% increased Attributes", statOrder = { 1183 }, level = 60, group = "PercentageAllAttributes", weightKey = { "hillock_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledLifeAddedAsEnergyShield"] = { type = "Prefix", affix = "Gravicius'", "Gain (12-14)% of Maximum Life as Extra Maximum Energy Shield", statOrder = { 9160 }, level = 60, group = "LifeAddedAsEnergyShield", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "defences", "energy_shield" }, }, + ["JunMasterVeiledPhysicalTakenAsFireAndLightning"] = { type = "Prefix", affix = "Gravicius'", "(8-9)% of Physical Damage from Hits taken as Fire Damage", "(8-9)% of Physical Damage from Hits taken as Lightning Damage", statOrder = { 2447, 2449 }, level = 60, group = "PhysicalDamageTakenAsFireAndLightningPercent", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire", "lightning" }, }, + ["JunMasterVeiledBannerEffect"] = { type = "Prefix", affix = "Gravicius'", "Banner Skills have (26-35)% increased Aura Effect", statOrder = { 3362 }, level = 60, group = "BannerEffect", weightKey = { "gravicius_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "aura" }, }, + ["JunMasterVeiledWolfOnKill___"] = { type = "Suffix", affix = "Jorgin's", "Trigger Level 10 Summon Spectral Wolf on Kill", statOrder = { 791 }, level = 60, group = "SummonWolfOnKillOld", weightKey = { "jorgin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, + ["JunMasterVeiledPhysicalDamageTakenAsFirePercent__"] = { type = "Prefix", affix = "Korell's", "(9-10)% of Physical Damage from Hits taken as Fire Damage", statOrder = { 2447 }, level = 60, group = "PhysicalDamageTakenAsFirePercent", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod", "physical", "elemental", "fire" }, }, + ["JunMasterVeiledWarcryBuffEffect"] = { type = "Prefix", affix = "Korell's", "(20-25)% increased Warcry Buff Effect", statOrder = { 10566 }, level = 60, group = "WarcryBuffEffect", weightKey = { "keema_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledAvoidFreeze_"] = { type = "Prefix", affix = "Rin's", "(20-30)% chance to Avoid being Chilled", "100% chance to Avoid being Frozen", statOrder = { 1844, 1845 }, level = 60, group = "AvoidFreezeAndChill", weightKey = { "rin_veiled_prefix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "ailment" }, }, + ["JunMasterVeiledCriticalMultiplierOnShatter_"] = { type = "Suffix", affix = "of Cameria", "(20-22)% increased Global Critical Strike Chance", "+(27-30)% to Critical Strike Multiplier if you've Shattered an Enemy Recently", statOrder = { 1459, 5958 }, level = 60, group = "CritChanceAndCriticalStrikeMultiplierIfEnemyShatteredRecently", weightKey = { "cameria_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "damage", "critical" }, }, + ["JunMasterVeiledIncreasedChaosAndPhysicalDamage"] = { type = "Suffix", affix = "of Aisling", "(20-22)% increased Global Physical Damage", "(18-20)% increased Chaos Damage", statOrder = { 1231, 1385 }, level = 60, group = "IncreasedChaosAndPhysicalDamage", weightKey = { "aislin_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "physical_damage", "chaos_damage", "unveiled_mod", "damage", "physical", "chaos" }, }, + ["JunMasterVeiledIncreasedFireAndLightningDamage"] = { type = "Suffix", affix = "of Riker", "(18-20)% increased Fire Damage", "(20-22)% increased Lightning Damage", statOrder = { 1357, 1377 }, level = 60, group = "IncreasedFireAndLightningDamage", weightKey = { "riker_veiled_suffix", "default", }, weightVal = { 2000, 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "lightning" }, }, + ["JunMasterVeiledLocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "Regenerate 3% of Life per second during Effect", statOrder = { 993 }, level = 60, group = "LocalFlaskLifeRegenerationPerMinuteDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledLocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 60, group = "LocalFlaskAvoidStunChanceAndMovementSpeedDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "speed" }, }, + ["JunMasterVeiledLocalFlaskAvoidStunChanceDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "50% Chance to Avoid being Stunned during Effect", statOrder = { 972 }, level = 60, group = "LocalFlaskAvoidStunChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskSkillManaCostDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-25)% reduced Mana Cost of Skills during Effect", statOrder = { 999 }, level = 60, group = "LocalFlaskSkillManaCostDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledLocalFlaskItemFoundRarityDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "(20-30)% increased Rarity of Items found during Effect", statOrder = { 989 }, level = 60, group = "LocalFlaskItemFoundRarityDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod", "drop" }, }, + ["JunMasterVeiledLocalFlaskCriticalStrikeChanceDuringFlaskEffect_"] = { type = "Prefix", affix = "of the Order", "(40-60)% increased Critical Strike Chance during Effect", statOrder = { 976 }, level = 60, group = "LocalFlaskCriticalStrikeChanceDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "unveiled_mod", "critical" }, }, + ["JunMasterVeiledLocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect"] = { type = "Prefix", affix = "of the Order", "15% of Damage Taken from Hits is Leeched as Life during Effect", statOrder = { 992 }, level = 60, group = "LocalFlaskLifeLeechOnDamageTakenPermyriadDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledLocalAttackSpeedAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1413, 7950 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledLocalAttackSpeedAndLocalItemQualityRangedWeapon"] = { type = "Suffix", affix = "of the Order", "(12-15)% increased Attack Speed", "+(13-18)% to Quality", statOrder = { 1413, 7950 }, level = 60, group = "LocalAttackSpeedAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledLocalCriticalStrikeChanceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "(28-32)% increased Critical Strike Chance", "+(13-18)% to Quality", statOrder = { 1464, 7950 }, level = 60, group = "LocalCriticalStrikeChanceAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack", "critical" }, }, + ["JunMasterVeiledLocalAccuracyRatingAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(311-350) to Accuracy Rating", "+(16-18)% to Quality", statOrder = { 2024, 7950 }, level = 60, group = "LocalAccuracyRatingAndLocalItemQuality", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "attack" }, }, + ["JunMasterVeiledLocalAttackSpeedDexterityIntelligence"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(18-22)% increased Attack Speed", statOrder = { 1182, 1413 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, }, + ["JunMasterVeiledLocalAttackSpeedDexterityIntelligenceRanged"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Dexterity and Intelligence", "(12-15)% increased Attack Speed", statOrder = { 1182, 1413 }, level = 60, group = "LocalAttackSpeedDexterityIntelligence", weightKey = { "wand", "bow", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed", "attribute" }, }, + ["JunMasterVeiledLocalCriticalStrikeChanceStrengthIntelligence__"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Intelligence", "(28-32)% increased Critical Strike Chance", statOrder = { 1181, 1464 }, level = 60, group = "LocalCriticalStrikeChanceStrengthIntelligence", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "critical", "attribute" }, }, + ["JunMasterVeiledLocalAccuracyRatingStrengthDexterity_"] = { type = "Suffix", affix = "of the Order", "+(25-28) to Strength and Dexterity", "+(311-350) to Accuracy Rating", statOrder = { 1180, 2024 }, level = 60, group = "LocalAccuracyRatingStrengthDexterity", weightKey = { "weapon", "default", }, weightVal = { 1000, 0 }, modTags = { "unveiled_mod", "attack", "attribute" }, }, + ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance_"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(18-22)% increased Attack Speed", statOrder = { 792, 1413 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "ranged", "weapon", "default", }, weightVal = { 0, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledLocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChanceRangedWeapon"] = { type = "Suffix", affix = "of the Order", "15% chance to Trigger Level 1 Blood Rage when you Kill an Enemy", "(12-15)% increased Attack Speed", statOrder = { 792, 1413 }, level = 60, group = "LocalAttackSpeedAndLocalDisplayTriggerLevel1BloodRageOnKillChance", weightKey = { "bow", "wand", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attack", "speed" }, }, + ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance1h__"] = { type = "Suffix", affix = "of the Order", "(18-22)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1446, 6730 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "wand", "dagger", "sceptre", "one_hand_weapon", "default", }, weightVal = { 1000, 1000, 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, }, + ["JunMasterVeiledCastSpeedAndGainArcaneSurgeOnKillChance2h_"] = { type = "Suffix", affix = "of the Order", "(26-31)% increased Cast Speed", "15% chance to gain Arcane Surge when you Kill an Enemy", statOrder = { 1446, 6730 }, level = 60, group = "CastSpeedAndGainArcaneSurgeOnKillChance", weightKey = { "staff", "two_hand_weapon", "default", }, weightVal = { 1000, 100, 0 }, modTags = { "unveiled_mod", "caster", "speed" }, }, + ["JunMasterVeiledTriggerSocketedSpellOnSkillUse_"] = { type = "Suffix", affix = "of the Order", "Trigger a Socketed Spell on Using a Skill, with a 4 second Cooldown", "Spells Triggered this way have 150% more Cost", statOrder = { 832, 832.1 }, level = 60, group = "TriggerSocketedSpellOnSkillUseFourSeconds", weightKey = { "weapon", "default", }, weightVal = { 0, 0 }, modTags = { "skill", "unveiled_mod", "caster", "gem" }, }, + ["JunMasterVeiledFireAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Fire and Chaos Resistances", statOrder = { 6549 }, level = 60, group = "FireAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "chaos", "resistance" }, }, + ["JunMasterVeiledLightningAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Lightning and Chaos Resistances", statOrder = { 7435 }, level = 60, group = "LightningAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "chaos", "resistance" }, }, + ["JunMasterVeiledColdAndChaosDamageResistance"] = { type = "Suffix", affix = "of the Order", "+(16-20)% to Cold and Chaos Resistances", statOrder = { 5800 }, level = 60, group = "ColdAndChaosDamageResistance", weightKey = { "body_armour", "boots", "gloves", "helmet", "shield", "amulet", "ring", "belt", "quiver", "default", }, weightVal = { 600, 600, 600, 600, 600, 600, 600, 600, 600, 0 }, modTags = { "unveiled_mod", "elemental", "cold", "chaos", "resistance" }, }, + ["JunMasterVeiledStrengthAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "+(15-18)% to Quality", statOrder = { 1177, 7950 }, level = 60, group = "StrengthAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledDexterityAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "+(15-18)% to Quality", statOrder = { 1178, 7950 }, level = 60, group = "DexterityAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledIntelligenceAndLocalItemQuality"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "+(15-18)% to Quality", statOrder = { 1179, 7950 }, level = 60, group = "IntelligenceAndLocalItemQuality", weightKey = { "body_armour", "shield", "default", }, weightVal = { 0, 0, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledStrengthAndAvoidIgnite"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Strength", "(21-25)% chance to Avoid being Ignited", statOrder = { 1177, 1846 }, level = 60, group = "StrengthAndAvoidIgnite", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledDexterityAndAvoidFreeze"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Dexterity", "(21-25)% chance to Avoid being Frozen", statOrder = { 1178, 1845 }, level = 60, group = "DexterityAndAvoidFreeze", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledIntelligenceAndAvoidShock"] = { type = "Suffix", affix = "of the Order", "+(31-35) to Intelligence", "(21-25)% chance to Avoid being Shocked", statOrder = { 1179, 1848 }, level = 60, group = "IntelligenceAndAvoidShock", weightKey = { "body_armour", "shield", "default", }, weightVal = { 1000, 1000, 0 }, modTags = { "unveiled_mod", "attribute" }, }, + ["JunMasterVeiledLifeRegenerationRatePerMinuteWhileUsingFlask"] = { type = "Suffix", affix = "of the Order", "Regenerate 3% of Life per second during any Flask Effect", statOrder = { 7426 }, level = 60, group = "LifeRegenerationRatePerMinuteWhileUsingFlask", weightKey = { "belt", "default", }, weightVal = { 0, 0 }, modTags = { "flask", "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledPercentageLifeAndMana"] = { type = "Prefix", affix = "Chosen", "(9-10)% increased maximum Life", "(9-10)% increased maximum Mana", statOrder = { 1571, 1580 }, level = 60, group = "PercentageLifeAndMana", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledBlockPercent"] = { type = "Prefix", affix = "Chosen", "(8-9)% Chance to Block Attack Damage", statOrder = { 1138 }, level = 60, group = "BlockPercent", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, }, + ["JunMasterVeiledSpellBlockPercent____"] = { type = "Prefix", affix = "Chosen", "(9-10)% Chance to Block Spell Damage", statOrder = { 1160 }, level = 60, group = "SpellBlockPercentage", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "block", "unveiled_mod" }, }, + ["JunMasterVeiledSpellDodgePercentage__"] = { type = "Prefix", affix = "Chosen", "+(18-21)% chance to Suppress Spell Damage", statOrder = { 1142 }, level = 60, group = "ChanceToSuppressSpellsOld", weightKey = { "body_armour", "default", }, weightVal = { 0, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledAvoidStunAndElementalStatusAilments"] = { type = "Prefix", affix = "Chosen", "(30-35)% chance to Avoid Elemental Ailments", "(30-35)% chance to Avoid being Stunned", statOrder = { 1843, 1851 }, level = 60, group = "AvoidStunAndElementalStatusAilments", weightKey = { "body_armour", "default", }, weightVal = { 2000, 0 }, modTags = { "unveiled_mod", "elemental", "fire", "cold", "lightning", "ailment" }, }, + ["JunMasterVeiledLocalFlaskReducedReflectDuringEffect"] = { type = "Prefix", affix = "of the Order", "(60-80)% of Damage from your Hits cannot be Reflected during Effect", statOrder = { 968 }, level = 60, group = "FlaskReflectReductionDuringFlaskEffect", weightKey = { "flask", "default", }, weightVal = { 1000, 0 }, modTags = { "flask", "unveiled_mod" }, }, + ["JunMasterVeiledMinimumEnduranceChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Endurance Charges", "(3-4)% chance to lose an Endurance Charge on Kill", statOrder = { 1803, 2630 }, level = 60, group = "MinimumEnduranceChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "endurance_charge", "unveiled_mod" }, }, + ["JunMasterVeiledMinimumPowerChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Power Charges", "(3-4)% chance to lose a Power Charge on Kill", statOrder = { 1813, 2634 }, level = 60, group = "MinimumPowerChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "power_charge", "unveiled_mod" }, }, + ["JunMasterVeiledMinimumFrenzyChargesInverted"] = { type = "Suffix", affix = "of the Order", "+1 to Minimum Frenzy Charges", "(3-4)% chance to lose a Frenzy Charge on Kill", statOrder = { 1808, 2632 }, level = 60, group = "MinimumFrenzyChargesAndOnKillLose", weightKey = { "default", }, weightVal = { 0 }, modTags = { "frenzy_charge", "unveiled_mod" }, }, + ["JunMasterVeiledAddedFireAndColdDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Cold Damage to Hits against you", statOrder = { 1358, 1367 }, level = 60, group = "SelfFireAndColdDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "unveiled_mod", "damage", "elemental", "fire", "cold" }, }, + ["JunMasterVeiledAddedFireAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Fire Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1358, 1378 }, level = 60, group = "SelfFireAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "fire", "lightning" }, }, + ["JunMasterVeiledAddedColdAndLightningDamageInverted"] = { type = "Prefix", affix = "Chosen", "Adds (14-16) to (20-22) Cold Damage to Hits against you", "Adds (14-16) to (20-22) Lightning Damage to Hits against you", statOrder = { 1367, 1378 }, level = 60, group = "SelfColdAndLightningDamageTaken", weightKey = { "default", }, weightVal = { 0 }, modTags = { "elemental_damage", "damage", "elemental", "cold", "lightning" }, }, + ["JunMasterVeiledLifeLeechFromAnyDamageAndVaalPactWhileFocusedInverted"] = { type = "Suffix", affix = "of the Order", "You have Vaal Pact while Focused", "15% of Damage Leeched by Enemy as Life while Focused", statOrder = { 6828, 7363 }, level = 60, group = "EnemyLifeLeechPermyriadWhileFocusedAndVaalPact", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life" }, }, + ["JunMasterVeiledIncreasedManaAndRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(51-55) to maximum Mana", "Lose 5.3 Mana per second", statOrder = { 1579, 1583 }, level = 60, group = "IncreasedManaAndDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledBaseLifeAndManaRegenInverted"] = { type = "Prefix", affix = "Chosen", "+(55-60) to maximum Life", "Lose 5.3 Mana per second", statOrder = { 1569, 1583 }, level = 60, group = "BaseLifeAndManaDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledBaseManaAndLifeRegenInverted"] = { type = "Prefix", affix = "Chosen", "Lose 33.3 Life per second", "+(55-60) to maximum Mana", statOrder = { 1575, 1579 }, level = 60, group = "BaseManaAndLifeDegenGracePeriod", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "life", "mana" }, }, + ["JunMasterVeiledReduceGlobalFlatManaCostChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Channelling Skills Cost -4 Mana", statOrder = { 10061 }, level = 60, group = "ManaCostBaseChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledReduceGlobalFlatManaCostNonChannellingInverted"] = { type = "Prefix", affix = "Elreon's", "Non-Channelling Skills Cost -(10-9) Mana", statOrder = { 10063 }, level = 60, group = "ManaCostBaseNonChannelled", weightKey = { "default", }, weightVal = { 0 }, modTags = { "resource", "unveiled_mod", "mana" }, }, + ["JunMasterVeiledShockNearbyEnemiesOnFocusInverted"] = { type = "Suffix", affix = "of the Order", "Focus has (5-8)% reduced Cooldown Recovery Rate", "Shock yourself for 4 Seconds when you Focus", statOrder = { 6653, 10012 }, level = 60, group = "ShockYourselfOnFocusCDR", weightKey = { "default", }, weightVal = { 0 }, modTags = { "unveiled_mod", "elemental", "lightning", "ailment" }, }, + ["JunMasterVeiledMinionLargerAggroRadius"] = { type = "Prefix", affix = "Catarina's", "Minions are Aggressive", statOrder = { 10760 }, level = 60, group = "MinionLargerAggroRadius", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, + ["JunMasterVeiledMinionDamageAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Damage also affect you", statOrder = { 3750 }, level = 60, group = "MinionDamageAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledMinionAttackSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Attack Speed also affect you", statOrder = { 3752 }, level = 60, group = "MinionAttackSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledMinionCastSpeedAlsoAffectsYou"] = { type = "Prefix", affix = "Catarina's", "Increases and Reductions to Minion Cast Speed also affect you", statOrder = { 3753 }, level = 60, group = "MinionCastSpeedAlsoAffectsYou", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledMinionSkillCastSpeed"] = { type = "Prefix", affix = "Catarina's", "(20-40)% increased Cast Speed with Minion Skills", statOrder = { 5465 }, level = 60, group = "MinionSkillCastSpeed", weightKey = { "body_armour", "helmet", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledMaximumSpectreCount"] = { type = "Prefix", affix = "Catarina's", "+1 to maximum number of Spectres", statOrder = { 2161 }, level = 60, group = "MaximumSpectreCount", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "minion" }, }, + ["JunMasterVeiledSpectresBaseMaximumAllResistance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(5-10)% to all maximum Resistances", statOrder = { 10117 }, level = 60, group = "SpectresBaseMaximumAllResistance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledSpectresAdditionalProjectiles"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres fire 2 additional Projectiles", statOrder = { 10123 }, level = 60, group = "SpectresAdditionalProjectiles", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledSpectresAdditionalBaseCriticalChance"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have +(3-5)% to Critical Strike Chance", statOrder = { 10115 }, level = 60, group = "SpectresAdditionalBaseCriticalChance", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledSpectresAreaOfEffect"] = { type = "Prefix", affix = "Catarina's", "Raised Spectres have (30-50)% increased Area of Effect", statOrder = { 10118 }, level = 60, group = "SpectresAreaOfEffect", weightKey = { "weapon", "helmet", "quiver", "flask", "body_armour", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalIncreaseSocketedGemLevel"] = { type = "Prefix", affix = "Catarina's", "+2 to Level of Socketed Gems", statOrder = { 162 }, level = 60, group = "LocalIncreaseSocketedGemLevel", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "gem" }, }, + ["JunMasterVeiledDamageIfConsumedCorpse"] = { type = "Prefix", affix = "Catarina's", "20% increased Damage if you have Consumed a corpse Recently", statOrder = { 4253 }, level = 60, group = "DamageIfConsumedCorpse", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod", "damage" }, }, + ["JunMasterVeiledCorpseLife"] = { type = "Prefix", affix = "Catarina's", "Corpses you Spawn have 20% increased Maximum Life", statOrder = { 9162 }, level = 60, group = "CorpseLife", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledAttackAndCastSpeedIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "20% increased Attack and Cast Speed if you've Consumed a Corpse Recently", statOrder = { 4806 }, level = 60, group = "AttackAndCastSpeedIfCorpseConsumedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledTakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently"] = { type = "Prefix", affix = "Catarina's", "Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently", statOrder = { 9979 }, level = 60, group = "TakeNoExtraDamageFromCriticalStrikesIfEnergyShieldRechargeStartedRecently", weightKey = { "body_armour", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledOfferingEffect"] = { type = "Prefix", affix = "Catarina's", "20% increased effect of Offerings", statOrder = { 4063 }, level = 60, group = "OfferingEffect", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledOfferingDuration"] = { type = "Prefix", affix = "Catarina's", "Offering Skills have 20% increased Duration", statOrder = { 9552 }, level = 60, group = "OfferingDuration", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLifeRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Life per second if you've Consumed a corpse Recently", statOrder = { 7413 }, level = 60, group = "LifeRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledManaRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Mana per second if you've Consumed a corpse Recently", statOrder = { 8194 }, level = 60, group = "ManaRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledEnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently"] = { type = "Prefix", affix = "Catarina's", "Regenerate 2% of Energy Shield per second if you've Consumed a Corpse Recently", statOrder = { 6455 }, level = 60, group = "EnergyShieldRegenerationRatePercentageIfCorpseConsumedRecently", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledAllow2Offerings"] = { type = "Prefix", affix = "Catarina's", "You can have two Offerings of different types", statOrder = { 4636 }, level = 60, group = "Allow2Offerings", weightKey = { "helmet", "quiver", "flask", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskPhysicalDamageCanIgnite"] = { type = "Prefix", affix = "Catarina's", "Your Physical Damage can Ignite during Effect", statOrder = { 998 }, level = 60, group = "LocalFlaskPhysicalDamageCanIgnite", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskIgnitedEnemiesHaveMalediction"] = { type = "Prefix", affix = "Catarina's", "Enemies Ignited by you during Effect have Malediction", statOrder = { 982 }, level = 60, group = "LocalFlaskIgnitedEnemiesHaveMalediction", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskAdditionalCurseOnEnemies"] = { type = "Prefix", affix = "Catarina's", "You can apply an additional Curse during Effect", statOrder = { 996 }, level = 60, group = "LocalFlaskAdditionalCurseOnEnemies", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskIgniteProlif"] = { type = "Prefix", affix = "Catarina's", "Ignites you inflict during Effect spread to other Enemies within 1.5 metres", statOrder = { 981 }, level = 60, group = "LocalFlaskIgniteProlif", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, + ["JunMasterVeiledLocalFlaskIgniteDamageLifeLeech"] = { type = "Prefix", affix = "Catarina's", "Leech 1.5% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect", statOrder = { 990 }, level = 60, group = "LocalFlaskIgniteDamageLifeLeech", weightKey = { "helmet", "quiver", "body_armour", "shield", "weapon", "catarina_veiled_prefix", "default", }, weightVal = { 0, 0, 0, 0, 0, 2000, 0 }, modTags = { "unveiled_mod" }, }, } \ No newline at end of file diff --git a/src/Data/Uniques/Special/BoundByDestiny.lua b/src/Data/Uniques/Special/BoundByDestiny.lua index 997a2967d9..b1b5e31f21 100644 --- a/src/Data/Uniques/Special/BoundByDestiny.lua +++ b/src/Data/Uniques/Special/BoundByDestiny.lua @@ -2,58 +2,58 @@ -- Item data (c) Grinding Gear Games return { - ["MaximumLifeIncreasePercent2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(10-15)% increased maximum Life if 2 Elder Items are Equipped", statOrder = { 4458 }, level = 1, group = "MaximumLifeIncreasePercent2ElderItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["NearbyEnemiesAreUnnerved2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", statOrder = { 4462 }, level = 1, group = "NearbyEnemiesAreUnnerved2ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", statOrder = { 4452 }, level = 1, group = "PhysicalEnergyShieldLeechPermyriad2ElderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["MaximumManaIncreasePercent2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped", statOrder = { 4459 }, level = 1, group = "MaximumManaIncreasePercent2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["GlobalCooldownRecovery2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", statOrder = { 4450 }, level = 1, group = "GlobalCooldownRecovery2ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", statOrder = { 4451 }, level = 1, group = "ElementalEnergyShieldLeechPermyriad2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["UnaffectedByPoison2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Unaffected by Poison if 2 Hunter Items are Equipped", statOrder = { 4453 }, level = 1, group = "UnaffectedByPoison2HunterItems", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["RegenerateLifeOver1Second2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped", statOrder = { 4456 }, level = 1, group = "RegenerateLifeOver1Second2HunterItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["AdditionalPierce2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped", statOrder = { 4463 }, level = 1, group = "AdditionalPierce2HunterItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["UnaffectedByIgnite2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Unaffected by Ignite if 2 Warlord Items are Equipped", statOrder = { 4466 }, level = 1, group = "UnaffectedByIgnite2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["NearbyEnemiesAreIntimidated2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", statOrder = { 4461 }, level = 1, group = "NearbyEnemiesAreIntimidated2WarlordItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PercentageStrength2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "(10-15)% increased Strength if 2 Warlord Items are Equipped", statOrder = { 4464 }, level = 1, group = "PercentageStrength2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["UnaffectedByChill2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Unaffected by Chill if 2 Redeemer Items are Equipped", statOrder = { 4465 }, level = 1, group = "UnaffectedByChill2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["NearbyEnemiesAreBlinded2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", statOrder = { 4460 }, level = 1, group = "NearbyEnemiesAreBlinded2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PercentageDexterity2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped", statOrder = { 4455 }, level = 1, group = "PercentageDexterity2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["UnaffectedByShock2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Unaffected by Shock if 2 Crusader Items are Equipped", statOrder = { 4467 }, level = 1, group = "UnaffectedByShock2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["ConsecratedGroundStationary2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", statOrder = { 4454 }, level = 1, group = "ConsecratedGroundStationary2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PercentageIntelligence2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "(10-15)% increased Intelligence if 2 Crusader Items are Equipped", statOrder = { 4457 }, level = 1, group = "PercentageIntelligence2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["MaximumBlockChance4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", statOrder = { 4481 }, level = 1, group = "MaximumBlockChance4ElderItems", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["PhysicalReflectImmune4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", statOrder = { 4478 }, level = 1, group = "PhysicalReflectImmune4ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped", statOrder = { 4470 }, level = 1, group = "AdditionalCriticalStrikeChanceWithAttacks4ElderItems", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, - ["MaximumSpellBlockChance4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", statOrder = { 4475 }, level = 1, group = "MaximumSpellBlockChance4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["ElementalReflectImmune4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", statOrder = { 4477 }, level = 1, group = "ElementalReflectImmune4ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", statOrder = { 4485 }, level = 1, group = "AdditionalCriticalStrikeChanceWithSpells4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, - ["ElementalDamageTakenAsChaos4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped", statOrder = { 4479 }, level = 1, group = "ElementalDamageTakenAsChaos4HunterItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, }, - ["MovementVelocity4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped", statOrder = { 4476 }, level = 1, group = "MovementVelocity4HunterItems", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["MaximumChaosResistance4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped", statOrder = { 4471 }, level = 1, group = "MaximumChaosResistance4HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", statOrder = { 4483 }, level = 1, group = "PhysicalDamageTakenAsFirePercent4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, - ["EnduranceChargeIfHitRecently4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped", statOrder = { 4480, 4480.1 }, level = 1, group = "EnduranceChargeIfHitRecently4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["MaximumFireResist4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped", statOrder = { 4473 }, level = 1, group = "MaximumFireResist4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, - ["PhysicalDamageTakenAsCold4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", statOrder = { 4482 }, level = 1, group = "PhysicalDamageTakenAsCold4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, - ["FrenzyChargeOnHitChance4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", statOrder = { 4468 }, level = 1, group = "FrenzyChargeOnHitChance4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["MaximumColdResist4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped", statOrder = { 4472 }, level = 1, group = "MaximumColdResist4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, - ["PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", statOrder = { 4484 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, - ["PowerChargeOnHit4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", statOrder = { 4469 }, level = 1, group = "PowerChargeOnHit4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, - ["MaximumLightningResistance4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped", statOrder = { 4474 }, level = 1, group = "MaximumLightningResistance4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, - ["CannotBeStunned6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "Cannot be Stunned if 6 Elder Items are Equipped", statOrder = { 4490 }, level = 1, group = "CannotBeStunned6ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["GlobalPhysicalGemLevel6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped", statOrder = { 4502 }, level = 1, group = "GlobalPhysicalGemLevel6ElderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, }, - ["PercentageAllAttributes6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "(10-15)% increased Attributes if 6 Elder Items are Equipped", statOrder = { 4488 }, level = 1, group = "PercentageAllAttributes6ElderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, - ["PhysAddedAsEachElement6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped", statOrder = { 4501, 4501.1 }, level = 1, group = "PhysAddedAsEachElement6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, }, - ["MaximumElementalResistance6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", statOrder = { 4486 }, level = 1, group = "MaximumElementalResistance6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["GlobalSupportGemLevel6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", statOrder = { 4503 }, level = 1, group = "GlobalSupportGemLevel6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, }, - ["AdditionalCurseOnEnemies6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "You can apply an additional Curse if 6 Hunter Items are Equipped", statOrder = { 4500 }, level = 1, group = "AdditionalCurseOnEnemies6HunterItems", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["GlobalChaosGemLevel6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", statOrder = { 4492 }, level = 1, group = "GlobalChaosGemLevel6HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, }, - ["AdditionalProjectile6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "Skills fire an additional Projectile if 6 Hunter Items are Equipped", statOrder = { 4487 }, level = 1, group = "AdditionalProjectile6HunterItems", weightKey = { }, weightVal = { }, modTags = { }, }, - ["FortifyOnMeleeHit6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "Melee Hits Fortify if 6 Warlord Items are Equipped", statOrder = { 4491 }, level = 1, group = "FortifyOnMeleeHit6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, - ["GlobalFireGemLevel6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", statOrder = { 4494 }, level = 1, group = "GlobalFireGemLevel6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, - ["MaximumEnduranceCharges6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped", statOrder = { 4497 }, level = 1, group = "MaximumEnduranceCharges6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, - ["CannotBeFrozen6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "Cannot be Frozen if 6 Redeemer Items are Equipped", statOrder = { 4489 }, level = 1, group = "CannotBeFrozen6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["GlobalColdGemLevel6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", statOrder = { 4493 }, level = 1, group = "GlobalColdGemLevel6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, - ["MaximumFrenzyCharges6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", statOrder = { 4498 }, level = 1, group = "MaximumFrenzyCharges6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, - ["PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", statOrder = { 4495 }, level = 1, group = "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, - ["GlobalLightningGemLevel6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", statOrder = { 4496 }, level = 1, group = "GlobalLightningGemLevel6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, }, - ["IncreasedMaximumPowerCharges6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Maximum Power Charges if 6 Crusader Items are Equipped", statOrder = { 4499 }, level = 1, group = "IncreasedMaximumPowerCharges6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["MaximumLifeIncreasePercent2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(10-15)% increased maximum Life if 2 Elder Items are Equipped", statOrder = { 4453 }, level = 1, group = "MaximumLifeIncreasePercent2ElderItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["NearbyEnemiesAreUnnerved2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "Nearby Enemies are Unnerved if 2 Elder Items are Equipped", statOrder = { 4457 }, level = 1, group = "NearbyEnemiesAreUnnerved2ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1"] = { type = "2Elder", affix = "", "(1-3)% of Physical Damage Leeched as Energy Shield if 2 Elder Items are Equipped", statOrder = { 4447 }, level = 1, group = "PhysicalEnergyShieldLeechPermyriad2ElderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["MaximumManaIncreasePercent2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-15)% increased maximum Mana if 2 Shaper Items are Equipped", statOrder = { 4454 }, level = 1, group = "MaximumManaIncreasePercent2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["GlobalCooldownRecovery2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(10-20)% increased Cooldown Recovery Rate if 2 Shaper Items are Equipped", statOrder = { 4445 }, level = 1, group = "GlobalCooldownRecovery2ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1"] = { type = "2Shaper", affix = "", "(1-3)% of Elemental Damage Leeched as Energy Shield if 2 Shaper Items are Equipped", statOrder = { 4446 }, level = 1, group = "ElementalEnergyShieldLeechPermyriad2ShaperItems", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["UnaffectedByPoison2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Unaffected by Poison if 2 Hunter Items are Equipped", statOrder = { 4448 }, level = 1, group = "UnaffectedByPoison2HunterItems", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["RegenerateLifeOver1Second2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Every 4 seconds, Regenerate 35% of Life over one second if 2 Hunter Items are Equipped", statOrder = { 4451 }, level = 1, group = "RegenerateLifeOver1Second2HunterItems", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["AdditionalPierce2HunterItemsUnique__1"] = { type = "2Hunter", affix = "", "Projectiles Pierce 2 additional Targets if 2 Hunter Items are Equipped", statOrder = { 4458 }, level = 1, group = "AdditionalPierce2HunterItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["UnaffectedByIgnite2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Unaffected by Ignite if 2 Warlord Items are Equipped", statOrder = { 4461 }, level = 1, group = "UnaffectedByIgnite2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["NearbyEnemiesAreIntimidated2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "Nearby Enemies are Intimidated if 2 Warlord Items are Equipped", statOrder = { 4456 }, level = 1, group = "NearbyEnemiesAreIntimidated2WarlordItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PercentageStrength2WarlordItemsUnique__1"] = { type = "2Warlord", affix = "", "(10-15)% increased Strength if 2 Warlord Items are Equipped", statOrder = { 4459 }, level = 1, group = "PercentageStrength2WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["UnaffectedByChill2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Unaffected by Chill if 2 Redeemer Items are Equipped", statOrder = { 4460 }, level = 1, group = "UnaffectedByChill2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["NearbyEnemiesAreBlinded2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "Nearby Enemies are Blinded if 2 Redeemer Items are Equipped", statOrder = { 4455 }, level = 1, group = "NearbyEnemiesAreBlinded2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PercentageDexterity2RedeemerItemsUnique__1"] = { type = "2Redeemer", affix = "", "(10-15)% increased Dexterity if 2 Redeemer Items are Equipped", statOrder = { 4450 }, level = 1, group = "PercentageDexterity2RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["UnaffectedByShock2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Unaffected by Shock if 2 Crusader Items are Equipped", statOrder = { 4462 }, level = 1, group = "UnaffectedByShock2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["ConsecratedGroundStationary2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "Consecrated Ground around you while stationary if 2 Crusader Items are Equipped", statOrder = { 4449 }, level = 1, group = "ConsecratedGroundStationary2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PercentageIntelligence2CrusaderItemsUnique__1"] = { type = "2Crusader", affix = "", "(10-15)% increased Intelligence if 2 Crusader Items are Equipped", statOrder = { 4452 }, level = 1, group = "PercentageIntelligence2CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["MaximumBlockChance4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "+3% to maximum Chance to Block Attack Damage if 4 Elder Items are Equipped", statOrder = { 4476 }, level = 1, group = "MaximumBlockChance4ElderItems", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["PhysicalReflectImmune4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Cannot take Reflected Physical Damage if 4 Elder Items are Equipped", statOrder = { 4473 }, level = 1, group = "PhysicalReflectImmune4ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1"] = { type = "4Elder", affix = "", "Attacks have +(1-1.5)% to Critical Strike Chance if 4 Elder Items are Equipped", statOrder = { 4465 }, level = 1, group = "AdditionalCriticalStrikeChanceWithAttacks4ElderItems", weightKey = { }, weightVal = { }, modTags = { "attack", "critical" }, }, + ["MaximumSpellBlockChance4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+3% to maximum Chance to Block Spell Damage if 4 Shaper Items are Equipped", statOrder = { 4470 }, level = 1, group = "MaximumSpellBlockChance4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["ElementalReflectImmune4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "Cannot take Reflected Elemental Damage if 4 Shaper Items are Equipped", statOrder = { 4472 }, level = 1, group = "ElementalReflectImmune4ShaperItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1"] = { type = "4Shaper", affix = "", "+(1-1.5)% to Spell Critical Strike Chance if 4 Shaper Items are Equipped", statOrder = { 4480 }, level = 1, group = "AdditionalCriticalStrikeChanceWithSpells4ShaperItems", weightKey = { }, weightVal = { }, modTags = { "caster", "critical" }, }, + ["ElementalDamageTakenAsChaos4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(5-10)% of Elemental Damage taken as Chaos Damage if 4 Hunter Items are Equipped", statOrder = { 4474 }, level = 1, group = "ElementalDamageTakenAsChaos4HunterItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "chaos" }, }, + ["MovementVelocity4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "(10-15)% increased Movement Speed if 4 Hunter Items are Equipped", statOrder = { 4471 }, level = 1, group = "MovementVelocity4HunterItems", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["MaximumChaosResistance4HunterItemsUnique__1"] = { type = "4Hunter", affix = "", "+(2-3)% to maximum Chaos Resistance if 4 Hunter Items are Equipped", statOrder = { 4466 }, level = 1, group = "MaximumChaosResistance4HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "(5-10)% of Physical Damage taken as Fire Damage if 4 Warlord Items are Equipped", statOrder = { 4478 }, level = 1, group = "PhysicalDamageTakenAsFirePercent4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["EnduranceChargeIfHitRecently4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "Gain 1 Endurance Charge every second if you've been Hit Recently and", "4 Warlord Items are Equipped", statOrder = { 4475, 4475.1 }, level = 1, group = "EnduranceChargeIfHitRecently4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["MaximumFireResist4WarlordItemsUnique__1"] = { type = "4Warlord", affix = "", "+(2-3)% to maximum Fire Resistance if 4 Warlord Items are Equipped", statOrder = { 4468 }, level = 1, group = "MaximumFireResist4WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "resistance" }, }, + ["PhysicalDamageTakenAsCold4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(5-10)% of Physical Damage taken as Cold Damage if 4 Redeemer Items are Equipped", statOrder = { 4477 }, level = 1, group = "PhysicalDamageTakenAsCold4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, + ["FrenzyChargeOnHitChance4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "(10-15)% chance to gain a Frenzy Charge on Hit if 4 Redeemer Items are Equipped", statOrder = { 4463 }, level = 1, group = "FrenzyChargeOnHitChance4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["MaximumColdResist4RedeemerItemsUnique__1"] = { type = "4Redeemer", affix = "", "+(2-3)% to maximum Cold Resistance if 4 Redeemer Items are Equipped", statOrder = { 4467 }, level = 1, group = "MaximumColdResist4RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "resistance" }, }, + ["PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(5-10)% of Physical Damage taken as Lightning Damage if 4 Crusader Items are Equipped", statOrder = { 4479 }, level = 1, group = "PhysicalDamageTakenAsLightningPercent4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["PowerChargeOnHit4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "(10-15)% chance to gain a Power Charge on Hit if 4 Crusader Items are Equipped", statOrder = { 4464 }, level = 1, group = "PowerChargeOnHit4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, + ["MaximumLightningResistance4CrusaderItemsUnique__1"] = { type = "4Crusader", affix = "", "+(2-3)% to maximum Lightning Resistance if 4 Crusader Items are Equipped", statOrder = { 4469 }, level = 1, group = "MaximumLightningResistance4CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "resistance" }, }, + ["CannotBeStunned6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "Cannot be Stunned if 6 Elder Items are Equipped", statOrder = { 4485 }, level = 1, group = "CannotBeStunned6ElderItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GlobalPhysicalGemLevel6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "+1 to Level of all Physical Skill Gems if 6 Elder Items are Equipped", statOrder = { 4497 }, level = 1, group = "GlobalPhysicalGemLevel6ElderItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, }, + ["PercentageAllAttributes6ElderItemsUnique__1"] = { type = "6Elder", affix = "", "(10-15)% increased Attributes if 6 Elder Items are Equipped", statOrder = { 4483 }, level = 1, group = "PercentageAllAttributes6ElderItems", weightKey = { }, weightVal = { }, modTags = { "attribute" }, }, + ["PhysAddedAsEachElement6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "Gain (10-15)% of Physical Damage as Extra Damage of each Element if", "6 Shaper Items are Equipped", statOrder = { 4496, 4496.1 }, level = 1, group = "PhysAddedAsEachElement6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "earth_elemental", "physical" }, }, + ["MaximumElementalResistance6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+(1-2)% to all maximum Elemental Resistances if 6 Shaper Items are Equipped", statOrder = { 4481 }, level = 1, group = "MaximumElementalResistance6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["GlobalSupportGemLevel6ShaperItemsUnique__1"] = { type = "6Shaper", affix = "", "+1 to Level of all non-Exceptional Support Gems if 6 Shaper Items are Equipped", statOrder = { 4498 }, level = 1, group = "GlobalSupportGemLevel6ShaperItems", weightKey = { }, weightVal = { }, modTags = { "physical", "gem" }, }, + ["AdditionalCurseOnEnemies6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "You can apply an additional Curse if 6 Hunter Items are Equipped", statOrder = { 4495 }, level = 1, group = "AdditionalCurseOnEnemies6HunterItems", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["GlobalChaosGemLevel6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "+1 to Level of all Chaos Skill Gems if 6 Hunter Items are Equipped", statOrder = { 4487 }, level = 1, group = "GlobalChaosGemLevel6HunterItems", weightKey = { }, weightVal = { }, modTags = { "chaos", "gem" }, }, + ["AdditionalProjectile6HunterItemsUnique__1"] = { type = "6Hunter", affix = "", "Skills fire an additional Projectile if 6 Hunter Items are Equipped", statOrder = { 4482 }, level = 1, group = "AdditionalProjectile6HunterItems", weightKey = { }, weightVal = { }, modTags = { }, }, + ["FortifyOnMeleeHit6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "Melee Hits Fortify if 6 Warlord Items are Equipped", statOrder = { 4486 }, level = 1, group = "FortifyOnMeleeHit6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "attack" }, }, + ["GlobalFireGemLevel6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Level of all Fire Skill Gems if 6 Warlord Items are Equipped", statOrder = { 4489 }, level = 1, group = "GlobalFireGemLevel6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "gem" }, }, + ["MaximumEnduranceCharges6WarlordItemsUnique__1"] = { type = "6Warlord", affix = "", "+1 to Maximum Endurance Charges if 6 Warlord Items are Equipped", statOrder = { 4492 }, level = 1, group = "MaximumEnduranceCharges6WarlordItems", weightKey = { }, weightVal = { }, modTags = { "endurance_charge" }, }, + ["CannotBeFrozen6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "Cannot be Frozen if 6 Redeemer Items are Equipped", statOrder = { 4484 }, level = 1, group = "CannotBeFrozen6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["GlobalColdGemLevel6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Level of all Cold Skill Gems if 6 Redeemer Items are Equipped", statOrder = { 4488 }, level = 1, group = "GlobalColdGemLevel6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "gem" }, }, + ["MaximumFrenzyCharges6RedeemerItemsUnique__1"] = { type = "6Redeemer", affix = "", "+1 to Maximum Frenzy Charges if 6 Redeemer Items are Equipped", statOrder = { 4493 }, level = 1, group = "MaximumFrenzyCharges6RedeemerItems", weightKey = { }, weightVal = { }, modTags = { "frenzy_charge" }, }, + ["PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "(1-3)% of Physical Damage Prevented Recently is Regenerated as Energy Shield Per Second if 6 Crusader Items are Equipped", statOrder = { 4490 }, level = 1, group = "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "defences", "armour", "energy_shield" }, }, + ["GlobalLightningGemLevel6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Level of all Lightning Skill Gems if 6 Crusader Items are Equipped", statOrder = { 4491 }, level = 1, group = "GlobalLightningGemLevel6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "gem" }, }, + ["IncreasedMaximumPowerCharges6CrusaderItemsUnique__1"] = { type = "6Crusader", affix = "", "+1 to Maximum Power Charges if 6 Crusader Items are Equipped", statOrder = { 4494 }, level = 1, group = "IncreasedMaximumPowerCharges6CrusaderItems", weightKey = { }, weightVal = { }, modTags = { "power_charge" }, }, } \ No newline at end of file diff --git a/src/Data/Uniques/Special/WatchersEye.lua b/src/Data/Uniques/Special/WatchersEye.lua index 12627662e9..0a045e68a5 100644 --- a/src/Data/Uniques/Special/WatchersEye.lua +++ b/src/Data/Uniques/Special/WatchersEye.lua @@ -2,149 +2,149 @@ -- Item data (c) Grinding Gear Games return { - ["DeterminationPhysicalDamageReduction"] = { affix = "", "(5-8)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4584 }, level = 1, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["DeterminationAdditionalBlock"] = { affix = "", "+(5-8)% Chance to Block Attack Damage while affected by Determination", statOrder = { 5236 }, level = 1, group = "DeterminationAdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["DeterminationUnaffectedByVulnerability"] = { affix = "", "Unaffected by Vulnerability while affected by Determination", statOrder = { 10484 }, level = 1, group = "DeterminationUnaffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["DeterminationReducedExtraDamageFromCrits"] = { affix = "", "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination", statOrder = { 6541 }, level = 1, group = "DeterminationReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["DeterminationReducedReflectedPhysicalDamage"] = { affix = "", "(50-75)% of Physical Damage from your Hits cannot be Reflected while affected by Determination", statOrder = { 12 }, level = 1, group = "DeterminationReducedReflectedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["DeterminationAdditionalArmour"] = { affix = "", "+(600-1000) to Armour while affected by Determination", statOrder = { 4770 }, level = 1, group = "DeterminationAdditionalArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, - ["GraceAdditionalChanceToEvade"] = { affix = "", "+(5-8)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5680 }, level = 1, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, - ["GraceChanceToDodge"] = { affix = "", "+(12-15)% chance to Suppress Spell Damage while affected by Grace", statOrder = { 10173 }, level = 1, group = "GraceChanceToDodge", weightKey = { }, weightVal = { }, modTags = { }, }, - ["GraceUnaffectedByEnfeeble"] = { affix = "", "Unaffected by Enfeeble while affected by Grace", statOrder = { 10468 }, level = 1, group = "GraceUnaffectedByEnfeeble", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["GraceIncreasedMovementSpeed"] = { affix = "", "(10-15)% increased Movement Speed while affected by Grace", statOrder = { 9428 }, level = 1, group = "GraceIncreasedMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["GraceBlindEnemiesWhenHit"] = { affix = "", "(30-50)% chance to Blind Enemies which Hit you while affected by Grace", statOrder = { 5226 }, level = 1, group = "GraceBlindEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["DisciplineEnergyShieldRegen"] = { affix = "", "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline", statOrder = { 6464 }, level = 1, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["DisciplineAdditionalSpellBlock"] = { affix = "", "+(5-8)% Chance to Block Spell Damage while affected by Discipline", statOrder = { 5657 }, level = 1, group = "DisciplineAdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, - ["DisciplineFasterStartOfRecharge"] = { affix = "", "(30-40)% faster start of Energy Shield Recharge while affected by Discipline", statOrder = { 6434 }, level = 1, group = "DisciplineFasterStartOfRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["DisciplineEnergyShieldPerHit"] = { affix = "", "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline", statOrder = { 6437 }, level = 1, group = "DisciplineEnergyShieldPerHit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["DisciplineEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline", statOrder = { 6457 }, level = 1, group = "DisciplineEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["WrathLightningPenetration"] = { affix = "", "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath", statOrder = { 9878 }, level = 1, group = "WrathLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["WrathLightningDamageManaLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath", statOrder = { 8188 }, level = 1, group = "WrathLightningDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, }, - ["WrathLightningDamageESLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath", statOrder = { 6442 }, level = 1, group = "WrathLightningDamageESLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "elemental", "lightning" }, }, - ["WrathPhysicalAddedAsLightning_"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath", statOrder = { 9634 }, level = 1, group = "WrathPhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["WrathPhysicalConvertedToLightning"] = { affix = "", "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath", statOrder = { 5050 }, level = 1, group = "WrathPhysicalConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, - ["WrathIncreasedLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Wrath", statOrder = { 7454 }, level = 1, group = "WrathIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, - ["WrathIncreasedCriticalStrikeChance"] = { affix = "", "(70-100)% increased Critical Strike Chance while affected by Wrath", statOrder = { 5946 }, level = 1, group = "WrathIncreasedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["AngerFirePenetration"] = { affix = "", "Damage Penetrates (10-15)% Fire Resistance while affected by Anger", statOrder = { 9877 }, level = 1, group = "AngerFirePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AngerFireDamageLifeLeech_"] = { affix = "", "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger", statOrder = { 7373 }, level = 1, group = "AngerFireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, - ["AngerPhysicalAddedAsFire"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger", statOrder = { 9631 }, level = 1, group = "AngerPhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["AngerPhysicalConvertedToFire"] = { affix = "", "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger", statOrder = { 5049 }, level = 1, group = "AngerPhysicalConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, - ["AngerIncreasedFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Anger", statOrder = { 6573 }, level = 1, group = "AngerIncreasedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, - ["AngerIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(30-50)% to Critical Strike Multiplier while affected by Anger", statOrder = { 5973 }, level = 1, group = "AngerIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["HatredColdPenetration"] = { affix = "", "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred", statOrder = { 9875 }, level = 1, group = "HatredColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HatredAdditionalCriticalStrikeChance"] = { affix = "", "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred", statOrder = { 4557 }, level = 1, group = "HatredAdditionalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["HatredAddedColdDamage"] = { affix = "", "Adds (58-70) to (88-104) Cold Damage while affected by Hatred", statOrder = { 9237 }, level = 1, group = "HatredAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["HatredPhysicalConvertedToCold"] = { affix = "", "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred", statOrder = { 5048 }, level = 1, group = "HatredPhysicalConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, - ["HatredIncreasedColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Hatred", statOrder = { 5819 }, level = 1, group = "HatredIncreasedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, - ["VitalityDamageLifeLeech"] = { affix = "", "(0.8-1.2)% of Damage leeched as Life while affected by Vitality", statOrder = { 7366 }, level = 1, group = "VitalityDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["VitalityFlatLifeRegen"] = { affix = "", "Regenerate (100-140) Life per Second while affected by Vitality", statOrder = { 7409 }, level = 1, group = "VitalityFlatLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["VitalityPercentLifeRegen"] = { affix = "", "Regenerate (1-1.5)% of Life per second while affected by Vitality", statOrder = { 7416 }, level = 1, group = "VitalityPercentLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["VitalityLifeRecoveryRate"] = { affix = "", "(10-15)% increased Life Recovery Rate while affected by Vitality", statOrder = { 7399 }, level = 1, group = "VitalityLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["VitalityLifeGainPerHit"] = { affix = "", "Gain (20-30) Life per Enemy Hit while affected by Vitality", statOrder = { 7360 }, level = 1, group = "VitalityLifeGainPerHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["VitalityLifeRecoveryFromFlasks_"] = { affix = "", "(50-70)% increased Life Recovery from Flasks while affected by Vitality", statOrder = { 6645 }, level = 1, group = "VitalityLifeRecoveryFromFlasks", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, - ["ClarityReducedManaCost"] = { affix = "", "-(10-5) to Total Mana Cost of Skills while affected by Clarity", statOrder = { 10058 }, level = 1, group = "ClarityReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["ClarityReducedManaCostNonChannelled"] = { affix = "", "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity", statOrder = { 10063 }, level = 1, group = "ClarityReducedManaCostNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["ClarityDamageTakenFromManaBeforeLife"] = { affix = "", "(6-10)% of Damage taken from Mana before Life while affected by Clarity", statOrder = { 6093 }, level = 1, group = "ClarityDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, - ["ClarityRecoverManaOnSkillUse"] = { affix = "", "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity", statOrder = { 9845 }, level = 1, group = "ClarityRecoverManaOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["ClarityManaAddedAsEnergyShield"] = { affix = "", "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity", statOrder = { 9174 }, level = 1, group = "ClarityManaAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["ClarityManaRecoveryRate"] = { affix = "", "(10-15)% increased Mana Recovery Rate while affected by Clarity", statOrder = { 8197 }, level = 1, group = "ClarityManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["ClarityDamageTakenGainedAsMana"] = { affix = "", "(15-20)% of Damage taken while affected by Clarity Recouped as Mana", statOrder = { 6111 }, level = 1, group = "ClarityDamageTakenGainedAsMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["HasteChanceToDodgeSpells"] = { affix = "", "+(5-8)% chance to Suppress Spell Damage while affected by Haste", statOrder = { 10174 }, level = 1, group = "HasteChanceToDodgeSpells", weightKey = { }, weightVal = { }, modTags = { }, }, - ["HasteGainOnslaughtOnKill"] = { affix = "", "You gain Onslaught for 4 seconds on Kill while affected by Haste", statOrder = { 6792 }, level = 1, group = "HasteGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, - ["HasteGainPhasing"] = { affix = "", "You have Phasing while affected by Haste", statOrder = { 6803 }, level = 1, group = "HasteGainPhasing", weightKey = { }, weightVal = { }, modTags = { }, }, - ["HasteUnaffectedByTemporalChains"] = { affix = "", "Unaffected by Temporal Chains while affected by Haste", statOrder = { 10483 }, level = 1, group = "HasteUnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["HasteDebuffsExpireFaster"] = { affix = "", "Debuffs on you expire (15-20)% faster while affected by Haste", statOrder = { 6155 }, level = 1, group = "HasteDebuffsExpireFaster", weightKey = { }, weightVal = { }, modTags = { }, }, - ["HasteCooldownRecoveryForMovementSkills"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste", statOrder = { 9405 }, level = 1, group = "HasteCooldownRecoveryForMovementSkills", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PurityOfFireTakePhysicalAsFire"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire", statOrder = { 9659 }, level = 1, group = "PurityOfFireTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, - ["PurityOfFireImmuneToIgnite"] = { affix = "", "Immune to Ignite while affected by Purity of Fire", statOrder = { 7238 }, level = 1, group = "PurityOfFireImmuneToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["PurityOfFireUnaffectedByBurningGround"] = { affix = "", "Unaffected by Burning Ground while affected by Purity of Fire", statOrder = { 10456 }, level = 1, group = "PurityOfFireUnaffectedByBurningGround", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PurityOfFireUnaffectedByFlammability__"] = { affix = "", "Unaffected by Flammability while affected by Purity of Fire", statOrder = { 10469 }, level = 1, group = "PurityOfFireUnaffectedByFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["PurityOfFireReducedReflectedFireDamage"] = { affix = "", "(50-75)% of Fire Damage from your Hits cannot be Reflected while affected by Purity of Fire", statOrder = { 10 }, level = 1, group = "PurityOfFireReducedReflectedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, - ["PurityOfFireColdAndLightningTakenAsFire"] = { affix = "", "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", statOrder = { 5806 }, level = 1, group = "PurityOfFireColdAndLightningTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["PurityOfIceTakePhysicalAsIce"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice", statOrder = { 9657 }, level = 1, group = "PurityOfIceTakePhysicalAsIce", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, - ["PurityOfIceImmuneToFreeze"] = { affix = "", "Immune to Freeze while affected by Purity of Ice", statOrder = { 7235 }, level = 1, group = "PurityOfIceImmuneToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["PurityOfIceUnaffectedByChilledGround"] = { affix = "", "Unaffected by Chilled Ground while affected by Purity of Ice", statOrder = { 10461 }, level = 1, group = "PurityOfIceUnaffectedByChilledGround", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PurityOfIceUnaffectedByFrostbite"] = { affix = "", "Unaffected by Frostbite while affected by Purity of Ice", statOrder = { 10471 }, level = 1, group = "PurityOfIceUnaffectedByFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["PurityOfIceReducedReflectedColdDamage"] = { affix = "", "(50-75)% of Cold Damage from your Hits cannot be Reflected while affected by Purity of Ice", statOrder = { 7 }, level = 1, group = "PurityOfIceReducedReflectedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, - ["PurityOfIceFireAndLightningTakenAsCold"] = { affix = "", "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", statOrder = { 6557 }, level = 1, group = "PurityOfIceFireAndLightningTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["PurityOfLightningTakePhysicalAsLightning"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning", statOrder = { 9661 }, level = 1, group = "PurityOfLightningTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, - ["PurityOfLightningImmuneToShock_"] = { affix = "", "Immune to Shock while affected by Purity of Lightning", statOrder = { 7243 }, level = 1, group = "PurityOfLightningImmuneToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["PurityOfLightningUnaffectedByShockedGround"] = { affix = "", "Unaffected by Shocked Ground while affected by Purity of Lightning", statOrder = { 10481 }, level = 1, group = "PurityOfLightningUnaffectedByShockedGround", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PurityOfLightningUnaffectedByConductivity_____"] = { affix = "", "Unaffected by Conductivity while affected by Purity of Lightning", statOrder = { 10462 }, level = 1, group = "PurityOfLightningUnaffectedByConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["PurityOfLightningReducedReflectedLightningDamage"] = { affix = "", "(50-75)% of Lightning Damage from your Hits cannot be Reflected while", "affected by Purity of Lightning", statOrder = { 11, 11.1 }, level = 1, group = "PurityOfLightningReducedReflectedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, - ["PurityOfLightningFireAndColdTakenAsLightning"] = { affix = "", "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", statOrder = { 6555, 6555.1 }, level = 1, group = "PurityOfLightningFireAndColdTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["PurityOfElementsTakePhysicalAsFire_"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements", statOrder = { 9658 }, level = 1, group = "PurityOfElementsTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, - ["PurityOfElementsTakePhysicalAsCold"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements", statOrder = { 9656 }, level = 1, group = "PurityOfElementsTakePhysicalAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, - ["PurityOfElementsTakePhysicalAsLightning"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements", statOrder = { 9660 }, level = 1, group = "PurityOfElementsTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, - ["PurityOfElementsUnaffectedByElementalWeakness"] = { affix = "", "Unaffected by Elemental Weakness while affected by Purity of Elements", statOrder = { 10467 }, level = 1, group = "PurityOfElementsUnaffectedByElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, - ["PurityOfElementsReducedReflectedElementalDamage"] = { affix = "", "(50-75)% of Elemental Damage from your Hits cannot be Reflected while", "affected by Purity of Elements", statOrder = { 9, 9.1 }, level = 1, group = "PurityOfElementsReducedReflectedElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, - ["PurityOfElementsChaosResistance"] = { affix = "", "+(30-50)% to Chaos Resistance while affected by Purity of Elements", statOrder = { 5749 }, level = 1, group = "PurityOfElementsChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, - ["PurityOfElementsMaximumElementalResistances"] = { affix = "", "+1% to all maximum Elemental Resistances while affected by Purity of Elements", statOrder = { 4566 }, level = 1, group = "PurityOfElementsMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["PrecisionIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(20-30)% to Critical Strike Multiplier while affected by Precision", statOrder = { 5974 }, level = 1, group = "PrecisionIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, - ["PrecisionIncreasedAttackDamage"] = { affix = "", "(40-60)% increased Attack Damage while affected by Precision", statOrder = { 4867 }, level = 1, group = "PrecisionIncreasedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, - ["PrecisionFlaskChargeOnCrit_"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike while affected by Precision", statOrder = { 9834 }, level = 1, group = "PrecisionFlaskChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, }, - ["PrecisionIncreasedAttackSpeed"] = { affix = "", "(10-15)% increased Attack Speed while affected by Precision", statOrder = { 4909 }, level = 1, group = "PrecisionIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, - ["PrecisionCannotBeBlinded"] = { affix = "", "Cannot be Blinded while affected by Precision", statOrder = { 5399 }, level = 1, group = "PrecisionCannotBeBlinded", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PrideChanceForDoubleDamage"] = { affix = "", "(8-12)% chance to deal Double Damage while using Pride", statOrder = { 9710 }, level = 1, group = "PrideChanceForDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["PrideIntimidateOnHit"] = { affix = "", "Your Hits Intimidate Enemies for 4 seconds while you are using Pride", statOrder = { 9712 }, level = 1, group = "PrideIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["PrideIncreasedPhysicalDamage_"] = { affix = "", "(40-60)% increased Physical Damage while using Pride", statOrder = { 9716 }, level = 1, group = "PrideIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, - ["PrideChanceToImpale"] = { affix = "", "25% chance to Impale Enemies on Hit with Attacks while using Pride", statOrder = { 9711 }, level = 1, group = "PrideChanceToImpale", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["PrideImpaleAdditionalHits"] = { affix = "", "Impales you inflict last 2 additional Hits while using Pride", statOrder = { 9718 }, level = 1, group = "PrideImpaleAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SublimeVisionAnger"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Scorch while affected by Anger", "Aura Skills other than Anger are Disabled", statOrder = { 3574, 4662, 10667 }, level = 1, group = "SublimeVisionAnger", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, - ["SublimeVisionClarity"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "80% increased Effect of Arcane Surge on you while affected by Clarity", "Aura Skills other than Clarity are Disabled", statOrder = { 3574, 4710, 10668 }, level = 1, group = "SublimeVisionClarity", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, - ["SublimeVisionDetermination"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Endurance Charges while affected by Determination", "Aura Skills other than Determination are Disabled", statOrder = { 3574, 9134, 10669 }, level = 1, group = "SublimeVisionDetermination", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SublimeVisionDiscipline"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Power Charges while affected by Discipline", "Aura Skills other than Discipline are Disabled", statOrder = { 3574, 9182, 10670 }, level = 1, group = "SublimeVisionDiscipline", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SublimeVisionGrace"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Frenzy Charges while affected by Grace", "Aura Skills other than Grace are Disabled", statOrder = { 3574, 9144, 10671 }, level = 1, group = "SublimeVisionGrace", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SublimeVisionHaste"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "10% increased Action Speed while affected by Haste", "Aura Skills other than Haste are Disabled", statOrder = { 3574, 4528, 10672 }, level = 1, group = "SublimeVisionHaste", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, - ["SublimeVisionHatred"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always inflict Brittle while affected by Hatred", "Aura Skills other than Hatred are Disabled", statOrder = { 3574, 4657, 10673 }, level = 1, group = "SublimeVisionHatred", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, - ["SublimeVisionMalevolence"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "You can apply an additional Curse while affected by Malevolence", "Aura Skills other than Malevolence are Disabled", statOrder = { 3574, 9517, 10674 }, level = 1, group = "SublimeVisionMalevolence", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, - ["SublimeVisionPrecision"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "25% more Critical Strike chance while affected by Precision", "Aura Skills other than Precision are Disabled", statOrder = { 3574, 5920, 10675 }, level = 1, group = "SublimeVisionPrecision", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SublimeVisionPride"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies", "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", "Aura Skills other than Pride are Disabled", statOrder = { 3572, 6519, 10676 }, level = 1, group = "SublimeVisionPride", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, - ["SublimeVisionPurityOfElements"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+3% to all maximum Elemental Resistances while affected by Purity of Elements", "Aura Skills other than Purity of Elements are Disabled", statOrder = { 3574, 4566, 10677 }, level = 1, group = "SublimeVisionPurityOfElements", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, - ["SublimeVisionPurityOfIce"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", "Aura Skills other than Purity of Ice are Disabled", statOrder = { 3574, 6557, 10679 }, level = 1, group = "SublimeVisionPurityOfIce", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["SublimeVisionPurityOfLightning"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", "Aura Skills other than Purity of Lightning are Disabled", statOrder = { 3574, 6555, 6555.1, 10680 }, level = 1, group = "SublimeVisionPurityOfLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["SublimeVisionPurityOfFire"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", "Aura Skills other than Purity of Fire are Disabled", statOrder = { 3574, 5806, 10678 }, level = 1, group = "SublimeVisionPurityOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, - ["SublimeVisionVitality"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Regenerate 15% Life over one second when hit while affected by Vitality", "Aura Skills other than Vitality are Disabled", statOrder = { 3574, 9888, 10681 }, level = 1, group = "SublimeVisionVitality", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, - ["SublimeVisionWrath"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Sap while affected by Wrath", "Aura Skills other than Wrath are Disabled", statOrder = { 3574, 4661, 10682 }, level = 1, group = "SublimeVisionWrath", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, - ["SublimeVisionZealotry"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Unaffected by Curses while affected by Zealotry", "Aura Skills other than Zealotry are Disabled", statOrder = { 3574, 10464, 10683 }, level = 1, group = "SublimeVisionZealotry", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, - ["MalevolenceSkillEffectDuration"] = { affix = "", "(20-30)% increased Skill Effect Duration while affected by Malevolence", statOrder = { 10052 }, level = 1, group = "MalevolenceSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, - ["MalevolenceChaosNonAilmentDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6264 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["MalevolenceColdDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6264 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["MalevolenceLifeAndEnergyShieldRecoveryRate"] = { affix = "", "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence", statOrder = { 7349 }, level = 1, group = "MalevolenceLifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, - ["MalevolenceUnaffectedByPoison"] = { affix = "", "Unaffected by Poison while affected by Malevolence", statOrder = { 10475 }, level = 1, group = "MalevolenceUnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, - ["MalevolenceUnaffectedByBleeding_"] = { affix = "", "Unaffected by Bleeding while affected by Malevolence", statOrder = { 10452 }, level = 1, group = "MalevolenceUnaffectedByBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, - ["MalevolenceYourAilmentsDealDamageFaster__"] = { affix = "", "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence", statOrder = { 10665 }, level = 1, group = "MalevolenceYourAilmentsDealDamageFaster", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, - ["MalevolenceDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6264 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, - ["ZealotryCriticalStrikesPenetratesElementalResistances"] = { affix = "", "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry", statOrder = { 5988 }, level = 1, group = "ZealotryCriticalStrikesPenetratesElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, - ["ZealotryCastSpeed"] = { affix = "", "(10-15)% increased Cast Speed while affected by Zealotry", statOrder = { 5476 }, level = 1, group = "ZealotryCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, - ["ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea"] = { affix = "", "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds", statOrder = { 5857 }, level = 1, group = "ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea", weightKey = { }, weightVal = { }, modTags = { }, }, - ["ZealotryConsecratedGroundEnemyDamageTaken"] = { affix = "", "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage", statOrder = { 5854 }, level = 1, group = "ZealotryConsecratedGroundEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, - ["ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround"] = { affix = "", "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", statOrder = { 6728 }, level = 1, group = "ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, }, - ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1741 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateOld", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateNew"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1740 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, - ["ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround"] = { affix = "", "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry", statOrder = { 5926 }, level = 1, group = "ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, - ["SummonArbalistNumberOfArbalistsAllowed"] = { affix = "", "+1 to number of Summoned Arbalists", statOrder = { 9530 }, level = 1, group = "SummonArbalistNumberOfArbalistsAllowed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistNumberOfAdditionalProjectiles_"] = { affix = "", "Summoned Arbalists fire (2-4) additional Projectiles", statOrder = { 10279 }, level = 1, group = "SummonArbalistNumberOfAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistAttackSpeed_"] = { affix = "", "Summoned Arbalists have (30-40)% increased Attack Speed", statOrder = { 10269 }, level = 1, group = "SummonArbalistAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistTargetsToPierce"] = { affix = "", "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets", statOrder = { 10288 }, level = 1, group = "SummonArbalistTargetsToPierce", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistProjectilesFork"] = { affix = "", "Summoned Arbalists' Projectiles Fork", statOrder = { 10287 }, level = 1, group = "SummonArbalistProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChains_"] = { affix = "", "Summoned Arbalists' Projectiles Chain +2 times", statOrder = { 10270 }, level = 1, group = "SummonArbalistChains", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistNumberOfSplits__"] = { affix = "", "Summoned Arbalists' Projectiles Split into 3", statOrder = { 10280 }, level = 1, group = "SummonArbalistNumberOfSplits", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToDealDoubleDamage___"] = { affix = "", "Summoned Arbalists have (25-35)% chance to deal Double Damage", statOrder = { 10273 }, level = 1, group = "SummonArbalistChanceToDealDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToMaimfor4secondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit", statOrder = { 10276 }, level = 1, group = "SummonArbalistChanceToMaimfor4secondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToIntimidateFor4SecondsOnHit"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit", statOrder = { 10275 }, level = 1, group = "SummonArbalistChanceToIntimidateFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToUnnerveFor4SecondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit", statOrder = { 10278 }, level = 1, group = "SummonArbalistChanceToUnnerveFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToInflictFireExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit", statOrder = { 10293 }, level = 1, group = "SummonArbalistChanceToInflictFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToInflictColdExposureonHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit", statOrder = { 10292 }, level = 1, group = "SummonArbalistChanceToInflictColdExposureonHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToInflictLightningExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 10294 }, level = 1, group = "SummonArbalistChanceToInflictLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToCrushOnHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to Crush on Hit", statOrder = { 10272 }, level = 1, group = "SummonArbalistChanceToCrushOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToConvertToFire"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage", "Summoned Arbalists have (10-20)% chance to Ignite", statOrder = { 10285, 10290 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToConvertToCold_"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage", "Summoned Arbalists have (10-20)% chance to Freeze", statOrder = { 10284, 10289 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToConvertToLightning"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage", "Summoned Arbalists have (10-20)% chance to Shock", statOrder = { 10286, 10291 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToAddAsFire"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage", "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit", statOrder = { 10282, 10293 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToAddAsCold_"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage", "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit", statOrder = { 10281, 10292 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsCold", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistPhysicalDamagePercentToAddAsLightning"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage", "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit", statOrder = { 10283, 10294 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsLightning", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToBleedPercent_"] = { affix = "", "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding", statOrder = { 10271 }, level = 1, group = "SummonArbalistChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToPoisonPercent"] = { affix = "", "Summoned Arbalists have (40-60)% chance to Poison", statOrder = { 10277 }, level = 1, group = "SummonArbalistChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, }, - ["SummonArbalistChanceToIgniteFreezeShockPercent"] = { affix = "", "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite", statOrder = { 10274 }, level = 1, group = "SummonArbalistChanceToIgniteFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DeterminationPhysicalDamageReduction"] = { affix = "", "(5-8)% additional Physical Damage Reduction while affected by Determination", statOrder = { 4579 }, level = 1, group = "DeterminationPhysicalDamageReduction", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["DeterminationAdditionalBlock"] = { affix = "", "+(5-8)% Chance to Block Attack Damage while affected by Determination", statOrder = { 5231 }, level = 1, group = "DeterminationAdditionalBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["DeterminationUnaffectedByVulnerability"] = { affix = "", "Unaffected by Vulnerability while affected by Determination", statOrder = { 10485 }, level = 1, group = "DeterminationUnaffectedByVulnerability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["DeterminationReducedExtraDamageFromCrits"] = { affix = "", "You take (40-60)% reduced Extra Damage from Critical Strikes while affected by Determination", statOrder = { 6536 }, level = 1, group = "DeterminationReducedExtraDamageFromCrits", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["DeterminationReducedReflectedPhysicalDamage"] = { affix = "", "(50-75)% of Physical Damage from your Hits cannot be Reflected while affected by Determination", statOrder = { 9374 }, level = 1, group = "DeterminationReducedReflectedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["DeterminationAdditionalArmour"] = { affix = "", "+(600-1000) to Armour while affected by Determination", statOrder = { 4765 }, level = 1, group = "DeterminationAdditionalArmour", weightKey = { }, weightVal = { }, modTags = { "defences", "armour" }, }, + ["GraceAdditionalChanceToEvade"] = { affix = "", "+(5-8)% chance to Evade Attack Hits while affected by Grace", statOrder = { 5675 }, level = 1, group = "GraceAdditionalChanceToEvade", weightKey = { }, weightVal = { }, modTags = { "defences", "evasion" }, }, + ["GraceChanceToDodge"] = { affix = "", "+(12-15)% chance to Suppress Spell Damage while affected by Grace", statOrder = { 10174 }, level = 1, group = "GraceChanceToDodge", weightKey = { }, weightVal = { }, modTags = { }, }, + ["GraceUnaffectedByEnfeeble"] = { affix = "", "Unaffected by Enfeeble while affected by Grace", statOrder = { 10469 }, level = 1, group = "GraceUnaffectedByEnfeeble", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["GraceIncreasedMovementSpeed"] = { affix = "", "(10-15)% increased Movement Speed while affected by Grace", statOrder = { 9429 }, level = 1, group = "GraceIncreasedMovementSpeed", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["GraceBlindEnemiesWhenHit"] = { affix = "", "(30-50)% chance to Blind Enemies which Hit you while affected by Grace", statOrder = { 5221 }, level = 1, group = "GraceBlindEnemiesWhenHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["DisciplineEnergyShieldRegen"] = { affix = "", "Regenerate (1.5-2.5)% of Energy Shield per Second while affected by Discipline", statOrder = { 6459 }, level = 1, group = "DisciplineEnergyShieldRegen", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["DisciplineAdditionalSpellBlock"] = { affix = "", "+(5-8)% Chance to Block Spell Damage while affected by Discipline", statOrder = { 5652 }, level = 1, group = "DisciplineAdditionalSpellBlock", weightKey = { }, weightVal = { }, modTags = { "block" }, }, + ["DisciplineFasterStartOfRecharge"] = { affix = "", "(30-40)% faster start of Energy Shield Recharge while affected by Discipline", statOrder = { 6429 }, level = 1, group = "DisciplineFasterStartOfRecharge", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["DisciplineEnergyShieldPerHit"] = { affix = "", "Gain (20-30) Energy Shield per Enemy Hit while affected by Discipline", statOrder = { 6432 }, level = 1, group = "DisciplineEnergyShieldPerHit", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["DisciplineEnergyShieldRecoveryRate"] = { affix = "", "(10-15)% increased Energy Shield Recovery Rate while affected by Discipline", statOrder = { 6452 }, level = 1, group = "DisciplineEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["WrathLightningPenetration"] = { affix = "", "Damage Penetrates (10-15)% Lightning Resistance while affected by Wrath", statOrder = { 9879 }, level = 1, group = "WrathLightningPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["WrathLightningDamageManaLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Mana while affected by Wrath", statOrder = { 8183 }, level = 1, group = "WrathLightningDamageManaLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "mana", "elemental", "lightning" }, }, + ["WrathLightningDamageESLeech"] = { affix = "", "(1-1.5)% of Lightning Damage is Leeched as Energy Shield while affected by Wrath", statOrder = { 6437 }, level = 1, group = "WrathLightningDamageESLeech", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield", "elemental", "lightning" }, }, + ["WrathPhysicalAddedAsLightning_"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Lightning Damage while affected by Wrath", statOrder = { 9635 }, level = 1, group = "WrathPhysicalAddedAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["WrathPhysicalConvertedToLightning"] = { affix = "", "(25-40)% of Physical Damage Converted to Lightning Damage while affected by Wrath", statOrder = { 5045 }, level = 1, group = "WrathPhysicalConvertedToLightning", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "lightning" }, }, + ["WrathIncreasedLightningDamage"] = { affix = "", "(40-60)% increased Lightning Damage while affected by Wrath", statOrder = { 7449 }, level = 1, group = "WrathIncreasedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "lightning" }, }, + ["WrathIncreasedCriticalStrikeChance"] = { affix = "", "(70-100)% increased Critical Strike Chance while affected by Wrath", statOrder = { 5941 }, level = 1, group = "WrathIncreasedCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["AngerFirePenetration"] = { affix = "", "Damage Penetrates (10-15)% Fire Resistance while affected by Anger", statOrder = { 9878 }, level = 1, group = "AngerFirePenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AngerFireDamageLifeLeech_"] = { affix = "", "(1-1.5)% of Fire Damage Leeched as Life while affected by Anger", statOrder = { 7368 }, level = 1, group = "AngerFireDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "elemental", "fire" }, }, + ["AngerPhysicalAddedAsFire"] = { affix = "", "Gain (15-25)% of Physical Damage as Extra Fire Damage while affected by Anger", statOrder = { 9632 }, level = 1, group = "AngerPhysicalAddedAsFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["AngerPhysicalConvertedToFire"] = { affix = "", "(25-40)% of Physical Damage Converted to Fire Damage while affected by Anger", statOrder = { 5044 }, level = 1, group = "AngerPhysicalConvertedToFire", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "fire" }, }, + ["AngerIncreasedFireDamage"] = { affix = "", "(40-60)% increased Fire Damage while affected by Anger", statOrder = { 6568 }, level = 1, group = "AngerIncreasedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "fire" }, }, + ["AngerIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(30-50)% to Critical Strike Multiplier while affected by Anger", statOrder = { 5968 }, level = 1, group = "AngerIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["HatredColdPenetration"] = { affix = "", "Damage Penetrates (10-15)% Cold Resistance while affected by Hatred", statOrder = { 9876 }, level = 1, group = "HatredColdPenetration", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HatredAdditionalCriticalStrikeChance"] = { affix = "", "+(1.2-1.8)% to Critical Strike Chance while affected by Hatred", statOrder = { 4552 }, level = 1, group = "HatredAdditionalCriticalStrikeChance", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["HatredAddedColdDamage"] = { affix = "", "Adds (58-70) to (88-104) Cold Damage while affected by Hatred", statOrder = { 9233 }, level = 1, group = "HatredAddedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["HatredPhysicalConvertedToCold"] = { affix = "", "(25-40)% of Physical Damage Converted to Cold Damage while affected by Hatred", statOrder = { 5043 }, level = 1, group = "HatredPhysicalConvertedToCold", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "elemental_damage", "damage", "physical", "elemental", "cold" }, }, + ["HatredIncreasedColdDamage"] = { affix = "", "(40-60)% increased Cold Damage while affected by Hatred", statOrder = { 5814 }, level = 1, group = "HatredIncreasedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "cold" }, }, + ["VitalityDamageLifeLeech"] = { affix = "", "(0.8-1.2)% of Damage leeched as Life while affected by Vitality", statOrder = { 7361 }, level = 1, group = "VitalityDamageLifeLeech", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["VitalityFlatLifeRegen"] = { affix = "", "Regenerate (100-140) Life per Second while affected by Vitality", statOrder = { 7404 }, level = 1, group = "VitalityFlatLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["VitalityPercentLifeRegen"] = { affix = "", "Regenerate (1-1.5)% of Life per second while affected by Vitality", statOrder = { 7411 }, level = 1, group = "VitalityPercentLifeRegen", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["VitalityLifeRecoveryRate"] = { affix = "", "(10-15)% increased Life Recovery Rate while affected by Vitality", statOrder = { 7394 }, level = 1, group = "VitalityLifeRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["VitalityLifeGainPerHit"] = { affix = "", "Gain (20-30) Life per Enemy Hit while affected by Vitality", statOrder = { 7355 }, level = 1, group = "VitalityLifeGainPerHit", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["VitalityLifeRecoveryFromFlasks_"] = { affix = "", "(50-70)% increased Life Recovery from Flasks while affected by Vitality", statOrder = { 6640 }, level = 1, group = "VitalityLifeRecoveryFromFlasks", weightKey = { }, weightVal = { }, modTags = { "flask", "resource", "life" }, }, + ["ClarityReducedManaCost"] = { affix = "", "-(10-5) to Total Mana Cost of Skills while affected by Clarity", statOrder = { 10059 }, level = 1, group = "ClarityReducedManaCost", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ClarityReducedManaCostNonChannelled"] = { affix = "", "Non-Channelling Skills have -(10-5) to Total Mana Cost while affected by Clarity", statOrder = { 10064 }, level = 1, group = "ClarityReducedManaCostNonChannelled", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ClarityDamageTakenFromManaBeforeLife"] = { affix = "", "(6-10)% of Damage taken from Mana before Life while affected by Clarity", statOrder = { 6088 }, level = 1, group = "ClarityDamageTakenFromManaBeforeLife", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "mana" }, }, + ["ClarityRecoverManaOnSkillUse"] = { affix = "", "(10-15)% chance to Recover 10% of Mana when you use a Skill while affected by Clarity", statOrder = { 9846 }, level = 1, group = "ClarityRecoverManaOnSkillUse", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ClarityManaAddedAsEnergyShield"] = { affix = "", "Gain (6-10)% of Maximum Mana as Extra Maximum Energy Shield while affected by Clarity", statOrder = { 9170 }, level = 1, group = "ClarityManaAddedAsEnergyShield", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ClarityManaRecoveryRate"] = { affix = "", "(10-15)% increased Mana Recovery Rate while affected by Clarity", statOrder = { 8192 }, level = 1, group = "ClarityManaRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["ClarityDamageTakenGainedAsMana"] = { affix = "", "(15-20)% of Damage taken while affected by Clarity Recouped as Mana", statOrder = { 6106 }, level = 1, group = "ClarityDamageTakenGainedAsMana", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["HasteChanceToDodgeSpells"] = { affix = "", "+(5-8)% chance to Suppress Spell Damage while affected by Haste", statOrder = { 10175 }, level = 1, group = "HasteChanceToDodgeSpells", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasteGainOnslaughtOnKill"] = { affix = "", "You gain Onslaught for 4 seconds on Kill while affected by Haste", statOrder = { 6787 }, level = 1, group = "HasteGainOnslaughtOnKill", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasteGainPhasing"] = { affix = "", "You have Phasing while affected by Haste", statOrder = { 6798 }, level = 1, group = "HasteGainPhasing", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasteUnaffectedByTemporalChains"] = { affix = "", "Unaffected by Temporal Chains while affected by Haste", statOrder = { 10484 }, level = 1, group = "HasteUnaffectedByTemporalChains", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["HasteDebuffsExpireFaster"] = { affix = "", "Debuffs on you expire (15-20)% faster while affected by Haste", statOrder = { 6150 }, level = 1, group = "HasteDebuffsExpireFaster", weightKey = { }, weightVal = { }, modTags = { }, }, + ["HasteCooldownRecoveryForMovementSkills"] = { affix = "", "(30-50)% increased Cooldown Recovery Rate of Movement Skills used while affected by Haste", statOrder = { 9406 }, level = 1, group = "HasteCooldownRecoveryForMovementSkills", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PurityOfFireTakePhysicalAsFire"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Fire", statOrder = { 9660 }, level = 1, group = "PurityOfFireTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["PurityOfFireImmuneToIgnite"] = { affix = "", "Immune to Ignite while affected by Purity of Fire", statOrder = { 7233 }, level = 1, group = "PurityOfFireImmuneToIgnite", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["PurityOfFireUnaffectedByBurningGround"] = { affix = "", "Unaffected by Burning Ground while affected by Purity of Fire", statOrder = { 10457 }, level = 1, group = "PurityOfFireUnaffectedByBurningGround", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PurityOfFireUnaffectedByFlammability__"] = { affix = "", "Unaffected by Flammability while affected by Purity of Fire", statOrder = { 10470 }, level = 1, group = "PurityOfFireUnaffectedByFlammability", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["PurityOfFireReducedReflectedFireDamage"] = { affix = "", "(50-75)% of Fire Damage from your Hits cannot be Reflected while affected by Purity of Fire", statOrder = { 9372 }, level = 1, group = "PurityOfFireReducedReflectedFireDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire" }, }, + ["PurityOfFireColdAndLightningTakenAsFire"] = { affix = "", "(10-20)% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", statOrder = { 5801 }, level = 1, group = "PurityOfFireColdAndLightningTakenAsFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["PurityOfIceTakePhysicalAsIce"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Ice", statOrder = { 9658 }, level = 1, group = "PurityOfIceTakePhysicalAsIce", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, + ["PurityOfIceImmuneToFreeze"] = { affix = "", "Immune to Freeze while affected by Purity of Ice", statOrder = { 7230 }, level = 1, group = "PurityOfIceImmuneToFreeze", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["PurityOfIceUnaffectedByChilledGround"] = { affix = "", "Unaffected by Chilled Ground while affected by Purity of Ice", statOrder = { 10462 }, level = 1, group = "PurityOfIceUnaffectedByChilledGround", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PurityOfIceUnaffectedByFrostbite"] = { affix = "", "Unaffected by Frostbite while affected by Purity of Ice", statOrder = { 10472 }, level = 1, group = "PurityOfIceUnaffectedByFrostbite", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["PurityOfIceReducedReflectedColdDamage"] = { affix = "", "(50-75)% of Cold Damage from your Hits cannot be Reflected while affected by Purity of Ice", statOrder = { 9370 }, level = 1, group = "PurityOfIceReducedReflectedColdDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold" }, }, + ["PurityOfIceFireAndLightningTakenAsCold"] = { affix = "", "(10-20)% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", statOrder = { 6552 }, level = 1, group = "PurityOfIceFireAndLightningTakenAsCold", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["PurityOfLightningTakePhysicalAsLightning"] = { affix = "", "(6-10)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Lightning", statOrder = { 9662 }, level = 1, group = "PurityOfLightningTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["PurityOfLightningImmuneToShock_"] = { affix = "", "Immune to Shock while affected by Purity of Lightning", statOrder = { 7238 }, level = 1, group = "PurityOfLightningImmuneToShock", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["PurityOfLightningUnaffectedByShockedGround"] = { affix = "", "Unaffected by Shocked Ground while affected by Purity of Lightning", statOrder = { 10482 }, level = 1, group = "PurityOfLightningUnaffectedByShockedGround", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PurityOfLightningUnaffectedByConductivity_____"] = { affix = "", "Unaffected by Conductivity while affected by Purity of Lightning", statOrder = { 10463 }, level = 1, group = "PurityOfLightningUnaffectedByConductivity", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["PurityOfLightningReducedReflectedLightningDamage"] = { affix = "", "(50-75)% of Lightning Damage from your Hits cannot be Reflected while", "affected by Purity of Lightning", statOrder = { 9373, 9373.1 }, level = 1, group = "PurityOfLightningReducedReflectedLightningDamage", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning" }, }, + ["PurityOfLightningFireAndColdTakenAsLightning"] = { affix = "", "(10-20)% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", statOrder = { 6550, 6550.1 }, level = 1, group = "PurityOfLightningFireAndColdTakenAsLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["PurityOfElementsTakePhysicalAsFire_"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Fire Damage while affected by Purity of Elements", statOrder = { 9659 }, level = 1, group = "PurityOfElementsTakePhysicalAsFire", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "fire" }, }, + ["PurityOfElementsTakePhysicalAsCold"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Cold Damage while affected by Purity of Elements", statOrder = { 9657 }, level = 1, group = "PurityOfElementsTakePhysicalAsCold", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "cold" }, }, + ["PurityOfElementsTakePhysicalAsLightning"] = { affix = "", "(8-12)% of Physical Damage from Hits taken as Lightning Damage while affected by Purity of Elements", statOrder = { 9661 }, level = 1, group = "PurityOfElementsTakePhysicalAsLightning", weightKey = { }, weightVal = { }, modTags = { "physical", "elemental", "lightning" }, }, + ["PurityOfElementsUnaffectedByElementalWeakness"] = { affix = "", "Unaffected by Elemental Weakness while affected by Purity of Elements", statOrder = { 10468 }, level = 1, group = "PurityOfElementsUnaffectedByElementalWeakness", weightKey = { }, weightVal = { }, modTags = { "caster", "curse" }, }, + ["PurityOfElementsReducedReflectedElementalDamage"] = { affix = "", "(50-75)% of Elemental Damage from your Hits cannot be Reflected while", "affected by Purity of Elements", statOrder = { 9371, 9371.1 }, level = 1, group = "PurityOfElementsReducedReflectedElementalDamage", weightKey = { }, weightVal = { }, modTags = { "elemental" }, }, + ["PurityOfElementsChaosResistance"] = { affix = "", "+(30-50)% to Chaos Resistance while affected by Purity of Elements", statOrder = { 5744 }, level = 1, group = "PurityOfElementsChaosResistance", weightKey = { }, weightVal = { }, modTags = { "chaos", "resistance" }, }, + ["PurityOfElementsMaximumElementalResistances"] = { affix = "", "+1% to all maximum Elemental Resistances while affected by Purity of Elements", statOrder = { 4561 }, level = 1, group = "PurityOfElementsMaximumElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["PrecisionIncreasedCriticalStrikeMultiplier"] = { affix = "", "+(20-30)% to Critical Strike Multiplier while affected by Precision", statOrder = { 5969 }, level = 1, group = "PrecisionIncreasedCriticalStrikeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage", "critical" }, }, + ["PrecisionIncreasedAttackDamage"] = { affix = "", "(40-60)% increased Attack Damage while affected by Precision", statOrder = { 4862 }, level = 1, group = "PrecisionIncreasedAttackDamage", weightKey = { }, weightVal = { }, modTags = { "damage", "attack" }, }, + ["PrecisionFlaskChargeOnCrit_"] = { affix = "", "Gain a Flask Charge when you deal a Critical Strike while affected by Precision", statOrder = { 9835 }, level = 1, group = "PrecisionFlaskChargeOnCrit", weightKey = { }, weightVal = { }, modTags = { "flask", "critical" }, }, + ["PrecisionIncreasedAttackSpeed"] = { affix = "", "(10-15)% increased Attack Speed while affected by Precision", statOrder = { 4904 }, level = 1, group = "PrecisionIncreasedAttackSpeed", weightKey = { }, weightVal = { }, modTags = { "attack", "speed" }, }, + ["PrecisionCannotBeBlinded"] = { affix = "", "Cannot be Blinded while affected by Precision", statOrder = { 5394 }, level = 1, group = "PrecisionCannotBeBlinded", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PrideChanceForDoubleDamage"] = { affix = "", "(8-12)% chance to deal Double Damage while using Pride", statOrder = { 9711 }, level = 1, group = "PrideChanceForDoubleDamage", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["PrideIntimidateOnHit"] = { affix = "", "Your Hits Intimidate Enemies for 4 seconds while you are using Pride", statOrder = { 9713 }, level = 1, group = "PrideIntimidateOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["PrideIncreasedPhysicalDamage_"] = { affix = "", "(40-60)% increased Physical Damage while using Pride", statOrder = { 9717 }, level = 1, group = "PrideIncreasedPhysicalDamage", weightKey = { }, weightVal = { }, modTags = { "physical_damage", "damage", "physical" }, }, + ["PrideChanceToImpale"] = { affix = "", "25% chance to Impale Enemies on Hit with Attacks while using Pride", statOrder = { 9712 }, level = 1, group = "PrideChanceToImpale", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["PrideImpaleAdditionalHits"] = { affix = "", "Impales you inflict last 2 additional Hits while using Pride", statOrder = { 9719 }, level = 1, group = "PrideImpaleAdditionalHits", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SublimeVisionAnger"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Scorch while affected by Anger", "Aura Skills other than Anger are Disabled", statOrder = { 3569, 4657, 10668 }, level = 1, group = "SublimeVisionAnger", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "ailment" }, }, + ["SublimeVisionClarity"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "80% increased Effect of Arcane Surge on you while affected by Clarity", "Aura Skills other than Clarity are Disabled", statOrder = { 3569, 4705, 10669 }, level = 1, group = "SublimeVisionClarity", weightKey = { }, weightVal = { }, modTags = { "resource", "mana" }, }, + ["SublimeVisionDetermination"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Endurance Charges while affected by Determination", "Aura Skills other than Determination are Disabled", statOrder = { 3569, 9130, 10670 }, level = 1, group = "SublimeVisionDetermination", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SublimeVisionDiscipline"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Power Charges while affected by Discipline", "Aura Skills other than Discipline are Disabled", statOrder = { 3569, 9178, 10671 }, level = 1, group = "SublimeVisionDiscipline", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SublimeVisionGrace"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+1 to Maximum Frenzy Charges while affected by Grace", "Aura Skills other than Grace are Disabled", statOrder = { 3569, 9140, 10672 }, level = 1, group = "SublimeVisionGrace", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SublimeVisionHaste"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "10% increased Action Speed while affected by Haste", "Aura Skills other than Haste are Disabled", statOrder = { 3569, 4523, 10673 }, level = 1, group = "SublimeVisionHaste", weightKey = { }, weightVal = { }, modTags = { "speed" }, }, + ["SublimeVisionHatred"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always inflict Brittle while affected by Hatred", "Aura Skills other than Hatred are Disabled", statOrder = { 3569, 4652, 10674 }, level = 1, group = "SublimeVisionHatred", weightKey = { }, weightVal = { }, modTags = { "elemental", "cold", "ailment" }, }, + ["SublimeVisionMalevolence"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "You can apply an additional Curse while affected by Malevolence", "Aura Skills other than Malevolence are Disabled", statOrder = { 3569, 9518, 10675 }, level = 1, group = "SublimeVisionMalevolence", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, + ["SublimeVisionPrecision"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "25% more Critical Strike chance while affected by Precision", "Aura Skills other than Precision are Disabled", statOrder = { 3569, 5915, 10676 }, level = 1, group = "SublimeVisionPrecision", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SublimeVisionPride"] = { affix = "", "(20-40)% increased Effect of Non-Curse Auras from your Skills on Enemies", "Enemies you Kill while using Pride have 25% chance to Explode, dealing a tenth of their maximum Life as Physical Damage", "Aura Skills other than Pride are Disabled", statOrder = { 3567, 6514, 10677 }, level = 1, group = "SublimeVisionPride", weightKey = { }, weightVal = { }, modTags = { "physical" }, }, + ["SublimeVisionPurityOfElements"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "+3% to all maximum Elemental Resistances while affected by Purity of Elements", "Aura Skills other than Purity of Elements are Disabled", statOrder = { 3569, 4561, 10678 }, level = 1, group = "SublimeVisionPurityOfElements", weightKey = { }, weightVal = { }, modTags = { "elemental", "resistance" }, }, + ["SublimeVisionPurityOfIce"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Lightning Damage taken as Cold Damage while affected by Purity of Ice", "Aura Skills other than Purity of Ice are Disabled", statOrder = { 3569, 6552, 10680 }, level = 1, group = "SublimeVisionPurityOfIce", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["SublimeVisionPurityOfLightning"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Fire and Cold Damage taken as Lightning Damage while", "affected by Purity of Lightning", "Aura Skills other than Purity of Lightning are Disabled", statOrder = { 3569, 6550, 6550.1, 10681 }, level = 1, group = "SublimeVisionPurityOfLightning", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["SublimeVisionPurityOfFire"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "30% of Cold and Lightning Damage taken as Fire Damage while affected by Purity of Fire", "Aura Skills other than Purity of Fire are Disabled", statOrder = { 3569, 5801, 10679 }, level = 1, group = "SublimeVisionPurityOfFire", weightKey = { }, weightVal = { }, modTags = { "elemental", "fire", "cold", "lightning" }, }, + ["SublimeVisionVitality"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Regenerate 15% Life over one second when hit while affected by Vitality", "Aura Skills other than Vitality are Disabled", statOrder = { 3569, 9889, 10682 }, level = 1, group = "SublimeVisionVitality", weightKey = { }, weightVal = { }, modTags = { "resource", "life" }, }, + ["SublimeVisionWrath"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Always Sap while affected by Wrath", "Aura Skills other than Wrath are Disabled", statOrder = { 3569, 4656, 10683 }, level = 1, group = "SublimeVisionWrath", weightKey = { }, weightVal = { }, modTags = { "elemental", "lightning", "ailment" }, }, + ["SublimeVisionZealotry"] = { affix = "", "Auras from your Skills have (20-40)% increased Effect on you", "Unaffected by Curses while affected by Zealotry", "Aura Skills other than Zealotry are Disabled", statOrder = { 3569, 10465, 10684 }, level = 1, group = "SublimeVisionZealotry", weightKey = { }, weightVal = { }, modTags = { "curse" }, }, + ["MalevolenceSkillEffectDuration"] = { affix = "", "(20-30)% increased Skill Effect Duration while affected by Malevolence", statOrder = { 10053 }, level = 1, group = "MalevolenceSkillEffectDuration", weightKey = { }, weightVal = { }, modTags = { }, }, + ["MalevolenceChaosNonAilmentDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6259 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["MalevolenceColdDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6259 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["MalevolenceLifeAndEnergyShieldRecoveryRate"] = { affix = "", "(8-12)% increased Recovery rate of Life and Energy Shield while affected by Malevolence", statOrder = { 7344 }, level = 1, group = "MalevolenceLifeAndEnergyShieldRecoveryRate", weightKey = { }, weightVal = { }, modTags = { "resource", "life", "defences", "energy_shield" }, }, + ["MalevolenceUnaffectedByPoison"] = { affix = "", "Unaffected by Poison while affected by Malevolence", statOrder = { 10476 }, level = 1, group = "MalevolenceUnaffectedByPoison", weightKey = { }, weightVal = { }, modTags = { "poison", "chaos", "ailment" }, }, + ["MalevolenceUnaffectedByBleeding_"] = { affix = "", "Unaffected by Bleeding while affected by Malevolence", statOrder = { 10453 }, level = 1, group = "MalevolenceUnaffectedByBleeding", weightKey = { }, weightVal = { }, modTags = { "bleed", "physical", "attack", "ailment" }, }, + ["MalevolenceYourAilmentsDealDamageFaster__"] = { affix = "", "Damaging Ailments you inflict deal Damage (10-15)% faster while affected by Malevolence", statOrder = { 10666 }, level = 1, group = "MalevolenceYourAilmentsDealDamageFaster", weightKey = { }, weightVal = { }, modTags = { "damage", "ailment" }, }, + ["MalevolenceDamageOverTimeMultiplier"] = { affix = "", "+(18-22)% to Damage over Time Multiplier while affected by Malevolence", statOrder = { 6259 }, level = 1, group = "MalevolenceDamageOverTimeMultiplier", weightKey = { }, weightVal = { }, modTags = { "damage" }, }, + ["ZealotryCriticalStrikesPenetratesElementalResistances"] = { affix = "", "Critical Strikes Penetrate (8-10)% of Enemy Elemental Resistances while affected by Zealotry", statOrder = { 5983 }, level = 1, group = "ZealotryCriticalStrikesPenetratesElementalResistances", weightKey = { }, weightVal = { }, modTags = { "elemental_damage", "damage", "elemental", "critical" }, }, + ["ZealotryCastSpeed"] = { affix = "", "(10-15)% increased Cast Speed while affected by Zealotry", statOrder = { 5471 }, level = 1, group = "ZealotryCastSpeed", weightKey = { }, weightVal = { }, modTags = { "caster", "speed" }, }, + ["ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea"] = { affix = "", "Effects of Consecrated Ground you create while affected by Zealotry Linger for 2 seconds", statOrder = { 5852 }, level = 1, group = "ZealotryConsecratedGroundEffectLingersForMsAfterLeavingTheArea", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ZealotryConsecratedGroundEnemyDamageTaken"] = { affix = "", "Consecrated Ground you create while affected by Zealotry causes enemies to take (8-10)% increased Damage", statOrder = { 5849 }, level = 1, group = "ZealotryConsecratedGroundEnemyDamageTaken", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround"] = { affix = "", "Gain Arcane Surge for 4 seconds when you create Consecrated Ground while affected by Zealotry", statOrder = { 6723 }, level = 1, group = "ZealotryGainArcaneSurgeFor4SecondsWhenYouCreateConsecratedGround", weightKey = { }, weightVal = { }, modTags = { }, }, + ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1736 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateOld", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRateNew"] = { affix = "", "30% increased Maximum total Energy Shield Recovery per second from Leech while affected by Zealotry", statOrder = { 1735 }, level = 1, group = "ZealotryMaximumEnergyShieldPerSecondToMaximumEnergyShieldLeechRate", weightKey = { }, weightVal = { }, modTags = { "defences", "energy_shield" }, }, + ["ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround"] = { affix = "", "(100-120)% increased Critical Strike Chance against Enemies on Consecrated Ground while affected by Zealotry", statOrder = { 5921 }, level = 1, group = "ZealotryCriticalStrikeChanceAgainstEnemiesOnConsecratedGround", weightKey = { }, weightVal = { }, modTags = { "critical" }, }, + ["SummonArbalistNumberOfArbalistsAllowed"] = { affix = "", "+1 to number of Summoned Arbalists", statOrder = { 9531 }, level = 1, group = "SummonArbalistNumberOfArbalistsAllowed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistNumberOfAdditionalProjectiles_"] = { affix = "", "Summoned Arbalists fire (2-4) additional Projectiles", statOrder = { 10280 }, level = 1, group = "SummonArbalistNumberOfAdditionalProjectiles", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistAttackSpeed_"] = { affix = "", "Summoned Arbalists have (30-40)% increased Attack Speed", statOrder = { 10270 }, level = 1, group = "SummonArbalistAttackSpeed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistTargetsToPierce"] = { affix = "", "Summoned Arbalists' Projectiles Pierce (2-4) additional Targets", statOrder = { 10289 }, level = 1, group = "SummonArbalistTargetsToPierce", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistProjectilesFork"] = { affix = "", "Summoned Arbalists' Projectiles Fork", statOrder = { 10288 }, level = 1, group = "SummonArbalistProjectilesFork", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChains_"] = { affix = "", "Summoned Arbalists' Projectiles Chain +2 times", statOrder = { 10271 }, level = 1, group = "SummonArbalistChains", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistNumberOfSplits__"] = { affix = "", "Summoned Arbalists' Projectiles Split into 3", statOrder = { 10281 }, level = 1, group = "SummonArbalistNumberOfSplits", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToDealDoubleDamage___"] = { affix = "", "Summoned Arbalists have (25-35)% chance to deal Double Damage", statOrder = { 10274 }, level = 1, group = "SummonArbalistChanceToDealDoubleDamage", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToMaimfor4secondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Maim for 4 seconds on Hit", statOrder = { 10277 }, level = 1, group = "SummonArbalistChanceToMaimfor4secondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToIntimidateFor4SecondsOnHit"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Intimidate for 4 seconds on Hit", statOrder = { 10276 }, level = 1, group = "SummonArbalistChanceToIntimidateFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToUnnerveFor4SecondsOnHit_"] = { affix = "", "Summoned Arbalists have (20-30)% chance to Unnerve for 4 seconds on Hit", statOrder = { 10279 }, level = 1, group = "SummonArbalistChanceToUnnerveFor4SecondsOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToInflictFireExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Fire Exposure on Hit", statOrder = { 10294 }, level = 1, group = "SummonArbalistChanceToInflictFireExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToInflictColdExposureonHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Cold Exposure on Hit", statOrder = { 10293 }, level = 1, group = "SummonArbalistChanceToInflictColdExposureonHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToInflictLightningExposureOnHit_"] = { affix = "", "Summoned Arbalists have (10-20)% chance to inflict Lightning Exposure on Hit", statOrder = { 10295 }, level = 1, group = "SummonArbalistChanceToInflictLightningExposureOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToCrushOnHit"] = { affix = "", "Summoned Arbalists have (10-20)% chance to Crush on Hit", statOrder = { 10273 }, level = 1, group = "SummonArbalistChanceToCrushOnHit", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToConvertToFire"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Fire Damage", "Summoned Arbalists have (10-20)% chance to Ignite", statOrder = { 10286, 10291 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToConvertToCold_"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Cold Damage", "Summoned Arbalists have (10-20)% chance to Freeze", statOrder = { 10285, 10290 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToCold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToConvertToLightning"] = { affix = "", "Summoned Arbalists Convert 100% of Physical Damage to Lightning Damage", "Summoned Arbalists have (10-20)% chance to Shock", statOrder = { 10287, 10292 }, level = 1, group = "SummonArbalistPhysicalDamageToConvertToLightning", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToAddAsFire"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Fire Damage", "Summoned Arbalists have 20% chance to inflict Fire Exposure on Hit", statOrder = { 10283, 10294 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsFire", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToAddAsCold_"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Cold Damage", "Summoned Arbalists have 20% chance to inflict Cold Exposure on Hit", statOrder = { 10282, 10293 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsCold", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistPhysicalDamagePercentToAddAsLightning"] = { affix = "", "Summoned Arbalists gain (30-40)% of Physical Damage as Extra Lightning Damage", "Summoned Arbalists have 20% chance to inflict Lightning Exposure on Hit", statOrder = { 10284, 10295 }, level = 1, group = "SummonArbalistPhysicalDamageToAddAsLightning", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToBleedPercent_"] = { affix = "", "Summoned Arbalists' Attacks have (40-60)% chance to inflict Bleeding", statOrder = { 10272 }, level = 1, group = "SummonArbalistChanceToBleed", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToPoisonPercent"] = { affix = "", "Summoned Arbalists have (40-60)% chance to Poison", statOrder = { 10278 }, level = 1, group = "SummonArbalistChanceToPoison", weightKey = { }, weightVal = { }, modTags = { }, }, + ["SummonArbalistChanceToIgniteFreezeShockPercent"] = { affix = "", "Summoned Arbalists have (15-25)% chance to Freeze, Shock, and Ignite", statOrder = { 10275 }, level = 1, group = "SummonArbalistChanceToIgniteFreezeShock", weightKey = { }, weightVal = { }, modTags = { }, }, } \ No newline at end of file diff --git a/src/Data/Uniques/amulet.lua b/src/Data/Uniques/amulet.lua index 81b6e2a842..9fceb7f12d 100644 --- a/src/Data/Uniques/amulet.lua +++ b/src/Data/Uniques/amulet.lua @@ -11,17 +11,17 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 45 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Strength +{tags:attribute}+(20-30) to Strength {variant:1}10% Chance to Block Attack Damage {variant:2,3}8% Chance to Block Attack Damage {variant:4}(10-15)% Chance to Block Attack Damage {tags:attack,speed}10% reduced Attack Speed {tags:caster,speed}10% reduced Cast Speed -{tags:jewellery_defense}+(400-500) to Armour -{variant:1}{tags:life}(30-40) Life gained when you Block -{variant:2,3,4}{tags:life}(34-48) Life gained when you Block -{variant:1}{tags:mana}(10-20) Mana gained when you Block -{variant:2,3,4}{tags:mana}(10-24) Mana gained when you Block +{tags:defences}+(400-500) to Armour +{variant:1}{tags:resource}(30-40) Life gained when you Block +{variant:2,3,4}{tags:resource}(34-48) Life gained when you Block +{variant:1}{tags:resource}(10-20) Mana gained when you Block +{variant:2,3,4}{tags:resource}(18-24) Mana gained when you Block {variant:1}{tags:speed}20% reduced Movement Speed {variant:2}{tags:speed}10% reduced Movement Speed +3% to maximum Chance to Block Attack Damage @@ -32,10 +32,10 @@ Bloodsoaked Medallion Amber Amulet LevelReq: 49 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Strength +{tags:attribute}+(20-30) to Strength {tags:critical}(40-50)% increased Global Critical Strike Chance -{tags:life}+(50-70) to maximum Life -{tags:jewellery_resistance}+(17-29)% to Chaos Resistance +{tags:resource}+(50-70) to maximum Life +{tags:resistance}+(17-29)% to Chaos Resistance Every 10 seconds: Gain 2% of Life per Enemy Hit with Attacks for 5 seconds Gain 5% of Life per Enemy Killed for 5 seconds @@ -45,12 +45,12 @@ Coral Amulet Variant: Pre 3.19.0 Variant: Current Implicits: 1 -{tags:life}Regenerate (2-4) Life per second -{variant:1}{tags:jewellery_defense}+100 to Evasion Rating while on Low Life -{variant:2}{tags:jewellery_defense}+(150-250) to Evasion Rating while on Low Life -{tags:life}+(30-50) to maximum Life -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{variant:1}{tags:life}Regenerate 1% of Life per second while on Low Life +{tags:resource}Regenerate (2-4) Life per second +{variant:1}{tags:defences}+100 to Evasion Rating while on Low Life +{variant:2}{tags:defences}+(150-250) to Evasion Rating while on Low Life +{tags:resource}+(30-50) to maximum Life +{tags:resistance}+(20-30)% to Fire Resistance +{variant:1}{tags:resource}Regenerate 1% of Life per second while on Low Life {variant:2}Gain Elusive on reaching Low Life {variant:2}You have Phasing while on Low Life ]],[[ @@ -59,12 +59,12 @@ Coral Amulet Source: No longer obtainable Requires Level 36 Implicits: 1 -{tags:life}Regenerate (2-4) Life per second -{tags:jewellery_elemental}(50-70)% increased Fire Damage -{tags:jewellery_defense}+100 to Evasion Rating while on Low Life -{tags:life}+(30-50) to maximum Life -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{tags:life}Regenerate 1% of Life per second while on Low Life +{tags:resource}Regenerate (2-4) Life per second +{tags:elemental_damage}(50-70)% increased Fire Damage +{tags:defences}+100 to Evasion Rating while on Low Life +{tags:resource}+(30-50) to maximum Life +{tags:resistance}+(20-30)% to Fire Resistance +{tags:resource}Regenerate 1% of Life per second while on Low Life ]],[[ The Ascetic Gold Amulet @@ -72,8 +72,8 @@ Source: No longer obtainable Requires Level 8 Implicits: 1 (12-20)% increased Rarity of Items found -(80-100)% increased Rarity of Items found with a Normal Item equipped -(10-15)% increased Quantity of Items found with a Magic Item equipped +(80-100)% increased Rarity of Items found with a Normal Item Equipped +(10-15)% increased Quantity of Items found with a Magic Item Equipped ]],[[ Ashes of the Stars Onyx Amulet @@ -82,7 +82,7 @@ Variant: Current Source: Drops from unique{The Eater of Worlds} (Uber) Requires Level 60 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes +{tags:attribute}+(10-16) to all Attributes (5-10)% increased Experience Gain of Gems {variant:1}(10-20)% increased Reservation Efficiency of Skills +1 to Level of all Skill Gems @@ -92,9 +92,9 @@ Astramentis Onyx Amulet Requires Level 20 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes -{tags:jewellery_attribute}+(80-100) to all Attributes -{tags:attack,physical_damage}-4 Physical Damage taken from Attacks +{tags:attribute}+(10-16) to all Attributes +{tags:attribute}+(80-100) to all Attributes +{tags:attack}-4 Physical Damage taken from Attack Hits ]],[[ Atziri's Foible Paua Amulet @@ -102,27 +102,24 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 16 Implicits: 1 -{tags:mana}(20-30)% increased Mana Regeneration Rate -{variant:1}{tags:mana}+50 to maximum Mana -{variant:2}{tags:mana}+100 to maximum Mana -{variant:1}{tags:mana}(8-12)% increased maximum Mana -{variant:2}{tags:mana}(16-24)% increased maximum Mana -{variant:1}{tags:mana}(40-60)% increased Mana Regeneration Rate -{variant:2}{tags:mana}(80-100)% increased Mana Regeneration Rate +{tags:resource}(20-30)% increased Mana Regeneration Rate +{variant:1}{tags:resource}+50 to maximum Mana +{variant:2}{tags:resource}+100 to maximum Mana +{variant:1}{tags:resource}(8-12)% increased maximum Mana +{variant:2}{tags:resource}(16-24)% increased maximum Mana +{variant:1}{tags:resource}(40-60)% increased Mana Regeneration Rate +{variant:2}{tags:resource}(80-100)% increased Mana Regeneration Rate Items and Gems have 25% reduced Attribute Requirements ]],[[ Replica Atziri's Foible Paua Amulet -Variant: Pre 3.16.0 -Variant: Current League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level 16 Implicits: 1 -{tags:life}Regenerate (1-2)% of Life per second -{tags:life}+100 to maximum Life -{variant:1}{tags:life}(20-25)% increased Life Recovery rate -{variant:2}{tags:life}(20-25)% increased Life Regeneration rate +{tags:resource}Regenerate (1-2)% of Life per second +{tags:resource}+100 to maximum Life +{tags:resource}(20-25)% increased Life Regeneration rate Items and Gems have 25% reduced Attribute Requirements ]],[[ Aul's Uprising @@ -148,38 +145,40 @@ Variant: Intelligence: Zealotry Variant: Envy Requires Level 55 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes -{variant:1,2,3,4,5}{tags:jewellery_attribute}+(20-30) to Strength -{variant:6,7,8,9}{tags:jewellery_attribute}+(20-30) to Dexterity -{variant:10,11,12,13,14,15,16}{tags:jewellery_attribute}+(20-30) to Intelligence +{tags:attribute}+(10-16) to all Attributes {variant:17}Grants Level 15 Envy Skill -{variant:1,2,3,4,5}{tags:jewellery_defense}(15-20)% increased Armour -{variant:6,7,8,9}{tags:jewellery_defense}(15-20)% increased Evasion Rating -{variant:10,11,12,13,14,15,16}{tags:jewellery_defense}(15-20)% increased maximum Energy Shield -{variant:17}{tags:jewellery_attribute}+(15-20) to all Attributes -{tags:life}+(50-70) to maximum Life +{variant:17}{tags:attribute}+(15-20) to all Attributes +{variant:1,2,3,4,5}{tags:attribute}+(20-30) to Strength +{variant:6,7,8,9}{tags:attribute}+(20-30) to Dexterity +{variant:10,11,12,13,14,15,16}{tags:attribute}+(20-30) to Intelligence +{variant:1,2,3,4,5}{tags:defences}(15-20)% increased Armour +{variant:6,7,8,9}{tags:defences}(15-20)% increased Evasion Rating +{variant:10,11,12,13,14,15,16}{tags:defences}(15-20)% increased maximum Energy Shield +{tags:resource}+(50-70) to maximum Life +{variant:1,2,3,4,5}10% reduced Stun and Block Recovery +{variant:1,2,3,4,5}Nearby Enemies have 10% reduced Stun and Block Recovery {variant:1,2,3,4,5}10% reduced Stun and Block Recovery -{variant:6,7,8,9}Nearby Enemies grant 25% increased Flask Charges {variant:1,2,3,4,5}Nearby Enemies have 10% reduced Stun and Block Recovery +{variant:17}{tags:defences}(15-20)% increased Global Defences {variant:10,11,12,13,14,15,16}{tags:critical}Hits against Nearby Enemies have 50% increased Critical Strike Chance -{variant:17}{tags:jewellery_defense}(15-20)% increased Global Defences +{variant:6,7,8,9}Nearby Enemies grant 25% increased Flask Charges {variant:1}Anger has no Reservation +{variant:10}Clarity has no Reservation +{variant:12}Malevolence has no Reservation {variant:2}Determination has no Reservation -{variant:3}Pride has no Reservation -{variant:4}Purity of Fire has no Reservation -{variant:5}Vitality has no Reservation +{variant:11}Discipline has no Reservation +{variant:17}Envy has no Reservation {variant:6}Grace has no Reservation {variant:7}Haste has no Reservation {variant:8}Hatred has no Reservation -{variant:9}Purity of Ice has no Reservation -{variant:10}Clarity has no Reservation -{variant:11}Discipline has no Reservation -{variant:12}Malevolence has no Reservation +{variant:3}Pride has no Reservation {variant:13}Purity of Elements has no Reservation +{variant:4}Purity of Fire has no Reservation +{variant:9}Purity of Ice has no Reservation {variant:14}Purity of Lightning has no Reservation +{variant:5}Vitality has no Reservation {variant:15}Wrath has no Reservation {variant:16}Zealotry has no Reservation -{variant:17}Envy has no Reservation ]],[[ The Aylardex Agate Amulet @@ -187,13 +186,13 @@ Variant: Pre 2.5.0 Variant: Current Requires Level 32 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Strength and Intelligence -{tags:life}+(30-50) to maximum Life -{tags:mana}+(50-70) to maximum Mana +{tags:attribute}+(16-24) to Strength and Intelligence +{tags:resource}+(30-50) to maximum Life +{tags:resource}+(50-70) to maximum Mana +1 to Maximum Power Charges -{tags:mana}10% increased Mana Regeneration Rate Per Power Charge +{tags:resource}10% increased Mana Regeneration Rate per Power Charge {variant:2}(80-100)% increased Power Charge Duration -{tags:mana,life}1% of Damage is taken from Mana before Life per Power Charge +{tags:resource}1% of Damage is taken from Mana before Life per Power Charge {tags:critical}40% reduced Critical Strike Chance per Power Charge ]],[[ Eternal Damnation @@ -204,24 +203,24 @@ League: Sanctum Source: Drops from unique{Lycia, Herald of the Scourge} in normal{The Beyond} LevelReq: 52 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Strength and Intelligence -{tags:mana}+(40-70) to maximum Mana -{tags:jewellery_resistance}+(-13-13)% to Chaos Resistance -{tags:jewellery_resistance}-5% to all maximum Resistances +{tags:attribute}+(16-24) to Strength and Intelligence +{tags:resource}+(40-70) to maximum Mana +{tags:resistance}+(-13-13)% to Chaos Resistance +{tags:resistance}-5% to all maximum Resistances Gain additional Elemental Damage Reduction equal to half your Chaos Resistance {variant:2}Maximum Endurance, Frenzy and Power Charges is 0 ]],[[ Badge of the Brotherhood Turquoise Amulet Requires Level: 20 -Implicits: 1 League: Blight -{tags:jewellery_attribute}+(16-24) to Dexterity and Intelligence -(7-10)% increased Cooldown Recovery of Travel Skills per Frenzy Charge +Implicits: 0 +{tags:attribute}+(16-24) to Dexterity and Intelligence +Your Maximum Frenzy Charges is equal to your Maximum Power Charges +(7-10)% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge (7-10)% increased Effect of Elusive on you per Power Charge (20-25)% chance to lose a Frenzy Charge when you use a Travel Skill (20-25)% chance to lose a Power Charge when you gain Elusive -Your Maximum Frenzy Charges is equal to your Maximum Power Charges ]], [[ Replica Badge of the Brotherhood @@ -230,11 +229,11 @@ League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level: 60 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Dexterity and Intelligence +{tags:attribute}+(16-24) to Dexterity and Intelligence Your Maximum Endurance Charges is equal to your Maximum Frenzy Charges ++1 to maximum Fortification per Endurance Charge +(7-10)% increased Cooldown Recovery Rate of Travel Skills per Frenzy Charge (20-25)% chance to lose a Frenzy Charge when you use a Travel Skill -(7-10)% increased Cooldown Recovery of Travel Skills per Frenzy Charge -+1 to Maximum Fortification per Endurance Charge (20-25)% chance to lose an Endurance Charge when you gain Fortification ]],[[ Bisco's Collar @@ -262,8 +261,8 @@ Requires Level 28 Implicits: 1 {tags:defences}(15-25)% increased Global Defences {tags:defences}+(20-30) to maximum Energy Shield -{tags:jewellery_resistance}+(15-30)% to Fire Resistance -{tags:jewellery_resistance}+(15-30)% to Lightning Resistance +{tags:resistance}+(15-30)% to Fire Resistance +{tags:resistance}+(15-30)% to Lightning Resistance {variant:1}{tags:defences}30% slower start of Energy Shield Recharge during any Flask Effect {variant:2}{tags:defences}50% slower start of Energy Shield Recharge during any Flask Effect {variant:1}{tags:defences}400% increased Energy Shield Recharge Rate during any Flask Effect @@ -275,11 +274,11 @@ Amber Amulet Source: Use currency{Vaal Orb} on unique{Tear of Purity} Requires Level 5 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Strength +{tags:attribute}+(20-30) to Strength Grants Level 10 Gluttony of Elements Skill -{tags:attack,chaos_damage}Adds 19-43 Chaos Damage to Attacks -{tags:jewellery_resistance}-(10-5)% to all Elemental Resistances -{tags:jewellery_resistance}+(17-29)% to Chaos Resistance +{tags:chaos_damage,attack}Adds 19 to 43 Chaos Damage to Attacks +{tags:resistance}-(10-5)% to all Elemental Resistances +{tags:resistance}+(17-29)% to Chaos Resistance Corrupted ]],[[ Bloodgrip @@ -290,14 +289,14 @@ Variant: Pre 3.12.0 Variant: Current Requires Level 74 Implicits: 2 -{variant:1}{tags:life}Regenerate (2-4) Life per second -{variant:2,3}{tags:life}Regenerate (1.2-1.6)% of Life per second -{tags:attack,physical_damage}Adds 10 to 20 Physical Damage to Attacks -{tags:life}+(60-70) to maximum Life -{variant:1,2}{tags:life}Regenerate (8-12) Life per second -{variant:3}{tags:life}Regenerate (16-24) Life per second -{tags:life}100% increased Life Recovery from Flasks -Moving while Bleeding doesn't cause you to take extra Damage +{variant:1}{tags:resource}Regenerate (2-4) Life per second +{variant:2,3}{tags:resource}Regenerate (1.2-1.6)% of Life per second +{tags:physical_damage,attack}Adds 10 to 20 Physical Damage to Attacks +{tags:resource}+(60-70) to maximum Life +{variant:1,2}{tags:resource}Regenerate (8-12) Life per second +{variant:3}{tags:resource}Regenerate (16-24) Life per second +{tags:resource}100% increased Life Recovery from Flasks +{tags:attack}Moving while Bleeding doesn't cause you to take extra Damage ]],[[ Carnage Heart Onyx Amulet @@ -305,25 +304,25 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 20 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes -{tags:jewellery_attribute}+(20-40) to all Attributes -{variant:1}{tags:life}25% reduced maximum Life -{variant:1}{tags:jewellery_defense}25% reduced maximum Energy Shield -{tags:jewellery_resistance}+(10-20)% to all Elemental Resistances -{tags:attack,life}(1.2-2)% of Physical Attack Damage Leeched as Life -{variant:2}{tags:life}(30-40)% increased Damage while Leeching -{variant:2}{tags:life}50% increased Life Leeched per second -Extra Gore +{tags:attribute}+(10-16) to all Attributes +{tags:attribute}+(20-40) to all Attributes +{variant:1}{tags:defences}25% reduced maximum Energy Shield +{variant:1}{tags:resource}25% reduced maximum Life +{tags:resistance}+(10-20)% to all Elemental Resistances +{tags:resource,attack}(1.2-2)% of Physical Attack Damage Leeched as Life +{variant:2}{tags:resource}50% increased total Recovery per second from Life Leech +{variant:2}(30-40)% increased Damage while Leeching +Extra gore ]],[[ Crystallised Omniscience Onyx Amulet Source: Drops from unique{The Searing Exarch} (Uber) Requires Level 61 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes -Modifiers to Attributes instead Apply to Omniscience -{tags:jewellery_resistance}+1% to All Elemental Resistances per 15 Omniscience -Penetrate 1% Elemental Resistances per 15 Omniscience +{tags:attribute}+(10-16) to all Attributes +{tags:attribute}Modifiers to Attributes instead apply to Omniscience +{tags:resistance}+1% to all Elemental Resistances per 15 Omniscience +{tags:elemental_damage}Penetrate 1% Elemental Resistances per 15 Omniscience Attribute Requirements can be satisfied by (15-25)% of Omniscience ]],[[ Daresso's Salute @@ -331,10 +330,10 @@ Citrine Amulet League: Anarchy Requires Level 16 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Strength and Dexterity -{tags:jewellery_defense}50% reduced maximum Energy Shield -{tags:jewellery_resistance}+(30-40)% to Fire Resistance -{tags:jewellery_resistance}+(30-40)% to Cold Resistance +{tags:attribute}+(16-24) to Strength and Dexterity +{tags:defences}50% reduced maximum Energy Shield +{tags:resistance}+(30-40)% to Fire Resistance +{tags:resistance}+(30-40)% to Cold Resistance {tags:speed}10% increased Movement Speed when on Full Life {tags:attack}+0.2 metres to Melee Strike Range {tags:attack}60% increased Melee Damage when on Full Life @@ -345,24 +344,24 @@ Variant: Pre 3.25.0 Variant: Current LevelReq: 49 Implicits: 1 -{tags:mana}(20-30)% increased Mana Regeneration Rate -{tags:life}+(60-80) to maximum Life -{tags:jewellery_resistance}+(10-40)% to Fire Resistance -{tags:jewellery_resistance}+(10-40)% to Cold Resistance -{tags:jewellery_resistance}+(10-40)% to Lightning Resistance -{variant:1}{tags:life}Gain (25-35)% of Missing Unreserved Life before being Hit by an Enemy -{variant:2}{tags:life}Gain (10-20)% of Missing Unreserved Life before being Hit by an Enemy +{tags:resource}(20-30)% increased Mana Regeneration Rate +{tags:resource}+(60-80) to maximum Life +{tags:resistance}+(10-40)% to Fire Resistance +{tags:resistance}+(10-40)% to Cold Resistance +{tags:resistance}+(10-40)% to Lightning Resistance +{variant:1}{tags:resource}Gain (25-35)% of Missing Unreserved Life before being Hit by an Enemy +{variant:2}{tags:resource}Gain (10-20)% of Missing Unreserved Life before being Hit by an Enemy ]],[[ The Ephemeral Bond Lapis Amulet League: Heist Requires Level 68 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Intelligence -{tags:mana}(25-40)% increased Mana Regeneration Rate -{tags:jewellery_resistance}+(15-25)% to all Elemental Resistances +{tags:attribute}+(20-30) to Intelligence +{tags:resource}(25-40)% increased Mana Regeneration Rate +{tags:resistance}+(15-25)% to all Elemental Resistances {tags:critical}+(30-40)% to Critical Strike Multiplier if you've gained a Power Charge Recently -{tags:jewellery_elemental}(1-2) to (36-40) Lightning Damage per Power Charge +{tags:elemental_damage}(1-2) to (36-40) Lightning Damage per Power Charge 90% less Power Charge Duration ]],[[ The Untouched Soul @@ -371,17 +370,17 @@ League: Affliction Requires Level 48 Implicits: 1 (12-20)% increased Rarity of Items found -{tags:life}+40 to maximum Life for each Empty Red Socket on any Equipped Item +{tags:resource}+40 to maximum Life for each Empty Red Socket on any Equipped Item {tags:attack}+225 to Accuracy Rating for each Empty Green Socket on any Equipped Item -{tags:mana}+40 to maximum Mana for each Empty Blue Socket on any Equipped Item -{tags:jewellery_resistance}+18% to all Elemental Resistances for each Empty White Socket on any Equipped Item +{tags:resource}+40 to maximum Mana for each Empty Blue Socket on any Equipped Item +{tags:resistance}+18% to all Elemental Resistances for each Empty White Socket on any Equipped Item ]],[[ Doedre's Tongue Lapis Amulet LevelReq: 24 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Intelligence -{tags:jewellery_resistance}+(20-25)% to all Elemental Resistances +{tags:attribute}+(20-30) to Intelligence +{tags:resistance}+(20-25)% to all Elemental Resistances (20-25)% chance to Freeze, Shock and Ignite Cursed Enemies cannot inflict Elemental Ailments on You ]],[[ @@ -391,23 +390,23 @@ Variant: Pre 3.5.0 Variant: Current Requires Level 16 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Strength and Intelligence -{tags:jewellery_attribute}+(30-50) to Strength -5% chance to grant Unholy Might to nearby Enemies on Kill +{tags:attribute}+(16-24) to Strength and Intelligence +{tags:attribute}+(30-50) to Strength +{tags:resource}Recover 1% of Life on Kill 5% chance to grant Onslaught to nearby Enemies on Kill -{variant:1}5% chance to gain Chaotic Might for 10 seconds on Kill -{variant:2}10% chance to gain Chaotic Might for 10 seconds on Kill +5% chance to grant Chaotic Might to nearby Enemies on Kill {variant:1}5% chance to gain Onslaught for 10 seconds on Kill {variant:2}10% chance to gain Onslaught for 10 seconds on Kill -{tags:life}Recover 1% of Life on Kill +{variant:1}5% chance to gain Chaotic Might for 10 seconds on Kill +{variant:2}10% chance to gain Chaotic Might for 10 seconds on Kill ]],[[ Eye of Chayula Onyx Amulet Upgrade: Upgrades to unique{Presence of Chayula} using currency{Blessing of Chayula} Requires Level 20 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes -{tags:life}20% reduced maximum Life +{tags:attribute}+(10-16) to all Attributes +{tags:resource}20% reduced maximum Life 30% increased Rarity of Items found Cannot be Stunned ]],[[ @@ -417,21 +416,21 @@ League: Breach Source: Upgraded from unique{Eye of Chayula} using currency{Blessing of Chayula} Requires Level 60 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes +{tags:attribute}+(10-16) to all Attributes 30% increased Rarity of Items found -{tags:jewellery_resistance}+60% to Chaos Resistance +{tags:resistance}+60% to Chaos Resistance Cannot be Stunned -{tags:jewellery_defense,life}20% of Maximum Life Converted to Energy Shield +{tags:resource,defences}20% of Maximum Life Converted to Energy Shield ]],[[ Eye of Innocence Citrine Amulet Requires Level 68 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Strength and Dexterity +{tags:attribute}+(16-24) to Strength and Dexterity 10% chance to Ignite (50-70)% increased Damage while Ignited -{tags:jewellery_elemental}Take 100 Fire Damage when you Ignite an Enemy -{tags:life}2% of Fire Damage Leeched as Life while Ignited +{tags:elemental_damage}Take 100 Fire Damage when you Ignite an Enemy +{tags:resource}2% of Fire Damage Leeched as Life while Ignited ]],[[ Eyes of the Greatwolf Greatwolf Talisman @@ -471,38 +470,38 @@ Variant: Gain Physical as random Element Variant: Extra Pierces Variant: Damage over Time Multiplier Implicits: 32 -{variant:1}{tags:jewellery_attribute}(24-32)% increased Attributes -{variant:2}{tags:jewellery_defense}(30-50)% increased Global Defences -{variant:3}{tags:chaos_damage}(38-62)% increased Chaos Damage +{variant:1}{tags:attribute}(24-32)% increased Attributes +{variant:11}(50-70)% increased Damage {variant:4}{tags:attack}(40-60)% increased Attack Damage -{variant:5}{tags:elemental_damage}(40-60)% increased Cold Damage -{variant:6}{tags:elemental_damage}(40-60)% increased Fire Damage -{variant:7}{tags:elemental_damage}(40-60)% increased Lightning Damage {variant:8}{tags:caster}(40-60)% increased Spell Damage {variant:9}{tags:physical_damage}(40-60)% increased Global Physical Damage -{variant:10}{tags:mana}(40-60)% increased maximum Mana -{variant:11}(50-70)% increased Damage -{variant:12}{tags:physical_damage}(8-12)% additional Physical Damage Reduction -{variant:13}{tags:jewellery_elemental}(8-12)% chance to Freeze, Shock and Ignite +{variant:6}{tags:elemental_damage}(40-60)% increased Fire Damage +{variant:5}{tags:elemental_damage}(40-60)% increased Cold Damage +{variant:7}{tags:elemental_damage}(40-60)% increased Lightning Damage +{variant:3}{tags:chaos_damage}(38-62)% increased Chaos Damage {variant:14}{tags:critical}(80-100)% increased Global Critical Strike Chance -{variant:15}(10-16)% increased Area of Effect -{variant:16}{tags:caster,attack,speed}(12-20)% increased Attack and Cast Speed -{variant:17}(12-20)% increased Quantity of Items found -{variant:18}{tags:life}(16-24)% increased maximum Life {variant:19}{tags:critical}+(48-72)% to Global Critical Strike Multiplier +{variant:18}{tags:resource}(16-24)% increased maximum Life +{variant:10}{tags:resource}(40-60)% increased maximum Mana +{variant:17}(12-20)% increased Quantity of Items found +{variant:32}Projectiles Pierce 4 additional Targets +{variant:15}(10-16)% increased Area of Effect +{variant:24}{tags:resource}Regenerate 4% of Life per second +{variant:16}{tags:attack,caster,speed}(12-20)% increased Attack and Cast Speed {variant:20}+2 to maximum number of Raised Zombies +{variant:12}(8-12)% additional Physical Damage Reduction +{variant:23}20% chance to gain an Endurance Charge on Kill {variant:21}20% chance to gain a Frenzy Charge on Kill {variant:22}20% chance to gain a Power Charge on Kill -{variant:23}20% chance to gain a Endurance Charge on Kill -{variant:24}{tags:life}Regenerate 4% of Life per second -{variant:25}{tags:jewellery_elemental}100% of Cold Damage from Hits taken as Fire Damage -{variant:26}{tags:jewellery_elemental}100% of Cold Damage from Hits taken as Lightning Damage -{variant:27}{tags:jewellery_elemental}100% of Fire Damage from Hits taken as Cold Damage -{variant:28}{tags:jewellery_elemental}100% of Fire Damage from Hits taken as Lightning Damage -{variant:29}{tags:jewellery_elemental}100% of Lightning Damage from Hits taken as Cold Damage -{variant:30}{tags:jewellery_elemental}100% of Lightning Damage from Hits taken as Fire Damage +{variant:13}(8-12)% chance to Freeze, Shock and Ignite +{variant:2}{tags:defences}(30-50)% increased Global Defences {variant:31}{tags:physical_damage,elemental_damage}Gain (12-24)% of Physical Damage as Extra Damage of a random Element -{variant:32}Projectiles Pierce (4-6) additional Targets +{variant:27}100% of Fire Damage from Hits taken as Cold Damage +{variant:28}100% of Fire Damage from Hits taken as Lightning Damage +{variant:25}100% of Cold Damage from Hits taken as Fire Damage +{variant:26}100% of Cold Damage from Hits taken as Lightning Damage +{variant:30}100% of Lightning Damage from Hits taken as Fire Damage +{variant:29}100% of Lightning Damage from Hits taken as Cold Damage {variant:33}+(24-36)% to Damage over Time Multiplier Implicit Modifier magnitudes are doubled ]],[[ @@ -514,12 +513,11 @@ Variant: Pre 3.20.0 Variant: Current Requires Level 61 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Strength and Dexterity -{tags:jewellery_attribute}+(30-50) to Intelligence +{tags:attribute}+(16-24) to Strength and Dexterity +{tags:attribute}+(30-50) to Intelligence {tags:caster,speed}(10-15)% increased Cast Speed (10-15)% increased Area of Effect -{variant:1}{tags:caster}Enemies Cursed by you are Hindered with 25% reduced Movement Speed if 25% of Curse Duration expired -{variant:2}{tags:caster}Enemies Cursed by you are Hindered if 25% of Curse Duration expired +{variant:1,2}{tags:caster}Enemies Cursed by you are Hindered if 25% of Curse Duration expired {tags:caster}Your Curses have 25% increased Effect if 50% of Curse Duration expired {variant:1}{tags:caster}Enemies Cursed by you take 25% increased Damage if 75% of Curse Duration expired {variant:2}{tags:caster}Enemies Cursed by you take 35% increased Damage if 75% of Curse Duration expired @@ -528,12 +526,13 @@ Fury Valve Turquoise Amulet Requires Level 40 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Dexterity and Intelligence -{tags:jewellery_defense}(15-25)% increased Evasion Rating -{tags:jewellery_resistance}+(15-20)% to all Elemental Resistances +{tags:attribute}+(16-24) to Dexterity and Intelligence +{tags:defences}(15-25)% increased Evasion Rating +{tags:resistance}+(15-20)% to all Elemental Resistances Skills fire 2 additional Projectiles {tags:speed}(20-30)% increased Projectile Speed -Modifiers to number of Projectiles instead apply to the number of targets Projectiles Split towards +Modifiers to number of Projectiles instead apply +to the number of targets Projectiles Split towards ]],[[ Gloomfang Blue Pearl Amulet @@ -541,14 +540,14 @@ Variant: Pre 3.11.0 Variant: Current Requires Level 77 Implicits: 1 -{tags:mana}(48-56)% increased Mana Regeneration Rate -{tags:life}0.5% of Chaos Damage Leeched as Life -{tags:caster,life}Lose (10-15) Life per Enemy Hit with Spells -{tags:attack,life}Lose (20-25) Life per Enemy Hit with Attacks +{tags:resource}(48-56)% increased Mana Regeneration Rate +{tags:resource}0.5% of Chaos Damage Leeched as Life +{tags:resource,caster}Lose (10-15) Life per Enemy Hit with Spells +{tags:resource,attack}Lose (20-25) Life per Enemy Hit with Attacks Skills Chain +1 times {variant:2}{tags:speed}(30-40)% increased Projectile Speed -{variant:1}{tags:chaos_damage}Projectiles gain (15-20)% of Non-Chaos Damage as extra Chaos Damage per Chain {variant:2}{tags:chaos_damage}Projectiles that have Chained gain (20-35)% of Non-Chaos Damage as extra Chaos Damage +{variant:1}{tags:chaos_damage}Projectiles gain (15-20)% of Non-Chaos Damage as extra Chaos Damage per Chain ]],[[ The Halcyon Jade Amulet @@ -559,9 +558,9 @@ Source: Drops in Tul Breach or from unique{Tul, Creeping Avalanche} Upgrade: Upgrades to unique{The Pandemonius} using currency{Blessing of Tul} Requires Level 35 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Dexterity -{variant:1}{tags:jewellery_elemental}(10-20)% increased Cold Damage -{tags:jewellery_resistance}+(35-40)% to Cold Resistance +{tags:attribute}+(20-30) to Dexterity +{variant:1}{tags:elemental_damage}(10-20)% increased Cold Damage +{tags:resistance}+(35-40)% to Cold Resistance 30% increased Freeze Duration on Enemies 10% chance to Freeze {variant:2}Freezes you inflict spread to other Enemies within 1.5 metres @@ -573,12 +572,12 @@ League: Breach Source: Upgraded from unique{The Halcyon} using currency{Blessing of Tul} Requires Level 64 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Dexterity -{tags:jewellery_elemental}(20-30)% increased Cold Damage -{tags:jewellery_resistance}+(35-40)% to Cold Resistance -Chill Enemy for 1 second when Hit +{tags:attribute}+(20-30) to Dexterity +{tags:elemental_damage}(20-30)% increased Cold Damage +{tags:resistance}+(35-40)% to Cold Resistance +Chill Enemy for 1 second when Hit, reducing their Action Speed by 30% Blind Chilled Enemies on Hit -{tags:jewellery_elemental}Damage Penetrates 20% Cold Resistance against Chilled Enemies +{tags:elemental_damage}Damage Penetrates 20% Cold Resistance against Chilled Enemies ]],[[ Hinekora's Sight Onyx Amulet @@ -587,23 +586,24 @@ Variant: Pre 3.16.0 Variant: Pre 3.37.0 Variant: Current Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes +{tags:attribute}+(10-16) to all Attributes {variant:2}Prevent +3% of Suppressed Spell Damage {variant:3}Prevent +(4-6)% of Suppressed Spell Damage +{variant:1}+(6-10)% chance to Suppress Spell Damage +{variant:1}+(6-10)% chance to Suppress Spell Damage {variant:1}{tags:attack}+1000 to Accuracy Rating {variant:2,3}{tags:attack}+(600-1000) to Accuracy Rating -{variant:2,3}{tags:jewellery_defense}+(600-1000) to Evasion Rating -{variant:1}(12-20)% chance to Suppress Spell Damage +{variant:2,3}{tags:defences}+(600-1000) to Evasion Rating Cannot be Blinded ]],[[ Replica Hinekora's Sight Onyx Amulet League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist -{tags:jewellery_attribute}+(10–16) to all Attributes -{tags:attack}+(600–1000) to Accuracy Rating -{tags:jewellery_defense}+(600–1000) to Armour -{tags:jewellery_resistance}+1% to all maximum Elemental Resistances +{tags:attribute}+(10-16) to all Attributes +{tags:attack}+(600-1000) to Accuracy Rating +{tags:defences}+(600-1000) to Armour +{tags:resistance}+1% to all maximum Elemental Resistances You cannot be Maimed ]],[[ Hyrri's Truth @@ -615,19 +615,18 @@ Variant: Pre 3.19.0 Variant: Current LevelReq: 64 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Dexterity +{tags:attribute}+(20-30) to Dexterity {variant:1,2}Grants Level 22 Precision Skill {variant:3}Grants Level 30 Precision Skill -{variant:1,2}{tags:jewellery_attribute}+(25-35) to Dexterity -{variant:3}{tags:jewellery_attribute}+(40-80) to Dexterity -{variant:1,2}{tags:attack,physical_damage}Adds (12-15) to (24-28) Physical Damage to Attacks -{variant:1,2}{tags:jewellery_elemental,attack}Adds (11-15) to (23-28) Cold Damage to Attacks +{variant:1,2}{tags:attribute}+(25-35) to Dexterity +{variant:3}{tags:attribute}+(40-80) to Dexterity +{variant:1,2}{tags:physical_damage,attack}Adds (12-15) to (24-28) Physical Damage to Attacks +{variant:1,2}{tags:elemental_damage,attack}Adds (11-15) to (23-28) Cold Damage to Attacks {variant:1,2}{tags:critical}+(23-28)% to Global Critical Strike Multiplier {variant:3}{tags:critical}+(25-50)% to Global Critical Strike Multiplier +{variant:1,2}{tags:resource,attack}(0.8-1)% of Physical Attack Damage Leeched as Life {variant:3}Bow Attacks have Culling Strike -{variant:1,2}{tags:attack,life}(0.8-1)% of Physical Attack Damage Leeched as Life -{variant:1}Precision has 50% less Reservation -{variant:2,3}{tags:mana}Precision has 100% increased Mana Reservation Efficiency +{variant:1,2,3}{tags:resource}Precision has 100% increased Mana Reservation Efficiency ]],[[ Replica Hyrri's Truth Jade Amulet @@ -638,18 +637,17 @@ Variant: Pre 3.19.0 Variant: Current LevelReq: 64 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Dexterity +{tags:attribute}+(20-30) to Dexterity Grants Level 22 Hatred Skill -{variant:1,2}{tags:jewellery_attribute}+(25-35) to Dexterity -{variant:3}{tags:jewellery_attribute}+(30-55) to Dexterity -{variant:1,2}{tags:attack,physical_damage}Adds (12-15) to (24-28) Physical Damage to Attacks -{variant:1,2}{tags:jewellery_elemental,attack}Adds (11-15) to (23-28) Cold Damage to Attacks +{variant:1,2}{tags:attribute}+(25-35) to Dexterity +{variant:3}{tags:attribute}+(30-55) to Dexterity +{variant:1,2}{tags:physical_damage,attack}Adds (12-15) to (24-28) Physical Damage to Attacks +{variant:1,2}{tags:elemental_damage,attack}Adds (11-15) to (23-28) Cold Damage to Attacks {variant:1,2}{tags:critical}+(23-28)% to Global Critical Strike Multiplier {variant:3}{tags:critical}+(18-35)% to Global Critical Strike Multiplier +{variant:1,2}{tags:resource}(0.8-1)% of Cold Damage Leeched as Life {variant:3}Bow Attacks have Culling Strike -{variant:1,2}{tags:life}(0.8-1)% of Cold Damage Leeched as Life -{variant:1}Hatred has 50% less Reservation -{variant:2,3}{tags:mana}Hatred has 100% increased Mana Reservation Efficiency +{variant:1,2,3}{tags:resource}Hatred has 100% increased Mana Reservation Efficiency ]],[[ The Ignomon Gold Amulet @@ -658,12 +656,12 @@ Variant: Current Requires Level 8 Implicits: 1 (12-20)% increased Rarity of Items found -{variant:1}{tags:jewellery_attribute}+10 to Dexterity -{variant:1}{tags:jewellery_elemental,attack}Adds 12 to 24 Fire Damage to Attacks -{variant:2}{tags:jewellery_elemental,attack}Adds (18-24) to (32-40) Fire Damage to Attacks +{variant:1}{tags:attribute}+10 to Dexterity +{variant:1}{tags:elemental_damage,attack}Adds 12 to 24 Fire Damage to Attacks +{variant:2}{tags:elemental_damage,attack}Adds (18-24) to (32-40) Fire Damage to Attacks {tags:attack}+(100-150) to Accuracy Rating -{tags:jewellery_defense}+(100-150) to Evasion Rating -{tags:jewellery_resistance}+20% to Fire Resistance +{tags:defences}+(100-150) to Evasion Rating +{tags:resistance}+20% to Fire Resistance {variant:2}20% increased Light Radius {variant:2}Nearby Enemies are Blinded ]],[[ @@ -673,24 +671,24 @@ Source: No longer obtainable Requires Level 57 Implicits: 1 (12-20)% increased Rarity of Items found -{tags:jewellery_attribute}+10 to Dexterity -{tags:jewellery_elemental,attack}Adds 12 to 24 Fire Damage to Attacks +{tags:attribute}+10 to Dexterity +{tags:elemental_damage,attack}Adds 12 to 24 Fire Damage to Attacks {tags:attack}+(100-150) to Accuracy Rating -{tags:jewellery_defense}+(100-150) to Evasion Rating -{tags:jewellery_resistance}+20% to Fire Resistance -Your Hits can't be Evaded by Blinded Enemies -{tags:jewellery_elemental}Damage Penetrates 10% Fire Resistance against Blinded Enemies +{tags:defences}+(100-150) to Evasion Rating +{tags:resistance}+20% to Fire Resistance +{tags:attack}Your Hits can't be Evaded by Blinded Enemies +{tags:elemental_damage}Damage Penetrates 10% Fire Resistance against Blinded Enemies ]],[[ Ikiaho's Promise Coral Amulet LevelReq: 30 Implicits: 1 -{tags:life}Regenerate (2-4) Life per second -{tags:mana}Regenerate (3-5) Mana per second -{tags:life}(30-40)% increased Life Recovery from Flasks -{tags:mana}(15-30)% increased Mana Recovery from Flasks -Life Flasks used while on Low Life apply Recovery Instantly -Mana Flasks used while on Low Mana apply Recovery Instantly +{tags:resource}Regenerate (2-4) Life per second +{tags:resource}Regenerate (3-5) Mana per second +{tags:resource}(30-40)% increased Life Recovery from Flasks +{tags:resource}(15-30)% increased Mana Recovery from Flasks +{tags:resource}Life Flasks used while on Low Life apply Recovery Instantly +{tags:resource}Mana Flasks used while on Low Mana apply Recovery Instantly ]],[[ Impresence Onyx Amulet @@ -703,28 +701,28 @@ Variant: Lightning Variant: Chaos Requires Level 64 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes -{variant:1}{tags:attack,physical_damage}Adds (12-16) to (20-25) Physical Damage -{variant:2}{tags:jewellery_elemental}Adds (20-24) to (33-36) Fire Damage -{variant:3}{tags:jewellery_elemental}Adds (20-24) to (33-36) Cold Damage -{variant:4}{tags:jewellery_elemental}Adds (10-13) to (43-47) Lightning Damage -{variant:5}{tags:chaos_damage}Adds (17-19) to (23-29) Chaos Damage -{tags:life}+(50-70) to maximum Life -{variant:1}{tags:jewellery_defense}+(400-500) to Armour -{variant:2}{tags:life}Regenerate 1% of Life per second -{variant:3}{tags:mana}(45-50)% increased Mana Regeneration Rate -{variant:4}{tags:jewellery_defense}Regenerate 1% of Energy Shield per second +{tags:attribute}+(10-16) to all Attributes {variant:5}(30-40)% increased Damage over Time +{variant:1}{tags:physical_damage}Adds (12-16) to (20-25) Physical Damage +{variant:2}{tags:elemental_damage}Adds (20-24) to (33-36) Fire Damage +{variant:3}{tags:elemental_damage}Adds (20-24) to (33-36) Cold Damage +{variant:4}{tags:elemental_damage}Adds (10-13) to (43-47) Lightning Damage +{variant:5}{tags:chaos_damage}Adds (17-19) to (23-29) Chaos Damage +{variant:1}{tags:defences}+(400-500) to Armour +{tags:resource}+(50-70) to maximum Life +{variant:3}{tags:resource}(45-50)% increased Mana Regeneration Rate +{variant:2}{tags:resistance}+(20-25)% to Fire Resistance +{variant:3}{tags:resistance}+(20-25)% to Cold Resistance +{variant:4}{tags:resistance}+(20-25)% to Lightning Resistance +{variant:5}{tags:resistance}+(17-23)% to Chaos Resistance {variant:1}(30-40)% increased Stun and Block Recovery -{variant:2}{tags:jewellery_resistance}+(20-25)% to Fire Resistance -{variant:3}{tags:jewellery_resistance}+(20-25)% to Cold Resistance -{variant:4}{tags:jewellery_resistance}+(20-25)% to Lightning Resistance -{variant:5}{tags:jewellery_resistance}+(17-23)% to Chaos Resistance -{variant:1}Vulnerability has no Reservation if Cast as an Aura -{variant:2}Flammability has no Reservation if Cast as an Aura -{variant:3}Frostbite has no Reservation if Cast as an Aura -{variant:4}Conductivity has no Reservation if Cast as an Aura -{variant:5}Despair has no Reservation if Cast as an Aura +{variant:2}{tags:resource}Regenerate 1% of Life per second +{variant:4}{tags:defences}Regenerate 1% of Energy Shield per second +{variant:4}{tags:caster}Conductivity has no Reservation if Cast as an Aura +{variant:5}{tags:caster}Despair has no Reservation if Cast as an Aura +{variant:2}{tags:caster}Flammability has no Reservation if Cast as an Aura +{variant:3}{tags:caster}Frostbite has no Reservation if Cast as an Aura +{variant:1}{tags:caster}Vulnerability has no Reservation if Cast as an Aura Gain Maddening Presence for 10 seconds when you Kill a Rare or Unique Enemy ]],[[ Karui Ward @@ -733,12 +731,12 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 5 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Dexterity -{tags:jewellery_attribute}+(20-30) to Strength +{tags:attribute}+(20-30) to Dexterity +{tags:attribute}+(20-30) to Strength {tags:attack}+100 to Accuracy Rating -{variant:2}30% increased Projectile Damage {tags:speed}30% increased Projectile Speed {tags:speed}10% increased Movement Speed +{variant:2}30% increased Projectile Damage ]],[[ Replica Karui Ward Jade Amulet @@ -746,8 +744,8 @@ League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level 5 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Dexterity -{tags:jewellery_attribute}+(20-30) to Intelligence +{tags:attribute}+(20-30) to Dexterity +{tags:attribute}+(20-30) to Intelligence {tags:attack}+100 to Accuracy Rating {tags:speed}10% increased Movement Speed 30% increased Area of Effect @@ -760,14 +758,14 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 24 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Dexterity -{tags:jewellery_attribute}+(20-30) to Strength +{tags:attribute}+(20-30) to Dexterity +{tags:attribute}+(20-30) to Strength {variant:1}{tags:attack,speed}(15-20)% increased Attack Speed {variant:2}{tags:attack,speed}(5-10)% increased Attack Speed {tags:attack}+100 to Accuracy Rating -{variant:2}30% increased Projectile Damage {tags:speed}30% increased Projectile Speed {tags:speed}10% increased Movement Speed +{variant:2}30% increased Projectile Damage ]],[[ Leadership's Price Onyx Amulet @@ -775,10 +773,10 @@ League: Heist Source: Drops from unique{Vic Vox} and unique{Vinny Vox} in normal{Contract: The Twins} Requires Level 68 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes -{tags:jewellery_resistance}+(-3-3)% to maximum Fire Resistance -{tags:jewellery_resistance}+(-3-3)% to maximum Cold Resistance -{tags:jewellery_resistance}+(-3-3)% to maximum Lightning Resistance +{tags:attribute}+(10-16) to all Attributes +{tags:resistance}+(-3-3)% to maximum Fire Resistance +{tags:resistance}+(-3-3)% to maximum Cold Resistance +{tags:resistance}+(-3-3)% to maximum Lightning Resistance You have Scorching Conflux, Brittle Conflux and Sapping Conflux while your two highest Attributes are equal Cannot Ignite, Chill, Freeze or Shock Corrupted @@ -787,12 +785,12 @@ Maligaro's Cruelty Turquoise Amulet Requires Level 20 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Dexterity and Intelligence -{tags:life}(4-8)% increased maximum Life -(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by 5 or more Poisons +{tags:attribute}+(16-24) to Dexterity and Intelligence +{tags:resource}(4-8)% increased maximum Life +(25-30)% chance to gain a Frenzy Charge on Killing an Enemy affected by at least 5 Poisons (12-15)% chance to gain a Power Charge on Killing an Enemy affected by fewer than 5 Poisons {tags:chaos_damage}10% increased Damage with Poison per Frenzy Charge -{tags:chaos_damage}3% increased Poison Duration per Power Charge +3% increased Poison Duration per Power Charge ]],[[ The Jinxed Juju Citrine Amulet @@ -801,15 +799,14 @@ Variant: Pre 3.20.0 Variant: Current Requires Level 48 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Strength and Dexterity -{tags:jewellery_attribute}+(30-40) to Intelligence -{tags:jewellery_resistance}+(23-31)% to Chaos Resistance +{tags:attribute}+(16-24) to Strength and Dexterity +{tags:attribute}+(30-40) to Intelligence +{tags:resistance}+(23-31)% to Chaos Resistance {variant:1}{tags:caster}(10-15)% increased Effect of your Curses {variant:2}{tags:caster}(5-10)% increased Effect of your Curses {variant:1,3}(10-15)% increased effect of Non-Curse Auras from your Skills {variant:2}(5-10)% increased effect of Non-Curse Auras from your Skills -10% of Damage from Hits is taken from your Spectres' Life before you -(The damage they take will be divided evenly between them) +10% of Damage from Hits is taken from your Raised Spectres' Life before you ]],[[ Marylene's Fallacy Lapis Amulet @@ -820,19 +817,16 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 40 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Intelligence +{tags:attribute}+(20-30) to Intelligence {tags:attack}+(80-120) to Accuracy Rating {variant:1,2,3}{tags:critical}+(140-160)% to Global Critical Strike Multiplier {variant:4,5}{tags:critical}+(210-240)% to Global Critical Strike Multiplier -{tags:jewellery_defense}+(80-100) to Evasion Rating +{tags:defences}+(80-100) to Evasion Rating (10-15)% increased Light Radius -{variant:1,2}Non-critical strikes deal 25% Damage -{variant:3,4}Non-critical strikes deal 40% Damage {variant:1}{tags:critical}60% less Critical Strike Chance {variant:2}{tags:critical}50% less Critical Strike Chance {variant:3,4,5}{tags:critical}40% less Critical Strike Chance -{variant:1,2,3,4}Your Critical Strikes have Culling Strike -{variant:5}Critical Strikes have Culling Strike +{tags:critical}Critical Strikes have Culling Strike ]],[[ Natural Hierarchy Rotfeather Talisman @@ -857,8 +851,8 @@ Implicits: 1 Has 1 Socket +2 to Level of Socketed Gems Socketed Gems are Supported by Level 10 Added Chaos Damage -Socketed Gems are Supported by Level 10 Blind -Socketed Gems are Supported by Level 10 Cast when Stunned +Socketed Gems are supported by Level 10 Blind +Socketed Gems are supported by Level 10 Cast when Stunned Corrupted ]],[[ Perquil's Toe @@ -866,9 +860,9 @@ Gold Amulet Requires Level 29 Implicits: 1 (12-20)% increased Rarity of Items found -{tags:jewellery_attribute}+(40-50) to Dexterity +{tags:attribute}+(40-50) to Dexterity {tags:speed}(5-8)% increased Movement Speed -Lightning Damage from Enemies Hitting you is Lucky +{tags:elemental_damage}Lightning Damage of Enemies Hitting you is Lucky Nearby Allies' Damage with Hits is Lucky ]],[[ The Primordial Chain @@ -878,14 +872,14 @@ Requires Level 34 Variant: Pre 3.26.0 Variant: Current Implicits: 1 -{tags:life}Regenerate (2-4) Life per second -+3 to maximum number of Golems +{tags:resource}Regenerate (2-4) Life per second ++3 to maximum number of Summoned Golems You cannot have non-Golem Minions 25% reduced Golem Size -{variant:1}Golems Deal (35-45)% less Damage +{variant:1}Golems Deal (45-35)% less Damage {variant:2}Golems Deal (25-35)% less Damage -{variant:1}{tags:life}Golems have (35-45)% less Life -{variant:2}{tags:life}Golems have (25-35)% less Life +{variant:1}{tags:resource}Golems have (45-35)% less Life +{variant:2}{tags:resource}Golems have (25-35)% less Life {tags:speed}Golems have (80-100)% increased Movement Speed Primordial ]],[[ @@ -895,9 +889,9 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 48 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Dexterity -{tags:life}+(40-80) to maximum Life -{tags:mana}+(20-40) to maximum Mana +{tags:attribute}+(20-30) to Dexterity +{tags:resource}+(40-80) to maximum Life +{tags:resource}+(20-40) to maximum Mana {variant:1}20% increased Duration of Elemental Ailments on Enemies {variant:2}20% reduced Duration of Elemental Ailments on Enemies {variant:1}Items and Gems have 10% reduced Attribute Requirements @@ -912,11 +906,11 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 30 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Strength and Dexterity -{variant:2}(10-20)% chance to Blind Enemies on Hit with Attacks +{tags:attribute}+(16-24) to Strength and Dexterity {variant:1}(25-40)% increased Damage with Hits and Ailments against Blinded Enemies {variant:1}{tags:critical}(30-50)% increased Critical Strike Chance against Blinded Enemies {variant:1}{tags:critical}(40-50)% chance to Blind Enemies on Critical Strike +{variant:2}{tags:attack}(10-20)% chance to Blind Enemies on Hit with Attacks Blind does not affect your Light Radius Blind you inflict is Reflected to you {variant:2}(10-20)% chance to gain a Frenzy Charge on Hit while Blinded @@ -932,9 +926,9 @@ Implicits: 2 {variant:1}{tags:critical}+(16-24)% to Global Critical Strike Multiplier {variant:2}{tags:critical}+(24-36)% to Global Critical Strike Multiplier {tags:critical}+7% to Unarmed Melee Attack Critical Strike Chance -Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills -Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills -Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills +{tags:attack}Modifiers to Claw Damage also apply to Unarmed Attack Damage with Melee Skills +{tags:attack,speed}Modifiers to Claw Attack Speed also apply to Unarmed Attack Speed with Melee Skills +{tags:attack,critical}Modifiers to Claw Critical Strike Chance also apply to Unarmed Critical Strike Chance with Melee Skills Corrupted ]],[[ Sacrificial Heart @@ -946,14 +940,14 @@ Source: Drops from unique{The Vaal Omnitect} Upgrade: Upgrades to unique{Zerphi's Heart} via currency{Vial of Sacrifice} Requires Level 32 Implicits: 1 -{tags:mana}(20-30)% increased Mana Regeneration Rate -{tags:jewellery_elemental}Adds (22-27) to (34-38) Fire Damage -{tags:jewellery_elemental}Adds (20-23) to (31-35) Cold Damage -{tags:jewellery_elemental}Adds (1-3) to (47-52) Lightning Damage +{tags:resource}(20-30)% increased Mana Regeneration Rate +{tags:elemental_damage}Adds (22-27) to (34-38) Fire Damage +{tags:elemental_damage}Adds (20-23) to (31-35) Cold Damage +{tags:elemental_damage}Adds (1-3) to (47-52) Lightning Damage +{variant:2}Gain up to maximum Power Charges when you use a Vaal Skill {variant:1}Gain a Power Charge when you use a Vaal Skill -{tags:life}Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently +{tags:resource}Gain 10 Life per Enemy Hit if you have used a Vaal Skill Recently {tags:speed}10% increased Movement Speed if you have used a Vaal Skill Recently -{variant:2}Gain up to maximum Power Charges when you use a Vaal Skill ]],[[ Zerphi's Heart Paua Amulet @@ -963,9 +957,9 @@ Variant: Pre 3.10.0 Variant: Current Requires Level 70 Implicits: 1 -{tags:mana}(20-30)% increased Mana Regeneration Rate +{tags:resource}(20-30)% increased Mana Regeneration Rate {tags:chaos_damage}Adds (48-53) to (58-60) Chaos Damage -{tags:jewellery_attribute}Items and Gems have 50% increased Attribute Requirements +Items and Gems have 50% increased Attribute Requirements Chaos Damage can Ignite, Chill and Shock {variant:1}Gain Soul Eater for 10 seconds when you use a Vaal Skill {variant:2}Gain Soul Eater for 20 seconds when you use a Vaal Skill @@ -977,16 +971,16 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 16 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Strength and Intelligence -{variant:1,2}{tags:mana}(30-50)% increased Mana Regeneration Rate -{variant:3}{tags:mana}(60-100)% increased Mana Regeneration Rate -{variant:1,2}{tags:life}Regenerate 2% of Life per second -{variant:3}{tags:life}Regenerate 4% of Life per second -{variant:1}{tags:life}Nearby Allies gain 1% of Life Regenerated per Second -{variant:2}{tags:life}Nearby Allies gain 2% of Life Regenerated per Second -{variant:3}{tags:life}Nearby Allies gain 4% of Life Regenerated per Second -{variant:1,2}{tags:mana}Nearby Allies gain 40% increased Mana Regeneration Rate -{variant:3}{tags:mana}Nearby Allies gain 80% increased Mana Regeneration Rate +{tags:attribute}+(16-24) to Strength and Intelligence +{variant:1,2}{tags:resource}(30-50)% increased Mana Regeneration Rate +{variant:3}{tags:resource}(60-100)% increased Mana Regeneration Rate +{variant:1,2}{tags:resource}Regenerate 2% of Life per second +{variant:3}{tags:resource}Regenerate 4% of Life per second +{variant:1}{tags:resource}Nearby Allies gain 1% of Life Regenerated per second +{variant:2}{tags:resource}Nearby Allies gain 2% of Life Regenerated per second +{variant:3}{tags:resource}Nearby Allies gain 4% of Life Regenerated per second +{variant:1,2}{tags:resource}Nearby Allies gain 40% increased Mana Regeneration Rate +{variant:3}{tags:resource}Nearby Allies gain 80% increased Mana Regeneration Rate ]],[[ Sidhebreath Paua Amulet @@ -995,17 +989,17 @@ Variant: Pre 3.8.0 Variant: Pre 3.19.0 Variant: Current Implicits: 1 -{tags:mana}(20-30)% increased Mana Regeneration Rate -{tags:jewellery_resistance}+25% to Cold Resistance -{variant:1,2}{tags:mana,attack}0.2% of Physical Attack Damage Leeched as Mana -{tags:life}Minions have (10-15)% increased maximum Life +{tags:resource}(20-30)% increased Mana Regeneration Rate +{tags:resistance}+25% to Cold Resistance +{variant:1,2}{tags:resource,attack}0.2% of Physical Attack Damage Leeched as Mana +{tags:resource}Minions have (10-15)% increased maximum Life {variant:1,2,3}{tags:speed}Minions have (10-15)% increased Movement Speed {variant:4}Minions convert 50% of Physical Damage to Cold Damage -{variant:3}{tags:jewellery_elemental}Minions deal (5-9) to (11-15) additional Cold Damage -{variant:4}{tags:jewellery_elemental}Minions deal (25-35) to (60-65) additional Cold Damage {variant:1,2}Minions deal (10-15)% increased Damage -{variant:2,3}{tags:mana}(10-15)% reduced Mana Cost of Minion Skills +{variant:3}{tags:elemental_damage}Minions deal (5-9) to (11-15) additional Cold Damage +{variant:4}{tags:elemental_damage}Minions deal (25-35) to (60-65) additional Cold Damage {variant:4}Minions deal no Non-Cold Damage +{variant:2,3}{tags:resource}(10-15)% reduced Mana Cost of Minion Skills ]],[[ Solstice Vigil Onyx Amulet @@ -1015,14 +1009,14 @@ Variant: Pre 3.10.0 Variant: Current Requires Level 64 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes +{tags:attribute}+(10-16) to all Attributes {variant:1}(20-25)% increased Damage {variant:2}(30-40)% increased Damage -{tags:life}+(50-70) to maximum Life -{variant:1}{tags:mana}Regenerate (2-3) Mana per second -{variant:2}{tags:mana}Regenerate (8-10) Mana per second -Temporal Chains has no Reservation if Cast as an Aura +{tags:resource}+(50-70) to maximum Life +{variant:1}{tags:resource}Regenerate (2-3) Mana per second +{variant:2}{tags:resource}Regenerate (8-10) Mana per second Gain Shaper's Presence for 10 seconds when you kill a Rare or Unique Enemy +{tags:caster}Temporal Chains has no Reservation if Cast as an Aura ]],[[ Star of Wraeclast Ruby Amulet @@ -1032,14 +1026,14 @@ Variant: Pre 3.8.0 Variant: Current Requires Level 28 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Fire Resistance +{tags:resistance}+(20-30)% to Fire Resistance {variant:3}Grants Level 10 Frostblink Skill -{tags:jewellery_elemental}(30-50)% increased Cold Damage -{tags:jewellery_resistance}+(10-15)% to all Elemental Resistances +{variant:1,2}Grants Level 20 Illusory Warp Skill +{tags:elemental_damage}(30-50)% increased Cold Damage +{tags:resistance}+(10-15)% to all Elemental Resistances {variant:1}{tags:caster}30% increased Area of Effect of Hex Skills {variant:2,3}{tags:caster}60% increased Area of Effect of Hex Skills {tags:caster}You cannot be Cursed with Silence -{variant:1,2}Grants Level 20 Illusory Warp Skill {variant:3}{tags:caster}Frostblink has 50% increased Duration Corrupted ]],[[ @@ -1050,20 +1044,20 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 5 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Intelligence -{variant:1}+15% Chance to Block Spell Damage -{variant:2,3}+(12-15)% Chance to Block Spell Damage +{tags:attribute}+(20-30) to Intelligence +{variant:1}15% Chance to Block Spell Damage +{variant:2,3}(12-15)% Chance to Block Spell Damage {variant:1,2}{tags:caster,speed}(10-15)% increased Cast Speed {variant:3}{tags:caster,speed}(15-20)% increased Cast Speed -{variant:1,2}{tags:mana}+(30-50) to maximum Mana -{variant:3}{tags:mana}+(40-70) to maximum Mana +{variant:1,2}{tags:resource}+(30-50) to maximum Mana +{variant:3}{tags:resource}+(40-70) to maximum Mana ]],[[ Stranglegasp Onyx Amulet Source: Drops in Blight-ravaged Maps Requires Level 52 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes +{tags:attribute}+(10-16) to all Attributes Can have 3 additional Enchantment Modifiers ]],[[ Tavukai @@ -1073,23 +1067,23 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 54 Implicits: 1 -{tags:life}Regenerate (2-4) Life per second -{tags:jewellery_attribute}+(30-40) to Intelligence -{tags:jewellery_resistance}Minions have +(-17-17)% to Chaos Resistance +{tags:resource}Regenerate (2-4) Life per second +{tags:attribute}+(30-40) to Intelligence +{tags:resistance}Minions have +(-17-17)% to Chaos Resistance Summon Raging Spirit has (20-30)% increased Duration {variant:1}Summoned Raging Spirits deal (60-80)% increased Damage {variant:2}Summoned Raging Spirits deal (25-40)% increased Damage -{variant:1}{tags:life}Summoned Raging Spirits have (80-100)% increased maximum Life -{variant:2}{tags:life}Summoned Raging Spirits have (25-40)% increased maximum Life +{variant:1}{tags:resource}Summoned Raging Spirits have (80-100)% increased maximum Life +{variant:2}{tags:resource}Summoned Raging Spirits have (25-40)% increased maximum Life {tags:chaos_damage}Summoned Raging Spirits take 20% of their Maximum Life per second as Chaos Damage ]],[[ Tainted Pact Coral Amulet Implicits: 1 -{tags:life}Regenerate (2-4) Life per second -{tags:jewellery_attribute}+(20-30) to Strength -{tags:attack,life}(2-3)% of Physical Attack Damage Leeched as Life -{tags:mana,attack}(1-1.5)% of Physical Attack Damage Leeched as Mana +{tags:resource}Regenerate (2-4) Life per second +{tags:attribute}+(20-30) to Strength +{tags:resource,attack}(2-3)% of Physical Attack Damage Leeched as Life +{tags:resource,attack}(1-1.5)% of Physical Attack Damage Leeched as Mana Taking Chaos Damage over Time heals you instead while Leeching Life ]],[[ Tear of Purity @@ -1099,14 +1093,14 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 5 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Intelligence +{tags:attribute}+(20-30) to Intelligence Grants Level 10 Purity of Elements Skill -{variant:1,2}{tags:jewellery_attribute}+(5-10) to all Attributes -{variant:3}{tags:jewellery_attribute}+(10-20) to all Attributes -{tags:life}+(20-40) to maximum Life -{variant:1}5% chance to avoid Elemental Ailments -{variant:2}{tags:jewellery_resistance}+5% to all Elemental Resistances -{variant:3}{tags:jewellery_resistance}+(5-10)% to all Elemental Resistances +{variant:1,2}{tags:attribute}+(5-10) to all Attributes +{variant:3}{tags:attribute}+(10-20) to all Attributes +{tags:resource}+(20-40) to maximum Life +{variant:2}{tags:resistance}+5% to all Elemental Resistances +{variant:3}{tags:resistance}+(5-10)% to all Elemental Resistances +{variant:1}5% chance to Avoid Elemental Ailments ]],[[ Ungil's Harmony Turquoise Amulet @@ -1114,24 +1108,24 @@ Variant: Pre 3.11.0 Variant: Current Requires Level 23 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Dexterity and Intelligence +{tags:attribute}+(16-24) to Dexterity and Intelligence {variant:1}{tags:critical}100% increased Global Critical Strike Chance {variant:2}{tags:critical}(250-350)% increased Global Critical Strike Chance -{tags:life}+(30-50) to maximum Life -{tags:mana}+(30-50) to maximum Mana +{tags:resource}+(30-50) to maximum Life +{tags:resource}+(30-50) to maximum Mana 40% increased Stun and Block Recovery -Your Critical Strikes do not deal extra Damage +{tags:critical}Your Critical Strikes do not deal extra Damage ]],[[ The Utmost Gold Amulet Source: Created from unique{Primordial Fragments} obtained from Uber bosses Requires Level 8 Implicits: 1 -(12–20)% increased Rarity of Items found -+(0–30)% chance to Suppress Spell Damage -{tags:jewellery_resistance}+(0–5)% to all maximum Elemental Resistances -{tags:caster,attack,speed}(0–40)% increased Attack and Cast Speed -{tags:jewellery_elemental}Damage Penetrates (0–20)% Elemental Resistances +(12-20)% increased Rarity of Items found ++(0-30)% chance to Suppress Spell Damage +{tags:resistance}+(0-5)% to all maximum Elemental Resistances +{tags:attack,caster,speed}(0-40)% increased Attack and Cast Speed +{tags:elemental_damage}Damage Penetrates (0-20)% Elemental Resistances Corrupted ]],[[ Uul-Netol's Vow @@ -1140,20 +1134,20 @@ Source: Drops from unique{Breachlord} in a normal{Flawless Breachstone} Requires Level 72 Implicits: 1 Has 1 Socket -Socketed Support Gems can also Support Skills from your Body Armour -{tags:jewellery_resistance}+(-30-30)% to Fire Resistance -{tags:jewellery_resistance}+(-30-30)% to Cold Resistance -{tags:jewellery_resistance}+(-30-30)% to Lightning Resistance -{tags:jewellery_resistance}+(-23-23)% to Chaos Resistance +Socketed Support Gems can also Support Skills from Equipped Body Armour +{tags:resistance}+(-30-30)% to Fire Resistance +{tags:resistance}+(-30-30)% to Cold Resistance +{tags:resistance}+(-30-30)% to Lightning Resistance +{tags:resistance}+(-23-23)% to Chaos Resistance ]],[[ Victario's Acuity Turquoise Amulet League: Onslaught Requires Level 16 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Dexterity and Intelligence -{tags:jewellery_resistance}+(30-40)% to Lightning Resistance -{tags:jewellery_resistance}+(8-10)% to Chaos Resistance +{tags:attribute}+(16-24) to Dexterity and Intelligence +{tags:resistance}+(30-40)% to Lightning Resistance +{tags:resistance}+(8-10)% to Chaos Resistance 10% chance to gain a Frenzy Charge on Kill 10% chance to gain a Power Charge on Kill {tags:speed}5% increased Projectile Speed per Frenzy Charge @@ -1169,13 +1163,12 @@ Variant: Pre 3.21.0 Variant: Current Requires Level 69 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Intelligence -{variant:1,2}Trigger Level 12 Lightning Bolt when you deal a Critical Strike -{tags:jewellery_attribute}+(10-15) to all Attributes -{variant:3}{tags:jewellery_elemental}50% increased Lightning Damage -{tags:mana}(10-20)% increased maximum Mana -{variant:1}Critical Strike Chance is increased by Lightning Resistance -{variant:2}Critical Strike Chance is increased by Overcapped Lightning Resistance +{tags:attribute}+(20-30) to Intelligence +{variant:1,2}{tags:critical}Trigger Level 12 Lightning Bolt when you deal a Critical Strike +{tags:attribute}+(10-15) to all Attributes +{variant:3}{tags:elemental_damage}50% increased Lightning Damage +{tags:resource}(10-20)% increased maximum Mana +{variant:1,2}{tags:critical}Critical Strike Chance is increased by Overcapped Lightning Resistance {variant:3}Lightning Damage with Non-Critical Strikes is Lucky ]],[[ Choir of the Storm @@ -1188,27 +1181,26 @@ Variant: Pre 3.21.0 Variant: Current Requires Level 69 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Intelligence -{variant:1,2,3}Trigger Level 20 Lightning Bolt when you deal a Critical Strike -{variant:4}Trigger Level 30 Lightning Bolt when you deal a Critical Strike -{variant:1,2,3}{tags:jewellery_elemental}50% increased Lightning Damage -{tags:mana}(10-20)% increased maximum Mana -{variant:1,2}Critical Strike Chance is increased by Lightning Resistance -{variant:1,3,4}{tags:jewellery_resistance}-30% to Lightning Resistance -{variant:3,4}Critical Strike Chance is increased by Overcapped Lightning Resistance +{tags:attribute}+(20-30) to Intelligence +{variant:1,2,3}{tags:critical}Trigger Level 20 Lightning Bolt when you deal a Critical Strike +{variant:4}{tags:critical}Trigger Level 30 Lightning Bolt when you deal a Critical Strike +{variant:1,2,3}{tags:elemental_damage}50% increased Lightning Damage +{tags:resource}(10-20)% increased maximum Mana +{variant:1,3,4}{tags:resistance}-30% to Lightning Resistance +{tags:critical}Critical Strike Chance is increased by Overcapped Lightning Resistance ]],[[ Voll's Devotion Agate Amulet League: Anarchy, Onslaught Requires Level 32 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Strength and Intelligence -{tags:life}+(30-40) to maximum Life -{tags:jewellery_defense}+(20-30) to maximum Energy Shield -{tags:jewellery_resistance}+(15-20)% to all Elemental Resistances +{tags:attribute}+(16-24) to Strength and Intelligence +{tags:defences}+(20-30) to maximum Energy Shield +{tags:resource}+(30-40) to maximum Life +{tags:resistance}+(15-20)% to all Elemental Resistances 30% reduced Endurance Charge Duration 30% reduced Power Charge Duration -Gain an Endurance Charge when a Power Charge expires or is consumed +Gain an Endurance Charge when you lose a Power Charge ]],[[ Warped Timepiece Turquoise Amulet @@ -1217,7 +1209,7 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 50 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Dexterity and Intelligence +{tags:attribute}+(16-24) to Dexterity and Intelligence {variant:1}{tags:attack,speed}(8-12)% increased Attack Speed {variant:2}{tags:attack,speed}(10-15)% increased Attack Speed {variant:3}{tags:attack,speed}(10-25)% increased Attack Speed @@ -1226,26 +1218,24 @@ Implicits: 1 {variant:3}{tags:caster,speed}(10-25)% increased Cast Speed {variant:1}{tags:speed}12% increased Movement Speed {variant:2,3}{tags:speed}(10-15)% increased Movement Speed -{variant:1}(8-12)% reduced Skill Effect Duration -{variant:2}(10-15)% reduced Skill Effect Duration +{variant:1}(8-12)% increased Skill Effect Duration +{variant:2}(10-15)% increased Skill Effect Duration {variant:3}(10-20)% reduced Skill Effect Duration -{variant:1,2}{tags:life,jewellery_defense}30% increased total Recovery per second from Life, Mana, or Energy Shield Leech -{variant:3}Debuffs on you Expire 100% Faster +{variant:3}Debuffs on you expire 100% faster +{variant:1,2}{tags:resource,defences}30% increased total Recovery per second from Life, Mana, or Energy Shield Leech ]],[[ Willowgift Jade Amulet -Variant: Pre 3.16.0 -Variant: Current Requires Level 52 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Dexterity -{tags:jewellery_attribute}10% reduced Strength -{tags:jewellery_attribute}15% increased Dexterity -{tags:jewellery_resistance}-(30-20)% to Fire Resistance -{tags:jewellery_resistance}+(30-40)% to Cold Resistance +{tags:attribute}+(20-30) to Dexterity +{tags:attribute}10% reduced Strength +{tags:attribute}15% increased Dexterity +{tags:resistance}-(30-20)% to Fire Resistance +{tags:resistance}+(30-40)% to Cold Resistance You do not inherently take less Damage for having Fortification -{variant:2}+4% chance to Suppress Spell Damage per Fortification -{tags:caster,attack,speed}(15-25)% increased Attack and Cast Speed while at maximum Fortification ++4% chance to Suppress Spell Damage per Fortification +{tags:attack,caster,speed}(15-25)% increased Attack and Cast Speed while at maximum Fortification ]],[[ Winterheart Gold Amulet @@ -1254,12 +1244,12 @@ Variant: Current Requires Level 42 Implicits: 1 (12-20)% increased Rarity of Items found -{tags:jewellery_attribute}+(20-30) to Dexterity -{tags:life}+(50-70) to maximum Life -{tags:jewellery_resistance}+75% to Cold Resistance +{tags:attribute}+(20-30) to Dexterity +{tags:resource}+(50-70) to maximum Life +{tags:resistance}+75% to Cold Resistance Cannot be Chilled -{variant:1}{tags:life}Regenerate 20% of Life per second while Frozen -{variant:2}{tags:life}Regenerate 10% of Life per second while Frozen +{variant:1}{tags:resource}Regenerate 20% of Life per second while Frozen +{variant:2}{tags:resource}Regenerate 10% of Life per second while Frozen ]],[[ Replica Winterheart Gold Amulet @@ -1268,10 +1258,10 @@ Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level 42 Implicits: 1 (12-20)% increased Rarity of Items found -{tags:jewellery_attribute}+(20-30) to Dexterity -{tags:jewellery_defense}+(50-70) to maximum Energy Shield -{tags:jewellery_resistance}+75% to Lightning Resistance -{tags:jewellery_defense}Regenerate 5% of Energy Shield per second while Shocked +{tags:attribute}+(20-30) to Dexterity +{tags:defences}+(50-70) to maximum Energy Shield +{tags:resistance}+75% to Lightning Resistance +{tags:defences}Regenerate 5% of Energy Shield per second while Shocked Unaffected by Shock ]],[[ Xoph's Heart @@ -1283,11 +1273,11 @@ Source: Drops in Xoph Breach or from unique{Xoph, Dark Embers} Upgrade: Upgrades to unique{Xoph's Blood} using currency{Blessing of Xoph} Requires Level 35 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Strength -{tags:jewellery_attribute}+(20-30) to Strength -{tags:jewellery_elemental}25% increased Fire Damage -{tags:life}+(25-35) to maximum Life -{tags:jewellery_resistance}+(20-40)% to Fire Resistance +{tags:attribute}+(20-30) to Strength +{tags:attribute}+(20-30) to Strength +{tags:elemental_damage}25% increased Fire Damage +{tags:resource}+(25-35) to maximum Life +{tags:resistance}+(20-40)% to Fire Resistance {variant:1}Cover Enemies in Ash when they Hit you {variant:2}Nearby Enemies are Covered in Ash ]],[[ @@ -1297,13 +1287,13 @@ League: Breach Source: Upgraded from unique{Xoph's Heart} using currency{Blessing of Xoph} Requires Level 64 Implicits: 1 -{tags:jewellery_attribute}+(20-30) to Strength -{tags:life}10% increased maximum Life -{tags:jewellery_resistance}+(20-40)% to Fire Resistance -{tags:jewellery_attribute}10% increased Strength -{tags:jewellery_elemental}Damage Penetrates 10% Fire Resistance +{tags:attribute}+(20-30) to Strength +{tags:attribute}10% increased Strength +{tags:resource}10% increased maximum Life +{tags:resistance}+(20-40)% to Fire Resistance +{tags:elemental_damage}Damage Penetrates 10% Fire Resistance Cover Enemies in Ash when they Hit you -Avatar of Fire +{tags:elemental_damage}Avatar of Fire ]],[[ Yoke of Suffering Onyx Amulet @@ -1311,10 +1301,10 @@ Variant: Pre 3.24.0 Variant: Current Requires Level 70 Implicits: 1 -{tags:jewellery_attribute}+(10-16) to all Attributes -{tags:jewellery_resistance}+(10-20)% to Fire Resistance -{tags:jewellery_resistance}+(10-20)% to Cold Resistance -{tags:jewellery_resistance}+(20-40)% to Lightning Resistance +{tags:attribute}+(10-16) to all Attributes +{tags:resistance}+(10-20)% to Fire Resistance +{tags:resistance}+(10-20)% to Cold Resistance +{tags:resistance}+(20-40)% to Lightning Resistance 30% reduced Duration of Ailments on Enemies (5-10)% chance to Shock {variant:1}Enemies take 5% increased Damage for each type of Ailment you have inflicted on them @@ -1328,12 +1318,12 @@ Eater of Worlds Item Source: Drops from unique{The Black Star} or unique{The Infinite Hunger} Requires Level 61 Implicits: 2 -9% increased Mana Reservation Efficiency of Skills {tags:speed}6% increased Movement Speed -{tags:jewellery_attribute}+(20-50) to Strength -{tags:jewellery_attribute}+(20-50) to Dexterity -{tags:jewellery_attribute}+(20-50) to Intelligence -{tags:jewellery_defense}(10-15)% increased Global Defences +9% increased Mana Reservation Efficiency of Skills +{tags:attribute}+(20-50) to Strength +{tags:attribute}+(20-50) to Dexterity +{tags:attribute}+(20-50) to Intelligence +{tags:defences}(10-15)% increased Global Defences Critical Strikes inflict Malignant Madness if The Eater of Worlds is dominant Kill Enemies that have 15% or lower Life on Hit if The Searing Exarch is dominant ]],[[ @@ -1356,38 +1346,36 @@ Variant: Current Source: Drops from unique{Incarnation of Dread} in normal{Moment of Reverence} Requires Level 74 Implicits: 1 -{tags:jewellery_defense}(10-15)% faster start of Energy Shield Recharge -{tags:attack,chaos_damage}(5-10) to (20-25) Added Attack Chaos Damage per 100 Maximum Mana -{variant:1}{tags:jewellery_defense}+(200-400) to maximum Energy Shield -{variant:2}{tags:jewellery_defense}+(50-100) to maximum Energy Shield -{tags:mana}(40-60)% reduced maximum Mana -Skills Cost Energy Shield instead of Mana or Life -]], -[[ +{tags:defences}(10-15)% faster start of Energy Shield Recharge +{tags:chaos_damage,resource,attack}(5-10) to (20-25) Added Attack Chaos Damage per 100 Maximum Mana +{variant:1}{tags:defences}+(200-400) to maximum Energy Shield +{variant:2}{tags:defences}+(50-100) to maximum Energy Shield +{tags:resource}(40-60)% reduced maximum Mana +{tags:resource,defences}Skills Cost Energy Shield instead of Mana or Life +]],[[ Bonemeld Marble Amulet Source: Drops from unique{Incarnation of Dread} in normal{Moment of Reverence} Requires Level 74 Implicits: 1 -{tags:life}Regenerate (1.2-1.6)% of Life per second -{tags:jewellery_attribute}+(10-20) to all Attributes +{tags:resource}Regenerate (1.2-1.6)% of Life per second +{tags:attribute}+(10-20) to all Attributes +(1-2) to Level of all Minion Skill Gems -{tags:jewellery_resistance}-2% to all Resistances per Minion from your Non-Vaal Skills -{tags:jewellery_defense}(3-4)% increased Defences per Minion from your Non-Vaal Skills -{tags:jewellery_resistance}Minions gain added Resistances equal to 50% of your Resistances -]], -[[ +{tags:resistance}-2% to all Resistances per Minion from your Non-Vaal Skills +{tags:defences}(3-4)% increased Defences per Minion from your Non-Vaal Skills +{tags:resistance}Minions gain added Resistances equal to 50% of your Resistances +]],[[ Haunting Memories Turquoise Amulet Source: Drops from unique{Uber Incarnation of Neglect} in normal{Moment of Loneliness} Requires Level 64 Implicits: 1 -{tags:jewellery_attribute}+(16-24) to Dexterity and Intelligence +{tags:attribute}+(16-24) to Dexterity and Intelligence +(6-10)% chance to Suppress Spell Damage (50-100)% of Suppressed Spell Damage taken bypasses Energy Shield (50-100)% of Suppressed Spell Damage taken Recouped as Energy Shield -{tags:jewellery_attribute}+(20-30) to Dexterity and Intelligence -{tags:jewellery_defense}+(40-60) to maximum Energy Shield -{tags:life}+(40-60) to maximum Life +{tags:attribute}+(20-30) to Dexterity and Intelligence +{tags:defences}+(40-60) to maximum Energy Shield +{tags:resource}+(40-60) to maximum Life ]], } diff --git a/src/Data/Uniques/axe.lua b/src/Data/Uniques/axe.lua index 7b626eddd9..da21eb144e 100644 --- a/src/Data/Uniques/axe.lua +++ b/src/Data/Uniques/axe.lua @@ -93,9 +93,9 @@ Implicits: 0 Adds (11-14) to (18-23) Physical Damage {variant:1}(10-15)% increased Attack Speed {variant:1}2% of Physical Attack Damage Leeched as Life -{variant:1}50% reduced total Recovery per second from Life Leech 25% chance to cause Bleeding on Hit {variant:2}+(25-35)% to Damage over Time Multiplier for Bleeding from Hits with this Weapon +{variant:1}50% reduced total Recovery per second from Life Leech ]],[[ Moonbender's Wing Tomahawk @@ -157,8 +157,8 @@ Implicits: 0 {variant:1,2,3}(20-25)% increased Attack Speed {variant:4,5}(25-35)% increased Attack Speed +(20-25)% to Cold Resistance -Insufficient Mana doesn't prevent your Melee Attacks Your Physical Damage can Chill +Insufficient Mana doesn't prevent your Melee Attacks {variant:5}Eat (2-4) Souls when you Kill a Rare or Unique Enemy with this Weapon ]],[[ Replica Soul Taker @@ -182,7 +182,7 @@ Trigger Level 20 Starfall on Melee Critical Strike (120-180)% increased Physical Damage (20-30)% increased Critical Strike Chance (10-20)% increased Area of Effect -Gain (40-60)% of Weapon Physical Damage as Extra Damage of a Random Element +Gain (40-60)% of Weapon Physical Damage as Extra Damage of a random Element ]], [[ The Grey Wind @@ -213,8 +213,8 @@ Implicits: 1 {variant:3}Adds (310-330) to (370-390) Physical Damage (12-16)% increased Attack Speed 25% chance to cause Bleeding on Hit -{variant:1,2}+2 to Weapon Range -{variant:3}+10 to Weapon Range +{variant:1,2}+0.2 metres to Weapon Range +{variant:3}+1 metres to Weapon Range ]],[[ The Blood Reaper Headsman Axe @@ -235,8 +235,8 @@ Debeon's Dirge Despot Axe Implicits: 0 Adds (310-350) to (460-500) Cold Damage -15% increased Movement Speed if you've used a Warcry Recently -150% increased Elemental Damage if you've used a Warcry Recently +15% increased Movement Speed if you've Warcried Recently +150% increased Elemental Damage if you've Warcried Recently Warcries Knock Back and Interrupt Enemies in a smaller Area ]],[[ The Harvest @@ -287,8 +287,8 @@ Implicits: 0 Gain 20 Life per Enemy Killed +(150-250) to Accuracy Rating Culling Strike -{variant:3,4}Gain 1 Rage on Critical Hit with attacks, no more than once every 0.5 seconds {variant:5}Gain 5 Rage on Melee Hit +{variant:3,4}Gain 1 Rage on Critical Strike with Attacks {variant:3,4,5}Every Rage also grants 1% of Physical Damage as Extra Fire Damage ]],[[ Kingmaker @@ -406,8 +406,7 @@ Implicits: 1 {variant:1}(140-170)% increased Physical Damage {variant:2}(230-270)% increased Physical Damage 15% reduced Attack Speed -{variant:1}25% chance to Curse Enemies with Vulnerability on Hit -{variant:2}Curse Enemies with Vulnerability on Hit +Curse Enemies with Vulnerability on Hit {variant:1}Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies {variant:2}Exerted Attacks deal 200% increased Damage {variant:2}Exerted Attacks Knock Enemies Back on Hit @@ -423,9 +422,9 @@ Implicits: 1 {variant:2,3}25% chance to Maim on Hit Trigger Level 20 Bone Nova when you Hit a Bleeding Enemy (280-320)% increased Physical Damage -(30-25)% reduced Attack Speed +(25-30)% reduced Attack Speed +{variant:3}25% chance to cause Bleeding on Hit {variant:1,2}Attacks have 25% chance to inflict Bleeding when Hitting Cursed Enemies -{variant:3}Attacks have 25% chance to inflict Bleeding ]],[[ Wideswing Poleaxe @@ -438,7 +437,7 @@ Socketed Gems are Supported by Level 20 Increased Area of Effect Gain 10 Mana per Enemy Killed {variant:1}+(50-80) to Accuracy Rating {variant:2}+(120-150) to Accuracy Rating -+2 to Weapon Range ++0.2 metres to Weapon Range ]],[[ Replica Wings of Entropy Ezomyte Axe diff --git a/src/Data/Uniques/belt.lua b/src/Data/Uniques/belt.lua index dbcbfe886a..15572be75c 100644 --- a/src/Data/Uniques/belt.lua +++ b/src/Data/Uniques/belt.lua @@ -12,9 +12,9 @@ Source: Drops from unique{The Maven} LevelReq: 68 Implicits: 1 (15-25)% increased Stun and Block Recovery -{tags:jewellery_defense}+(600-700) to Armour -{tags:life}(12-15)% increased maximum Life -{tags:jewellery_resistance}+(40-60)% to Fire Resistance +{tags:defences}+(600-700) to Armour +{tags:resource}(12-15)% increased maximum Life +{tags:resistance}+(40-60)% to Fire Resistance {variant:2}+1 to Maximum Endurance Charges Modifiers to Minimum Endurance Charges instead apply to Minimum Brutal Charges Maximum Brutal Charges is equal to Maximum Endurance Charges @@ -27,14 +27,14 @@ Variant: Pre 3.16.0 Variant: Current LevelReq: 44 Implicits: 1 -{tags:jewellery_defense}+(9-20) to maximum Energy Shield -{tags:jewellery_defense}+300 to Evasion Rating -{variant:1}{tags:jewellery_defense}+(35-45) to maximum Energy Shield -{variant:2,3}{tags:jewellery_defense}+(75-80) to maximum Energy Shield -{tags:jewellery_resistance}+(10-15)% to all Elemental Resistances +{tags:defences}+(9-20) to maximum Energy Shield +{tags:defences}+300 to Evasion Rating +{variant:1}{tags:defences}+(35-45) to maximum Energy Shield +{variant:2,3}{tags:defences}+(75-80) to maximum Energy Shield +{tags:resistance}+(10-15)% to all Elemental Resistances You have Phasing if Energy Shield Recharge has started Recently -{variant:1,2}6% increased Evasion while Phasing -{variant:3}30% increased Evasion while Phasing +{variant:1,2}{tags:defences}6% increased Evasion Rating while Phasing +{variant:3}{tags:defences}30% increased Evasion Rating while Phasing {tags:speed}10% increased Movement Speed while Phasing ]],[[ Auxium @@ -46,28 +46,28 @@ Variant: Pre 3.5.0 Variant: Current {variant:1,2}LevelReq: 70 Implicits: 2 -{variant:1,2}{tags:jewellery_defense}+(9-20) to maximum Energy Shield -{variant:3,4}{tags:jewellery_defense}+(60-80) to maximum Energy Shield -{tags:jewellery_defense}+(60-70) to maximum Energy Shield -{tags:mana}+(45-55) to maximum Mana -{variant:1}{tags:attack,mana}0.2% of Physical Attack Damage Leeched as Mana per Power Charge +{variant:1,2}{tags:defences}+(9-20) to maximum Energy Shield +{variant:3,4}{tags:defences}+(60-80) to maximum Energy Shield +{tags:defences}+(60-70) to maximum Energy Shield +{tags:resource}+(45-55) to maximum Mana {variant:2,3}Chill Effect and Freeze Duration on you are based on 65% of Energy Shield {variant:4}Chill Effect and Freeze Duration on you are based on 100% of Energy Shield -{variant:1}{tags:attack,jewellery_elemental}(20-30)% increased Elemental Damage with Attack Skills -{variant:2,3}{tags:attack,jewellery_elemental}(10-20)% increased Elemental Damage with Attack Skills -{variant:4}{tags:attack,jewellery_elemental}(20-25)% increased Elemental Damage with Attack Skills per Power Charge -{variant:2,3,4}{tags:attack,mana}0.2% of Attack Damage Leeched as Mana per Power Charge +{variant:1}{tags:elemental_damage,attack}(20-30)% increased Elemental Damage with Attack Skills +{variant:2,3}{tags:elemental_damage,attack}(10-20)% increased Elemental Damage with Attack Skills +{variant:4}{tags:elemental_damage,attack}(20-25)% increased Elemental Damage with Attack Skills per Power Charge +{variant:2,3,4}{tags:resource,attack}0.2% of Attack Damage Leeched as Mana per Power Charge +{variant:1}{tags:attack,mana}0.2% of Physical Attack Damage Leeched as Mana per Power Charge ]],[[ The Burden of Truth Crystal Belt Source: Drops from unique{Sirus, Awakener of Worlds} LevelReq: 79 Implicits: 1 -{tags:jewellery_defense}+(60-80) to maximum Energy Shield -{tags:life}(30-40)% increased Life Recovery from Flasks -33% of Chaos Damage taken does not bypass Energy Shield +{tags:defences}+(60-80) to maximum Energy Shield 33% of Non-Chaos Damage taken bypasses Energy Shield -{tags:jewellery_defense}Gain (5-10)% of Maximum Life as Extra Maximum Energy Shield +{tags:resource}(30-40)% increased Life Recovery from Flasks +33% of Chaos Damage taken does not bypass Energy Shield +{tags:defences}Gain (5-10)% of Maximum Life as Extra Maximum Energy Shield Supreme Decadence ]],[[ Bated Breath @@ -76,12 +76,12 @@ Variant: Pre 2.6.0 Variant: Current LevelReq: 22 Implicits: 1 -{tags:jewellery_defense}+(9-20) to maximum Energy Shield -{tags:jewellery_attribute}+(15-25) to Intelligence +{tags:defences}+(9-20) to maximum Energy Shield +{tags:attribute}+(15-25) to Intelligence 10% increased Damage -{tags:jewellery_defense}+(20-30) to maximum Energy Shield -{variant:2}{tags:jewellery_defense}20% increased maximum Energy Shield -{tags:jewellery_defense}50% increased Energy Shield Recharge Rate +{tags:defences}+(20-30) to maximum Energy Shield +{variant:2}{tags:defences}20% increased maximum Energy Shield +{tags:defences}50% increased Energy Shield Recharge Rate ]],[[ Replica Bated Breath Chain Belt @@ -89,8 +89,8 @@ League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist LevelReq: 22 Implicits: 1 -{tags:jewellery_defense}+(9-20) to maximum Energy Shield -{tags:jewellery_attribute}+(15-25) to Intelligence +{tags:defences}+(9-20) to maximum Energy Shield +{tags:attribute}+(15-25) to Intelligence 10% increased Damage 50% increased Fishing Pool Consumption 20% increased Fishing Range @@ -104,11 +104,10 @@ League: Harvest Source: Drops from unique{Ersi, Mother of Thorns} in normal{The Sacred Grove} LevelReq: 68 Implicits: 1 -{tags:life}+(25-40) to maximum Life -{tags:attack,physical_damage}Adds (5-7) to (11-12) Physical Damage to Attacks +{tags:resource}+(25-40) to maximum Life +{tags:physical_damage,attack}Adds (5-7) to (11-12) Physical Damage to Attacks (20-30)% increased Stun Duration on Enemies Nearby Enemies are Crushed while you have at least 25 Rage -{variant:1}{tags:physical_damage}(4-6)% increased Physical Damage per 10 Rage {variant:1}+20 to Maximum Rage {variant:2}+10 to Maximum Rage ]],[[ @@ -118,13 +117,13 @@ Variant: Pre 2.6.0 Variant: Current LevelReq: 20 Implicits: 1 -{tags:jewellery_attribute}+(25-35) to Strength +{tags:attribute}+(25-35) to Strength {variant:1}10% reduced Chance to Block Attack and Spell Damage {tags:physical_damage}(15-25)% increased Global Physical Damage {tags:critical}You take 30% reduced Extra Damage from Critical Strikes -{tags:life}+(30-40) to maximum Life -{variant:1}{tags:jewellery_resistance}+(6-10)% to all Elemental Resistances -{variant:2}{tags:jewellery_resistance}+(10-15)% to all Elemental Resistances +{tags:resource}+(30-40) to maximum Life +{variant:1}{tags:resistance}+(6-10)% to all Elemental Resistances +{variant:2}{tags:resistance}+(10-15)% to all Elemental Resistances {variant:2}Nearby Enemies are Intimidated ]],[[ Bisco's Leash @@ -133,10 +132,10 @@ Variant: Pre 3.25.0 Variant: Current LevelReq: 30 Implicits: 1 -{tags:jewellery_attribute}+(25-35) to Strength +{tags:attribute}+(25-35) to Strength +{variant:2}{tags:attribute}+(10-15) to all Attributes {variant:1}5% increased Quantity of Items found -{variant:2}{tags:jewellery_attribute}+(10-15) to all Attributes -{tags:jewellery_resistance}+(20-40)% to Cold Resistance +{tags:resistance}+(20-40)% to Cold Resistance 1% increased Rarity of Items found per 15 Rampage Kills Rampage ]],[[ @@ -145,9 +144,9 @@ Cloth Belt LevelReq: 16 Implicits: 1 (15-25)% increased Stun and Block Recovery -{tags:jewellery_attribute}+(20-30) to Dexterity -{tags:jewellery_attribute}+(20-30) to Intelligence -{tags:life}+(60-80) to Maximum Life +{tags:attribute}+(20-30) to Dexterity +{tags:attribute}+(20-30) to Intelligence +{tags:resource}+(60-80) to maximum Life Every 5 seconds, gain one of the following for 5 seconds: Your Hits are always Critical Strikes Hits against you are always Critical Strikes @@ -162,9 +161,9 @@ League: Heist Source: Drops from unique{Friedrich Tarollo, Slave Merchant} in normal{Contract: The Slaver King} LevelReq: 61 Implicits: 1 -{tags:jewellery_defense}+(9-20) to maximum Energy Shield -{tags:life}+(60-80) to maximum Life -{tags:jewellery_resistance}+(17-23)% to Chaos Resistance +{tags:defences}+(9-20) to maximum Energy Shield +{tags:resource}+(60-80) to maximum Life +{tags:resistance}+(17-23)% to Chaos Resistance Enemy Hits inflict Temporal Chains on you When you lose Temporal Chains you gain maximum Rage Immune to Curses while you have at least 25 Rage @@ -178,14 +177,14 @@ Source: Opening normal{Experimental Chest} in normal{Hybridisation Chamber} Upgrade: Upgrades to unique{Coward's Legacy} via currency{Vial of Consequence} LevelReq: 22 Implicits: 1 -{tags:jewellery_defense}+(9-20) to maximum Energy Shield +{tags:defences}+(9-20) to maximum Energy Shield +{variant:1}{tags:attribute}+(10-15) to all Attributes +{variant:2}{tags:attribute}+(15-20) to all Attributes {variant:1}(20-25)% increased Damage -{variant:1}{tags:jewellery_attribute}+(10-15) to all Attributes -{variant:2}{tags:jewellery_attribute}+(15-20) to all Attributes {tags:speed}(5-10)% increased Movement Speed -Damage from Enemies Hitting you is Unlucky while you are Cursed with Vulnerability -{variant:2}{tags:life}You count as on Full Life while you are Cursed with Vulnerability -{tags:caster}You are cursed with Vulnerability +Damage of Enemies Hitting you is Unlucky while you are Cursed with Vulnerability +{variant:2}{tags:resource}You count as on Full Life while you are Cursed with Vulnerability +{tags:caster}You are Cursed with Vulnerability ]],[[ Coward's Legacy Chain Belt @@ -193,11 +192,11 @@ League: Incursion Source: Upgraded from unique{Coward's Chains} via currency{Vial of Consequence} LevelReq: 52 Implicits: 1 -{tags:jewellery_defense}+(9-20) to maximum Energy Shield -{tags:jewellery_attribute}+(15-20) to all Attributes +{tags:defences}+(9-20) to maximum Energy Shield +{tags:attribute}+(15-20) to all Attributes {tags:speed}(5-10)% increased Movement Speed {tags:caster}50% increased Effect of Curses on you -{tags:life}You count as on Low Life while you are Cursed with Vulnerability +{tags:resource}You count as on Low Life while you are Cursed with Vulnerability {tags:caster}You are Cursed with Vulnerability ]],[[ Cyclopean Coil @@ -206,9 +205,9 @@ Elder Item Source: Drops from unique{The Elder} LevelReq: 68 Implicits: 1 -{tags:life}+(25-40) to maximum Life -{tags:life}+(60-80) to maximum Life -{tags:jewellery_attribute}(5-15)% increased Attributes +{tags:resource}+(25-40) to maximum Life +{tags:attribute}(5-15)% increased Attributes +{tags:resource}+(60-80) to maximum Life Cannot be Frozen if Dexterity is higher than Intelligence Cannot be Ignited if Strength is higher than Dexterity Cannot be Shocked if Intelligence is higher than Strength @@ -241,30 +240,26 @@ Variant: Current (Cold) Variant: Current (Lightning) LevelReq: 68 Implicits: 1 -{tags:jewellery_attribute}+(25-35) to Strength +{tags:attribute}+(25-35) to Strength {variant:1,5}{tags:physical_damage}(20-30)% increased Global Physical Damage -{variant:2,6}{tags:jewellery_elemental}(20-30)% increased Fire Damage -{variant:3,7}{tags:jewellery_elemental}(20-30)% increased Cold Damage -{variant:4,8}{tags:jewellery_elemental}(20-30)% increased Lightning Damage -{variant:2,3,4,6,7,8}{tags:jewellery_defense}+(300-350) to Armour -{variant:1,3,4,5,7,8}{tags:jewellery_resistance}+(30-35)% to Fire Resistance -{variant:1,2,4,5,6,8}{tags:jewellery_resistance}+(30-35)% to Cold Resistance -{variant:1,2,3,5,6,7}{tags:jewellery_resistance}+(30-35)% to Lightning Resistance -{variant:1}{tags:life}0.2% of Physical Damage Leeched as Life -{variant:5}{tags:life}0.6% of Physical Damage Leeched as Life -{variant:2}{tags:life}0.2% of Fire Damage Leeched as Life -{variant:6}{tags:life}0.6% of Fire Damage Leeched as Life -{variant:3}{tags:life}0.2% of Cold Damage Leeched as Life -{variant:7}{tags:life}0.6% of Cold Damage Leeched as Life -{variant:4}{tags:life}0.2% of Lightning Damage Leeched as Life -{variant:8}{tags:life}0.6% of Lightning Damage Leeched as Life -{variant:1,5}25% reduced Enemy Stun Threshold during any Flask Effect +{variant:2,6}{tags:elemental_damage}(20-30)% increased Fire Damage +{variant:3,7}{tags:elemental_damage}(20-30)% increased Cold Damage +{variant:4,8}{tags:elemental_damage}(20-30)% increased Lightning Damage +{variant:2,3,4,6,7,8}{tags:defences}+(300-350) to Armour +{variant:1,3,4,5,7,8}{tags:resistance}+(30-35)% to Fire Resistance +{variant:1,2,4,5,6,8}{tags:resistance}+(30-35)% to Cold Resistance +{variant:1,2,3,5,6,7}{tags:resistance}+(30-35)% to Lightning Resistance +{variant:5}{tags:resource}0.6% of Physical Damage Leeched as Life +{variant:6}{tags:resource}0.6% of Fire Damage Leeched as Life +{variant:7}{tags:resource}0.6% of Cold Damage Leeched as Life +{variant:8}{tags:resource}0.6% of Lightning Damage Leeched as Life {variant:2}10% chance to Ignite during any Flask Effect {variant:6}(20-30)% chance to Ignite during any Flask Effect {variant:3}10% chance to Freeze during any Flask Effect {variant:7}(20-30)% chance to Freeze during any Flask Effect {variant:4}10% chance to Shock during any Flask Effect {variant:8}(20-30)% chance to Shock during any Flask Effect +{variant:1,5}25% reduced Enemy Stun Threshold during any Flask Effect ]],[[ The Druggery Cloth Belt @@ -272,7 +267,7 @@ League: Heist LevelReq: 48 Implicits: 1 (15-25)% increased Stun and Block Recovery -{tags:jewellery_attribute}+(20-30) to all Attributes +{tags:attribute}+(20-30) to all Attributes (15-25)% increased Flask Charges gained (10-20)% increased Flask Charges used (10-20)% increased Flask Effect Duration @@ -285,15 +280,15 @@ Variant: Pre 2.6.0 Variant: Current LevelReq: 52 Implicits: 1 -{tags:jewellery_attribute}+(25-35) to Strength -{tags:life}+(70-85) to maximum Life -{tags:jewellery_resistance}+(20-40)% to Fire Resistance -{tags:jewellery_resistance}+(20-40)% to Cold Resistance -{variant:1}{tags:attack,life}0.6% of Attack Damage Leeched as Life against Chilled enemies -{variant:2}{tags:attack,life}1% of Attack Damage Leeched as Life against Chilled enemies -{variant:1}{tags:jewellery_elemental,attack}Ignites you inflict with Attacks deal Damage 20% faster -{variant:2}{tags:jewellery_elemental,attack}Ignites you inflict with Attacks deal Damage 35% faster -Deal no Physical Damage +{tags:attribute}+(25-35) to Strength +{tags:resource}+(70-85) to maximum Life +{tags:resistance}+(20-40)% to Fire Resistance +{tags:resistance}+(20-40)% to Cold Resistance +{variant:1}{tags:resource,attack}0.6% of Attack Damage Leeched as Life against Chilled Enemies +{variant:2}{tags:resource,attack}1% of Attack Damage Leeched as Life against Chilled Enemies +{variant:1}{tags:elemental_damage,attack}Ignites you inflict with Attacks deal Damage 20% faster +{variant:2}{tags:elemental_damage,attack}Ignites you inflict with Attacks deal Damage 35% faster +{tags:physical_damage}Deal no Physical Damage ]],[[ Faminebind Rustic Sash @@ -301,11 +296,11 @@ League: Talisman Standard, Talisman Hardcore LevelReq: 18 Implicits: 1 {tags:physical_damage}(12-24)% increased Global Physical Damage -{tags:jewellery_resistance}+(20-30)% to Cold Resistance +{tags:resistance}+(20-30)% to Cold Resistance 20% increased Projectile Damage 30% reduced Flask Charges gained 60% increased Flask Effect Duration -Deals 50 Chaos Damage per second to nearby Enemies +{tags:chaos_damage}Deals 50 Chaos Damage per second to nearby Enemies ]],[[ Feastbind Rustic Sash @@ -313,11 +308,11 @@ League: Talisman Standard, Talisman Hardcore LevelReq: 11 Implicits: 1 {tags:physical_damage}(12-24)% increased Global Physical Damage -{tags:attack,physical_damage}Adds 5 to 10 Physical Damage to Attacks -{tags:life}+(20-40) to maximum Life -{tags:attack,life}0.2% of Physical Attack Damage Leeched as Life +{tags:physical_damage,attack}Adds 5 to 10 Physical Damage to Attacks +{tags:resource}+(20-40) to maximum Life +{tags:resource,attack}0.2% of Physical Attack Damage Leeched as Life 50% increased Flask Charges gained during any Flask Effect -{tags:mana}50% increased Mana Regeneration Rate during any Flask Effect +{tags:resource}50% increased Mana Regeneration Rate during any Flask Effect ]],[[ The Flow Untethered Cloth Belt @@ -329,23 +324,27 @@ LevelReq: 60 Implicits: 1 (15-25)% increased Stun and Block Recovery Grants Summon Harbinger of Time Skill -{variant:1}{tags:jewellery_defense}(15-20)% increased Energy Shield Recovery rate -{variant:2}{tags:jewellery_defense}(10-15)% increased Energy Shield Recovery rate -{variant:1}{tags:life}(15-20)% increased Life Recovery rate -{variant:2}{tags:life}(10-15)% increased Life Recovery rate -{tags:caster,attack,speed}(10-15)% increased Attack and Cast Speed +{variant:1}{tags:resource,defences}(15-20)% increased Energy Shield Recovery rate +{variant:1}{tags:resource,defences}(15-20)% increased Life Recovery rate +{variant:2}{tags:resource,defences}(10-15)% increased Energy Shield Recovery rate +{variant:2}{tags:resource,defences}(10-15)% increased Life Recovery rate +{tags:attack,caster,speed}(10-15)% increased Attack and Cast Speed (15-20)% increased Cooldown Recovery Rate Debuffs on you expire (15-20)% faster ]],[[ The Torrent's Reclamation Cloth Belt +Variant: Pre 3.16.0 +Variant: Current LevelReq: 60 Implicits: 1 (15-25)% increased Stun and Block Recovery Grants Summon Greater Harbinger of Time Skill -{tags:jewellery_defense}(15-20)% increased Energy Shield Recovery rate -{tags:life}(15-20)% increased Life Recovery rate -{tags:caster,attack,speed}(10-15)% increased Attack and Cast Speed +{variant:1}{tags:resource,defences}(15-20)% increased Energy Shield Recovery rate +{variant:1}{tags:resource,defences}(15-20)% increased Life Recovery rate +{variant:2}{tags:resource,defences}(10-15)% increased Energy Shield Recovery rate +{variant:2}{tags:resource,defences}(10-15)% increased Life Recovery rate +{tags:attack,caster,speed}(10-15)% increased Attack and Cast Speed (15-20)% increased Cooldown Recovery Rate Debuffs on you expire (15-20)% faster ]],[[ @@ -355,15 +354,15 @@ Variant: Pre 3.12.0 Variant: Current LevelReq: 48 Implicits: 1 -{tags:life}+(25-40) to maximum Life -{variant:1}Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy -{tags:life}+(60-80) to maximum Life +{tags:resource}+(25-40) to maximum Life +{variant:1}{tags:caster}Trigger Level 30 Poacher's Mark when you Hit a Rare or Unique Enemy and have no Mark +{tags:resource}+(60-80) to maximum Life {variant:1}Culling Strike against Enemies Cursed with Poacher's Mark {variant:2}You have Culling Strike against Cursed Enemies -{variant:2}{tags:life}Gain (20-28) Life per Cursed Enemy Hit with Attacks -{variant:2}{tags:mana}Gain (10-14) Mana per Cursed Enemy Hit with Attacks +{variant:2}{tags:resource,attack}Gain (20-28) Life per Cursed Enemy Hit with Attacks +{variant:2}{tags:resource,attack}Gain (10-14) Mana per Cursed Enemy Hit with Attacks {tags:physical_damage}Take (100-200) Physical Damage when you use a Movement Skill -You have no Armour or Maximum Energy Shield +{tags:defences}You have no Armour or Maximum Energy Shield ]],[[ Graven's Secret Cloth Belt @@ -374,9 +373,9 @@ Source: Drops from unique{The Maven} LevelReq: 68 Implicits: 1 (15-25)% increased Stun and Block Recovery -{tags:jewellery_defense}+(60-70) to Energy Shield -{tags:mana}(16-20)% increased maximum Mana -{tags:jewellery_resistance}+(40-60)% to Lightning Resistance +{tags:defences}+(60-70) to maximum Energy Shield +{tags:resource}(16-20)% increased maximum Mana +{tags:resistance}+(40-60)% to Lightning Resistance {variant:2}+1 to Maximum Power Charges Modifiers to Minimum Power Charges instead apply to Minimum Absorption Charges Maximum Absorption Charges is equal to Maximum Power Charges @@ -387,10 +386,10 @@ Leather Belt League: Nemesis LevelReq: 40 Implicits: 1 -{tags:life}+(25-40) to maximum Life -{tags:jewellery_attribute}+(40-55) to Strength -{tags:jewellery_attribute}+(40-55) to Dexterity -{tags:life}+(50-60) to maximum Life +{tags:resource}+(25-40) to maximum Life +{tags:attribute}+(40-55) to Strength +{tags:attribute}+(40-55) to Dexterity +{tags:resource}+(50-60) to maximum Life (20-30)% increased Damage with Hits against Rare monsters When you Kill a Rare monster, you gain its Modifiers for 60 seconds ]],[[ @@ -400,10 +399,10 @@ League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist LevelReq: 40 Implicits: 1 -{tags:life}+(25-40) to maximum Life -{tags:jewellery_attribute}+(40-55) to Strength -{tags:jewellery_attribute}+(40-55) to Dexterity -{tags:life}+(50-60) to maximum Life +{tags:resource}+(25-40) to maximum Life +{tags:attribute}+(40-55) to Strength +{tags:attribute}+(40-55) to Dexterity +{tags:resource}+(50-60) to maximum Life (20-30)% increased Damage with Hits against Magic monsters 20% chance when you Kill a Magic Monster to gain its Modifiers for 60 seconds ]],[[ @@ -432,30 +431,30 @@ Variant: Energy Shield Regen (Current) Variant: Lucky Crit Chance while Focused (Current) LevelReq: 60 Implicits: 1 -{tags:life}+(25-40) to maximum Life -{tags:jewellery_resistance}+(30-40)% to Cold Resistance +{tags:resource}+(25-40) to maximum Life +{tags:resistance}+(30-40)% to Cold Resistance Chill nearby Enemies when you Focus, causing 30% reduced Action Speed {variant:1,2,3,4,5,6,7,8,9,10}Focus has (15-25)% increased Cooldown Recovery Rate {variant:11,12,13,14,15,16,17,18,19}Focus has (30-50)% increased Cooldown Recovery Rate (50-70)% increased Damage with Hits and Ailments against Chilled Enemies {variant:1}{crafted}{tags:life}Regenerate 2% of Life per second during any Flask Effect -{variant:2}{crafted}{tags:chaos,jewellery_resistance}+(8-15)% to Fire and Chaos Resistances -{variant:3}{crafted}{tags:chaos,jewellery_resistance}+(8-15)% to Cold and Chaos Resistances -{variant:4}{crafted}{tags:chaos,jewellery_resistance}+(8-15)% to Lightning and Chaos Resistances -{variant:5}{crafted}{tags:jewellery_attribute}+(6-17) to Strength and Dexterity -{variant:6}{crafted}{tags:jewellery_attribute}+(6-17) to Dexterity and Intelligence -{variant:7}{crafted}{tags:jewellery_attribute}+(6-17) to Strength and Intelligence -{variant:8}{crafted}(7-12)% increased Trap Throwing Speed -{variant:9}{crafted}{tags:jewellery_defense}Regenerate 120 Energy Shield per second while a Rare or Unique Enemy is Nearby +{variant:2}{crafted}{tags:resistance}+(8-15)% to Fire and Chaos Resistances +{variant:3}{crafted}{tags:resistance}+(8-15)% to Cold and Chaos Resistances +{variant:4}{crafted}{tags:resistance}+(8-15)% to Lightning and Chaos Resistances +{variant:5}{crafted}{tags:attribute}+(6-17) to Strength and Dexterity +{variant:6}{crafted}{tags:attribute}+(6-17) to Dexterity and Intelligence +{variant:7}{crafted}{tags:attribute}+(6-17) to Strength and Intelligence +{variant:8}{crafted}{tags:speed}(7-12)% increased Trap Throwing Speed +{variant:9}{crafted}{tags:defences}Regenerate 120 Energy Shield per second while a Rare or Unique Enemy is Nearby {variant:10,19}{crafted}Your Critical Strike Chance is Lucky while Focused -{variant:11}{crafted}{tags:chaos,jewellery_resistance}+(16-20)% to Fire and Chaos Resistances -{variant:12}{crafted}{tags:chaos,jewellery_resistance}+(16-20)% to Cold and Chaos Resistances -{variant:13}{crafted}{tags:chaos,jewellery_resistance}+(16-20)% to Lightning and Chaos Resistances -{variant:14}{crafted}{tags:jewellery_attribute}+(31-35) to Strength and Dexterity -{variant:15}{crafted}{tags:jewellery_attribute}+(31-35) to Dexterity and Intelligence -{variant:16}{crafted}{tags:jewellery_attribute}+(31-35) to Strength and Intelligence -{variant:17}{crafted}(14-16)% increased Trap Throwing Speed -{variant:18}{crafted}{tags:jewellery_defense}Regenerate 200 Energy Shield per second while a Rare or Unique Enemy is Nearby +{variant:11}{crafted}{tags:resistance}+(16-20)% to Fire and Chaos Resistances +{variant:12}{crafted}{tags:resistance}+(16-20)% to Cold and Chaos Resistances +{variant:13}{crafted}{tags:resistance}+(16-20)% to Lightning and Chaos Resistances +{variant:14}{crafted}{tags:attribute}+(31-35) to Strength and Dexterity +{variant:15}{crafted}{tags:attribute}+(31-35) to Dexterity and Intelligence +{variant:16}{crafted}{tags:attribute}+(31-35) to Strength and Intelligence +{variant:17}{crafted}{tags:speed}(14-16)% increased Trap Throwing Speed +{variant:18}{crafted}{tags:defences}Regenerate 200 Energy Shield per second while a Rare or Unique Enemy is Nearby {variant:19}{crafted}Focus has (5-8)% increased Cooldown Recovery Rate ]],[[ Immortal Flesh @@ -466,25 +465,25 @@ Variant: Pre 3.19.0 Variant: Current LevelReq: 50 Implicits: 1 -{tags:life}+(25-40) to maximum Life -{tags:life}+(75-100) to maximum Life -{variant:1,2,3}{tags:life}Regenerate (66.7-75) Life per second -{variant:4}{tags:life}Regenerate (200-350) Life per second -{tags:mana}Regenerate (8-10) Mana per second -{variant:1}{tags:jewellery_resistance}-40% to all Elemental Resistances -{variant:3,4}{tags:jewellery_resistance}-(15-25)% to all Elemental Resistances -{variant:1}{tags:jewellery_resistance}-10% to all maximum Resistances -{variant:2}{tags:jewellery_resistance}-5% to all maximum Resistances -{tags:physical_damage}-(50-40) Physical Damage taken from Attack Hits -{tags:jewellery_defense}40% increased Armour while not Ignited, Frozen or Shocked +{tags:resource}+(25-40) to maximum Life +{tags:resource}+(75-100) to maximum Life +{variant:1,2,3}{tags:resource}Regenerate (66.7-75) Life per second +{variant:4}{tags:resource}Regenerate (200-350) Life per second +{tags:resource}Regenerate (8-10) Mana per second +{variant:1}{tags:resistance}-40% to all Elemental Resistances +{variant:3,4}{tags:resistance}-(25-15)% to all Elemental Resistances +{variant:1}{tags:resistance}-10% to all maximum Resistances +{variant:2}{tags:resistance}-5% to all maximum Resistances +{tags:attack}-(50-40) Physical Damage taken from Attack Hits +{tags:defences}40% increased Armour while not Ignited, Frozen or Shocked ]],[[ Kaom's Binding Heavy Belt LevelReq: 56 Implicits: 1 -{tags:jewellery_attribute}+(25-35) to Strength -{tags:jewellery_attribute}+(30-40) to Strength -{tags:jewellery_defense}+(300-500) to Armour +{tags:attribute}+(25-35) to Strength +{tags:attribute}+(30-40) to Strength +{tags:defences}+(300-500) to Armour Take no Burning Damage if you've stopped taking Burning Damage Recently Nearby Enemies Convert 25% of their Physical Damage to Fire ]],[[ @@ -492,9 +491,9 @@ Leash of Oblation Leather Belt LevelReq: 49 Implicits: 1 -{tags:life}+(25-40) to maximum Life -{tags:jewellery_attribute}+(15-20) to all Attributes -{tags:life}+(50-70) to maximum Life +{tags:resource}+(25-40) to maximum Life +{tags:attribute}+(15-20) to all Attributes +{tags:resource}+(50-70) to maximum Life You can have an Offering of each type Offering Skills have 50% reduced Duration ]],[[ @@ -506,11 +505,11 @@ Variant: Current LevelReq: 16 Implicits: 1 (20-30)% increased Stun Duration on Enemies -{tags:jewellery_attribute}+(40-50) to Strength +{tags:attribute}+(40-50) to Strength {variant:1,2}{tags:physical_damage}(25-40)% increased Global Physical Damage -{variant:3}{tags:jewellery_resistance}+(20-25)% to all Elemental Resistances +{variant:3}{tags:resistance}+(20-25)% to all Elemental Resistances 50% increased Flask Charges gained -{variant:2}{tags:jewellery_resistance}+(20-25)% to all Elemental Resistances while you have at least 200 Strength +{variant:2}{tags:resistance}+(20-25)% to all Elemental Resistances while you have at least 200 Strength {variant:3}10% chance to deal Double Damage while you have at least 200 Strength {variant:3}5% chance to deal Triple Damage while you have at least 400 Strength ]],[[ @@ -520,11 +519,11 @@ Source: No longer obtainable LevelReq: 48 Implicits: 1 (20-30)% increased Stun Duration on Enemies -{tags:jewellery_attribute}+(40-50) to Strength -{tags:jewellery_attribute}+(40-50) to Dexterity +{tags:attribute}+(40-50) to Strength +{tags:attribute}+(40-50) to Dexterity {tags:physical_damage}(25-40)% increased Global Physical Damage 50% increased Flask Charges gained -{tags:jewellery_resistance}+(20-25)% to all Elemental Resistances while you have at least 200 Strength +{tags:resistance}+(20-25)% to all Elemental Resistances while you have at least 200 Strength {tags:attack}(40-50)% increased Projectile Attack Damage while you have at least 200 Dexterity ]],[[ The Tactician @@ -533,22 +532,22 @@ Source: No longer obtainable LevelReq: 48 Implicits: 1 (20-30)% increased Stun Duration on Enemies -{tags:jewellery_attribute}+(40-50) to Strength -{tags:jewellery_attribute}+(40-50) to Intelligence +{tags:attribute}+(40-50) to Strength +{tags:attribute}+(40-50) to Intelligence {tags:physical_damage}(25-40)% increased Global Physical Damage 50% increased Flask Charges gained -{tags:jewellery_resistance}+(20-25)% to all Elemental Resistances while you have at least 200 Strength +{tags:resistance}+(20-25)% to all Elemental Resistances while you have at least 200 Strength {tags:critical}(50-60)% increased Critical Strike Chance while you have at least 200 Intelligence ]],[[ Mageblood Heavy Belt LevelReq: 44 Implicits: 1 -{tags:jewellery_attribute}+(25-35) to Strength -{tags:jewellery_attribute}+(30-50) to Dexterity -{tags:jewellery_resistance}+(15-25)% to Fire Resistance -{tags:jewellery_resistance}+(15-25)% to Cold Resistance -Magic Utility Flask cannot be Used +{tags:attribute}+(25-35) to Strength +{tags:attribute}+(30-50) to Dexterity +{tags:resistance}+(15-25)% to Fire Resistance +{tags:resistance}+(15-25)% to Cold Resistance +Magic Utility Flasks cannot be Used Leftmost (2-4) Magic Utility Flasks constantly apply their Flask Effects to you Magic Utility Flask Effects cannot be removed ]],[[ @@ -556,8 +555,8 @@ Maligaro's Restraint Chain Belt LevelReq: 44 Implicits: 1 -{tags:jewellery_defense}+(9-20) to maximum Energy Shield -{tags:jewellery_elemental,attack}Adds 1 to (30-50) Lightning Damage to Attacks +{tags:defences}+(9-20) to maximum Energy Shield +{tags:elemental_damage,attack}Adds 1 to (30-50) Lightning Damage to Attacks 100% increased Shock Duration on you Shocks you cause are reflected back to you 60% increased Damage while Shocked @@ -568,34 +567,36 @@ Heavy Belt Variant: Pre 2.0.0 Variant: Current Implicits: 1 -{tags:jewellery_attribute}+(25-35) to Strength -{tags:jewellery_attribute}+25 to Strength -{variant:1}{tags:attack,physical_damage}Adds 10 to 20 Physical Damage to Attacks -{variant:2}{tags:attack,physical_damage}Adds 5 to 15 Physical Damage to Attacks -{tags:life}10% increased maximum Life -{tags:jewellery_resistance}+(10-20)% to Cold Resistance -{tags:life}25% increased Flask Life Recovery rate +{tags:attribute}+(25-35) to Strength +{tags:attribute}+25 to Strength +{variant:1}{tags:physical_damage,attack}Adds 5 to 15 Physical Damage to Attacks +{variant:2}{tags:physical_damage,attack}Adds 10 to 20 Physical Damage to Attacks +{tags:resource}10% increased maximum Life +{tags:resistance}+(10-20)% to Cold Resistance +{tags:resource}25% increased Flask Life Recovery rate ]],[[ Mother's Embrace Heavy Belt LevelReq: 40 Implicits: 1 -{tags:jewellery_attribute}+(25-35) to Strength -{tags:life}+(50-70) to maximum Life -{tags:jewellery_resistance}+(20-30)% to Cold Resistance +{tags:attribute}+(25-35) to Strength +{tags:resource}+(50-70) to maximum Life +{tags:resistance}+(20-30)% to Cold Resistance Your Minions use your Flasks when summoned -Minions have (40-25)% reduced Flask Charges used +Minions have (25-40)% reduced Flask Charges used Minions have (50-80)% increased Flask Effect Duration ]],[[ Nevalius Inheritance Cloth Belt League: Necropolis Requires Level 16 -+(20-30) to Dexterity -150% Increased Flask Effect Duration -Flasks applied to you have 60% Reduced Effect -2% Reduced Flask Effect Duration per Level -Flasks applied to you have 1% Increased Effect per Level +Implicits: 1 +(15-25)% increased Stun and Block Recovery +{tags:attribute}+(20-30) to Dexterity +150% increased Flask Effect Duration +Flasks applied to you have 60% reduced Effect +2% reduced Flask Effect Duration per Level +Flasks applied to you have 1% increased Effect per Level ]],[[ Olesya's Delight Cloth Belt @@ -606,8 +607,8 @@ Source: Drops from unique{The Maven} LevelReq: 68 Implicits: 1 (15-25)% increased Stun and Block Recovery -{tags:jewellery_defense}+(600-700) to Evasion Rating -{tags:jewellery_resistance}+(40-60)% to Cold Resistance +{tags:defences}+(600-700) to Evasion Rating +{tags:resistance}+(40-60)% to Cold Resistance {tags:speed}(8-12)% increased Movement Speed {variant:2}+1 to Maximum Frenzy Charges Modifiers to Minimum Frenzy Charges instead apply to Minimum Affliction Charges @@ -621,31 +622,31 @@ Variant: Pre 3.25.0 Variant: Current Implicits: 1 (15-25)% increased Stun and Block Recovery -{tags:jewellery_attribute}+(20-30) to all Attributes +{tags:attribute}+(20-30) to all Attributes {variant:1}(8-12)% increased Quantity of Items found {variant:2}(6-8)% increased Quantity of Items found {variant:3}(10-20)% increased Rarity of Items found -{tags:jewellery_resistance}+20% to Fire Resistance +{tags:resistance}+20% to Fire Resistance 20% increased Flask Effect Duration -{tags:physical_damage}-2 Physical Damage taken from Attack Hits +{tags:attack}-2 Physical Damage taken from Attack Hits ]],[[ Ceinture of Benevolence Cloth Belt LevelReq: 40 Implicits: 1 (15-25)% increased Stun and Block Recovery -{tags:jewellery_attribute}+(20-40) to Dexterity -{tags:mana}+(40-60) to maximum Mana -(10-7)% reduced Flask Charges used +{tags:attribute}+(20-40) to Dexterity +{tags:resource}+(40-60) to maximum Mana +(7-10)% reduced Flask Charges used Non-Unique Utility Flasks you Use apply to Linked Targets ]],[[ Chain of Endurance Chain Belt LevelReq: 14 -+(9-20) to maximum Energy Shield -+(40-50) to Maximum Life +{tags:defences}+(9-20) to maximum Energy Shield +{tags:resource}+(40-50) to maximum Life (40-60)% increased Stun and Block Recovery -Reflects (100-150) Physical Damage to Melee Attackers +{tags:physical_damage}Reflects (100-150) Physical Damage to Melee Attackers Regenerate 2% of Life per second for each different Ailment affecting you ]],[[ Perseverance @@ -653,12 +654,12 @@ Vanguard Belt Variant: Pre 3.16.0 Variant: Current Implicits: 1 -{tags:jewellery_defense}+(260-320) to Armour and Evasion Rating -{tags:life}(4-8)% increased maximum Life -{tags:jewellery_resistance}+(20-40)% to Cold Resistance +{tags:defences}+(260-320) to Armour and Evasion Rating +{tags:resource}(4-8)% increased maximum Life +{tags:resistance}+(20-40)% to Cold Resistance {tags:attack}1% increased Attack Damage per 200 of the lowest of Armour and Evasion Rating {variant:1}Melee Hits which Stun have (14-20)% chance to Fortify -{variant:2}{tags:attack}Melee Hits which Stun Fortify +{variant:2}Melee Hits which Stun Fortify You have Onslaught while Fortified ]],[[ Prismweave @@ -669,19 +670,19 @@ Variant: Current LevelReq: 25 Implicits: 1 {tags:physical_damage}(12-24)% increased Global Physical Damage -{variant:1}{tags:jewellery_elemental,attack}Adds (3-4) to (7-8) Fire Damage to Attacks -{variant:2}{tags:jewellery_elemental,attack}Adds (7-8) to (15-16) Fire Damage to Attacks -{variant:3}{tags:jewellery_elemental,attack}Adds (14-16) to (30-32) Fire Damage to Attacks -{variant:1}{tags:jewellery_elemental,attack}Adds (2-3) to (5-7) Cold Damage to Attacks -{variant:2}{tags:jewellery_elemental,attack}Adds (5-6) to (12-14) Cold Damage to Attacks -{variant:3}{tags:jewellery_elemental,attack}Adds (10-12) to (24-28) Cold Damage to Attacks -{variant:1}{tags:jewellery_elemental,attack}Adds 1 to (13-17) Lightning Damage to Attacks -{variant:2}{tags:jewellery_elemental,attack}Adds 1 to (30-34) Lightning Damage to Attacks -{variant:3}{tags:jewellery_elemental,attack}Adds 1 to (60-68) Lightning Damage to Attacks -{variant:1,2}{tags:jewellery_resistance}+(6-8)% to all Elemental Resistances -{variant:3}{tags:jewellery_resistance}+(6-15)% to all Elemental Resistances -{tags:jewellery_elemental,attack}30% increased Elemental Damage with Attack Skills during any Flask Effect -{variant:1,2}10% increased Elemental Damage with Attack Skills +{variant:1}{tags:elemental_damage,attack}Adds (3-4) to (7-8) Fire Damage to Attacks +{variant:2}{tags:elemental_damage,attack}Adds (7-8) to (15-16) Fire Damage to Attacks +{variant:3}{tags:elemental_damage,attack}Adds (14-16) to (30-32) Fire Damage to Attacks +{variant:1}{tags:elemental_damage,attack}Adds (2-3) to (5-7) Cold Damage to Attacks +{variant:2}{tags:elemental_damage,attack}Adds (5-6) to (12-14) Cold Damage to Attacks +{variant:3}{tags:elemental_damage,attack}Adds (10-12) to (24-28) Cold Damage to Attacks +{variant:1}{tags:elemental_damage,attack}Adds 1 to (13-17) Lightning Damage to Attacks +{variant:2}{tags:elemental_damage,attack}Adds 1 to (30-34) Lightning Damage to Attacks +{variant:3}{tags:elemental_damage,attack}Adds 1 to (60-68) Lightning Damage to Attacks +{variant:1,2}{tags:resistance}+(6-8)% to all Elemental Resistances +{variant:3}{tags:resistance}+(6-15)% to all Elemental Resistances +{tags:elemental_damage,attack}30% increased Elemental Damage with Attack Skills during any Flask Effect +{variant:1,2}{tags:elemental_damage,attack}10% increased Elemental Damage with Attack Skills ]],[[ Replica Prismweave Rustic Sash @@ -692,25 +693,25 @@ Variant: Current LevelReq: 25 Implicits: 1 {tags:physical_damage}(12-24)% increased Global Physical Damage -{variant:1}{tags:jewellery_elemental,caster}Adds (7-8) to (15-16) Fire Damage to Spells -{variant:2}{tags:jewellery_elemental,caster}Adds (14-16) to (30-32) Fire Damage to Spells -{variant:1}{tags:jewellery_elemental,caster}Adds (5-6) to (12-14) Cold Damage to Spells -{variant:2}{tags:jewellery_elemental,caster}Adds (10-12) to (24-28) Cold Damage to Spells -{variant:1}{tags:jewellery_elemental,caster}Adds 1 to (30-34) Lightning Damage to Spells -{variant:2}{tags:jewellery_elemental,caster}Adds 1 to (60-68) Lightning Damage to Spells -{variant:1}{tags:jewellery_resistance}+(6-8)% to all Elemental Resistances -{variant:2}{tags:jewellery_resistance}+(6-15)% to all Elemental Resistances -{variant:1}{tags:jewellery_elemental}10% increased Elemental Damage -{tags:jewellery_elemental}30% increased Elemental Damage during any Flask Effect +{variant:1}{tags:elemental_damage,caster}Adds (7-8) to (15-16) Fire Damage to Spells +{variant:2}{tags:elemental_damage,caster}Adds (14-16) to (30-32) Fire Damage to Spells +{variant:1}{tags:elemental_damage,caster}Adds (5-6) to (12-14) Cold Damage to Spells +{variant:2}{tags:elemental_damage,caster}Adds (10-12) to (24-28) Cold Damage to Spells +{variant:1}{tags:elemental_damage,caster}Adds 1 to (30-34) Lightning Damage to Spells +{variant:2}{tags:elemental_damage,caster}Adds 1 to (60-68) Lightning Damage to Spells +{variant:1}{tags:resistance}+(6-8)% to all Elemental Resistances +{variant:2}{tags:resistance}+(6-15)% to all Elemental Resistances +{variant:1}{tags:elemental_damage}10% increased Elemental Damage +{tags:elemental_damage}30% increased Elemental Damage during any Flask Effect ]],[[ Pyroshock Clasp Leather Belt League: Heist LevelReq: 43 Implicits: 1 -{tags:life}+(25-40) to maximum Life -{tags:jewellery_attribute}+(30-40) to Dexterity -{tags:jewellery_defense}+(300-500) to Evasion Rating +{tags:resource}+(25-40) to maximum Life +{tags:attribute}+(30-40) to Dexterity +{tags:defences}+(300-500) to Evasion Rating (10-15)% increased Duration of Elemental Ailments on Enemies Enemies Ignited by you have (10-15)% of Physical Damage they deal converted to Fire Enemies Shocked by you have (10-15)% of Physical Damage they deal converted to Lightning @@ -722,12 +723,12 @@ Source: Vendor Recipe LevelReq: 44 Implicits: 1 {tags:physical_damage}(12-24)% increased Global Physical Damage -{tags:life}+(60-80) to maximum Life -{tags:jewellery_resistance}+(25-40)% to Cold Resistance -{tags:attack,life}0.4% of Physical Attack Damage Leeched as Life +{tags:resource}+(60-80) to maximum Life +{tags:resistance}+(25-40)% to Cold Resistance +{tags:resource,attack}0.4% of Physical Attack Damage Leeched as Life 60% increased Flask Effect Duration 30% reduced Flask Charges gained during any Flask Effect -{tags:chaos_damage,life}200% of Life Leech applies to enemies as Chaos Damage +{tags:chaos_damage,resource}200% of Life Leech applies to Enemies as Chaos Damage {tags:speed}15% increased Movement Speed during any Flask Effect ]],[[ Ryslatha's Coil @@ -737,25 +738,25 @@ Variant: Current LevelReq: 20 Implicits: 1 (20-30)% increased Stun Duration on Enemies -{tags:jewellery_attribute}+(20-40) to Strength -{variant:1}{tags:attack,physical}20% less Minimum Physical Attack Damage -{variant:2}{tags:attack,physical}(30-40)% less Minimum Physical Attack Damage -{variant:1}{tags:attack,physical}20% more Maximum Physical Attack Damage -{variant:2}{tags:attack,physical}(30-40)% more Maximum Physical Attack Damage -{tags:attack,physical_damage}Adds 1 to (15-20) Physical Damage to Attacks -{variant:2}{tags:life}+(80-100) to maximum Life -{tags:life}Gain 50 Life when you Stun an Enemy +{tags:attribute}+(20-40) to Strength +{variant:1}{tags:physical_damage,attack}20% more Maximum Physical Attack Damage +{variant:2}{tags:physical_damage,attack}(30-40)% more Maximum Physical Attack Damage +{variant:1}{tags:physical_damage,attack}20% less Minimum Physical Attack Damage +{variant:2}{tags:physical_damage,attack}(30-40)% less Minimum Physical Attack Damage +{tags:physical_damage,attack}Adds 1 to (15-20) Physical Damage to Attacks +{variant:2}{tags:resource}+(80-100) to maximum Life +{tags:resource}Gain 50 Life when you Stun an Enemy ]],[[ Siegebreaker Heavy Belt LevelReq: 44 Implicits: 1 -{tags:jewellery_attribute}+(25-35) to Strength -{tags:jewellery_defense}(6-10)% increased maximum Energy Shield -{tags:life}(6-10)% increased maximum Life -{tags:jewellery_resistance}+(17-23)% to Chaos Resistance +{tags:attribute}+(25-35) to Strength +{tags:defences}(6-10)% increased maximum Energy Shield +{tags:resource}(6-10)% increased maximum Life +{tags:resistance}+(17-23)% to Chaos Resistance {tags:attack}Minions have 5% chance to Taunt on Hit with Attacks -Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second +{tags:chaos_damage}Your Minions spread Caustic Ground on Death, dealing 20% of their maximum Life as Chaos Damage per second ]],[[ Replica Siegebreaker Heavy Belt @@ -763,11 +764,11 @@ League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist LevelReq: 44 Implicits: 1 -{tags:jewellery_attribute}+(25-35) to Strength -{tags:jewellery_defense}(6-10)% increased maximum Energy Shield -{tags:life}(6-10)% increased maximum Life -{tags:jewellery_resistance}+(15-25)% to Fire Resistance -{tags:jewellery_elemental}Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second +{tags:attribute}+(25-35) to Strength +{tags:defences}(6-10)% increased maximum Energy Shield +{tags:resource}(6-10)% increased maximum Life +{tags:resistance}+(15-25)% to Fire Resistance +{tags:elemental_damage}Your Minions spread Burning Ground on Death, dealing 20% of their maximum Life as Fire Damage per second {tags:attack}Minions have 5% chance to Maim Enemies on Hit with Attacks ]],[[ Soul Tether @@ -775,9 +776,9 @@ Cloth Belt LevelReq: 48 Implicits: 1 (15-25)% increased Stun and Block Recovery -{tags:jewellery_attribute}+(20-40) to Intelligence -{tags:jewellery_defense}Gain (4-6)% of Maximum Life as Extra Maximum Energy Shield -Immortal Ambition +{tags:attribute}+(20-40) to Intelligence +{tags:defences}Gain (4-6)% of Maximum Life as Extra Maximum Energy Shield +{tags:resource,defences}Immortal Ambition ]],[[ Replica Soul Tether Cloth Belt @@ -786,21 +787,21 @@ Source: Steal from a unique{Curio Display} during a Grand Heist LevelReq: 48 Implicits: 1 (15-25)% increased Stun and Block Recovery -{tags:jewellery_attribute}+(20-40) to Strength -{tags:jewellery_defense}Gain (4-6)% of Maximum Life as Extra Maximum Energy Shield -Corrupted Soul +{tags:attribute}+(20-40) to Strength +{tags:defences}Gain (4-6)% of Maximum Life as Extra Maximum Energy Shield +{tags:defences}Corrupted Soul ]],[[ Soulthirst Cloth Belt LevelReq: 45 Implicits: 1 (15-25)% increased Stun and Block Recovery -{tags:life}+(60-80) to maximum Life -{tags:jewellery_resistance}+15% to all Elemental Resistances -{tags:mana}(20-30)% increased Mana Recovery from Flasks +{tags:resource}+(60-80) to maximum Life +{tags:resistance}+15% to all Elemental Resistances +{tags:resource}(20-30)% increased Mana Recovery from Flasks (20-30)% reduced Flask Effect Duration Gain Soul Eater during any Flask Effect -Lose Souls gained from Soul Eater when you use a Flask +Lose all Eaten Souls when you use a Flask ]],[[ String of Servitude Heavy Belt @@ -829,17 +830,19 @@ Variant: Dexterity/Strength Variant: Strength/Intelligence Variant: Elemental Resistances Implicits: 24 +{variant:19}{tags:attribute}(12-18)% increased Dexterity +{variant:20}{tags:attribute}(12-18)% increased Dexterity +{variant:7}{tags:defences}(24-30)% increased maximum Energy Shield +{variant:8}{tags:resource}(18-24)% increased maximum Life +{variant:11}(9-15)% increased Quantity of Items found +{variant:10}(60-90)% increased Rarity of Items found {variant:1}(24-30)% increased Area of Effect +{variant:6}(36-45)% increased Skill Effect Duration {variant:2}{tags:critical}+(60-75)% to Critical Strike Multiplier during any Flask Effect {variant:3}{tags:speed}(24-36)% increased Attack Speed during any Flask Effect {variant:4}{tags:speed}(24-36)% increased Cast Speed during any Flask Effect {variant:5}{tags:critical}(105-120)% increased Critical Strike Chance during any Flask Effect -{variant:6}(36-45)% increased Skill Effect Duration -{variant:7}(24-30)% increased maximum Energy Shield -{variant:8}(18-24)% increased maximum Life {variant:9}{tags:speed}(24-36)% increased Movement Speed during any Flask Effect -{variant:10}(60-90)% increased Rarity of Items found -{variant:11}(9-15)% increased Quantity of Items found {variant:12}Wrath has (45-60)% increased Aura Effect {variant:13}Anger has (45-60)% increased Aura Effect {variant:14}Hatred has (45-60)% increased Aura Effect @@ -848,12 +851,10 @@ Implicits: 24 {variant:17}Grace has (45-60)% increased Aura Effect {variant:18}Malevolence has (45-60)% increased Aura Effect {variant:19}(12-18)% increased Intelligence -{variant:19}(12-18)% increased Dexterity -{variant:20}(12-18)% increased Dexterity {variant:20}(12-18)% increased Strength {variant:21}(12-18)% increased Strength {variant:21}(12-18)% increased Intelligence -{variant:22}{tags:jewellery_resistance}+(42-48)% to all Elemental Resistances +{variant:22}{tags:resistance}+(42-48)% to all Elemental Resistances Implicit Modifier magnitudes are tripled Corrupted ]],[[ @@ -865,8 +866,8 @@ LevelReq: 37 Implicits: 1 (15-25)% increased Stun and Block Recovery {variant:1}(30-40)% increased Trap Damage -{variant:1}{tags:mana}20% increased Mana Regeneration Rate -{tags:jewellery_resistance}+(20-30)% to Fire Resistance +{variant:1}{tags:resource}20% increased Mana Regeneration Rate +{tags:resistance}+(20-30)% to Fire Resistance {variant:1}80% reduced Trap Duration {variant:2}(50-75)% reduced Trap Duration 25% increased Light Radius @@ -880,12 +881,12 @@ League: Ritual Source: Purchase from Ritual Reward LevelReq: 52 Implicits: 1 -{tags:jewellery_attribute}+(25-35) to Strength -{tags:jewellery_defense}+(800-1200) to Armour -{tags:life}Regenerate (50-70) Life per second +{tags:attribute}+(25-35) to Strength +{tags:defences}+(800-1200) to Armour +{tags:resource}Regenerate (50-70) Life per second 20% increased Stun Threshold -{tags:jewellery_defense}10% reduced Armour per 50 Strength -Imbalanced Guard +{tags:defences}10% reduced Armour per 50 Strength +{tags:defences}Imbalanced Guard ]],[[ The Tides of Time Vanguard Belt @@ -893,22 +894,22 @@ Shaper Item Source: Drops from unique{The Shaper} (Uber) Requires Level 78 Implicits: 1 -{tags:jewellery_defense}+(260-320) to Armour and Evasion Rating -{tags:life,mana}100% Increased Life Recovery from Flasks -{tags:life,mana}100% Increased Mana Recovery from Flasks -Flasks applied to you have 25% Increased Effect -Life Flasks gain (0-3) charges every 3 seconds -Mana Flasks gain (0-3) charges every 3 seconds -Utility Flasks gain (0-3) charges every 3 seconds +{tags:defences}+(260-320) to Armour and Evasion Rating +{tags:resource}100% increased Life Recovery from Flasks +{tags:resource}100% increased Mana Recovery from Flasks +Flasks applied to you have 25% increased Effect +Life Flasks gain (0-3) Charges every 3 seconds +Mana Flasks gain (0-3) Charges every 3 seconds +Utility Flasks gain (0-3) Charges every 3 seconds ]],[[ Umbilicus Immortalis Leather Belt League: Perandus LevelReq: 30 Implicits: 1 -{tags:life}+(25-40) to maximum Life -{tags:life}(8-12)% increased maximum Life -{tags:life}Regenerate 2% of Life per second +{tags:resource}+(25-40) to maximum Life +{tags:resource}(8-12)% increased maximum Life +{tags:resource}Regenerate 2% of Life per second Flasks do not apply to you Flasks you Use apply to your Raised Zombies and Spectres ]],[[ @@ -918,17 +919,17 @@ Variant: Pre 3.19.0 Variant: Current LevelReq: 41 Implicits: 1 -{tags:life}+(25-40) to Maximum Life -{tags:jewellery_attribute}+(20-30) to Strength -{tags:jewellery_attribute}+(20-30) to Intelligence -{variant:1}{tags:jewellery_resistance}+(10-20)% to Cold Resistance -{variant:2}{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{variant:1}{tags:attack,life}0.4% of Physical Attack Damage Leeched as Life -{variant:2}{tags:attack,life}2% of Physical Attack Damage Leeched as Life -{variant:1}{tags:attack,mana}0.4% of Physical Attack Damage Leeched as Mana -{variant:2}{tags:attack,mana}2% of Physical Attack Damage Leeched as Mana -{variant:2}(500-1000)% increased total Recovery per second from Life Leech -{variant:2}(500-1000)% increased total Recovery per second from Mana Leech +{tags:resource}+(25-40) to maximum Life +{tags:attribute}+(20-30) to Strength +{tags:attribute}+(20-30) to Intelligence +{variant:1}{tags:resistance}+(10-20)% to Cold Resistance +{variant:2}{tags:resistance}+(20-30)% to Cold Resistance +{variant:1}{tags:resource,attack}0.4% of Physical Attack Damage Leeched as Life +{variant:2}{tags:resource,attack}2% of Physical Attack Damage Leeched as Life +{variant:1}{tags:resource,attack}0.4% of Physical Attack Damage Leeched as Mana +{variant:2}{tags:resource,attack}2% of Physical Attack Damage Leeched as Mana +{variant:2}{tags:resource}(500-1000)% increased total Recovery per second from Life Leech +{variant:2}{tags:resource}(500-1000)% increased total Recovery per second from Mana Leech ]],[[ Ynda's Stand Studded Belt @@ -936,10 +937,10 @@ League: Settlers of Kalguur Requires Level 52 Implicits: 1 (20-30)% increased Stun Duration on Enemies -{tags:life}Regenerate (30-50) Life per second -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{tags:jewellery_defense}Gain Ward Instead of 50% of Armour and Evasion Rating From Equipped Body Armour +{tags:resource}Regenerate (30-50) Life per second +{tags:resistance}+(20-30)% to Fire Resistance +{tags:resistance}+(20-30)% to Cold Resistance +{tags:defences}Gain Ward instead of 50% of Armour and Evasion Rating from Equipped Body Armour ]],[[ Binds of Bloody Vengeance Vanguard Belt @@ -947,9 +948,9 @@ Source: Drops from unique{Mercenary} after winning a duel League: Mercenaries of Trarthus Requires Level 78 Implicits: 1 -{tags:jewellery_defense}+(260-320) to Armour and Evasion Rating -{tags:jewellery_defense}+(200-400) to Armour -{tags:life}+(60-90) to maximum Life +{tags:defences}+(260-320) to Armour and Evasion Rating +{tags:defences}+(200-400) to Armour +{tags:resource}+(60-90) to maximum Life (20-40)% increased Attack Damage if you've been Hit Recently All Hits with your next Non-Channelling Attack within 4 seconds of taking a Critical Strike will be Critical Strikes ]],[[ @@ -959,10 +960,11 @@ Source: Drops from unique{Incarnation of Neglect} in normal{Moment of Loneliness Requires Level 16 Implicits: 1 (15-25)% increased Stun and Block Recovery -{tags:jewellery_attribute}+(20-30) to Dexterity and Intelligence -{tags:mana}(10-20)% increased Mana Reservation Efficiency of Skills -{tags:speed}(15-25)% increased Trap and Mine Throwing Speed +{tags:attribute}+(20-30) to Dexterity and Intelligence +{tags:resource}(10-20)% increased Mana Reservation Efficiency of Skills Summon Skitterbots also summons a Scorching Skitterbot Summoned Skitterbots' Auras affect you as well as Enemies (50-75)% increased Effect of Non-Damaging Ailments inflicted by Summoned Skitterbots -]]} +{tags:speed}(15-25)% increased Trap and Mine Throwing Speed +]], +} diff --git a/src/Data/Uniques/body.lua b/src/Data/Uniques/body.lua index fdc200eb73..86693f586f 100644 --- a/src/Data/Uniques/body.lua +++ b/src/Data/Uniques/body.lua @@ -22,8 +22,8 @@ Implicits: 0 {variant:1}Adds 2 to 4 Physical Damage to Attacks {variant:1}+(12-20) to maximum Life {variant:2}+(30-60) to maximum Life -{variant:1}-2 Physical Damage taken from Attacks -{variant:2}-(10-15) Physical Damage taken from Attacks +{variant:1}-2 Physical Damage taken from Attack Hits +{variant:2}-(15-10) Physical Damage taken from Attack Hits {variant:1}40% of Melee Physical Damage taken reflected to Attacker {variant:2}1000% of Melee Physical Damage taken reflected to Attacker ]],[[ @@ -35,7 +35,7 @@ Implicits: 0 Adds 2 to 4 Physical Damage to Attacks +2000 to Armour +(12-20) to maximum Life --2 Physical Damage taken from Attacks +-2 Physical Damage taken from Attack Hits 40% of Melee Physical Damage taken reflected to Attacker ]],[[ The Brass Dome @@ -43,14 +43,14 @@ Gladiator Plate Variant: Pre 3.16.0 Variant: Current Implicits: 0 +{variant:1}30% reduced Chance to Block Attack and Spell Damage {variant:1}(600-650)% increased Armour {variant:2}(350-400)% increased Armour -{variant:1}30% reduced Chance to Block Attack and Spell Damage -{variant:1}10% reduced Movement Speed -{variant:1}50% increased Shock Duration on You -Take no Extra Damage from Critical Strikes {variant:2}+(1-5)% to all maximum Elemental Resistances +{variant:1}10% reduced Movement Speed +{variant:1}50% increased Shock Duration on you {variant:2}Strength provides no bonus to Maximum Life +Take no Extra Damage from Critical Strikes ]],[[ Craiceann's Carapace Golden Plate @@ -81,7 +81,7 @@ Implicits: 1 {variant:3}+(60-70) to maximum Life 1% of Attack Damage Leeched as Life {variant:1,2}Deals 450 Chaos Damage per second to nearby Enemies -{variant:1}You take 450 Chaos Damage per second for 10 seconds on Kill +{variant:1}You take 450 Chaos Damage per second for 0 seconds on Kill {variant:2,3}You take 450 Chaos Damage per second for 3 seconds on Kill Gore Footprints ]],[[ @@ -95,7 +95,7 @@ Implicits: 0 Grants Level 20 Unhinge Skill (40-60)% more Critical Strike Chance while Insane Enemies Killed by your Hits are destroyed while Insane -{variant:1}(15-25)% less Physical and Chaos Damage Taken while Sane +{variant:1}(15-25)% more Physical and Chaos Damage Taken while Sane {variant:2}(30-40)% less Physical and Chaos Damage Taken while Sane Regenerate 10% Life over one second when Hit while Sane ]],[[ @@ -104,15 +104,15 @@ Golden Plate Variant: Pre 3.25.0 Variant: Current Implicits: 0 +30% reduced Strength Requirement {variant:1}(10-15)% increased Quantity of Items found {variant:1}(30-50)% increased Rarity of Items found {variant:2}100% increased Rarity of Items found -10% to Fire Resistance +(20-30)% to Cold Resistance {variant:1}-20% to Lightning Resistance -{variant:2}(-20--10)% to Lightning Resistance +{variant:2}-(20-10)% to Lightning Resistance 20% reduced Movement Speed -30% reduced Strength Requirement ]],[[ Kaom's Heart Glorious Plate @@ -140,10 +140,10 @@ Variant: Pre 3.5.0 Variant: Current Implicits: 0 Socketed Gems are Supported by Level 15 Pierce +{variant:2}+160 Dexterity Requirement (200-250)% increased Armour +(60-100) to maximum Life 0.4% of Physical Attack Damage Leeched as Mana -{variant:2}+160 Dexterity Requirement Enemy Projectiles Pierce you ]],[[ Iron Heart @@ -154,7 +154,8 @@ Implicits: 0 (80-100)% increased Armour 10% reduced Movement Speed Cannot Block Spell Damage -Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength +Strength's Damage Bonus instead grants 3% increased Melee +Physical Damage per 10 Strength ]],[[ The Iron Fortress Crusader Plate @@ -164,7 +165,8 @@ Chance to Block Spell Damage is Unlucky +(60-120) to Strength (80-100)% increased Armour 10% reduced Movement Speed -Strength's Damage Bonus instead grants 3% increased Melee Physical Damage per 10 Strength +Strength's Damage Bonus instead grants 3% increased Melee +Physical Damage per 10 Strength ]],[[ Perfidy Glorious Plate @@ -184,7 +186,7 @@ Requires Level 49, 134 Str +12 to Level of Socketed Skill Gems (80-120)% increased Armour +(60-100) to maximum Mana --2 to Level of Socketed Skill Gems per Socketed Gem +-2 to level of Socketed Skill Gems per Socketed Gem ]],[[ Solaris Lorica Copper Plate @@ -204,8 +206,8 @@ Majestic Plate Requires Level 53, 145 Str (60-100)% increased Armour Recover (1-3)% of Life on Kill -(30-40)% Increased Stun and Block Recovery -+(700-1000) to maximum Life if there are no Life Modifiers on other Equipped items +(30-40)% increased Stun and Block Recovery ++(700-1000) to maximum Life if there are no Life Modifiers on other Equipped Items ]], -- Body: Evasion [[ @@ -249,12 +251,12 @@ Strapped Leather Source: No longer obtainable LevelReq: 57 Implicits: 0 +15% increased Dexterity 10% increased Attack Speed +(600-700) to Evasion Rating +(30-40)% to Cold Resistance 5% increased Movement Speed (20-25)% increased Mana Recovery from Flasks -15% increased Dexterity 1% increased Damage per 15 Dexterity ]],[[ Bronn's Lithe @@ -311,11 +313,11 @@ Source: No longer obtainable Implicits: 0 +(20-30) to Dexterity Adds 5 to 12 Physical Damage to Attacks -+1500 to Evasion Rating while on Full Life +(400-500) to Evasion Rating ++1500 to Evasion Rating while on Full Life (120-150)% increased Evasion Rating 10% increased Movement Speed -Enemies are Unlucky when Damaging you while you are on Full Life +Damage of Enemies Hitting you is Unlucky while you are on Full Life ]],[[ Hyrri's Ire Zodiac Leather @@ -326,27 +328,27 @@ Variant: Pre 3.5.0 Variant: Pre 3.9.0 Variant: Current Implicits: 0 +{variant:3,4,5,6}+30% chance to Suppress Spell Damage {variant:1,2,3}+(20-30) to Dexterity {variant:4,5,6}+(40-50) to Dexterity {variant:1}(80-120)% increased Evasion Rating {variant:2,3,4,5,6}(140-220)% increased Evasion Rating 25% increased Chill Duration on Enemies -{variant:1,2,3}Adds 13 to 24 Cold Damage to Bow Attacks -{variant:4}Adds (50-60) to (70-80) Cold Damage to Bow Attacks -{variant:5}Adds (173-188) to (240-262) Cold Damage to Bow Attacks -{variant:6}Adds (100-145) to (160-200) Cold Damage to Bow Attacks +{variant:1,2,3}13 to 24 Added Cold Damage with Bow Attacks +{variant:4}(50-60) to (70-80) Added Cold Damage with Bow Attacks +{variant:5}(173-188) to (240-262) Added Cold Damage with Bow Attacks +{variant:6}(105-145) to (160-200) Added Cold Damage with Bow Attacks {variant:1,2}Acrobatics -{variant:3,4,5,6}30% chance to Suppress Spell Damage ]],[[ Replica Hyrri's Ire Zodiac Leather League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist +30% chance to Suppress Spell Damage -+(40–50) to Intelligence -(140–220)% increased Evasion Rating ++(40-50) to Intelligence +(140-220)% increased Evasion Rating 25% increased Shock Duration on Enemies -(12–18) to (231–347) Added Lightning Damage with Wand Attacks +(12-18) to (231-347) Added Lightning Damage with Wand Attacks ]],[[ Kintsugi Exquisite Leather @@ -358,7 +360,7 @@ Implicits: 0 {variant:2}(120-160)% increased Evasion Rating {variant:3}(160-220)% increased Evasion Rating {variant:1}+(60-80) to maximum Life -+30% to Fire Resistance ++(30-50)% to Fire Resistance {variant:1}20% less Damage taken if you have not been Hit Recently {variant:2,3}35% less Damage taken if you have not been Hit Recently {variant:1}50% increased Evasion Rating if you have been Hit Recently @@ -406,8 +408,8 @@ Variant: Pre 3.16.0 Variant: Pre 3.21.0 Variant: Current Implicits: 0 -{variant:1}10% chance to Suppress Spell Damage -{variant:2}20% chance to Suppress Spell Damage +{variant:1}+10% chance to Suppress Spell Damage +{variant:2}+20% chance to Suppress Spell Damage {variant:1,2}+(30-40) to Dexterity {variant:3}(10-15)% increased Dexterity {variant:1}(30-50)% increased Evasion Rating @@ -416,8 +418,7 @@ Implicits: 0 {variant:1,2}25% increased Arctic Armour Buff Effect {variant:3}50% increased Arctic Armour Buff Effect {variant:3}Arctic Armour has no Reservation -{variant:1}Evasion Rating is increased by Uncapped Cold Resistance -{variant:2}Evasion Rating is increased by Overcapped Cold Resistance +{variant:1,2}Evasion Rating is increased by Overcapped Cold Resistance ]],[[ The Perfect Form Zodiac Leather @@ -437,8 +438,7 @@ Implicits: 0 {variant:2}+(70-100) to maximum Life -30% to Cold Resistance {variant:1,2}Arctic Armour has no Reservation -{variant:1}Evasion Rating is increased by Uncapped Cold Resistance -{variant:2,3}Evasion Rating is increased by Overcapped Cold Resistance +Evasion Rating is increased by Overcapped Cold Resistance Acrobatics ]],[[ Replica Perfect Form @@ -458,9 +458,8 @@ Implicits: 0 {variant:1}+(50-80) to maximum Life {variant:2,3}+(70-100) to maximum Life -30% to Cold Resistance -{variant:1}Evasion Rating is increased by Uncapped Cold Resistance -{variant:4}+20% chance to Block Attack Damage -{variant:2,3,4}Evasion Rating is increased by Overcapped Cold Resistance +{variant:4}+20% Chance to Block Attack Damage +{variant:1,2,3,4}Evasion Rating is increased by Overcapped Cold Resistance {variant:3}Flesh and Stone has no Reservation {variant:3}Hollow Palm Technique {variant:4}Versatile Combatant @@ -477,22 +476,22 @@ Implicits: 0 {variant:1,4}Grants Level 20 Summon Bestial Rhoa Skill {variant:2,5}Grants Level 20 Summon Bestial Snake Skill {variant:3,6}Grants Level 20 Summon Bestial Ursa Skill -+(300-400) to Accuracy Rating (130-150)% increased Evasion Rating +(90-100) to maximum Life ++(300-400) to Accuracy Rating Projectile Attack Skills have (40-60)% increased Critical Strike Chance +{variant:3}Adds (11-16) to (21-25) Physical Damage to Attacks while you have a Bestial Minion +{variant:6}Adds (18-24) to (30-36) Physical Damage to Attacks while you have a Bestial Minion +{variant:2}Adds (13-19) to (23-29) Chaos Damage to Attacks while you have a Bestial Minion +{variant:5}Adds (23-31) to (37-47) Chaos Damage to Attacks while you have a Bestial Minion +{variant:1}(10-15)% increased Attack and Movement Speed while you have a Bestial Minion +{variant:4}(10-20)% increased Attack and Movement Speed while you have a Bestial Minion {variant:1}Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion {variant:4}Projectiles from Attacks have 100% chance to Maim on Hit while you have a Bestial Minion {variant:2}Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion {variant:5}Projectiles from Attacks have 100% chance to Poison on Hit while you have a Bestial Minion {variant:3}Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion {variant:6}Projectiles from Attacks have 100% chance to inflict Bleeding on Hit while you have a Bestial Minion -{variant:1}(10-15)% increased Attack and Movement Speed while you have a Bestial Minion -{variant:4}(10-20)% increased Attack and Movement Speed while you have a Bestial Minion -{variant:2}Adds (13-19)-(23-29) Chaos Damage to Attacks while you have a Bestial Minion -{variant:5}Adds (18-24)-(30-36) Chaos Damage to Attacks while you have a Bestial Minion -{variant:3}Adds (11-16)-(21-25) Physical Damage to Attacks while you have a Bestial Minion -{variant:6}Adds (23-31)-(37-47) Physical Damage to Attacks while you have a Bestial Minion ]], -- Body: Energy Shield [[ @@ -500,8 +499,8 @@ The Apostate Cabalist Regalia Requires Level 35 Source: Drops from unique{Synthete Nightmare} in normal{The Cortex} (Uber) -+(30–50) to Strength -+(20–30)% to all Elemental Resistances ++(30-50) to Strength ++(20-30)% to all Elemental Resistances Gain Maximum Life instead of Maximum Energy Shield from Equipped Armour Items ]],[[ The Beast Fur Shawl @@ -511,11 +510,11 @@ Variant: Pre 3.19.0 Variant: Current Implicits: 0 40% increased Spell Damage -{variant:1}+(50-65) to maximum Energy Shield +{variant:1}+(55-65) to maximum Energy Shield {variant:2}+(15-25) to maximum Energy Shield {variant:1,2}(110-130)% increased Energy Shield {variant:3}(120-160)% increased Energy Shield -{variant:1,2}(30-40)% increased Energy Shield Recovery Rate +{variant:1,2}(30-40)% increased Energy Shield Recovery rate {variant:3}(50-100)% increased Energy Shield Recovery rate 10% increased Area of Effect {variant:1,2}5% increased Damage taken @@ -576,8 +575,8 @@ Implicits: 0 {variant:5,6}(210-250)% increased Energy Shield {variant:1,2,3}20% reduced maximum Life {variant:4,5,6}10% increased maximum Life -{variant:1,2,3}Blood Magic {variant:6}Skills gain a Base Life Cost equal to 100% of Base Mana Cost +{variant:1,2,3}Blood Magic ]],[[ Replica Covenant Spidersilk Robe @@ -613,11 +612,11 @@ Socketed Gems are Supported by Level 20 Blasphemy Grants Level 20 Summon Doedre's Effigy Skill Socketed Hex Curse Skills are Triggered by Doedre's Effigy when Summoned Hexes from Socketed Skills can apply 5 additional Curses -{variant:2}20% less Effect of Curses from Socketed Hex Skills -{variant:3}20% less Effect of your Curses +20% less Effect of Curses from Socketed Hex Skills +(30-40) to Intelligence (130-150)% increased Energy Shield -{variant:1}(33-25)% reduced Effect of your Curses +{variant:1}(25-33)% reduced Effect of your Curses +{variant:3}20% less Effect of your Curses ]],[[ Fenumus' Shroud Widowsilk Robe @@ -636,24 +635,26 @@ Necromancer Silks League: Harvest Implicits: 0 (100-150)% increased Energy Shield -Minions Convert 2% of their Maximum Life to Maximum Energy Shield per 1% Chaos Resistance they have Chaos Damage taken does not bypass Minions' Energy Shield Minions have (50-100)% faster start of Energy Shield Recharge While Minions have Energy Shield, their Hits Ignore Monster Elemental Resistances +Minions Convert 2% of their Maximum Life to Maximum Energy Shield per 1% Chaos Resistance they have ]],[[ Garb of the Ephemeral Savant's Robe League: Synthesis Source: Drops from unique{Synthete Nightmare} in normal{The Cortex} Implicits: 0 -{fractured}(180-230)% increased Energy Shield +600 Strength and Intelligence Requirement -Gain a Divine Charge on Hit +{fractured}(180-230)% increased Energy Shield +Never deal Critical Strikes +Nearby Enemies cannot deal Critical Strikes +Action Speed cannot be modified to below Base Value +Nearby Allies' Action Speed cannot be modified to below Base Value +10 to maximum Divine Charges +Gain a Divine Charge on Hit You gain Divinity for 10 seconds on reaching maximum Divine Charges Lose all Divine Charges when you gain Divinity -Nearby Allies' Action Speed cannot be modified to below base value -Nearby Enemies cannot deal Critical Strikes ]],[[ Infernal Mantle {variant:1}Occultist's Vestment @@ -689,7 +690,7 @@ Implicits: 1 10% faster start of Energy Shield Recharge +(30-40)% to Lightning Resistance Reflects 1 to 250 Lightning Damage to Melee Attackers -Chaos Damage does not bypass Energy Shield +Chaos Damage taken does not bypass Energy Shield ]],[[ Skin of the Loyal Simple Robe @@ -774,8 +775,8 @@ Variant: Pre 1.3.0 Variant: Pre 2.6.0 Variant: Current Implicits: 0 -{variant:1}Adds 1 to 25 Lightning Damage {variant:2,3,4}Adds 1 to 40 Lightning Damage to Attacks +{variant:1}Adds 1 to 25 Lightning Damage {variant:1,2,3}(75-100)% increased Energy Shield {variant:4}(125-150)% increased Energy Shield {variant:1}+(20-25)% to Chaos Resistance @@ -801,7 +802,7 @@ Implicits: 0 (30-40)% increased maximum Life +(10-15)% to all Elemental Resistances 50% increased Flask Life Recovery rate -Extra Gore +Extra gore ]],[[ Cherrubim's Maleficence Triumphant Lamellar @@ -829,16 +830,16 @@ Implicits: 0 {variant:4,5,6}(180-220)% increased Armour and Evasion {variant:1,2}+(40-60) to maximum Life {variant:3,4,5,6}+(60-90) to maximum Life -{variant:1,2,3,4}(0.4-0.6)% of Physical Attack Damage Leeched as Life -{variant:5}2% of Physical Attack Damage Leeched as Life +{variant:5}2% of Attack Damage Leeched as Life {variant:6}2% of Attack Damage Leeched as Life You lose all Endurance Charges when Hit You gain an Endurance Charge on Kill -{variant:1}You gain Onslaught for 1 seconds per Endurance Charge when Hit +{variant:1}You gain Onslaught for 1 second per Endurance Charge when Hit {variant:2}You gain Onslaught for 2 seconds per Endurance Charge when Hit {variant:3,4,5,6}You gain Onslaught for 5 seconds per Endurance Charge when Hit -{variant:3,4}(60-100)% increased Onslaught Effect -{variant:5,6}100% increased Onslaught Effect +{variant:3,4}(60-100)% increased Effect of Onslaught on you +{variant:5,6}100% increased Effect of Onslaught on you +{variant:1,2,3,4}(0.4-0.6)% of Physical Attack Damage Leeched as Life ]],[[ Farrul's Fur Triumphant Lamellar @@ -848,7 +849,7 @@ Implicits: 0 (100-150)% increased Armour and Evasion +(80-100) to maximum Life Aspect of the Cat has no Reservation -+2.00 seconds to Cat's Stealth Duration ++2 seconds to Cat's Stealth Duration 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 ]],[[ @@ -859,8 +860,8 @@ Source: Steal from a unique{Curio Display} during a Grand Heist Implicits: 0 (100-150)% increased Armour and Evasion +(80-100) to maximum Life -+2.00 seconds to Cat's Agility Duration Aspect of the Cat has no Reservation ++2 seconds to Cat's Stealth Duration Gain up to your maximum number of Frenzy and Endurance Charges when you gain Cat's Agility You have Onslaught while you have Cat's Agility ]],[[ @@ -872,7 +873,7 @@ Variant: Current Implicits: 0 {variant:1}(60-100)% increased Global Physical Damage {variant:2,3}100% increased Global Physical Damage -{variant:3}(300-400)% increased Armour and Evasion Rating +{variant:3}(300-400)% increased Armour and Evasion {variant:1}+(130-160) to maximum Life {variant:2}+(200-240) to maximum Life {variant:3}+(240-300) to maximum Life @@ -908,8 +909,7 @@ Implicits: 0 5% increased Movement Speed 20% chance to Poison on Hit with Attacks Cannot be Poisoned -]], -[[ +]],[[ Rigwald's Hunt General's Brigandine Requires Level 66, 103 Str, 103 Dex @@ -937,11 +937,11 @@ Implicits: 0 {variant:1,2}+10% to all Elemental Resistances {variant:3,4,5}+15% to all Elemental Resistances {variant:1,2,3,4}Gain an Endurance Charge when you take a Critical Strike -{variant:5}Gain up to maximum Endurance Charges when you take a Critical Strike -{variant:1,2,3}Regenerate 2% of Life per Second while on Low Life +{variant:1,2,3}Regenerate 2% of Life per second while on Low Life {variant:1,2,3,4}Share Endurance Charges with nearby party members -{variant:5}Your nearby party members maximum Endurance Charges is equal to yours +{variant:5}Gain up to maximum Endurance Charges when you take a Critical Strike {variant:4}Regenerate 2% of Life per second if you have been Hit Recently +{variant:5}Your nearby party members maximum Endurance Charges is equal to yours ]],[[ Replica Ambu's Charge Crusader Chainmail @@ -963,8 +963,9 @@ Trigger Level 20 Animate Guardian's Weapon when Animated Guardian Kills an Enemy (150-190)% increased Armour and Energy Shield +(60-90) to maximum Life Animated Guardian deals 5% increased Damage per Animated Weapon -Animated Minions' Melee Attacks deal Splash Damage to surrounding targets -Animated Minions' Melee Attacks deal 50% less Damage to surrounding targets +Animated and Manifested Minions' Melee Strikes deal Splash +Damage to surrounding targets +Animated and Manifested Minions' Melee Strikes deal 50% less Splash Damage You cannot have Non-Animated, Non-Manifested Minions ]],[[ Doryani's Prototype @@ -980,11 +981,11 @@ Nearby Enemies have Lightning Resistance equal to yours ]],[[ The Fourth Vow Devout Chainmail -Physical Damage taken bypasses Energy Shield (150-250)% increased Armour and Energy Shield +(17-29)% to Chaos Resistance Regenerate 3% of Life per second Armour also applies to Chaos Damage taken from Hits +Physical Damage taken bypasses Energy Shield ]],[[ Geofri's Sanctuary Elegant Ringmail @@ -1040,8 +1041,7 @@ Implicits: 0 {variant:1}(120-140)% increased Armour and Energy Shield {variant:2}(220-240)% increased Armour and Energy Shield +(80-90) to maximum Life -{variant:1}(0.8-1)% of Physical Attack Damage Leeched as Life -{variant:2}(0.8-1)% of Attack Damage Leeched as Life +{variant:1,2}(0.8-1)% of Attack Damage Leeched as Life {variant:2}Gain (10-20)% of Elemental Damage as Extra Chaos Damage 25% of Elemental Damage from Hits taken as Chaos Damage (20-30)% increased Light Radius @@ -1140,8 +1140,7 @@ Trigger Level 10 Contaminate when you Kill an Enemy (7-10)% increased maximum Life {variant:1}+(17-23)% to Chaos Resistance {variant:2}+(29-43)% to Chaos Resistance -{variant:1}Enemies on Fungal Ground you Kill Explode, dealing 5% of their Life as Chaos Damage -{variant:2}Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage +Enemies on Fungal Ground you Kill Explode, dealing 10% of their Life as Chaos Damage You have Fungal Ground around you while stationary This item can be anointed by Cassia ]],[[ @@ -1169,8 +1168,8 @@ Grants Level 15 Blood Offering Skill (15-25)% increased maximum Life Minions have (20-30)% increased maximum Life Regenerate 1% of Life per second -{variant:1}Minions have (6-10)% chance to Suppress Spell Damage -{variant:2}Minions have (12-15)% chance to Suppress Spell Damage +{variant:1}Minions have +(6-10)% chance to Suppress Spell Damage +{variant:2}Minions have +(12-15)% chance to Suppress Spell Damage ]],[[ Carcass Jack Varnished Coat @@ -1199,8 +1198,8 @@ Implicits: 0 {variant:4,5}(300-400)% increased Evasion and Energy Shield {variant:1,2}+(90-110) to maximum Mana {variant:3,4,5}+(100-150) to maximum Mana -{variant:1,2}(40-50)% increased Mana Regeneration Rate {variant:3,4,5}Regenerate 1% of Mana per second +{variant:1,2}(40-50)% increased Mana Regeneration Rate {variant:1,3,4}10% of Damage is taken from Mana before Life Mind Over Matter ]],[[ @@ -1263,8 +1262,9 @@ Implicits: 0 {variant:1,2}(25-40)% increased Effect of Shock {variant:3}(15-25)% increased Effect of Shock {variant:1}Shocked Enemies you Kill Explode, dealing (5-10)% of +{variant:1}their Life as Lightning Damage which cannot Shock {variant:2,3}Shocked Enemies you Kill Explode, dealing 5% of -their Life as Lightning Damage which cannot Shock +{variant:2,3}their Life as Lightning Damage which cannot Shock Unaffected by Shock ]],[[ The Restless Ward @@ -1356,7 +1356,7 @@ Implicits: 1 +(80-100) to maximum Life Temporal Rift has no Reservation (80-100)% of Damage taken Recouped as Life -Debuffs on you Expire (80-100)% faster +Debuffs on you expire (80-100)% faster ]],[[ Tinkerskin Sadist Garb @@ -1403,7 +1403,7 @@ Trigger a Socketed Spell on Unarmed Melee Critical Strike, with a 0.25 second Co (1-7)% increased Movement Speed +(0.1-0.7) metres to Melee Strike Range with Unarmed Attacks +(1-7)% to Unarmed Melee Attack Critical Strike Chance -+(10-77)% to Critical Strike Multiplier with Unarmed Melee Attack ++(10-77)% to Critical Strike Multiplier with Unarmed Melee Attacks ]], -- Body: Armour/Evasion/Energy Shield [[ @@ -1448,13 +1448,13 @@ Implicits: 1 {variant:1,10}(380-420)% increased Armour {variant:2,11}(200-220)% increased Evasion Rating and Armour {variant:3,12}(380-420)% increased Evasion Rating -{variant:4,5,13,14}(200-220)% increased Evasion and Energy Shield -{variant:6,15}(270-300)% increased Energy Shield {variant:7,8,16,17}(200-220)% increased Armour and Energy Shield +{variant:4,5,13,14}(200-220)% increased Evasion and Energy Shield {variant:9,18}(270-340)% increased Armour, Evasion and Energy Shield -{variant:1,2,3,4,7,10,11,12,13,16}+(90-100) to Maximum Life -{variant:5,6,8}+(90-100) to Maximum Energy Shield -{variant:14,15,17}+(70-80) to Maximum Energy Shield +{variant:5,6,8}+(90-100) to maximum Energy Shield +{variant:14,15,17}+(70-80) to maximum Energy Shield +{variant:6,15}(270-300)% increased Energy Shield +{variant:1,2,3,4,7,10,11,12,13,16}+(90-100) to maximum Life +(20-24)% to all Elemental Resistances Gain 100 Life per Enemy Killed Gain 100 Mana per Enemy Killed @@ -1471,9 +1471,9 @@ Has an additional Implicit Mod {variant:2}(250-350)% increased Armour, Evasion and Energy Shield Recover (3-5)% of Life on Kill Recover (3-5)% of Energy Shield on Kill --(6-4)% to all Resistances for each Corrupted Item Equipped -8% increased Maximum Energy Shield for each Corrupted Item Equipped 6% increased Maximum Life for each Corrupted Item Equipped +8% increased Maximum Energy Shield for each Corrupted Item Equipped +-(6-4)% to all Resistances for each Corrupted Item Equipped Corrupted ]], } diff --git a/src/Data/Uniques/boots.lua b/src/Data/Uniques/boots.lua index a38bee0c7b..1134bdb385 100644 --- a/src/Data/Uniques/boots.lua +++ b/src/Data/Uniques/boots.lua @@ -51,11 +51,11 @@ Requires Level 54, 95 Str {variant:1}+(30-60) to maximum Life 20% increased Movement Speed Moving while Bleeding doesn't cause you to take extra Damage -{variant:1}15% increased Movement Speed while Bleeding -{variant:2}20% increased Movement Speed while Bleeding {variant:2}Bleeding on you expires 75% slower while Moving -{variant:2}Cannot be Stunned while Bleeding {variant:2}Cannot be Poisoned while Bleeding +{variant:2}Cannot be Stunned while Bleeding +{variant:1}15% increased Movement Speed while Bleeding +{variant:2}20% increased Movement Speed while Bleeding 50% chance to be inflicted with Bleeding when Hit by an Attack ]],[[ The Red Trail @@ -71,9 +71,9 @@ Requires Level 68, 120 Str {variant:2}+(60-100) to maximum Life {variant:1}25% increased Movement Speed {variant:2}30% increased Movement Speed +10% additional Physical Damage Reduction while stationary Gain a Frenzy Charge on Hit while Bleeding {variant:1}15% increased Movement Speed while Bleeding -10% additional Physical Damage Reduction while stationary 50% chance to be inflicted with Bleeding when Hit by an Attack Gore Footprints ]],[[ @@ -92,9 +92,9 @@ Requires Level 68, 120 Str {variant:2}30% increased Movement Speed Gain a Power Charge on Hit while Poisoned +30% to Chaos Resistance while stationary -15% increased Movement Speed while Poisoned Necrotic Footprints 50% chance for Spell Hits against you to inflict Poison +{variant:1}15% increased Movement Speed while Poisoned ]],[[ Kahuturoa's Certainty Ancient Greaves @@ -113,8 +113,8 @@ Has no Sockets Cannot be Knocked Back {variant:1}+(120-150) to maximum Life {variant:2}+(150-200) to maximum Life +{variant:2}Action Speed cannot be modified to below Base Value Unwavering Stance -{variant:2}Cannot Be Slowed to Below Base Speed ]],[[ Redblade Tramplers Ancient Greaves @@ -122,10 +122,10 @@ League: Warbands Variant: Pre 2.6.0 Variant: Current Requires Level 46, 82 Str -{variant:2}+(50-70) to maximum Life Adds (2-5) to (7-10) Physical Damage to Attacks (5-10)% reduced Enemy Stun Threshold (150-200)% increased Armour +{variant:2}+(50-70) to maximum Life +(20-30)% to Fire Resistance {variant:1}20% increased Movement Speed {variant:2}25% increased Movement Speed @@ -149,10 +149,10 @@ The Tempest Rising Goliath Greaves Source: Drops from unique{Sirus, Awakener of Worlds} (Uber) Requires Level 54, 95 Str -(80–120)% increased Armour +(80-120)% increased Armour 30% increased Movement Speed -(5–25)% increased Duration of Ailments on Enemies -Damaging Ailments deal damage (5–25)% faster +(5-25)% increased Duration of Ailments on Enemies +Damaging Ailments deal damage (5-25)% faster You and Enemies in your Presence count as moving while affected by Elemental Ailments ]],[[ Torchoak Step @@ -199,14 +199,11 @@ Vaal Greaves Variant: Pre 3.25.0 Variant: Current Source: Drops from unique{The Searing Exarch} +{variant:2}Socketed Slam Gems are Supported by Level 25 Earthbreaker +(80-100) to maximum Life 30% increased Movement Speed -{variant:1}100% increased Effect of Buffs your Ancestor Totems grant while Active -{variant:1}Buffs from Active Ancestor Totems Linger for 4 seconds -{variant:1}Maximum 1 Buff from an Active Ancestor Totem at a time -{variant:2}Socketed Slam Gems are Supported by Level 25 Earthbreaker -{variant:2}Ancestral Bond -{variant:2}(3-5)% of Damage from hits is taken from your nearest Totem's Life before you +{variant:2}(3-5)% of Damage from Hits is taken from your nearest Totem's Life before you +Ancestral Bond ]], -- Boots: Evasion [[ @@ -227,11 +224,11 @@ Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Apex of Sacri Variant: Pre 3.16.0 Variant: Current Requires Level 69, 120 Dex +{variant:1}+(21-24)% chance to Suppress Spell Damage +{variant:2}+(20-26)% chance to Suppress Spell Damage 180% increased Evasion Rating +(55-75) to maximum Life 30% increased Movement Speed -{variant:1}(21-24)% chance to Suppress Spell Damage -{variant:2}(20-26)% chance to Suppress Spell Damage ]],[[ The Blood Dance Sharkskin Boots @@ -249,10 +246,10 @@ Requires Level 44, 79 Dex {variant:3}Regenerate 0.5% of Life per second per Frenzy Charge {variant:4}Regenerate 0.8% of Life per second per Frenzy Charge (20-30)% chance to gain a Frenzy Charge on Kill -Gore Footprints {variant:1}3% increased Damage per Frenzy Charge with Hits against Enemies on Low Life {variant:2,3}6% increased Damage per Frenzy Charge with Hits against Enemies on Low Life {variant:4}(20-30)% increased Damage per Frenzy Charge with Hits against Enemies on Low Life +Gore Footprints ]],[[ Deerstalker Deerskin Boots @@ -309,7 +306,7 @@ Trigger Level 20 Intimidating Cry when you lose Cat's Stealth (110-150)% increased Evasion Rating +(50-70) to maximum Life 20% increased Movement Speed -(40-50)% chance to avoid Bleeding +(40-50)% chance to Avoid Bleeding 20% increased Movement Speed while you have Cat's Stealth ]],[[ Goldwyrm @@ -319,9 +316,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 34, 62 Dex 60% increased Mana Regeneration Rate -{variant:1}(20-30)% increased Quantity of Items Found -{variant:2}(14-20)% increased Quantity of Items Found -{variant:3}(20-40)% increased Rarity of Items Found +{variant:1}(20-30)% increased Quantity of Items found +{variant:2}(14-20)% increased Quantity of Items found +{variant:3}(20-40)% increased Rarity of Items found +(40-50)% to Fire Resistance 10% increased Movement Speed ]],[[ @@ -361,7 +358,7 @@ Requires Level 62, 117 Dex {variant:3}+(100-160) to maximum Energy Shield {variant:4}+(100-150) to maximum Energy Shield 30% increased Movement Speed -Enemies Cannot Leech Life From You +Enemies Cannot Leech Life From you ]],[[ Temptation Step Shagreen Boots @@ -372,7 +369,8 @@ Requires Level 55, 97 Dex +(19-29)% to Chaos Resistance 15% increased Damage for each Poison on you up to a maximum of 75% 10% increased Movement Speed for each Poison on you up to a maximum of 50% -Poison you inflict with Travel Skills is Reflected to you if you have fewer than 5 Poisons on you +Poison you inflict with Travel Skills is Reflected to you if you +have fewer than 5 Poisons on you ]],[[ Three-step Assault Shagreen Boots @@ -382,8 +380,8 @@ Variant: Current Requires Level 55, 97 Dex +(25-35) to Dexterity (20-40)% increased Evasion Rating -{variant:1}40% increased Evasion Rating while you have Onslaught -{variant:2,3}100% increased Evasion Rating while you have Onslaught +{variant:1}40% increased Evasion Rating during Onslaught +{variant:2,3}100% increased Evasion Rating during Onslaught {variant:1}+(30-60) to maximum Life {variant:2,3}+(50-70) to maximum Life {variant:1}20% increased Movement Speed @@ -416,29 +414,23 @@ Variant: Current {variant:1}30% increased Movement Speed when on Low Life {variant:3}(10-20)% increased Movement Speed when on Low Life {variant:1,2}(5-10)% of Damage taken Recouped as Mana -{variant:2}10% increased Movement Speed for you and nearby Allies {variant:3}Quicksilver Flasks you Use also apply to nearby Allies +{variant:2}10% increased Movement Speed for you and nearby Allies ]], -- Boots: Energy Shield [[ Bones of Ullr Silk Slippers -Variant: Pre 3.8.0 -Variant: Current Requires Level 22, 42 Int +(40-60)% increased Energy Shield +20 to maximum Life +20 to maximum Mana -(40-60)% increased Energy Shield ++1 to Level of all Raise Zombie Gems ++1 to Level of all Raise Spectre Gems (5-15)% increased Movement Speed -{variant:1}+1 to Maximum number of Raised Zombies -{variant:1}+1 to Maximum number of Spectres -{variant:2}+1 to Level of all Raise Zombie Gems -{variant:2}+1 to Level of all Raise Spectre Gems ]],[[ Replica Bones of Ullr Silk Slippers -Variant: Pre 3.23.0 -Variant: Current League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level 22, 42 Int @@ -446,10 +438,8 @@ Requires Level 22, 42 Int +20 to maximum Life +20 to maximum Mana (5-15)% increased Movement Speed -{variant:1}Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Unique Enemy -{variant:2}Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy -{variant:1}Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Unique Enemy -{variant:2}Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy +Summoned Phantasms have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy +Summoned Raging Spirits have 10% chance to refresh their Duration when they Hit a Rare or Unique Enemy ]],[[ Doryani's Delusion Sorcerer Boots @@ -488,9 +478,9 @@ Requires Level 67, 120 Int Inya's Epiphany Arcanist Slippers Requires Level 61, 119 Int +(5-8)% increased Intelligence +(50-70) to maximum Life 25% increased Movement Speed -(5-8)% increased Intelligence 5% increased Damage per Power Charge 25% chance that if you would gain Power Charges, you instead gain up to your maximum number of Power Charges @@ -518,10 +508,10 @@ Requires Level 53, 94 Int {variant:1,2,3,4}(6-7)% Chance to Block Spell Damage {variant:5}(4-6)% Chance to Block Spell Damage {variant:6}(15-20)% Chance to Block Spell Damage -{variant:1,2}+(80-100) to maximum Mana -{variant:3,4,5,6}+(40-60) to maximum Mana {variant:1,2}(150-200)% increased Energy Shield {variant:3,4,5}(140-180)% increased Energy Shield +{variant:1,2}+(80-100) to maximum Mana +{variant:3,4,5,6}+(40-60) to maximum Mana {variant:1,3,4,5,6}+20% to all Elemental Resistances {variant:2}+8% to all Elemental Resistances {variant:1,2,3,6}20% increased Movement Speed @@ -538,28 +528,33 @@ Requires Level 32, 54 Int {variant:1}+10 to Intelligence {variant:2,3,4}+(20-30) to Intelligence {variant:1}(50-70)% increased Energy Shield -{variant:2,3,4}(100-140)% increased Energy Shield +{variant:1}(10-15)% increased Stun and Block Recovery +{variant:2,3}(100-140)% increased Energy Shield +{variant:2,3}(10-15)% increased Stun and Block Recovery +{variant:4}(100-140)% increased Energy Shield +{variant:4}(150-200)% increased Stun and Block Recovery {variant:3,4}15% increased Movement Speed {variant:1,2}35% increased Movement Speed when on Full Life {variant:3,4}20% increased Movement Speed when on Full Life -{variant:1,2,3}(10-15)% increased Stun and Block Recovery -{variant:4}(150-200)% increased Stun and Block Recovery ]],[[ Shavronne's Gambit Scholar Boots Source: No longer obtainable Variant: Pre 2.6.0 +Variant: Pre 3.19.0 Variant: Current Requires Level 32, 54 Int +10 to Dexterity +(20-30) to Intelligence -(100-140)% increased Energy Shield -{variant:2}15% increased Movement Speed +{variant:1,2}(100-140)% increased Energy Shield +{variant:1,2}(10-15)% increased Stun and Block Recovery +{variant:3}(100-140)% increased Energy Shield +{variant:3}(150-200)% increased Stun and Block Recovery +{variant:2,3}15% increased Movement Speed {variant:1}35% increased Movement Speed when on Full Life -{variant:2}20% increased Movement Speed when on Full Life +{variant:2,3}20% increased Movement Speed when on Full Life {variant:1}Regenerate 2% of Energy Shield per second while on Low Life -{variant:2}Regenerate 1% of Energy Shield per second -(10-15)% increased Stun and Block Recovery +{variant:2,3}Regenerate 1% of Energy Shield per second ]],[[ Skyforth Sorcerer Boots @@ -578,9 +573,9 @@ League: Warbands Variant: Pre 3.0.0 Variant: Current Requires Level 67, 123 Int ++(20-30) to maximum Energy Shield {variant:1}(110-140)% increased Energy Shield {variant:2}(50-80)% increased Energy Shield -+(20-30) to maximum Energy Shield 30% increased Movement Speed 20% increased Movement Speed on Shocked Ground 50% increased Damage on Burning Ground @@ -590,8 +585,8 @@ Unaffected by Desecrated Ground Wanderlust Wool Shoes +5 to Dexterity -(20-40)% increased Mana Regeneration Rate +(10-20) to maximum Energy Shield +(20-40)% increased Mana Regeneration Rate 20% increased Movement Speed Cannot be Frozen ]],[[ @@ -630,10 +625,10 @@ Source: Drops from unique{Mercenary} after winning a duel League: Mercenaries of Trarthus Requires Level 54, 69 Int +(5-15) to Intelligence -+(40-70) to Maximum Mana ++(40-70) to maximum Mana +(5-15)% to all Elemental Resistances Gain Arcane Surge when you use a Movement Skill -Increase to Cast Speed from Arcane Surge also applies to Movement Speed +Increases to Cast Speed from Arcane Surge also applies to Movement Speed ]], -- Boots: Armour/Evasion [[ @@ -650,16 +645,16 @@ Implicits: 3 {variant:2}+(8-12)% to Fire and Lightning Resistances {variant:3}+(8-12)% to Cold and Lightning Resistances Grants Level 1 Embrace Madness Skill -30% increased Movement Speed +{variant:3}(20-40)% increased Chaos Damage {variant:1}(150-300)% increased Armour and Evasion -{variant:1}+15 to maximum Fortification while affected by Glorious Madness -{variant:1}20% chance to deal Double Damage while affected by Glorious Madness +30% increased Movement Speed {variant:2}(20-40)% increased Effect of Non-Damaging Ailments +{variant:3}All Damage inflicts Poison while affected by Glorious Madness +{variant:1}20% chance to deal Double Damage while affected by Glorious Madness +{variant:3}Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage {variant:2}You have Igniting, Chilling and Shocking Conflux while affected by Glorious Madness {variant:2}Immune to Elemental Ailments while affected by Glorious Madness -{variant:3}(20-40)% increased Chaos Damage -{variant:3}Enemies you Kill while affected by Glorious Madness have a 40% chance to Explode, dealing a quarter of their Life as Chaos Damage -{variant:3}All Damage inflicts Poison while affected by Glorious Madness +{variant:1}+15 to maximum Fortification while affected by Glorious Madness ]],[[ Darkray Vectors Dragonscale Boots @@ -668,14 +663,14 @@ Variant: Pre 3.16.0 Variant: Current Requires Level 65, 62 Str, 62 Dex {variant:2,3}(40-70)% increased Armour and Evasion +{variant:3}10% increased Evasion Rating per Frenzy Charge +(20-40)% to Lightning Resistance 5% increased Movement Speed per Frenzy Charge -+1 to Maximum Frenzy Charge ++1 to Maximum Frenzy Charges {variant:1}50% reduced Frenzy Charge Duration {variant:2,3}40% reduced Frenzy Charge Duration 25% reduced Light Radius -{variant:1,2}2% chance to Suppress Spell Damage per Frenzy Charge -{variant:3}10% increased Evasion Rating per Frenzy Charge +{variant:1,2}+2% chance to Suppress Spell Damage per Frenzy Charge ]],[[ Dusktoe {variant:1}Leatherscale Boots @@ -693,9 +688,9 @@ Variant: Current {variant:4}20% increased Movement Speed {variant:1,2,3}50% increased Stun and Block Recovery 20% reduced Light Radius ++50% to Chaos Resistance during any Flask Effect {variant:3}Adds (15-20) to (25-30) Chaos Damage to Spells and Attacks during any Flask Effect {variant:4}Adds (30-40) to (50-60) Chaos Damage to Spells and Attacks during any Flask Effect -+50% to Chaos Resistance during any Flask Effect ]],[[ Duskblight Ironscale Boots @@ -721,12 +716,13 @@ Variant: Current League: Ritual Requires Level 69, 48 Str, 48 Dex (200-300)% increased Armour and Evasion -{variant:1}-(15-10)% to all Elemental Resistances +{variant:1}+(-15-10)% to all Elemental Resistances 30% increased Movement Speed -{variant:1}Drops Scorched Ground while moving, lasting 4 seconds {variant:2}Nearby Enemies are Scorched +{variant:1}Drops Scorched Ground while moving, lasting 4 seconds (30-50)% increased Effect of Scorch -(30-40)% chance when you Kill a Scorched Enemy to Burn Each surrounding Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second +(30-40)% chance when you Kill a Scorched Enemy to Burn Each surrounding +Enemy for 4 seconds, dealing 8% of the Killed Enemy's Life as Fire Damage per second ]],[[ Annihilation's Approach Dragonscale Boots @@ -750,7 +746,7 @@ Requires Level 59, 56 Str, 56 Dex +(30-40) to Dexterity (100-150)% increased Armour and Evasion +(20-40)% to Lightning Resistance -When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased until Hit again +When Hit, gain a random Movement Speed modifier from 40% reduced to 100% increased, until Hit again ]],[[ Lioneye's Paws Bronzescale Boots @@ -787,8 +783,8 @@ Variant: Current Requires Level 42, 40 Str, 40 Dex {variant:1}Adds (15-19) to (28-35) Cold Damage to Spells {variant:2}Adds (25-30) to (40-50) Cold Damage to Spells -{variant:1}(20-40)% increased Critical Strike Chance for Spells -{variant:2}(50-70)% increased Critical Strike Chance for Spells +{variant:1}(20-40)% increased Spell Critical Strike Chance +{variant:2}(50-70)% increased Spell Critical Strike Chance (100-150)% increased Evasion Rating +(20-30)% to Cold Resistance {variant:1}20% increased Movement Speed @@ -820,7 +816,7 @@ Adds 1 to 80 Chaos Damage to Attacks {variant:2}+(13-19)% to Chaos Resistance {variant:1}20% increased Movement Speed {variant:2}25% increased Movement Speed -{variant:1}+1 to Maximum number of Skeletons +{variant:1}+1 to maximum number of Skeletons {variant:2}Summoned Skeleton Warriors are Permanent and Follow you {variant:2}Summon Skeletons cannot Summon more than 1 Skeleton Warrior ]],[[ @@ -848,7 +844,7 @@ Requires Level 64, 62 Str, 62 Int +(10-15)% to all Elemental Resistances 25% increased Movement Speed +1 to Maximum Endurance Charges -50% increased Elemental Ailment Duration on You +50% increased Elemental Ailment Duration on you Bleeding cannot be inflicted on you ]],[[ Gang's Momentum @@ -861,8 +857,8 @@ Requires Level 58, 54 Str, 54 Int 25% increased Movement Speed {variant:1}(5-7)% chance to Ignite {variant:2}(10-15)% chance to Ignite -{variant:1}15% increased Damage against Ignited Enemies -{variant:2}(25-40)% increased Damage against Ignited Enemies +{variant:1}15% increased Damage with Hits and Ailments against Ignited Enemies +{variant:2}(25-40)% increased Damage with Hits and Ailments against Ignited Enemies ]],[[ March of the Legion Legion Boots @@ -880,8 +876,6 @@ Socketed Gems are Supported by Level 25 Divine Blessing Ralakesh's Impatience Riveted Boots Variant: Pre 3.19.0 -Variant: Pre 3.23.0 -Variant: Pre 3.24.0 Variant: Pre 3.26.0 Variant: Endurance Current Variant: Frenzy Current @@ -889,21 +883,13 @@ Variant: Power Current Requires Level 36, 35 Str, 35 Int +(15-25)% to Cold Resistance +(15-25)% to Chaos Resistance -{variant:1}20% increased Movement Speed -{variant:2,3}30% increased Movement Speed -{variant:5,6,7}(15-25)% increased Movement Speed -{variant:5,6,7}Corrupted Blood cannot be inflicted on you +{variant:3,4,5}(15-25)% increased Movement Speed +{variant:3,4,5}Corrupted Blood cannot be inflicted on you +{variant:1,2,3}Count as having maximum number of Endurance Charges +{variant:1,2,4}Count as having maximum number of Frenzy Charges +{variant:1,2,5}Count as having maximum number of Power Charges {variant:1}Gain a Frenzy, Endurance, or Power Charge once per second while you are Stationary -{variant:1,2}Lose all Frenzy, Endurance, and Power Charges when you Move -{variant:2}Minimum Endurance Charges equal to Maximum while stationary -{variant:2}Minimum Frenzy Charges equal to Maximum while stationary -{variant:2}Minimum Power Charges equal to Maximum while stationary -{variant:3,4}Count as having maximum number of Endurance Charges -{variant:3,4}Count as having maximum number of Frenzy Charges -{variant:3,4}Count as having maximum number of Power Charges -{variant:5}Count as having maximum number of Endurance Charges -{variant:6}Count as having maximum number of Frenzy Charges -{variant:7}Count as having maximum number of Power Charges +{variant:1}Lose all Frenzy, Endurance, and Power Charges when you Move ]],[[ Wake of Destruction Mesh Boots @@ -915,7 +901,7 @@ Adds 1 to 120 Lightning Damage to Attacks (20-60)% increased Armour and Energy Shield Gain (10-20) Life per Enemy Killed {variant:2,3}15% increased Movement Speed -{variant:1,2}10% Chance to Cause Monsters to Flee +{variant:1,2}10% chance to Cause Monsters to Flee {variant:3}Drops Shocked Ground while moving, lasting 2 seconds ]], -- Boots: Evasion/Energy Shield @@ -927,13 +913,13 @@ Variant: Pre 2.6.0 Variant: Pre 3.0.0 Variant: Current Requires Level 41, 40 Dex, 40 Int +20% increased Global Physical Damage {variant:1}+(60-80) to maximum Energy Shield {variant:2}+(120-150) to maximum Energy Shield {variant:3}+(80-100) to maximum Energy Shield -20% increased Global Physical Damage ++(20-30)% to Lightning Resistance {variant:1}20% increased Movement Speed {variant:2,3}25% increased Movement Speed -+(20-30)% to Lightning Resistance (20-40)% increased Projectile Damage Unaffected by Shocked Ground ]],[[ @@ -950,11 +936,11 @@ Requires Level 69, 82 Dex, 42 Int {variant:2,4}Has 2 Abyssal Sockets Triggers Level 20 Death Walk when Equipped {variant:1,2}(4-6)% increased maximum Life -{variant:3,4}(40-60)% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel {variant:1,2}30% increased Movement Speed +{variant:1,2}10% increased Damage for each type of Abyss Jewel affecting you +{variant:3,4}(40-60)% reduced Duration of Elemental Ailments on You while affected by a Rare Abyss Jewel {variant:3,4}(24-32)% increased Movement Speed while affected by a Magic Abyss Jewel -{variant:1,2}10% increased Damage for each type of Abyssal Jewel affecting you -{variant:3,4}(16-24)% increased Reservation Efficiency while affected by a Unique Abyss Jewel +{variant:3,4}(16-24)% increased Reservation Efficiency of Skills while affected by a Unique Abyss Jewel ]],[[ Corpsewalker Carnal Boots @@ -967,8 +953,8 @@ Triggers Level 20 Corpse Walk when Equipped (80-120)% increased Evasion and Energy Shield 25% increased Movement Speed {variant:1}(20-40)% increased Damage if you have Consumed a corpse Recently +{variant:2}For each nearby corpse, Regenerate 8 Life per second {variant:1}For each nearby corpse, Regenerate 0.25% Life per second, up to 3% -{variant:2}For each nearby corpse, Regenerate 8.00 Life per Second {variant:2}For each nearby corpse, 1% increased Movement Speed ]],[[ Dance of the Offered @@ -1000,11 +986,11 @@ Requires Level 55, 52 Dex, 52 Int (15-20)% increased maximum Mana +(25-30)% to Lightning Resistance 30% increased Movement Speed -{variant:1}2% increased Evasion per 500 Maximum Mana -{variant:2}10% increased Evasion per 500 Maximum Mana -{variant:3}20% increased Evasion per 500 Maximum Mana +{variant:1}2% increased Evasion Rating per 500 Maximum Mana +{variant:2}10% increased Evasion Rating per 500 Maximum Mana +{variant:3}20% increased Evasion Rating per 500 Maximum Mana You have Onslaught while not on Low Mana -Lose 7% of maximum Mana per Second +Lose 7% of Mana per Second ]],[[ Fenumus' Spinnerets Assassin's Boots @@ -1041,12 +1027,12 @@ Requires Level 16, 18 Dex, 18 Int +(20-30) to Dexterity +(30-50) to Evasion Rating +(15-30) to maximum Energy Shield -20% increased Movement Speed +20% to Cold Resistance +20% increased Movement Speed {variant:1}30% increased Physical Damage taken {variant:2}20% increased Physical Damage taken {variant:3}15% increased Damage taken while on Full Energy Shield -20% increased Movement Speed when on Full Energy Shield +20% increased Movement Speed while on Full Energy Shield ]],[[ The Stampede Assassin's Boots @@ -1055,7 +1041,7 @@ League: Blight Source: Drops in Blighted Maps (100-150)% increased Evasion and Energy Shield (30-40)% increased Stun and Block Recovery -Travel Skills have (50-80)% increased Cooldown Recovery Speed +(50-80)% increased Cooldown Recovery Rate of Travel Skills (30-40)% increased Mana Regeneration Rate while moving Your Movement Speed is 150% of its base value This item can be anointed by Cassia @@ -1065,9 +1051,9 @@ Assassin's Boots League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level 63, 62 Dex, 62 Int +Socketed Travel Skills deal 80% more Damage (100-150)% increased Evasion and Energy Shield (30-40)% increased Stun and Block Recovery -Socketed Travel Skills deal 80% more Damage (30-40)% increased Mana Regeneration Rate while moving Your Movement Speed is 150% of its base value This item can be anointed by Cassia @@ -1102,10 +1088,10 @@ Shackled Boots League: Necropolis Requires Level 34, 34 Dex, 34 Int Grants Level 20 Ravenous Skill -(80–120)% increased Evasion and Energy Shield -+(13–23)% to Chaos Resistance -(20–30)% increased Movement Speed Enemies display their Monster Category +(80-120)% increased Evasion and Energy Shield ++(13-23)% to Chaos Resistance +(20-30)% increased Movement Speed ]],[[ Voidwalker Murder Boots diff --git a/src/Data/Uniques/bow.lua b/src/Data/Uniques/bow.lua index 389d1a04be..a7b3e7b7b7 100644 --- a/src/Data/Uniques/bow.lua +++ b/src/Data/Uniques/bow.lua @@ -14,22 +14,22 @@ Requires Level 62, 212 Dex Source: Vendor Recipe Implicits: 1 {variant:3}+(15-25)% to Global Critical Strike Multiplier +{variant:4,5}Grants Level 30 Dash Skill {variant:1}Adds (60-70) to (180-210) Physical Damage {variant:2,3,4}Adds (95-115) to (240-265) Physical Damage {variant:5}Adds (80-100) to (200-225) Physical Damage {variant:1,2,3}(80-100)% increased Evasion Rating {variant:1,2,3}Bow Attacks fire 2 additional Arrows -{variant:1,2,3}Every 16 seconds you gain Iron Reflexes for 8 seconds -{variant:1,2,3}30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes -{variant:1,2,3}30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes -{variant:1,2,3}You have Far Shot while you do not have Iron Reflexes -{variant:4,5}Grants Level 30 Dash Skill {variant:4,5}Bow Attacks fire 2 additional Arrows if you haven't Cast Dash recently {variant:4,5}(20-30)% increased Attack Speed if you haven't Cast Dash recently {variant:4,5}(100-160)% increased Evasion Rating if you've Cast Dash recently {variant:4,5}(20-30)% increased Movement Speed if you've Cast Dash recently {variant:4,5}Travel Skills other than Dash are Disabled {variant:4,5}Iron Reflexes +{variant:1,2,3}Every 16 seconds you gain Iron Reflexes for 8 seconds +{variant:1,2,3}30% more Damage with Arrow Hits at Close Range while you have Iron Reflexes +{variant:1,2,3}30% increased Attack, Cast and Movement Speed while you do not have Iron Reflexes +{variant:1,2,3}You have Far Shot while you do not have Iron Reflexes ]],[[ Chin Sol Assassin Bow @@ -42,8 +42,8 @@ Variant: Pre 3.17.0 Variant: Current Requires Level 62, 212 Dex Implicits: 2 -{variant:2,3}(6-12)% increased Elemental Damage with Attack Skills {variant:6,7}+(15-25)% to Global Critical Strike Multiplier +{variant:2,3}(6-12)% increased Elemental Damage with Attack Skills +(10-20) to Dexterity {variant:1,2}(75-100)% increased Physical Damage {variant:3,4}(150-180)% increased Physical Damage @@ -52,8 +52,8 @@ Implicits: 2 Adds 25 to 50 Fire Damage {variant:1,2}5% increased Attack Speed {variant:3,4,5,6,7}(10-14)% increased Attack Speed -{variant:1,2,3,4}100% More Damage with Arrow Hits at Close Range -{variant:5,6,7}50% More Damage with Arrow Hits at Close Range +{variant:1,2,3,4}100% more Damage with Arrow Hits at Close Range +{variant:5,6,7}50% more Damage with Arrow Hits at Close Range Bow Knockback at Close Range ]],[[ The Crimson Storm @@ -94,10 +94,13 @@ Variant: Current Requires Level 57, 190 Dex Implicits: 1 {variant:1,2,3,4,5,6,7,8,9,10,11,12,13,14}(4-6)% increased Movement Speed -{variant:15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31}6% increased Movement Speed {variant:1,2,3,4,5,6,7,8,9,10,11,12,13,14}(140-170)% increased Physical Damage {variant:15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31}(60-80)% increased Physical Damage +{variant:7}(8-16)% increased Attack Speed +{variant:8}(8-16)% increased Attack Speed +{variant:9}(7-13)% increased Cast Speed (25-35)% increased Critical Strike Chance +{variant:15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31}6% increased Movement Speed 50% chance to inflict Bleeding on Critical Strike with Attacks Enemies you inflict Bleeding on grant (60-100)% increased Flask Charges Adds (100-120) to (150-165) Physical Damage against Bleeding Enemies @@ -108,11 +111,8 @@ Adds (100-120) to (150-165) Physical Damage against Bleeding Enemies {variant:4}{crafted}(5-6)% increased Damage per Frenzy Charge {variant:5}{crafted}(5-6)% increased Damage per Endurance Charge {variant:6}{crafted}+(30-250) to Accuracy Rating -{variant:7}{crafted}(8-16)% increased Attack Speed {variant:6,7}{crafted}+(7-18)% to Quality -{variant:8}{crafted}(8-16)% increased Attack Speed {variant:8}{crafted}10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy -{variant:9}{crafted}(7-13)% increased Cast Speed {variant:9}{crafted}10% chance to gain Arcane Surge when you Kill an Enemy {variant:10}{crafted}Minions have (16-28)% increased Attack Speed {variant:10}{crafted}Minions have (16-28)% increased Cast Speed @@ -154,8 +154,8 @@ Variant: Pre 3.17.0 Variant: Current Requires Level 62, 212 Dex Implicits: 2 -{variant:1,2}(6-12)% increased Elemental Damage with Attack Skills {variant:6,7}+(15-25)% to Global Critical Strike Multiplier +{variant:1,2}(6-12)% increased Elemental Damage with Attack Skills {variant:1,2,3}(100-125)% increased Physical Damage {variant:4,5,6}(130-150)% increased Physical Damage {variant:7}(60-80)% increased Physical Damage @@ -164,8 +164,8 @@ Implicits: 2 {variant:5,6,7}Adds (15-20) to (25-30) Physical Damage {variant:1,2,3,4}10% increased Attack Speed {variant:5,6,7}20% increased Attack Speed +(15-30)% increased Global Accuracy Rating 25% of Physical Damage Converted to Chaos Damage -(15-30)% increased Accuracy Rating 25% of Physical Damage from Hits taken as Chaos Damage {variant:5,6,7}20% chance for Poisons inflicted with this Weapon to deal 300% more Damage ]],[[ @@ -187,7 +187,7 @@ Implicits: 1 {variant:1,2,4}+100% to Global Critical Strike Multiplier {variant:3}+150% to Global Critical Strike Multiplier {variant:5,6,7}+50% to Global Critical Strike Multiplier -{variant:1,2,3,4,5,6}Adds an additional Arrow +{variant:1,2,3,4,5,6}Bow Attacks fire an additional Arrow {variant:7}Bow Attacks fire 2 additional Arrows ]],[[ Death's Opus @@ -257,8 +257,8 @@ Requires Level 58, 185 Dex (120-160)% increased Physical Damage (16-20)% increased Attack Speed Lose all Frenzy Charges on reaching Maximum Frenzy Charges to make the next Bow Attack you perform fire that many additional Arrows -+(30-50)% to Global Critical Strike Multiplier while you have a Frenzy Charge -(20-40)% chance to gain a Frenzy Charge for each enemy you hit with a Critical Strike ++(30-50)% Global Critical Strike Multiplier while you have a Frenzy Charge +(20-40)% chance to gain a Frenzy Charge for each Enemy you hit with a Critical Strike ]],[[ Hopeshredder Ranger Bow @@ -268,11 +268,12 @@ Variant: Pre 3.4.0 Variant: Current Requires Level 60, 212 Dex Adds (130-150) to (270-300) Cold Damage -4% increased Movement Speed per Frenzy Charge -+(400-500) to Accuracy Rating {variant:2}(15-25)% increased Attack Speed -12 to 14 Cold Damage per Frenzy Charge -2% chance to Avoid Elemental Damage when Hit per Frenzy Charge +{variant:2}+(400-500) to Accuracy Rating +{variant:1}+(400-500) to Accuracy Rating +4% increased Movement Speed per Frenzy Charge +2% chance to Avoid Elemental Damage from Hits per Frenzy Charge +12 to 14 Added Cold Damage per Frenzy Charge 0.5% of Attack Damage Leeched as Life per Frenzy Charge {variant:1}400 Cold Damage taken per second per Frenzy Charge while moving {variant:2}200 Cold Damage taken per second per Frenzy Charge while moving @@ -287,17 +288,17 @@ Variant: Current Requires Level 53, 170 Dex Implicits: 1 (30-50)% increased Critical Strike Chance ++(20-30) to Dexterity {variant:1,2}(90-100)% increased Physical Damage {variant:3,4}(110-125)% increased Physical Damage {variant:5}(70-80)% increased Physical Damage {variant:2,3,4,5}Adds (25-35) to (36-45) Physical Damage -+(20-30) to Dexterity +10% increased Movement Speed {variant:1,2,3}+(200-250) to Accuracy Rating {variant:4,5}+(350-400) to Accuracy Rating -Arrows Pierce all Targets -10% increased Movement Speed {variant:1,2}Cannot Leech {variant:3,4,5}Cannot Leech Life +Arrows Pierce all Targets ]],[[ Replica Infractem Decimation Bow @@ -327,7 +328,7 @@ Adds (8-12) to (16-24) Physical Damage (14-20)% increased Attack Speed (14-20)% increased Totem Life (14-20)% increased Totem Placement speed -Can have 1 additional Siege Ballista Totem per 200 Dexterity +Siege Ballista has +1 to maximum number of Summoned Totems per 200 Dexterity Adds 1 to 3 Physical Damage to Attacks per 25 Dexterity ]],[[ Replica Iron Commander @@ -355,9 +356,9 @@ Variant: Pre 3.28.0 Variant: Current Requires Level 66, 212 Dex Implicits: 3 +{variant:7}(20-24)% increased Global Physical Damage {variant:2}(6-12)% increased Elemental Damage with Attack Skills {variant:3,4,5,6}(20-24)% increased Elemental Damage with Attack Skills -{variant:7}(20-24)% increased Global Physical Damage {variant:1,2,3,4}(150-175)% increased Physical Damage {variant:5}(90-105)% increased Physical Damage {variant:6,7}(180-200)% increased Physical Damage @@ -365,9 +366,9 @@ Implicits: 3 {variant:6,7}Adds (7-14) to (24-34) Physical Damage {variant:1,2,3,4,5,6}(10-20)% increased Attack Speed +(80-100) to maximum Mana -Hits can't be Evaded {variant:7}Attacks you use yourself Repeat an additional time {variant:7}Attacks you use yourself have 50% more Attack Speed +Hits can't be Evaded {variant:4,5,6,7}Far Shot ]],[[ Null's Inclination @@ -376,14 +377,15 @@ Variant: Pre 3.14.0 Variant: Pre 3.26.0 Variant: Current Requires Level 60, 212 Dex, 212 Int +Trigger Socketed Minion Spells on Kill with this Weapon +Minion Spells Triggered by this Item have a 0.25 second Cooldown with 5 Uses ++212 Intelligence Requirement Adds (50-80) to (130-180) Chaos Damage (7-12)% increased Attack Speed +(7-11)% to Chaos Resistance -{variant:1}Minions deal 1% increased Damage per 10 Dexterity {variant:2}Minions deal 1% increased Damage per 5 Dexterity {variant:3}Minions deal 2% increased Damage per 5 Dexterity -+212 Intelligence Requirement -Cast Socketed Minion Spells on Kill with this Weapon +{variant:1}Minions deal 1% increased Damage per 10 Dexterity ]],[[ Nuro's Harp Harbinger Bow @@ -402,7 +404,7 @@ No Physical Damage Create Consecrated Ground when you Shatter an Enemy {variant:2}40% increased Effect of Chilled Ground {variant:3}(30-50)% increased Effect of Chilled Ground -{variant:3}(30-50)% increased Effect of Consecrated Ground +{variant:3}(30-50)% increased Effect of Consecrated Ground you create ]],[[ Quill Rain Short Bow @@ -413,12 +415,12 @@ Requires Level 5, 26 Dex +(10-20) to Dexterity {variant:2,3}100% increased Physical Damage 100% increased Attack Speed -+(25-50) to Accuracy Rating +{variant:2,3}Grants 2 Mana per Enemy Hit (50-100)% increased Projectile Speed ++(25-50) to Accuracy Rating {variant:1}50% less Damage {variant:2}40% less Damage {variant:3}30% less Damage -{variant:2,3}Gain 2 Mana per Enemy Hit with Attacks ]],[[ Replica Quill Rain Short Bow @@ -429,7 +431,7 @@ Socketed Gems are Supported by Level 1 Arrow Nova +(10-20) to Dexterity 100% increased Physical Damage (25-30)% increased Attack Speed -Gain 2 Mana per Enemy Hit with Attacks +Grants 2 Mana per Enemy Hit (50-100)% increased Projectile Speed +(25-50) to Accuracy Rating ]],[[ @@ -449,8 +451,8 @@ Variant: Current {variant:2,3,4,5}Adds (15-30) to (70-95) Physical Damage {variant:6}Adds (10-16) to (45-60) Physical Damage (8-12)% increased Attack Speed -{variant:1,2}4 additional Arrows -{variant:3}2 additional Arrows +{variant:1,2}Bow Attacks fire 4 additional Arrows +{variant:3}Bow Attacks fire 2 additional Arrows 20% reduced Projectile Speed {variant:5,6}Arrows fired from the first firing points always Pierce {variant:5,6}Arrows fired from the second firing points Fork @@ -482,8 +484,8 @@ Requires Level 2 {variant:1}(50-80)% increased Physical Damage {variant:2}(80-100)% increased Physical Damage 10% increased Attack Speed -+30 to Accuracy Rating Gain 10 Mana per Enemy Killed ++30 to Accuracy Rating ]],[[ Silverbough Crude Bow @@ -494,8 +496,8 @@ Requires Level 36 (80-100)% increased Physical Damage Adds (15-25) to (50-60) Physical Damage 10% increased Attack Speed -+30 to Accuracy Rating Gain 10 Mana per Enemy Killed ++30 to Accuracy Rating ]],[[ Widowhail Crude Bow @@ -514,10 +516,10 @@ Implicits: 1 {variant:3}Adds (80-95) to (220-240) Physical Damage {variant:1}100% increased Critical Strike Chance with arrows that Fork {variant:2,3}(150-200)% increased Critical Strike Chance with arrows that Fork -{variant:1}Arrows that Pierce have 50% chance to cause Bleeding -{variant:2,3}Arrows that Pierce have +50% to Critical Strike Multiplier +{variant:1}Arrows that Pierce have 50% chance to inflict Bleeding {variant:1}Arrows Pierce all Targets after Chaining {variant:2,3}Arrows Pierce all Targets after Forking +{variant:2,3}Arrows that Pierce have +50% to Critical Strike Multiplier ]],[[ Storm Cloud Long Bow @@ -550,9 +552,9 @@ Variant: Current {variant:1,2}60% of Lightning Damage Converted to Chaos Damage {variant:3,4}100% of Lightning Damage Converted to Chaos Damage {variant:1,2}10% chance to Shock +{variant:4}Treats Enemy Monster Chaos Resistance values as inverted Your Chaos Damage can Shock {variant:2,3}Hits with this Weapon Shock Enemies as though dealing 300% more Damage -{variant:4}Treats Enemy Monster Chaos Resistance values as inverted {variant:2,3,4}+40% to Maximum Effect of Shock ]],[[ Windripper @@ -577,11 +579,11 @@ Implicits: 2 {variant:1,2}(80-100)% increased Critical Strike Chance {variant:3,4}(60-80)% increased Critical Strike Chance {variant:5,6}(30-40)% increased Critical Strike Chance -{variant:1,2}25% increased Quantity of Items Dropped by Slain Frozen enemies +{variant:1,2}25% increased Quantity of Items Dropped by Slain Frozen Enemies {variant:3,4,5}15% increased Quantity of Items Dropped by Slain Frozen Enemies -{variant:6}30% increased Rarity of Items Dropped by Slain Frozen Enemies -{variant:1,2}50% increased Rarity of Items Dropped by Slain Shocked enemies +{variant:1,2}50% increased Rarity of Items Dropped by Slain Shocked Enemies {variant:3,4,5,6}30% increased Rarity of Items Dropped by Slain Shocked Enemies +{variant:6}30% increased Rarity of Items Dropped by Frozen Enemies ]],[[ Replica Windripper Imperial Bow @@ -629,8 +631,8 @@ Requires Level 64, 185 Dex {variant:4}(165-195)% increased Physical Damage 50% of Physical Damage Converted to Fire Damage 10% chance to Ignite -{variant:1}Ignites your Skills cause spread to other Enemies within 1.2 metres -{variant:2}Ignites your Skills cause spread to other Enemies within 1.5 metres +{variant:1}Ignites you inflict spread to other Enemies within 1.2 metres +{variant:2}Ignites you inflict spread to other Enemies within 1.5 metres Recover (40-60) Life when you Ignite an Enemy ]], [[ diff --git a/src/Data/Uniques/claw.lua b/src/Data/Uniques/claw.lua index bdc052f7f5..7c1d01e4c2 100644 --- a/src/Data/Uniques/claw.lua +++ b/src/Data/Uniques/claw.lua @@ -12,12 +12,12 @@ Implicits: 2 {variant:1}Grants 21 Life per Enemy Hit {variant:2}Grants 44 Life per Enemy Hit Socketed Gems are Supported by Level 12 Fortify +15% Chance to Block Attack Damage (100-120)% increased Physical Damage +110 to Evasion Rating -+(30-50) to maximum Life +35 to maximum Energy Shield ++(30-50) to maximum Life Reflects (71-90) Physical Damage to Melee Attackers -15% Chance to Block Attack Damage ]],[[ Replica Advancing Fortress Gut Ripper @@ -73,8 +73,8 @@ Variant: Pre 3.11.0 Variant: Current Requires Level 26, 39 Dex, 56 Int Implicits: 3 -{variant:1}Grants 8 Life per Enemy Hit {variant:2}2% of Physical Attack Damage Leeched as Life +{variant:1}Grants 8 Life per Enemy Hit {variant:3,4,5,6}Grants 19 Life per Enemy Hit {variant:1,2,3,4}Socketed Gems have 10% chance to cause Enemies to Flee on Hit {variant:4,5}Trigger Level 1 Intimidating Cry on Hit @@ -102,12 +102,12 @@ Implicits: 1 {variant:4}(200-250)% increased Physical Damage {variant:1,2}Adds 10 to 12 Physical Damage {variant:3,4}Adds 25 to 30 Physical Damage -{variant:4}(15-25)% increased Life Reservation Efficiency of Skills {variant:1,2,3}5% increased Attack Speed 1.2% of Physical Attack Damage Leeched as Life {variant:1,2,3}5% increased Movement Speed -{variant:4}(5-10)% increased maximum Recovery per Life Leech for each 5% of Life Reserved +{variant:4}(15-25)% increased Life Reservation Efficiency of Skills Life Leech from Hits with this Weapon is instant +{variant:4}(5-10)% increased Maximum Recovery per Life Leech for each 5% of Life Reserved ]],[[ Cybil's Paw Thresher Claw @@ -140,8 +140,8 @@ Variant: Pre 3.28.0 Variant: Current Implicits: 4 {variant:1,2}0.6% of Physical Attack Damage Leeched as Life -{variant:3}Grants 31 Life per Enemy Hit {variant:4,5,6}2% of Physical Attack Damage Leeched as Life +{variant:3}Grants 31 Life per Enemy Hit {variant:7}2% of Attack Damage Leeched as Life {variant:1}+10% Chance to Block Attack Damage while Dual Wielding Claws {variant:2,3,4,5,6}+8% Chance to Block Attack Damage while Dual Wielding Claws @@ -155,9 +155,9 @@ Implicits: 4 (20-30)% increased Attack Speed {variant:1,2,3,4,5,6}+(30-40) to maximum Energy Shield {variant:7}+(200-300) to maximum Energy Shield -{variant:1,2,3,4}Leech Energy Shield instead of Life {variant:5}50% reduced Maximum Recovery per Energy Shield Leech {variant:5,6,7}Energy Shield Leech Effects from Attacks are not removed at Full Energy Shield +{variant:1,2,3,4}Leech Energy Shield instead of Life {variant:7}Maximum Recovery per Energy Shield Leech is Doubled {variant:5,6,7}Ghost Reaver ]],[[ @@ -176,17 +176,17 @@ Implicits: 3 {variant:1}Grants 10 Life per Enemy Hit {variant:2,3}Grants 12 Life per Enemy Hit {variant:4,5}Grants 46 Life per Enemy Hit -{variant:1,2,3}(20-25)% increased Elemental Damage with Attack Skills -{variant:1,2,3}Adds 1 to (50-60) Lightning Damage -{variant:1,2,3}(10-15)% increased Attack Speed {variant:4,5}(8-12)% increased Dexterity {variant:4,5}(8-12)% increased Intelligence +{variant:1,2,3}Adds 1 to (50-60) Lightning Damage +{variant:1,2,3}(10-15)% increased Attack Speed {variant:4,5}Recover 1% of Life on Kill -{variant:1,2}Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence -{variant:3}Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence {variant:4}Adds 1 to 10 Lightning Damage to Attacks with this Weapon per 10 Dexterity {variant:5}Adds 1 to 12 Lightning Damage to Attacks with this Weapon per 10 Dexterity +{variant:1,2}Adds 1 to 3 Lightning Damage to Attacks with this Weapon per 10 Intelligence +{variant:3}Adds 1 to 5 Lightning Damage to Attacks with this Weapon per 10 Intelligence {variant:4,5}5% increased Critical Strike Chance per 25 Intelligence +{variant:1,2,3}(20-25)% increased Elemental Damage with Attack Skills ]],[[ Hand of Wisdom and Action Imperial Claw @@ -225,12 +225,12 @@ Adds 20 to 50 Physical Damage (10-15)% increased Attack Speed {variant:1,2}+(250-350) to Accuracy Rating {variant:3}+(300-400) to Accuracy Rating -100% increased Physical Damage while Frozen +100% increased Global Physical Damage while Frozen ]],[[ Last Resort Nailed Fist Implicits: 1 -Gain 3 Life per Enemy Hit with Attacks +Grants 3 Life per Enemy Hit 25% increased Attack Speed when on Low Life (80-100)% increased Physical Damage Adds 2 to 10 Physical Damage @@ -284,8 +284,8 @@ Implicits: 2 {variant:2,3,4}+40% to Global Critical Strike Multiplier (10-20)% of Physical Damage Converted to Chaos Damage {variant:1,2,3}Poisonous Hit -{variant:4}60% chance to Poison on Hit 25% reduced Enemy Stun Threshold with this Weapon +{variant:4}60% chance to Poison on Hit ]],[[ Ornament of the East Gut Ripper @@ -314,8 +314,8 @@ Implicits: 1 (60-80)% increased Physical Damage Adds (25-35) to (50-65) Physical Damage 25% chance to cause Bleeding on Hit -2% increased Physical Damage over time per 10 Dexterity -1% increased Bleed Duration per 12 Intelligence +2% increased Physical Damage Over Time per 10 Dexterity +1% increased Bleeding Duration per 12 Intelligence 30% Chance to cause Bleeding Enemies to Flee on hit ]],[[ The Scourge @@ -346,7 +346,7 @@ Adds (40-50) to (130-150) Physical Damage 20% chance to gain a Frenzy Charge on Killing a Frozen Enemy Skills Chain an additional time while at maximum Frenzy Charges 10% chance to Freeze -Critical Strikes do not always Freeze +Critical Strikes do not inherently Freeze ]],[[ The Wasp Nest Throat Stabber @@ -361,7 +361,7 @@ Grants 40 Life per Enemy Hit {variant:1}+(180-200) to Accuracy Rating {variant:2}+(330-350) to Accuracy Rating 20% chance to Poison on Hit -Attacks with this Weapon deal 80-120 added Chaos Damage against +Attacks with this Weapon deal 80 to 120 added Chaos Damage against Enemies affected by at least 5 Poisons ]],[[ Wildslash @@ -374,10 +374,10 @@ Implicits: 2 {variant:2}Grants 7 Life per Enemy Hit +(10-15) to Strength +(10-15) to Dexterity -15% reduced Accuracy Rating Adds (2-6) to (16-22) Physical Damage (10-15)% increased Attack Speed 20% increased Damage with Movement Skills 15% increased Attack Speed with Movement Skills +15% reduced Global Accuracy Rating ]], } diff --git a/src/Data/Uniques/dagger.lua b/src/Data/Uniques/dagger.lua index 448db45ee0..532b60dedf 100644 --- a/src/Data/Uniques/dagger.lua +++ b/src/Data/Uniques/dagger.lua @@ -45,9 +45,9 @@ Implicits: 1 (20-40)% increased Physical Damage Adds (3-6) to (9-13) Physical Damage 10% increased Attack Speed -Extra Gore {variant:1}10% chance to cause Bleeding on Hit {variant:2}30% chance to cause Bleeding on Hit +Extra gore ]],[[ Replica Bloodplay Stiletto @@ -89,9 +89,9 @@ Variant: Current Requires Level 53, 58 Dex, 123 Int Implicits: 1 40% increased Global Critical Strike Chance -+1 to Level of all Fire Spell Skill Gems -(40-60)% increased Fire Damage +(20-40) to Intelligence +(40-60)% increased Fire Damage ++1 to Level of all Fire Spell Skill Gems {variant:1}45% of Fire Damage Converted to Chaos Damage {variant:2,3}30% of Fire Damage Converted to Chaos Damage {variant:1,2}Your Chaos Damage Poisons Enemies @@ -130,8 +130,8 @@ Implicits: 1 (50-70)% increased Physical Damage Adds (1-2) to (3-5) Physical Damage 30% increased Critical Strike Chance -50% chance to cause Bleeding on Critical Strike 40% increased Attack Damage against Bleeding Enemies +50% chance to cause Bleeding on Critical Strike ]],[[ Sanguine Gambol Skinning Knife @@ -139,12 +139,12 @@ Source: No longer obtainable Requires Level 59 Implicits: 1 30% increased Global Critical Strike Chance ++(10-15) to Dexterity (50-70)% increased Physical Damage Adds (70-85) to (110-118) Physical Damage -+(10-15) to Dexterity 30% increased Critical Strike Chance -50% chance to cause Bleeding on Critical Strike 40% increased Attack Damage against Bleeding Enemies +50% chance to Cause Bleeding on Critical Strike You have Crimson Dance if you have dealt a Critical Strike Recently ]],[[ Goblinedge @@ -220,25 +220,25 @@ Implicits: 1 {variant:1}(180-210)% increased Physical Damage {variant:2}(210-240)% increased Physical Damage {variant:3,4}(250-270)% increased Physical Damage -{variant:1,2,3}10% reduced Attack Speed +{variant:1,2,3}10% increased Attack Speed {variant:4}20% reduced Attack Speed +{variant:4}(20-30)% increased Critical Strike Chance +{variant:4}+(30-40)% to Global Critical Strike Multiplier {variant:1,2,3}+(6-10)% to all Elemental Resistances -{variant:1,2}Melee Critical Strikes have 25% chance to cause Bleeding {variant:3,4}50% chance to Cause Bleeding on Critical Strike -{variant:1,2}Melee Critical Strikes have 25% chance to Poison the Enemy {variant:3,4}50% chance to Cause Poison on Critical Strike -{variant:4}(20-30)% increased Critical Strike Chance -{variant:4}+(30-40)% to Global Critical Strike Multiplier +{variant:1,2}Melee Critical Strikes have 25% chance to cause Bleeding +{variant:1,2}Melee Critical Strikes have 25% chance to Poison the Enemy ]],[[ Mightflay Flaying Knife Requires Level 35, 73 Dex, 51 Int Implicits: 1 30% increased Global Critical Strike Chance ++25 to Strength (80-100)% increased Physical Damage Adds 12 to 24 Physical Damage -+25 to Strength -Gain 10 Life per Enemy Hit with Attacks +Grants 10 Life per Enemy Hit ]],[[ Taproot Ambusher @@ -263,8 +263,8 @@ Implicits: 1 30% increased Global Critical Strike Chance {variant:2}+20% Chance to Block Attack Damage while Dual Wielding {variant:1,3}+12% Chance to Block Attack Damage while Dual Wielding -(80-100)% increased Physical Damage +(10-20) to Dexterity +(80-100)% increased Physical Damage Adds 3 to 30 Lightning Damage 10% increased Attack Speed 50% increased Global Critical Strike Chance @@ -290,14 +290,14 @@ Variant: Current Requires Level 68, 76 Dex, 149 Int Implicits: 1 40% increased Global Critical Strike Chance -Adds (85-110) to (130-150) Physical Damage +Adds (85-110) to (135-150) Physical Damage Adds (130-160) to (220-240) Fire Damage {variant:2}50% chance to cause Bleeding on Hit {variant:1}Attacks with this Weapon deal (80-100) to (160-200) added Fire Damage to Bleeding Enemies {variant:1}Attacks with this Weapon deal (80-100) to (160-200) added Physical Damage to Ignited Enemies {variant:1}Attacks with this Weapon have 25% chance to inflict Bleeding against Ignited Enemies -{variant:2}(75-100)% increased Fire Damage with Hits and Ailments against Bleeding Enemies -{variant:2}(75-100)% increased Physical Damage with Hits and Ailments against Ignited Enemies +{variant:2}(70-100)% increased Fire Damage with Hits and Ailments against Bleeding Enemies +{variant:2}(70-100)% increased Physical Damage with Hits and Ailments against Ignited Enemies Every 8 seconds, gain Avatar of Fire for 4 seconds {variant:1}(80-120)% increased Critical Strike Chance while you have Avatar of Fire {variant:2}(160-200)% increased Critical Strike Chance while you have Avatar of Fire @@ -317,10 +317,10 @@ Adds (160-190) to (280-320) Cold Damage (10-15)% increased Attack Speed {variant:1}+(300-400) to Evasion Rating {variant:2,3}+(1000-1500) to Evasion Rating -{variant:1,2}(15-25)% chance to Suppress Spell Damage while your Off Hand is empty -{variant:3}(30-40)% chance to Suppress Spell Damage while your Off Hand is empty {variant:1}100% increased Cold Damage while your Off Hand is empty {variant:2,3}(100-200)% increased Cold Damage while your Off Hand is empty +{variant:1,2}+(15-25)% chance to Suppress Spell Damage while your Off Hand is empty +{variant:3}+(30-40)% chance to Suppress Spell Damage while your Off Hand is empty ]],[[ Widowmaker Boot Blade @@ -333,7 +333,7 @@ Implicits: 1 {variant:2}Adds (35-40) to (55-60) Physical Damage (22-30)% increased Critical Strike Chance +(30-40)% to Global Critical Strike Multiplier -100% increased Critical Strike Chance against Enemies on Full Life +100% increased Critical Strike Chance against Enemies that are on Full Life 1% of Attack Damage Leeched as Life on Critical Strike ]], [[ diff --git a/src/Data/Uniques/fishing.lua b/src/Data/Uniques/fishing.lua index 708d46d9c5..cc7348da88 100644 --- a/src/Data/Uniques/fishing.lua +++ b/src/Data/Uniques/fishing.lua @@ -19,8 +19,8 @@ Fishing Rod Requires 8 Str, 8 Dex Implicits: 0 Siren Worm Bait -(50-40)% reduced Quantity of Fish Caught (50-60)% increased Rarity of Fish Caught You can catch Exotic Fish +(50-40)% reduced Quantity of Fish Caught ]] } diff --git a/src/Data/Uniques/flask.lua b/src/Data/Uniques/flask.lua index d93ca26cd8..419665e8b6 100644 --- a/src/Data/Uniques/flask.lua +++ b/src/Data/Uniques/flask.lua @@ -13,9 +13,9 @@ Variant: Pre 3.16.0 Variant: Current {variant:3}100% increased Life Recovered {variant:4,5}50% increased Life Recovered -{variant:1}(30-20)% reduced Recovery rate +{variant:1}(20-30)% reduced Recovery rate {variant:2,3,4}(5-20)% increased Recovery rate -{variant:5}(50-35)% reduced Recovery rate +{variant:5}(35-50)% reduced Recovery rate Recover Full Life at the end of the Effect {variant:1,2}Cannot gain Life during effect ]], @@ -29,16 +29,16 @@ Variant: Current Implicits: 0 {variant:1}(100-50)% increased Charges per use {variant:2}(150-120)% increased Charges per use -{variant:3}(300-250)% increased Charges per use +{variant:3}(250-300)% increased Charges per use {variant:1,2}Removes 20% of your maximum Energy Shield on use {variant:3}Removes 80% of your maximum Energy Shield on use {variant:1,2}You take 10% of your maximum Life as Chaos Damage on use {variant:3}You take 50% of your maximum Life as Chaos Damage on use {variant:1,2}Gain 1 Endurance Charge on use -{variant:1,2}Gain 1 Frenzy Charge on use -{variant:1,2}Gain 1 Power Charge on use {variant:3}Gain (1-3) Endurance Charge on use +{variant:1,2}Gain 1 Frenzy Charge on use {variant:3}Gain (1-3) Frenzy Charge on use +{variant:1,2}Gain 1 Power Charge on use {variant:3}Gain (1-3) Power Charge on use ]],[[ Lavianga's Spirit @@ -66,15 +66,14 @@ League: Perandus 50% increased Charges per use {variant:1}Grants Last Breath when you Use a Skill during Effect, for 800% of Mana Cost {variant:2}Grants Last Breath when you Use a Skill during Effect, for (450-600)% of Mana Cost -]], -[[ +]],[[ Wellwater Phylactery Colossal Mana Flask Source: Drops from unique{Uber Incarnation of Dread} in normal{Moment of Reverence} Requires Level 64 (200-300)% increased Charges per use (150-200)% increased Amount Recovered -(60-40)% less Duration +(40-60)% less Duration Removes (10-15)% of Life when Used Starts Energy Shield Recharge when Used Energy Shield Recharge is not delayed by Damage during Effect @@ -93,9 +92,9 @@ Variant: Current {variant:3}+4% to all maximum Elemental Resistances during Effect {variant:1}(20-25)% increased Quantity of Items found during Effect {variant:2,3,4}(12-18)% increased Quantity of Items found during Effect +{variant:5}(8-12)% increased Quantity of Items found during Effect {variant:1,2,3,4}(40-60)% increased Rarity of Items found during Effect {variant:5}(20-30)% increased Rarity of Items found during Effect -{variant:5}(8-12)% increased Quantity of Items found during Effect {variant:6}(30-50)% increased Rarity of Items found during Effect 25% increased Light Radius during Effect {variant:4,5}+50% to Elemental Resistances during Effect @@ -103,8 +102,8 @@ Variant: Current ]],[[ The Writhing Jar Hallowed Hybrid Flask -(-10--20)% increased Charges per use -(75-65)% reduced Amount Recovered +(10-20)% reduced Charges per use +(65-75)% reduced Amount Recovered Instant Recovery 2 Enemy Writhing Worms escape the Flask when used Writhing Worms are destroyed when Hit @@ -131,7 +130,7 @@ Amethyst Flask LevelReq: 60 Source: Drops from unique{The Maven} (Uber) (10-20)% reduced Charges per use -(-35-35)% increased Duration +(-35-35)% reduced Duration When Hit during effect, 25% of Life loss from Damage taken occurs over 4 seconds instead ]],[[ Bottled Faith @@ -145,7 +144,7 @@ Implicits: 1 Creates Consecrated Ground on Use {variant:1}(30-50)% increased Duration {variant:2}(20-40)% increased Duration -{variant:3}(30-15)% reduced Duration +{variant:3}(15-30)% reduced Duration Consecrated Ground created by this Flask has Tripled Radius {variant:1}+(1-2)% to Critical Strike Chance against Enemies on Consecrated Ground during Effect Consecrated Ground created during Effect applies (7-10)% increased Damage taken to Enemies @@ -155,13 +154,13 @@ Coralito's Signature Diamond Flask Variant: Pre 3.15.0 Variant: Current -{variant:1}Take 30 Chaos Damage per Second during Effect -{variant:2}Take (200-300) Chaos Damage per Second during Effect 25% chance to Poison on Hit during Effect Your Critical Strikes do not deal extra Damage during Effect {variant:1}(50-75)% increased Duration of Poisons you inflict during Effect -{variant:1}Grants Perfect Agony during effect {variant:2}+(20-30)% to Damage over Time Multiplier for Poison from Critical Strikes during Effect +{variant:1}Take 30 Chaos Damage per Second during Effect +{variant:2}Take 250 Chaos Damage per Second during Effect +{variant:1}Grants Perfect Agony during effect ]],[[ Coruscating Elixir Ruby Flask @@ -202,16 +201,16 @@ Variant: Mana on Kill Variant: ES on Kill LevelReq: 48 Implicits: 0 -{variant:15}+90 to maximum Charges -{variant:16,17,18}+(10-20) to maximum Charges +{variant:15}+90 to Maximum Charges +{variant:16,17,18}+(10-20) to Maximum Charges {variant:13}Recharges 1 Charge when you Consume an Ignited corpse {variant:15,16,17,18}Recharges 5 Charges when you Consume an Ignited corpse +{variant:14}(175-200)% increased Charges per use {variant:13}Enemies Ignited by you during Effect take 10% increased Damage {variant:14,15,16,17,18}Enemies Ignited by you during Effect take (7-10)% increased Damage {variant:13,15,16}Recover (1-3)% of Life when you Kill an Enemy during Effect {variant:13,15,17}Recover (1-3)% of Mana when you Kill an Enemy during Effect {variant:13,15,18}Recover (1-3)% of Energy Shield when you Kill an Enemy during Effect -{variant:14}(175-200)% increased Charges per use {variant:14}{crafted}(60-80)% increased Critical Strike Chance during Effect {variant:1}{crafted}(45-55)% increased Critical Strike Chance during Effect {variant:2}{crafted}15% of Damage Taken from Hits is Leeched as Life during Effect @@ -234,10 +233,10 @@ Variant: Pre 3.15.0 Variant: Pre 3.16.0 Variant: Current LevelReq: 68 -{variant:2}(10--10)% increased Charges per use -{variant:3,4}(150-125)% increased Charges per use -{variant:3}(60-40)% reduced duration -{variant:4}(60-40)% less duration +{variant:2}(-10-10)% reduced Charges per use +{variant:3,4}(125-150)% increased Charges per use +{variant:3}(40-60)% reduced Duration +{variant:4}(40-60)% less Duration {variant:1}30% increased Area of Effect during Effect {variant:2}(15-25)% increased Area of Effect during Effect {variant:3,4}(10-20)% increased Area of Effect during Effect @@ -253,7 +252,7 @@ Variant: Current {variant:1}Recover 50% of Life on use {variant:2}Recover 75% of Life on use {variant:3,4}Recover (75-100)% of Life on use -{variant:1}15% of maximum Life taken as Chaos Damage per second +{variant:1}15% of Maximum Life taken as Chaos Damage per second {variant:2,3}8% of Maximum Life taken as Chaos Damage per second {variant:4}25% of Maximum Life taken as Chaos Damage per second ]],[[ @@ -263,10 +262,10 @@ Variant: Pre 3.0.0 Variant: Pre 3.15.0 Variant: Current Implicits: 0 -Immunity to Freeze, Chill, Curses and Stuns during Effect {variant:1}50% reduced Duration {variant:2}60% reduced Duration -{variant:3}(80-60)% reduced Duration +{variant:3}(60-80)% reduced Duration +Immunity to Freeze, Chill, Curses and Stuns during Effect ]],[[ Lion's Roar Granite Flask @@ -274,7 +273,7 @@ Variant: Pre 2.2.0 Variant: Pre 3.0.0 Variant: Pre 3.15.0 Variant: Current -{variant:1}(100-70)% increased Charges per use +{variant:1}(70-100)% increased Charges per use Knocks Back Enemies in an Area when you use a Flask 75% chance to cause Enemies to Flee on use Adds Knockback to Melee Attacks during Effect @@ -297,9 +296,9 @@ LevelReq: 40 {variant:3}50% increased Duration {variant:4}(30-50)% increased Duration Consumes Frenzy Charges on use -{variant:1,2}Gain Onslaught for 1 second per Frenzy Charge on use -{variant:3}Gain Onslaught for 2 seconds per Frenzy Charge on use -{variant:4}Gain Onslaught for 3 seconds per Frenzy Charge on use +{variant:1,2}Gain Onslaught for 1 second per Frenzy Charge consumed on use +{variant:3}Gain Onslaught for 2 seconds per Frenzy Charge consumed on use +{variant:4}Gain Onslaught for 3 seconds per Frenzy Charge consumed on use {variant:1,2,3}(10-30)% increased Movement Speed during Effect ]],[[ Rumi's Concoction @@ -309,14 +308,14 @@ Variant: Pre 2.5.0 Variant: Pre 3.15.0 Variant: Current LevelReq: 68 -{variant:1}(30-40)% Chance to Block Attack Damage during Effect -{variant:2}(20-30)% Chance to Block Attack Damage during Effect -{variant:3}(14-20)% Chance to Block Attack Damage during Effect -{variant:4}(8-12)% Chance to Block Attack Damage during Effect -{variant:1}(15-20)% Chance to Block Spell Damage during Effect -{variant:2}(10-15)% Chance to Block Spell Damage during Effect -{variant:3}(6-10)% Chance to Block Spell Damage during Effect -{variant:4}(4-6)% Chance to Block Spell Damage during Effect +{variant:1}+(30-40)% Chance to Block Attack Damage during Effect +{variant:2}+(20-30)% Chance to Block Attack Damage during Effect +{variant:3}+(14-20)% Chance to Block Attack Damage during Effect +{variant:4}+(8-12)% Chance to Block Attack Damage during Effect +{variant:1}+(15-20)% Chance to Block Spell Damage during Effect +{variant:2}+(10-15)% Chance to Block Spell Damage during Effect +{variant:3}+(6-10)% Chance to Block Spell Damage during Effect +{variant:4}+(4-6)% Chance to Block Spell Damage during Effect ]],[[ Replica Rumi's Concoction Granite Flask @@ -345,8 +344,9 @@ League: Legion Implicits: 1 Creates Consecrated Ground on Use {variant:2}Life Recovery from Flasks also applies to Energy Shield during Effect +{variant:2}Zealot's Oath during Effect (25-50)% increased Duration -Zealot's Oath during Effect +{variant:1}Zealot's Oath during Effect ]],[[ Replica Sorrow of the Divine Sulphur Flask @@ -355,8 +355,8 @@ Source: Steal from a unique{Curio Display} during a Grand Heist Implicits: 1 Creates Consecrated Ground on Use Life Recovery from Flasks also applies to Energy Shield during Effect -(25-50)% increased Duration Eldritch Battery during Effect +(25-50)% increased Duration ]],[[ Soul Catcher Quartz Flask @@ -382,14 +382,14 @@ League: Incursion Source: Upgraded from unique{Soul Catcher} via currency{Vial of the Ghost} Variant: Pre 3.10.0 Variant: Current +{variant:2}+(-40-90) to Maximum Charges {variant:1}100% increased Charges per use -{variant:1}Vaal Skills deal (30-40)% more Damage during Effect -{variant:1}Vaal Skills used during effect do not apply Soul Gain Prevention -{variant:1}Gains no Charges during Effect of any Soul Ripper Flask -{variant:2}+(-40-90) maximum Charges {variant:2}Loses all Charges when you enter a new area {variant:2}Consumes Maximum Charges to use {variant:2}Gain Vaal Souls equal to Charges Consumed when used +{variant:1}Vaal Skills deal (30-40)% more Damage during Effect +{variant:1}Vaal Skills used during effect do not apply Soul Gain Prevention +{variant:1}Gains no Charges during Effect of any Soul Ripper Flask ]],[[ Taste of Hate Sapphire Flask @@ -398,10 +398,10 @@ Variant: Pre 3.0.0 Variant: Pre 3.15.0 Variant: Pre 3.25.0 Variant: Current +{variant:5}(20-30)% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect {variant:1}30% of Physical Damage from Hits taken as Cold Damage during Effect {variant:2,3}20% of Physical Damage from Hits taken as Cold Damage during Effect {variant:4}(10-15)% of Physical Damage from Hits taken as Cold Damage during Effect -{variant:5}(20-30)% of Fire and Lightning Damage from Hits taken as Cold Damage during Effect {variant:1,2}Gain (20-30)% of Physical Damage as Extra Cold Damage during effect {variant:3}Gain (15-20)% of Physical Damage as Extra Cold Damage during effect {variant:4,5}Gain (10-15)% of Physical Damage as Extra Cold Damage during effect @@ -443,21 +443,21 @@ Variant: Current (Penetration) Variant: Current (Spells) Variant: Current (Attacks) LevelReq: 68 -{variant:5,6,7,8,9,10,11,12,13}(100-80)% increased Charges per use -{variant:14,15,16,17,18}(150-125)% increased Charges per use +{variant:5,6,7,8,9,10,11,12,13}(80-100)% increased Charges per use +{variant:14,15,16,17,18}(125-150)% increased Charges per use Shocks nearby Enemies during Effect, causing 10% increased Damage taken You are Shocked during Effect, causing 50% increased Damage taken +{variant:4,8,10}20% of Physical Damage Converted to Lightning during Effect +{variant:14}50% of Physical Damage Converted to Lightning during Effect {variant:1,5,11}Damage Penetrates 10% Lightning Resistance during Effect {variant:16}Damage Penetrates 6% Lightning Resistance during Effect +{variant:15}(25-40)% increased Effect of Shocks you inflict during Effect +{variant:15}Shocks you inflict during Effect spread to other Enemies within 2 metres +{variant:3,7,13}Adds (25-35) to (110-130) Lightning Damage to Attacks during Effect +{variant:18}Adds (10-15) to (55-65) Lightning Damage to Attacks during Effect {variant:2,6,9}Adds (15-25) to (70-90) Lightning Damage to Spells during Effect {variant:12}Adds (25-35) to (110-130) Lightning Damage to Spells during Effect {variant:17}Adds (10-15) to (55-65) Lightning Damage to Spells during Effect -{variant:3,7,13}Adds (25-35) to (110-130) Lightning Damage to Attacks during Effect -{variant:18}Adds (10-15) to (55-65) Lightning Damage to Attacks during Effect -{variant:4,8,10}20% of Physical Damage Converted to Lightning during Effect -{variant:14}50% of Physical Damage Converted to Lightning during Effect -{variant:15}(25-40)% increased Effect of Shocks you inflict during Effect -{variant:15}Shocks you inflict during Effect spread to other Enemies within 2 metres {variant:1,2,3,4}30% of Lightning Damage Leeched as Life during Effect {variant:5,6,7,8,9,10,11,12,13,14,15,16,17,18}20% of Lightning Damage Leeched as Life during Effect {variant:1,2,3,4}30% of Lightning Damage Leeched as Mana during Effect @@ -491,17 +491,17 @@ LevelReq: 48 Implicits: 1 Creates a Smoke Cloud on Use {variant:1,2}50% increased Charges per use -{variant:3}(10--10)% increased Charges per use +{variant:3}(-10-10)% reduced Charges per use +Grants Level 21 Despair Curse Aura during Effect {variant:1}(50-70)% increased Damage Over Time during Effect {variant:2}(25-40)% increased Damage Over Time during Effect -Grants Level 21 Despair Curse Aura during Effect ]],[[ Replica Witchfire Brew Stibnite Flask League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist +(-10-10)% reduced Charges per use Creates a Smoke Cloud on Use -(-10–10)% reduced Charges per use Grants Level 21 Vulnerability Curse Aura during Effect ]],[[ Wine of the Prophet @@ -509,8 +509,8 @@ Gold Flask Source: Drops from unique{Incarnation of Dread} in normal{Moment of Reverence} Requires Level 27 +60 to Maximum Charges -(20-100)% increased Charges per Use -Grants a random Divination buff for 20 seconds when used +(20-100)% increased Charges per use +Grants a random Divination Buff for 20 seconds when Used ]], -- Flask: Ward [[ @@ -557,7 +557,7 @@ League: Expedition Source: Drops from unique{Vorana, Last to Fall} in normal{Expedition Logbook} Implicits: 1 Restores Ward on use -(10--10)% increased Charges per use +(-10-10)% reduced Charges per use Debilitate nearby Enemies for 2 Seconds when Effect ends Effect is removed when Ward Breaks Culling Strike during Effect diff --git a/src/Data/Uniques/gloves.lua b/src/Data/Uniques/gloves.lua index c64695657d..613d47966a 100644 --- a/src/Data/Uniques/gloves.lua +++ b/src/Data/Uniques/gloves.lua @@ -20,10 +20,10 @@ Variant: Pre 3.16.0 Variant: Current Requires Level 75, 100 Str +(60-80) to Intelligence -+(60-75) to maximum Life -(200-220)% increased Armour {variant:2}(25-35)% increased Global Critical Strike Chance {variant:3}(40-60)% increased Global Critical Strike Chance +(200-220)% increased Armour ++(60-75) to maximum Life {variant:1}Life and Mana Leech from Critical Strikes are instant {variant:2,3}You have Vaal Pact if you've dealt a Critical Strike Recently ]],[[ @@ -54,9 +54,9 @@ The Celestial Brace Goliath Gauntlets Source: Drops from unique{The Searing Exarch} (Uber) Requires Level: 53, 77 Str -(80-120)% Increased Armour -1% Increased Attack Speed per Fortification -+(1-10) to Maximum Fortification +(80-120)% increased Armour +1% increased Attack Speed per Fortification ++(1-10) to maximum Fortification Melee Hits from Strike Skills Fortify ]],[[ Craiceann's Pincers @@ -76,14 +76,16 @@ Titan Gauntlets Variant: Pre 3.23.0 Variant: Pre 3.26.0 Variant: Current -+(50-70) to Maximum Life ++(50-70) to maximum Life +(20-30)% to Fire Resistance (0.3-0.5)% of Physical Attack Damage Leeched as Life Life Recovery from Regeneration is not applied {variant:1}Regenerate 1 Rage per second for every 100 Life Recovery per second from Regeneration +{variant:1}Does not delay Inherent Loss of Rage {variant:2}Regenerate 1 Rage per second for every 300 Life Recovery per second from Regeneration +{variant:2}Does not delay Inherent Loss of Rage {variant:3}Regenerate 1 Rage per second for every 200 Life Recovery per second from Regeneration -Does not delay Inherent Loss of Rage +{variant:3}Does not delay Inherent Loss of Rage ]],[[ Doryani's Fist Vaal Gauntlets @@ -97,7 +99,7 @@ Requires Level 63, 100 Str {variant:4}+(80-100) to maximum Energy Shield {variant:1,2,3}10% chance to Shock {variant:4}30% chance to Shock -{variant:1,2}Adds (225-335) to (785-900) Lightning Damage to Unarmed Attacks +{variant:1,2}Adds (225-335) to (785-900) Lightning Damage to Unarmed Melee Hits {variant:3,4}Adds (150-225) to (525-600) Lightning Damage to Unarmed Melee Hits {variant:1,2}Adds (60-90) to (210-240) Lightning Damage to Spells while Unarmed {variant:3,4}Adds (90-135) to (315-360) Lightning Damage to Spells while Unarmed @@ -113,15 +115,15 @@ Requires Level 47, 68 Str Socketed Gems are Supported by Level 30 Rage (120-150)% increased Armour (10-25)% reduced Rage Cost of Skills -Vaal Attack Skills Cost Rage instead of requiring Souls to Use +Vaal Attack Skills you Use yourself Cost Rage instead of requiring Souls You cannot gain Rage during Soul Gain Prevention ]],[[ Empire's Grasp Goliath Gauntlets Requires Level 53, 76 Str +Socketed Gems are Supported by Level 10 Knockback +(400-600) to Armour Knockback direction is reversed -Socketed Gems are Supported by Level 10 Knockback ]],[[ Giantsbane Bronze Gauntlets @@ -142,9 +144,9 @@ Variant: Pre 2.6.0 Variant: Pre 3.19.0 Variant: Current (10-15)% increased Attack Speed +(10-15)% increased Cast Speed {variant:1}+(10-20) to Armour {variant:2}+(20-30) to maximum Life -(10-15)% increased Cast Speed (10-15)% reduced maximum Mana {variant:2}10% chance to gain a Power, Frenzy or Endurance Charge on Kill {variant:3}(10-15)% chance to gain a Power, Frenzy or Endurance Charge on Kill @@ -158,14 +160,14 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 35, 52 Str {variant:4}Melee Strike Skills deal Splash Damage to surrounding targets -{variant:1,2,3}10% increased Global Physical Damage {variant:1,2,3}+100 to Strength {variant:4}+50 to Strength +{variant:1,2,3}10% increased Global Physical Damage {variant:1}(5-15)% reduced Attack Speed {variant:1,2,3}(40-60)% increased Armour {variant:4}(150-200)% increased Armour -{variant:3}Regenerate 2% of Life per second with at least 400 Strength {variant:4}100% increased Knockback Distance +{variant:3}Regenerate 2% of Life per second with at least 400 Strength {variant:4}Melee Hits with Strike Skills always Knockback ]],[[ Veruso's Battering Rams @@ -186,7 +188,7 @@ Trigger Socketed Curse Spell when you Cast a Curse Spell, with a 0.25 second Coo +(50-90) to maximum Energy Shield 0.2% of Spell Damage Leeched as Energy Shield for each Curse on Enemy You can apply an additional Curse -(10-20)% increased Cast Speed with Curse Skills +Curse Skills have (10-20)% increased Cast Speed ]],[[ Winds of Change Ancient Gauntlets @@ -200,8 +202,7 @@ Requires Level 47, 68 Str {variant:2}(5-10)% reduced Movement Speed 10% chance to Knock Enemies Back on hit (30-50)% increased Projectile Damage -]], -[[ +]],[[ The Caged Mammoth Antique Gauntlets Source: Drops from unique{Uber Incarnation of Fear} in normal{Moment of Trauma} @@ -230,11 +231,11 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 9, 17 Dex +(20-30) to Strength -{variant:1}50% increased Evasion Rating +{variant:2}Adds (5-7) to (13-15) Cold Damage to Spells and Attacks +{variant:1}+50 to Evasion Rating {variant:2,3}+(40-50) to Evasion Rating {variant:1}+(10-20)% to Cold Resistance {variant:2,3}+(20-30)% to Cold Resistance -{variant:2}Adds (5-7) to (13-15) Cold Damage to Spells and Attacks {variant:1}25% of Physical Damage Converted to Cold Damage {variant:2}50% of Physical Damage Converted to Cold Damage {variant:3}100% of Physical Damage Converted to Cold Damage @@ -248,11 +249,11 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 24, 17 Dex +(20-30) to Strength -{variant:1}50% increased Evasion Rating +{variant:2}Adds (5-7) to (13-15) Cold Damage to Spells and Attacks +{variant:1}+50 to Evasion Rating {variant:2}+(40-50) to Evasion Rating {variant:1}+(10-20)% to Cold Resistance {variant:2}+(20-30)% to Cold Resistance -{variant:2}Adds (5-7) to (13-15) Cold Damage to Spells and Attacks {variant:1}25% of Physical Damage Converted to Cold Damage {variant:2}50% of Physical Damage Converted to Cold Damage Reflects 10 Cold Damage to Melee Attackers @@ -272,8 +273,8 @@ Requires Level 21, 33 Dex {variant:1}+(40-50)% to Global Critical Strike Multiplier {variant:2}+(28-36)% to Global Critical Strike Multiplier {variant:3}+(20-30)% to Global Critical Strike Multiplier -{variant:4}Your Critical Strike Multiplier is 300% (60-80)% increased Evasion Rating +{variant:4}Your Critical Strike Multiplier is 300% ]],[[ Mercenary's Lot Slink Gloves @@ -285,20 +286,20 @@ Requires Level 70, 95 Dex (5-8)% increased Attack and Cast Speed Mark Skills have (10-15)% increased Cast Speed (30-50)% increased Damage with Hits and Ailments against Marked Enemy -Your Mark transfers to another Enemy when Marked Enemy dies {variant:2}8% of Damage from Hits is taken from Marked Target's Life before you +Your Mark Transfers to another Enemy when Marked Enemy dies ]],[[ Oskarm Nubuck Gloves Variant: Pre 3.16.0 Variant: Current Requires Level 52, 50 Dex -Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy -(30-40)% increased Accuracy Rating +Trigger Level 10 Assassin's Mark when you Hit a Rare or Unique Enemy and have no Mark +{variant:1}+(7-8)% chance to Suppress Spell Damage +{variant:2}+(10-12)% chance to Suppress Spell Damage +(30-40)% increased Global Accuracy Rating +(40-50) to maximum Life -(20-10)% to Chaos Resistance -{variant:1}(7-8)% chance to Suppress Spell Damage -{variant:2}(10-12)% chance to Suppress Spell Damage 2% increased Attack Critical Strike Chance per 200 Accuracy Rating ]],[[ Painseeker @@ -308,10 +309,9 @@ Adds (16-19) to (25-29) Fire Damage Adds (16-19) to (25-29) Cold Damage Adds (6-10) to (33-38) Lightning Damage (60-120)% increased Evasion Rating -Critical Strikes do not inherently apply non-Damaging Ailments +Critical Strikes do not inherently inflict non-Damaging Ailments Inflict non-Damaging Ailments as though dealing (100-200)% more Damage -]], -[[ +]],[[ Hand of the Lords Carnal Mitts Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} @@ -336,7 +336,7 @@ Variant: Current {variant:3}Grants Level 25 Blight Skill {variant:1}(20-30)% increased Damage over Time (100-120)% increased Energy Shield -10% increased Area of Effect of Area Skills +10% increased Area of Effect Blight has (20-30)% increased Hinder Duration You cannot be Hindered ]],[[ @@ -348,8 +348,8 @@ Variant: Pre 3.26.0 Variant: Current League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist -{variant:1,2}Grants Level 22 Wintertide Brand -{variant:3}Grants Level 25 Wintertide Brand +{variant:1,2}Grants Level 22 Wintertide Brand Skill +{variant:3}Grants Level 25 Wintertide Brand Skill {variant:1}(20-30)% increased Damage over Time (100-120)% increased Energy Shield 10% increased Area of Effect @@ -370,8 +370,8 @@ Requires Level 25, 39 Int {variant:3}+(60-80) to maximum Mana {variant:1,2,3}Curse Enemies with Temporal Chains on Hit {variant:3}Non-Aura Curses you inflict are not removed from Dying Enemies -{variant:3}Enemies near Corpses affected by your Curses are Blinded -{variant:3}Enemies killed near Corpses affected by your Curses explode, dealing +{variant:3}Enemies near corpses affected by your Curses are Blinded +{variant:3}Enemies Killed near corpses affected by your Curses explode, dealing {variant:3}3% of their Life as Physical Damage ]],[[ Black Zenith @@ -425,8 +425,8 @@ Source: No longer obtainable Variant: Pre 3.11.0 Variant: Current Requires Level 64, 21 Int -(50-60)% increased Spell Damage +20 to Intelligence +(50-60)% increased Spell Damage Adds (48-56) to (73-84) Chaos Damage to Spells 15% reduced Cast Speed +(64-96) to maximum Energy Shield @@ -498,13 +498,13 @@ Variant: Pre 3.11.0 Variant: Current Requires Level 55, 79 Int +1 to Level of Socketed Elemental Gems -(125-150)% increased Critical Strike Chance for Spells +(125-150)% increased Spell Critical Strike Chance {variant:1,2}(280-350)% increased Energy Shield {variant:3,4}(180-250)% increased Energy Shield {variant:1}80% increased Mana Cost of Skills {variant:2,3}(40-80)% increased Mana Cost of Skills -{variant:4}Lose (40-80) Mana when you use a Skill Gain (15-20) Energy Shield per Enemy Killed +{variant:4}Lose (40-80) Mana when you use a Skill ]], -- Gloves: Armour/Evasion [[ @@ -512,8 +512,8 @@ Aurseize Steelscale Gauntlets Requires Level 36, 29 Str, 29 Dex (40-60)% increased Armour and Evasion -+15% to all Elemental Resistances (40-50)% increased Rarity of Items found ++15% to all Elemental Resistances 5% reduced Movement Speed ]],[[ Breathstealer @@ -533,9 +533,9 @@ Hydrascale Gauntlets League: Bestiary Source: Drops from unique{Farrul, First of the Plains} Requires Level 59, 45 Str, 45 Dex ++(400-500) to Accuracy Rating (100-140)% increased Armour and Evasion +(50-70) to maximum Life -+(400-500) to Accuracy against Bleeding Enemies Attacks always inflict Bleeding while you have Cat's Stealth (40-50)% increased Damage with Hits and Ailments against Bleeding Enemies You have Crimson Dance while you have Cat's Stealth @@ -569,7 +569,7 @@ Attacks have 25% chance to cause Bleeding (25-40)% increased Attack Damage against Bleeding Enemies Bleeding Enemies you Kill Explode, dealing 5% of their Maximum Life as Physical Damage -25% reduced Bleed duration +25% reduced Bleeding Duration ]],[[ Slitherpinch Bronzescale Gauntlets @@ -622,12 +622,12 @@ Variant: Searching: Onslaught {variant:1,2}(6-10)% increased Attack Speed {variant:3}(5-10)% increased Attack Speed {variant:1,2}(4-6)% increased maximum Life +{variant:11}With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill {variant:6}With a Murderous Eye Jewel Socketed, Intimidate Enemies for 4 seconds on Hit with Attacks -{variant:7}With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify -{variant:8}With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit, no more than once every second {variant:9}With a Searching Eye Jewel Socketed, Maim Enemies for 4 seconds on Hit with Attacks {variant:10}With a Searching Eye Jewel Socketed, Blind Enemies for 4 seconds on Hit with Attacks -{variant:11}With a Searching Eye Jewel Socketed, Attacks have 25% chance to grant Onslaught On Kill +{variant:8}With a Murderous Eye Jewel Socketed, Melee Attacks grant 1 Rage on Hit +{variant:7}With a Murderous Eye Jewel Socketed, Melee Hits have 25% chance to Fortify ]],[[ Vaal Caress Bronzescale Gauntlets @@ -672,8 +672,10 @@ Wyrmscale Gauntlets (8-12)% increased Attack Speed (100-150)% increased Armour and Evasion (2-3)% of Physical Attack Damage Leeched as Life -10% chance to gain Adrenaline for 2 Seconds when Leech is removed by Filling Unreserved Life -10% chance to gain Onslaught for 4 Seconds when Leech is removed by Filling Unreserved Life +10% chance to gain Adrenaline for 2 Seconds when Leech is +removed by Filling Unreserved Life +10% chance to gain Onslaught for 4 Seconds when Leech is +removed by Filling Unreserved Life ]], -- Gloves: Armour/Energy Shield [[ @@ -691,16 +693,16 @@ Requires Level 37, 29 Str, 29 Int (6-10)% increased Cast Speed (4-6)% increased maximum Life {variant:1,2}With a Ghastly Eye Jewel Socketed, Minions have +1000 to Accuracy Rating -{variant:3,4}With a Ghastly Eye Jewel Socketed, Minions have 25% chance to gain Unholy Might on Hit with Spells With a Hypnotic Eye Jewel Socketed, gain Arcane Surge on Hit with Spells +{variant:3,4}With a Ghastly Eye Jewel Socketed, Minions have 25% chance to gain Unholy Might on Hit with Spells ]],[[ The Hand of Phrecia Mesh Gloves League: Necropolis Requires Level 32, 26 Str, 26 Int -(50–70)% increased Armour and Energy Shield -+(10–15)% to all Elemental Resistances -(20–40)% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target +(50-70)% increased Armour and Energy Shield ++(10-15)% to all Elemental Resistances +(20-40)% increased Effect of Non-Curse Auras from your Skills while you have a Linked Target Linked Targets always count as in range of Non-Curse Auras from your Skills Non-Curse Auras from your Skills only apply to you and Linked Targets ]],[[ @@ -714,8 +716,8 @@ Requires Level 43, 34 Str, 34 Int (70-130)% increased Armour and Energy Shield +(50-70) to maximum Life Gain Sacrificial Zeal when you use a Skill, dealing you 150% of the Skill's Mana Cost as Physical Damage per Second -{variant:1}Hits Overwhelm (10-15)% of Physical Damage Reduction while you have Sacrificial Zeal -{variant:2}(35-50)% chance for Hits to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal +{variant:1}Hits have (10-15)% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal +{variant:2}Hits have (35-50)% chance to ignore Enemy Physical Damage Reduction while you have Sacrificial Zeal ]],[[ Hands of the High Templar Crusader Gloves @@ -734,7 +736,7 @@ Requires Level 57, 44 Str, 44 Int (150-180)% increased Armour and Energy Shield +(50-70) to maximum Life (20-40)% increased Mana Regeneration Rate -Dispels Elemental Ailments on Rampage +Removes Elemental Ailments on Rampage Gain Immunity to Physical Damage for 1.5 seconds on Rampage Rampage ]],[[ @@ -757,11 +759,11 @@ Variant: Current Requires Level 66, 306 Str, 306 Int 500% increased Attribute Requirements {variant:2}(6-12)% increased Strength -{variant:1}(0-30)% reduced Spell Damage {variant:1}(120-180)% increased Armour and Energy Shield {variant:2}(400-500)% increased Armour and Energy Shield {variant:1}+(8-16) to maximum Energy Shield Iron Will +{variant:1}(0-30)% reduced Spell Damage ]],[[ Saqawal's Winds Soldier Gloves @@ -780,8 +782,8 @@ Chain Gloves Variant: Pre 1.2.0 Variant: Current Requires Level 7, 17 Dex -(40-60)% increased Stun and Block Recovery Hexes applied by Socketed Curse Skills are Reflected back to you +(40-60)% increased Stun and Block Recovery You cannot be Chilled for 3 seconds after being Chilled You cannot be Frozen for 3 seconds after being Frozen You cannot be Ignited for 3 seconds after being Ignited @@ -821,10 +823,10 @@ Requires Level 51, 40 Str, 40 Int {variant:3}Adds (60-72) to (88-100) Cold Damage to Attacks (12-16)% increased maximum Life +(40-50)% to Cold Resistance -{variant:2}50% increased Herald of Ice Damage {variant:1,2}25% increased Freeze Duration on Enemies {variant:3}100% increased Freeze Duration on Enemies -Your Hits can only Kill Frozen enemies +Your Hits can only Kill Frozen Enemies +{variant:2}50% increased Herald of Ice Damage ]],[[ Triad Grip Mesh Gloves @@ -849,12 +851,12 @@ Requires Level 43, 34 Str, 34 Int {variant:1}+(30-40)% to Fire Resistance {variant:2}+(30-40)% to Cold Resistance {variant:3}+(30-40)% to Lightning Resistance -50% less Poison Duration -{variant:1}Your Fire Damage can Poison {variant:2}Your Cold Damage can Poison +{variant:1}Your Fire Damage can Poison {variant:3}Your Lightning Damage can Poison -{variant:1}Fire Skills have 20% chance to Poison on Hit +50% less Poison Duration {variant:2}Cold Skills have 20% chance to Poison on Hit +{variant:1}Fire Skills have 20% chance to Poison on Hit {variant:3}Lightning Skills have 20% chance to Poison on Hit ]],[[ Replica Volkuur's Guidance @@ -879,7 +881,7 @@ Requires Level 77, 70 Str, 70 Int (15-25)% increased Life Regeneration rate 15% increased Area of Effect of Aura Skills Excommunicate Enemies on Melee Hit for 3 seconds -{variant:2}+(0.8-1.6)% to Critical Strike Chance against Excommunicated Enemies +{variant:2}Melee Attacks have +(0.8-1.6)% to Critical Strike Chance against Excommunicated Enemies ]], -- Gloves: Evasion/Energy Shield [[ @@ -899,7 +901,7 @@ Stormseeker Ambush Mitts +(40-60) to maximum Energy Shield +(40-60) to maximum Mana -(60-100)% increased Effect of Chill you inflict while Leeching Mana +(60-100)% increased Effect of Chills you inflict while Leeching Mana (60-100)% increased Effect of Shocks you inflict while Leeching Energy Shield Unaffected by Chill while Leeching Mana Unaffected by Shock while Leeching Energy Shield @@ -923,8 +925,8 @@ Requires Level 31, 25 Dex 25 Int (5-7)% increased Cast Speed (100-150)% increased Evasion and Energy Shield Raised Zombies have (80-100)% increased maximum Life -Raise Zombie does not require a Corpse -Your Raised Zombies count as Corpses +Raise Zombie does not require a corpse +Your Raised Zombies count as corpses ]],[[ Architect's Hand {variant:1}Strapped Mitts @@ -941,8 +943,8 @@ Upgrade: Upgrades to unique{Slavedriver's Hand} via currency{Vial of Dominance} {variant:2}(200-250)% increased Evasion and Energy Shield (20-30)% reduced Trap Throwing Speed {variant:1}Skills used by Traps have (10-20)% increased Area of Effect -{variant:2}(4-6)% chance to throw up to 4 additional Traps Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed +{variant:2}(4-6)% chance to throw up to 4 additional Traps ]],[[ Slavedriver's Hand Ambush Mitts @@ -952,10 +954,11 @@ Requires Level 45, 35 Dex, 35 Int +(30-40) to Dexterity (200-250)% increased Evasion and Energy Shield (20-30)% reduced Trap Throwing Speed -Skills which throw Traps Cost Life instead of Mana Skills used by Traps have (10-20)% increased Area of Effect Increases and Reductions to Cast Speed also Apply to Trap Throwing Speed -10% chance to gain an Endurance, Frenzy or Power Charge when any of your Traps is Triggered by an Enemy +10% chance to gain an Endurance, Frenzy or Power Charge when any +of your Traps are Triggered by an Enemy +Skills which throw Traps Cost Life instead of Mana ]],[[ Blasphemer's Grasp Assassin's Mitts @@ -967,7 +970,7 @@ Requires Level 58, 45 Dex, 45 Int +(50-60) to maximum Life +6 to Maximum Life per Elder Item Equipped +4% to Damage over Time Multiplier for Ailments per Elder Item Equipped -8% increased Effect of non-Damaging Ailments per Elder Item Equipped +8% increased Effect of Non-Damaging Ailments per Elder Item Equipped Remove an Ailment when you use a Flask if all Equipped Items are Elder Items ]],[[ The Embalmer @@ -993,7 +996,7 @@ Requires Level 16, 14 Dex, 14 Int {variant:4}+45% to Global Critical Strike Multiplier {variant:5,6}+30% to Global Critical Strike Multiplier 10% reduced Enemy Stun Threshold -{variant:1}(800-1000)% more Unarmed Physical Damage +{variant:1}(800-1000)% more Physical Damage with Unarmed Melee Attacks {variant:2,3,4,5}(600-800)% more Physical Damage with Unarmed Melee Attacks {variant:6}(600-1000)% more Physical Damage with Unarmed Melee Attacks Extra gore @@ -1018,7 +1021,7 @@ Elder Item Source: Drops from unique{The Elder} (Uber Uber) (120-150)% increased Evasion and Energy Shield +(17-29)% to Chaos Resistance -{variant:1}Eat a Soul when you Hit a Unique Enemy, no more than once every second +{variant:1}Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0 seconds {variant:2}Eat a Soul when you Hit a Rare or Unique Enemy, no more than once every 0.5 seconds +(-10-10) to maximum number of Eaten Souls ]],[[ @@ -1084,7 +1087,7 @@ Requires Level 58, 45 Dex, 45 Int 2% increased Attack Speed per Frenzy Charge 6% increased Accuracy Rating per Frenzy Charge 10% reduced Frenzy Charge Duration per Frenzy Charge -{variant:1}While at Maximum Frenzy Charges, Attacks Poison Enemies +{variant:1}While at maximum Frenzy Charges, Attacks Poison Enemies {variant:2,3}Attacks have 60% chance to Poison while at maximum Frenzy Charges {variant:3}+5% to Damage over Time Multiplier for Poison per Frenzy Charge ]],[[ @@ -1110,8 +1113,8 @@ Requires Level 67, 51 Dex, 51 Int {variant:1,3}Adds 1 to 100 Lightning Damage to Attacks {variant:2}Adds 1 to 40 Lightning Damage to Attacks 10% increased Attack Speed -{variant:1,2,3}+(25-30) to maximum Energy Shield {variant:4}(150-200)% increased Evasion and Energy Shield +{variant:1,2,3}+(25-30) to maximum Energy Shield {variant:1,2,3}10% increased Stun Duration on Enemies {variant:1,2,3}100% increased Duration of Lightning Ailments {variant:4}100% increased Effect of Lightning Ailments diff --git a/src/Data/Uniques/helmet.lua b/src/Data/Uniques/helmet.lua index 8fff0b835c..5bd8bf5d0c 100644 --- a/src/Data/Uniques/helmet.lua +++ b/src/Data/Uniques/helmet.lua @@ -9,8 +9,8 @@ Variant: Pre 2.2.0 Variant: Pre 3.0.0 Variant: Current Requires Level 60, 138 Str -Adds 40 to 60 Physical Damage to Attacks +(20-25) to all Attributes +Adds 40 to 60 Physical Damage to Attacks {variant:1}+(100-150)% to Melee Critical Strike Multiplier {variant:2}+(150-225)% to Melee Critical Strike Multiplier {variant:3}+(100-125)% to Melee Critical Strike Multiplier @@ -42,8 +42,8 @@ Requires Level 26, 58 Str Half of your Strength is added to your Minions {variant:1}+1 to maximum number of Raised Zombies per 300 Strength {variant:2}+1 to maximum number of Raised Zombies per 500 Strength -{variant:1}With 1000 or more Strength 2% of Damage dealt by your Zombies is Leeched to you as Life -{variant:2}With 1000 or more Strength (1.5-2)% of Damage dealt by your Zombies is Leeched to you as Life +{variant:1}With at least 1000 Strength, 20% of Damage dealt by your Raised Zombies is Leeched to you as Life +{variant:2}With at least 1000 Strength, (1.5-2)% of Damage dealt by your Raised Zombies is Leeched to you as Life ]],[[ Ezomyte Peak Iron Hat @@ -53,8 +53,8 @@ Variant: Current {variant:1}+(15-25) to Armour {variant:2}+(75-100) to Armour +(25-50) to maximum Life -{variant:1}Cannot Evade Enemy Attacks {variant:2}(15-20)% increased Area of Effect +{variant:1}Cannot Evade Enemy Attacks {variant:2}Unwavering Stance ]],[[ Ezomyte Hold @@ -81,9 +81,8 @@ Requires Level 48, 101 Str {variant:1,2}+(40-50) to maximum Life {variant:3}-30% to Fire Resistance {variant:1,2}-20 Fire Damage taken from Hits -{variant:3}-(100-200) Fire Damage taken from Hits -{variant:1}Armour is increased by Uncapped Fire Resistance -{variant:2,3}Armour is increased by Overcapped Fire Resistance +{variant:3}-(200-100) Fire Damage taken from Hits +{variant:1,2,3}Armour is increased by Overcapped Fire Resistance ]],[[ The Formless Inferno Royal Burgonet @@ -93,14 +92,13 @@ Variant: Pre 3.16.0 Variant: Pre 3.21.0 Variant: Current Requires Level 65, 148 Str -{variant:3}Socketed Gems are supported by level 30 Infernal Legion +{variant:3}Socketed Gems are Supported by Level 30 Infernal Legion {variant:1,2}(80-120)% increased Armour {variant:1,2}+(40-50) to maximum Life {variant:3}+(60-100) to maximum Life -30% to Fire Resistance {variant:1,2}8% of Physical Damage from Hits taken as Fire Damage -{variant:1}Armour is increased by Uncapped Fire Resistance -{variant:2}Armour is increased by Overcapped Fire Resistance +{variant:1,2}Armour is increased by Overcapped Fire Resistance {variant:3}Minion Life is increased by their Overcapped Fire Resistance ]],[[ Echoes of Creation @@ -111,7 +109,8 @@ Requires Level 65, 148 Str Socketed Warcry Skills have +1 Cooldown Use (80-120)% increased Armour +(50-70) to maximum Life -When you Attack, take (15-20)% of Life as Physical Damage for each Warcry Exerting the Attack +When you Attack, take (15-20)% of Life as Physical Damage for +each Warcry Exerting the Attack Skills deal (10-15)% more Damage for each Warcry Exerting them ]],[[ Hrimnor's Resolve @@ -124,12 +123,12 @@ Requires Level 55, 114 Str {variant:2,3}(30-40)% increased Fire Damage {variant:1}(40-60)% increased Armour {variant:2,3}(100-120)% increased Armour +{variant:2,3}10% increased Stun and Block Recovery {variant:3}+(50-70) to maximum Life +30% to Cold Resistance {variant:1,2}50% chance to Avoid being Chilled {variant:1,2}50% chance to Avoid being Frozen -{variant:1,2}10% increased Stun and Block Recovery -{variant:3}Cannot be Frozen or Chilled if you've used a Fire Skill Recently +{variant:3}100% chance to Avoid being Chilled or Frozen if you have used a Fire Skill Recently ]],[[ Kaom's Command Siege Helmet @@ -160,6 +159,7 @@ Reaver Helmet 24% reduced maximum Life Regenerate (200-250) Life per second 100% increased Stun and Block Recovery +Reserves 8% of Life Nearby Enemy Monsters have at least 8% of Life Reserved ]],[[ Howlcrack @@ -169,8 +169,8 @@ League: Mercenaries of Trarthus Requires Level 60, 138 Str +(30-40) to Strength (100-160)% increased Armour -Non-instant Warcries ignore their Cooldown when used -Warcries cost +15% of Life +Non-Instant Warcries ignore their Cooldown when Used +Warcries Cost +15% of Life Warcry Skills have (15-25)% increased Area of Effect ]], [[ @@ -179,7 +179,7 @@ Paladin Crown Source: Drops from unique{Uber Incarnation of Neglect} in normal{Moment of Loneliness} Requires Level 78, 116 Str, 116 Int (350-650)% increased Armour -(-50--40)% to all Elemental Resistances +-(50-40)% to all Elemental Resistances +(13-29)% to Chaos Resistance (15-30)% of Elemental Damage from Hits taken as Physical Damage Physical Damage of Enemies Hitting you is Unlucky @@ -193,7 +193,7 @@ Requires Level 73, 101 Str, 101 Int +(25-35)% to all Elemental Resistances 50% increased Light Radius Link Skills can target Damageable Minions -Your Linked Minions take (75-65)% less Damage +Your Linked Minions take (65-75)% less Damage On Killing a Rare monster, a random Linked Minion gains its Modifiers for 60 seconds ]], -- Helmet: Evasion @@ -204,8 +204,8 @@ Requires Level 64, 138 Dex +2 to Level of Socketed Aura Gems (80-100)% increased Evasion Rating +(20-30)% to Cold Resistance -25% chance to Avoid being Chilled Cannot be Frozen +25% chance to Avoid being Chilled 16% increased Mana Reservation Efficiency of Skills ]],[[ Replica Alpha's Howl @@ -229,10 +229,11 @@ Implicits: 0 {variant:1}Grants Level 20 Snipe Skill {variant:2}Grants Level 30 Snipe Skill Socketed Non-Channelling Bow Skills are Triggered by Snipe +Socketed Triggered Bow Skills gain a 0.05 second Cooldown +(350-500) to Accuracy Rating +(350-500) to Evasion Rating {variant:2}+2 to maximum Snipe Stages -(14-20)% chance to Suppress Spell Damage while Channelling ++(14-20)% chance to Suppress Spell Damage while Channelling ]],[[ Fairgraves' Tricorne Tricorne @@ -270,20 +271,20 @@ Requires Level 20, 46 Dex {variant:2,3,4}+(20-30)% to Fire Resistance {variant:1}-(20-10)% to Cold Resistance {variant:2,3,4}+(20-30)% to Cold Resistance -{variant:2}(20-30)% increased Cold Damage if you have used a Fire Skill Recently -{variant:2}(20-30)% increased Fire Damage if you have used a Cold Skill Recently {variant:3,4}Gain 1% of Cold Damage as Extra Fire Damage per 1% Chill Effect on Enemy {variant:3}Gain 100% of Cold Damage as Extra Fire Damage against Frozen Enemies {variant:4}Gain 30% of Cold Damage as Extra Fire Damage against Frozen Enemies +{variant:2}(20-30)% increased Cold Damage if you have used a Fire Skill Recently +{variant:2}(20-30)% increased Fire Damage if you have used a Cold Skill Recently ]],[[ Replica Heatshiver Leather Hood League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist -(80–100)% increased Evasion Rating +(80-100)% increased Evasion Rating 60% increased Mana Regeneration Rate -+(20–30)% to Cold Resistance -+(20–30)% to Lightning Resistance ++(20-30)% to Cold Resistance ++(20-30)% to Lightning Resistance Gain 1% of Lightning Damage as Extra Cold Damage per 2% Shock Effect on Enemy ]],[[ Frostferno @@ -341,12 +342,12 @@ Silken Hood Variant: Pre 2.6.0 Variant: Current Requires Level 60, 138 Dex -50% reduced Damage when on Low Life -{variant:2}(100-130)% increased Evasion Rating {variant:1}+(30-50) to Dexterity {variant:2}+(50-70) to Dexterity +50% reduced Damage when on Low Life 10% increased Attack Speed 25% increased Global Critical Strike Chance +{variant:2}(100-130)% increased Evasion Rating +(80-100) to maximum Life {variant:1}50% increased Global Evasion Rating when on Low Life {variant:2}150% increased Global Evasion Rating when on Low Life @@ -363,11 +364,11 @@ Requires Level 8, 23 Int {variant:3}(30-60)% increased Spell Damage (10-15)% increased Attack Speed {variant:1,2}(10-15)% increased Cast Speed -{variant:1}50% increased Energy Shield {variant:2,3}+(30-50) to maximum Energy Shield +{variant:2,3}(10-15)% increased Stun and Block Recovery +{variant:1}50% increased Energy Shield 30% increased Mana Regeneration Rate {variant:1,2}5% increased Movement Speed -{variant:1,2}(10-15)% increased Stun and Block Recovery ]],[[ Asenath's Chant Iron Circlet @@ -406,8 +407,8 @@ Can have a second Enchantment Modifier +(20-30) to all Attributes (60-80)% increased Evasion Rating (50-55)% reduced Fire Resistance -(50-55)% reduced Lightning Resistance Cold Resistance is 75% +(50-55)% reduced Lightning Resistance This item can be anointed by Cassia ]],[[ Cowl of the Thermophile @@ -418,9 +419,9 @@ Source: Drops in Blighted Maps Can have a second Enchantment Modifier +(20-30) to all Attributes (60-80)% increased Armour +Fire Resistance is 75% (50-55)% reduced Cold Resistance (50-55)% reduced Lightning Resistance -Fire Resistance is 75% This item can be anointed by Cassia ]],[[ Chitus' Apex @@ -428,8 +429,8 @@ Necromancer Circlet Requires Level 54, 112 Int +(20-30) to Strength +(20-30) to maximum Mana -+10% to all Elemental Resistances 5% increased Experience gain ++10% to all Elemental Resistances (10-20)% increased Elemental Damage ]],[[ Crown of Eyes @@ -467,7 +468,7 @@ Requires Level 52 {variant:1}+(260-300) to maximum Energy Shield {variant:2}+(170-210) to maximum Energy Shield Reflects 5 Physical Damage to Melee Attackers -Take 5 Physical Damage when hit by Attacks ++5 Physical Damage taken from Attack Hits Pain Attunement ]],[[ The Devouring Diadem @@ -514,55 +515,57 @@ Variant: Attack/Cast Speed if consumed corpse Variant: Take no Crit Damage if Recharge Variant: Damage if consumed corpse {variant:1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25}+1 to Level of Socketed Gems -{variant:1,2,3,4,5,6,7,8,9,10,11,12,13}Socketed Gems have 40% increased Mana Reservation Efficiency +{variant:34}+2 to Level of Socketed Gems +{variant:29}+2 to Level of Socketed Melee Gems +{variant:1,2,3,4,5,6,7,8,9,10,11,12,13}Socketed Gems have 40% reduced Reservation Efficiency {variant:14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38}Socketed Gems have 25% increased Reservation Efficiency Trigger Level 15 Feast of Flesh every 5 seconds +{variant:1}+(10-25) to Strength +{variant:2}+(10-25) to Dexterity +{variant:3}+(10-25) to Intelligence +{variant:7}+(6-17) to Strength and Dexterity +{variant:19}+(31-35) to Strength and Dexterity +{variant:9}+(6-17) to Strength and Intelligence +{variant:21}+(31-35) to Strength and Intelligence +{variant:8}+(6-17) to Dexterity and Intelligence +{variant:20}+(31-35) to Dexterity and Intelligence (180-220)% increased Energy Shield +{variant:30}+(55-60) to maximum Life +{variant:31}Regenerate 33.3 Life per second +{variant:31}+(55-60) to maximum Mana +{variant:26}Minions have (8-10)% increased maximum Life +{variant:28}Projectiles Pierce an additional Target +{variant:27}(8-10)% increased Area of Effect +{variant:26}+1 to maximum number of Raised Zombies +{variant:26}+1 to maximum number of Spectres +{variant:26}+1 to maximum number of Skeletons +{variant:29}+0.2 metres to Melee Strike Range 10% chance for Energy Shield Recharge to start when you use a Skill +{variant:4}+(8-15)% to Fire and Chaos Resistances +{variant:16}+(16-20)% to Fire and Chaos Resistances +{variant:23}Focus has (5-8)% increased Cooldown Recovery Rate +{variant:26}+1 to maximum number of Skeletons Eldritch Battery -{variant:1}{crafted}+(10-25) to Strength -{variant:2}{crafted}+(10-25) to Dexterity -{variant:3}{crafted}+(10-25) to Intelligence {variant:1,2,3}{crafted}+(7-18)% to Quality -{variant:4}{crafted}+(8-15)% to Fire and Chaos Resistances {variant:5}{crafted}+(8-15)% to Cold and Chaos Resistances {variant:6}{crafted}+(8-15)% to Lightning and Chaos Resistances -{variant:7}{crafted}+(6-17) to Strength and Dexterity -{variant:8}{crafted}+(6-17) to Dexterity and Intelligence -{variant:9}{crafted}+(6-17) to Strength and Intelligence {variant:10}{crafted}(7-12)% increased Mine Laying Speed {variant:11}{crafted}Trigger Socketed Spells when you Focus {variant:12}{crafted}(81-140)% increased Duration of Ailments you inflict while Focused {variant:13}{crafted}(6-9)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention {variant:14}(161-180)% increased Duration of Ailments you inflict while Focused {variant:15}(81-90)% increased Duration of Ailments you inflict while Focused -{variant:16}+(16-20)% to Fire and Chaos Resistances {variant:17}+(16-20)% to Cold and Chaos Resistances {variant:18}+(16-20)% to Lightning and Chaos Resistances -{variant:19}+(31-35) to Strength and Dexterity -{variant:20}+(31-35) to Dexterity and Intelligence -{variant:21}+(31-35) to Strength and Intelligence {variant:22}(14-16)% increased Mine Laying Speed {variant:23}Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown -{variant:23}Focus has (5-8)% increased Cooldown Recovery Rate {variant:24}(36-40)% increased Duration of Ailments you inflict while Focused {variant:25}(10-12)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention -{variant:26}+1 to maximum number of Raised Zombies -{variant:26}+1 to maximum number of Skeletons -{variant:26}Minions have (8-10)% increased maximum Life -{variant:27}(8-10)% increased Area of Effect {variant:27}+2 to Level of Socketed AoE Gems -{variant:28}Projectiles Pierce an additional Target {variant:28}+2 to Level of Socketed Projectile Gems -{variant:29}+0.2 metres to Melee Strike Range -{variant:29}+2 to Level of Socketed Melee Gems -{variant:30}+(55-60) to maximum Life {variant:30}Regenerate 5.3 Mana per second -{variant:31}+(55-60) to maximum Mana -{variant:31}Regenerate 33.3 Life per second {variant:32}(30-32)% increased Evasion Rating while Focused {variant:33}(13-15)% additional Physical Damage Reduction while Focused -{variant:34}+2 to Level of Socketed Gems {variant:35}Corpses you Spawn have 20% increased Maximum Life {variant:36}20% increased Attack and Cast Speed if you've Consumed a Corpse Recently {variant:37}Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently @@ -572,8 +575,8 @@ Wilma's Requital Solaris Circlet +(300-500) to Accuracy Rating (200-250)% increased Energy Shield -Increases and Reductions to Cast Speed apply to Attack Speed (20-30)% increased Elemental Damage with Attack Skills +Increases and Reductions to Cast Speed apply to Attack Speed Ancestral Bond ]],[[ Doedre's Scorn @@ -584,8 +587,8 @@ Variant: Current Requires Level 39, 83 Int {variant:1}+1 to Level of Socketed Curse Gems {variant:2,3}+2 to Level of Socketed Curse Gems -{variant:2,3}+(100-120) to maximum Energy Shield +(20-30) to Intelligence +{variant:2,3}+(100-120) to maximum Energy Shield {variant:1,2}20% increased Elemental Damage {variant:1,2}(10-20)% increased Damage with Hits and Ailments per Curse on Enemy Curse Skills have (30-50)% increased Skill Effect Duration @@ -596,8 +599,8 @@ Hubris Circlet Requires Level 69, 154 Int Implicits: 0 Trigger Level 10 Void Gaze when you use a Skill -+(50-80) to maximum Mana (120-150)% increased Energy Shield ++(50-80) to maximum Mana 50% increased Stun and Block Recovery Gain (5-8)% of Elemental Damage as Extra Chaos Damage ]],[[ @@ -632,8 +635,9 @@ Requires Level 59, 122 Int +(30-40)% to Fire Resistance (30-40)% increased Elemental Damage {variant:1}25% chance to Scorch Enemies +{variant:1}Cannot inflict Ignite {variant:2}(25-50)% chance to Scorch Enemies -Cannot inflict Ignite +{variant:2}Cannot inflict Ignite {variant:1}10% increased Elemental Damage per Sextant affecting the area ]],[[ Galesight @@ -645,8 +649,9 @@ Requires Level 59, 122 Int +(30-40)% to Cold Resistance (30-40)% increased Elemental Damage {variant:1}25% chance to inflict Brittle +{variant:1}Cannot inflict Freeze or Chill {variant:2}(25-50)% chance to inflict Brittle -Cannot inflict Freeze or Chill +{variant:2}Cannot inflict Freeze or Chill {variant:1}10% increased Elemental Damage per Sextant affecting the area ]],[[ Hale Negator @@ -675,8 +680,8 @@ Variant: Current Requires Level 69, 154 Int (150-180)% increased Energy Shield (6-10)% increased maximum Mana -Recover (8-10)% of maximum Life when you use a Mana Flask -Non-instant Mana recovery from Flasks is also recovered as Life +Recover (8-10)% of Life when you use a Mana Flask +Non-instant Mana Recovery from Flasks is also Recovered as Life (50-60)% increased Cost of Skills for each 200 total Mana Spent Recently {variant:1}(50-60)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% {variant:2}(20-25)% increased Spell Damage for each 200 total Mana you have Spent Recently, up to 2000% @@ -688,6 +693,7 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 26, 58 Int +(30-50) to maximum Energy Shield +(10-15)% increased Stun and Block Recovery {variant:1}Minions have (10-15)% increased Movement Speed {variant:2}Minions have (25-45)% increased Movement Speed {variant:2}Summoned Raging Spirits deal (130-150)% increased Damage @@ -769,8 +775,9 @@ Requires Level 59, 122 Int +(30-40)% to Lightning Resistance (30-40)% increased Elemental Damage {variant:1}25% chance to Sap Enemies +{variant:1}Cannot inflict Shock {variant:2}(25-50)% chance to Sap Enemies -Cannot inflict Shock +{variant:2}Cannot inflict Shock {variant:1}10% increased Elemental Damage per Sextant affecting the area ]],[[ Wraithlord @@ -781,12 +788,12 @@ Variant: Current Requires Level: 34, 73 Int {variant:3}Has 4 Abyssal Sockets {variant:1,2}+2 to Level of Socketed Minion Gems -{variant:3}+(1-2) to Level of all Minion Skill Gems (120-150)% increased Energy Shield -{variant:1}Minions Regenerate 1% Life per second -{variant:1}+1000 to Spectre maximum Life +{variant:3}+(1-2) to Level of all Minion Skill Gems {variant:2}+2 to maximum number of Spectres -{variant:3}+1 to maximum number of Spectres per Socketed Ghastly Eye Jewel +{variant:1}Minions Regenerate 1% of Life per second +{variant:3}+1 to maximum number of Raised Spectres per Socketed Ghastly Eye Jewel +{variant:1}+1000 to Spectre maximum Life {variant:2,3}You cannot have Non-Spectre Minions ]],[[ Wreath of Phrecia @@ -810,10 +817,10 @@ Requires Level 69, 154 Int Adds 1 to (60-80) Lightning Damage to Spells and Attacks (130-170)% increased Energy Shield +(25-35)% to Lightning Resistance +{variant:1}5% chance to create Shocked Ground when Hit {variant:1}10% chance to Curse non-Cursed Enemies with a random Hex on Hit {variant:2}20% chance to Curse non-Cursed Enemies with a random Hex on Hit {variant:3}Curse Enemies which Hit you with a random Hex, ignoring Curse Limit -{variant:1}5% chance to create Shocked Ground when Hit ]],[[ The Dark Monarch Lich's Circlet @@ -869,8 +876,8 @@ Requires Level 80, 224 Int {variant:14}Cannot have Minions other than Summoned Spectral Wolves {variant:15}Maximum number of Living Lightning is Doubled {variant:15}Cannot have Minions other than Living Lightning -{variant:16}Maximum number of Holy Armaments is Doubled -{variant:16}Cannot have Minions other than Holy Armaments +{variant:15}Maximum number of Holy Armaments is Doubled +{variant:15}Cannot have Minions other than Holy Armaments ]], -- Helmet: Armour/Evasion [[ @@ -878,11 +885,11 @@ Black Sun Crest Lacquered Helmet Requires Level 51, 57 Str, 57 Dex +1 to Level of Socketed Gems -(100-150)% increased Armour -40% reduced Light Radius -(5-15)% increased Dexterity (5-15)% increased Strength +(5-15)% increased Dexterity (5-15)% increased Intelligence +(100-150)% increased Armour +40% reduced Light Radius ]],[[ The Bringer of Rain Nightmare Bascinet @@ -897,9 +904,9 @@ Requires Level 67, 62 Str, 85 Dex {variant:1,4}Socketed Gems are Supported by Level 18 Faster Attacks {variant:5}Socketed Gems are Supported by Level 30 Faster Attacks {variant:2,3}Socketed Gems are Supported by Level 12 Faster Attacks -{variant:1,4}Socketed Gems are Supported by Level 18 Blind -{variant:5}Socketed Gems are Supported by Level 30 Blind -{variant:2,3}Socketed Gems are Supported by Level 6 Blind +{variant:1,4}Socketed Gems are supported by Level 18 Blind +{variant:5}Socketed Gems are supported by Level 30 Blind +{variant:2,3}Socketed Gems are supported by Level 6 Blind {variant:1,2}15% Chance to Block Attack Damage {variant:3,4,5}6% Chance to Block Attack Damage Adds 20 to 30 Physical Damage to Attacks @@ -931,9 +938,9 @@ Variant: Current Requires Level 33, 38 Str, 38 Dex +(20-30) to Strength +(20-30) to Dexterity -+(200-300) to Armour -{variant:2}Adds 10-20 Physical Damage to Attacks {variant:1,2}20% increased Melee Damage +{variant:2}Adds 10 to 20 Physical Damage to Attacks ++(200-300) to Armour Cannot Leech when on Low Life {variant:3}Skills which Exert an Attack have (20-40)% chance to not count that Attack ]],[[ @@ -945,17 +952,17 @@ Variant: Current Requires Level 33, 38 Str, 38 Dex +(20-30) to Strength +(20-30) to Dexterity -+(200-300) to Armour -{variant:2}Adds 10-20 Physical Damage to Attacks 20% increased Melee Damage +{variant:2}Adds 10 to 20 Physical Damage to Attacks ++(200-300) to Armour Cannot Leech when on Low Life If you've Warcried Recently, you and nearby allies have 20% increased Attack, Cast and Movement Speed ]],[[ Devoto's Devotion Nightmare Bascinet Requires Level 67, 62 Str, 85 Dex -10% reduced Physical Damage +(50-65) to Dexterity +10% reduced Global Physical Damage 16% increased Attack Speed (150-200)% increased Armour and Evasion +(15-25)% to Chaos Resistance @@ -966,12 +973,13 @@ The Devourer of Minds Pig-Faced Bascinet Source: Drops from unique{The Elder} (Uber Uber) Requires Level 63, 85 Str, 62 Dex -+(30–50) to Intelligence -(80–120)% increased Armour and Evasion ++(30-50) to Intelligence +(80-120)% increased Armour and Evasion +1 to Level of all Minion Skill Gems 25% increased Light Radius Minions have the same maximum number of Endurance, Frenzy and Power Charges as you -Minions count as having the same number of Endurance, Frenzy and Power Charges as you +Minions count as having the same number of +Endurance, Frenzy and Power Charges as you ]],[[ The Fledgling Lacquered Helmet @@ -981,7 +989,7 @@ Requires Level 51, 57 Str, 57 Dex (150-200)% increased Armour and Evasion (30-50)% increased Projectile Speed (30-50)% increased Projectile Damage -Projectiles cannot collide with Enemies at Close Range +Projectiles cannot collide with Enemies in Close Range Far Shot ]],[[ The Peregrine @@ -1011,11 +1019,11 @@ Requires Level 36, 42 Str, 42 Dex {variant:1,2}+(50-70) to maximum Life {variant:1,2}+(50-70) to maximum Mana {variant:2,3}+(10-20)% to all Elemental Resistances -{variant:1,2}Minions have 10% Chance to Block Attack Damage +{variant:1,2}Minions have +10% Chance to Block Attack Damage {variant:3}Minions have +25% Chance to Block Attack Damage -{variant:1,2}Minions have +(300-350) to Armour -{variant:1,2}Minions Regenerate 2% Life per Second {variant:3}Minions have +25% Chance to Block Spell Damage +{variant:1,2}Minions have +(300-350) to Armour +{variant:1,2}Minions Regenerate 2% of Life per second {variant:3}Minions Recover 10% of their Life when they Block ]],[[ El'Abin's Visage @@ -1075,9 +1083,9 @@ Requires Level 63, 85 Str, 62 Int {variant:3}+3% to maximum Cold Resistance {variant:1,2}+(30-50)% to Cold Resistance Cannot be Frozen +{variant:2}5% reduced Cold Damage taken {variant:1}+800 Armour while stationary {variant:2,3}+1500 Armour while stationary -{variant:2}5% reduced Cold Damage taken {variant:1,2}60% increased Mana Regeneration Rate while stationary 15% chance to create Chilled Ground when Hit with an Attack ]],[[ @@ -1088,13 +1096,13 @@ Variant: Pre 3.0.0 Variant: Current Requires Level 63, 85 Str, 62 Int Socketed Gems are supported by Level 20 Cast on Death -20% increased Damage when on Low Life +(10-15) to all Attributes +20% increased Damage when on Low Life (60-100)% increased Armour and Energy Shield -20% reduced Mana Regeneration Rate {variant:1}+(20-30) to maximum Energy Shield {variant:2}+(70-90) to maximum Energy Shield {variant:3}+(50-70) to maximum Energy Shield +20% reduced Mana Regeneration Rate +(43-61)% to Chaos Resistance ]],[[ Craiceann's Chitin @@ -1133,6 +1141,7 @@ Has 1 Socket {variant:1}+(50-100) to maximum Life {variant:2}+(50-175) to maximum Life Nearby Enemies have -10% to all Resistances +-10% to All Resistances You and Nearby Allies have 64 to 96 added Fire Damage per Red Socket You and Nearby Allies have 56 to 88 added Cold Damage per Green Socket You and Nearby Allies have 16 to 144 added Lightning Damage per Blue Socket @@ -1154,19 +1163,19 @@ Variant: Current {variant:3}+(20-30)% to Lightning Resistance +(20-30)% to Chaos Resistance {variant:2,3}+1 to maximum number of Summoned Holy Relics -{variant:2}Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Speed +{variant:2}Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Rate ]],[[ Geofri's Legacy Great Crown Source: No longer obtainable +1 to Level of Socketed Gems -(60-80)% increased Armour and Energy Shield +(15-20)% to Fire Resistance +(15-20)% to Cold Resistance +(15-20)% to Lightning Resistance +(20-30)% to Chaos Resistance +1 to maximum number of Summoned Holy Relics -Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Speed +Summoned Holy Relics have (20-25)% reduced Cooldown Recovery Rate +(60-80)% increased Armour and Energy Shield ]],[[ Honourhome Soldier Helmet @@ -1177,27 +1186,28 @@ Variant: Current Requires Level 12, 16 Str, 16 Int {variant:2}+(1-2) to Level of Socketed Gems {variant:3}+2 to Level of Socketed Gems -{variant:1}Adds 1 to 13 Lightning Damage to Attacks -{variant:2}Adds 1 to 13 Lightning Damage to Spells and Attacks +{variant:1,2}Adds 1 to 13 Lightning Damage to Spells and Attacks {variant:3}Adds 1 to 30 Lightning Damage to Spells and Attacks {variant:1}(40-50)% increased Armour and Energy Shield {variant:2,3}(100-150)% increased Armour and Energy Shield +{variant:2,3}(10-20)% increased Rarity of Items found {variant:1}+(10-20)% to all Elemental Resistances {variant:1}+20% to all Elemental Resistances while on Low Life -{variant:1}20% reduced Mana Cost of Skills when on Low Life -{variant:2,3}(10-20)% increased Rarity of Items found {variant:2,3}(10-20)% reduced Mana Cost of Skills +{variant:1}20% reduced Mana Cost of Skills when on Low Life ]],[[ Kitava's Thirst Zealot Helmet Variant: Pre 3.11.0 Variant: Current Requires Level 44, 50 Str, 50 Int +{variant:1}30% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an +{variant:1}Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown +{variant:2}50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an +{variant:2}Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown 15% reduced Cast Speed (70-80)% increased Armour and Energy Shield +(30-50) to maximum Mana -{variant:1}30% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown -{variant:2}50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown ]],[[ Lightpoacher Great Crown @@ -1211,10 +1221,10 @@ Variant: Two Abyssal Sockets (Current) {variant:2,4}Has 2 Abyssal Sockets Trigger Level 20 Spirit Burst when you Use a Skill while you have a Spirit Charge +(10-15)% to all Elemental Resistances -{variant:1,2}Recover (4-5)% of Life when a Spirit Charge expires or is consumed +1 to Maximum Spirit Charges per Abyss Jewel affecting you {variant:1,2}(15-20)% chance to gain a Spirit Charge on Kill {variant:3,4}Gain a Spirit Charge on Kill +{variant:1,2}Recover (4-5)% of Life when you lose a Spirit Charge {variant:3,4}Gain 5% of Physical Damage as Extra Damage of each Element per Spirit Charge ]],[[ Malachai's Vision @@ -1277,8 +1287,8 @@ Variant: Current Requires Level 58, 64 Str, 64 Int +(25-30) to all Attributes (150-200)% increased Armour and Energy Shield -{variant:1}Nearby Allies have (4-6)% increased Defences per 100 Strength you have {variant:2}Nearby Allies have 1% Chance to Block Attack Damage per 100 Strength you have +{variant:1}Nearby Allies have (4-6)% increased Defences per 100 Strength you have Nearby Allies have +(6-8)% to Critical Strike Multiplier per 100 Dexterity you have Nearby Allies have (2-4)% increased Cast Speed per 100 Intelligence you have 2% increased Mana Reservation Efficiency of Skills per 250 total Attributes @@ -1292,22 +1302,18 @@ Implicits: 1 Minions deal (15-20)% increased Damage Grants Level 20 Death Wish Skill +(45-65) to maximum Life -(30-20)% reduced Mana Cost of Minion Skills +(20-30)% reduced Mana Cost of Minion Skills Minions are Aggressive ]],[[ Memory Vault Praetor Crown -Variant: Pre 3.16.0 -Variant: Current Requires Level 68, 62 Str, 91 Int +(130-160) to maximum Energy Shield +(150-200) to maximum Mana (30-40)% increased Mana Regeneration Rate +(20-30)% to Fire Resistance -{variant:1}20% reduced Mana Reservation Efficiency of Skills -{variant:2}20% reduced Reservation Efficiency -{variant:1}Gain Armour equal to your Reserved Mana -{variant:2}1% increased Armour per 50 Reserved Mana +20% reduced Reservation Efficiency of Skills +1% increased Armour per 50 Reserved Mana ]],[[ Mindspiral Aventail Helmet @@ -1321,7 +1327,7 @@ Requires Level 37, 42 Str, 42 Int {variant:2,3}+(100-120) to maximum Mana {variant:2}Gain (5-10)% of Maximum Mana as Extra Maximum Energy Shield {variant:3}Gain (10-15)% of Maximum Mana as Extra Maximum Energy Shield -Enemies Cannot Leech Mana From You +Enemies Cannot Leech Mana From you {variant:1,2}(5-10)% of Damage taken Recouped as Mana {variant:3}(10-20)% of Damage taken Recouped as Mana Cannot Leech Mana @@ -1333,10 +1339,9 @@ Variant: Current Source: Drops from unique{The Eater of Worlds} (Uber) Requires Level: 44, 50 Str, 50 Int +(30-50) to Strength -(80-120)% Increased Armour and Energy Shield +(80-120)% increased Armour and Energy Shield {variant:1}Gain (10-15) Rage after Spending a total of 200 Mana {variant:2}Gain (7-10) Rage after Spending a total of 200 Mana -{variant:1}Rage grants Cast Speed instead of Attack Speed Rage grants Spell Damage instead of Attack Damage ]],[[ Speaker's Wreath @@ -1401,14 +1406,14 @@ Requires Level 52, 58 Dex, 58 Int {variant:2,3}+(60-80) to maximum Life (0.4-0.8)% of Physical Attack Damage Leeched as Life Reflects 100 to 150 Physical Damage to Melee Attackers -{variant:1,2}30% of Damage you Reflect to Enemies when Hit is gained as Life +{variant:1,2}30% of Damage you Reflect to Enemies when Hit is leeched as Life {variant:3}100% of Damage you Reflect to Enemies when Hit is leeched as Life ]],[[ Curtain Call Plague Mask Requires Level 20 +23 to maximum Life -(15-10)% reduced Mine Throwing Speed +(10-15)% reduced Mine Throwing Speed Mines have (40-50)% increased Detonation Speed Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Dexterity Skills which throw Mines throw up to 1 additional Mine if you have at least 800 Intelligence @@ -1418,10 +1423,10 @@ Callous Mask Requires Level 45, 51 Dex, 51 Int (400-500)% increased Evasion and Energy Shield +(20-40)% to Fire Resistance +Nearby Enemies have 50% increased Fire and Cold Resistances +(20-40)% to Cold Resistance 25% chance to inflict Cold Exposure on Hit 25% chance to inflict Fire Exposure on Hit -Nearby Enemies have 50% increased Fire and Cold Resistances ]],[[ Farrul's Bite Harlequin Mask @@ -1450,8 +1455,8 @@ Vaal Mask League: Ultimatum Source: Drops from unique{The Trialmaster} Requires Level 62, 79 Dex, 72 Int -Implicits: 1 Variant: Area of Effect +Implicits: 0 Variant: Blind Variant: Mana Cost + Reservation Variant: Curse Effect @@ -1464,23 +1469,24 @@ Variant: Aura Effect Variant: Additional Projectile Variant: Malediction Variant: Quantity -{variant:1}(15-25)% increased Area of Effect -{variant:2}Nearby Enemies are Blinded -{variant:3}Socketed Skill Gems get a 80% Cost & Reservation Multiplier -{variant:4}(10-15)% increased Effect of your Curses -{variant:5}(15-25)% increased Skill Effect Duration -{variant:6}Nearby Enemies are Crushed -{variant:7}+2 to Level of Socketed Gems -{variant:8}+1 to Minimum Endurance, Frenzy and Power Charges -{variant:9}(8-12)% increased Cooldown Recovery Rate -{variant:10}(10-15)% increased effect of Non-Curse Auras from your Skills -{variant:11}Skills fire an additional Projectile -{variant:12}Nearby Enemies have Malediction -{variant:13}(5-7)% increased Quantity of Items found Can be modified while Corrupted +Can have up to 5 Implicit Modifiers while Item has this Modifier +{variant:7}+2 to Level of Socketed Gems +{variant:3}Socketed Skill Gems get a 80% Cost & Reservation Multiplier (30-40)% increased maximum Life and reduced Fire Resistance (30-40)% increased maximum Mana and reduced Cold Resistance (30-40)% increased Global maximum Energy Shield and reduced Lightning Resistance +{variant:13}(5-7)% increased Quantity of Items found +{variant:11}Skills fire an additional Projectile +{variant:1}(15-25)% increased Area of Effect +{variant:5}(15-25)% increased Skill Effect Duration +{variant:4}(10-15)% increased Effect of your Curses +{variant:2}Nearby Enemies are Blinded +{variant:6}Nearby Enemies are Crushed +{variant:12}Nearby Enemies have Malediction +{variant:10}(10-15)% increased effect of Non-Curse Auras from your Skills +{variant:9}(8-12)% increased Cooldown Recovery Rate +{variant:8}+1 to Minimum Endurance, Frenzy and Power Charges Chaos Resistance is Zero Corrupted ]],[[ @@ -1506,8 +1512,8 @@ Requires Level 38, 44 Dex, 44 Int (120-150)% increased Evasion and Energy Shield {variant:2}+(40-65) to maximum Energy Shield {variant:3}+(30-45) to maximum Energy Shield -{variant:1}+(30-40) to maximum Mana {variant:2,3}+(60-80) to maximum Life +{variant:1}+(30-40) to maximum Mana {variant:2,3}+(30-40)% to Cold Resistance {variant:1}Gain (15-20) Life per Enemy Killed {variant:1}Gain (10-15) Energy Shield per Enemy Killed @@ -1521,13 +1527,13 @@ Variant: Pre 3.0.0 Variant: Pre 3.20.0 Variant: Current Requires Level 67, 73 Dex, 88 Int -+(40-50) to maximum Energy Shield -{variant:1,2}(130-150)% increased Evasion and Energy Shield -{variant:3,4}(90-110)% increased Evasion and Energy Shield {variant:1,4}+2 to Level of Socketed Curse Gems {variant:2,3}+1 to Level of Socketed Curse Gems -Socketed Curse Gems are Supported by Level 22 Blasphemy +Socketed Gems are Supported by Level 22 Blasphemy Socketed Curse Gems have 30% increased Reservation Efficiency +{variant:1,2}(130-150)% increased Evasion and Energy Shield +{variant:3,4}(90-110)% increased Evasion and Energy Shield ++(40-50) to maximum Energy Shield ]],[[ Leer Cast Festival Mask @@ -1565,16 +1571,16 @@ Variant: Pre 3.7.0 Variant: Pre 3.17.0 Variant: Pre 3.19.0 Variant: Current -{variant:1,2,3,4,5}(15-30)% increased Spell Damage +20 to Strength +{variant:1,2,3,4,5}(15-30)% increased Spell Damage {variant:1,2,3,4,5}(20-30)% increased Lightning Damage {variant:1,2,3,4,5}+10% to Lightning Resistance {variant:6}+(20-30)% to Lightning Resistance +{variant:1}100% reduced Mana Cost of Skills +{variant:2}20% reduced Mana Cost of Skills {variant:6}Spells have a 20% chance to deal Double Damage -{variant:1}100% increased Mana Cost of Skills -{variant:2}20% increased Mana Cost of Skills Blood Magic -{variant:4}Mortal Conviction +{variant:4}Blood Magic ]],[[ Malachai's Awakening Iron Mask @@ -1583,14 +1589,14 @@ Variant: Pre 3.7.0 Variant: Pre 3.17.0 Variant: Current Requires Level 60, 21 Dex, 21 Int -(15-30)% increased Spell Damage +20 to Strength +(15-30)% increased Spell Damage +10% to all Elemental Resistances Adds (42-54) to (78-88) Cold Damage to Spells while no Life is Reserved Adds (54-64) to (96-107) Fire Damage to Spells while no Life is Reserved Adds (5-14) to (160-173) Lightning Damage to Spells while no Life is Reserved Blood Magic -{variant:2}Mortal Conviction +{variant:2}Blood Magic ]],[[ Mind of the Council Harlequin Mask @@ -1603,8 +1609,8 @@ Requires Level 57, 64 Dex, 64 Int 10% chance to Shock +20% chance to be Shocked 30% of Lightning Damage is taken from Mana before Life -{variant:1}Recover 3% of Maximum Mana when you Shock an Enemy -{variant:2}Attack Skills have added Lightning Damage equal to 6% of maximum Mana +{variant:1}Recover 3% of Mana when you Shock an Enemy +{variant:2}Attack Skills have Added Lightning Damage equal to 6% of maximum Mana {variant:2}Lose 3% of Mana when you use an Attack Skill ]],[[ The Tempest's Binding @@ -1644,11 +1650,11 @@ Vaal Mask Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Alluring Abyss} Requires Level 62, 79 Dex, 72 Int +1 to Level of Socketed Gems +Socketed Gems have 50% reduced Mana Cost (245-280)% increased Evasion and Energy Shield +(30-40) to maximum Energy Shield +(24-30)% to Chaos Resistance -Enemies cannot Leech Mana from You -Socketed Gems have 50% reduced Mana Cost +Enemies Cannot Leech Mana From you ]],[[ Viridi's Veil Praetor Crown @@ -1668,7 +1674,7 @@ League: Heist Requires Level 35, 40 Dex, 40 Int (350-400)% increased Evasion and Energy Shield +5% Chance to Block Spell Damage per Power Charge -(3-5)% increased Elemental Damage per Power Charge +(3-5)% increased Elemental Damage per Power charge Gain a Power Charge every Second if you haven't lost Power Charges Recently Lose all Power Charges when you Block ]], diff --git a/src/Data/Uniques/jewel.lua b/src/Data/Uniques/jewel.lua index 7083826eaf..0cbe4b1045 100644 --- a/src/Data/Uniques/jewel.lua +++ b/src/Data/Uniques/jewel.lua @@ -16,7 +16,7 @@ Variant: Pre 3.23.0 Variant: Current Source: Vendor Recipe Limited to: 1 -{variant:1}+1 to maximum number of Golems +{variant:1}+1 to maximum number of Summoned Golems +1 to maximum number of Summoned Golems if you have 3 Primordial Items Socketed or Equipped ]],[[ Apex Mode @@ -68,8 +68,8 @@ Radius: Large Brawn Crimson Jewel Source: No longer obtainable -(4-6)% increased Dexterity (4-6)% increased Strength +(4-6)% increased Dexterity (10-15)% reduced Intelligence ]],[[ Bloodnotch @@ -77,8 +77,8 @@ Crimson Jewel Variant: Pre 3.28.0 Variant: Current Limited to: 1 -{variant:1}(40-60)% of Damage Taken from Stunning Hits is Recovered as Life -{variant:2}(20-30)% of Damage Taken from Stunning Hits is Recovered as Life +{variant:1}(40-60)% of Damage taken from Stunning Hits is Recovered as Life +{variant:2}(20-30)% of Damage taken from Stunning Hits is Recovered as Life ]],[[ Calamitous Visions Small Cluster Jewel @@ -168,7 +168,7 @@ Cobalt Jewel Source: No longer obtainable Limited to: 1 Minions have (5-15)% increased maximum Life -Minions Recover 2% of their Maximum Life when they Block +Minions Recover 2% of their Life when they Block ]],[[ Fragile Bloom Crimson Jewel @@ -201,8 +201,8 @@ Limited to: 1 Variant: Pre 3.8.0 Variant: Current Implicits: 0 -{variant:1}Summon 2 additional Skeleton Warriors with Summon Skeleton -{variant:2}Summon 4 additional Skeleton Warriors with Summon Skeleton +{variant:1}Summon 2 additional Skeletons with Summon Skeletons +{variant:2}Summon 4 additional Skeletons with Summon Skeletons +1 second to Summon Skeleton Cooldown ]],[[ The Front Line @@ -223,8 +223,8 @@ Variant: Current - Min Power Charge {variant:1}Gain 15 Mana per Grand Spectrum {variant:2}Gain 30 Mana per Grand Spectrum {variant:3}25% increased Critical Strike Chance per Grand Spectrum -{variant:4}Minions have +10% to Critical Strike Multiplier per Grand Spectrum {variant:5}+1 to Minimum Power Charges per Grand Spectrum +{variant:4}Minions have +10% to Critical Strike Multiplier per Grand Spectrum ]],[[ Grand Spectrum Crimson Jewel @@ -251,11 +251,11 @@ Variant: Pre 3.10.0 Variant: Current - Elemental Damage Variant: Current - Chance to avoid Ailments Variant: Current - Min Frenzy Charge +{variant:5}12% chance to Avoid Elemental Ailments per Grand Spectrum {variant:1}5% increased Elemental Damage per Grand Spectrum {variant:2}4% increased Elemental Damage per Grand Spectrum {variant:3}12% increased Elemental Damage per Grand Spectrum {variant:4}15% increased Elemental Damage per Grand Spectrum -{variant:5}12% chance to Avoid Elemental Ailments per Grand Spectrum {variant:6}+1 to Minimum Frenzy Charges per Grand Spectrum ]],[[ The Green Dream @@ -282,14 +282,14 @@ Limited to: 1 Radius: Large {variant:1,2}Gain 5% of Cold Damage as Extra Chaos Damage {variant:3}Gain (6-10)% of Cold Damage as Extra Chaos Damage +{variant:1,2}Passives granting Cold Resistance or all Elemental Resistances in Radius +{variant:1,2}also grant an equal chance to gain a Frenzy Charge on Kill {variant:1}Passives granting Cold Resistance or all Elemental Resistances in Radius {variant:1}also grant Chance to Suppress Spell Damage at 35% of its value {variant:2}Passives granting Cold Resistance or all Elemental Resistances in Radius {variant:2}also grant Chance to Suppress Spell Damage at 50% of its value {variant:3}Passives granting Cold Resistance or all Elemental Resistances in Radius {variant:3}also grant Chance to Suppress Spell Damage at 70% of its value -{variant:1,2}Passives granting Cold Resistance or all Elemental Resistances in Radius -{variant:1,2}also grant an equal chance to gain a Frenzy Charge on Kill ]],[[ Hair Trigger Viridian Jewel @@ -297,7 +297,7 @@ Source: No longer obtainable Variant: Pre 2.6.0 Variant: Current (15-25)% increased Trap Damage -{variant:1}(20-30)% increased Trap Trigger Radius +{variant:1}(20-30)% increased Trap Trigger Area of Effect {variant:2}(40-60)% increased Trap Trigger Area of Effect ]],[[ Hotheaded @@ -335,14 +335,15 @@ Intuitive Leap Viridian Jewel Radius: Small Passive Skills in Radius can be Allocated without being connected to your tree +Passage ]],[[ Izaro's Turmoil Crimson Jewel Source: No longer obtainable (18-25)% increased Fire Damage (18-25)% increased Cold Damage -2% chance to Freeze 2% chance to Ignite +2% chance to Freeze ]],[[ Kitava's Teachings Small Cluster Jewel @@ -369,19 +370,19 @@ Selected Variant: 1 Source: King of The Mists Limited to: 1 Radius: Large -{variant:1}Passive Skills in Radius also grant +5 to Maximum Life -{variant:2}Passive Skills in Radius also grant 3% increased Energy Shield -{variant:3}Passive Skills in Radius also grant +5 to Maximum Mana -{variant:4}Passive Skills in Radius also grant 7% increased Armour -{variant:5}Passive Skills in Radius also grant 7% increased Evasion Rating {variant:6}Passive Skills in Radius also grant +2 to all Attributes -{variant:7}Passive Skills in Radius also grant 5% Increased Global Critical Strike Chance -{variant:8}Passive Skills in Radius also grant 6% increased Physical Damage -{variant:9}Passive Skills in Radius also grant 6% increased Lightning Damage +{variant:13}Passive Skills in Radius also grant +4% to Chaos Resistance +{variant:1}Passive Skills in Radius also grant +5 to maximum Life +{variant:3}Passive Skills in Radius also grant +5 to maximum Mana +{variant:12}Passive Skills in Radius also grant 6% increased Chaos Damage {variant:10}Passive Skills in Radius also grant 6% increased Cold Damage +{variant:7}Passive Skills in Radius also grant 5% increased Global Critical Strike Chance +{variant:5}Passive Skills in Radius also grant 7% increased Evasion Rating {variant:11}Passive Skills in Radius also grant 6% increased Fire Damage -{variant:12}Passive Skills in Radius also grant 6% increased Chaos Damage -{variant:13}Passive Skills in Radius also grant +4% to Chaos Resistance +{variant:9}Passive Skills in Radius also grant 6% increased Lightning Damage +{variant:2}Passive Skills in Radius also grant 3% increased Energy Shield +{variant:8}Passive Skills in Radius also grant 6% increased Physical Damage +{variant:4}Passive Skills in Radius also grant 7% increased Armour ]],[[ Lioneye's Fall Viridian Jewel @@ -399,8 +400,8 @@ Variant: Impale Effect (Pre 3.13.0) Variant: Impale Chance (Current) Variant: Impale Overwhelm (Current) Variant: Impale Effect (Current) -{variant:1,4}10% chance to Impale Enemies on Hit with Attacks {variant:2,5}Impale Damage dealt to Enemies Impaled by you Overwhelms 10% Physical Damage Reduction +{variant:1,4}10% chance to Impale Enemies on Hit with Attacks {variant:3,6}5% increased Impale Effect {variant:1,3,4,6}Call of Steel deals Reflected Damage with (40-50)% increased Area of Effect {variant:2,3,5,6}Call of Steel has (80-100)% increased Use Speed @@ -416,8 +417,8 @@ Mantra of Flames Crimson Jewel Source: No longer obtainable Limited to: 1 -Adds (3-5) to (8-12) Fire Attack Damage per Buff on You -Adds (2-3) to (5-8) Fire Spell Damage per Buff on You +Adds (3-5) to (8-12) Fire Attack Damage per Buff on you +Adds (2-3) to (5-8) Fire Spell Damage per Buff on you ]],[[ Martial Artistry Crimson Jewel @@ -427,7 +428,7 @@ Variant: Pre 3.11.0 Variant: Current Radius: Small {variant:1}(10-15)% increased Area of Effect while Unarmed -{variant:2}+(0.3-0.4) metres to Melee Strike Range while Unarmed +{variant:2}+(0.3-0.4) metres to Melee Strike Range with Unarmed Attacks {variant:2}Passive Skills in Radius also grant: 1% increased Unarmed Attack Speed with Melee Skills ]],[[ Melding of the Flesh @@ -436,8 +437,8 @@ Variant: Pre 3.19.0 Variant: Current Source: Drops from unique{The Eater of Worlds} Limited to: 1 --(80-70)% to All Elemental Resistances -{variant:2}-(4-6)% to all maximum Elemental Resistances +-(80-70)% to all Elemental Resistances +{variant:2}-(6-4)% to all maximum Elemental Resistances Elemental Resistances are capped by your highest Maximum Elemental Resistance instead ]],[[ Might in All Forms @@ -494,7 +495,7 @@ Item Level: 82 (20-25)% increased Spell Damage {variant:1}Spells have 30% increased Critical Strike Chance per Intensity {variant:2}Spells have (30-50)% increased Critical Strike Chance per Intensity -Spells which have gained Intensity Recently lose 1 Intensity every 0.50 Seconds +Spells which have gained Intensity Recently lose 1 Intensity every 0.5 Seconds ]],[[ Natural Affinity Small Cluster Jewel @@ -528,19 +529,19 @@ League: Necropolis Source: No longer obtainable Limited to: 1 Radius: Large -{variant:1}Passive Skills in Radius also grant +5 to Maximum Life -{variant:2}Passive Skills in Radius also grant 3% increased Energy Shield -{variant:3}Passive Skills in Radius also grant +5 to Maximum Mana -{variant:4}Passive Skills in Radius also grant 7% increased Armour -{variant:5}Passive Skills in Radius also grant 5% increased Evasion Rating {variant:6}Passive Skills in Radius also grant +2 to all Attributes -{variant:7}Passive Skills in Radius also grant 7% Increased Global Critical Strike Chance -{variant:8}Passive Skills in Radius also grant 6% increased Physical Damage -{variant:9}Passive Skills in Radius also grant 6% increased Lightning Damage +{variant:13}Passive Skills in Radius also grant +4% to Chaos Resistance +{variant:1}Passive Skills in Radius also grant +5 to maximum Life +{variant:3}Passive Skills in Radius also grant +5 to maximum Mana +{variant:12}Passive Skills in Radius also grant 6% increased Chaos Damage {variant:10}Passive Skills in Radius also grant 6% increased Cold Damage +{variant:7}Passive Skills in Radius also grant 5% increased Global Critical Strike Chance +{variant:5}Passive Skills in Radius also grant 7% increased Evasion Rating {variant:11}Passive Skills in Radius also grant 6% increased Fire Damage -{variant:12}Passive Skills in Radius also grant 6% increased Chaos Damage -{variant:13}Passive Skills in Radius also grant +4% to Chaos Resistance +{variant:9}Passive Skills in Radius also grant 6% increased Lightning Damage +{variant:2}Passive Skills in Radius also grant 3% increased Energy Shield +{variant:8}Passive Skills in Radius also grant 6% increased Physical Damage +{variant:4}Passive Skills in Radius also grant 7% increased Armour ]],[[ Primordial Eminence Viridian Jewel @@ -565,14 +566,14 @@ Crimson Jewel (25-30)% increased Damage if you Summoned a Golem in the past 8 seconds Golems Summoned in the past 8 seconds deal (35-45)% increased Damage Golems have (18-22)% increased Maximum Life -Summoned Golems are Aggressive Primordial +Summoned Golems are Aggressive ]],[[ Replica Primordial Might Crimson Jewel League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist --1 to maximum number of Golems +-1 to maximum number of Summoned Golems (25-30)% increased Damage if you Summoned a Golem in the past 8 seconds Golems Summoned in the past 8 seconds deal (100-125)% increased Damage Golems have (18-22)% increased Maximum Life @@ -585,7 +586,7 @@ Source: No longer obtainable Radius: Large 1% increased Evasion Rating per 3 Dexterity Allocated in Radius 1% increased Claw Physical Damage per 3 Dexterity Allocated in Radius -1% increased Melee Physical Damage while Unarmed per 3 Dexterity Allocated in Radius +1% increased Melee Physical Damage with Unarmed Attacks per 3 Dexterity Allocated in Radius ]],[[ Pure Talent Viridian Jewel @@ -675,8 +676,8 @@ Static Electricity Viridian Jewel Source: No longer obtainable Radius: Large -Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius Adds 1 to 2 Lightning Damage to Attacks +Adds 1 maximum Lightning Damage to Attacks per 1 Dexterity Allocated in Radius ]],[[ Tempered Flesh Crimson Jewel @@ -702,10 +703,10 @@ Variant: Current Radius: Medium -1 Strength per 1 Strength on Allocated Passives in Radius {variant:1,2}1% additional Physical Damage Reduction per 10 Strength on Allocated Passives in Radius +{variant:2,3}+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius {variant:1}+5% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius {variant:3}3% increased Life Recovery Rate per 10 Strength on Allocated Passives in Radius {variant:3}2% reduced Life Recovery Rate per 10 Strength on Unallocated Passives in Radius -{variant:2,3}+7% to Critical Strike Multiplier per 10 Strength on Unallocated Passives in Radius ]],[[ Tempered Mind Cobalt Jewel @@ -747,8 +748,8 @@ Variant: Pre 3.10.0 Variant: Current Radius: Medium -1 Dexterity per 1 Dexterity on Allocated Passives in Radius -{variant:1}+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius {variant:2}2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius +{variant:1}+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius ]],[[ Transcendent Spirit Viridian Jewel @@ -759,10 +760,10 @@ Variant: Current Radius: Medium -1 Dexterity per 1 Dexterity on Allocated Passives in Radius {variant:1}2% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius -{variant:1}+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius {variant:2}3% increased Movement Speed per 10 Dexterity on Allocated Passives in Radius -{variant:2}2% reduced Movement Speed per 10 Dexterity on Unallocated Passives in Radius +{variant:1}+15 to Maximum Mana per 10 Dexterity on Unallocated Passives in Radius {variant:2}+125 to Accuracy Rating per 10 Dexterity on Unallocated Passives in Radius +{variant:2}2% reduced Movement Speed per 10 Dexterity on Unallocated Passives in Radius ]],[[ Thread of Hope Crimson Jewel @@ -775,12 +776,13 @@ Variant: Massive Ring (Uber) Radius: Variable Implicits: 0 {variant:1}Only affects Passives in Small Ring +{variant:5}Only affects Passives in Massive Ring +-(20-10)% to all Elemental Resistances +Passive Skills in Radius can be Allocated without being connected to your tree +Passage {variant:2}Only affects Passives in Medium Ring {variant:3}Only affects Passives in Large Ring {variant:4}Only affects Passives in Very Large Ring -{variant:5}Only affects Passives in Massive Ring -Passive Skills in Radius can be Allocated without being connected to your tree --(20-10)% to all Elemental Resistances ]],[[ Unnatural Instinct Viridian Jewel @@ -835,12 +837,12 @@ it and your Class' starting location {variant:1}+5 to Strength {variant:2}+5 to Dexterity {variant:3}+5 to Intelligence -{variant:4}+5 to maximum Life -{variant:5}+5 to maximum Mana -{variant:6}+5 to maximum Energy Shield +{variant:9}+40 to Accuracy Rating {variant:7}+40 to Armour {variant:8}+40 to Evasion Rating -{variant:9}+40 to Accuracy Rating +{variant:6}+5 to maximum Energy Shield +{variant:4}+5 to maximum Life +{variant:5}+5 to maximum Mana Corrupted ]],[[ Warrior's Tale @@ -856,12 +858,14 @@ Radius: Medium Amanamu's Gaze Ghastly Eye Jewel +(5-10) to all Attributes -Minions have +6% to Damage over Time Multiplier per Ghastly Eye Jewel affecting you, up to a maximum of +30% +Minions have +6% to Damage over Time Multiplier per +Ghastly Eye Jewel affecting you, up to a maximum of +30% ]],[[ Kurgal's Gaze Hypnotic Eye Jewel +(10-20) to Intelligence -8% increased Effect of Arcane Surge on you per Hypnotic Eye Jewel affecting you, up to a maximum of 40% +8% increased Effect of Arcane Surge on you per +Hypnotic Eye Jewel affecting you, up to a maximum of 40% ]],[[ Tecrod's Gaze Murderous Eye Jewel @@ -869,16 +873,21 @@ Variant: Pre 3.21.0 Variant: Current Requires Level 40 +(10-20) to Strength -{variant:1}20% increased Main Hand Critical Strike Chance per Murderous Eye Jewel affecting you, up to a maximum of 200% -{variant:2}40% increased Main Hand Critical Strike Chance per Murderous Eye Jewel affecting you, up to a maximum of 200% -{variant:1}+10% to Off Hand Critical Strike Multiplier per Murderous Eye Jewel affecting you, up to a maximum of +100% -{variant:2}+20% to Off Hand Critical Strike Multiplier per Murderous Eye Jewel affecting you, up to a maximum of +100% +{variant:1}20% increased Main Hand Critical Strike Chance per +{variant:1}Murderous Eye Jewel affecting you, up to a maximum of 200% +{variant:2}40% increased Main Hand Critical Strike Chance per +{variant:2}Murderous Eye Jewel affecting you, up to a maximum of 200% +{variant:1}+10% to Off Hand Critical Strike Multiplier per +{variant:1}Murderous Eye Jewel affecting you, up to a maximum of +100% +{variant:2}+20% to Off Hand Critical Strike Multiplier per +{variant:2}Murderous Eye Jewel affecting you, up to a maximum of +100% ]],[[ Ulaman's Gaze Searching Eye Jewel Requires Level 40 +(10-20) to Dexterity -Projectiles have 4% chance to be able to Chain when colliding with terrain per Searching Eye Jewel affecting you, up to a maximum of 20% +Projectiles have 4% chance to be able to Chain when colliding with terrain per +Searching Eye Jewel affecting you, up to a maximum of 20% ]], -- Jewel: Threshold [[ @@ -889,10 +898,10 @@ Limited to: 2 Variant: Pre 3.21.0 Variant: Current Radius: Medium -{variant:1}(10-15)% increased Elemental Damage with Attack Skills {variant:2}(10-15)% increased Elemental Damage -With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold +{variant:1}(10-15)% increased Elemental Damage with Attack Skills With 40 total Strength and Intelligence in Radius, Prismatic Skills deal 50% less Cold Damage +With 40 total Strength and Intelligence in Radius, Prismatic Skills cannot choose Cold ]],[[ Combat Focus Cobalt Jewel @@ -901,10 +910,10 @@ Limited to: 2 Variant: Pre 3.21.0 Variant: Current Radius: Medium -{variant:1}(10-15)% increased Elemental Damage with Attack Skills {variant:2}(10-15)% increased Elemental Damage -With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire +{variant:1}(10-15)% increased Elemental Damage with Attack Skills With 40 total Intelligence and Dexterity in Radius, Prismatic Skills deal 50% less Fire Damage +With 40 total Intelligence and Dexterity in Radius, Prismatic Skills cannot choose Fire ]],[[ Combat Focus Viridian Jewel @@ -913,26 +922,19 @@ Limited to: 2 Variant: Pre 3.21.0 Variant: Current Radius: Medium -{variant:1}(10-15)% increased Elemental Damage with Attack Skills {variant:2}(10-15)% increased Elemental Damage -With 40 total Dexterity and Strength in Radius, Prismatic Skills Strike cannot choose Lightning +{variant:1}(10-15)% increased Elemental Damage with Attack Skills With 40 total Dexterity and Strength in Radius, Prismatic Skills deal 50% less Lightning Damage +With 40 total Dexterity and Strength in Radius, Prismatic Skills cannot choose Lightning ]],[[ Collateral Damage Viridian Jewel Source: No longer obtainable Limited to: 2 -Variant: Pre 3.9.0 -Variant: Current Radius: Medium (10-15)% increased Global Physical Damage -{variant:1}With at least 40 Dexterity in Radius, Shrapnel Shot has 25% increased Area of Effect -{variant:1}With at least 40 Dexterity in Radius, Shrapnel Shot's -cone has a 50% chance to deal Double Damage -{variant:2}With at least 40 Dexterity in Radius, Galvanic Arrow deals -50% increased Area Damage -{variant:2}With at least 40 Dexterity in Radius, Galvanic Arrow has -25% increased Area of Effect +With at least 40 Dexterity in Radius, Galvanic Arrow has 25% increased Area of Effect +With at least 40 Dexterity in Radius, Galvanic Arrow deals 50% increased Area Damage ]],[[ Dead Reckoning Cobalt Jewel @@ -943,9 +945,9 @@ Variant: Pre 3.23.0 Variant: Current Radius: Medium {variant:1,2,3}Minions have +(7-10)% to all Elemental Resistances -{variant:1}With at least 40 Intelligence in Radius, can summon up to 3 Skeleton Mages with Summon Skeletons -{variant:2}With at least 40 Intelligence in Radius, can summon up to 5 Skeleton Mages with Summon Skeletons -{variant:3}With at least 40 Intelligence in Radius, can summon up to 15 Skeleton Mages with Summon Skeletons +{variant:1}With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 3 Skeleton Mages +{variant:2}With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 5 Skeleton Mages +{variant:3}With at least 40 Intelligence in Radius, Summon Skeletons can Summon up to 15 Skeleton Mages {variant:4}Skeletons gain Added Chaos Damage equal to (20-30)% of Maximum Energy Shield on your Equipped Shield ]],[[ Fight for Survival @@ -975,8 +977,7 @@ Limited to: 2 Radius: Medium (7-10)% increased Projectile Damage With at least 40 Intelligence in Radius, Frostbolt fires 2 additional Projectiles -With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile -Speed per second +With at least 40 Intelligence in Radius, Frostbolt Projectiles gain 40% increased Projectile Speed per second ]],[[ Growing Agony Viridian Jewel @@ -998,8 +999,8 @@ Variant: Current Limited to: 1 Radius: Medium (10-15)% increased Lightning Damage -{variant:1}With at least 40 Intelligence in Radius, Spark fires 2 additional Projectiles -With at least 40 Intelligence in Radius, Spark fires Projectiles in a Nova +{variant:1}With at least 40 Intelligence in Radius, 2 additional Spark Projectiles +With at least 40 Intelligence in Radius, Spark fires Projectiles in a circle {variant:1}(20-15)% reduced Spark Duration ]],[[ Inevitability @@ -1010,11 +1011,13 @@ Variant: Current Limited to: 1 Radius: Medium (10-15)% increased Fire Damage -{variant:1}With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile {variant:2}With at least 40 Intelligence in Radius, Rolling Magma deals 50% less Damage {variant:2}With at least 40 Intelligence in Radius, Rolling Magma deals 40% more Damage per Chain -With at least 40 Intelligence in Radius, Rolling Magma -has 10% increased Area of Effect per Chain +{variant:2}With at least 40 Intelligence in Radius, Rolling Magma +{variant:2}has 10% increased Area of Effect per Chain +{variant:1}With at least 40 Intelligence in Radius, Rolling Magma fires an additional Projectile +{variant:1}With at least 40 Intelligence in Radius, Rolling Magma +{variant:1}has 10% increased Area of Effect per Chain ]],[[ The Long Winter Cobalt Jewel @@ -1022,9 +1025,9 @@ Source: No longer obtainable Limited to: 2 Radius: Medium (10-15)% increased Cold Damage +With 40 Intelligence in Radius, Glacial Cascade has an additional Burst With 40 Intelligence in Radius, 20% of Glacial Cascade Physical Damage Converted to Cold Damage -With 40 Intelligence in Radius, Glacial Cascade has an additional Burst ]],[[ Might and Influence Viridian Jewel @@ -1038,22 +1041,22 @@ Variant: Mace Variant: Sword Limited to: 1 Radius: Medium -{variant:1}(10-15)% increased Global Physical Damage -{variant:1}With at least 40 Dexterity in Radius, Dual Strike has a 20% chance -to deal Double Damage with the Main-Hand Weapon -{variant:1}With at least 40 Dexterity in Radius, Dual Strike deals Off-Hand Splash Damage -{variant:1}to surrounding targets {variant:2,3,4,5,6}(10-15)% increased Attack Damage -{variant:2}With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for -{variant:2}4 seconds while wielding an Axe +{variant:1}(10-15)% increased Global Physical Damage +{variant:6}With at least 40 Dexterity in Radius, Dual Strike has (20-30)% increased +{variant:6}Accuracy Rating while wielding a Sword {variant:3}With at least 40 Dexterity in Radius, Dual Strike has (10-15)% increased Attack -Speed while wielding a Claw +{variant:3}Speed while wielding a Claw {variant:4}With at least 40 Dexterity in Radius, Dual Strike has +(20-30)% to Critical Strike -Multiplier while wielding a Dagger +{variant:4}Multiplier while wielding a Dagger +{variant:2}With at least 40 Dexterity in Radius, Dual Strike Hits Intimidate Enemies for +{variant:2}4 seconds while wielding an Axe +{variant:1}With at least 40 Dexterity in Radius, Dual Strike has a 20% chance +{variant:1}to deal Double Damage with the Main-Hand Weapon +{variant:1}With at least 40 Dexterity in Radius, Dual Strike deals Off Hand Splash Damage +{variant:1}to surrounding targets {variant:5}With at least 40 Dexterity in Radius, Dual Strike deals Splash Damage {variant:5}to surrounding targets while wielding a Mace -{variant:6}With at least 40 Dexterity in Radius, Dual Strike has (20-30)% increased -Accuracy Rating while wielding a Sword ]],[[ Omen on the Winds Viridian Jewel @@ -1063,8 +1066,9 @@ Variant: Current Limited to: 2 Radius: Medium (15-20)% increased Damage with Hits against Chilled Enemies -With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect +{variant:1}With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect {variant:1}With at least 40 Dexterity in Radius, Ice Shot Pierces 5 additional Targets +{variant:2}With at least 40 Dexterity in Radius, Ice Shot has 25% increased Area of Effect {variant:2}With at least 40 Dexterity in Radius, Ice Shot Pierces 3 additional Targets ]],[[ Overwhelming Odds @@ -1073,21 +1077,19 @@ Source: No longer obtainable Limited to: 1 Radius: Medium (10-15)% increased Global Physical Damage -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 +With at least 40 Strength in Radius, Hits with Cleave Fortify +With at least 40 Strength in Radius, Cleave has +0.1 metres to Radius per Nearby +Enemy, up to a maximum of +1 metre ]],[[ Pitch Darkness Viridian Jewel Source: No longer obtainable Variant: Pre 2.6.0 -Variant: Pre 3.16.0 Variant: Current Radius: Medium ++10% to Fire Damage over Time Multiplier {variant:1}(5-15)% increased Fire Damage -{variant:2,3}(10-15)% increased Fire Damage -{variant:3}+10% to Fire Damage over Time Multiplier -With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Burning Ground if it Ignites an Enemy. -{variant:2}With at least 40 Dexterity in Radius, Burning Arrow has a 10% chance to spread Tar if it does not Ignite an Enemy. +{variant:2}(10-15)% increased Fire Damage ]],[[ Rapid Expansion Crimson Jewel @@ -1099,11 +1101,16 @@ Limited to: 2 Radius: Medium {variant:1}(4-12)% increased Global Physical Damage {variant:2,3}(8-12)% increased Global Physical Damage -{variant:1}With at least 40 Strength in Radius, Ground Slam has a 20% increased angle -{variant:2}With at least 40 Strength in Radius, Ground Slam has a 35% increased angle -{variant:3}With at least 40 Strength in Radius, Ground Slam has a 50% increased angle -{variant:2}With at least 40 Strength in Radius, Ground Slam has a 25% chance to grant an Endurance Charge when you Stun an Enemy -{variant:3}With at least 40 Strength in Radius, Ground Slam has a 35% chance to grant an Endurance Charge when you Stun an Enemy +{variant:2}With at least 40 Strength in Radius, Ground Slam has a 25% chance +{variant:2}to grant an Endurance Charge when you Stun an Enemy +{variant:3}With at least 40 Strength in Radius, Ground Slam has a 35% chance +{variant:3}to grant an Endurance Charge when you Stun an Enemy +{variant:1}With at least 40 Strength in Radius, Ground Slam +{variant:1}has a 20% increased angle +{variant:2}With at least 40 Strength in Radius, Ground Slam +{variant:2}has a 35% increased angle +{variant:3}With at least 40 Strength in Radius, Ground Slam +{variant:3}has a 50% increased angle ]],[[ Ring of Blades Viridian Jewel @@ -1114,7 +1121,7 @@ Variant: Current Limited to: 1 Radius: Medium (10-15)% increased Global Physical Damage -With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a Nova +With at least 40 Dexterity in Radius, Ethereal Knives fires Projectiles in a circle {variant:1}With at least 40 Dexterity in Radius, Ethereal Knives fires 10 additional Projectiles {variant:2}With at least 40 Dexterity in Radius, Ethereal Knives fires 5 additional Projectiles ]],[[ @@ -1129,7 +1136,7 @@ Radius: Medium {variant:1}(5-15)% increased Fire Damage {variant:2,3}(10-15)% increased Fire Damage {variant:1}With at least 40 Intelligence in Radius, Fireball Projectiles gain Area as they travel farther, up to 50% increased Area of Effect -{variant:2}With at least 40 Intelligence in Radius, Fireball Projectiles gain Radius as they travel farther, up to +4 Radius +{variant:2}With at least 40 Intelligence in Radius, Projectiles gain radius as they travel farther, up to a maximum of +0.4 metres to radius {variant:3}With at least 40 Intelligence in Radius, Fireball cannot ignite {variant:3}With at least 40 Intelligence in Radius, Fireball has +(30-50)% chance to inflict scorch ]],[[ @@ -1141,7 +1148,8 @@ Variant: Current Radius: Medium {variant:1}(5-15)% increased Cold Damage {variant:2}(10-15)% increased Cold Damage -With at least 40 Strength in Radius, 20% increased Rarity of Items dropped by Enemies Shattered by Glacial Hammer +With at least 40 Strength in Radius, 20% increased +Rarity of Items dropped by Enemies Shattered by Glacial Hammer ]],[[ Spirit Guards Viridian Jewel @@ -1170,16 +1178,13 @@ With at least 40 Intelligence in Radius, 10% of Damage taken Recouped as Mana if Spreading Rot Cobalt Jewel Source: No longer obtainable -Variant: Pre 3.6.0 Variant: Pre 3.17.0 Variant: Current Limited to: 1 Radius: Medium (7-13)% increased Chaos Damage +{variant:1,2}With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds {variant:1,2}With at least 40 Intelligence in Radius, Blight has 50% increased Hinder Duration -{variant:3}With at least 40 Intelligence in Radius, Blight has 30% reduced Cast Speed -{variant:1}With at least 40 Intelligence in Radius, Enemies Hindered by Blight take 25% increased Chaos Damage -{variant:2,3}With at least 40 Intelligence in Radius, Blight inflicts Withered for 2 seconds ]],[[ Steel Spirit Viridian Jewel @@ -1189,19 +1194,16 @@ Variant: Current Radius: Medium {variant:1}(6-10)% increased Projectile Damage {variant:2}(7-10)% increased Projectile Damage -{variant:1}With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 4% increased Damage each time it Hits. -{variant:2}With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits. +{variant:1}With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 4% increased Damage each time it Hits +{variant:2}With at least 40 Dexterity in Radius, each Spectral Throw Projectile gains 5% increased Damage each time it Hits ]],[[ Sudden Ignition Viridian Jewel -Variant: Pre 3.16.0 -Variant: Current Source: No longer obtainable Limited to: 1 Radius: Medium (10-15)% increased Fire Damage -{variant:1}With at least 40 Dexterity in Radius, Burning Arrow can inflict an additional Ignite on an Enemy -{variant:2}Ignited Enemies Killed by your Hits are destroyed +Ignited Enemies Killed by your Hits are destroyed ]],[[ Unending Hunger Cobalt Jewel @@ -1209,8 +1211,8 @@ Variant: Pre 2.6.0 Variant: Current Limited to: 2 Radius: Medium -{variant:1}Minions have (5-8)% increased Area of Effect of Area Skills -{variant:2}Minions have (6-8)% increased Area of Effect of Area Skills +{variant:1}Minions have (5-8)% increased Area of Effect +{variant:2}Minions have (6-8)% increased Area of Effect With at least 40 Intelligence in Radius, Raised Spectres have a 50% chance to gain Soul Eater for 20 seconds on Kill ]],[[ The Vigil @@ -1233,7 +1235,7 @@ Limited to: 2 Radius: Medium Minions deal (10-15)% increased Damage With at least 40 Intelligence in Radius, Raised -Zombies' Slam Attack has 100% increased Cooldown Recovery Speed +Zombies' Slam Attack has 100% increased Cooldown Recovery Rate With at least 40 Intelligence in Radius, Raised Zombies' Slam Attack deals 30% increased Damage ]],[[ @@ -1256,7 +1258,8 @@ Source: No longer obtainable Limited to: 2 Radius: Medium (8-12)% increased Global Physical Damage -With at least 40 Strength in Radius, Heavy Strike has a 20% chance to deal Double Damage +With at least 40 Strength in Radius, Heavy Strike has a +20% chance to deal Double Damage ]],[[ Wildfire Crimson Jewel @@ -1266,11 +1269,11 @@ Variant: Current Limited to: 1 Radius: Medium (10-15)% increased Fire Damage -{variant:1}With at least 40 Strength in Radius, Molten Strike fires 2 additional Projectiles -{variant:1}With at least 40 Strength in Radius, Molten Strike has 25% increased Area of Effect {variant:2}With at least 40 Strength in Radius, Molten Strike Projectiles Chain on impacting ground {variant:2}With at least 40 Strength in Radius, Molten Strike Projectiles Chain +1 time {variant:2}With at least 40 Strength in Radius, Molten Strike fires 50% less Projectiles +{variant:1}With at least 40 Strength in Radius, Molten Strike fires 2 additional Projectiles +{variant:1}With at least 40 Strength in Radius, Molten Strike has 25% increased Area of Effect ]],[[ Winter Burial Crimson Jewel @@ -1281,22 +1284,16 @@ Radius: Medium With at least 40 Strength in Radius, Glacial Hammer deals Cold-only Splash Damage to surrounding targets With at least 40 Strength in Radius, 25% of Glacial -Hammer Physical Damage converted to Cold Damage +Hammer Physical Damage Converted to Cold Damage ]],[[ Winter's Bounty Cobalt Jewel Source: No longer obtainable -Variant: Pre 2.6.0 -Variant: Pre 3.3.0 -Variant: Current Limited to: 1 Radius: Medium -{variant:1}(5-15)% increased Cold Damage -{variant:2,3}(10-15)% increased Cold Damage -{variant:1}With at least 40 Intelligence in Radius, Cold Snap has a 25% chance to grant a Power Charge on Kill -{variant:2}With at least 40 Intelligence in Radius, Cold Snap has a 50% chance to grant a Power Charge on Kill -{variant:3}With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in it's Area -{variant:3}With at least 40 Intelligence in Radius, Cold Snap Cooldown can be bypassed by Power Charges instead of Frenzy Charges +(10-15)% increased Cold Damage +With at least 40 Intelligence in Radius, Cold Snap grants Power Charges instead of Frenzy Charges when Enemies die in its Area +With at least 40 Intelligence in Radius, Cold Snap's Cooldown can be bypassed by Power Charges instead of Frenzy Charges ]],[[ Ancestral Vision Viridian Jewel @@ -1319,7 +1316,7 @@ Source: Use currency{Vaal Orb} on normal{Crimson Jewel} Variant: Pre 3.14.0 Variant: Current Limited to: 1 -{variant:1,2}(15-20)% increased Vaal Skill Effect Duration +{variant:1,2}Vaal Skills have (15-20)% increased Skill Effect Duration {variant:2}Vaal Skills have (15-20)% chance to regain consumed Souls when used Corrupted ]],[[ @@ -1385,7 +1382,7 @@ Corrupted Energy Cobalt Jewel Source: No longer obtainable Implicits: 0 -With 5 Corrupted Items Equipped: 50% of Chaos Damage does not bypass Energy Shield and 50% of Physical Damage bypasses Energy Shield +With 5 Corrupted Items Equipped: 50% of Chaos Damage taken does not bypass Energy Shield, and 50% of Physical Damage taken bypasses Energy Shield Corrupted ]],[[ Efficient Training @@ -1438,12 +1435,13 @@ Variant: Pre 3.11.0 Variant: Current Limited to: 1 Radius: Small +{variant:3}+(5-10) to Intelligence {variant:1}(20-30)% increased Spell Damage {variant:2}(30-40)% increased Spell Damage {variant:1}100% increased Mana Cost of Skills {variant:2}50% increased Mana Cost of Skills -{variant:3}+(5-10) to Intelligence -{variant:3}Notable Passive Skills in Radius are Transformed to instead grant: 10% increased Mana Cost of Skills and 20% increased Spell Damage +{variant:3}Notable Passive Skills in Radius are Transformed to +{variant:3}instead grant: 10% increased Mana Cost of Skills and 20% increased Spell Damage Corrupted ]],[[ Fluid Motion @@ -1467,7 +1465,8 @@ Radius: Medium Minions deal (35-45)% increased Damage Minions have +(10-12)% Chance to Block Attack Damage Minions have +(10-12)% Chance to Block Spell Damage -Notable Passive Skills in Radius are Transformed to instead grant: Minions take 20% increased Damage +Notable Passive Skills in Radius are Transformed to +instead grant: Minions take 20% increased Damage {variant:2}Corrupted ]],[[ Fragility @@ -1524,13 +1523,13 @@ Mutated Growth Cobalt Jewel Source: No longer obtainable Limited to: 1 -10% increased Experience Gain of Corrupted Gems +10% increased Experience Gain for Corrupted Gems Corrupted ]],[[ Pacifism Viridian Jewel --1 to Maximum Frenzy Charges Source: Use currency{Vaal Orb} on normal{Viridian Jewel} +-1 to Maximum Frenzy Charges Corrupted ]],[[ Replica Pacifism @@ -1563,8 +1562,9 @@ Limited to: 1 Radius: Medium Minions have (12-16)% increased Attack Speed Minions have (12-16)% increased Cast Speed -Minions have (20-24)% chance to Suppress Spell Damage -Notable Passive Skills in Radius are Transformed to instead grant: Minions have 25% reduced Movement Speed +Minions have +(20-24)% chance to Suppress Spell Damage +Notable Passive Skills in Radius are Transformed to +instead grant: Minions have 25% reduced Movement Speed {variant:2}Corrupted ]],[[ Rain of Splinters @@ -1584,11 +1584,11 @@ Variant: Pre 3.4.0 Variant: Pre 3.20.0 Variant: Pre 3.25.0 Variant: Current +{variant:1,2,3}(2-4)% Chance to Block Attack Damage {variant:1}+6% Chance to Block Spell Damage {variant:2,3}+(2-4)% Chance to Block Spell Damage {variant:4}+(2-6)% Chance to Block Spell Damage -{variant:1,2,3}(2-4)% Chance to Block Attack Damage -{variant:4}(2-6)% Chance to Block Attack Damage +{variant:4}+(2-6)% Chance to Block Attack Damage Hits have (140-200)% increased Critical Strike Chance against you {variant:3}Corrupted ]],[[ @@ -1630,8 +1630,8 @@ Variant: Current Limited to: 1 +2 to maximum number of Spectres (40-50)% reduced Mana Cost of Raise Spectre -Spectres have (800-1000)% increased Critical Strike Chance -Spectres have a Base Duration of 20 seconds +Raised Spectres have (800-1000)% increased Critical Strike Chance +Raised Spectres have a Base Duration of 20 seconds Spectres do not travel between Areas {variant:2}Corrupted ]],[[ @@ -1643,7 +1643,7 @@ Variant: Current (30-40)% increased Armour while Bleeding Bleeding you inflict is Reflected to you +1% to Chaos Resistance per Poison on you -Poison you inflict is Reflected to you +Poison you inflict is Reflected to you if you have fewer than 100 Poisons on you {variant:2}Corrupted ]],[[ To Dust @@ -1656,7 +1656,7 @@ Variant: Current Minions deal (8-12)% increased Damage {variant:1}2% increased Skeleton Attack Speed {variant:2,3}(7-10)% increased Skeleton Attack Speed -{variant:2,3}(7-10)% increased Skeleton Cast speed +{variant:2,3}(7-10)% increased Skeleton Cast Speed {variant:2,3}(3-5)% increased Skeleton Movement Speed {variant:3}Corrupted ]],[[ @@ -1706,20 +1706,20 @@ Source: No longer obtainable Variant: Pre 3.16.0 Variant: Current Limited to: 1 +{variant:1}+3% chance to Suppress Spell Damage +{variant:2}+5% chance to Suppress Spell Damage {variant:1}3% chance to Avoid Elemental Ailments {variant:2}10% chance to Avoid Elemental Ailments {variant:1}8% increased Life Recovery from Flasks {variant:2}10% increased Life Recovery from Flasks -{variant:1}3% chance to Suppress Spell Damage -{variant:2}5% chance to Suppress Spell Damage ]],[[ Conqueror's Potency Cobalt Jewel Source: No longer obtainable Limited to: 1 4% increased Effect of your Curses -8% increased effect of Flasks -3% increased effect of Non-Curse Auras you Cast +Flasks applied to you have 8% increased Effect +3% increased effect of Non-Curse Auras from your Skills ]],[[ Poacher's Aim Viridian Jewel @@ -1771,8 +1771,8 @@ Variant: Pre 3.16.0 Variant: Current Limited to: 1 {variant:1}8% increased Attack Damage -{variant:1}+0.1 metres to Melee Strike Range {variant:2}10% increased Attack Damage +{variant:1}+0.1 metres to Melee Strike Range {variant:2}+0.2 metres to Melee Strike Range ]],[[ The Adorned @@ -1781,8 +1781,8 @@ Variant: Pre 3.25.0 Variant: Current League: Affliction Source: Vaal Aspect Combination -{variant:1}(50–150)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels -{variant:2}(0–100)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels +{variant:1}(50-150)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels +{variant:2}(0-100)% increased Effect of Jewel Socket Passive Skills containing Corrupted Magic Jewels ]], -- Jewel: Labyrinth rewards [[ @@ -1790,34 +1790,34 @@ Emperor's Cunning Viridian Jewel Source: Drops in The Eternal Labyrinth Limited to: 1 +(4-6)% increased Dexterity 20% increased Global Accuracy Rating 3% increased Character Size -(4-6)% increased Dexterity ]],[[ Emperor's Mastery Prismatic Jewel Source: Drops in The Eternal Labyrinth Limited to: 1 +(5-7)% increased Attributes 4% increased maximum Life 3% increased Character Size 5% increased Global Defences -(5-7)% increased Attributes ]],[[ Emperor's Might Crimson Jewel Source: Drops in The Eternal Labyrinth Limited to: 1 +(4-6)% increased Strength 10% increased Damage 3% increased Character Size -(4-6)% increased Strength ]],[[ Emperor's Wit Cobalt Jewel Source: Drops in The Eternal Labyrinth Limited to: 1 +(4-6)% increased Intelligence 30% increased Global Critical Strike Chance 3% increased Character Size -(4-6)% increased Intelligence ]], -- Jewel: Timeless [[ @@ -1835,7 +1835,6 @@ Implicits: 0 {variant:1}Denoted service of (500-8000) dekhara in the akhara of Asenath {variant:2}Denoted service of (500-8000) dekhara in the akhara of Deshret {variant:3}Denoted service of (500-8000) dekhara in the akhara of Nasima -{variant:4}Denoted service of (500-8000) dekhara in the akhara of Balbala Passives in radius are Conquered by the Maraketh Historic ]],[[ @@ -1942,21 +1941,21 @@ Implicits: 0 {variant:2}Carved to glorify (2000-10000) new faithful converted by High Templar Dominus {variant:3}Carved to glorify (2000-10000) new faithful converted by High Templar Venarius {variant:4}Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius -{variant:5}4% increased Totem Damage per 10 Devotion -{variant:6}4% increased Brand Damage per 10 Devotion -{variant:7}Channelling Skills deal 4% increased Damage per 10 Devotion {variant:8}4% increased Area Damage per 10 Devotion +{variant:7}Channelling Skills deal 4% increased Damage per 10 Devotion {variant:9}4% increased Elemental Damage per 10 Devotion {variant:10}+2% to all Elemental Resistances per 10 Devotion -{variant:11}3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion -{variant:12}4% reduced Elemental Ailment Duration on you per 10 Devotion -{variant:13}4% reduced Duration of Curses on you per 10 Devotion -{variant:14}1% increased Minion Attack and Cast Speed per 10 Devotion -{variant:15}Minions have +60 to Accuracy Rating per 10 Devotion -{variant:16}Regenerate 0.6 Mana per Second per 10 Devotion {variant:17}1% reduced Mana Cost of Skills per 10 Devotion +{variant:16}Regenerate 0.6 Mana per Second per 10 Devotion +{variant:15}Minions have +60 to Accuracy Rating per 10 Devotion +{variant:14}1% increased Minion Attack and Cast Speed per 10 Devotion {variant:18}1% increased effect of Non-Curse Auras per 10 Devotion +{variant:11}3% increased Effect of non-Damaging Ailments on Enemies per 10 Devotion +{variant:13}4% reduced Duration of Curses on you per 10 Devotion +{variant:12}4% reduced Elemental Ailment Duration on you per 10 Devotion {variant:19}3% increased Defences from Equipped Shield per 10 Devotion +{variant:6}4% increased Brand Damage per 10 Devotion +{variant:5}4% increased Totem Damage per 10 Devotion Passives in radius are Conquered by the Templars Historic ]], diff --git a/src/Data/Uniques/mace.lua b/src/Data/Uniques/mace.lua index f9e3a9a2a4..c40bb3e923 100644 --- a/src/Data/Uniques/mace.lua +++ b/src/Data/Uniques/mace.lua @@ -10,8 +10,8 @@ Variant: Pre 3.7.0 Variant: Current Requires Level 20, 71 Str Implicits: 2 -{variant:1}20% increased Stun Duration on Enemies {variant:2,3}10% reduced Enemy Stun Threshold +{variant:1}20% increased Stun Duration on Enemies (50-75)% increased Physical Damage {variant:1,2}50% increased Attack Speed {variant:3}45% increased Attack Speed @@ -25,10 +25,10 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 66, 212 Str Implicits: 2 -{variant:1}40% increased Stun Duration on Enemies {variant:2}15% reduced Enemy Stun Threshold -Adds (5-10) to (15-23) Physical Damage +{variant:1}40% increased Stun Duration on Enemies (150-200)% increased Physical Damage +Adds (5-10) to (15-23) Physical Damage (15-25)% reduced Enemy Stun Threshold with this Weapon Cannot Knock Enemies Back All Attack Damage Chills when you Stun @@ -39,13 +39,13 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 60, 212 Str Implicits: 2 -{variant:1}40% increased Stun Duration on Enemies {variant:2}15% reduced Enemy Stun Threshold +{variant:1}40% increased Stun Duration on Enemies (140-180)% increased Physical Damage Adds (10-20) to (30-50) Cold Damage (15-40)% increased Critical Strike Chance -(30-40)% increased Cold Damage with Attack Skills 40% increased Rarity of Items Dropped by Frozen Enemies +(30-40)% increased Cold Damage with Attack Skills ]],[[ Cameria's Avarice Gavel @@ -53,12 +53,12 @@ Source: Vendor Recipe Requires Level 60, 212 Str Implicits: 1 15% reduced Enemy Stun Threshold +Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy (140-180)% increased Physical Damage Adds (11-14) to (17-21) Physical Damage (15-40)% increased Critical Strike Chance 40% increased Rarity of Items Dropped by Frozen Enemies (30-40)% increased Cold Damage with Attack Skills -Trigger Level 20 Icicle Burst when you Hit a Frozen Enemy ]],[[ Clayshaper Rock Breaker @@ -67,14 +67,14 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 41, 134 Str Implicits: 2 -{variant:1}40% increased Stun Duration on Enemies {variant:2}15% reduced Enemy Stun Threshold +{variant:1}40% increased Stun Duration on Enemies Grants Level 12 Summon Stone Golem Skill Adds (24-30) to (34-40) Physical Damage (8-10)% increased Attack Speed {variant:1,2}Minions have (20-30)% increased maximum Life +1 to maximum number of Summoned Golems -{variant:1,2}Minions deal (5-8) to (12-16) Added Attack Physical Damage +{variant:1,2}Minions deal (5-8) to (12-16) additional Attack Physical Damage {variant:3}Golems have (96-120) to (132-160) Added Attack Physical Damage ]],[[ Flesh-Eater @@ -83,16 +83,16 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 32, 107 Str Implicits: 2 -{variant:1}20% increased Stun Duration on Enemies {variant:2}10% reduced Enemy Stun Threshold +{variant:1}20% increased Stun Duration on Enemies (60-80)% increased Physical Damage Adds 10 to 15 Physical Damage 10% increased Attack Speed -1% of Physical Attack Damage leeched as Life -{variant:1}10% Chance to cause Bleeding on Hit -{variant:2}30% Chance to cause Bleeding on Hit -{variant:1}1% of Attack Damage leeched as Life against Bleeding Enemies -{variant:2}3% of Attack Damage leeched as Life against Bleeding Enemies +1% of Physical Attack Damage Leeched as Life +{variant:1}1% of Attack Damage Leeched as Life against Bleeding Enemies +{variant:2}3% of Attack Damage Leeched as Life against Bleeding Enemies +{variant:1}10% chance to cause Bleeding on Hit +{variant:2}30% chance to cause Bleeding on Hit ]],[[ Frostbreath Ornate Mace @@ -101,8 +101,8 @@ Variant: Pre 3.0.0 Variant: Current Requires Level 50, 161 Str Implicits: 2 -{variant:1}40% increased Stun Duration on Enemies {variant:2,3}15% reduced Enemy Stun Threshold +{variant:1}40% increased Stun Duration on Enemies {variant:1,2}Adds (16-22) to (26-32) Physical Damage {variant:3}Adds (26-32) to (36-42) Physical Damage {variant:1,2}Adds (16-22) to (26-32) Cold Damage @@ -110,7 +110,7 @@ Implicits: 2 (8-14)% increased Attack Speed +(40-50)% to Fire Resistance (35-50)% increased Chill Duration on Enemies -Attacks with this Weapon deal double Damage to Chilled Enemies +Attacks with this Weapon deal Double Damage to Chilled Enemies ]],[[ Replica Frostbreath Ornate Mace @@ -131,8 +131,8 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 10, 41 Str Implicits: 2 -{variant:1}20% increased Stun Duration on Enemies {variant:2}10% reduced Enemy Stun Threshold +{variant:1}20% increased Stun Duration on Enemies (300-360)% increased Physical Damage 20% reduced Attack Speed (10-20)% reduced Enemy Stun Threshold @@ -147,16 +147,16 @@ Variant: Pre 3.7.0 Variant: Current Requires Level 20, 71 Str Implicits: 2 -{variant:1}20% increased Stun Duration on Enemies {variant:2,3}10% reduced Enemy Stun Threshold +{variant:1}20% increased Stun Duration on Enemies {variant:3}(160-200)% increased Physical Damage +{variant:1,2}(130-160)% increased Physical Damage {variant:1,2}+(10-20) to maximum Life -{variant:1,2}+(10-20) to maximum Mana {variant:3}+70 to maximum Life +{variant:1,2}+(10-20) to maximum Mana {variant:3}+70 to maximum Mana -{variant:1,2}(130-160)% increased Physical Damage 5% reduced Movement Speed -{variant:1,2}10% increased Area of Effect of Area Skills +{variant:1,2}10% increased Area of Effect {variant:3}(15-25)% increased Area of Effect {variant:1,2}(10-15)% increased Area Damage {variant:3}(10-20)% increased Area Damage @@ -170,17 +170,20 @@ Variant: Pre 3.15.0 Variant: Current Requires Level 60, 412 Str, 300 Int Implicits: 2 -{variant:1,2,3}40% increased Stun Duration on Enemies {variant:4,5}15% reduced Enemy Stun Threshold +{variant:1,2,3}40% increased Stun Duration on Enemies +{variant:1}50% chance to Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown +{variant:1}Socketed Lightning Spells have no Cost if Triggered +{variant:2}30% chance to Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown +{variant:2}Socketed Lightning Spells have no Cost if Triggered +{variant:3,4,5}Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown +{variant:3,4,5}Socketed Lightning Spells have no Cost if Triggered ++300 Intelligence Requirement ++200 Strength Requirement (80-120)% increased Physical Damage -Skills Chain +1 times -{variant:1,2,3,4}(30-40)% increased Lightning Damage with Attack Skills +{variant:1,2,3,4}(30-40)% increased Lightning Damage {variant:5}(80-100)% increased Lightning Damage -+200 Strength Requirement -+300 Intelligence Requirement -{variant:1}50% chance to Cast a Socketed Lightning Spell on Hit -{variant:2}30% chance to Cast a Socketed Lightning Spell on Hit -{variant:3,4,5}Trigger a Socketed Lightning Spell on Hit, with a 0.25 second Cooldown +Skills Chain +1 times {variant:1,2,3,4}Socketed Lightning Spells deal 100% increased Spell Damage if Triggered ]],[[ Nebulis @@ -192,11 +195,11 @@ Source: Drops from unique{Synthete Nightmare} in normal{The Cortex} (Uber) Requires Level 68, 104 Str, 122 Int Implicits: 1 40% increased Elemental Damage -{variant:2}(80-120)% increased Implicit Modifier magnitudes +{variant:2}(60-120)% increased Implicit Modifier magnitudes (15-20)% increased Cast Speed {variant:1}(15-20)% increased Cold Damage per 1% Cold Resistance above 75% -{variant:1}(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75% {variant:2}(5-10)% increased Elemental Damage per 1% Fire, Cold, or Lightning Resistance above 75% +{variant:1}(15-20)% increased Lightning Damage per 1% Lightning Resistance above 75% ]],[[ Replica Nebulis Void Sceptre @@ -207,11 +210,12 @@ Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level 68, 104 Str, 122 Int Implicits: 1 40% increased Elemental Damage -{variant:2}(80-120)% increased Implicit Modifier magnitudes +{variant:2}(60-120)% increased Implicit Modifier magnitudes (15-20)% increased Cast Speed {variant:1}(15-20)% increased Cold Damage per 1% Missing Cold Resistance, up to a maximum of 300% +{variant:2}(10-15)% increased Elemental Damage per 1% Missing +{variant:2}Fire, Cold, or Lightning Resistance, up to a maximum of 450% {variant:1}(15-20)% increased Fire Damage per 1% Missing Fire Resistance, up to a maximum of 300% -{variant:2}(10-15)% increased Elemental Damage per 1% Missing Fire, Cold, or Lightning Resistance, up to a maximum of 450% ]],[[ Nebuloch Nightmare Mace @@ -269,11 +273,11 @@ Requires Level 10, 22 Str, 22 Int Implicits: 2 {variant:1}10% increased Elemental Damage {variant:2}12% increased Elemental Damage -(4-6)% increased Cast Speed -(100-140)% increased Critical Strike Chance for Spells Adds (2-3) to (5-6) Fire Damage to Spells Adds (2-3) to (5-6) Cold Damage to Spells Adds 1 to (10-12) Lightning Damage to Spells +(4-6)% increased Cast Speed +(100-140)% increased Spell Critical Strike Chance ]],[[ Balefire Opal Sceptre @@ -336,8 +340,8 @@ Implicits: 1 (260-310)% increased Physical Damage {variant:1}(60-80)% increased Chaos Damage {variant:2}(80-100)% increased Chaos Damage -10% increased Area of Effect of Area Skills -40% increased Chaos Skill Effect Duration +10% increased Area of Effect +Chaos Skills have 40% increased Skill Effect Duration ]],[[ Brutus' Lead Sprinkler Ritual Sceptre @@ -351,13 +355,13 @@ Implicits: 2 {variant:1}10% increased Elemental Damage {variant:2,3,4}16% increased Elemental Damage 20% increased Physical Damage -{variant:1,2}Adds 15 to 25 Fire Damage against Ignited Enemies +{variant:1,2}Adds 15 to 25 Fire Damage to Attacks against Ignited Enemies Adds (8-13) to (26-31) Physical Damage -{variant:3}Adds 2 to 4 Fire Damage to Attacks per 10 Strength -{variant:4}Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength 30% increased Fire Damage (15-20)% increased Attack Speed (30-40)% increased Critical Strike Chance +{variant:3}Adds 2 to 4 Fire Damage to Attacks with this Weapon per 10 Strength +{variant:4}Adds 4 to 7 Fire Damage to Attacks with this Weapon per 10 Strength ]],[[ Cerberus Limb Blood Sceptre @@ -393,19 +397,19 @@ Implicits: 2 {variant:2,3,4,5,6,7,8,9,10,11}22% increased Elemental Damage {variant:1,2,3,4,5}(30-50)% increased Global Damage {variant:6,7,8}(40-60)% increased Global Damage -{variant:9,10,11}+2 to Level of All Spell Skill Gems +{variant:9,10,11}+2 to Level of all Spell Skill Gems {variant:1,2,3,4,5}7% Global chance to Blind Enemies on hit {variant:6,7,8,9,10,11}10% Global chance to Blind Enemies on hit -Blind does not affect your Chance to Hit -Enemies Blinded by you have Malediction {variant:1,2}Gain 1 Mana on Kill per Level {variant:1,2}Gain 1 Energy Shield on Kill per Level -{variant:3,4,6,7}+1 to maximum Life per Level -{variant:9,10}+(1-2) to maximum Life per Level -{variant:3,5,6,8}+1 to maximum Mana per Level -{variant:9,11}+(1-2) to maximum Mana per Level -{variant:4,5,7,8}+1 to maximum Energy Shield per Level -{variant:10,11}+(1-2) to maximum Energy Shield per Level +Cannot be Blinded +Enemies Blinded by you have Malediction +{variant:4,5,7,8}+1 Maximum Energy Shield per Level +{variant:10,11}+(1-2) Maximum Energy Shield per Level +{variant:3,4,6,7}+1 Maximum Life per Level +{variant:9,10}+(1-2) Maximum Life per Level +{variant:3,5,6,8}+1 Maximum Mana per Level +{variant:9,11}+(1-2) Maximum Mana per Level ]],[[ Death's Hand Karui Sceptre @@ -418,7 +422,7 @@ Implicits: 2 {variant:2,3}26% increased Elemental Damage {variant:1,2}Adds (30-41) to (80-123) Physical Damage {variant:3}Adds (35-46) to (85-128) Physical Damage -(20-50)% increased Critical Strike Chance +(25-50)% increased Critical Strike Chance 30% chance to gain a Power Charge when you Stun Gain Unholy Might for 4 seconds on Critical Strike ]],[[ @@ -430,10 +434,10 @@ Requires Level 64, 113 Str, 113 Int Implicits: 2 {variant:1}10% increased Elemental Damage {variant:2}32% increased Elemental Damage +Socketed Gems are Supported by Level 30 Iron Will +(50-70) to Strength (15-18)% increased Cast Speed +(20-30) to maximum Mana -Socketed Gems are Supported by Level 30 Iron Will 1% increased Damage per 8 Strength when in Main Hand 1% increased Armour per 16 Strength when in Off Hand ]],[[ @@ -475,7 +479,7 @@ Implicits: 1 +(20-30) to all Attributes Minions deal (30-40)% increased Damage Raised Zombies Cover Enemies in Ash on Hit -Raised Zombies take (15.0-30.0)% of their Maximum Life per second as Fire Damage +Raised Zombies take (15-30)% of their Maximum Life per second as Fire Damage Raised Zombies have Avatar of Fire ]],[[ Maata's Teaching @@ -489,7 +493,8 @@ Implicits: 1 {variant:1}(25-50)% increased Critical Strike Chance {variant:2}(15-30)% increased Critical Strike Chance +(1-2) to Level of all Minion Skill Gems -Minions' Base Attack Critical Strike Chance is equal to the Critical Strike Chance of your Main Hand Weapon +Minions' Base Attack Critical Strike Chance is equal to the Critical +Strike Chance of your Main Hand Weapon ]],[[ Mon'tregul's Grasp Void Sceptre @@ -510,8 +515,7 @@ Raised Zombies have +(25-30)% to all Resistances 25% increased Raised Zombie Size {variant:1,2,3,4}Enemies Killed by Zombies' Hits Explode, dealing 20% of their Life as Fire Damage {variant:5}Enemies Killed by Zombies' Hits Explode, dealing 50% of their Life as Fire Damage -{variant:1,2,3}Raised Zombies deal (80-100)% increased Physical Damage -{variant:4}Raised Zombies deal (80-100)% more Physical Damage +{variant:1,2,3,4}Raised Zombies deal (80-100)% more Physical Damage {variant:5}Raised Zombies deal (100-125)% more Physical Damage ]],[[ Nycta's Lantern @@ -529,7 +533,7 @@ Implicits: 2 {variant:1,2,3}Socketed Gems are Supported by Level 10 Added Fire Damage {variant:1,2,3}Socketed Gems are Supported by Level 10 Cold to Fire {variant:1,2,3,4}Socketed Gems are Supported by Level 10 Fire Penetration -{variant:4}Socketed Gems deal 63 to 94 additional Fire Damage +{variant:4}Socketed Gems deal 63 to 94 Added Fire Damage {variant:1,2,3,4}(20-30)% increased Spell Damage {variant:2,3,4,5}(150-200)% increased Physical Damage {variant:5}Adds (76-98) to (161-176) Fire Damage @@ -544,8 +548,8 @@ League: Legion Requires Level 58, 99 Str, 99 Int Implicits: 1 26% increased Elemental Damage -+(10-30) to Strength and Intelligence Grants Level 30 Smite Skill ++(10-30) to Strength and Intelligence Enemies inflict Elemental Ailments on you instead of nearby Allies ]],[[ Singularity @@ -577,8 +581,8 @@ Implicits: 2 {variant:2,3}14% increased Elemental Damage (100-140)% increased Physical Damage 40% increased Damage with Hits against Frozen Enemies -(30-50)% increased Cold Damage {variant:3}+(25-35)% to Cold Damage over Time Multiplier +(30-50)% increased Cold Damage (5-10)% increased Attack Speed (4-8)% increased Cast Speed 5% chance to Freeze @@ -587,18 +591,21 @@ The Supreme Truth Crystal Sceptre Variant: Pre 2.0.0 Variant: Pre 2.3.0 +Variant: Pre 2.28.0 Variant: Current Requires Level 41, 59 Str, 136 Int Implicits: 2 {variant:1,2}20% increased Elemental Damage -{variant:3}30% increased Elemental Damage +{variant:3,4}30% increased Elemental Damage +{variant:4}Attacks with this weapon inflict Hallowing Flame on Hit +1 to Level of Socketed Gems +60% increased Intelligence Requirement (80-100)% increased Physical Damage (10-20)% increased Attack Speed {variant:1}5% increased Experience gain {variant:2,3}3% increased Experience gain -60% increased Intelligence Requirement -Attacks with this Weapon inflict Hallowing Flame on Hit +{variant:1,2,3}20% increased Elemental Damage + ]],[[ Yaomac's Accord Vaal Sceptre @@ -659,12 +666,12 @@ Implicits: 2 {variant:2,3}30% increased Stun Duration on Enemies +1 to Level of Socketed Melee Gems +1 to Level of Socketed Minion Gems +20% reduced Strength Requirement {variant:1,2}(100-120)% increased Physical Damage {variant:3}(200-220)% increased Physical Damage 25% increased maximum Mana Minions have (20-40)% increased maximum Life 15% increased Skill Effect Duration -20% reduced Strength Requirement ]],[[ Chaber Cairn Great Mallet @@ -719,8 +726,8 @@ Requires Level 17, 62 Str Implicits: 2 {variant:1}40% increased Stun Duration on Enemies {variant:2}45% increased Stun Duration on Enemies -(140-200)% increased Physical Damage +10 to Strength +(140-200)% increased Physical Damage 15% reduced Enemy Stun Threshold 1% of Physical Attack Damage Leeched as Life (40-50)% increased Stun Duration on Enemies @@ -734,9 +741,9 @@ Requires Level 36, 62 Str Implicits: 2 {variant:1}40% increased Stun Duration on Enemies {variant:2}45% increased Stun Duration on Enemies ++10 to Strength (140-200)% increased Physical Damage Adds (10-20) to (30-40) Physical Damage -+10 to Strength 15% reduced Enemy Stun Threshold 1% of Physical Attack Damage Leeched as Life (40-50)% increased Stun Duration on Enemies @@ -770,7 +777,7 @@ Implicits: 3 {variant:3}30% increased Stun Duration on Enemies {variant:4}25% chance to double Stun Duration {variant:1}Adds (27-36) to (270-360) Physical Damage -{variant:2,3,4}Adds (27-56) to (270-400) Physical Damage +{variant:2,3,4}Adds (43-56) to (330-400) Physical Damage {variant:2,3,4}(30-40)% increased Critical Strike Chance +(15-20)% to all Elemental Resistances Hits can't be Evaded @@ -819,9 +826,9 @@ Implicits: 3 {variant:5,6,7}25% reduced Attack Speed {variant:1,2,3,4}10% reduced Movement Speed (40-50)% increased Stun Duration on Enemies +{variant:7}(40-50)% increased Area of Effect {variant:1,2,3,4}-100 to Accuracy Rating {variant:5,6,7}-500 to Accuracy Rating -{variant:7}(40-50)% increased Area of Effect ]],[[ Quecholli Jagged Maul @@ -831,9 +838,9 @@ Requires Level 22, 77 Str Implicits: 2 {variant:1}20% increased Stun Duration on Enemies {variant:2}30% increased Stun Duration on Enemies ++(25-50) to all Attributes (80-100)% increased Physical Damage Adds 5 to 25 Physical Damage -+(25-50) to all Attributes Gain 10 Life per Enemy Killed Enemies killed explode dealing 10% of their Life as Fire Damage ]],[[ @@ -843,11 +850,11 @@ Source: No longer obtainable Requires Level 61, 77 Str Implicits: 1 30% increased Stun Duration on Enemies ++(25-50) to all Attributes (80-100)% increased Physical Damage Adds (94-98) to (115-121) Physical Damage -+(25-50) to all Attributes -Enemies killed explode dealing 10% of their Life as Fire Damage Recover 5% of Life on Kill +Enemies killed explode dealing 10% of their Life as Fire Damage ]],[[ Serle's Masterwork Phantom Mace @@ -859,8 +866,9 @@ Implicits: 1 +(30-40) to Dexterity (150-250)% increased Physical Damage +(400-500) to Accuracy Rating -Can have 2 additional Runesmithing Enchantments Can be Enchanted by a Kalguuran Runesmith +Can have 2 additional Runesmithing Enchantments +Can be Runesmithed as though it were all One Handed Melee Weapon Types ]],[[ Tawhoa's Felling Piledriver @@ -868,7 +876,8 @@ League: Settlers of Kalguur Requires Level 61, 212 Str Implicits: 1 20% reduced Enemy Stun Threshold -Trigger Level 20 Tawhoa's Chosen when you Attack with a Non-Vaal Slam or Strike Skill near an Enemy +Trigger Level 20 Tawhoa's Chosen when you Attack with +a Non-Vaal Slam or Strike Skill near an Enemy +(30-40) to Strength (250-300)% increased Physical Damage (20-30)% increased Stun Duration on Enemies @@ -881,12 +890,12 @@ Variant: Pre 3.11.0 Variant: Current Requires Level 65, 212 Str Implicits: 2 -{variant:1,2}30% increased Stun Duration on Enemies {variant:3}10% increased Strength +{variant:1,2}30% increased Stun Duration on Enemies Socketed Gems are Supported by Level 20 Endurance Charge on Melee Stun ++40 to Intelligence {variant:1}Adds (60-70) to (300-350) Physical Damage {variant:2,3}Adds (70-80) to (340-375) Physical Damage -+40 to Intelligence 10% increased Physical Damage per Endurance Charge (20-30)% reduced Enemy Stun Threshold with this Weapon ]],[[ diff --git a/src/Data/Uniques/quiver.lua b/src/Data/Uniques/quiver.lua index 9681bc7e80..2156e2d1d3 100644 --- a/src/Data/Uniques/quiver.lua +++ b/src/Data/Uniques/quiver.lua @@ -30,7 +30,7 @@ Implicits: 2 Gain 20% of Physical Damage as Extra Cold Damage (7-10)% chance to Freeze {variant:1}40% reduced Area of Effect of Hex Skills -Hexes on Slain Enemies are transferred to a nearby Enemy +Hexes Transfer to all Enemies within 3 metres when Hexed Enemy dies ]],[[ Blackgleam {variant:1}Cured Quiver @@ -44,8 +44,8 @@ Variant: Current {variant:4}LevelReq: 45 Implicits: 3 {variant:1}Adds 2 to 4 Fire Damage to Attacks -{variant:2,3}4 to 8 Added Fire Damage with Bow Attacks {variant:4}Adds (12-15) to (24-27) Fire Damage to Attacks +{variant:2,3}4 to 8 Added Fire Damage with Bow Attacks 10% increased Attack Speed {variant:1}+20 to Evasion Rating {variant:2,3,4}+(80-100) to Evasion Rating @@ -67,8 +67,8 @@ Source: No longer obtainable {variant:4}LevelReq: 45 Implicits: 3 {variant:1}Adds 2 to 4 Fire Damage to Attacks -{variant:2,3}4 to 8 Added Fire Damage with Bow Attacks {variant:4}Adds (12-15) to (24-27) Fire Damage to Attacks +{variant:2,3}4 to 8 Added Fire Damage with Bow Attacks 10% increased Attack Speed {variant:1}+20 to Evasion Rating {variant:2,3,4}+(80-100) to Evasion Rating @@ -89,7 +89,7 @@ Implicits: 1 25% reduced Projectile Speed {variant:1}(60-80)% increased Stun Duration on Enemies {variant:2}(140-200)% increased Stun Duration on Enemies -Adds 6 to 10 Physical Damage to Attacks with Bows +6 to 10 Added Physical Damage with Bow Attacks ]],[[ Cragfall Serrated Arrow Quiver @@ -100,7 +100,7 @@ Implicits: 1 (20-25)% reduced Enemy Stun Threshold 25% reduced Projectile Speed (60-80)% increased Stun Duration on Enemies -Adds 6 to 10 Physical Damage to Attacks with Bows +6 to 10 Added Physical Damage with Bow Attacks 50% chance to double Stun Duration ]],[[ Drillneck @@ -111,7 +111,7 @@ Arrows Pierce an additional Target (8-12)% increased Attack Speed +350 to Evasion Rating +(40-50) to maximum Life -Adds (10-14) to (19-24) Physical Damage to Attacks with Bows +(10-14) to (19-24) Added Physical Damage with Bow Attacks Arrows deal 50% increased Damage with Hits and Ailments to Targets they Pierce ]],[[ The Fracturing Spinner @@ -120,7 +120,7 @@ League: Harbinger Source: No longer obtainable Requires Level 60 Implicits: 1 -(7-9) to (13-16) Added Physical Damage with Bow Attacks +Adds (7-9) to (13-16) Physical Damage to Attacks Grants Summon Harbinger of Directions Skill +(30-50) to Strength and Dexterity Adds (19-22) to (30-35) Fire Damage to Spells and Attacks @@ -131,7 +131,7 @@ The Shattered Divinity Blunt Arrow Quiver Requires Level 60 Implicits: 1 -(7-9) to (13-16) Added Physical Damage with Bow Attacks +Adds (7-9) to (13-16) Physical Damage to Attacks Grants Summon Greater Harbinger of Directions Skill +(30-50) to Strength and Dexterity Adds (19-22) to (30-35) Fire Damage to Spells and Attacks @@ -152,7 +152,7 @@ Gain (6-8) Life per Enemy Hit with Attacks {variant:2}Adds 10 to 20 Cold Damage to Attacks (7-10)% increased Attack Speed Gain (2-3) Life per Enemy Hit with Attacks -10% increased Area of Effect of Area Skills +10% increased Area of Effect ]],[[ Hyrri's Demise Sharktooth Arrow Quiver @@ -187,7 +187,8 @@ Requires Level 45 Implicits: 1 Has 1 Socket Has 2 Sockets -Trigger a Socketed Bow Skill when you Cast a Spell while wielding a Bow +Trigger a Socketed Bow Skill when you Cast a Spell while +wielding a Bow, with a 1 second Cooldown (7-12)% increased Cast Speed +(50-70) to maximum Life 5% chance to Blind Enemies on Hit with Attacks @@ -206,8 +207,8 @@ Implicits: 2 {variant:2,3}10% increased Attack Speed +(50-70) to maximum Life +(12-16)% to Chaos Resistance -{variant:1}Adds (5-7) to (8-10) Physical Damage to Attacks with Bows -{variant:2,3}Adds (8-10) to (14-16) Physical Damage to Attacks with Bows +{variant:1}(5-7) to (8-10) Added Physical Damage with Bow Attacks +{variant:2,3}(8-10) to (14-16) Added Physical Damage with Bow Attacks {variant:1}10% chance to create a Smoke Cloud when Hit {variant:2,3}25% chance to create a Smoke Cloud when Hit {variant:1}(20-40)% increased Damage with Hits and Ailments against Blinded Enemies @@ -219,8 +220,8 @@ Rearguard Variant: Pre 3.17.0 Variant: Current Implicits: 2 +{variant:2}Adds (7-9) to (13-16) Physical Damage to Attacks {variant:1}6 to 12 Added Physical Damage with Bow Attacks -{variant:2}(7-9) to (13-16) Added Physical Damage with Bow Attacks (20-24)% Chance to Block Attack Damage (12-15)% Chance to Block Spell Damage +(400-450) to Armour @@ -242,8 +243,8 @@ Implicits: 1 Gain 7 Life per Enemy Hit with Attacks 20% reduced Projectile Speed (30-50)% increased Projectile Damage -{variant:1}Projectiles Fork {variant:2}Arrows Fork +{variant:1}Projectiles Fork ]],[[ Saemus' Gift {variant:1}Spike-Point Arrow Quiver @@ -269,8 +270,8 @@ Variant: Current League: Harvest Requires Level 57 Implicits: 2 +{variant:2}Adds (12-15) to (24-27) Physical Damage to Attacks {variant:1}6 to 12 Added Physical Damage with Bow Attacks -{variant:2}(12-16) to (24-27) Added Physical Damage with Bow Attacks +(20-40) to Dexterity Regenerate (150-200) Life per Second while in Blood Stance (40-60)% increased Projectile Damage while in Blood Stance @@ -292,18 +293,17 @@ Attack skills can have 1 additional Totem Summoned at a time Steelworm Broadhead Arrow Quiver Variant: Pre 3.17.0 -Variant: Pre 3.26.0 Variant: Current LevelReq: 52 Implicits: 2 +{variant:2}(8-10)% increased Attack Speed {variant:1}6 to 12 Added Physical Damage with Bow Attacks -{variant:2,3}(8-10)% increased Attack Speed Grants Call of Steel (30-60)% increased Evasion Rating and Armour Deal no Non-Physical Damage Attacks that Fire Projectiles Consume up to 1 additional Steel Shard -{variant:1,2}Skills Fire 3 additional Projectiles for 4 seconds after you consume a total of 12 Steel Shards -{variant:3}Skills Fire 3 additional Projectiles for 4 seconds after you consume a total of 8 Steel Shards +Skills Fire 3 additional Projectiles for 4 seconds after +you consume a total of 8 Steel Shards ]],[[ Soul Strike Spike-Point Arrow Quiver @@ -316,9 +316,9 @@ Implicits: 1 Adds (13-18) to (26-32) Chaos Damage to Attacks (8-12)% increased Attack Speed +(100-120) to maximum Energy Shield -40% reduced Energy Shield Recharge Rate {variant:1}150% faster start of Energy Shield Recharge {variant:2}80% faster start of Energy Shield Recharge +40% reduced Energy Shield Recharge Rate ]],[[ Replica Soul Strike Spike-Point Arrow Quiver @@ -332,7 +332,7 @@ Adds (13-18) to (26-32) Physical Damage to Attacks (8-12)% increased Attack Speed +(60-80) to maximum Life 80% reduced Maximum Recovery per Life Leech -40% increased Maximum total Recovery per second from Life Leech +40% increased Maximum total Life Recovery per second from Leech ]],[[ Voidfletcher {variant:1,2}Penetrating Arrow Quiver @@ -353,8 +353,9 @@ Adds (30-40) to (80-100) Cold Damage to Attacks +(20-30)% to Cold Resistance Gain (20-40) Mana per Enemy Killed 30% increased Projectile Speed -5 Maximum Void Charges +{variant:1}5 Maximum Void Charges {variant:1}Gain a Void Charge every second +{variant:2,3}5 Maximum Void Charges {variant:2,3}Gain a Void Charge every 0.5 seconds ]],[[ The Poised Prism diff --git a/src/Data/Uniques/ring.lua b/src/Data/Uniques/ring.lua index 45ff8da321..bfbf1a97ea 100644 --- a/src/Data/Uniques/ring.lua +++ b/src/Data/Uniques/ring.lua @@ -9,10 +9,10 @@ League: Delve Source: Drops from unique{Aul, the Crystal King} Requires Level 49 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{tags:jewellery_attribute}+20 to Strength -{tags:jewellery_defense}5% increased maximum Energy Shield -{tags:life}5% increased maximum Life +{tags:resistance}+(20-30)% to Fire Resistance +{tags:attribute}+20 to Strength +{tags:defences}5% increased maximum Energy Shield +{tags:resource}5% increased maximum Life ]],[[ Ahkeli's Mountain Ruby Ring @@ -20,10 +20,10 @@ League: Delve Source: Drops from unique{Ahuatotli, the Blind} Requires Level 49 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{tags:jewellery_attribute}+20 to Strength -{tags:jewellery_defense}5% increased maximum Energy Shield -{tags:life}5% increased maximum Life +{tags:resistance}+(20-30)% to Fire Resistance +{tags:attribute}+20 to Strength +{tags:defences}5% increased maximum Energy Shield +{tags:resource}5% increased maximum Life ]],[[ Ahkeli's Valley Ruby Ring @@ -31,30 +31,30 @@ League: Delve Source: Drops from unique{Kurgal, the Blackblooded} Requires Level 49 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{tags:jewellery_attribute}+20 to Strength -{tags:jewellery_defense}5% increased maximum Energy Shield -{tags:life}5% increased maximum Life +{tags:resistance}+(20-30)% to Fire Resistance +{tags:attribute}+20 to Strength +{tags:defences}5% increased maximum Energy Shield +{tags:resource}5% increased maximum Life ]],[[ Andvarius Gold Ring Requires Level 20 Implicits: 1 (6-15)% increased Rarity of Items found -{tags:jewellery_attribute}+10 to Dexterity +{tags:attribute}+10 to Dexterity (50-70)% increased Rarity of Items found -{tags:jewellery_resistance}-20% to all Elemental Resistances +{tags:resistance}-20% to all Elemental Resistances ]],[[ Astral Projector Topaz Ring Requires Level 40 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance -{tags:jewellery_attribute}+(30-50) to Intelligence +{tags:resistance}+(20-30)% to Lightning Resistance +{tags:attribute}+(30-50) to Intelligence {tags:caster}(20-25)% increased Spell Damage 30% chance to Avoid Elemental Ailments -Nova Spells have 20% less Area of Effect -Nova Spells Cast at the targeted location instead of around you +{tags:caster}Nova Spells have 20% less Area of Effect +{tags:caster}Nova Spells Cast at the targeted location instead of around you ]],[[ Berek's Grip Two-Stone Ring @@ -64,17 +64,16 @@ Variant: Pre 3.8.0 Variant: Current Requires Level 20 Implicits: 1 -{tags:jewellery_resistance}+(12-16)% to Cold and Lightning Resistances -{variant:1}{tags:jewellery_elemental}(10-15)% increased Cold Damage -{variant:2,3}{tags:jewellery_elemental}(25-30)% increased Cold Damage -{variant:1}{tags:jewellery_elemental,attack}Adds 1 to (1-50) Lightning Damage to Attacks -{variant:2,3}{tags:jewellery_elemental,attack,caster}Adds 1 to (50-70) Lightning Damage to Spells and Attacks -{tags:life}+(30-40) to maximum Life -{variant:1}{tags:life}1% of Damage Leeched as Life against Frozen Enemies -{variant:2,3}{tags:life}1% of Damage Leeched as Life against Shocked Enemies -{variant:1}{tags:mana}1% of Damage Leeched as Mana against Shocked Enemies -{variant:2}{tags:mana}1% of Damage Leeched as Mana against Frozen Enemies -{variant:3}{tags:jewellery_defense}1% of Damage Leeched as Energy Shield against Frozen Enemies +{tags:resistance}+(12-16)% to Cold and Lightning Resistances +{variant:1}{tags:elemental_damage}(10-15)% increased Cold Damage +{variant:2,3}{tags:elemental_damage}(25-30)% increased Cold Damage +{variant:1}{tags:elemental_damage,attack}Adds 1 to (1-50) Lightning Damage to Attacks +{variant:2,3}{tags:elemental_damage,attack,caster}Adds 1 to (50-70) Lightning Damage to Spells and Attacks +{tags:resource}+(30-40) to maximum Life +{variant:1}{tags:resource}1% of Damage Leeched as Life against Shocked Enemies +{variant:2,3}{tags:resource}1% of Damage Leeched as Life against Shocked Enemies +{variant:3}{tags:defences}1% of Damage Leeched as Energy Shield against Frozen Enemies +{variant:1,2}{tags:resource}1% of Damage Leeched as Mana against Frozen Enemies ]],[[ Berek's Pass Two-Stone Ring @@ -83,14 +82,14 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 20 Implicits: 1 -{tags:jewellery_resistance}+(12-16)% to Fire and Cold Resistances -{variant:1}{tags:jewellery_elemental}(10-15)% increased Fire Damage -{variant:2}{tags:jewellery_elemental}(25-30)% increased Fire Damage -{variant:1}{tags:jewellery_elemental,attack}Adds 1 to (10-30) Cold Damage to Attacks -{variant:2}{tags:jewellery_elemental,attack,caster}Adds (20-25) to (30-50) Cold Damage to Spells and Attacks -{tags:jewellery_defense}+(30-40) to maximum Energy Shield +{tags:resistance}+(12-16)% to Fire and Cold Resistances +{variant:1}{tags:elemental_damage}(10-15)% increased Fire Damage +{variant:2}{tags:elemental_damage}(25-30)% increased Fire Damage +{variant:1}{tags:elemental_damage,attack,caster}Adds 1 to (10-30) Cold Damage to Spells and Attacks +{variant:2}{tags:elemental_damage,attack,caster}Adds (20-25) to (30-50) Cold Damage to Spells and Attacks +{tags:defences}+(30-40) to maximum Energy Shield 30% increased Damage while Ignited -{tags:jewellery_defense}+5000 to Armour while Frozen +{tags:defences}+5000 to Armour while Frozen ]],[[ Berek's Respite Two-Stone Ring @@ -99,16 +98,14 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 20 Implicits: 1 -{tags:jewellery_resistance}+(12-16)% to Fire and Lightning Resistances -{variant:1}{tags:jewellery_elemental,attack}Adds 1 to (10-30) Fire Damage to Attacks -{variant:2}{tags:jewellery_elemental,attack,caster}Adds (20-25) to (30-50) Fire Damage to Spells and Attacks -{variant:1}{tags:jewellery_elemental}(10-15)% increased Lightning Damage -{variant:2}{tags:jewellery_elemental}(25-30)% increased Lightning Damage -{tags:mana}+(30-40) to maximum Mana -{variant:1}Shock a nearby Enemy for 2 seconds on Killing a Shocked Enemy -{variant:2}Shocks all nearby Enemies on Killing a Shocked Enemy -{variant:1}Ignite a nearby Enemy on Killing an Ignited Enemy -{variant:2}Ignites all nearby Enemies on Killing an Ignited Enemy +{tags:resistance}+(12-16)% to Fire and Lightning Resistances +{variant:1}{tags:elemental_damage,attack,caster}Adds 1 to (10-30) Fire Damage to Spells and Attacks +{variant:2}{tags:elemental_damage,attack,caster}Adds (20-25) to (30-50) Fire Damage to Spells and Attacks +{variant:1}{tags:elemental_damage}(10-15)% increased Lightning Damage +{variant:2}{tags:elemental_damage}(25-30)% increased Lightning Damage +{tags:resource}+(30-40) to maximum Mana +When you Kill a Shocked Enemy, inflict an equivalent Shock on each nearby Enemy +When you Kill an Ignited Enemy, inflict an equivalent Ignite on each nearby Enemy ]],[[ Blackflame Amethyst Ring @@ -116,26 +113,26 @@ League: Ritual Source: Purchase from Ritual Reward Requires Level 49 Implicits: 1 -{tags:jewellery_resistance}+(17-23)% to Chaos Resistance -{tags:jewellery_elemental}+(8-12)% to Fire Damage over Time Multiplier +{tags:resistance}+(17-23)% to Chaos Resistance +{tags:elemental_damage}+(8-12)% to Fire Damage over Time Multiplier 50% reduced Ignite Duration on Enemies (10-15)% chance to Ignite Enemies Ignited by you take Chaos Damage instead of Fire Damage from Ignite Withered does not expire on Enemies Ignited by you -{tags:jewellery_resistance}+(20-25)% to Fire and Chaos Resistances +{tags:resistance}+(20-25)% to Fire and Chaos Resistances ]],[[ Blackheart Iron Ring Variant: Pre 3.19.0 Variant: Current Implicits: 1 -{tags:attack,physical_damage}Adds 1 to 4 Physical Damage to Attacks +{tags:physical_damage,attack}Adds 1 to 4 Physical Damage to Attacks {variant:1}{tags:physical_damage}5% increased Global Physical Damage -{variant:1}{tags:attack,chaos_damage}Adds 1 to 3 Chaos Damage to Attacks -{variant:2}{tags:attack,chaos_damage}Adds (10-15) to (20-25) Chaos Damage to Attacks -{variant:1}{tags:life}+(20-30) to maximum Life -{variant:1}{tags:life}Regenerate (2-4) Life per second -{variant:2}{tags:life}Regenerate (10-15) Life per second +{variant:1}{tags:chaos_damage,attack}Adds 1 to 3 Chaos Damage to Attacks +{variant:2}{tags:chaos_damage,attack}Adds (10-15) to (20-25) Chaos Damage to Attacks +{variant:1}{tags:resource}+(20-30) to maximum Life +{variant:1}{tags:resource}Regenerate (2-4) Life per second +{variant:2}{tags:resource}Regenerate (10-15) Life per second 10% chance to Cause Monsters to Flee ]],[[ Voidheart @@ -145,16 +142,16 @@ Variant: Pre 2.4.0 Variant: Current Requires Level 48 Implicits: 1 -{tags:attack,physical_damage}Adds 1 to 4 Physical Damage to Attacks +{tags:physical_damage,attack}Adds 1 to 4 Physical Damage to Attacks {tags:physical_damage}5% increased Global Physical Damage -{tags:attack,chaos_damage}Adds 1 to 3 Chaos Damage to Attacks -{tags:life}+(20-30) to maximum Life -{tags:life}Regenerate (2-4) Life per second +{tags:chaos_damage,attack}Adds 1 to 3 Chaos Damage to Attacks +{tags:resource}+(20-30) to maximum Life +{tags:resource}Regenerate (2-4) Life per second 10% chance to Cause Monsters to Flee -{variant:1}Melee Attacks cause Bleeding -{variant:2}{tags:attack,physical}(30-50)% chance to cause Bleeding on Melee Hit -{variant:1}Melee Attacks Poison on Hit -{variant:2}{tags:attack,chaos}(20-40)% chance to Poison on Melee Hit +{variant:1}{tags:attack}Melee Attacks cause Bleeding +{variant:2}{tags:attack}Melee Attacks have (30-50)% chance to cause Bleeding +{variant:1}{tags:attack}Melee Attacks Poison on Hit +{variant:2}{tags:attack}Melee Attacks have (20-40)% chance to Poison on Hit ]],[[ Bloodboil Coral Ring @@ -163,25 +160,25 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 24 Implicits: 1 -{tags:life}+(20-30) to maximum Life -{variant:1}{tags:jewellery_elemental,attack}Adds (7-10) to (15-20) Fire Damage to Attacks -{variant:2}{tags:jewellery_elemental,attack}Adds (12-15) to (25-30) Fire Damage to Attacks -{tags:life}+(20-40) to maximum Life -{tags:jewellery_resistance}+(10-15)% to Cold Resistance -{variant:1}45% reduced Effect of Chill on You -{variant:2}75% reduced Effect of Chill on You -{variant:1}100% increased Ignite Duration on You +{tags:resource}+(20-30) to maximum Life +{variant:1}{tags:elemental_damage,attack}Adds (7-10) to (15-20) Fire Damage to Attacks +{variant:2}{tags:elemental_damage,attack}Adds (12-15) to (25-30) Fire Damage to Attacks +{tags:resource}+(20-40) to maximum Life +{tags:resistance}+(10-15)% to Cold Resistance +{variant:1}45% increased Effect of Chill on you +{variant:2}75% reduced Effect of Chill on you +{variant:1}100% increased Ignite Duration on you {variant:2}{tags:speed}10% increased Movement Speed while Ignited ]],[[ Winterweave Coral Ring Requires Level 24 Implicits: 1 -{tags:life}+(20-30) to maximum Life -{tags:jewellery_elemental,attack}Adds (12-15) to (25-30) Fire Damage to Attacks -{tags:jewellery_elemental,attack}Adds (12-15) to (25-30) Cold Damage to Attacks -{tags:life}+(20-40) to maximum Life -{tags:jewellery_resistance}+(25-30)% to Cold Resistance +{tags:resource}+(20-30) to maximum Life +{tags:elemental_damage,attack}Adds (12-15) to (25-30) Fire Damage to Attacks +{tags:elemental_damage,attack}Adds (12-15) to (25-30) Cold Damage to Attacks +{tags:resource}+(20-40) to maximum Life +{tags:resistance}+(25-30)% to Cold Resistance {tags:speed}10% increased Movement Speed while Ignited The Effect of Chill on you is reversed ]],[[ @@ -193,16 +190,16 @@ Variant: Current Requires Level 45 Implicits: 1 Has 1 Socket +{variant:2}25% increased Effect of Buffs granted by Socketed Golem Skills +{variant:2}{tags:resource,defences}Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield {variant:1}+2 to Level of Socketed Golem Gems {variant:2}+3 to Level of Socketed Golem Gems {variant:1}Socketed Gems are Supported by Level 15 Concentrated Effect -{variant:2}25% increased Effect of Buffs granted by Socketed Golem Skills -{variant:2}Socketed Golem Skills gain 20% of Maximum Life as Extra Maximum Energy Shield +{variant:1}Socketed Gems are Supported by Level 15 Minion Life {variant:1}{tags:caster}(10-25)% increased Spell Damage {variant:2}{tags:caster}(20-25)% increased Spell Damage -{tags:jewellery_defense}+(15-25) to maximum Energy Shield -{tags:jewellery_resistance}+(20-40)% to Lightning Resistance -{variant:1}Socketed Gems are Supported by Level 15 Increased Minion Life +{tags:defences}+(15-25) to maximum Energy Shield +{tags:resistance}+(20-40)% to Lightning Resistance ]],[[ Call of the Brotherhood Two-Stone Ring @@ -210,13 +207,13 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 20 Implicits: 1 -{tags:jewellery_resistance}+(12-16)% to Cold and Lightning Resistances -{tags:jewellery_attribute}+(15-25) to Intelligence -{tags:jewellery_elemental}(15-25)% increased Lightning Damage -{tags:mana}(30-40)% increased Mana Regeneration Rate -{variant:1}{tags:jewellery_elemental}50% of Lightning Damage Converted to Cold Damage -{variant:2}{tags:jewellery_elemental}40% of Lightning Damage Converted to Cold Damage -Your spells have 100% chance to Shock against Frozen enemies +{tags:resistance}+(12-16)% to Cold and Lightning Resistances +{tags:attribute}+(15-25) to Intelligence +{tags:elemental_damage}(15-25)% increased Lightning Damage +{tags:resource}(30-40)% increased Mana Regeneration Rate +{variant:1}{tags:elemental_damage}50% of Lightning Damage Converted to Cold Damage +{variant:2}{tags:elemental_damage}40% of Lightning Damage Converted to Cold Damage +{tags:caster}Your spells have 100% chance to Shock against Frozen Enemies ]],[[ Circle of Ambition Prismatic Ring @@ -253,41 +250,40 @@ Selected Alt Variant: 2 Has Alt Variant Two: true Selected Alt Variant Two: 3 Implicits: 0 -{tags:jewellery_attribute}+(10–20) to all Attributes -{tags:jewellery_resistance}+(10–20)% to all Elemental Resistances -10% increased Mana Reservation Efficiency of Herald Skills -{variant:1}{tags:mana}Herald of Thunder has (30-40)% increased Mana Reservation Efficiency -{variant:2}{tags:jewellery_elemental}(40-60)% increased Lightning Damage while affected by Herald of Thunder -{variant:3}Herald of Thunder has (40-60)% increased Buff Effect -{variant:4}{tags:jewellery_resistance}+1% to maximum Lightning Resistance while affected by Herald of Thunder -{variant:5}{tags:jewellery_resistance}+(50-60)% to Lightning Resistance while affected by Herald of Thunder -{variant:6}{tags:mana}Herald of Ash has (30-40)% increased Mana Reservation Efficiency -{variant:7}{tags:jewellery_elemental}(40-60)% increased Fire Damage while affected by Herald of Ash +{tags:attribute}+(10-20) to all Attributes +{tags:resistance}+(10-20)% to all Elemental Resistances +{variant:24}Agony Crawler deals (70-100)% increased Damage +{variant:22}{tags:chaos_damage}(40-60)% increased Chaos Damage while affected by Herald of Agony +{variant:25}{tags:resistance}+(31-43)% to Chaos Resistance while affected by Herald of Agony +{variant:12}{tags:elemental_damage}(40-60)% increased Cold Damage while affected by Herald of Ice +{variant:15}{tags:resistance}+(50-60)% to Cold Resistance while affected by Herald of Ice +{variant:7}{tags:elemental_damage}(40-60)% increased Fire Damage while affected by Herald of Ash +{variant:10}{tags:resistance}+(50-60)% to Fire Resistance while affected by Herald of Ash +{variant:23}Herald of Agony has (40-60)% increased Buff Effect +{variant:21}{tags:resource}Herald of Agony has (30-40)% increased Mana Reservation Efficiency {variant:8}Herald of Ash has (40-60)% increased Buff Effect -{variant:9}{tags:jewellery_resistance}+1% to maximum Fire Resistance while affected by Herald of Ash -{variant:10}{tags:jewellery_resistance}+(50-60)% to Fire Resistance while affected by Herald of Ash -{variant:11}{tags:mana}Herald of Ice has (30-40)% increased Mana Reservation Efficiency -{variant:12}{tags:jewellery_elemental}(40-60)% increased Cold Damage while affected by Herald of Ice +{variant:6}{tags:resource}Herald of Ash has (30-40)% increased Mana Reservation Efficiency {variant:13}Herald of Ice has (40-60)% increased Buff Effect -{variant:14}{tags:jewellery_resistance}+1% to maximum Cold Resistance while affected by Herald of Ice -{variant:15}{tags:jewellery_resistance}+(50-60)% to Cold Resistance while affected by Herald of Ice -{variant:16}{tags:mana}Herald of Purity has (30-40)% increased Mana Reservation Efficiency -{variant:17}{tags:physical_damage}(40-60)% increased Physical Damage while affected by Herald of Purity +{variant:11}{tags:resource}Herald of Ice has (30-40)% increased Mana Reservation Efficiency {variant:18}Herald of Purity has (40-60)% increased Buff Effect +{variant:16}{tags:resource}Herald of Purity has (30-40)% increased Mana Reservation Efficiency +{variant:3}Herald of Thunder has (40-60)% increased Buff Effect +{variant:1}{tags:resource}Herald of Thunder has (30-40)% increased Mana Reservation Efficiency +10% increased Mana Reservation Efficiency of Herald Skills +{variant:2}{tags:elemental_damage}(40-60)% increased Lightning Damage while affected by Herald of Thunder +{variant:5}{tags:resistance}+(50-60)% to Lightning Resistance while affected by Herald of Thunder +{variant:14}{tags:resistance}+1% to maximum Cold Resistance while affected by Herald of Ice +{variant:9}{tags:resistance}+1% to maximum Fire Resistance while affected by Herald of Ash +{variant:4}{tags:resistance}+1% to maximum Lightning Resistance while affected by Herald of Thunder +{variant:17}{tags:physical_damage}(40-60)% increased Physical Damage while affected by Herald of Purity +{variant:20}4% additional Physical Damage Reduction while affected by Herald of Purity {variant:19}Sentinels of Purity deal (70-100)% increased Damage -{variant:20}{tags:physical}4% additional Physical Damage Reduction while affected by Herald of Purity -{variant:21}{tags:mana}Herald of Agony has (30-40)% increased Mana Reservation Efficiency -{variant:22}{tags:chaos_damage}(40-60)% increased Chaos Damage while affected by Herald of Agony -{variant:23}Herald of Agony has (40-60)% increased Buff Effect -{variant:24}Agony Crawler deals (70-100)% increased Damage -{variant:25}{tags:jewellery_resistance}+(31-43)% to Chaos Resistance while affected by Herald of Agony ]],[[ Circle of Anguish Ruby Ring League: Synthesis Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} Requires Level 52 -Implicits: 1 Has Alt Variant: true Variant: Skill Reservation (Pre 3.11.0) Variant: Skill Reservation (Current) @@ -296,24 +292,24 @@ Variant: Buff Effect (Pre 3.11.0) Variant: Buff Effect (Current) Variant: Max Resistance Variant: Fire Resistance -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{fractured}{tags:jewellery_attribute}+(20-30) to Strength -{tags:jewellery_elemental}Adds (20-25) to (26-35) Fire Damage -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{variant:1}{tags:mana}Herald of Ash has (60-80)% increased Mana Reservation Efficiency -{variant:2}{tags:mana}Herald of Ash has (30-40)% increased Mana Reservation Efficiency -{variant:3}{tags:jewellery_elemental}(40-60)% increased Fire Damage while affected by Herald of Ash +Implicits: 1 +{tags:resistance}+(20-30)% to Fire Resistance +{tags:attribute}{fractured}+(20-30) to Strength +{tags:elemental_damage}Adds (20-25) to (26-35) Fire Damage +{tags:resistance}+(20-30)% to Fire Resistance +{variant:3}{tags:elemental_damage}(40-60)% increased Fire Damage while affected by Herald of Ash +{variant:7}{tags:resistance}+(50-60)% to Fire Resistance while affected by Herald of Ash {variant:4}Herald of Ash has (70-100)% increased Buff Effect {variant:5}Herald of Ash has (40-60)% increased Buff Effect -{variant:6}{tags:jewellery_resistance}+1% to maximum Fire Resistance while affected by Herald of Ash -{variant:7}{tags:jewellery_resistance}+(50-60)% to Fire Resistance while affected by Herald of Ash +{variant:1}{tags:resource}Herald of Ash has (60-80)% reduced Mana Reservation Efficiency +{variant:2}{tags:resource}Herald of Ash has (30-40)% increased Mana Reservation Efficiency +{variant:6}{tags:resistance}+1% to maximum Fire Resistance while affected by Herald of Ash ]],[[ Circle of Fear Sapphire Ring League: Synthesis Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} Requires Level 52 -Implicits: 1 Has Alt Variant: true Variant: Skill Reservation (Pre 3.11.0) Variant: Skill Reservation (Current) @@ -322,24 +318,24 @@ Variant: Buff Effect (Pre 3.11.0) Variant: Buff Effect (Current) Variant: Max Resistance Variant: Cold Resistance -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{fractured}{tags:jewellery_attribute}+(20-30) to Dexterity -{tags:jewellery_elemental}Adds (20-25) to (26-35) Cold Damage -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{variant:1}{tags:mana}Herald of Ice has (60-80)% increased Mana Reservation Efficiency -{variant:2}{tags:mana}Herald of Ice has (30-40)% increased Mana Reservation Efficiency -{variant:3}{tags:jewellery_elemental}(40-60)% increased Cold Damage while affected by Herald of Ice +Implicits: 1 +{tags:resistance}+(20-30)% to Cold Resistance +{tags:attribute}{fractured}+(20-30) to Dexterity +{tags:elemental_damage}Adds (20-25) to (26-35) Cold Damage +{tags:resistance}+(20-30)% to Cold Resistance +{variant:3}{tags:elemental_damage}(40-60)% increased Cold Damage while affected by Herald of Ice +{variant:7}{tags:resistance}+(50-60)% to Cold Resistance while affected by Herald of Ice {variant:4}Herald of Ice has (70-100)% increased Buff Effect {variant:5}Herald of Ice has (40-60)% increased Buff Effect -{variant:6}{tags:jewellery_resistance}+1% to maximum Cold Resistance while affected by Herald of Ice -{variant:7}{tags:jewellery_resistance}+(50-60)% to Cold Resistance while affected by Herald of Ice +{variant:1}{tags:resource}Herald of Ice has (60-80)% reduced Mana Reservation Efficiency +{variant:2}{tags:resource}Herald of Ice has (30-40)% increased Mana Reservation Efficiency +{variant:6}{tags:resistance}+1% to maximum Cold Resistance while affected by Herald of Ice ]],[[ Circle of Guilt Iron Ring League: Synthesis Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} Requires Level 52 -Implicits: 1 Has Alt Variant: true Variant: Skill Reservation (Pre 3.11.0) Variant: Skill Reservation (Current) @@ -348,24 +344,24 @@ Variant: Buff Effect (Pre 3.11.0) Variant: Buff Effect (Current) Variant: Sentinel Damage Variant: Damage Reduction -{tags:attack,physical_damage}Adds 1 to 4 Physical Damage to Attacks -{fractured}{tags:jewellery_attribute}+(10-20) to all Attributes +Implicits: 1 +{tags:physical_damage,attack}Adds 1 to 4 Physical Damage to Attacks +{tags:attribute}{fractured}+(10-20) to all Attributes {tags:physical_damage}Adds (8-10) to (13-15) Physical Damage -{tags:jewellery_defense}+(350-400) to Armour -{variant:1}{tags:mana}Herald of Purity has (60-80)% increased Mana Reservation Efficiency -{variant:2}{tags:mana}Herald of Purity has (30-40)% increased Mana Reservation Efficiency -{variant:3}{tags:physical_damage}(40-60)% increased Physical Damage while affected by Herald of Purity +{tags:defences}+(350-400) to Armour {variant:4}Herald of Purity has (70-100)% increased Buff Effect {variant:5}Herald of Purity has (40-60)% increased Buff Effect +{variant:1}{tags:resource}Herald of Purity has (60-80)% reduced Mana Reservation Efficiency +{variant:2}{tags:resource}Herald of Purity has (30-40)% increased Mana Reservation Efficiency +{variant:3}{tags:physical_damage}(40-60)% increased Physical Damage while affected by Herald of Purity +{variant:7}4% additional Physical Damage Reduction while affected by Herald of Purity {variant:6}Sentinels of Purity deal (70-100)% increased Damage -{variant:7}{tags:physical}4% additional Physical Damage Reduction while affected by Herald of Purity ]],[[ Circle of Nostalgia Amethyst Ring League: Synthesis Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} Requires Level 52 -Implicits: 1 Has Alt Variant: true Variant: Skill Reservation (Pre 3.11.0) Variant: Skill Reservation (Current) @@ -374,24 +370,24 @@ Variant: Buff Effect (Pre 3.11.0) Variant: Buff Effect (Current) Variant: Agony Damage Variant: Chaos Resistance -{tags:jewellery_resistance}+(17-23)% to Chaos Resistance -{fractured}{tags:jewellery_attribute}+(10-20) to all Attributes +Implicits: 1 +{tags:resistance}+(17-23)% to Chaos Resistance +{tags:attribute}{fractured}+(10-20) to all Attributes {tags:chaos_damage}Adds (15-20) to (21-30) Chaos Damage -{tags:jewellery_resistance}+(17-23)% to Chaos Resistance -{variant:1}{tags:mana}Herald of Agony has (60-80)% increased Mana Reservation Efficiency -{variant:2}{tags:mana}Herald of Agony has (30-40)% increased Mana Reservation Efficiency +{tags:resistance}+(17-23)% to Chaos Resistance +{variant:6}Agony Crawler deals (70-100)% increased Damage {variant:3}{tags:chaos_damage}(40-60)% increased Chaos Damage while affected by Herald of Agony +{variant:7}{tags:resistance}+(31-43)% to Chaos Resistance while affected by Herald of Agony {variant:4}Herald of Agony has (70-100)% increased Buff Effect {variant:5}Herald of Agony has (40-60)% increased Buff Effect -{variant:6}Agony Crawler deals (70-100)% increased Damage -{variant:7}{tags:jewellery_resistance}+(31-43)% to Chaos Resistance while affected by Herald of Agony +{variant:1}{tags:resource}Herald of Agony has (60-80)% reduced Mana Reservation Efficiency +{variant:2}{tags:resource}Herald of Agony has (30-40)% increased Mana Reservation Efficiency ]],[[ Circle of Regret Topaz Ring League: Synthesis Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} Requires Level 52 -Implicits: 1 Has Alt Variant: true Variant: Skill Reservation (Pre 3.11.0) Variant: Skill Reservation (Current) @@ -400,17 +396,18 @@ Variant: Buff Effect (Pre 3.11.0) Variant: Buff Effect (Current) Variant: Max Resistance Variant: Lightning Resistance -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance -{fractured}{tags:jewellery_attribute}+(20-30) to Intelligence -{tags:jewellery_elemental}Adds 1 to (48-60) Lightning Damage -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance -{variant:1}{tags:mana}Herald of Thunder has (60-80)% increased Mana Reservation Efficiency -{variant:2}{tags:mana}Herald of Thunder has (30-40)% increased Mana Reservation Efficiency -{variant:3}{tags:jewellery_elemental}(40-60)% increased Lightning Damage while affected by Herald of Thunder +Implicits: 1 +{tags:resistance}+(20-30)% to Lightning Resistance +{tags:attribute}{fractured}+(20-30) to Intelligence +{tags:elemental_damage}Adds 1 to (48-60) Lightning Damage +{tags:resistance}+(20-30)% to Lightning Resistance {variant:4}Herald of Thunder has (70-100)% increased Buff Effect {variant:5}Herald of Thunder has (40-60)% increased Buff Effect -{variant:6}{tags:jewellery_resistance}+1% to maximum Lightning Resistance while affected by Herald of Thunder -{variant:7}{tags:jewellery_resistance}+(50-60)% to Lightning Resistance while affected by Herald of Thunder +{variant:1}{tags:resource}Herald of Thunder has (60-80)% reduced Mana Reservation Efficiency +{variant:2}{tags:resource}Herald of Thunder has (30-40)% increased Mana Reservation Efficiency +{variant:3}{tags:elemental_damage}(40-60)% increased Lightning Damage while affected by Herald of Thunder +{variant:7}{tags:resistance}+(50-60)% to Lightning Resistance while affected by Herald of Thunder +{variant:6}{tags:resistance}+1% to maximum Lightning Resistance while affected by Herald of Thunder ]],[[ Death Rush Amethyst Ring @@ -420,30 +417,30 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 46 Implicits: 1 -{tags:jewellery_resistance}+(17-23)% to Chaos Resistance +{tags:resistance}+(17-23)% to Chaos Resistance {variant:1,2}{tags:attack}+(300-350) to Accuracy Rating -{variant:1}{tags:jewellery_defense}+(60-80) to Armour -{variant:2}{tags:jewellery_defense}+(260-300) to Armour -{variant:2}{tags:life}+(40-50) to maximum Life -{variant:1,2}{tags:jewellery_resistance}+(15-20)% to Chaos Resistance -{variant:1,2}{tags:attack,life}(0.6-0.8)% of Physical Attack Damage Leeched as Life +{variant:1}{tags:defences}+(60-80) to Armour +{variant:2}{tags:defences}+(260-300) to Armour +{variant:2}{tags:resource}+(40-50) to maximum Life +{variant:1,2}{tags:resistance}+(15-20)% to Chaos Resistance +{variant:1,2}{tags:resource,attack}(0.6-0.8)% of Physical Attack Damage Leeched as Life +{variant:3}{tags:resource}Recover 5% of Life on Kill {variant:1}You gain Onslaught for 2 seconds on Kill {variant:2}You gain Onslaught for 4 seconds on Kill -{variant:3}Recover 5% of Life on Kill -{variant:3}Gain Adrenaline for 3 seconds on kill +{variant:3}Gain Adrenaline for 3 seconds on Kill ]],[[ Doedre's Damning Paua Ring Variant: Pre 3.19.0 Variant: Current Implicits: 1 -{tags:mana}+(20-30) to maximum Mana -{variant:1}{tags:jewellery_attribute}+(5-10) to Intelligence -{variant:2}{tags:jewellery_attribute}+(5-20) to Intelligence -{variant:1}{tags:jewellery_resistance}+5% to all Elemental Resistances -{variant:2}{tags:jewellery_resistance}+(5-20)% to all Elemental Resistances -{variant:1}{tags:mana}Gain 5 Mana per Enemy Killed -{variant:2}{tags:mana}Gain (5-20) Mana per Enemy Killed +{tags:resource}+(20-30) to maximum Mana +{variant:1}{tags:attribute}+(5-10) to Intelligence +{variant:2}{tags:attribute}+(5-20) to Intelligence +{variant:1}{tags:resistance}+5% to all Elemental Resistances +{variant:2}{tags:resistance}+(5-20)% to all Elemental Resistances +{variant:1}{tags:resource}Gain 5 Mana per Enemy Killed +{variant:2}{tags:resource}Gain (5-20) Mana per Enemy Killed {tags:caster}You can apply an additional Curse ]],[[ Replica Doedre's Damning @@ -455,13 +452,13 @@ Variant: Current League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Implicits: 1 -{tags:mana}+(20-30) to maximum Mana -{variant:1,2}{tags:jewellery_attribute}+(5-10) to Intelligence -{variant:3,4}{tags:jewellery_attribute}+(5-20) to Intelligence -{variant:1,2}{tags:jewellery_resistance}+5% to all Elemental Resistances -{variant:3,4}{tags:jewellery_resistance}+(5-20)% to all Elemental Resistances -{variant:1,2}{tags:mana}Gain 5 Mana per Enemy Killed -{variant:3,4}{tags:mana}Gain (5-20) Mana per Enemy Killed +{tags:resource}+(20-30) to maximum Mana +{variant:1,2}{tags:attribute}+(5-10) to Intelligence +{variant:3,4}{tags:attribute}+(5-20) to Intelligence +{variant:1,2}{tags:resistance}+5% to all Elemental Resistances +{variant:3,4}{tags:resistance}+(5-20)% to all Elemental Resistances +{variant:1,2}{tags:resource}Gain 5 Mana per Enemy Killed +{variant:3,4}{tags:resource}Gain (5-20) Mana per Enemy Killed {tags:caster}You can apply one fewer Curse {variant:1}{tags:caster}(25-35)% increased Effect of your Curses {variant:2,3}{tags:caster}(15-25)% increased Effect of your Curses @@ -473,12 +470,13 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 24 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{tags:mana}20% increased maximum Mana -{tags:mana}50% increased Mana Regeneration Rate -{variant:2}{tags:jewellery_resistance}+(30-40)% to Cold Resistance -Cannot be Frozen +{tags:resistance}+(20-30)% to Cold Resistance +{tags:resource}20% increased maximum Mana +{tags:resource}50% increased Mana Regeneration Rate +{variant:2}{tags:resistance}+(30-40)% to Cold Resistance {variant:2}Cannot be Chilled +{variant:2}Cannot be Frozen +{variant:1}Cannot be Frozen ]],[[ Emberwake Ruby Ring @@ -488,18 +486,18 @@ Variant: Pre 3.16.0 Variant: Current Requires Level 16 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{variant:1}{tags:jewellery_elemental}(15-25)% increased Fire Damage -{variant:2,3,4}{tags:jewellery_elemental}(30-40)% increased Fire Damage +{tags:resistance}+(20-30)% to Fire Resistance +{variant:1}{tags:elemental_damage}(15-25)% increased Fire Damage +{variant:2,3,4}{tags:elemental_damage}(30-40)% increased Fire Damage {tags:caster,speed}(5-10)% increased Cast Speed {variant:1}5% chance to Ignite {variant:2,3,4}10% chance to Ignite -You can inflict an additional Ignite on an Enemy -{variant:1}Your Critical Strikes do not deal extra Damage -{variant:1}{tags:jewellery_elemental}Ignited Enemies Burn 80% slower -{variant:2}{tags:jewellery_elemental}Ignited Enemies Burn 65% slower -{variant:3}{tags:jewellery_elemental}Ignited Enemies Burn (65-50)% slower -{variant:4}{tags:jewellery_elemental}40% less Burning Damage +{variant:1}{tags:elemental_damage}Ignited Enemies Burn 80% slower +{variant:2}{tags:elemental_damage}Ignited Enemies Burn 65% slower +{variant:3}{tags:elemental_damage}Ignited Enemies Burn (65-50)% slower +{variant:1}{tags:critical}Your Critical Strikes do not deal extra Damage +{variant:4}{tags:elemental_damage}40% less Burning Damage +You can inflict an additional Ignite on each Enemy ]],[[ Replica Emberwake Ruby Ring @@ -507,12 +505,12 @@ League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level 16 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{tags:jewellery_elemental}(30-40)% increased Fire Damage +{tags:resistance}+(20-30)% to Fire Resistance +{tags:elemental_damage}(30-40)% increased Fire Damage {tags:caster,speed}(5-10)% increased Cast Speed 90% reduced Ignite Duration on Enemies 10% chance to Ignite -{tags:jewellery_elemental}Ignites you inflict deal Damage (35-45)% faster +{tags:elemental_damage}Ignites you inflict deal Damage (35-45)% faster ]],[[ Essence Worm Unset Ring @@ -520,9 +518,9 @@ Requires Level 38 Implicits: 1 Has 1 Socket +2 to Level of Socketed Aura Gems -Socketed Gems Have no Reservation -Your Blessing Skills are Disabled -80% reduced Reservation Efficiency of Skills +{tags:resource}Socketed Gems have no Reservation +{tags:resource}Your Blessing Skills are Disabled +{tags:resource}80% reduced Reservation Efficiency of Skills ]],[[ Fated End Paua Ring @@ -530,8 +528,8 @@ League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level 38 Implicits: 1 -{tags:mana}+(20-30) to maximum Mana -{tags:jewellery_attribute}+(20-40) to Intelligence +{tags:resource}+(20-30) to maximum Mana +{tags:attribute}+(20-40) to Intelligence {tags:caster,speed}Curse Skills have (8-12)% increased Cast Speed Non-Aura Hexes expire upon reaching (180-220)% of base Effect Non-Aura Hexes gain 20% increased Effect per second @@ -544,24 +542,25 @@ Variant: Current Requires Level 28 Implicits: 1 {tags:critical}(20-30)% increased Global Critical Strike Chance -{variant:2}Trigger Level 10 Consecrate when you deal a Critical Strike +{variant:2}{tags:critical}Trigger Level 10 Consecrate when you deal a Critical Strike {tags:critical}(30-35)% increased Global Critical Strike Chance (10-15)% increased Light Radius -{variant:1}Creates Consecrated Ground on Critical Strike +{variant:1}{tags:critical}Creates Consecrated Ground on Critical Strike {tags:critical}(40-50)% increased Rarity of Items Dropped by Enemies killed with a Critical Strike {variant:2}50% increased Damage while on Consecrated Ground -{variant:2}5% additional Block Chance while on Consecrated Ground +{variant:2}+5% Chance to Block Attack Damage while on Consecrated Ground ]],[[ Grattus Signet Diamond Ring League: Necropolis Source: Created from 4 different unique{Grattus} family corpses in the normal{Necropolis} Requires Level 64 -{tags:critical}(20–30)% increased Global Critical Strike Chance -{tags:attack,speed}(5–10)% increased Attack Speed -{tags:caster,speed}(5–10)% increased Cast Speed -{tags:jewellery_defense}+(40–60) to maximum Energy Shield -{tags:life}+(30–50) to maximum Life +Implicits: 1 +{tags:critical}(20-30)% increased Global Critical Strike Chance +{tags:attack,speed}(5-10)% increased Attack Speed +{tags:caster,speed}(5-10)% increased Cast Speed +{tags:defences}+(40-60) to maximum Energy Shield +{tags:resource}+(30-50) to maximum Life Attacks inflict Unnerve on Critical Strike for 4 seconds Spells inflict Intimidate on Critical Strike for 4 seconds ]],[[ @@ -571,20 +570,20 @@ League: Settlers of Kalguur Requires Level 50 Implicits: 2 50% increased Elemental Ailment Duration on you -{tags:caster}50% reduced Effect of Curses on you -Grants Level 20 Penance Mark +50% reduced Effect of Curses on you +Grants level 20 Penance Mark {tags:caster,speed}(6-12)% increased Cast Speed -{tags:life}+(30-60) to maximum Life -{tags:jewellery_resistance}+(7-19)% to Chaos Resistance +{tags:resource}+(30-60) to maximum Life +{tags:resistance}+(7-19)% to Chaos Resistance ]],[[ Heartbound Loop Moonstone Ring Requires Level 20 Implicits: 1 -{tags:jewellery_defense}+(15-25) to maximum Energy Shield -{tags:life}Regenerate (10-15) Life per second -{tags:mana}(20-40)% increased Mana Regeneration Rate -{tags:life}Minions have 15% increased maximum Life +{tags:defences}+(15-25) to maximum Energy Shield +{tags:resource}Regenerate (10-15) Life per second +{tags:resource}(20-40)% increased Mana Regeneration Rate +{tags:resource}Minions have 15% increased maximum Life Minions have 10% increased Area of Effect {tags:physical_damage}350 Physical Damage taken on Minion Death ]],[[ @@ -594,16 +593,16 @@ League: Affliction Requires Level 20 Implicits: 1 (6-15)% increased Rarity of Items found -{tags:jewellery_attribute}+(10-15) to all Attributes -{tags:attack,chaos_damage}Adds (7-10) to (15-18) Chaos Damage to Attacks -{tags:caster,jewellery_elemental}Adds (9-12) to (19-22) Fire Damage to Spells -{tags:jewellery_defense}+(80-100) to Armour -{tags:jewellery_defense}+(80-100) to Evasion Rating -{tags:jewellery_defense}+(30-35) to maximum Energy Shield -{tags:life}+(25-30) to maximum Life +{tags:attribute}+(10-15) to all Attributes +{tags:chaos_damage,attack}Adds (7-10) to (15-18) Chaos Damage to Attacks +{tags:elemental_damage,caster}Adds (9-12) to (19-22) Fire Damage to Spells {tags:critical}+(15-20)% to Global Critical Strike Multiplier -{tags:mana}+(20-25) to maximum Mana -{tags:jewellery_resistance}+(8-10)% to all Elemental Resistances +{tags:defences}+(80-100) to Armour +{tags:defences}+(80-100) to Evasion Rating +{tags:defences}+(30-35) to maximum Energy Shield +{tags:resource}+(25-30) to maximum Life +{tags:resource}+(20-25) to maximum Mana +{tags:resistance}+(8-10)% to all Elemental Resistances {tags:attack,caster,speed}(6-8)% increased Attack and Cast Speed Maximum Quality is 200% Corrupted @@ -612,8 +611,8 @@ Anathema Moonstone Ring LevelReq: 49 Implicits: 1 -{tags:jewellery_defense}+(15-25) to maximum Energy Shield -{tags:jewellery_attribute}+(30-40) to Intelligence +{tags:defences}+(15-25) to maximum Energy Shield +{tags:attribute}+(30-40) to Intelligence {tags:caster,speed}(10-15)% increased Cast Speed (10-20)% chance to gain a Power Charge when you Cast a Curse Spell Your Curse Limit is equal to your maximum Power Charges @@ -627,12 +626,12 @@ Requires Level 44 Implicits: 1 (6-15)% increased Rarity of Items found (15-25)% increased Rarity of Items found -{variant:2}{tags:life}1% of Damage leeched as Life +{variant:2}{tags:resource}1% of Damage Leeched as Life {variant:1}{tags:speed}5% increased Movement Speed {variant:2}{tags:speed}(5-10)% increased Movement Speed {variant:1}25% chance to Steal Power, Frenzy, and Endurance Charges on Hit -{variant:1}{tags:life}0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges {variant:2}Steal Power, Frenzy, and Endurance Charges on Hit +{variant:1}0.5% of Damage Leeched as Life while you have at least 5 total Endurance, Frenzy and Power Charges Total Recovery per second from Life Leech is Doubled ]],[[ Honoured Alliance @@ -641,11 +640,11 @@ League: Ancestor Source: No longer obtainable LevelReq: 49 Implicits: 1 -{tags:life}+(20-30) to maximum Life +{tags:resource}+(20-30) to maximum Life 10% chance to Trigger Summon Spirit of Akoya on Kill -{tags:jewellery_attribute}+(10-20) to all Attributes -{tags:mana}(30-50)% increased Mana Regeneration Rate -{tags:life}(10-15)% of Damage taken Recouped as Life +{tags:attribute}+(10-20) to all Attributes +{tags:resource}(30-50)% increased Mana Regeneration Rate +{tags:resource}(10-15)% of Damage taken Recouped as Life ]], [[ The Hungry Loop @@ -653,20 +652,20 @@ Unset Ring Requires Level 45 Implicits: 1 Has 1 Socket -Consumes Socketed Support Gems when they reach Maximum Level -Can Consume 4 Support Gems +Consumes Socketed Uncorrupted Support Gems when they reach Maximum Level +Can Consume 4 Uncorrupted Support Gems Has not Consumed any Gems ]],[[ Icefang Orbit Iron Ring Requires Level: 49 -Implicits: 1 League: Blight -{tags:attack,physical_damage}Adds 1 to 4 Physical Damage to Attacks -{tags:jewellery_attribute}+(20-30) to Dexterity +Implicits: 1 +{tags:physical_damage,attack}Adds 1 to 4 Physical Damage to Attacks +{tags:attribute}+(20-30) to Dexterity 25% chance to Poison on Hit {tags:chaos_damage}(40-60)% increased Damage with Poison -You are Chilled while you are Poisoned +You are Chilled when you are Poisoned Non-Chilled Enemies you Poison are Chilled Poisoned Enemies you Kill with Hits Shatter ]],[[ @@ -676,12 +675,12 @@ Variant: Pre 2.0.0 Variant: Pre 3.19.0 Variant: Current Implicits: 1 -{tags:life}+(20-30) to maximum Life +{tags:resource}+(20-30) to maximum Life {variant:3}Grants Level 10 Enduring Cry Skill -{tags:jewellery_attribute}+(10-20) to Strength -{variant:1}{tags:attack,life}0.4% of Physical Attack Damage Leeched as Life -{variant:2}{tags:attack,life}Gain (2-4) Life per Enemy Hit with Attacks -+1 to Maximum Endurance Charge +{tags:attribute}+(10-20) to Strength +{variant:1}{tags:resource,attack}0.4% of Physical Attack Damage Leeched as Life +{variant:2}{tags:resource,attack}Gain (2-4) Life per Enemy Hit with Attacks ++1 to Maximum Endurance Charges ]],[[ Kaom's Way Coral Ring @@ -690,13 +689,13 @@ Variant: Current Source: No longer obtainable Requires Level 32 Implicits: 1 -{tags:life}+(20-30) to maximum Life -{tags:jewellery_attribute}+(10-20) to Strength -{variant:1}{tags:life}Regenerate 0.4% of Life per second per Endurance Charge -{variant:2}{tags:life}Regenerate 0.2% of Life per second per Endurance Charge -{variant:2}2% increased Area of Effect per Endurance Charge -{tags:attack,life}Gain (2-4) Life per Enemy Hit with Attacks +{tags:resource}+(20-30) to maximum Life +{tags:attribute}+(10-20) to Strength +{variant:1}{tags:resource}Regenerate 0.4% of Life per second per Endurance Charge +{variant:2}{tags:resource}Regenerate 0.2% of Life per second per Endurance Charge +{tags:resource,attack}Gain (2-4) Life per Enemy Hit with Attacks +1 to Maximum Endurance Charges +{variant:2}2% increased Area of Effect per Endurance Charge ]],[[ Kikazaru Topaz Ring @@ -706,25 +705,25 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 20 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance -{tags:jewellery_attribute}+(10-15) to all Attributes -{variant:1}{tags:life}Regenerate (13-17) Life per second -{tags:mana}(20-40)% increased Mana Regeneration Rate -{variant:1}{tags:caster}20% reduced Effect of Curses on you -{variant:2}{tags:caster}40% reduced Effect of Curses on you +{tags:resistance}+(20-30)% to Lightning Resistance +{tags:attribute}+(10-15) to all Attributes +{variant:1}{tags:resource}Regenerate (13-17) Life per second +{tags:resource}(20-40)% increased Mana Regeneration Rate +{variant:1}{tags:caster}20% increased Effect of Curses on you +{variant:2}{tags:caster}40% increased Effect of Curses on you {variant:3,4}{tags:caster}60% reduced Effect of Curses on you -{variant:2,3}{tags:life}Regenerate 1 Life per second per Level -{variant:4}{tags:life}Regenerate 3 Life per second per Level +{variant:2,3}{tags:resource}Regenerate 1 Life per second per Level +{variant:4}{tags:resource}Regenerate 3 Life per second per Level ]],[[ Nimis Topaz Ring Source: Drops from unique{The Eater of Worlds} (Uber) LevelReq: 48 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance -{tags:jewellery_attribute}+(30-50) to Dexterity +{tags:resistance}+(20-30)% to Lightning Resistance +{tags:attribute}+(30-50) to Dexterity (25-35)% increased Projectile Damage -Projectiles Return to you at end of flight +Projectiles Return to you Projectiles are fired in random directions ]],[[ Le Heup of All @@ -733,15 +732,15 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 24 Implicits: 1 -{tags:attack,physical_damage}Adds 1 to 4 Physical Damage to Attacks +{tags:physical_damage,attack}Adds 1 to 4 Physical Damage to Attacks +{variant:1}{tags:attribute}+(10-20) to all Attributes +{variant:2}{tags:attribute}+(10-30) to all Attributes {variant:1}(10-20)% increased Damage {variant:2}(10-30)% increased Damage -{variant:1}{tags:jewellery_attribute}+(10-20) to all Attributes -{variant:2}{tags:jewellery_attribute}+(10-30) to all Attributes {variant:1}(10-20)% increased Rarity of Items found {variant:2}(10-30)% increased Rarity of Items found -{variant:1}{tags:jewellery_resistance}+(10-20)% to all Elemental Resistances -{variant:2}{tags:jewellery_resistance}+(10-30)% to all Elemental Resistances +{variant:1}{tags:resistance}+(10-20)% to all Elemental Resistances +{variant:2}{tags:resistance}+(10-30)% to all Elemental Resistances ]],[[ Lori's Lantern Prismatic Ring @@ -749,12 +748,12 @@ Variant: Pre 1.0.0 Variant: Current Requires Level 30 Implicits: 2 -{variant:1}{tags:jewellery_resistance}+(8-12)% to all Elemental Resistances -{variant:2}{tags:jewellery_resistance}+(8-10)% to all Elemental Resistances -{tags:jewellery_resistance}+10% to all Elemental Resistances +{variant:1}{tags:resistance}+(8-12)% to all Elemental Resistances +{variant:2}{tags:resistance}+(8-10)% to all Elemental Resistances +{tags:resistance}+10% to all Elemental Resistances {tags:speed}(6-8)% increased Movement Speed when on Low Life 31% increased Light Radius -{tags:chaos,jewellery_resistance}+(20-25)% Chaos Resistance when on Low Life +{tags:resistance}+(20-25)% to Chaos Resistance when on Low Life Damage of Enemies Hitting you is Unlucky while you are on Low Life ]],[[ Malachai's Artifice @@ -765,13 +764,13 @@ Sockets: W Requires Level 5 Implicits: 1 Has 1 Socket -{variant:1}{tags:jewellery_resistance}-25% to all Elemental Resistances -{variant:2}{tags:jewellery_resistance}-20% to all Elemental Resistances -{tags:jewellery_resistance}+(75-100)% to Fire Resistance when Socketed with a Red Gem -{tags:jewellery_resistance}+(75-100)% to Cold Resistance when Socketed with a Green Gem -{tags:jewellery_resistance}+(75-100)% to Lightning Resistance when Socketed with a Blue Gem All Sockets are White -Socketed Gems have Elemental Equilibrium +{tags:elemental_damage}Socketed Gems have Elemental Equilibrium +{variant:1}{tags:resistance}-25% to all Elemental Resistances +{variant:2}{tags:resistance}-20% to all Elemental Resistances +{tags:resistance}+(75-100)% to Fire Resistance when Socketed with a Red Gem +{tags:resistance}+(75-100)% to Cold Resistance when Socketed with a Green Gem +{tags:resistance}+(75-100)% to Lightning Resistance when Socketed with a Blue Gem ]],[[ Replica Malachai's Artifice Unset Ring @@ -780,12 +779,12 @@ Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level 5 Implicits: 1 Has 1 Socket -Socketed Gems have Secrets of Suffering -{tags:jewellery_resistance}-20% to all Elemental Resistances -{tags:jewellery_resistance}+(75-100)% to Fire Resistance when Socketed with a Red Gem -{tags:jewellery_resistance}+(75-100)% to Cold Resistance when Socketed with a Green Gem -{tags:jewellery_resistance}+(75-100)% to Lightning Resistance when Socketed with a Blue Gem All Sockets are White +{tags:critical}Socketed Gems have Secrets of Suffering +{tags:resistance}-20% to all Elemental Resistances +{tags:resistance}+(75-100)% to Fire Resistance when Socketed with a Red Gem +{tags:resistance}+(75-100)% to Cold Resistance when Socketed with a Green Gem +{tags:resistance}+(75-100)% to Lightning Resistance when Socketed with a Blue Gem ]],[[ Mark of Submission Unset Ring @@ -800,13 +799,13 @@ Elder Item Source: Drops from unique{The Elder} (Uber) Requires Level 80 Implicits: 1 -{tags:attack,physical_damage}Adds (3-4) to (10-14) Physical Damage to Attacks -{tags:jewellery_elemental,attack}Adds (26-32) to (42-48) Cold Damage to Attacks -{tags:jewellery_defense}(6-10)% increased maximum Energy Shield -{tags:life}(6-10)% increased maximum Life +{tags:physical_damage,attack}Adds (3-4) to (10-14) Physical Damage to Attacks +20% chance to Trigger Level 20 Tentacle Whip on Kill +{tags:elemental_damage,attack}Adds (26-32) to (42-48) Cold Damage to Attacks +{tags:defences}(6-10)% increased maximum Energy Shield +{tags:resource}(6-10)% increased maximum Life {tags:attack}(60-80)% increased Attack Damage if your opposite Ring is a Shaper Item Cannot be Stunned by Attacks if your opposite Ring is an Elder Item -20% chance to Trigger Level 20 Tentacle Whip on Kill ]],[[ Mark of the Shaper Opal Ring @@ -814,13 +813,13 @@ Shaper Item Source: Drops from unique{The Elder} (Uber) Requires Level 80 Implicits: 1 -{tags:jewellery_elemental}(15-25)% increased Elemental Damage -{tags:jewellery_elemental,caster}Adds (13-18) to (50-56) Lightning Damage to Spells -{tags:jewellery_defense}(6-10)% increased maximum Energy Shield -{tags:life}(6-10)% increased maximum Life +{tags:elemental_damage}(15-25)% increased Elemental Damage +20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill +{tags:elemental_damage,caster}Adds (13-18) to (50-56) Lightning Damage to Spells +{tags:defences}(6-10)% increased maximum Energy Shield +{tags:resource}(6-10)% increased maximum Life {tags:caster}(60-80)% increased Spell Damage if your opposite Ring is an Elder Item Cannot be Stunned by Spells if your opposite Ring is a Shaper Item -20% chance to Trigger Level 20 Summon Volatile Anomaly on Kill ]],[[ Ming's Heart Amethyst Ring @@ -830,18 +829,18 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 69 Implicits: 1 -{tags:jewellery_resistance}+(17-23)% to Chaos Resistance -{variant:1}{tags:life}15% reduced maximum Life -{variant:2}{tags:life}10% reduced maximum Life -{variant:3}{tags:life}(5-10)% reduced maximum Life -{variant:4}{tags:life}25% reduced maximum Life -{variant:1}{tags:jewellery_defense}15% reduced maximum Energy Shield -{variant:2}{tags:jewellery_defense}10% reduced maximum Energy Shield -{variant:3}{tags:jewellery_defense}(5-10)% reduced maximum Energy Shield -{variant:4}{tags:jewellery_defense}25% reduced maximum Energy Shield -{tags:jewellery_resistance}+(40-50)% to Chaos Resistance -{variant:1,2,3}{tags:chaos_damage,physical_damage}Gain 20% of Physical Damage as Extra Chaos Damage -{variant:4}{tags:chaos_damage,physical_damage}Gain (40-60)% of Physical Damage as Extra Chaos Damage +{tags:resistance}+(17-23)% to Chaos Resistance +{variant:1}{tags:defences}15% increased maximum Energy Shield +{variant:2}{tags:defences}10% increased maximum Energy Shield +{variant:3}{tags:defences}(5-10)% increased maximum Energy Shield +{variant:4}{tags:defences}25% reduced maximum Energy Shield +{variant:1}{tags:resource}15% increased maximum Life +{variant:2}{tags:resource}10% increased maximum Life +{variant:3}{tags:resource}(5-10)% increased maximum Life +{variant:4}{tags:resource}25% reduced maximum Life +{tags:resistance}+(40-50)% to Chaos Resistance +{variant:1,2,3}{tags:physical_damage,chaos_damage}Gain 20% of Physical Damage as Extra Chaos Damage +{variant:4}{tags:physical_damage,chaos_damage}Gain (40-60)% of Physical Damage as Extra Chaos Damage ]],[[ Mokou's Embrace Ruby Ring @@ -849,9 +848,9 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 16 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{variant:1}{tags:jewellery_elemental}(15-25)% increased Fire Damage -{tags:jewellery_resistance}+(25-40)% to Cold Resistance +{tags:resistance}+(20-30)% to Fire Resistance +{variant:1}{tags:elemental_damage}(15-25)% increased Fire Damage +{tags:resistance}+(25-40)% to Cold Resistance {variant:1}(5-10)% chance to Ignite {variant:1}{tags:attack,speed}20% increased Attack Speed while Ignited {variant:2}{tags:attack,speed}(25-40)% increased Attack Speed while Ignited @@ -869,16 +868,16 @@ Variant: Current Requires Level 45 Implicits: 1 Has 1 Socket +{variant:2,3}{tags:attack,caster,speed}Socketed Golem Skills have 20% increased Attack and Cast Speed +{variant:2,3}Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill {variant:1}+2 to Level of Socketed Golem Gems {variant:2,3}+3 to Level of Socketed Golem Gems {variant:1}Socketed Gems are Supported by Level 13 Faster Attacks -{variant:2,3}Socketed Golem Skills have 20% increased Attack and Cast Speed -{tags:attack,physical_damage}Adds (5-10) to (11-15) Physical Damage to Attacks +{variant:1}Socketed Gems are Supported by Level 16 Minion Speed +{tags:physical_damage,attack}Adds (5-10) to (11-15) Physical Damage to Attacks {tags:attack,speed}(5-10)% increased Attack Speed {variant:1}{tags:speed}(1-2)% increased Movement Speed {variant:2}{tags:speed}(3-5)% increased Movement Speed -{variant:1}Socketed Gems are Supported by Level 16 Increased Minion Speed -{variant:2,3}Gain Onslaught for 10 seconds when you Cast Socketed Golem Skill ]],[[ Ngamahu's Sign Ruby Ring @@ -888,16 +887,16 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 29 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{tags:jewellery_attribute}+(15-25) to Strength -{variant:1}{tags:jewellery_elemental,attack}Adds (8-10) to (12-14) Fire Damage to Attacks -{variant:2}{tags:jewellery_elemental,attack,caster}Adds (8-10) to (12-14) Fire Damage to Spells and Attacks -{variant:3}{tags:jewellery_elemental,attack,caster}Adds (20-25) to (30-35) Fire Damage to Spells and Attacks -{variant:1}{tags:life}Gain (4-5) Life for each Ignited Enemy hit with Attacks +{tags:resistance}+(20-30)% to Fire Resistance +{tags:attribute}+(15-25) to Strength +{variant:1}{tags:elemental_damage,attack,caster}Adds (8-10) to (12-14) Fire Damage to Spells and Attacks +{variant:2}{tags:elemental_damage,attack,caster}Adds (8-10) to (12-14) Fire Damage to Spells and Attacks +{variant:3}{tags:elemental_damage,attack,caster}Adds (20-25) to (30-35) Fire Damage to Spells and Attacks +{variant:1}{tags:resource}Gain (4-5) Life for each Ignited Enemy hit with Attacks 15% increased Ignite Duration on Enemies {variant:1}5% chance to Ignite {variant:2,3}10% chance to Ignite -{variant:2,3}{tags:life}Recover (20-30) Life when you Ignite an Enemy +{variant:2,3}{tags:resource}Recover (20-30) Life when you Ignite an Enemy ]],[[ Original Sin Amethyst Ring @@ -905,9 +904,9 @@ League: Sanctum Source: Drops from unique{Lycia, Herald of the Scourge} in normal{The Beyond} while unique{The Original Scripture} is active in the normal{Relic Altar} LevelReq: 52 Implicits: 1 -{tags:jewellery_resistance}+(17-23)% to Chaos Resistance -All Elemental Damage Converted to Chaos Damage -Nearby Enemies' Chaos Resistance is 0 +{tags:resistance}+(17-23)% to Chaos Resistance +{tags:elemental_damage,chaos_damage}All Elemental Damage Converted to Chaos Damage +{tags:chaos_damage,resistance}Nearby Enemies' Chaos Resistance is 0 ]],[[ The Pariah Unset Ring @@ -919,35 +918,35 @@ Implicits: 1 Has 1 Socket +2 to Level of Socketed Gems {tags:attack,caster,speed}(5-10)% increased Attack and Cast Speed -{tags:life}+100 to Maximum Life per Red Socket -{tags:jewellery_defense}+100 to Maximum Energy Shield per Blue Socket -{tags:mana}+100 to Maximum Mana per Green Socket +{tags:resource}+100 to Maximum Life per Red Socket +{tags:resource}+100 to Maximum Mana per Green Socket +{tags:defences}+100 to Maximum Energy Shield per Blue Socket {variant:1}15% increased Item Quantity per White Socket -{variant:2}60% increased Rarity of Items found per White Socket +{variant:2}60% increased Item Rarity per White Socket ]],[[ Perandus Signet Paua Ring Variant: Pre 2.0.0 Variant: Current Implicits: 1 -{tags:mana}+(20-30) to maximum Mana -{tags:mana}+(25-30) to maximum Mana -{tags:mana}(45-65)% increased Mana Regeneration Rate +{tags:resource}+(20-30) to maximum Mana +{tags:resource}+(25-30) to maximum Mana +{tags:resource}(45-65)% increased Mana Regeneration Rate {variant:1}3% increased Experience gain {variant:2}2% increased Experience gain -{variant:1}{tags:jewellery_attribute}3% increased Intelligence for each Unique Item Equipped -{variant:2}{tags:jewellery_attribute}2% increased Intelligence for each Unique Item Equipped -3% additional chance for Slain monsters to drop Scrolls of Wisdom +{variant:1}{tags:attribute}3% increased Intelligence for each Unique Item Equipped +{variant:2}{tags:attribute}2% increased Intelligence for each Unique Item Equipped +3% chance for Slain monsters to drop an additional Scroll of Wisdom ]],[[ Polaric Devastation Opal Ring Source: Drops from unique{The Black Star} Requires Level 80 Implicits: 1 -{tags:jewellery_elemental}(15-25)% increased Elemental Damage +{tags:elemental_damage}(15-25)% increased Elemental Damage {tags:critical}(15-25)% increased Global Critical Strike Chance -{tags:jewellery_resistance}+(20-40)% to Fire Resistance -{tags:jewellery_resistance}+(20-40)% to Cold Resistance +{tags:resistance}+(20-40)% to Fire Resistance +{tags:resistance}+(20-40)% to Cold Resistance (10-20)% increased Duration of Ailments on Enemies Left Ring slot: Cover Enemies in Ash for 5 seconds when you Ignite them Right Ring slot: Cover Enemies in Frost for 5 seconds when you Freeze them @@ -956,11 +955,11 @@ Praxis Paua Ring Requires Level 22 Implicits: 1 -{tags:mana}+(20-30) to maximum Mana -{tags:mana}+(30-60) to maximum Mana -{tags:mana}Regenerate (3-6) Mana per second -{tags:mana}-(4-8) to Total Mana Cost of Skills -{tags:mana}8% of Damage taken Recouped as Mana +{tags:resource}+(20-30) to maximum Mana +{tags:resource}+(30-60) to maximum Mana +{tags:resource}Regenerate (3-6) Mana per second +{tags:resource}-(8-4) to Total Mana Cost of Skills +{tags:resource}8% of Damage taken Recouped as Mana ]],[[ Profane Proxy Unset Ring @@ -969,8 +968,8 @@ LevelReq: 52 Implicits: 1 Has 1 Socket {tags:caster}+3 to Level of Socketed Curse Gems -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance +{tags:resistance}+(20-30)% to Cold Resistance +{tags:resistance}+(20-30)% to Lightning Resistance {tags:caster}Left Ring Slot: Your Chilling Skitterbot's Aura applies Socketed Hex Curse instead {tags:caster}Right Ring Slot: Your Shocking Skitterbot's Aura applies Socketed Hex Curse instead ]],[[ @@ -980,10 +979,10 @@ League: Delve Source: Drops from unique{Kurgal, the Blackblooded} Requires Level 49 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance -{tags:jewellery_attribute}+20 to Intelligence -{tags:jewellery_defense}5% increased maximum Energy Shield -{tags:life}5% increased maximum Life +{tags:resistance}+(20-30)% to Lightning Resistance +{tags:attribute}+20 to Intelligence +{tags:defences}5% increased maximum Energy Shield +{tags:resource}5% increased maximum Life ]],[[ Putembo's Mountain Topaz Ring @@ -991,10 +990,10 @@ League: Delve Source: Drops from unique{Aul, the Crystal King} Requires Level 49 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance -{tags:jewellery_attribute}+20 to Intelligence -{tags:jewellery_defense}5% increased maximum Energy Shield -{tags:life}5% increased maximum Life +{tags:resistance}+(20-30)% to Lightning Resistance +{tags:attribute}+20 to Intelligence +{tags:defences}5% increased maximum Energy Shield +{tags:resource}5% increased maximum Life ]],[[ Putembo's Valley Topaz Ring @@ -1002,10 +1001,10 @@ League: Delve Source: Drops from unique{Ahuatotli, the Blind} Requires Level 49 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance -{tags:jewellery_attribute}+20 to Intelligence -{tags:jewellery_defense}5% increased maximum Energy Shield -{tags:life}5% increased maximum Life +{tags:resistance}+(20-30)% to Lightning Resistance +{tags:attribute}+20 to Intelligence +{tags:defences}5% increased maximum Energy Shield +{tags:resource}5% increased maximum Life ]],[[ Pyre Sapphire Ring @@ -1014,14 +1013,14 @@ Variant: Pre 3.0.0 Variant: Current Requires Level 11 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{tags:jewellery_resistance}+(25-35)% to Fire Resistance -{variant:1,2}{tags:jewellery_elemental}(25-35)% increased Burning Damage -{variant:3}{tags:jewellery_elemental}(60-80)% increased Burning Damage -{variant:1}{tags:jewellery_elemental}100% of Cold Damage Converted to Fire Damage -{variant:2,3}{tags:jewellery_elemental}40% of Cold Damage Converted to Fire Damage +{tags:resistance}+(20-30)% to Cold Resistance +{tags:resistance}+(25-35)% to Fire Resistance +{variant:1,2}{tags:elemental_damage}(25-35)% increased Burning Damage +{variant:3}{tags:elemental_damage}(60-80)% increased Burning Damage +{variant:1}{tags:elemental_damage}100% of Cold Damage Converted to Fire Damage +{variant:2,3}{tags:elemental_damage}40% of Cold Damage Converted to Fire Damage 10% increased Light Radius -Ignited Enemies you hit are destroyed on Kill +Ignited Enemies Killed by your Hits are destroyed ]],[[ The Queller of Minds Nameless Ring @@ -1029,11 +1028,11 @@ League: Settlers of Kalguur Requires Level 50 Implicits: 2 50% increased Elemental Ailment Duration on you -{tags:caster}50% reduced Effect of Curses on you -Grants Level 20 Pacify +50% reduced Effect of Curses on you +Grants level 20 Pacify {tags:caster,speed}(6-12)% increased Cast Speed -{tags:mana}+(30-60) to maximum Mana -{tags:jewellery_resistance}+(7-19)% to Chaos Resistance +{tags:resource}+(30-60) to maximum Mana +{tags:resistance}+(7-19)% to Chaos Resistance ]],[[ Redblade Band Unset Ring @@ -1043,16 +1042,16 @@ Variant: Current Requires Level 45 Implicits: 1 Has 1 Socket +{variant:2}Socketed Golem Skills have 25% chance to Taunt on Hit +{variant:2}{tags:resource}Socketed Golem Skills have Minions Regenerate 5% of Life per second {variant:1}+2 to Level of Socketed Golem Gems {variant:2}+3 to Level of Socketed Golem Gems -{tags:jewellery_attribute}+(30-40) to Strength -{variant:2}{tags:life}+(30-40) to maximum Life -{variant:1}{tags:jewellery_elemental,attack}Adds (8-12) to (20-30) Fire Damage to Attacks -{tags:jewellery_elemental}(20-30)% increased Fire Damage -{variant:1}Socketed Gems are Supported by Level 12 Lesser Multiple Projectiles -{variant:2}Socketed Golem Skills have 25% chance to Taunt on Hit -{variant:1}Socketed Gems are Supported by Level 17 Increased Minion Damage -{variant:2}Socketed Golem Skills have Minions Regenerate 5% Life per second +{variant:1}Socketed Gems are Supported by Level 12 Multiple Projectiles +{variant:1}Socketed Gems are Supported by Level 17 Minion Damage +{tags:attribute}+(30-40) to Strength +{tags:elemental_damage}(20-30)% increased Fire Damage +{variant:1}{tags:elemental_damage,attack}Adds (8-12) to (20-30) Fire Damage to Attacks +{variant:2}{tags:resource}+(30-40) to maximum Life ]],[[ Rigwald's Crest Two-Stone Ring @@ -1062,11 +1061,11 @@ Variant: Current Source: Drops from unique{Rigwald, the Wolven King} (Level 60+) Requires Level 49 Implicits: 1 -{tags:jewellery_resistance}+(12-16)% to Fire and Cold Resistances +{tags:resistance}+(12-16)% to Fire and Cold Resistances Trigger Level 10 Summon Spectral Wolf on Kill -{variant:1}{tags:jewellery_elemental}(20-30)% increased Fire Damage -{variant:1}{tags:jewellery_elemental}(20-30)% increased Cold Damage -{tags:mana}(20-30)% increased Mana Regeneration Rate +{variant:1}{tags:elemental_damage}(20-30)% increased Fire Damage +{variant:1}{tags:elemental_damage}(20-30)% increased Cold Damage +{tags:resource}(20-30)% increased Mana Regeneration Rate ]],[[ Romira's Banquet Diamond Ring @@ -1080,9 +1079,9 @@ Implicits: 1 {variant:1}{tags:critical}+(10-20)% to Global Critical Strike Multiplier {variant:2}{tags:critical}+(10-15)% to Global Critical Strike Multiplier {variant:3}{tags:critical}+(15-25)% to Global Critical Strike Multiplier -{tags:mana}+(40-60) to maximum Mana -{tags:attack,mana}0.4% of Physical Attack Damage Leeched as Mana -Gain a Power Charge on non-Critical Strike +{tags:resource}+(40-60) to maximum Mana +{tags:resource,attack}0.4% of Physical Attack Damage Leeched as Mana +Gain a Power Charge on Non-Critical Strike Lose all Power Charges on Critical Strike ]],[[ Rotblood Promise @@ -1094,11 +1093,11 @@ Variant: Current Requires Level 56 Implicits: 1 Has 1 Socket -Socketed Gems are Supported by Level 20 Blasphemy +{tags:caster}Socketed Gems are Supported by Level 20 Blasphemy Curse Auras from Socketed Skills also affect you -{variant:1}Socketed Curse Gems have 50% increased Reservation Efficiency -{variant:2}Socketed Curse Gems have 80% increased Reservation Efficiency -{tags:jewellery_attribute}+(20-30) to Intelligence +{variant:1}{tags:caster}Socketed Curse Gems have 50% increased Reservation Efficiency +{variant:2}{tags:caster}Socketed Curse Gems have 80% increased Reservation Efficiency +{tags:attribute}+(20-30) to Intelligence {tags:caster}20% reduced Effect of Curses on you (15-25)% increased Damage with Hits and Ailments against Cursed Enemies ]],[[ @@ -1107,12 +1106,12 @@ Nameless Ring League: Settlers of Kalguur Requires Level 50 Implicits: 2 -50% increased Elemental Ailment Duration on You -{tags:caster}50% reduced Effect of Curses on You -Grants Level 20 Affliction +50% increased Elemental Ailment Duration on you +{tags:caster}50% reduced Effect of Curses on you +Grants level 20 Affliction {tags:caster,speed}(6-12)% increased Cast Speed -{tags:jewellery_defense}+(30-60) to maximum Energy Shield -{tags:jewellery_resistance}+(7-19)% to Chaos Resistance +{tags:defences}+(30-60) to maximum Energy Shield +{tags:resistance}+(7-19)% to Chaos Resistance ]],[[ Shavronne's Revelation Moonstone Ring @@ -1123,19 +1122,19 @@ Variant: Pre 3.19.0 Variant: Current Requires Level 30 Implicits: 1 -{tags:jewellery_defense}+(15-25) to maximum Energy Shield -{tags:jewellery_attribute}+(60-75) to Intelligence -Right ring slot: You cannot Regenerate Mana -{variant:1}{tags:jewellery_defense}Right ring slot: Regenerate 4% of Energy Shield per second -{variant:2,3}{tags:jewellery_defense}Right ring slot: Regenerate 3% of Energy Shield per second -{variant:4}{tags:jewellery_defense}Right ring slot: Regenerate 6% of Energy Shield per second -{variant:3}{tags:mana}Right ring slot: +100 to maximum Mana -{variant:4}{tags:mana}Right ring slot: +250 to maximum Mana -Left ring slot: You cannot Recharge or Regenerate Energy Shield -{variant:3,4}{tags:mana}Left ring slot: Regenerate 40 Mana per Second -{variant:3}{tags:jewellery_defense}Left ring slot: +100 to maximum Energy Shield -{variant:4}{tags:jewellery_defense}Left ring slot: +250 to maximum Energy Shield -{variant:1,2}{tags:mana}Left ring slot: 100% increased Mana Regeneration Rate +{tags:defences}+(15-25) to maximum Energy Shield +{tags:attribute}+(60-75) to Intelligence +{tags:resource}Right ring slot: You cannot Regenerate Mana +{variant:1}{tags:defences}Right ring slot: Regenerate 4% of Energy Shield per second +{variant:2,3}{tags:defences}Right ring slot: Regenerate 3% of Energy Shield per second +{variant:4}{tags:defences}Right ring slot: Regenerate 6% of Energy Shield per second +{variant:3}{tags:resource}Right ring slot: +100 to maximum Mana +{variant:4}{tags:resource}Right ring slot: +250 to maximum Mana +{tags:defences}Left ring slot: You cannot Recharge or Regenerate Energy Shield +{variant:3,4}{tags:resource}Left ring slot: Regenerate 40 Mana per Second +{variant:1,2}{tags:resource}Left ring slot: 100% increased Mana Regeneration Rate +{variant:3}{tags:defences}Left ring slot: +100 to maximum Energy Shield +{variant:4}{tags:defences}Left ring slot: +250 to maximum Energy Shield ]],[[ Sibyl's Lament Coral Ring @@ -1146,19 +1145,27 @@ Variant: Pre 3.28.0 Variant: Current Requires Level 45 Implicits: 1 -{tags:life}+(20-30) to maximum Life -{tags:jewellery_elemental,attack}(20-30)% increased Elemental Damage with Attack Skills -{tags:jewellery_elemental,attack}Adds (8-15) to (20-28) Fire Damage to Attacks -{variant:1}(20-40)% reduced Rarity of Items found +{tags:resource}+(20-30) to maximum Life +{tags:elemental_damage,attack}Adds (8-15) to (20-28) Fire Damage to Attacks +{variant:1}(20-40)% increased Rarity of Items found {variant:2,3,4,5}(10-20)% reduced Rarity of Items found -{variant:1,2}Left ring slot: 30% reduced Reflected Elemental Damage taken -{variant:3}Left ring slot: 40% reduced Reflected Elemental Damage taken -{variant:4}Left ring slot: 80% reduced Reflected Elemental Damage taken -{variant:5}Left ring slot: 100% of Elemental Hit Damage from you and your Minions cannot be Reflected -{variant:1,2}{tags:physical}Right ring slot: 30% reduced Reflected Physical Damage taken -{variant:3}{tags:physical}Right ring slot: 40% reduced Reflected Physical Damage taken -{variant:4}{tags:physical}Right ring slot: 80% reduced Reflected Physical Damage taken -{variant:5}Right ring slot: 100% of Physical Hit Damage from you and your Minions cannot be Reflected +{tags:elemental_damage,attack}(20-30)% increased Elemental Damage with Attack Skills +{variant:1,2}Left ring slot: 30% of Elemental Hit Damage from you and +{variant:1,2}your Minions cannot be Reflected +{variant:3}Left ring slot: 40% of Elemental Hit Damage from you and +{variant:3}your Minions cannot be Reflected +{variant:4}Left ring slot: 80% of Elemental Hit Damage from you and +{variant:4}your Minions cannot be Reflected +{variant:5}Left ring slot: 100% of Elemental Hit Damage from you and +{variant:5}your Minions cannot be Reflected +{variant:1,2}Right ring slot: 30% of Physical Hit Damage from you and +{variant:1,2}your Minions cannot be Reflected +{variant:3}Right ring slot: 40% of Physical Hit Damage from you and +{variant:3}your Minions cannot be Reflected +{variant:4}Right ring slot: 80% of Physical Hit Damage from you and +{variant:4}your Minions cannot be Reflected +{variant:5}Right ring slot: 100% of Physical Hit Damage from you and +{variant:5}your Minions cannot be Reflected ]],[[ Snakepit Sapphire Ring @@ -1166,11 +1173,11 @@ Variant: Pre 3.5.0 Variant: Current Requires Level 68 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{variant:1}{tags:jewellery_elemental}(20-40)% increased Cold Damage +{tags:resistance}+(20-30)% to Cold Resistance {variant:2}{tags:caster}(20-40)% increased Spell Damage +{variant:1}{tags:elemental_damage}(20-40)% increased Cold Damage {tags:caster,speed}(5-10)% increased Cast Speed -{variant:1}Spells fire an additional Projectile +{variant:1}{tags:caster}Spells fire an additional Projectile {variant:2}Left ring slot: Projectiles from Spells cannot Chain {variant:2}Left ring slot: Projectiles from Spells Fork {variant:2}Right ring slot: Projectiles from Spells Chain +1 times @@ -1181,8 +1188,8 @@ Soulbound Paua Ring LevelReq: 44 Implicits: 1 -{tags:mana}+(20-30) to maximum Mana -{tags:jewellery_attribute}+(10-20) to all Attributes +{tags:resource}+(20-30) to maximum Mana +{tags:attribute}+(10-20) to all Attributes Link Skills have (10-15)% increased Cast Speed Link Skills have (10-15)% increased Skill Effect Duration Linked Targets Cannot Die for 2 seconds after you Die @@ -1194,12 +1201,12 @@ Variant: Pre 3.17.0 Variant: Current Requires Level 80 Implicits: 1 -{tags:jewellery_elemental}(15-25)% increased Elemental Damage -{tags:mana}(40-45)% increased Mana Regeneration Rate -{tags:jewellery_resistance}+(20-30)% to Fire and Lightning Resistances -{variant:1}{tags:jewellery_elemental}(4-6)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120% -{variant:2}{tags:jewellery_elemental}(8-12)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120% -{tags:jewellery_elemental}Adds (1-3) to (62-70) Lightning Damage to Hits against Ignited Enemies +{tags:elemental_damage}(15-25)% increased Elemental Damage +{tags:resource}(40-45)% increased Mana Regeneration Rate +{tags:resistance}+(20-30)% to Fire and Lightning Resistances +{variant:1}{tags:elemental_damage}(4-6)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120% +{variant:2}{tags:elemental_damage}(8-12)% increased Burning Damage for each time you have Shocked a Non-Shocked Enemy Recently, up to a maximum of 120% +{tags:elemental_damage}Adds (1-3) to (62-70) Lightning Damage to Hits against Ignited Enemies Your Lightning Damage can Ignite ]],[[ Storm Secret @@ -1207,13 +1214,13 @@ Topaz Ring League: Harvest Requires Level 56 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance -{tags:jewellery_attribute}+(20-30) to Intelligence -{tags:jewellery_elemental}(20-30)% increased Lightning Damage +{tags:resistance}+(20-30)% to Lightning Resistance +{tags:attribute}+(20-30) to Intelligence +{tags:elemental_damage}(20-30)% increased Lightning Damage (10-15)% chance to Shock Herald of Thunder also creates a storm when you Shock an Enemy -Storms Hit Enemies with (30-50)% increased Frequency -{tags:jewellery_elemental}Take 250 Lightning Damage when Herald of Thunder Hits an Enemy +Herald of Thunder's Storms Hit Enemies with (30-50)% increased Frequency +{tags:elemental_damage}Take 250 Lightning Damage when Herald of Thunder Hits an Enemy ]],[[ The Taming Prismatic Ring @@ -1224,18 +1231,21 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 30 Implicits: 1 -{tags:jewellery_resistance}+(8-10)% to all Elemental Resistances -{variant:1}{tags:jewellery_elemental,attack}15% increased Elemental Damage with Attack Skills -{variant:2}{tags:jewellery_elemental,attack}30% increased Elemental Damage with Attack Skills -{variant:1}{tags:jewellery_resistance}+(10-15)% to all Elemental Resistances -{variant:2,3}{tags:jewellery_resistance}+(20-30)% to all Elemental Resistances -{variant:1}{tags:jewellery_elemental}15% increased Elemental Damage -{variant:2}{tags:jewellery_elemental}30% increased Elemental Damage +{tags:resistance}+(8-10)% to all Elemental Resistances +{variant:1}{tags:resistance}+(10-15)% to all Elemental Resistances +{variant:2,3}{tags:resistance}+(20-30)% to all Elemental Resistances +{variant:1}{tags:elemental_damage}15% increased Elemental Damage +{variant:2}{tags:elemental_damage}30% increased Elemental Damage {variant:1}5% chance to Freeze, Shock and Ignite {variant:2,3}10% chance to Freeze, Shock and Ignite -{variant:1}10% increased Damage per Freeze, Shock and Ignite on Enemy -{variant:2}20% increased Damage with Hits and Ailments per Freeze, Shock and Ignite on Enemy -{variant:3}{tags:jewellery_elemental}(30-40)% increased Elemental Damage with Hits and Ailments for each type of Elemental Ailment on Enemy +{variant:1}{tags:elemental_damage}10% increased Elemental Damage with Hits and Ailments for +{variant:1}{tags:elemental_damage}each type of Elemental Ailment on Enemy +{variant:2}{tags:elemental_damage}20% increased Elemental Damage with Hits and Ailments for +{variant:2}{tags:elemental_damage}each type of Elemental Ailment on Enemy +{variant:3}{tags:elemental_damage}(30-40)% increased Elemental Damage with Hits and Ailments for +{variant:3}{tags:elemental_damage}each type of Elemental Ailment on Enemy +{variant:1}{tags:elemental_damage,attack}15% increased Elemental Damage with Attack Skills +{variant:2}{tags:elemental_damage,attack}30% increased Elemental Damage with Attack Skills ]],[[ Tasalio's Sign Sapphire Ring @@ -1244,16 +1254,16 @@ Variant: Pre 2.6.0 Variant: Current Requires Level 20 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{variant:1}{tags:attack,jewellery_elemental,physical_damage}Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies -{variant:2}{tags:jewellery_elemental}Adds 40 to 60 Cold Damage against Chilled Enemies -{variant:1}{tags:jewellery_elemental,attack}Adds (5-6) to (7-9) Cold Damage to Attacks -{variant:2}{tags:jewellery_elemental,attack,caster}Adds (7-10) to (15-20) Cold Damage to Spells and Attacks -{tags:jewellery_defense}+(200-300) to Evasion Rating -{variant:1}20% reduced Chill Duration on You +{tags:resistance}+(20-30)% to Cold Resistance +{variant:1}{tags:physical_damage,attack}Adds 10 to 15 Physical Damage to Attacks against Frozen Enemies +{variant:1}{tags:elemental_damage,attack}Adds (5-6) to (7-9) Cold Damage to Attacks +{variant:2}{tags:elemental_damage,attack,caster}Adds (7-10) to (15-20) Cold Damage to Spells and Attacks +{tags:defences}+(200-300) to Evasion Rating {variant:2}50% chance to Avoid being Chilled +{variant:1}20% reduced Chill Duration on you {variant:1}5% chance to Freeze {variant:2}10% chance to Freeze +{variant:2}{tags:elemental_damage}Adds 40 to 60 Cold Damage against Chilled Enemies ]],[[ Replica Tasalio's Sign Sapphire Ring @@ -1261,20 +1271,21 @@ League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Requires Level 20 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{tags:jewellery_elemental,attack,caster}Adds (15-20) to (25-35) Cold Damage to Spells and Attacks -{tags:jewellery_defense}+(200-300) to Evasion Rating +{tags:resistance}+(20-30)% to Cold Resistance +{tags:elemental_damage,attack,caster}Adds (15-20) to (25-35) Cold Damage to Spells and Attacks +{tags:defences}+(200-300) to Evasion Rating Your Cold Damage cannot Freeze Immune to Chill -{tags:jewellery_elemental}Adds 60 to 80 Cold Damage against Chilled Enemies +{tags:elemental_damage}Adds 60 to 80 Cold Damage against Chilled Enemies ]],[[ Tawhanuku's Timing Moonstone Ring -{tags:jewellery_defense}+(15-25) to maximum Energy Shield +{tags:caster}50% chance to Trigger Socketed Spells when you Spend at least 100 Mana on an +{tags:caster}Upfront Cost to Use or Trigger a Skill, with a 0.1 second Cooldown {tags:caster}(30-40)% increased Spell Damage -{tags:mana}+(60-80) to maximum Mana +{tags:defences}+(15-25) to maximum Energy Shield +{tags:resource}+(60-80) to maximum Mana (5-10)% chance to Freeze, Shock and Ignite -{tags:jewellery_defense,caster}Spells cause you to gain Energy Shield equal to their Upfront Cost every fifth time you Pay it ]],[[ Thief's Torment Prismatic Ring @@ -1286,19 +1297,19 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 30 Implicits: 2 -{variant:1}{tags:jewellery_resistance}+(8-12) to all Elemental Resistances -{variant:2,3,4,5,6}{tags:jewellery_resistance}+(8-10)% to all Elemental Resistances +{variant:1}{tags:resistance}+(8-12)% to all Elemental Resistances +{variant:2,3,4,5,6}{tags:resistance}+(8-10)% to all Elemental Resistances {variant:1,2}(15-25)% increased Quantity of Items found {variant:3,4,5}(10-16)% increased Quantity of Items found {variant:6}(20-30)% increased Rarity of Items found Can't use other Rings -{variant:1,2,3}{tags:jewellery_resistance}+(8-12)% to all Elemental Resistances -{variant:4}{tags:jewellery_resistance}+(16-24)% to all Elemental Resistances -{variant:5,6}{tags:jewellery_resistance}+(25-40)% to all Elemental Resistances -{variant:1,2,3}{tags:attack,life}Gain (20-30) Life per Enemy Hit with Attacks -{variant:4,5,6}{tags:attack,life}Gain (40-60) Life per Enemy Hit with Attacks -{variant:1,2,3}{tags:attack,mana}Gain 15 Mana per Enemy Hit with Attacks -{variant:4,5,6}{tags:attack,mana}Gain 30 Mana per Enemy Hit with Attacks +{variant:1,2,3}{tags:resistance}+(8-12)% to all Elemental Resistances +{variant:4}{tags:resistance}+(16-24)% to all Elemental Resistances +{variant:5,6}{tags:resistance}+(25-40)% to all Elemental Resistances +{variant:1,2,3}{tags:resource,attack}Gain (20-30) Life per Enemy Hit with Attacks +{variant:4,5,6}{tags:resource,attack}Gain (40-60) Life per Enemy Hit with Attacks +{variant:1,2,3}{tags:resource,attack}Gain 15 Mana per Enemy Hit with Attacks +{variant:4,5,6}{tags:resource,attack}Gain 30 Mana per Enemy Hit with Attacks {tags:caster}50% reduced Effect of Curses on you ]],[[ Timeclasp @@ -1309,23 +1320,23 @@ Variant: Pre 3.19.0 Variant: Current LevelReq: 25 Implicits: 1 -{tags:jewellery_defense}+(15-25) to maximum Energy Shield +{tags:defences}+(15-25) to maximum Energy Shield {tags:attack,speed}(10-15)% increased Attack Speed {variant:1}{tags:caster,speed}(5-8)% increased Cast Speed {variant:2,3}{tags:caster,speed}(5-10)% increased Cast Speed {variant:4}{tags:caster,speed}(10-15)% increased Cast Speed -{variant:1}{tags:jewellery_defense}+(10-25) to maximum Energy Shield -{variant:2}{tags:jewellery_defense}+(15-25) to maximum Energy Shield -{variant:3}{tags:jewellery_defense}+(40-45) to maximum Energy Shield -{variant:1}{tags:mana}15% reduced Mana Regeneration Rate -{variant:2,3}{tags:mana}15% increased Mana Regeneration Rate -{variant:1}{tags:caster}Temporal Chains has 30% reduced Effect on You -{variant:2}{tags:caster}Temporal Chains has 50% reduced Effect on You -{variant:3}(-10-10)% increased Skill Effect Duration -{variant:4}(-20-20)% increased Skill Effect Duration -{variant:4}{tags:resource,life}(6-12)% of Damage Taken Recouped as Life -{variant:4}{tags:resource,mana}(6-12)% of Damage Taken Recouped as Mana -{variant:3,4}Unaffected by Temporal Chains +{variant:1}{tags:defences}+(10-25) to maximum Energy Shield +{variant:2}{tags:defences}+(15-25) to maximum Energy Shield +{variant:3}{tags:defences}+(40-45) to maximum Energy Shield +{variant:1}{tags:resource}15% increased Mana Regeneration Rate +{variant:2,3}{tags:resource}15% increased Mana Regeneration Rate +{variant:1}{tags:caster}Temporal Chains has 30% reduced Effect on you +{variant:2}{tags:caster}Temporal Chains has 50% reduced Effect on you +{variant:3}(-10-10)% reduced Skill Effect Duration +{variant:4}(-20-20)% reduced Skill Effect Duration +{variant:4}{tags:resource}(6-12)% of Damage taken Recouped as Mana +{variant:4}{tags:resource}(6-12)% of Damage taken Recouped as Life +{variant:3,4}{tags:caster}Unaffected by Temporal Chains ]],[[ Timetwist Moonstone Ring @@ -1334,15 +1345,15 @@ Variant: Pre 2.6.0 Variant: Current LevelReq: 25 Implicits: 1 -{tags:jewellery_defense}+(15-25) to maximum Energy Shield +{tags:defences}+(15-25) to maximum Energy Shield {tags:attack,speed}(10-15)% increased Attack Speed {variant:1}{tags:caster,speed}(5-8)% increased Cast Speed -{variant:2}{tags:caster,speed}(5-10)% increased Cast Speed -{tags:jewellery_defense}+(30-50) to maximum Energy Shield -{variant:1}{tags:mana}15% reduced Mana Regeneration Rate -{variant:2}{tags:mana}15% increased Mana Regeneration Rate -(-10-10)% increased Skill Effect Duration -Unaffected by Temporal Chains +{variant:2}{tags:caster,speed}(10-15)% increased Cast Speed +{tags:defences}+(40-45) to maximum Energy Shield +{variant:1}{tags:resource}15% increased Mana Regeneration Rate +{variant:2}{tags:resource}15% increased Mana Regeneration Rate +(-10-10)% reduced Skill Effect Duration +{tags:caster}Unaffected by Temporal Chains ]],[[ Triumvirate Authority Unset Ring @@ -1353,7 +1364,7 @@ Has Alt Variant Two: true Has Alt Variant Three: true Variant: More Damage Variant: Less souls -Variant: Additional Use (Pre 3.15.0) +Variant: Regain Souls Variant: Ignore resistances Variant: Ignore Phys. Dmg. Reduction Variant: Grant Elusive @@ -1364,24 +1375,22 @@ Variant: Skill Effect Duration Variant: Soul Gain Prevention Duration Variant: Lucky Damage Variant: Aura Effect -Variant: Regain Souls Implicits: 1 Has 1 Socket +2 to Level of Socketed Vaal Gems +{variant:8}Socketed Vaal Skills have 60% increased Area of Effect +{variant:13}Socketed Vaal Skills have 50% increased Aura Effect {variant:1}Socketed Vaal Skills deal 150% more Damage -{variant:2}Socketed Vaal Skills require 30% less Souls per Use -{variant:3}Socketed Vaal Skills can store Souls for 1 additional Use -{variant:4}Hits from Socketed Vaal Skills ignore Enemy Monster Resistances -{variant:5}Hits from Socketed Vaal Skills ignore Enemy Monster Physical Damage Reduction +{variant:10}Socketed Vaal Skills have 80% increased Skill Effect Duration {variant:6}Socketed Vaal Skills grant Elusive when Used -{variant:7}You have Tailwind if you've used a Socketed Vaal Skill Recently -{variant:8}Socketed Vaal Skills have 60% increased Area of Effect +{variant:12}Damage with Hits from Socketed Vaal Skills is Lucky +{variant:5}Hits from Socketed Vaal Skills ignore Enemy Physical Damage Reduction +{variant:4}Hits from Socketed Vaal Skills ignore Enemy Monster Resistances {variant:9}{tags:speed}Socketed Vaal Skills have 80% increased Projectile Speed -{variant:10}Socketed Vaal Skills have 80% increased Skill Effect Duration {variant:11}Socketed Vaal Skills have 30% reduced Soul Gain Prevention Duration -{variant:12}Damage with Hits from Socketed Vaal Skills is Lucky -{variant:13}Socketed Vaal Skills have 50% increased Aura Effect -{variant:14}Socketed Vaal Skills have 20% chance to regain consumed Souls when used +{variant:2}Socketed Vaal Skills require 30% less Souls per Use +{variant:3}Socketed Vaal Skills have 20% chance to regain consumed Souls when used +{variant:7}You have Tailwind if you've used a Socketed Vaal Skill Recently ]],[[ Uzaza's Meadow Sapphire Ring @@ -1389,10 +1398,10 @@ League: Delve Source: Drops from unique{Ahuatotli, the Blind} Requires Level 49 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{tags:jewellery_attribute}+20 to Dexterity -{tags:jewellery_defense}5% increased maximum Energy Shield -{tags:life}5% increased maximum Life +{tags:resistance}+(20-30)% to Cold Resistance +{tags:attribute}+20 to Dexterity +{tags:defences}5% increased maximum Energy Shield +{tags:resource}5% increased maximum Life ]],[[ Uzaza's Mountain Sapphire Ring @@ -1400,10 +1409,10 @@ League: Delve Source: Drops from unique{Kurgal, the Blackblooded} Requires Level 49 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{tags:jewellery_attribute}+20 to Dexterity -{tags:jewellery_defense}5% increased maximum Energy Shield -{tags:life}5% increased maximum Life +{tags:resistance}+(20-30)% to Cold Resistance +{tags:attribute}+20 to Dexterity +{tags:defences}5% increased maximum Energy Shield +{tags:resource}5% increased maximum Life ]],[[ Uzaza's Valley Sapphire Ring @@ -1411,10 +1420,10 @@ League: Delve Source: Drops from unique{Aul, the Crystal King} Requires Level 49 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{tags:jewellery_attribute}+20 to Dexterity -{tags:jewellery_defense}5% increased maximum Energy Shield -{tags:life}5% increased maximum Life +{tags:resistance}+(20-30)% to Cold Resistance +{tags:attribute}+20 to Dexterity +{tags:defences}5% increased maximum Energy Shield +{tags:resource}5% increased maximum Life ]],[[ Valako's Sign Topaz Ring @@ -1424,13 +1433,13 @@ Variant: Pre 3.11.0 Variant: Current Requires Level 38 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance +{tags:resistance}+(20-30)% to Lightning Resistance {variant:1}15% increased Damage with Hits against Shocked Enemies {variant:2,3}40% increased Damage with Hits against Shocked Enemies -{tags:jewellery_elemental}20% increased Lightning Damage -{tags:mana}+(20-40) to maximum Mana -{variant:1,2}{tags:life}0.2% of Damage Leeched as Life against Shocked Enemies -{variant:3}{tags:life}1% of Damage Leeched as Life against Shocked Enemies +{tags:elemental_damage}20% increased Lightning Damage +{tags:resource}+(20-40) to maximum Mana +{variant:1,2}{tags:resource}2% of Damage Leeched as Life against Shocked Enemies +{variant:3}{tags:resource}1% of Damage Leeched as Life against Shocked Enemies {variant:1}5% chance to Shock {variant:2}10% chance to Shock {variant:3}25% chance to Shock @@ -1441,23 +1450,23 @@ Variant: Pre 3.11.0 Variant: Current Requires Level 38 Implicits: 1 -{tags:jewellery_defense}+(15-25) to maximum Energy Shield -{variant:1}{tags:jewellery_defense}+(10-20) to maximum Energy Shield -{variant:2}{tags:jewellery_defense}+(30-40) to maximum Energy Shield -{variant:1}{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{variant:2}{tags:jewellery_resistance}+(30-40)% to Fire Resistance -{tags:jewellery_resistance}-40% to Cold Resistance +{tags:defences}+(15-25) to maximum Energy Shield +{variant:1}{tags:defences}+(10-20) to maximum Energy Shield +{variant:2}{tags:defences}+(30-40) to maximum Energy Shield +{variant:1}{tags:resistance}+(20-30)% to Fire Resistance +{variant:2}{tags:resistance}+(30-40)% to Fire Resistance +{tags:resistance}-40% to Cold Resistance Stun Threshold is based on Energy Shield instead of Life ]],[[ Venopuncture Iron Ring Requires Level: 49 -Implicits: 1 League: Blight -{tags:attack,physical_damage}Adds 1 to 4 Physical Damage to Attacks -{tags:jewellery_attribute}+(20-30) to Strength -{tags:attack,physical}25% chance to cause Bleeding on Hit -{tags:attack,physical_damage}(40-60)% increased Damage with Bleeding +Implicits: 1 +{tags:physical_damage,attack}Adds 1 to 4 Physical Damage to Attacks +{tags:attribute}+(20-30) to Strength +{tags:attack}25% chance to cause Bleeding on Hit +{tags:physical_damage,attack}(40-60)% increased Damage with Bleeding You are Chilled while you are Bleeding Non-Chilled Enemies you inflict Bleeding on are Chilled Bleeding Enemies you Kill with Hits Shatter @@ -1469,13 +1478,13 @@ Variant: Current Requires Level 65 Implicits: 1 (6-15)% increased Rarity of Items found -{tags:life}+(0-60) to maximum Life -{variant:1}(-10-10)% increased Quantity of Items found -(-40-40)% increased Rarity of Items found -{tags:jewellery_resistance}+(-25-50)% to Fire Resistance -{tags:jewellery_resistance}+(-25-50)% to Cold Resistance -{tags:jewellery_resistance}+(-25-50)% to Lightning Resistance -{variant:2}{tags:mana}(-15-15)% increased Mana Reservation Efficiency of Skills +{tags:resource}+(0-60) to maximum Life +{variant:1}(-10-10)% reduced Quantity of Items found +(-40-40)% reduced Rarity of Items found +{tags:resistance}+(-25-50)% to Fire Resistance +{tags:resistance}+(-25-50)% to Cold Resistance +{tags:resistance}+(-25-50)% to Lightning Resistance +{variant:2}{tags:resource}(-15-15)% reduced Mana Reservation Efficiency of Skills ]],[[ Vivinsect Unset Ring @@ -1506,34 +1515,34 @@ Requires Level 45 Implicits: 1 Has 1 Socket +5 to Level of Socketed Aura Gems -{variant:1,2,3,4,5,6,7,8,9,10,11}Socketed Gems have 20% reduced Mana Reservation Efficiency {variant:13,14,15,16,17,18,19,20,21}Socketed Gems have 20% reduced Reservation Efficiency -{tags:jewellery_attribute}+(15-25) to all Attributes -{tags:life}Regenerate 15 Life per second for each Uncorrupted Item Equipped -{tags:mana}-2 to Total Mana Cost of Skills for each Corrupted Item Equipped -{variant:1}{crafted}{tags:chaos,jewellery_resistance}+(8-15)% to Fire and Chaos Resistances +{tags:attribute}+(15-25) to all Attributes +{variant:4}{tags:attribute}+(6-17) to Strength and Dexterity +{variant:15}{tags:attribute}+(31-35) to Strength and Dexterity +{variant:6}{tags:attribute}+(6-17) to Strength and Intelligence +{variant:17}{tags:attribute}+(31-35) to Strength and Intelligence +{variant:5}{tags:attribute}+(6-17) to Dexterity and Intelligence +{variant:16}{tags:attribute}+(31-35) to Dexterity and Intelligence +{variant:19}(3-4)% chance to gain a Frenzy Charge on Kill +{variant:20}(3-4)% chance to gain a Power Charge on Kill +{tags:resource}Regenerate 15 Life per second for each Uncorrupted Item Equipped +{tags:resource}-2 to Total Mana Cost of Skills for each Corrupted Item Equipped +{variant:1}{tags:resistance}+(8-15)% to Fire and Chaos Resistances +{variant:12}{tags:resistance}+(16-20)% to Fire and Chaos Resistances +{variant:18}Focus has (5-8)% increased Cooldown Recovery Rate +{variant:1,2,3,4,5,6,7,8,9,10,11}Socketed Gems have 20% reduced Mana Reservation Efficiency {variant:2}{crafted}{tags:chaos,jewellery_resistance}+(8-15)% to Cold and Chaos Resistances {variant:3}{crafted}{tags:chaos,jewellery_resistance}+(8-15)% to Lightning and Chaos Resistances -{variant:4}{crafted}{tags:jewellery_attribute}+(6-17) to Strength and Dexterity -{variant:5}{crafted}{tags:jewellery_attribute}+(6-17) to Dexterity and Intelligence -{variant:6}{crafted}{tags:jewellery_attribute}+(6-17) to Strength and Intelligence {variant:7}{crafted}(11-30)% increased Effect of non-Damaging Ailments on Enemies {variant:8}{crafted}Shock nearby Enemies for (2-4) Seconds when you Focus {variant:9}{crafted}+1 to Minimum Frenzy Charges {variant:10}{crafted}+1 to Minimum Power Charges {variant:11}{crafted}+1 to Minimum Endurance Charges -{variant:12}{crafted}{tags:chaos,jewellery_resistance}+(16-20)% to Fire and Chaos Resistances {variant:13}{crafted}{tags:chaos,jewellery_resistance}+(16-20)% to Cold and Chaos Resistances {variant:14}{crafted}{tags:chaos,jewellery_resistance}+(16-20)% to Lightning and Chaos Resistances -{variant:15}{crafted}{tags:jewellery_attribute}+(31-35) to Strength and Dexterity -{variant:16}{crafted}{tags:jewellery_attribute}+(31-35) to Dexterity and Intelligence -{variant:17}{crafted}{tags:jewellery_attribute}+(31-35) to Strength and Intelligence {variant:18}{crafted}Shock nearby Enemies for 4 Seconds when you Focus -{variant:18}{crafted}Focus has (5-8)% increased Cooldown Recovery Rate {variant:19}{crafted}+1 to Minimum Frenzy Charges -{variant:19}{crafted}(3-4)% chance to gain a Frenzy Charge on Kill {variant:20}{crafted}+1 to Minimum Power Charges -{variant:20}{crafted}(3-4)% chance to gain a Power Charge on Kill {variant:21}{crafted}+1 to Minimum Endurance Charges {variant:21}{crafted}(3-4)% chance to gain a Endurance Charge on Kill ]],[[ @@ -1558,8 +1567,8 @@ The Warden's Brand Iron Ring Requires Level 30 Implicits: 1 -{tags:attack,physical_damage}Adds 1 to 4 Physical Damage to Attacks -{tags:attack,physical_damage}Adds (5-15) to (25-50) Physical Damage to Attacks +{tags:physical_damage,attack}Adds 1 to 4 Physical Damage to Attacks +{tags:physical_damage,attack}Adds (5-15) to (25-50) Physical Damage to Attacks {tags:attack,speed}30% reduced Attack Speed 15% chance to gain a Frenzy Charge when you Stun an Enemy ]],[[ @@ -1567,12 +1576,12 @@ Warrior's Legacy Ruby Ring Requires Level 16 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Fire Resistance -{tags:jewellery_attribute}+(30-50) to Strength +{tags:resistance}+(20-30)% to Fire Resistance +{tags:attribute}+(30-50) to Strength {tags:attack}(20-25)% increased Melee Damage 30% chance to Avoid being Stunned {tags:attack,speed}20% less Attack Speed -Strike Skills also target the previous location they were Used +{tags:attack}Strike Skills also target the previous location they were used ]],[[ Call of the Void Sapphire Ring @@ -1581,8 +1590,8 @@ Elder Item Source: Drops from unique{The Elder} (Uber Uber) Requires Level 16 Implicits: 1 -{tags:jewellery_resistance}+(20-30)% to Cold Resistance -{tags:jewellery_resistance}+(20-30)% to Cold Resistance +{tags:resistance}+(20-30)% to Cold Resistance +{tags:resistance}+(20-30)% to Cold Resistance All Damage with Hits can Chill All Damage Taken from Hits can Chill you Enemies Chilled by your Hits can be Shattered as though Frozen @@ -1591,7 +1600,7 @@ Enemies Chilled by your Hits lessen their Damage dealt by half of Chill Effect Kalandra's Touch Ring League: Kalandra -Reflects your opposite Ring +Reflects opposite Ring Mirrored ]],[[ Betrayal's Sting @@ -1599,10 +1608,10 @@ Steel Ring Source: Drops from unique{Incarnation of Neglect} in normal{Moment of Loneliness} Requires Level 80 Implicits: 1 -{tags:attack}Adds (3-4) to (10-14) Physical Damage to Attacks -{tags:jewellery_attribute}+(20-35) to Dexterity -{tags:jewellery_resistance}(-30--20)% to all Elemental Resistances -{tags:jewellery_resistance}+(20-30)% to Chaos Resistance +{tags:physical_damage,attack}Adds (3-4) to (10-14) Physical Damage to Attacks +{tags:attribute}+(20-35) to Dexterity +{tags:resistance}-(30-20)% to all Elemental Resistances +{tags:resistance}+(20-30)% to Chaos Resistance {tags:speed}5% increased Movement Speed {tags:chaos_damage}(25-40)% chance to inflict an additional Poison on the same Target when you inflict Poison ]],[[ @@ -1611,7 +1620,7 @@ Amethyst Ring Source: Drops from unique{Incarnation of Fear} in normal{Moment of Trauma} Requires Level 32 Implicits: 1 -{tags:jewellery_resistance}+(17-23)% to Chaos Resistance +{tags:resistance}+(17-23)% to Chaos Resistance {tags:caster}(25-50)% reduced Area of Effect of Hex Skills Targets are Unaffected by your Hexes When 90% of your Hex's Duration Expires on an Enemy, Eat 1 Soul per Enemy Power @@ -1621,23 +1630,23 @@ Vermillion Ring Source: Drops from unique{Incarnation of Fear} in normal{Moment of Trauma} Requires Level 80 Implicits: 1 -{tags:life}(5-7)% increased Maximum Life -{tags:jewellery_attribute}+(30-50) to Strength -{tags:jewellery_elemental}(10-20)% increased Fire Damage -{tags:jewellery_resistance}(65-75)% reduced Fire Resistance -{tags:jewellery_elemental}Take (300-500) Fire Damage when you use a Skill +{tags:resource}(5-7)% increased maximum Life +{tags:attribute}+(30-50) to Strength +{tags:elemental_damage}(10-20)% increased Fire Damage +{tags:resistance}(65-75)% reduced Fire Resistance +{tags:elemental_damage}Take (300-500) Fire Damage when you Use a Skill Damage Penetrates Fire Resistance equal to your Overcapped Fire Resistance, up to a maximum of 200% ]],[[ Prospero's Protection Iron Ring Requires Level 32 Implicits: 1 -{tags:attack}Adds 1 to 4 Physical Damage to Attacks -(4-6)% chance to Block Attack Damage -{tags:jewellery_attribute}+(15-35) to Strength -{tags:life}+(45-60) to Maximum Life -{tags:jewellery_defense}Armour from equipped shield is doubled -{tags:jewellery_defense}Gain no armour from equipped body armour +{tags:physical_damage,attack}Adds 1 to 4 Physical Damage to Attacks +(4-6)% Chance to Block Attack Damage +{tags:attribute}+(15-35) to Strength +{tags:resource}+(45-60) to maximum Life +{tags:defences}Armour from Equipped Shield is doubled +{tags:defences}Gain no Armour from Equipped Body Armour ]],[[ Squirming Terror Unset Ring @@ -1646,8 +1655,8 @@ Implicits: 1 Has 1 Socket An Enemy Writhing Worm spawns every 2 seconds {tags:caster}20% chance to Trigger Socketed Spell on Kill, with a 0.5 second Cooldown -{tags:life}Lose (10-20) Life per Enemy Killed -{tags:mana}Gain (5-10) Mana per Enemy Killed +{tags:resource}Lose (10-20) Life per Enemy Killed +{tags:resource}Gain (5-10) Mana per Enemy Killed ]], [[ Lost Unity @@ -1655,10 +1664,10 @@ Formless Ring Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} Requires Level 42 Implicits: 1 -{tags:jewellery_defense}(5-7)% increased Global Defences +{tags:defences}(5-7)% increased Global Defences Grants Level 30 Herald of the Hive Skill -{tags:jewellery_resistance}+(10–20)% to all Elemental Resistances -{tags:jewellery_resistance}+(23–37)% to Chaos Resistance +{tags:resistance}+(10-20)% to all Elemental Resistances +{tags:resistance}+(23-37)% to Chaos Resistance ]], [[ The Sundered Will @@ -1666,14 +1675,15 @@ Fugitive Ring Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} Requires Level 42 Implicits: 2 -Cannot roll Modifiers of Non-Chaos Damage Types -{tags:jewellery_resistance}+2% to maximum Chaos Resistance -{tags:jewellery_attribute}+(7-13) to all Attributes +{tags:resistance}+2% to maximum Chaos Resistance +{tags:resistance}Cannot roll Modifiers of Non-Chaos Damage Types +{tags:attribute}+(7-13) to all Attributes {tags:chaos_damage}Adds (7-11) to (17-23) Chaos Damage -{tags:jewellery_resistance}+(13-29)% to Chaos Resistance +{tags:resistance}+(13-29)% to Chaos Resistance (20-30)% increased Area of Effect of Aura Skills (20-35)% reduced Reservation Efficiency of Skills -Increases and Reductions to Chaos Damage also apply to Effect of Auras from Chaos Skills at (10–15)% of their value, up to a maximum of 150% +Increases and Reductions to Chaos Damage also apply to Effect of +Auras from Chaos Skills at (10-15)% of their value, up to a maximum of 150% ]], [[ The Unseen Hue @@ -1685,28 +1695,29 @@ Variant: Brittle Variant: Sap Implicits: 1 {tags:elemental_damage}(15-25)% increased Elemental Damage -{tags:jewellery_resistance}+(5-30)% to Fire Resistance -{tags:jewellery_resistance}+(5-30)% to Cold Resistance -{tags:jewellery_resistance}+(5-30)% to Lightning Resistance -{tags:caster,attack,speed}(6-12)% increased Attack and Cast Speed +{tags:resistance}+(5-30)% to Fire Resistance +{tags:resistance}+(5-30)% to Cold Resistance +{tags:resistance}+(5-30)% to Lightning Resistance +{tags:attack,caster,speed}(6-12)% increased Attack and Cast Speed (10-20)% increased Effect of Non-Damaging Ailments -{variant:1}Hits with Prismatic Skills always Scorch {variant:2}Hits with Prismatic Skills always inflict Brittle {variant:3}Hits with Prismatic Skills always Sap +{variant:1}Hits with Prismatic Skills always Scorch ]],[[ The Will of Esh Synaptic Ring Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} Requires Level 42 Implicits: 2 -Cannot roll Modifiers of Non-Lightning Damage Types -{tags:jewellery_resistance}+2% to maximum Lightning Resistance -{tags:jewellery_attribute}+(15-25) to Intelligence +{tags:resistance}+2% to maximum Lightning Resistance +{tags:resistance}Cannot roll Modifiers of Non-Lightning Damage Types +{tags:attribute}+(15-25) to Intelligence {tags:elemental_damage}Adds (1-2) to (43-56) Lightning Damage -{tags:jewellery_resistance}+(20-30)% to Lightning Resistance +{tags:resistance}+(20-30)% to Lightning Resistance (20-30)% increased Area of Effect of Aura Skills (20-35)% reduced Reservation Efficiency of Skills -Increases and Reductions to Lightning Damage also apply to Effect of Auras from Lightning Skills at (10-15)% of their value, up to a maximum of 150% +Increases and Reductions to Lightning Damage also apply to Effect of +Auras from Lightning Skills at (10-15)% of their value, up to a maximum of 150% ]], [[ The Will of Tul @@ -1714,14 +1725,15 @@ Cryonic Ring Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} Requires Level 42 Implicits: 2 -Cannot roll Modifiers of Non-Cold Damage Types -{tags:jewellery_resistance}+2% to maximum Cold Resistance -{tags:jewellery_attribute}+(15-25) to Dexterity +{tags:resistance}+2% to maximum Cold Resistance +{tags:resistance}Cannot roll Modifiers of Non-Cold Damage Types +{tags:attribute}+(15-25) to Dexterity {tags:elemental_damage}Adds (8-12) to (18-26) Cold Damage -{tags:jewellery_resistance}+(20-30)% to Cold Resistance +{tags:resistance}+(20-30)% to Cold Resistance (20-30)% increased Area of Effect of Aura Skills (20-35)% reduced Reservation Efficiency of Skills -Increases and Reductions to Cold Damage also apply to Effect of Auras from Cold Skills at (10-15)% of their value, up to a maximum of 150% +Increases and Reductions to Cold Damage also apply to Effect of +Auras from Cold Skills at (10-15)% of their value, up to a maximum of 150% ]], [[ The Will of Uul-Netol @@ -1729,14 +1741,15 @@ Organic Ring Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} Requires Level 42 Implicits: 2 -Cannot roll Modifiers of Non-Physical Damage Types 3% additional Physical Damage Reduction -{tags:jewellery_attribute}+(15-25) to Strength -Adds (8-12) to (14-20) Physical Damage -{tags:jewellery_defense}(20-30)% increased Armour +Cannot roll Modifiers of Non-Physical Damage Types +{tags:attribute}+(15-25) to Strength +{tags:physical_damage}Adds (8-12) to (14-20) Physical Damage +{tags:defences}(20-30)% increased Armour (20-30)% increased Area of Effect of Aura Skills (20-35)% reduced Reservation Efficiency of Skills -Increases and Reductions to Physical Damage also apply to Effect of Auras from Physical Skills at (10-15)% of their value, up to a maximum of 150% +Increases and Reductions to Physical Damage also apply to Effect of +Auras from Physical Skills at (10-15)% of their value, up to a maximum of 150% ]], [[ The Will of Xoph @@ -1744,14 +1757,15 @@ Enthalpic Ring Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} Requires Level 42 Implicits: 2 -Cannot roll Modifiers of Non-Fire Damage Types -{tags:jewellery_resistance}+2% to maximum Fire Resistance -{tags:jewellery_attribute}+(15-25) to Strength +{tags:resistance}+2% to maximum Fire Resistance +{tags:resistance}Cannot roll Modifiers of Non-Fire Damage Types +{tags:attribute}+(15-25) to Strength {tags:elemental_damage}Adds (10-14) to (26-34) Fire Damage -{tags:jewellery_resistance}+(20-30)% to Fire Resistance +{tags:resistance}+(20-30)% to Fire Resistance (20-30)% increased Area of Effect of Aura Skills (20-35)% reduced Reservation Efficiency of Skills -Increases and Reductions to Fire Damage also apply to Effect of Auras from Fire Skills at (10-15)% of their value, up to a maximum of 150% +Increases and Reductions to Fire Damage also apply to Effect of +Auras from Fire Skills at (10-15)% of their value, up to a maximum of 150% ]], [[ Woespike @@ -1761,13 +1775,13 @@ Variant: Pre 3.28.0 Variant: Current Requires Level 80 Implicits: 1 -{tags:attack,physical_damage}Adds (3-4) to (10-14) Physical Damage to Attacks -{tags:jewellery_attribute}+(25-40) to Strength and Dexterity -{tags:attack,physical_damage}Adds (8-12) to (18-24) Physical Damage to Attacks +{tags:physical_damage,attack}Adds (3-4) to (10-14) Physical Damage to Attacks +{tags:attribute}+(25-40) to Strength and Dexterity +{tags:physical_damage,attack}Adds (8-12) to (18-24) Physical Damage to Attacks {tags:attack}(10-20)% chance to Impale Enemies on Hit with Attacks -{variant:1}(40-25)% reduced Impale Duration -{variant:2}(50-40)% less Impale Duration {variant:1}{tags:attack}(45-60)% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit {variant:2}{tags:attack}(20-30)% chance on Melee Hit for the Strongest Impale on target to last for 1 additional Hit +{variant:2}(40-50)% less Impale Duration +{variant:1}(40-25)% reduced Impale Duration ]], } diff --git a/src/Data/Uniques/shield.lua b/src/Data/Uniques/shield.lua index 917e45897c..0614359539 100644 --- a/src/Data/Uniques/shield.lua +++ b/src/Data/Uniques/shield.lua @@ -96,8 +96,9 @@ Variant: Current Implicits: 1 {variant:3,4}+(20-30) to maximum Life {variant:1,2,3}(200-250)% increased Armour +{variant:1,2,3}20% increased Stun and Block Recovery {variant:4}(180-220)% increased Armour -20% increased Stun and Block Recovery +{variant:4}20% increased Stun and Block Recovery {variant:1}+(80-100) to maximum Life {variant:2,3,4}+(160-180) to maximum Life 5% reduced Movement Speed @@ -107,16 +108,14 @@ Implicits: 1 Lycosidae Rawhide Tower Shield Variant: Pre 3.0.0 -Variant: Pre 3.25.0 Variant: Current Implicits: 1 -{variant:2,3}+(10-20) to maximum Life +{variant:2}+(10-20) to maximum Life +(120-160) to Armour +(30-40) to maximum Life Your hits can't be Evaded +(3-5)% Chance to Block -{variant:1,2}Adds 250 to 300 Cold Damage to Counterattacks -{variant:3}Adds 250 to 300 Cold Damage to Retaliation Skills +Adds 250 to 300 Cold Damage to Retaliation Skills ]],[[ Magna Eclipsis Pinnacle Tower Shield @@ -141,8 +140,8 @@ Variant: Pre 3.11.0 Variant: Current Implicits: 1 {variant:3,4}+(20-30) to maximum Life -{variant:2,3,4}(80-100)% increased Armour {variant:1}+1 to Level of Socketed Warcry Gems +{variant:2,3,4}(80-100)% increased Armour {variant:1}+(20-60) to maximum Life {variant:2,3,4}+(50-60) to maximum Life 20% increased Taunt Duration @@ -176,9 +175,9 @@ Implicits: 1 (60-80)% increased Armour +(30-50) to maximum Life {variant:1}-10 Physical Damage taken from Projectile Attacks -{variant:2,3}-(50-80) Physical Damage taken from Projectile Attacks +{variant:2,3}-(80-50) Physical Damage taken from Projectile Attacks 200% increased Armour against Projectiles -+25% Chance to Block Projectile Attack Damage ++25% chance to Block Projectile Attack Damage ]],[[ Trolltimber Spire Cedar Tower Shield @@ -232,7 +231,7 @@ Implicits: 1 +(40-60) to Intelligence {variant:1,2}(80-100)% increased Evasion Rating {variant:3}(180-200)% increased Evasion Rating -+(20-30) to all Elemental Resistances ++(20-30)% to all Elemental Resistances {variant:2,3}50% reduced Duration of Curses on you Hex Reflection {variant:3}+10% Chance to Block Attack Damage while not Cursed @@ -269,9 +268,9 @@ Implicits: 1 {variant:1,2,3,4}+5% Chance to Block {variant:1,2,3,4}10% Chance to Cause Monster to Flee on Block {variant:5}100% Chance to Cause Monster to Flee on Block +{variant:4}1% of Damage Leeched as Life against Cursed Enemies {variant:5}+20% Chance to Block Attack Damage from Cursed Enemies {variant:1,2,3}Curse Skills have 100% increased Skill Effect Duration -{variant:4}1% of Damage Leeched as Life against Cursed Enemies {variant:5}Inflict Decay on Enemies you Curse with Hex Skills, dealing 700 Chaos Damage per Second for 8 Seconds ]],[[ Thirst for Horrors @@ -372,8 +371,6 @@ You have Phasing if you have Blocked Recently ]],[[ Replica Mistwall Lacquered Buckler -Variant: Pre 3.23.0 -Variant: Current League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Implicits: 1 @@ -381,10 +378,9 @@ Implicits: 1 (120-150)% increased Evasion Rating 10% increased Movement Speed +(10-20)% to Fire and Cold Resistances -{variant:1}+75% Chance to Block Spell Damage if you have not Blocked Recently -{variant:2}You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently +(8-15)% chance to Avoid Physical Damage from Hits while Phasing You have Phasing if you have Blocked Recently +You are at Maximum Chance to Block Spell Damage if you have not Blocked Recently ]],[[ Mutewind Pennant Enameled Buckler @@ -392,20 +388,18 @@ League: Warbands Variant: Pre 2.6.0 Variant: Pre 3.0.0 Variant: Pre 3.11.0 -Variant: Pre 3.24.0 Variant: Current Implicits: 1 {variant:3,4,5}6% increased Movement Speed {variant:1}+1 to Level of Socketed Warcry Gems {variant:1}(20-30)% increased Chaos Damage -{variant:2,3,4,5}(80-100)% Increased Evasion Rating +{variant:2,3,4}(80-100)% increased Evasion Rating +(20-40)% to Cold Resistance 10% increased Area of Effect {variant:1}You gain Onslaught for 2 seconds on Killing Taunted Enemies -{variant:2,3,4,5}Gain Onslaught for 4 seconds when you Warcry -{variant:2,3,4,5}25% increased Warcry Buff Effect -{variant:4}Warlord's Call -{variant:5}Call to Arms +{variant:2,3,4}Gain Onslaught for 4 seconds when you Warcry +{variant:2,3,4}25% increased Warcry Buff Effect +{variant:4}Call to Arms ]],[[ Thousand Teeth Temu Vaal Buckler @@ -422,9 +416,8 @@ Implicits: 1 {variant:4}+10% Chance to Block {variant:1,2,3}Reflects 1 to 1000 Physical Damage to Attackers on Block {variant:4}Reflects 1000 to 10000 Physical Damage to Attackers on Block -{variant:2,3}10% of Damage you Reflect to Enemies when Hit is gained as Life -]], -[[ +{variant:2,3}10% of Damage you Reflect to Enemies when Hit is leeched as Life +]],[[ Cowards' Wail Ezomyte Tower Shield Requires Level 64, 159 Str @@ -501,11 +494,11 @@ Variant: Spectre Flat Crit (Current) Variant: Spectre Increased AoE (Current) {variant:1,2,3,4,5,6,7,8,9,10,11,12}(30-50)% increased Spell Damage (180-220)% increased Energy Shield -Spectres have (50-100)% increased maximum Life +Raised Spectres have (50-100)% increased maximum Life Gain Arcane Surge when you deal a Critical Strike Your Raised Spectres also gain Arcane Surge when you do -{variant:1,2,3,4,5,6,7,8,9,10,11,12}(40-50)% increased Critical Strike Chance for Spells per Raised Spectre -{variant:13,14,15,16,17,18,19,20,21,22,23}(50-100)% increased Critical Strike Chance for Spells per Raised Spectre +{variant:1,2,3,4,5,6,7,8,9,10,11,12}(40-50)% increased Spell Critical Strike Chance per Raised Spectre +{variant:13,14,15,16,17,18,19,20,21,22,23}(50-100)% increased Spell Critical Strike Chance per Raised Spectre {variant:1}{crafted}Adds (3-12) to (5-16) Fire Damage {variant:1}{crafted}Adds (3-12) to (5-16) Cold Damage {variant:2}{crafted}Adds (3-12) to (5-16) Cold Damage @@ -550,8 +543,8 @@ Implicits: 2 +(70-90) to maximum Energy Shield (20-40)% increased Mana Regeneration Rate {variant:1}Gain 3 Mana per Taunted Enemy Hit -{variant:2,3}Gain 2 Power Charges on Using a Warcry {variant:4}Warcries grant Arcane Surge to you and Allies, with 10% increased effect per 5 power, up to 50% +{variant:2,3}Gain 2 Power Charges when you Warcry ]],[[ Esh's Mirror {variant:1}Thorium Spirit Shield @@ -587,7 +580,7 @@ Implicits: 2 {variant:3}+(70-100) to maximum Life +(30-40)% to Lightning Resistance +(17-29)% to Chaos Resistance -Chaos Damage does not bypass Energy Shield while not on Low Life +Chaos Damage taken does not bypass Energy Shield while not on Low Life Reflect Shocks applied to you to all Nearby Enemies ]],[[ The Eternal Apple @@ -632,7 +625,7 @@ Implicits: 2 {variant:1}10% increased Spell Damage {variant:2,3}(10-15)% increased Spell Damage {variant:3}Adds (35-39) to (54-60) Cold Damage to Spells -(60-80)% increased Critical Strike Chance for Spells +(60-80)% increased Spell Critical Strike Chance {variant:1,2}(100-140)% increased Energy Shield {variant:3}(475-600)% increased Energy Shield {variant:1,2}+(3-5)% Chance to Block @@ -669,13 +662,13 @@ Implicits: 2 {variant:2,3}(5-10)% increased Spell Damage {variant:1,2}(80-120)% increased Energy Shield {variant:1,2}+(50-70) to maximum Mana +{variant:3}+(1-100) to maximum Mana {variant:1,2}(30-50)% increased Mana Regeneration Rate +{variant:3}(1-100)% increased Mana Regeneration Rate +{variant:3}Gain (1-100) Mana per Enemy Killed +{variant:3}(1-100)% increased Mana Recovery from Flasks {variant:1,2}When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage {variant:1,2}equal to 25% of Sacrificed Mana for 4 seconds -{variant:3}+(1-100) to maximum Mana -{variant:3}(1-100)% Increased Mana Regeneration Rate -{variant:3}Gain (1-100) Mana per Enemy Killed -{variant:3}(1-100)% Increased Mana Recovery from Flasks {variant:3}When you Cast a Spell, Sacrifice all Mana to gain Added Maximum Lightning Damage {variant:3}equal to 50% of Sacrificed Mana for 4 seconds ]],[[ @@ -728,8 +721,8 @@ Implicits: 0 {variant:1,2}+25% to Lightning Resistance {variant:3}Sacrifice 4% of your Life when you Use or Trigger a Spell Skill {variant:4}Sacrifice 10% of your Life when you Use or Trigger a Spell Skill -{variant:3}2% increased Critical Strike Chance for Spells per 100 Player Maximum Life -{variant:4}5% increased Critical Strike Chance for Spells per 100 Player Maximum Life +{variant:3}2% increased Spell Critical Strike Chance per 100 Player Maximum Life +{variant:4}5% increased Spell Critical Strike Chance per 100 Player Maximum Life {variant:3}2% increased Spell Damage per 100 Player Maximum Life {variant:4}5% increased Spell Damage per 100 Player Maximum Life ]],[[ @@ -766,7 +759,7 @@ League: Affliction Requires Level 39, 52 Str, 52 Dex Implicits: 1 180% increased Block Recovery -(100–150)% increased Armour and Evasion +(100-150)% increased Armour and Evasion +15% Chance to Block You take 100% of Elemental Damage from Blocked Hits 40% of Elemental Damage from Hits taken as Physical Damage @@ -784,16 +777,16 @@ Implicits: 1 {variant:1,2,3}20% increased Global Physical Damage {variant:1,2,3}(100-120)% increased Armour and Evasion {variant:4}(200-250)% increased Armour and Evasion +{variant:2,3}+(10-20)% to all Elemental Resistances +{variant:4}+(20-30)% to all Elemental Resistances {variant:1}+(10-20)% to Fire Resistance {variant:1}+(10-20)% to Cold Resistance {variant:1}+(10-20)% to Lightning Resistance -{variant:2,3}+(10-20)% to all Elemental Resistances -{variant:4}+(20-30)% to all Elemental Resistances {variant:1,2,3}+(3-6)% Chance to Block {variant:2,3}+20% Chance to Block Attack Damage if you have Blocked Spell Damage Recently {variant:4}+100% Chance to Block Attack Damage if you have Blocked Spell Damage Recently -{variant:2,3}+20% Chance to Block Spell Damage if you have Blocked Attack Damage Recently -{variant:4}+100% Chance to Block Spell Damage if you have Blocked Attack Damage Recently +{variant:2,3}+20% chance to Block Spell Damage if you have Blocked Attack Damage Recently +{variant:4}+100% chance to Block Spell Damage if you have Blocked Attack Damage Recently ]],[[ The Deep One's Hide Studded Round Shield @@ -818,8 +811,8 @@ Implicits: 1 +2 to Level of Socketed Support Gems Triggers Level 20 Physical Aegis when Equipped (300-400)% increased Armour and Evasion -{variant:1}(30-50)% chance to avoid Bleeding {variant:2}Bleeding cannot be inflicted on you +{variant:1}(30-50)% chance to Avoid Bleeding (8-15)% increased Attack and Cast Speed while Physical Aegis is depleted (50-70)% increased Critical Strike Chance while Physical Aegis is depleted Nearby Enemies are Blinded while Physical Aegis is not depleted @@ -880,8 +873,7 @@ Implicits: 1 {variant:1,2}+5% Chance to Block {variant:1}Curse Skills have 25% increased Skill Effect Duration {variant:2}Curse Skills have 100% increased Skill Effect Duration -]], -[[ +]],[[ Bitter Instinct Spiny Round Shield Source: Drops from unique{Uber Incarnation of Neglect} in normal{Moment of Loneliness} @@ -922,12 +914,12 @@ Implicits: 1 0.4% of Chaos Damage Leeched as Life {variant:1,2}Gain (5-10)% of Physical Damage as Extra Chaos Damage {variant:1,3}-10% Chance to Block -{variant:2}5% Chance to Block +{variant:2}+5% Chance to Block {variant:1}(20-30)% increased Damage while you have no Energy Shield {variant:2,3}100% increased Global Armour while you have no Energy Shield -{variant:1}30% Chance to gain Unholy Might on Block for 3 seconds -{variant:2}Gain Unholy Might on Block for 10 seconds {variant:3}You have Unholy Might while you have no Energy Shield +{variant:1}30% chance to gain Unholy Might on Block for 3 seconds +{variant:2}Gain Unholy Might on Block for 10 seconds Create Profane Ground instead of Consecrated Ground ]],[[ Emperor's Vigilance @@ -994,7 +986,7 @@ Implicits: 2 {variant:2,3,4}+8% to all Elemental Resistances {variant:1,2,3}(80-100)% increased Armour and Energy Shield {variant:4}(240-300)% increased Armour and Energy Shield -{variant:3}+(40-60) maximum Life +{variant:3}+(40-60) to maximum Life {variant:1,2}Regenerate 6 Life per second {variant:3}Regenerate (15-20) Life per second {variant:4}Regenerate (100-200) Life per second @@ -1003,7 +995,7 @@ Implicits: 2 +(20-25)% to Fire Resistance +25% to Fire Resistance while on Low Life 10% increased Movement Speed when on Low Life -Cannot be Ignited while on Low Life +100% chance to Avoid being Ignited while on Low Life ]],[[ Saffell's Frame Branded Kite Shield @@ -1035,14 +1027,14 @@ Implicits: 2 {variant:1}+8% to all Elemental Resistances {variant:2,3,4,5}+4% to all Elemental Resistances (80-120)% increased Armour and Energy Shield -{variant:5}Regenerate (30-50) Life per Second +{variant:5}Regenerate (30-50) Life per second {variant:1,2,3,4}50% reduced Freeze Duration on you {variant:5}80% reduced Freeze Duration on you -{variant:3}Regenerate 1% of Life per Second -{variant:4}Regenerate 3% of Life per Second -{variant:1,2}Regenerate 6% of Life per Second while on Low Life -{variant:3}Regenerate 5% of Life per Second while on Low Life -{variant:4}Regenerate 3% of Life per Second while on Low Life +{variant:3}Regenerate 1% of Life per second +{variant:4}Regenerate 3% of Life per second +{variant:1,2}Regenerate 6% of Life per second while on Low Life +{variant:3}Regenerate 5% of Life per second while on Low Life +{variant:4}Regenerate 3% of Life per second while on Low Life {variant:5}Regenerate 100 Life per Second while on Low Life ]],[[ The Oak @@ -1061,16 +1053,17 @@ Implicits: 2 +(100-150) to maximum Life {variant:1,2,3,4}50% reduced Freeze Duration on you {variant:5}80% reduced Freeze Duration on you -{variant:3}Regenerate 1% of Life per Second -{variant:4,5}Regenerate 3% of Life per Second -{variant:1,2}Regenerate 6% of Life per Second while on Low Life -{variant:3}Regenerate 5% of Life per Second while on Low Life -{variant:4,5}Regenerate 3% of Life per Second while on Low Life +{variant:3}Regenerate 1% of Life per second +{variant:4,5}Regenerate 3% of Life per second +{variant:1,2}Regenerate 6% of Life per second while on Low Life +{variant:3}Regenerate 5% of Life per second while on Low Life +{variant:4,5}Regenerate 3% of Life per second while on Low Life ]],[[ The Unshattered Will Archon Kite Shield League: Harbinger -Source: No longer obtainable +Source: Created from item parts obtained from Boss in The Beachhead +Upgrade: Upgrades to unique{The Immortal Will} via currency{Specularity Scroll} Implicits: 1 +12% to all Elemental Resistances Grants Summon Harbinger of Focus Skill @@ -1083,6 +1076,7 @@ Channelling Skills deal (50-70)% increased Damage The Immortal Will Archon Kite Shield League: Harvest +Source: Upgraded from unique{The Unshattered Will} via currency{Specularity Scroll} Implicits: 1 +12% to all Elemental Resistances Grants Summon Greater Harbinger of Focus Skill @@ -1154,8 +1148,8 @@ Source: No longer obtainable Variant: Pre 3.0.0 Variant: Current Implicits: 2 -{variant:1}Reflects (10-23) Physical Damage to Melee Attackers {variant:2}+5% chance to Suppress Spell Damage +{variant:1}Reflects (10-23) Physical Damage to Melee Attackers (120-140)% increased Evasion and Energy Shield +(20-30) to maximum Energy Shield +(30-50) to maximum Life @@ -1170,14 +1164,14 @@ Variant: Pre 3.0.0 Variant: Pre 3.8.0 Variant: Current Implicits: 2 -{variant:1,2}Reflects (221-260) Physical Damage to Melee Attackers {variant:3,4}+5% chance to Suppress Spell Damage +{variant:1,2}Reflects (221-260) Physical Damage to Melee Attackers {variant:1,2,3}Grants Level 20 Bear Trap Skill {variant:4}Grants Level 25 Bear Trap Skill (18-28)% increased Trap Damage (15-25)% increased Global Physical Damage +(60-80) to maximum Life --(14-18) Physical Damage taken from Attack Hits +-(18-14) Physical Damage taken from Attack Hits {variant:1}15% chance to gain a Power Charge when you Throw a Trap {variant:2,3,4}25% chance to gain a Power Charge when you Throw a Trap ]],[[ @@ -1201,8 +1195,8 @@ Variant: Pre 3.0.0 Variant: Pre 3.11.0 Variant: Current Implicits: 2 -{variant:1}Reflects (51-70) Physical Damage to Melee Attackers {variant:2,3}+3% chance to Suppress Spell Damage +{variant:1}Reflects (51-70) Physical Damage to Melee Attackers (10-15)% increased Attack Speed (10-20)% increased maximum Life -50% to all Elemental Resistances diff --git a/src/Data/Uniques/staff.lua b/src/Data/Uniques/staff.lua index 53e51c1411..ad5fe4dbed 100644 --- a/src/Data/Uniques/staff.lua +++ b/src/Data/Uniques/staff.lua @@ -10,9 +10,9 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 66, 158 Str, 113 Int Implicits: 3 +{variant:3}+25% Chance to Block Spell Damage while wielding a Staff {variant:1}+12% Chance to Block Attack Damage while wielding a Staff {variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+25% Chance to Block Spell Damage while wielding a Staff 40% increased Strength Requirement +(80-120) to Intelligence (30-50)% increased Lightning Damage @@ -28,15 +28,15 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 66, 158 Str, 113 Int Implicits: 3 +{variant:3}+25% Chance to Block Spell Damage while wielding a Staff {variant:1}+12% Chance to Block Attack Damage while wielding a Staff {variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+25% Chance to Block Spell Damage while wielding a Staff -{variant:1}+1 to Level of all Lightning Spell Skill Gems -{variant:2,3}+2 to Level of all Lightning Spell Skill Gems +40% increased Strength Requirement +(80-120) to Intelligence (30-50)% increased Lightning Damage +{variant:1}+1 to Level of all Lightning Spell Skill Gems +{variant:2,3}+2 to Level of all Lightning Spell Skill Gems 15% chance to Shock -40% increased Strength Requirement Damage Penetrates 20% Lightning Resistance ]],[[ Agnerod South @@ -46,15 +46,15 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 66, 158 Str, 113 Int Implicits: 3 +{variant:3}+25% Chance to Block Spell Damage while wielding a Staff {variant:1}+12% Chance to Block Attack Damage while wielding a Staff {variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+25% Chance to Block Spell Damage while wielding a Staff -{variant:1}+1 to Level of all Lightning Spell Skill Gems -{variant:2,3}+2 to Level of all Lightning Spell Skill Gems +40% increased Strength Requirement +(80-120) to Intelligence (30-50)% increased Lightning Damage -+5% to Maximum Lightning Resistance -40% increased Strength Requirement +{variant:1}+1 to Level of all Lightning Spell Skill Gems +{variant:2,3}+2 to Level of all Lightning Spell Skill Gems ++5% to maximum Lightning Resistance Damage Penetrates 20% Lightning Resistance ]],[[ Agnerod West @@ -64,15 +64,15 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 66, 158 Str, 113 Int Implicits: 3 +{variant:3}+25% Chance to Block Spell Damage while wielding a Staff {variant:1}+12% Chance to Block Attack Damage while wielding a Staff {variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+25% Chance to Block Spell Damage while wielding a Staff -{variant:1}+1 to Level of all Lightning Spell Skill Gems -{variant:2,3}+2 to Level of all Lightning Spell Skill Gems +40% increased Strength Requirement +(80-120) to Intelligence (30-50)% increased Lightning Damage Adds (5-15) to (100-140) Lightning Damage to Spells -40% increased Strength Requirement +{variant:1}+1 to Level of all Lightning Spell Skill Gems +{variant:2,3}+2 to Level of all Lightning Spell Skill Gems Damage Penetrates 20% Lightning Resistance ]],[[ The Annihilating Light @@ -82,8 +82,8 @@ Variant: Current Source: Drops from unique{The Searing Exarch} (Uber) Requires Level 68, 78 Str, 78 Int Implicits: 2 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff {variant:2}+22% Chance to Block Spell Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage while wielding a Staff (60-70)% reduced Elemental Resistances Deal Triple Damage with Elemental Skills ]],[[ @@ -126,9 +126,9 @@ Variant: Pre 2.6.0 Variant: Pre 3.25.0 Variant: Current Implicits: 3 +{variant:3}+20% Chance to Block Spell Damage while wielding a Staff {variant:1}+12% Chance to Block Attack Damage while wielding a Staff {variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+20% Chance to Block Spell Damage while wielding a Staff +12% Chance to Block Attack Damage while wielding a Staff 100% increased Physical Damage (5-10)% increased Attack Speed @@ -142,8 +142,8 @@ Variant: Current League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Implicits: 2 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff {variant:2}+20% Chance to Block Spell Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage while wielding a Staff +12% Chance to Block Attack Damage while wielding a Staff 100% increased Fire Damage (5-10)% increased Attack Speed @@ -185,8 +185,6 @@ Implicits: 2 {variant:1}Adds (270-300) to (340-380) Physical Damage {variant:2}Adds (250-280) to (315-355) Physical Damage {variant:3,4}Adds (220-240) to (270-300) Physical Damage -{variant:4}Battlemage -{variant:1,2,3}Adds (376-400) to (568-600) Physical Damage to Spells +1 to Maximum Siphoning Charges per Elder or Shaper Item Equipped 25% chance to gain a Siphoning Charge when you use a Skill Adds (12-14) to (15-16) Physical Damage to Attacks and Spells per Siphoning Charge @@ -194,6 +192,7 @@ Gain 4% of Non-Chaos Damage as extra Chaos Damage per Siphoning Charge 1% additional Physical Damage Reduction from Hits per Siphoning Charge 0.2% of Damage Leeched as Life per Siphoning Charge Take 150 Physical Damage per Second per Siphoning Charge if you've used a Skill Recently +{variant:1,2,3,4}Battlemage ]],[[ Duskdawn Maelström Staff @@ -209,9 +208,9 @@ Implicits: 3 {variant:4}+25% Chance to Block Attack Damage while wielding a Staff {variant:1,2}+4% Chance to Block Attack Damage while wielding a Staff {variant:3,4}+10% Chance to Block Attack Damage while wielding a Staff -(60-80)% increased Critical Strike Chance for Spells +(60-80)% increased Spell Critical Strike Chance Gain (10-20)% of Elemental Damage as Extra Chaos Damage -+1% to Critical Strike Multiplier per 1% Block Chance ++1% to Critical Strike Multiplier per 1% Chance to Block Attack Damage +60% to Critical Strike Multiplier if you've dealt a Non-Critical Strike Recently {variant:1,2}120% increased Spell Damage if you've dealt a Critical Strike Recently {variant:3,4}(120-150)% increased Spell Damage if you've dealt a Critical Strike Recently @@ -237,8 +236,8 @@ Variant: Pre 2.6.0 Variant: Pre 3.25.0 Variant: Current Implicits: 2 -{variant:1,2}18% Chance to Block Attack Damage while wielding a Staff -{variant:3}20% Chance to Block Attack Damage while wielding a Staff +{variant:1,2}+18% Chance to Block Attack Damage while wielding a Staff +{variant:3}+20% Chance to Block Attack Damage while wielding a Staff 18% increased Cast Speed 18% increased maximum Mana 18% increased Area of Effect of Aura Skills @@ -250,19 +249,20 @@ Nearby allies gain 18% increased Damage The Enmity Divine Imperial Staff League: Harbinger -Source: No longer obtainable +Source: Created from item parts obtained from Boss in The Beachhead +Upgrade: Upgrades to unique{The Yielding Mortality} via currency{Haemocombustion Scroll} Variant: Pre 3.11.0 Variant: Pre 3.25.0 Variant: Pre 3.26.0 Variant: Current Requires Level 66, 113 Str, 113 Int Implicits: 2 -{variant:2}18% Chance to Block Attack Damage while wielding a Staff {variant:3,4}+25% Chance to Block Spell Damage while wielding a Staff +{variant:2}+18% Chance to Block Attack Damage while wielding a Staff {variant:1}Socketed Gems are supported by Level 10 Life Leech {variant:2,3,4}Socketed Gems are supported by Level 1 Chance to Bleed Grants Summon Harbinger of Brutality Skill -5% Chance to Block Attack Damage while wielding a Staff ++5% Chance to Block Attack Damage while wielding a Staff {variant:2,3}+(30-40)% to Damage over Time Multiplier for Bleeding from Critical Strikes {variant:4}+(60-80)% to Damage over Time Multiplier for Bleeding from Critical Strikes {variant:1,2,3}Adds (160-185) to (200-225) Physical Damage @@ -274,10 +274,12 @@ Imperial Staff Variant: Pre 3.25.0 Variant: Pre 3.26.0 Variant: Current +League: Harvest +Source: Upgraded from unique{The Enmity Divine} via currency{Haemocombustion Scroll} Requires Level 66, 113 Str, 113 Int Implicits: 2 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff {variant:2,3}+25% Chance to Block Spell Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage while wielding a Staff Socketed Gems are supported by Level 1 Chance to Bleed Grants Summon Greater Harbinger of Brutality Skill +5% Chance to Block Attack Damage while wielding a Staff @@ -295,17 +297,17 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 58, 99 Str, 99 Int Implicits: 3 +{variant:4}+25% Chance to Block Spell Damage while wielding a Staff {variant:1}+12% Chance to Block Attack Damage while wielding a Staff {variant:2,3}+18% Chance to Block Attack Damage while wielding a Staff -{variant:4}+25% Chance to Block Spell Damage while wielding a Staff +2 to Level of Socketed Minion Gems {variant:3,4}Minions deal (60-80)% increased Damage -{variant:3,4}+1% Chance to Block Attack Damage per Summoned Skeleton +{variant:1,2}Minions Regenerate (1.5-2.5)% of Life per second {variant:1,2}2% increased Minion Attack and Cast Speed per Skeleton you own -{variant:1,2}Minions Regenerate (1.5-2.5)% Life per Second +{variant:1,2}2% increased Minion Duration per Raised Zombie +{variant:1,2}(8-12)% increased Minion Damage per Raised Spectre +{variant:3,4}+1% Chance to Block Attack Damage per Summoned Skeleton {variant:3,4}2% increased Attack and Cast Speed per Summoned Raging Spirit -{variant:1,2}2% increased Minion Duration per Zombie you own -{variant:1,2}(8-12)% increased Minion Damage per Spectre you own {variant:3,4}Regenerate 0.6% of Life per second for each Raised Zombie {variant:3,4}30% increased Mana Regeneration Rate per Raised Spectre ]],[[ @@ -315,11 +317,11 @@ Variant: Pre 2.6.0 Variant: Pre 3.25.0 Variant: Current Implicits: 3 +{variant:3}+20% Chance to Block Spell Damage while wielding a Staff {variant:1}+12% Chance to Block Attack Damage while wielding a Staff {variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+20% Chance to Block Spell Damage while wielding a Staff Socketed Gems are Supported by Level 8 Trap -(40-50)% increased Damage +(40-50)% increased Global Damage (10-20)% increased maximum Life (10-20)% increased maximum Mana ]],[[ @@ -330,8 +332,8 @@ Variant: Current League: Heist Source: Steal from a unique{Curio Display} during a Grand Heist Implicits: 2 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff {variant:2}+20% Chance to Block Spell Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage while wielding a Staff Socketed Gems are Supported by Level 1 Multiple Totems (40-50)% increased Global Damage (10-20)% increased maximum Life @@ -344,8 +346,8 @@ Variant: Current League: Affliction Requires Level 58, 99 Str, 99 Int Implicits: 2 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff {variant:2}+25% Chance to Block Spell Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage while wielding a Staff Socketed Gems are Supported by Level 1 Lifetap (20-30)% increased Cast Speed Lose 500 Life per second @@ -377,14 +379,14 @@ Variant: Current Source: No longer obtainable Requires Level 32 Implicits: 2 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff {variant:2}+20% Chance to Block Spell Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage while wielding a Staff Socketed Gems are Supported by Level 16 Trap Socketed Gems are Supported by Level 16 Cluster Trap -Socketed Gems are Supported by Level 16 Trap and Mine Damage -(10-20)% increased maximum Mana +Socketed Gems are Supported by Level 16 Trap And Mine Damage +(40-50)% increased Global Damage (10-20)% increased maximum Life -(40-50)% increased Damage +(10-20)% increased maximum Mana ]],[[ The Grey Spire Judgement Staff @@ -393,8 +395,8 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 68, 113 Str, 113 Int Implicits: 3 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff {variant:2}+20% Chance to Block Spell Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage while wielding a Staff {variant:3}+25% Chance to Block Attack Damage while wielding a Staff Has no Sockets (250-300)% increased Global Damage @@ -410,11 +412,11 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 68, 113 Str, 113 Int Implicits: 4 +{variant:4}+20% Chance to Block Spell Damage while wielding a Staff {variant:1}+12% Chance to Block Attack Damage while wielding a Staff {variant:2,3}+18% Chance to Block Attack Damage while wielding a Staff -{variant:4}+20% Chance to Block Spell Damage while wielding a Staff {variant:5}+25% Chance to Block Attack Damage while wielding a Staff -6% Chance to Block Attack Damage while wielding a Staff ++6% Chance to Block Attack Damage while wielding a Staff {variant:1,2}Adds (180-190) to (190-220) Physical Damage {variant:3}Adds (165-175) to (185-205) Physical Damage {variant:4,5}Adds (135-145) to (160-175) Physical Damage @@ -432,18 +434,15 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 52, 89 Str, 89 Int Implicits: 2 -{variant:1,2,3}+18% Chance to Block Attack Damage while wielding a Staff {variant:4}+22% Chance to Block Spell Damage while wielding a Staff -(12-16)% Chance to Block Attack Damage while wielding a Staff +{variant:1,2,3}+18% Chance to Block Attack Damage while wielding a Staff ++(12-16)% Chance to Block Attack Damage while wielding a Staff +{variant:1,2,3,4}100% increased Fire Damage {variant:1,2}Adds (350-400) to (500-600) Fire Damage {variant:3,4}Adds (315-360) to (450-540) Fire Damage -{variant:1}Adds (130-150) to (200-250) Fire Damage to Spells -{variant:2}Adds (230-250) to (300-350) Fire Damage to Spells -{variant:3,4}Battlemage -{variant:1}100% increased Fire Damage if you have been Hit Recently -{variant:2,3,4}100% increased Fire Damage -Immune to Freeze and Chill while Ignited Damage Penetrates 15% of Fire Resistance if you have Blocked Recently +Immune to Freeze and Chill while Ignited +{variant:1,2,3,4}Battlemage ]],[[ Pillar of the Caged God Iron Staff @@ -455,7 +454,7 @@ Implicits: 3 {variant:1}+12% Chance to Block Attack Damage while wielding a Staff {variant:2}+18% Chance to Block Attack Damage while wielding a Staff {variant:3}+20% Chance to Block Attack Damage while wielding a Staff -1% increased Area of Effect of Area Skills per 20 Intelligence +1% increased Area of Effect per 20 Intelligence 1% increased Attack Speed per 10 Dexterity 16% increased Physical Weapon Damage per 10 Strength ]],[[ @@ -471,11 +470,11 @@ Variant: Pre 3.28.0 Variant: Current Requires Level 68, 113 Str, 113 Int Implicits: 4 +{variant:3,4}+20% Chance to Block Spell Damage while wielding a Staff {variant:1}+12% Chance to Block Attack Damage while wielding a Staff {variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3,4}+20% Chance to Block Spell Damage while wielding a Staff {variant:5,6}+25% Chance to Block Attack Damage while wielding a Staff -{variant:1,2,3,4,5}Socketed Gems are Supported by Level 30 Greater Spell Echo +{variant:1,2,3,4,5}Socketed Gems are Supported by Level 1 Greater Spell Echo {variant:6}Socketed Gems are Supported by Level 1 Greater Spell Echo (120-160)% increased Spell Damage {variant:1,2,3}100% increased maximum Mana @@ -530,9 +529,9 @@ Variant: Current Implicits: 3 {variant:1,2}+12% Chance to Block Attack Damage while wielding a Staff {variant:3,4,5}+18% Chance to Block Attack Damage while wielding a Staff -{variant:6}+25% Chance to Block Spell Damage while wielding a Staff -{variant:5,6}+(40-60)% to Fire Damage over Time Multiplier +{variant:6}+25% Chance to Block Attack Damage while wielding a Staff {variant:1,2,3}(30-50)% increased Spell Damage +{variant:5,6}+(40-60)% to Fire Damage over Time Multiplier {variant:1,2,3}(20-40)% increased Fire Damage {variant:4,5,6}(70-90)% increased Fire Damage 10% increased Cast Speed @@ -550,9 +549,9 @@ Implicits: 3 {variant:2}+20% Chance to Block Attack Damage while wielding a Staff {variant:3}+22% Chance to Block Attack Damage while wielding a Staff Socketed Gems fire 4 additional Projectiles -Socketed Gems fire Projectiles in a Nova -+(15-20) to All Attributes -+(5-7)% to All Elemental Resistances +Socketed Gems fire Projectiles in a circle ++(15-20) to all Attributes ++(5-7)% to all Elemental Resistances (60-100)% increased Projectile Damage 20% increased Light Radius ]],[[ @@ -568,14 +567,14 @@ Implicits: 3 {variant:1}+18% Chance to Block Attack Damage while wielding a Staff {variant:2}+20% Chance to Block Attack Damage while wielding a Staff {variant:3,4}+25% Chance to Block Attack Damage while wielding a Staff -{variant:1,2,3}Trigger Level 20 Summon Phantasm Skill when you Consume a Corpse -{variant:4}Trigger Level 25 Summon Phantasm Skill when you Consume a Corpse +{variant:1,2,3}Trigger Level 20 Summon Phantasm Skill when you Consume a corpse +{variant:4}Trigger Level 25 Summon Phantasm Skill when you Consume a corpse (100-140)% increased Spell Damage (25-30)% increased Cast Speed (80-100)% increased Mana Regeneration Rate {variant:1,2,3}Minions deal (45-51) to (66-78) additional Physical Damage {variant:4}Minions deal (90-102) to (132-156) additional Physical Damage -If you Consumed a Corpse Recently, you and nearby Allies regenerate 5% of Life per second +If you Consumed a corpse Recently, you and nearby Allies Regenerate 5% of Life per second ]],[[ The Stormheart Royal Staff @@ -584,15 +583,15 @@ Variant: Pre 3.25.0 Variant: Current Requires Level 28, 51 Str, 51 Int Implicits: 3 +{variant:3}+20% Chance to Block Spell Damage while wielding a Staff {variant:1}+12% Chance to Block Attack Damage while wielding a Staff {variant:2}+18% Chance to Block Attack Damage while wielding a Staff -{variant:3}+20% Chance to Block Spell Damage while wielding a Staff (80-100)% increased Physical Damage Adds (25-35) to (45-60) Cold Damage Adds (1-10) to (70-90) Lightning Damage (20-35)% increased Critical Strike Chance -{variant:1}You Cannot Be Shocked While Frozen -{variant:2,3}You Cannot Be Shocked While Chilled +{variant:1}You cannot be Shocked while Frozen +{variant:2,3}100% chance to Avoid being Shocked while Chilled {variant:2,3}50% chance to Shock Chilled Enemies ]],[[ The Stormwall @@ -602,14 +601,14 @@ Variant: Current Source: No longer obtainable Requires Level 60, 51 Str, 51 Int Implicits: 2 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff {variant:2}+20% Chance to Block Spell Damage while wielding a Staff -15% Chance to Block Attack Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage while wielding a Staff ++15% Chance to Block Attack Damage while wielding a Staff Adds (242-260) to (268-285) Physical Damage (20-35)% increased Critical Strike Chance 50% of Physical Damage Converted to Cold Damage 50% of Physical Damage Converted to Lightning Damage -Cannot be Shocked while Chilled +100% chance to Avoid being Shocked while Chilled (30-40)% chance to Chill Attackers for 4 seconds on Block (30-40)% chance to Shock Attackers for 4 seconds on Block ]],[[ @@ -624,12 +623,12 @@ Implicits: 3 {variant:1,2}+18% Chance to Block Attack Damage while wielding a Staff {variant:3}+20% Chance to Block Attack Damage while wielding a Staff {variant:4}+25% Chance to Block Attack Damage while wielding a Staff -{variant:1,2}+1 to Level of all Cold Spell Skill Gems -{variant:3,4}+2 to Level of all Cold Spell Skill Gems {variant:1}(40-50)% increased Spell Damage {variant:2,3,4}(50-60)% increased Spell Damage (40-50)% increased Cold Damage (10-20)% increased Cast Speed +{variant:1,2}+1 to Level of all Cold Spell Skill Gems +{variant:3,4}+2 to Level of all Cold Spell Skill Gems 8% chance to Freeze Enemies Frozen by you take 20% increased Damage ]],[[ @@ -645,12 +644,11 @@ Implicits: 3 {variant:2,3}+18% Chance to Block Attack Damage while wielding a Staff {variant:4}+22% Chance to Block Attack Damage while wielding a Staff {variant:3,4}+2 to Level of Socketed Spell Gems -{variant:1,2}Socketed Gems are Supported by Level 10 Remote Mine -{variant:3,4}Socketed Gems are Supported by Level 10 Blastchain Mine +{variant:1,2,3,4}Socketed Gems are Supported by Level 10 Blastchain Mine {variant:1,2}35% less Mine Damage (40-60)% increased Spell Damage (15-20)% reduced Enemy Stun Threshold -{variant:1,2}(40-60)% increased Mine Laying Speed +{variant:1,2}(40-60)% increased Mine Throwing Speed Mines can be Detonated an additional time ]],[[ The Whispering Ice @@ -665,9 +663,9 @@ Implicits: 3 {variant:3}+20% Chance to Block Attack Damage while wielding a Staff +1 to Level of Socketed Support Gems Grants Level 1 Icestorm Skill +(14-18)% increased Intelligence (8-12)% increased Cast Speed 1% increased Spell Damage per 10 Intelligence -(14-18)% increased Intelligence ]],[[ Witchhunter's Judgment Highborn Staff @@ -677,8 +675,8 @@ League: Harvest Source: Drops from unique{Oshabi, Avatar of the Grove} Requires Level 68, 89 Str, 89 Int Implicits: 2 -{variant:1}+18% Chance to Block Attack Damage while wielding a Staff {variant:2}+22% Chance to Block Spell Damage while wielding a Staff +{variant:1}+18% Chance to Block Attack Damage while wielding a Staff Grants Level 20 Brandsurge Skill Brand Skills have (50-100)% increased Duration ]],[[ @@ -689,10 +687,10 @@ Variant: Current League: Crucible Implicits: 2 {variant:1}+18% Chance to Block Attack Damage while wielding a Staff -{variant:2}+22% Chance to Block Spell Damage while wielding a Staff +{variant:2}+22% Chance to Block Attack Damage while wielding a Staff Has 1 Socket (150-200)% increased Spell Damage -(80-120)% increased Critical Strike Chance for Spells +(80-120)% increased Spell Critical Strike Chance +(150-200) to maximum Mana Gain 150 Life per Enemy Killed Has a Crucible Passive Skill Tree with only Support Passive Skills @@ -726,9 +724,11 @@ Source: Drops from unique{Incarnation of Neglect} in normal{Moment of Loneliness Requires Level 68, 113 Str, 113 Int Implicits: 1 +25% Chance to Block Attack Damage while wielding a Staff -Grants Level 20 Summon Shaper Memory +{variant:1}Grants Level 20 Summon Shaper Memory {variant:1}Grants Level 20 Shaper's Despair, which will be used by Shaper Memory +{variant:2}Grants Level 20 Summon Shaper Memory {variant:2}Grants Level 20 Shaper's Ire, which will be used by Shaper Memory +{variant:3}Grants Level 20 Summon Shaper Memory {variant:3}Grants Level 20 Shaper's Devastation, which will be used by Shaper Memory (200-300)% increased Physical Damage (25-40)% increased Cast Speed @@ -746,7 +746,7 @@ Requires Level 66, 113 Str, 113 Dex Implicits: 1 +25% Chance to Block Spell Damage while wielding a Staff (1-7)% increased Intelligence -(-17-17)% increased maximum Life +(-17-17)% reduced maximum Life +(-1-1) to Level of all Spell Skill Gems 31% increased Cost of Skills 1 to (31-53) Spell Lightning Damage per 10 Intelligence diff --git a/src/Data/Uniques/sword.lua b/src/Data/Uniques/sword.lua index 731aeb69a5..028b3116b0 100644 --- a/src/Data/Uniques/sword.lua +++ b/src/Data/Uniques/sword.lua @@ -7,11 +7,11 @@ Ahn's Might Midnight Blade Implicits: 1 40% increased Global Accuracy Rating ++100 Strength Requirement Adds (80-115) to (150-205) Physical Damage (15-25)% increased Critical Strike Chance -1 to Maximum Frenzy Charges 10% increased Area of Effect -+100 Strength Requirement +50% Global Critical Strike Multiplier while you have no Frenzy Charges +(400-500) to Accuracy Rating while at Maximum Frenzy Charges ]],[[ @@ -80,9 +80,8 @@ Implicits: 2 {variant:1,2,3}10% reduced maximum Life {variant:4,5,6}25% reduced maximum Life {variant:1,2,3}(0.6-1)% of Physical Attack Damage Leeched as Mana -{variant:4}Attacks with this Weapon have Added Maximum Lightning Damage equal to 20% of your Maximum Energy Shield -{variant:5}Attacks with this Weapon have Added Maximum Lightning Damage equal to 20% of player Maximum Energy Shield -{variant:6}Attacks with this Weapon have Added Maximum Lightning Damage equal to (10-15)% of player Maximum Energy Shield +{variant:4,5}Attacks with this Weapon have Added Maximum Lightning Damage equal to 20% of Player's Maximum Energy Shield +{variant:6}Attacks with this Weapon have Added Maximum Lightning Damage equal to (10-15)% of Player's Maximum Energy Shield ]],[[ The Goddess Scorned Elegant Sword @@ -230,7 +229,7 @@ Socketed Gems are supported by Level 1 Multistrike Adds (5-8) to (10-14) Physical Damage (10-15)% increased Attack Speed 20% chance to Avoid being Stunned -(40-30)% reduced Stun and Block Recovery +(30-40)% reduced Stun and Block Recovery ]],[[ The Living Blade Ezomyte Blade @@ -474,8 +473,8 @@ Implicits: 2 {variant:1,2}Minions Poison Enemies on Hit {variant:3}Minions have 60% chance to Poison Enemies on Hit {variant:4}Minions have 60% chance to inflict Withered on Hit -{variant:1,2,3}Minions Recover 20% of Life on Killing a Poisoned Enemy {variant:4}Minions have +5% to Critical Strike Multiplier per Withered Debuff on Enemy +{variant:1,2,3}Minions Recover 20% of Life on Killing a Poisoned Enemy ]],[[ United in Dream Cutlass @@ -578,7 +577,7 @@ Implicits: 2 {variant:1,2}(40-60)% increased Physical Damage {variant:3}(80-100)% increased Physical Damage Adds (30-45) to (80-100) Physical Damage -Gain (2-3) Mana per Enemy Hit with Attacks +Grants (2-3) Mana per Enemy Hit Counts as all One Handed Melee Weapon Types ]], -- Weapon: Thrusting Sword @@ -612,7 +611,7 @@ Implicits: 3 +30 to maximum Mana 5% increased Movement Speed 30% increased Elemental Damage -+2 to Weapon Range ++0.2 metres to Weapon Range ]],[[ Cospri's Malice Jewelled Foil @@ -622,11 +621,11 @@ Implicits: 2 {variant:1}+30% to Global Critical Strike Multiplier {variant:2}+25% to Global Critical Strike Multiplier Trigger a Socketed Cold Spell on Melee Critical Strike, with a 0.25 second Cooldown ++257 Intelligence Requirement No Physical Damage Adds (80-100) to (160-200) Cold Damage Adds (40-60) to (90-110) Cold Damage to Spells (8-14)% increased Attack Speed -+257 Intelligence Requirement 60% increased Critical Strike Chance against Chilled Enemies ]],[[ Daresso's Passion @@ -668,7 +667,7 @@ No Physical Damage Adds 1 to (40-50) Lightning Damage (25-30)% increased Attack Speed Grants 2 Life per Enemy Hit -{variant:1,2}5% Chance to Shock +{variant:1,2}5% chance to Shock {variant:3}(15-20)% chance to Shock {variant:3}Herald of Thunder has 50% increased Buff Effect ]],[[ @@ -738,8 +737,9 @@ Implicits: 2 (25-30)% increased Attack Speed 5% increased Movement Speed Triggers Level 15 Manifest Dancing Dervishes on Rampage -Manifested Dancing Dervish disables both weapon slots -Manifested Dancing Dervish dies when Rampage ends +Manifested Dancing Dervishes disables both weapon slots +Manifested Dancing Dervishes die when Rampage ends +Melee Hits count as Rampage Kills Rampage ]],[[ Doomsower @@ -750,9 +750,9 @@ Variant: Pre 3.8.0 Variant: Pre 3.11.0 Variant: Current Implicits: 3 +{variant:5}+50 to Strength and Dexterity {variant:1}18% increased Global Accuracy Rating {variant:2,3,4}+470 to Accuracy Rating -{variant:5}+50 to Strength and Dexterity Socketed Melee Gems have 15% increased Area of Effect {variant:1,2,3}Socketed Red Gems get 10% Physical Damage as Extra Fire Damage {variant:1,2,3,4}(50-70)% increased Physical Damage @@ -774,13 +774,13 @@ Implicits: 3 {variant:1}18% increased Global Accuracy Rating {variant:2}40% increased Global Accuracy Rating {variant:3,4}60% increased Global Accuracy Rating -+1 to Level of Socketed Active Skill Gems ++1 to Level of Socketed Skill Gems {variant:2,3,4}(40-60)% increased Physical Damage {variant:1}(60-80)% increased Physical Damage Adds (60-68) to (90-102) Chaos Damage {variant:1}Gain 1 Life on Kill per Level -{variant:1,2,4}1% increased Chaos Damage per Level {variant:1}1% increased Elemental Damage per Level +{variant:1,2,4}1% increased Chaos Damage per Level {variant:2,3,4}Adds 1 to 2 Physical Damage to Attacks per Level ]],[[ Hiltless @@ -796,7 +796,7 @@ Socketed Gems are Supported by Level 1 Lifetap Adds (90-115) to (230-260) Physical Damage (40-50)% increased Critical Strike Chance Enemies you Attack Reflect 100 Physical Damage to you -+2 to Weapon range ++0.2 metres to Weapon Range ]],[[ Kondo's Pride Ezomyte Blade @@ -805,8 +805,8 @@ Variant: Pre 3.11.0 Variant: Current Implicits: 3 {variant:1}18% increased Global Accuracy Rating -{variant:2}+435 to Accuracy Rating {variant:3}+25% to Global Critical Strike Multiplier +{variant:2}+435 to Accuracy Rating {variant:1,2}(270-320)% increased Physical Damage {variant:3}(220-250)% increased Physical Damage 0.6% of Physical Attack Damage Leeched as Life @@ -849,8 +849,8 @@ Adds (385-440) to (490-545) Cold Damage 20% chance to Freeze 10% increased Physical Damage taken 10% increased Cold Damage taken -Gain an Endurance Charge if an Attack Freezes an Enemy {variant:2}Culling Strike against Frozen Enemies +Gain an Endurance Charge if an Attack Freezes an Enemy ]],[[ Echoforge Infernal Sword @@ -858,10 +858,10 @@ Source: Drops from unique{The Maven} Implicits: 1 30% increased Chaos Damage Adds (600-650) to (750-800) Chaos Damage -(-16-16)% increased Attack Speed +(-16-16)% reduced Attack Speed +(-200-200) to maximum Life Your Chaos Damage can Shock -(-40-40)% increased Area of Effect for Attacks +(-40-40)% reduced Area of Effect for Attacks Deal no Physical or Elemental Damage ]],[[ Queen's Decree @@ -880,10 +880,10 @@ Implicits: 2 {variant:1,2}Minions deal (10-15)% increased Damage {variant:3,4}Minions deal (30-40)% increased Damage {variant:1,2,3}+1 to maximum number of Raised Zombies -{variant:4}+(1-2) to maximum number of Raised Zombies {variant:1,2,3}+1 to maximum number of Spectres -{variant:4}+(1-2) to maximum number of Spectres {variant:1,2,3}+1 to maximum number of Skeletons +{variant:4}+(1-2) to maximum number of Raised Zombies +{variant:4}+(1-2) to maximum number of Spectres {variant:4}+(1-2) to maximum number of Skeletons ]],[[ Queen's Escape @@ -897,6 +897,7 @@ Implicits: 2 {variant:1}18% increased Global Accuracy Rating {variant:2,3}+185 to Accuracy Rating 25% increased Strength Requirement +25% increased Strength Requirement {variant:1,2}Minions have (10-15)% increased maximum Life {variant:3}Minions have (30-40)% increased maximum Life Minions have (80-100)% increased Movement Speed @@ -906,7 +907,6 @@ Minions have (80-100)% increased Movement Speed +1 to maximum number of Raised Zombies +1 to maximum number of Spectres +1 to maximum number of Skeletons -25% increased Strength Requirement ]],[[ Rakiata's Dance Engraved Greatsword @@ -959,8 +959,8 @@ Variant: Pre 3.11.0 Variant: Pre 3.20.0 Variant: Current Implicits: 2 -{variant:1}30% increased Global Accuracy Rating {variant:2,3}30% increased Global Physical Damage +{variant:1}30% increased Global Accuracy Rating {variant:1}(400-500)% increased Physical Damage {variant:2}(200-300)% increased Physical Damage {variant:3}(400-450)% increased Physical Damage diff --git a/src/Data/Uniques/tincture.lua b/src/Data/Uniques/tincture.lua index c5d00cfcec..9e1d405395 100644 --- a/src/Data/Uniques/tincture.lua +++ b/src/Data/Uniques/tincture.lua @@ -31,7 +31,7 @@ Implicits: 2 40% reduced Enemy Stun Threshold with Melee Weapons (15-25)% increased Stun Duration with Melee Weapons Melee Strike Skills deal Splash Damage to surrounding targets -(25-15)% reduced Mana Burn rate +(15-25)% reduced Mana Burn rate ]],[[ Sap of the Seasons Prismatic Tincture @@ -39,7 +39,7 @@ League: Settlers of Kalguur Requires Level 18 Implicits: 1 (70-100)% increased Elemental Damage with Melee Weapons -Melee Weapon Damage Penetrates 1% Elemental Resistance per Mana Burn, up to a maximum of 200% +Melee Weapon Damage Penetrates 1% Elemental Resistances per Mana Burn, up to a maximum of 200% (20-40)% increased Cooldown Recovery Rate (35--35)% increased Mana Burn rate ]],[[ @@ -52,6 +52,6 @@ Implicits: 2 (60-90)% increased Damage with Ignite from Melee Weapons -1 Fire Damage taken from Hits per Mana Burn (15-25)% chance to refresh Ignite Duration on Melee Weapon Hit -Cover Full Life Enemies in Ash for (4-10) seconds on Melee Weapon hit +Cover Full Life Enemies in Ash for (4-10) seconds on Melee Weapon Hit ]] } diff --git a/src/Data/Uniques/wand.lua b/src/Data/Uniques/wand.lua index b313b11246..75ced6629f 100644 --- a/src/Data/Uniques/wand.lua +++ b/src/Data/Uniques/wand.lua @@ -53,11 +53,11 @@ Implicits: 3 {variant:1,2,3}(18-22)% increased Spell Damage {variant:4}(11-15)% increased Spell Damage {variant:5}Adds (1-2) to (3-4) Fire Damage to Spells and Attacks -{variant:1,2}10% chance to Trigger Level 8 Summon Raging Spirit on Kill +{variant:1,2}10% chance to Trigger Level 10 Summon Raging Spirit on Kill {variant:3,4,5}25% chance to Trigger Level 10 Summon Raging Spirit on Kill +{variant:2}+(15-25)% to Fire Damage over Time Multiplier {variant:1}Adds (10-14) to (18-22) Fire Damage {variant:3,4,5}Adds (20-24) to (38-46) Fire Damage -{variant:2}+(15-25)% to Fire Damage over Time Multiplier {variant:1,2}Adds (4-6) to (7-9) Fire Damage to Spells {variant:3,4,5}Adds (20-24) to (36-46) Fire Damage to Spells {variant:1}(40-50)% increased Burning Damage @@ -117,14 +117,14 @@ Variant: Pre 3.26.0 Variant: Current Implicits: 1 (36-40)% increased Spell Damage -(300-350)% Increased Physical Damage +(300-350)% increased Physical Damage {variant:1}Gain (10-30)% of Physical Damage as Extra Fire Damage -{variant:1}Gain (10-30)% of Physical Damage as Extra Cold Damage -{variant:1}Gain (10-30)% of Physical Damage as Extra Lightning Damage {variant:2}Gain (10-50)% of Physical Damage as Extra Fire Damage +{variant:1}Gain (10-30)% of Physical Damage as Extra Cold Damage {variant:2}Gain (10-50)% of Physical Damage as Extra Cold Damage +{variant:1}Gain (10-30)% of Physical Damage as Extra Lightning Damage {variant:2}Gain (10-50)% of Physical Damage as Extra Lightning Damage -+1 to Maximum number of Sacred Wisps ++1 to maximum number of Sacred Wisps +1 to number of Sacred Wisps Summoned ]],[[ Lifesprig @@ -150,15 +150,15 @@ Implicits: 3 {variant:2,3}(22-26)% increased Spell Damage {variant:4}Minions deal (12-16)% increased Damage Cannot be used with Chaos Inoculation +Reserves 30% of Life +(10-20) to Intelligence {variant:1,2}Minions have (10-20)% increased Movement Speed {variant:3,4}Minions have (20-30)% increased Movement Speed {variant:1,2}Minions deal (10-30)% increased Damage {variant:3,4}Minions deal (50-70)% increased Damage -+1 to Maximum number of Raised Zombies -+1 to Maximum number of Spectres -+1 to Maximum number of Skeletons -Reserves 30% of Life ++1 to maximum number of Raised Zombies ++1 to maximum number of Spectres ++1 to maximum number of Skeletons ]],[[ Replica Midnight Bargain {variant:1}Engraved Wand @@ -171,11 +171,11 @@ Implicits: 2 {variant:1}(22-26)% increased Spell Damage {variant:2}Minions deal (12-16)% increased Damage Cannot be used with Chaos Inoculation +Reserves 30% of Life +(10-20) to Intelligence Minions have (40-50)% increased Movement Speed Minions deal (50-70)% increased Damage +6 to maximum number of Raging Spirits -Reserves 30% of Life +3 to maximum number of Summoned Phantasms ]],[[ Moonsorrow @@ -249,11 +249,11 @@ The Poet's Pen {variant:2}Somatic Wand Implicits: 1 {variant:1}(11-15)% increased Spell Damage -{variant:2}Cannot roll Caster Modifiers -+1 to Level of Socketed Active Skill Gems per 25 Player Levels ++1 to Level of Socketed Skill Gems per 25 Player Levels +Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown Adds 3 to 5 Physical Damage to Attacks with this Weapon per 3 Player Levels (8-12)% increased Attack Speed -Trigger a Socketed Spell when you Attack with this Weapon, with a 0.25 second Cooldown +{variant:2}Cannot roll Caster Modifiers ]],[[ Reverberation Rod Spiraled Wand @@ -309,7 +309,7 @@ Implicits: 1 (17-21)% increased Spell Damage Gain (10-20)% of Elemental Damage as Extra Chaos Damage Critical Strikes deal no Damage -{variant:1}120% increased Spell Damage if you've dealt a Critical Strike Recently +{variant:1}120% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds {variant:2}200% increased Spell Damage if you've dealt a Critical Strike in the past 8 seconds ]],[[ Shimmeron @@ -328,8 +328,10 @@ Adds (26-35) to (95-105) Lightning Damage to Spells +0.3% Critical Strike Chance per Power Charge +2% Chance to Block Spell Damage per Power Charge Adds 3 to 9 Lightning Damage to Spells per Power Charge -{variant:1}400 Lightning Damage taken per second per Power Charge if you've dealt a Critical Strike Recently -{variant:2,3}200 Lightning Damage taken per second per Power Charge if your Skills have dealt a Critical Strike Recently +{variant:1}400 Lightning Damage taken per second per Power Charge if +{variant:1}your Skills have dealt a Critical Strike Recently +{variant:2,3}200 Lightning Damage taken per second per Power Charge if +{variant:2,3}your Skills have dealt a Critical Strike Recently ]],[[ Storm Prison {variant:1,2}Carved Wand @@ -344,7 +346,7 @@ Implicits: 3 (40-60)% increased Physical Damage Adds 1 to (35-45) Lightning Damage (15-25)% increased Mana Regeneration Rate -+1 to Maximum Power Charge ++1 to Maximum Power Charges (25-35)% chance to gain a Power Charge on Kill ]],[[ Tulborn @@ -359,8 +361,8 @@ Upgrade: Upgrades to unique{Tulfall} using currency{Blessing of Tul} Implicits: 2 {variant:1,2}(15-19)% increased Spell Damage {variant:3}Adds (14-29) to (42-47) Cold Damage to Spells and Attacks -{variant:1,2}(10-15)% increased Cast Speed {variant:3}Adds (120-140) to (150-170) Cold Damage to Spells +{variant:1,2}(10-15)% increased Cast Speed {variant:1,2}50% chance to gain a Power Charge on Killing a Frozen Enemy {variant:3}Gain a Power Charge on Killing a Frozen Enemy {variant:1,2}Adds 10 to 20 Cold Damage to Spells per Power Charge @@ -415,14 +417,14 @@ Variant: Current Implicits: 2 {variant:1}(11-14)% increased Spell Damage {variant:2}(17-21)% increased Spell Damage -{variant:3}Cannot roll Caster Modifiers +{variant:1,2}Socketed Gems fire an additional Projectile {variant:1,2}(80-120)% increased Physical Damage {variant:3}(80-140)% increased Physical Damage Adds (5-8) to (13-17) Physical Damage (5-10)% increased Attack Speed (10-20)% increased Critical Strike Chance -{variant:1,2}Socketed Gems fire an additional Projectile -{variant:3}Attacks fire (1-2) additional Projectiles when in Off Hand +{variant:3}Cannot roll Caster Modifiers +{variant:3}Attacks fire (1-2) additional Projectile when in Off Hand {variant:3}Attacks have (40-60)% increased Area of Effect when in Main Hand ]],[[ Replica Twyzel diff --git a/src/Export/Scripts/mods.lua b/src/Export/Scripts/mods.lua index 497df6668b..92756013a8 100644 --- a/src/Export/Scripts/mods.lua +++ b/src/Export/Scripts/mods.lua @@ -33,8 +33,6 @@ local function writeMods(outName, condFunc) print("[Jewel]: Skipping '" .. mod.Id .. "'") goto continue end - elseif mod.Family[1] and mod.Family[1].Id ~= "AuraBonus" and mod.Family[1].Id ~= "ArbalestBonus" and mod.GenerationType == 3 and not (mod.Domain == 16 or (mod.Domain == 1 and mod.Id:match("^Synthesis") or mod.Id:match("^MutatedUnique") or (mod.Family[2] and mod.Family[2].Id:match("MatchedInfluencesTier")))) then - goto continue end local stats, orders = describeMod(mod) if #orders > 0 then @@ -137,8 +135,10 @@ end writeMods("../Data/ModItem.lua", function(mod) return (mod.Domain == 1 or mod.Domain == 16) - and (mod.GenerationType == 1 or mod.GenerationType == 2 or (mod.GenerationType == 3 and (not mod.Id:match("^MutatedUnique")) and (mod.Id:match("^Synthesis") or (mod.Family[1].Id ~= "AuraBonus" and mod.Family[1].Id ~= "ArbalestBonus") and not (mod.Family[2] and mod.Family[2].Id:match("MatchedInfluencesTier")))) or mod.GenerationType == 5 - or mod.GenerationType == 25 or mod.GenerationType == 24 or mod.GenerationType == 28 or mod.GenerationType == 29) + and (mod.GenerationType == 1 or mod.GenerationType == 2 + or (mod.GenerationType == 3 and mod.Domain == 1 and mod.Id:match("^Synthesis")) + or (mod.GenerationType == 3 and mod.Domain == 16) + or mod.GenerationType == 5 or mod.GenerationType == 25 or mod.GenerationType == 24 or mod.GenerationType == 28 or mod.GenerationType == 29) and not mod.Id:match("^Hellscape[UpDown]+sideMap") -- Exclude Scourge map mods and not mod.Id:match("Royale") and #mod.AuraFlags == 0 @@ -147,7 +147,7 @@ writeMods("../Data/ModFlask.lua", function(mod) return mod.Domain == 2 and (mod.GenerationType == 1 or mod.GenerationType == 2) end) writeMods("../Data/ModTincture.lua", function(mod) - return (mod.Domain == 34) and (mod.GenerationType == 1 or mod.GenerationType == 2 or mod.GenerationType == 3) + return (mod.Domain == 34) and (mod.GenerationType == 1 or mod.GenerationType == 2) end) writeMods("../Data/ModJewel.lua", function(mod) return (mod.Domain == 10 or mod.Domain == 16) and (mod.GenerationType == 1 or mod.GenerationType == 2 or mod.GenerationType == 5) @@ -173,6 +173,13 @@ end) writeMods("../Data/ModNecropolis.lua", function(mod) return mod.Domain == 1 and mod.Id:match("^NecropolisCrafting") end) +writeMods("../Data/ModItemExclusive.lua", function(mod) -- contains primarily uniques and items implicits but also other mods only available on a single base or unique. + return (mod.Domain == 1 or mod.Domain == 2 or mod.Domain == 10 or mod.Domain == 21 or mod.Domain == 34) and mod.GenerationType == 3 + and (mod.Family[1] and mod.Family[1].Id ~= "AuraBonus") + and not mod.Id:match("^Synthesis") and not mod.Id:match("Royale") + and not mod.Id:match("Cowards") and not mod.Id:match("Map") + and not mod.Id:match("Ultimatum") and not mod.Id:match("^MutatedUnique") +end) writeMods("../Data/ModGraft.lua", function(mod) return mod.Domain == 38 and (mod.GenerationType == 1 or mod.GenerationType == 2 or mod.GenerationType == 5) end) @@ -183,4 +190,37 @@ writeMods("../Data/ModFoulborn.lua", function(mod) return mod.Domain == 1 and mod.GenerationType == 3 and mod.Id:match("^MutatedUnique") end) +-- Generate unique mod mappings from text to mod +local out = io.open("Uniques/ModTextMap.lua", "w") +local modTextMap = {} +out:write('-- This file is automatically generated, do not edit!\n') +out:write('-- Item data (c) Grinding Gear Games\n\nreturn {\n') +for modName, mod in pairsSortByKey(LoadModule("../Data/ModItemExclusive.lua")) do + if modTextMap[mod[1]:lower()] then + table.insert(modTextMap[mod[1]:lower()], modName) + else + modTextMap[mod[1]:lower()] = { modName } + end + -- Add generic mod for matching legacy values + if mod[1]:match('%d+') then + local genericText = mod[1]:gsub('(%-*%d*%.*%d+%-*%-*%d*%.*%d*)', '#') + if genericText ~= mod[1] then + if modTextMap[genericText:lower()] then + table.insert(modTextMap[genericText:lower()], modName) + else + modTextMap[genericText:lower()] = { modName } + end + end + end +end +for key, value in pairsSortByKey(modTextMap) do + out:write('\t["' .. key .. '"] = { ') + for _, modName in ipairs(value) do + out:write('"' .. modName .. '", ') + end + out:write('},\n') +end +out:write('\n}') +out:close() + print("Mods exported.") diff --git a/src/Export/Scripts/uModsToText.lua b/src/Export/Scripts/uModsToText.lua new file mode 100644 index 0000000000..0ea13da26d --- /dev/null +++ b/src/Export/Scripts/uModsToText.lua @@ -0,0 +1,187 @@ +if not table.containsId then + dofile("Scripts/mods.lua") +end +local catalystTags = { + ["elemental_damage"] = true, + ["caster"] = true, + ["attack"] = true, + ["defences"] = true, + ["resource"] = true, + ["resistance"] = true, + ["attribute"] = true, + ["physical_damage"] = true, + ["chaos_damage"] = true, + ["speed"] = true, + ["critical"] = true, +} +local itemTypes = { + -- "axe", + -- "bow", + -- "claw", + -- "dagger", + -- "fishing", + -- "mace", + -- "staff", + -- "sword", + -- "wand", + -- "helmet", + -- "body", + -- "gloves", + -- "boots", + -- "shield", + -- "quiver", + -- "amulet", + -- "ring", + -- "belt", + -- "jewel", + -- "flask", + -- "tincture", +} +local function writeMods(out, statOrder) + local orders = { } + for order, _ in pairs(statOrder) do + table.insert(orders, order) + end + table.sort(orders) + for _, order in pairs(orders) do + for _, line in ipairs(statOrder[order]) do + out:write(line, "\n") + end + end +end + +local uniqueMods = LoadModule("../Data/ModItemExclusive.lua") +for _, name in ipairs(itemTypes) do + local out = io.open("../Data/Uniques/"..name..".lua", "w") + local statOrder = {} + local postModLines = {} + local modLines = 0 + local implicits + local nextOrder = 100000 + for line in io.lines("Uniques/"..name..".lua") do + if implicits then -- remove 1 downs to 0 + implicits = implicits - 1 + end + local specName, specVal = line:match("^([%a ]+): (.+)$") + if line:match("]],") then -- start new unique + writeMods(out, statOrder) + for _, line in ipairs(postModLines) do + out:write(line, "\n") + end + out:write(line, "\n") + statOrder = { } + postModLines = { } + modLines = 0 + nextOrder = 100000 + elseif not specName then + local prefix = "" + local variantString = line:match("({variant:[%d,]+})") + local fractured = line:match("({fractured})") or "" + local cleanLine = line:gsub("{.-}", "") + -- Check if this is a mod ID: purely alphanumeric+underscore, optionally followed by [num,num] ranges + local modName = cleanLine:match("^([%a%d_ ]+)%[") or cleanLine:match("^([%a%d_ ]+)$") + local legacy = modName and cleanLine:sub(#modName + 1) or "" + -- Legacy ranges must contain actual brackets, not just stray characters + if legacy ~= "" and not legacy:match("%[") then + legacy = "" + modName = nil + end + local mod = modName and uniqueMods[modName] + if mod or (modName and legacy ~= "") then + modLines = modLines + 1 + if variantString then + prefix = prefix ..variantString + end + + local tags = {} + if mod then + if isValueInArray({"amulet", "ring", "belt"}, name) then + for _, tag in ipairs(mod.modTags) do + if catalystTags[tag] then + table.insert(tags, tag) + end + end + end + end + if tags[1] then + prefix = prefix.."{tags:"..table.concat(tags, ",").."}" + end + prefix = prefix..fractured + local legacyMod + if legacy ~= "" then + local values = { } + for range in legacy:gmatch("%b[]") do + local min, max = range:match("%[([%d%.%-]+),([%d%.%-]+)%]") + table.insert(values, { min = tonumber(min), max = tonumber(max) }) + end + local mod = dat("Mods"):GetRow("Id", modName) + if mod then + local stats = { } + for i = 1, 6 do + if mod["Stat"..i] then + stats[mod["Stat"..i].Id] = values[i] + end + end + if mod.Type then + stats.Type = mod.Type + end + legacyMod = describeStats(stats) + else + ConPrintf("Warning: Could not find mod data for legacy mod '%s' in %s", modName, name) + end + end + local modText = legacyMod or mod + if modText then + local order + for i, line in ipairs(modText) do + if i == 1 then + order = mod and mod.statOrder and mod.statOrder[i] or (nextOrder) + end + nextOrder = nextOrder + 1 + if statOrder[order] then + table.insert(statOrder[order], prefix..line) + else + statOrder[order] = { prefix..line } + end + end + end + else + if modLines > 0 or implicits then -- treat as post line e.g. mirrored, or unresolved text mod + -- Unresolved text lines get a sequential order to preserve position among mods + if statOrder[nextOrder] then + table.insert(statOrder[nextOrder], line) + else + statOrder[nextOrder] = { line } + end + nextOrder = nextOrder + 1 + else + out:write(line, "\n") + end + end + else -- spec line + if specName == "Implicits" then + implicits = tonumber(specVal) + else + out:write(line, "\n") + end + end + if implicits and implicits == 0 then + local lines = 0 + for _, l in pairs(statOrder) do + lines = lines + #l + end + out:write("Implicits: "..lines, "\n") + writeMods(out, statOrder) + implicits = nil + statOrder = { } + modLines = 0 + end + end + writeMods(out, statOrder) + for _, line in ipairs(postModLines) do + out:write(line, "\n") + end + out:close() +end + +print("Unique text updated.") diff --git a/src/Export/Scripts/uTextToMods.lua b/src/Export/Scripts/uTextToMods.lua new file mode 100644 index 0000000000..a164cd58f9 --- /dev/null +++ b/src/Export/Scripts/uTextToMods.lua @@ -0,0 +1,233 @@ +if not table.containsId then + dofile("Scripts/mods.lua") +end + +-- Note that these will be normally commented out to prevent accidental legacy mod wording loss on export +-- (before legacy mods have been added to the uniques in src/Data) +local itemTypes = { + -- "axe", + -- "bow", + -- "claw", + -- "dagger", + -- "fishing", + -- "mace", + -- "staff", + -- "sword", + -- "wand", + -- "helmet", + -- "body", + -- "gloves", + -- "boots", + -- "shield", + -- "quiver", + -- "amulet", + -- "ring", + -- "belt", + -- "jewel", + -- "flask", + -- "tincture", +} + +-- TODO: Remove this once we are exporting all item types +local itemTypesTemp = { + "axe", + "bow", + "claw", + "dagger", + "fishing", + "mace", + "staff", + "sword", + "wand", + "helmet", + "body", + "gloves", + "boots", + "shield", + "quiver", + "amulet", + "ring", + "belt", + "jewel", + "flask", + "tincture", +} + +function io.linesBackward(filename) + local file = assert(io.open(filename, "rb")) + local content = file:read("*a") + file:close() + content = content:gsub("\r\n", "\n"):gsub("\r", "\n") + local lines = {} + for line in content:gmatch("([^\n]*)\n?") do + lines[#lines + 1] = line + end + -- Trailing empty entry from final newline + if lines[#lines] == "" then + lines[#lines] = nil + end + local i = #lines + 1 + return function() + i = i - 1 + if i > 0 then + return lines[i] + end + end +end + +local usedMods = {} +local itemUsedMods = {} +local modTextMap = LoadModule("Uniques/ModTextMap.lua") +local uniqueMods = LoadModule("../Data/ModItemExclusive.lua") + +for _, name in pairs(itemTypes) do + -- Reading the file backward lets us see the most current variant lines first + -- This way legacy mods can prefer existing mods and be more likely to match up automatically + -- Note this ONLY works because conventionally we have the most current variant mod listed last + -- if that ever changes due to modOrder, a lot of the `itemUsedMods` logic won't work (and might make things worse in some cases) + local outTbl = {} + for line in io.linesBackward("../Data/Uniques/"..name..".lua") do + if line == "]],[[" then + itemUsedMods = {} -- Reset mod list for trying to keep variants using the same mod + end + local specName, specVal = line:match("^([%a ]+): (.+)$") + if not specName and line ~= "]],[[" then + local variants = line:match("{[vV]ariant:([%d,.]+)}") + local fractured = line:match("({fractured})") or "" + local modText = line:gsub("{.-}", ""):gsub("\xe2\x80\x93", "-") -- Clean tag prefixes and EM dash + local possibleMods = modTextMap[modText:lower()] or {} + local genericText + local genericValues = {} + if variants then + -- Replace numbers with placeholder. Covers 5, -5--10, -5.5-10.5, etc. Ranges are handled later when printing + local genericMatchText = modText:gsub('(%-*%d*%.*%d+%-*%-*%d*%.*%d*)', '#') + local genericMatchMods = modTextMap[genericMatchText:lower()] or {} + local newPossibleMods = {} + for _, mod in ipairs(genericMatchMods) do + if itemUsedMods[mod] then + -- Found previously used mod that matches the generic version, so it's likely just a variant of the other + -- Don't use the found possibleMod, as it might match exactly, but for a different item + table.insert(newPossibleMods, mod) + end + end + if newPossibleMods[1] or #possibleMods == 0 then + genericText = genericMatchText + for val in modText:gmatch('(%-*%d*%.*%d+%-*%-*%d*%.*%d*)') do + table.insert(genericValues, val) + end + possibleMods = #newPossibleMods == 0 and genericMatchMods or newPossibleMods + end + end + local gggMod + if possibleMods[1] then + table.sort(possibleMods, function(a, b) + -- Strongly prefer already used mods for variant purposes + if itemUsedMods[a] == itemUsedMods[b] then + -- Used or not, prefer the mod with the item type + -- This doesn't really work for energy shield mods on shields, but it's a start + if a:lower():match(name) == b:lower():match(name) then + -- Sort types that aren't this one lower + for _, itemType in ipairs(itemTypesTemp) do + if a:lower():match(itemType) and not b:lower():match(itemType) then + return false + end + end + -- No item types in the names, or they had identical item types + -- Implicits preferred + if (a:match("Implicit") and a:lower():match(name)) and not (b:match("Implicit") and b:lower():match(name)) then + return true + elseif (b:match("Implicit") and b:lower():match(name)) and not (a:match("Implicit") and a:lower():match(name)) then + return false + end + -- No implicits, so prefer unused + if usedMods[a] == usedMods[b] then + return a:lower() < b:lower() + else + return not usedMods[a] + end + else + return a:lower():match(name) ~= nil + end + else + return itemUsedMods[a] ~= nil + end + end) + + -- Sorted already, so just pick the top one + gggMod = possibleMods[1] + usedMods[gggMod] = true + itemUsedMods[gggMod] = true + local outLine = fractured + if variants then + outLine = outLine .. "{variant:" .. variants:gsub("%.", ",") .. "}" + end + outLine = outLine .. gggMod + if genericText then + -- Figure out where to put [,] + for _, val in ipairs(genericValues) do + local min, max = val:match("(%-*%d*%.*%d+)-*(%-*%d*%.*%d*)") + if not max or max == "" then max = min end + -- Decimals mean it's not an exact value + -- There are more that should be multiplied, but they're near-impossible to detect this way + local multiplier = genericText:match("critical strike chance") and 1000 or genericText:match("per second") and 60 or 1 + min = tonumber(min) * multiplier + max = tonumber(max) * multiplier + outLine = outLine .. "[" .. min .. "," .. max .. "]" + end + end + table.insert(outTbl, 1, outLine .. "\n") + -- Multi-line mods: remove stale continuation lines from outTbl. + -- Since we read backward, continuation lines (2nd, 3rd, etc.) were + -- processed before the first line and are already in outTbl as raw + -- text. The mod ID we just inserted resolves to ALL lines, so the + -- raw continuation entries are duplicates. + -- Also collect continuations from sibling mods that share the same + -- first line (e.g. Dream/Nightmare jewels have 4 mods with identical + -- first lines but different continuations). + local modData = uniqueMods[gggMod] + if modData and #modData > 1 then + local continuations = {} + -- Find all mods sharing this first line + local firstLine = modData[1]:lower() + local siblingMods = modTextMap[firstLine] or { gggMod } + for _, siblingId in ipairs(siblingMods) do + local siblingData = uniqueMods[siblingId] + if siblingData then + for i = 2, #siblingData do + continuations[siblingData[i]:lower()] = true + end + end + end + -- Find boundary of current item (stop at ]],[[ separator) + local boundary = #outTbl + for j = 2, #outTbl do + local stripped = outTbl[j]:gsub("\n$", "") + if stripped == "]],[[" or stripped == "]]," then + boundary = j - 1 + break + end + end + -- Scan backward within current item, remove matching entries + for j = boundary, 2, -1 do + local cleanLine = outTbl[j]:gsub("{.-}", ""):gsub("%s+$", ""):gsub("\n$", "") + if continuations[cleanLine:lower()] then + table.remove(outTbl, j) + end + end + end + else + ConPrintf("Warning: No mod found for line '%s' in %s", modText, name) + table.insert(outTbl, 1, line .."\n") + end + else + table.insert(outTbl, 1, line .. "\n") + end + end + local out = io.open("Uniques/"..name..".lua", "w") + for _, line in ipairs(outTbl) do + out:write(line) + end + out:close() +end + +print("Unique mods exported.") diff --git a/src/Export/Uniques/ModTextMap.lua b/src/Export/Uniques/ModTextMap.lua new file mode 100644 index 0000000000..5a53fc961b --- /dev/null +++ b/src/Export/Uniques/ModTextMap.lua @@ -0,0 +1,8992 @@ +-- This file is automatically generated, do not edit! +-- Item data (c) Grinding Gear Games + +return { + ["# added passive skill is a jewel socket"] = { "JewelExpansionJewelNodesLarge1", "JewelExpansionJewelNodesMedium", }, + ["# added passive skills are jewel sockets"] = { "JewelExpansionJewelNodesLarge2___", }, + ["# chaos damage taken per second"] = { "ChaosDegenerationAuraNonPlayersUniqueBodyStr3", "ChaosDegenerationAuraNonPlayersUnique__1", "ChaosDegenerationAuraPlayersUniqueBodyStr3", "ChaosDegenerationAuraPlayersUnique__1", }, + ["# cold damage taken per second per frenzy charge while moving"] = { "DamageTakenPerFrenzyChargeMovingUnique__1", }, + ["# dexterity per # dexterity on allocated passives in radius"] = { "AdditionalDexterityPerAllocatedDexterityJewelUnique__1", }, + ["# enemy writhing worms escape the flask when used"] = { "SummonsWormsOnUse", }, + ["# fire damage taken from hits per mana burn"] = { "TinctureFireDamageTakenPerToxicityUnique__1", }, + ["# fire damage taken per second per endurance charge if you've been hit recently"] = { "DamageTakenPerEnduranceChargeWhenHitUnique__1_", }, + ["# intelligence per # intelligence on allocated passives in radius"] = { "AdditionalIntelligencePerAllocatedIntelligenceJewelUnique__1__", }, + ["# life gained on kill per frenzy charge"] = { "LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6", }, + ["# lightning damage taken per second per power charge if"] = { "DamageTakenPerPowerChargeOnCritUnique__1", }, + ["# maximum void charges"] = { "MaximumVoidArrowsUnique__1", }, + ["# physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueAmulet8", "PhysicalAttackDamageReducedUniqueBelt3", "PhysicalAttackDamageReducedUniqueBodyDex2", }, + ["# physical damage taken from projectile attacks"] = { "RangedAttackDamageReducedUniqueShieldStr1", }, + ["# physical damage taken on minion death"] = { "PhysicalDamageToSelfOnMinionDeathUniqueRing33", }, + ["# prefix modifier allowed"] = { "MaxPrefixMaxSuffixImplicitE1__", "MaxPrefixMaxSuffixModEffectImplicitE1", "MaxPrefixMaxSuffixModEffectImplicitE3", }, + ["# prefix modifiers allowed"] = { "MaxPrefixMaxSuffixImplicitE5", "MaxPrefixMaxSuffixImplicitE6", "MaxPrefixMaxSuffixModEffectImplicitE2", }, + ["# strength per # strength on allocated passives in radius"] = { "AdditionalStrengthPerAllocatedStrengthJewelUnique__1_", }, + ["# to # added cold damage per frenzy charge"] = { "AddedColdDamagePerFrenzyChargeUnique__1", }, + ["# to # added fire damage with bow attacks"] = { "AddedFireDamageImplicitQuiver10", "AddedFireDamageUniqueQuiver1a", }, + ["# to # added physical damage with bow attacks"] = { "AddedPhysicalDamageImplicitQuiver11", "AddedPhysicalDamageImplicitQuiver6_", "AddedPhysicalDamageImplicitQuiverDescent", "AddedPhysicalDamageUniqueQuiver8", }, + ["# to (#) added attack lightning damage per # accuracy rating"] = { "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR1_", "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR2_", "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR3", }, + ["# to (#) spell lightning damage per # intelligence"] = { "SpellLightningDamagePerIntelligenceUnique__1", }, + ["# to accuracy rating"] = { "IncreasedAccuracyUniqueTwoHandMace3", "IncreasedAccuracyUnique__9____", "ReducedAccuracyUniqueTwoHandSword5", }, + ["# to level of socketed non-vaal gems"] = { "LocalIncreaseSocketedNonVaalGemLevelUnique__1", }, + ["# to level of socketed skill gems per socketed gem"] = { "LocalIncreaseSocketedGemLevelPerFilledSocketUnique__1", }, + ["# to level of socketed support gems"] = { "SocketedActiveGemLevelSupportGemPenaltyImplicitR1", "SocketedActiveGemLevelSupportGemPenaltyImplicitR2", }, + ["# to maximum endurance charges"] = { "ReducedMaximumEnduranceChargeUniqueCorruptedJewel17", "ReducedMaximumEnduranceChargeUnique__1", "ReducedMaximumEnduranceChargeUnique__2", }, + ["# to maximum frenzy charges"] = { "ReducedMaximumFrenzyChargesUniqueCorruptedJewel16", "ReducedMaximumFrenzyChargesUnique__1", "ReducedMaximumFrenzyChargesUnique__2_", }, + ["# to maximum life"] = { "ReducedLifeUniqueGlovesDexInt4", }, + ["# to maximum number of summoned golems"] = { "MaximumGolemsUnique__4_", }, + ["# to maximum power charges"] = { "ReducedMaximumPowerChargesUniqueCorruptedJewel18", "ReducedMaximumPowerChargesUnique__1", }, + ["# to total mana cost of skills for each corrupted item equipped"] = { "TotalManaCostPerCorruptedItemUnique__1", }, + ["#% additional physical damage reduction"] = { "FortifyEffectCrushed1", "FortifyEffectCrushed2_", "FortifyEffectCrushed3_", "UulNetolBreachRingImplicit", }, + ["#% additional physical damage reduction from hits per siphoning charge"] = { "AdditionalPhysicalDamageReductionPerSiphoningChargeUnique__1", }, + ["#% additional physical damage reduction per # strength on allocated passives in radius"] = { "AdditionalPhysicalReductionPerAllocatedStrengthJewelUnique__1", }, + ["#% additional physical damage reduction per frenzy charge"] = { "ChargeBonusPhysicalDamageReductionPerFrenzyCharge__", }, + ["#% additional physical damage reduction per keystone"] = { "PhysicalDamageReductionPerKeystoneUnique__1", }, + ["#% additional physical damage reduction per power charge"] = { "ChargeBonusPhysicalDamageReductionPerPowerCharge_", }, + ["#% additional physical damage reduction while affected by herald of purity"] = { "HeraldBonusPurityPhysicalDamageReduction", }, + ["#% additional physical damage reduction while moving"] = { "AdditionalPhysicalDamageReductionWhileMovingUnique__1", }, + ["#% additional physical damage reduction while stationary"] = { "PhysicalDamageReductionWhileNotMovingUnique__1", }, + ["#% chance for energy shield recharge to start when you use a skill"] = { "StartEnergyShieldRechargeOnSkillUnique__1", }, + ["#% chance for impales on enemies you kill to reflect damage to surrounding enemies"] = { "EnemiesKilledApplyImpaleDamageUnique__1", }, + ["#% chance for poisons inflicted with this weapon to deal #% more damage"] = { "LocalChanceForPoisonDamage300FinalInflictedWithThisWeaponUnique__1_", }, + ["#% chance for slain monsters to drop an additional scroll of wisdom"] = { "IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14", }, + ["#% chance for spell hits against you to inflict poison"] = { "ChanceToBePoisonedBySpellsUnique__1_", }, + ["#% chance that if you would gain a crab barrier, you instead gain up to"] = { "ChanceToGainMaximumCrabBarriersUnique__1_", }, + ["#% chance that if you would gain endurance charges, you instead gain up to maximum endurance charges"] = { "ChargeBonusChanceToGainMaximumEnduranceCharges", }, + ["#% chance that if you would gain frenzy charges, you instead gain up to your maximum number of frenzy charges"] = { "ChargeBonusChanceToGainMaximumFrenzyCharges", }, + ["#% chance that if you would gain power charges, you instead gain up to"] = { "ChanceToGainMaximumPowerChargesUnique__1_", "ChargeBonusChanceToGainMaximumPowerCharges", }, + ["#% chance to avoid being chilled"] = { "ChanceToAvoidChillUniqueDescentOneHandAxe1", "ChanceToAvoidChilledUnique__1", "ChanceToAvoidFreezeAndChillUniqueDexHelmet5", "JewelImplicitChanceToAvoidChill", }, + ["#% chance to avoid being chilled during effect"] = { "AvoidChillUniqueFlask8", }, + ["#% chance to avoid being chilled during onslaught"] = { "CannotBeChilledWhenOnslaughtUniqueOneHandAxe6", }, + ["#% chance to avoid being chilled or frozen if you have used a fire skill recently"] = { "AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1", }, + ["#% chance to avoid being frozen"] = { "JewelImplicitChanceToAvoidFreeze", }, + ["#% chance to avoid being frozen during effect"] = { "AvoidFreezeUniqueFlask8", }, + ["#% chance to avoid being ignited"] = { "JewelImplicitChanceToAvoidIgnite", }, + ["#% chance to avoid being ignited while on low life"] = { "AvoidIgniteOnLowLifeUniqueShieldStrInt5", }, + ["#% chance to avoid being ignited, chilled or frozen with her blessing"] = { "UniqueConditionOnBuff__1", }, + ["#% chance to avoid being poisoned"] = { "ChanceToAvoidPoisonUnique__1", "JewelImplicitChanceToAvoidPoison", }, + ["#% chance to avoid being shocked"] = { "JewelImplicitChanceToAvoidShock", }, + ["#% chance to avoid being shocked while chilled"] = { "CannotBeShockedWhileChilledUnique__1", }, + ["#% chance to avoid being stunned"] = { "AvoidStunUnique__1", "JewelImplicitChanceToAvoidStun", "StunAvoidanceUniqueOneHandSword13", "StunAvoidanceUnique___1", }, + ["#% chance to avoid being stunned for each herald buff affecting you"] = { "StunAvoidancePerHeraldUnique__1", }, + ["#% chance to avoid bleeding"] = { "ChanceToAvoidBleedingUnique__2_", }, + ["#% chance to avoid elemental ailments"] = { "AvoidElementalAilmentsUnique__1_", "ChanceToAvoidElementalStatusAilmentsUniqueJewel46", }, + ["#% chance to avoid elemental ailments per grand spectrum"] = { "AvoidElementalAilmentsPerStackableJewelUnique__1", }, + ["#% chance to avoid elemental ailments while phasing"] = { "ChanceToDodgeSpellsWhilePhasing_Unique_1", }, + ["#% chance to avoid elemental damage from hits per frenzy charge"] = { "AvoidElementalDamagePerFrenzyChargeUnique__1", }, + ["#% chance to avoid fire damage from hits"] = { "ChanceToAvoidFireDamageUnique__1", }, + ["#% chance to avoid projectiles while phasing"] = { "ChanceToAvoidProjectilesWhilePhasingUnique__1", }, + ["#% chance to be inflicted with bleeding when hit by an attack"] = { "ReceiveBleedingWhenHitUnique__1_", }, + ["#% chance to blind enemies on critical strike"] = { "ChanceToBlindOnCriticalStrikesUnique__1", }, + ["#% chance to blind enemies on hit"] = { "BlindingHitUniqueWand1", }, + ["#% chance to blind enemies on hit with attacks"] = { "AttacksBlindOnHitChanceUnique__1", }, + ["#% chance to blind enemies on hit with melee weapons"] = { "TinctureChanceToBlindImplicit1", }, + ["#% chance to blind enemies when they hit you"] = { "BlindEnemiesWhenHitUber1__", }, + ["#% chance to blind nearby enemies when gaining her blessing"] = { "UniqueEffectOnBuff__3", }, + ["#% chance to block"] = { "SubtractedBlockChanceUniqueShieldStrInt8", }, + ["#% chance to block attack damage"] = { "AdditionalBlockUnique__2", "BlockPercentMarakethDaggerImplicit1", "BlockPercentMarakethDaggerImplicit2_", "BlockPercentUniqueDescentStaff1", "BlockPercentUniqueHelmetStrDex4", "BlockPercentUnique__2", }, + ["#% chance to block attack damage for every # fire damage taken from hits recently"] = { "AttackBlockPerFireDamageTakenUnique__1", }, + ["#% chance to block spell damage"] = { "BlockingBlocksSpellsUniqueAmulet1", "BlockingBlocksSpellsUnique__1", "SpellBlockPercentageUniqueShieldInt4", "SpellBlockUniqueDescentShieldStr1", "SpellBlockUniqueShieldInt4", "SpellBlockUniqueTwoHandAxe6", }, + ["#% chance to block spell damage while on low life"] = { "SpellBlockOnLowLifeUniqueShieldStrDex1", }, + ["#% chance to cause bleeding enemies to flee on hit"] = { "BleedingEnemiesFleeOnHitUnique__1", }, + ["#% chance to cause bleeding on critical strike"] = { "BleedOnMeleeCriticalStrikeUnique__1", "CausesBleedingOnCritUniqueDagger11", "CauseseBleedingOnCritUniqueDagger9", }, + ["#% chance to cause bleeding on hit"] = { "CausesBleedingUniqueOneHandAxe5", "CausesBleedingUniqueOneHandAxe5Updated_", "CausesBleedingUniqueTwoHandAxe4", "CausesBleedingUniqueTwoHandAxe4Updated", "CausesBleedingUniqueTwoHandAxe7", "CausesBleedingUniqueTwoHandAxe7Updated", "CausesBleedingUnique__1", "CausesBleedingUnique__1Updated_", "CausesBleedingUnique__2", "CausesBleedingUnique__2Updated", "LocalChanceToBleedImplicitMarakethRapier1", "LocalChanceToBleedImplicitMarakethRapier2", "LocalChanceToBleedUniqueDagger12", "LocalChanceToBleedUniqueOneHandMace8", "LocalChanceToBleedUnique__1", "LocalChanceToBleedUnique__1__", "LocalChanceToBleedUnique__2", "VillageLocalChanceToBleed", }, + ["#% chance to cause bleeding with melee weapons"] = { "TinctureChanceToBleedImplicit1", }, + ["#% chance to cause enemies to flee on use"] = { "MonstersFleeOnFlaskUseUniqueFlask9", }, + ["#% chance to cause monster to flee on block"] = { "ChanceForEnemyToFleeOnBlockUniqueShieldDex4", }, + ["#% chance to cause monsters to flee"] = { "HitsCauseMonsterFleeUniqueBootsStrInt1", "HitsCauseMonsterFleeUniqueRing1", "HitsCauseMonsterFleeUnique__1", }, + ["#% chance to cause poison on critical strike"] = { "CausesPoisonOnCritUniqueDagger9", }, + ["#% chance to cover enemies in ash on hit"] = { "CoverInAshOnHitUnique__1", }, + ["#% chance to create a smoke cloud when hit"] = { "SmokeCloudWhenHitUniqueQuiver9", }, + ["#% chance to create chilled ground when hit with an attack"] = { "SpreadChilledGroundWhenHitByAttackUnique__1", }, + ["#% chance to create chilled ground when you freeze an enemy"] = { "SpreadChilledGroundOnFreezeUnique__1", }, + ["#% chance to create consecrated ground when you block"] = { "ConsecratedGroundOnBlockUniqueBodyInt8", }, + ["#% chance to create desecrated ground when you block"] = { "DesecratedGroundOnBlockUniqueBodyStrInt4", }, + ["#% chance to create profane ground on critical"] = { "ProfaneGroundCriticalStrikeINTHighestUnique__1", }, + ["#% chance to create shocked ground when hit"] = { "ShockedGroundWhenHitUniqueHelmetInt10", }, + ["#% chance to curse non-cursed enemies with a random hex on hit"] = { "RandomCurseOnHitChanceUniqueHelmetInt10", }, + ["#% chance to curse non-cursed enemies with enfeeble on hit"] = { "EnfeebleOnHitUniqueShieldStr3", }, + ["#% chance to deal double damage"] = { "DoubleDamageChanceImplicitMace1", }, + ["#% chance to deal double damage per # strength"] = { "DoubleDamagePer500StrengthUnique__1", }, + ["#% chance to deal double damage while affected by glorious madness"] = { "DoubleDamageChanceGloriousMadnessUnique_1", }, + ["#% chance to deal double damage while you have at least # strength"] = { "DoubleDamageWith200StrengthUnique__1", }, + ["#% chance to deal triple damage while you have at least # strength"] = { "TripleDamageWith400StrengthUnique__1", }, + ["#% chance to double stun duration"] = { "ChanceForDoubleStunDurationImplicitMace_1", "ChanceForDoubleStunDurationUnique__1", }, + ["#% chance to freeze"] = { "ChanceToFreezeUniqueRing30", "ChanceToFreezeUniqueStaff2", "ChanceToFreezeUnique__1", "ChanceToFreezeUnique__2", "ChanceToFreezeUnique__3", "ChanceToFreezeUnique__4", "ChanceToFreezeUnique__5", }, + ["#% chance to freeze enemies for # second when they hit you"] = { "FreezeEnemiesWhenHitChanceUnique__1", }, + ["#% chance to freeze with melee weapons"] = { "TinctureChanceToFreezeImplicit1", }, + ["#% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteDescentUniqueQuiver1", "ChanceToFreezeShockIgniteUniqueDescentWand1", "ChanceToFreezeShockIgniteUniqueHelmetDexInt4", "ChanceToFreezeShockIgniteUniqueRing21", }, + ["#% chance to gain a flask charge when you deal a critical strike"] = { "FlaskChanceRechargeOnCritUnique__1", }, + ["#% chance to gain a frenzy charge on hit"] = { "ChargeBonusFrenzyChargeOnHit__", }, + ["#% chance to gain a frenzy charge on kill"] = { "ChargeBonusFrenzyChargeOnKill", "FrenzyChargeOnKillChanceProphecy", "FrenzyChargeOnKillChanceUniqueAmulet15", "FrenzyChargeOnKillChanceUniqueDescentOneHandSword1", "FrenzyChargeOnKillChanceUnique__1", "FrenzyChargeOnKillChanceUnique__2", "TalismanFrenzyChargeOnKill", }, + ["#% chance to gain a frenzy charge on killing a frozen enemy"] = { "ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1", }, + ["#% chance to gain a frenzy charge when you stun an enemy"] = { "ChanceToGainFrenzyChargeOnStunUnique__1", }, + ["#% chance to gain a frenzy charge when your trap is triggered by an enemy"] = { "GainFrenzyChargeOnTrapTriggeredUnique__1", }, + ["#% chance to gain a power charge if you knock an enemy back with melee damage"] = { "PowerChargeOnKnockbackUniqueStaff7", }, + ["#% chance to gain a power charge on critical strike"] = { "ChargeBonusPowerChargeOnCrit", "PowerChargeOnCriticalStrikeChanceUnique__1", }, + ["#% chance to gain a power charge on hit"] = { "PowerChargeOnHitUnique__1", }, + ["#% chance to gain a power charge on hitting an enemy affected by a spider's web"] = { "PowerChargeOnHitWebbedEnemyUnique__1", }, + ["#% chance to gain a power charge on kill"] = { "ChargeBonusPowerChargeOnKill", "PowerChargeOnKillChanceProphecy_", "PowerChargeOnKillChanceUniqueAmulet15", "PowerChargeOnKillChanceUniqueDescentDagger1", "PowerChargeOnKillChanceUniqueUniqueShieldInt3", "TalismanPowerChargeOnKill", }, + ["#% chance to gain a power charge when you hit a frozen enemy"] = { "PowerChargeOnHittingFrozenEnemyUnique__1", }, + ["#% chance to gain a power charge when you stun"] = { "PowerChargeOnStunUniqueSceptre10", }, + ["#% chance to gain a power charge when you stun with melee damage"] = { "PowerChargeOnMeleeStunUniqueSceptre10", }, + ["#% chance to gain a power charge when you throw a trap"] = { "PowerChargeOnTrapThrowChanceUniqueShieldDexInt1", }, + ["#% chance to gain a siphoning charge when you use a skill"] = { "SiphoningChargeOnSkillUseUnique__1", }, + ["#% chance to gain adrenaline for # seconds when leech is"] = { "AdrenalineOnFillingLifeLeechUnique__1", }, + ["#% chance to gain an additional vaal soul on kill"] = { "VillageAdditionalVaalSoulOnKill", }, + ["#% chance to gain an additional vaal soul per enemy shattered"] = { "AdditionalVaalSoulOnShatterUniqueCorruptedJewel7", }, + ["#% chance to gain an endurance charge on kill"] = { "ChargeBonusEnduranceChargeOnKill", "EnduranceChargeOnKillChanceProphecy", "TalismanEnduranceChargeOnKill_", }, + ["#% chance to gain an endurance charge when you block"] = { "ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1", "ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4", }, + ["#% chance to gain an endurance charge when you stun an enemy"] = { "GainEnduranceChargeOnStunChanceUber1", }, + ["#% chance to gain an endurance, frenzy or power charge when any"] = { "RandomChargeOnTrapTriggerUnique__1", }, + ["#% chance to gain chaotic might for # seconds on kill"] = { "UnholyMightOnKillPercentChanceUnique__1", }, + ["#% chance to gain onslaught for # seconds on kill"] = { "OnslaugtOnKillPercentChanceUnique__1", }, + ["#% chance to gain onslaught for # seconds when leech is"] = { "OnslaughtOnFillingLifeLeechUnique__1", }, + ["#% chance to gain phasing for # seconds when your trap is triggered by an enemy"] = { "PhasingOnTrapTriggeredUnique__1", }, + ["#% chance to gain unholy might for # seconds on melee kill"] = { "UnholyMightOnMeleeKillUniqueJewel28", }, + ["#% chance to gain unholy might on block for # seconds"] = { "UnholyMightOnBlockChanceUniqueShieldStrInt8", }, + ["#% chance to grant a frenzy charge to nearby allies on hit"] = { "GrantAlliesFrenzyChargeOnHitUnique__1", }, + ["#% chance to grant a frenzy charge to nearby allies on kill"] = { "GrantsAlliesFrenzyChargeOnKillUnique__1_", }, + ["#% chance to grant a power charge to nearby allies on kill"] = { "GrantAlliesPowerChargeOnKillUnique__1", }, + ["#% chance to grant an endurance charge to nearby allies on hit"] = { "GrantsAlliesEnduranceChargeOnHitUnique__1", }, + ["#% chance to grant chaotic might to nearby enemies on kill"] = { "GrantEnemiesUnholyMightOnKillUnique__1", }, + ["#% chance to grant onslaught to nearby enemies on kill"] = { "GrantEnemiesOnslaughtOnKillUnique__1", }, + ["#% chance to ignite"] = { "ChanceToIgniteUniqueBodyInt2", "ChanceToIgniteUniqueDescentOneHandMace1", "ChanceToIgniteUniqueOneHandSword4", "ChanceToIgniteUniqueRing38", "ChanceToIgniteUniqueTwoHandSword6", "ChanceToIgniteUnique__2", "ChanceToIgniteUnique__3", "ChanceToIgniteUnique__5", "IncreasedChanceToIgniteUniqueRing31", "IncreasedChanceToIgniteUnique__1", }, + ["#% chance to ignite when in main hand"] = { "MainHandChanceToIgniteUniqueOneHandAxe2", }, + ["#% chance to ignite with melee weapons"] = { "TinctureChanceToIgniteImplicit1", }, + ["#% chance to impale enemies on hit with attacks"] = { "ChanceToImpaleUnique__1", }, + ["#% chance to impale on spell hit"] = { "ChanceToImpaleWithSpellsUnique__1", }, + ["#% chance to inflict an additional poison on the same target when you inflict poison"] = { "ApplyAdditionalPoisonUnique__1", }, + ["#% chance to inflict bleeding on critical strike with attacks"] = { "BleedOnCritUnique__1_", }, + ["#% chance to inflict bleeding on hit with attacks against taunted enemies"] = { "ChanceToBleedOnTauntedEnemiesUber1", }, + ["#% chance to inflict cold exposure on hit"] = { "ColdExposureOnHitUnique__1", }, + ["#% chance to inflict fire exposure on hit"] = { "FireExposureOnHitUnique__1", }, + ["#% chance to knock enemies back on hit"] = { "KnockbackChanceUnique__1", }, + ["#% chance to maim enemies on critical strike with attacks"] = { "MaimOnCritUnique__1", }, + ["#% chance to maim on hit"] = { "DodgeImplicitMarakethSword1", "DodgeImplicitMarakethSword2", "LocalMaimOnHit2HImplicit_1", }, + ["#% chance to poison on hit"] = { "ChanceToPoisonUnique__1_______", "LocalChanceToPoisonOnHitUnique__1", "LocalChanceToPoisonOnHitUnique__2", "LocalChanceToPoisonOnHitUnique__3", "LocalChanceToPoisonOnHitUnique__4", "VillageLocalChanceToPoisonOnHit", }, + ["#% chance to poison on hit during effect"] = { "FlaskChanceToPoisonUnique__1", }, + ["#% chance to poison on hit with attacks"] = { "ChanceToPoisonWithAttacksUnique___1", }, + ["#% chance to poison with melee weapons"] = { "TinctureChanceToPoisonImplicit1", }, + ["#% chance to remove # mana burn on kill"] = { "TinctureRemoveToxicityOnKillUnique__1", }, + ["#% chance to shock"] = { "ChanceToShockUniqueBow10", "ChanceToShockUniqueDescentTwoHandSword1", "ChanceToShockUniqueGlovesStr4", "ChanceToShockUniqueRing29", "ChanceToShockUniqueStaff8", "ChanceToShockUnique__1", "ChanceToShockUnique__2_", }, + ["#% chance to shock chilled enemies"] = { "ChanceToShockChilledEnemiesUnique__1", }, + ["#% chance to shock with melee weapons"] = { "TinctureChanceToShockImplicit1", }, + ["#% chance to spread tar when hit"] = { "GroundTarOnHitTakenUnique__1", }, + ["#% chance to steal power, frenzy, and endurance charges on hit"] = { "StealChargesOnHitPercentUniqueGlovesStrDex6", }, + ["#% chance to trigger level # animate guardian's weapon when animated weapon kills an enemy"] = { "AnimateGuardianWeaponOnAnimatedWeaponKillUnique__1", }, + ["#% chance to trigger level # animate weapon on kill"] = { "TriggeredAnimateWeaponUnique__1", }, + ["#% chance to trigger level # molten burst on melee hit"] = { "MoltenBurstOnMeleeHitUnique__1", }, + ["#% chance to trigger level # raise spiders on kill"] = { "SummonSpidersOnKillUnique__1", }, + ["#% chance to trigger level # shade form when you use a socketed skill"] = { "LocalDisplayGrantLevelXShadeFormUnique__1", }, + ["#% chance to trigger level # summon raging spirit on kill"] = { "SummonRagingSpiritOnKillUnique__1", "VillageSummonRagingSpiritOnKill", }, + ["#% chance to trigger level # summon spectral wolf on critical strike with this weapon"] = { "SummonWolfOnCritUnique__1", }, + ["#% chance to trigger level # summon volatile anomaly on kill"] = { "SummonVoidSphereOnKillUnique__1_", }, + ["#% chance to trigger level # tentacle whip on kill"] = { "TentacleSmashOnKillUnique__1_", }, + ["#% chance to trigger socketed spell on kill, with a # second cooldown"] = { "TriggerSocketedSpellOnKillUnique__1", }, + ["#% chance to trigger socketed spells on killing a shocked enemy"] = { "CastSocketedSpellsOnShockedEnemyKillUnique__1", }, + ["#% chance to trigger socketed spells when you spend at least # mana on an"] = { "ChanceToCastOnManaSpentUnique__1", }, + ["#% chance to trigger summon spirit of ahuana on kill"] = { "RamakosEmbraceOnKillUnique__1", }, + ["#% chance to trigger summon spirit of akoya on kill"] = { "TukohamasEmbraceOnKillUnique__1", }, + ["#% chance to trigger summon spirit of ikiaho on kill"] = { "ArohonguisEmbraceOnKillUnique__1", }, + ["#% chance to trigger summon spirit of kahuturoa on kill"] = { "RongokuraisEmbraceOnKillUnique__1", }, + ["#% chance to trigger summon spirit of kaom on kill"] = { "NgamahusEmbraceOnKillUnique__1", }, + ["#% chance to trigger summon spirit of kiloava on kill"] = { "ValakosEmbraceOnKillUnique__1", }, + ["#% chance to trigger summon spirit of maata on kill"] = { "TawhoasEmbraceOnKillUnique__1", }, + ["#% chance to trigger summon spirit of rakiata on kill"] = { "TasaliosEmbraceOnKillUnique__1", }, + ["#% chance to trigger summon spirit of tawhanuku on kill"] = { "HinekorasEmbraceOnKillUnique__1", }, + ["#% chance to trigger summon spirit of utula on kill"] = { "KitavasEmbraceOnKillUnique__1", }, + ["#% chance when you kill a magic monster to gain its modifiers for # seconds"] = { "GainMagicMonsterModsOnKillUnique__1_", }, + ["#% faster start of energy shield recharge"] = { "ReducedEnergyShieldDelayUniqueBodyInt1", "ReducedEnergyShieldDelayUniqueCorruptedJewel15", "ReducedEnergyShieldDelayUniqueQuiver7", }, + ["#% global chance to blind enemies on hit"] = { "GlobalChanceToBlindOnHitUniqueSceptre8", }, + ["#% increased accuracy rating per frenzy charge"] = { "AccuracyRatingPerFrenzyChargeUniqueGlovesDexInt5", "ChargeBonusAccuracyRatingPerFrenzyCharge", }, + ["#% increased accuracy rating when on low life"] = { "IncreasedAccuracyWhenOnLowLifeUniqueClaw4", }, + ["#% increased arctic armour buff effect"] = { "ArcticArmourBuffEffectUnique__1_", }, + ["#% increased area damage"] = { "AreaDamageImplicitMace1", "AreaDamageUniqueDescentOneHandSword1", "AreaDamageUnique__1", }, + ["#% increased area damage per # devotion"] = { "AreaDamagePerDevotion", }, + ["#% increased area damage per # strength"] = { "AreaDamagePerStrengthUber1", }, + ["#% increased area of effect"] = { "AreaOfEffectImplicitMarakethTwoHandMace1", "AreaOfEffectImplicitMarakethTwoHandMace2", "AreaOfEffectImplicitTwoHandMace1__", "AreaOfEffectImplicitTwoHandMace2_", "AreaOfEffectUniqueDagger1", "AreaOfEffectUniqueDescentOneHandSword1", "AreaOfEffectUniqueDescentStaff1", "AreaOfEffectUniqueQuiver6", "AreaOfEffectUniqueShieldDex7", "AreaOfEffectUniqueShieldDexInt2", "AreaOfEffectUnique__1", "AreaOfEffectUnique__2_", "AreaOfEffectUnique__3", "AreaOfEffectUnique__4_", "AreaOfEffectUnique__5", "AreaOfEffectUnique__7_", "AreaOfEffectUnique__9", }, + ["#% increased area of effect for attacks"] = { "IncreasedAttackAreaOfEffectUnique__1_", "IncreasedAttackAreaOfEffectUnique__2_", }, + ["#% increased area of effect for skills used by totems"] = { "TotemAreaOfEffectUniqueShieldStr5", }, + ["#% increased area of effect if you have at least # strength"] = { "AreaOfEffectWith500StrengthUber1", }, + ["#% increased area of effect if you have blocked recently"] = { "AreaOfEffectIfBlockedRecentlyUber1", }, + ["#% increased area of effect of aura skills"] = { "AuraIncreasedIncreasedAreaOfEffectUniqueStaff5", "AuraIncreasedIncreasedAreaOfEffectUnique_1", "IncreasedAuraRadiusUnique__1", }, + ["#% increased area of effect of hex skills"] = { "CurseAreaOfEffectUniqueStaff5", "CurseAreaOfEffectUnique__1", "CurseAreaOfEffectUnique__2_", "CurseAreaOfEffectUnique__3", }, + ["#% increased area of effect per # intelligence"] = { "WeaponPhysicalDamagePerStrength", }, + ["#% increased area of effect per # rampage kills"] = { "AreaOfEffectPer25RampageStacksUnique__1_", }, + ["#% increased area of effect per endurance charge"] = { "AreaOfEffectPerEnduranceChargeUnique__1", }, + ["#% increased area of effect per enemy killed recently, up to #%"] = { "AreaOfEffectPerEnemyKilledRecentlyUnique__1", }, + ["#% increased area of effect per power charge"] = { "AreaOfEffectPerPowerChargeUber1", }, + ["#% increased area of effect while fortified"] = { "AreaOfEffectWhileFortifiedUber1", }, + ["#% increased area of effect while you have no frenzy charges"] = { "IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_", }, + ["#% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__4", "LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrInt1", }, + ["#% increased armour against projectiles"] = { "ArmourPercent VsProjectilesUniqueShieldStr2", }, + ["#% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__19", "LocalIncreasedArmourAndEnergyShieldUnique__22", "LocalIncreasedArmourAndEnergyShieldUnique__4", }, + ["#% increased armour and evasion rating if you've killed a taunted enemy recently"] = { "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1", }, + ["#% increased armour per # reserved mana"] = { "GainArmourEqualToManaReservedUnique__1", }, + ["#% increased armour per # strength when in off hand"] = { "ArmourPerStrengthInOffHandUniqueSceptre6", }, + ["#% increased armour per endurance charge"] = { "ChargeBonusArmourPerEnduranceCharge", }, + ["#% increased armour while chilled or frozen"] = { "IncreasedArmourWhileChilledOrFrozenUnique__1", }, + ["#% increased armour while not ignited, frozen or shocked"] = { "ArmourWhileNotIgnitedFrozenShockedBelt8", }, + ["#% increased armour while stationary"] = { "IncreasedArmourWhileStationaryUnique__1", }, + ["#% increased aspect of the avian buff effect"] = { "AvianAspectBuffEffectUnique__1", }, + ["#% increased attack and cast speed"] = { "AttackAndCastSpeedJewelUniqueJewel43", }, + ["#% increased attack and cast speed if you've used a movement skill recently"] = { "AttackAndCastSpeedOnUsingMovementSkillUnique__1", }, + ["#% increased attack and cast speed per endurance charge"] = { "ChargeBonusAttackAndCastSpeedPerEnduranceCharge", }, + ["#% increased attack and cast speed per power charge"] = { "ChargeBonusAttackAndCastSpeedPerPowerCharge", }, + ["#% increased attack and cast speed per summoned raging spirit"] = { "AttackAndCastSpeedPerRagingSpiritUnique__1", }, + ["#% increased attack and movement speed with her blessing"] = { "UniqueConditionOnBuff__2", }, + ["#% increased attack critical strike chance per # accuracy rating"] = { "IncreasedCriticalStrikeChancePerAccuracyRatingUnique__1", }, + ["#% increased attack damage"] = { "AttackDamageUniqueJewel42", }, + ["#% increased attack damage against bleeding enemies"] = { "AttackDamageAgainstBleedingUniqueDagger11", "AttackDamageAgainstBleedingUniqueOneHandMace8", }, + ["#% increased attack damage per # armour"] = { "AttackDamagePer450ArmourUnique__1__", }, + ["#% increased attack damage per # evasion rating"] = { "EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9", }, + ["#% increased attack damage per # of the lowest of armour and evasion rating"] = { "AttackDamagePerLowestArmourOrEvasionUnique__1", }, + ["#% increased attack damage per level"] = { "AttackDamageIncreasedPerLevelUniqueSceptre8", }, + ["#% increased attack speed"] = { "IncreasedAttackSpeedImplicitShield1", "IncreasedAttackSpeedImplicitShield2", "IncreasedAttackSpeedImplicitShield3", "IncreasedAttackSpeedUniqueBodyDex5", "IncreasedAttackSpeedUniqueBodyDex7", "IncreasedAttackSpeedUniqueBootsDexInt1", "IncreasedAttackSpeedUniqueGlovesDex2", "IncreasedAttackSpeedUniqueGlovesDexInt3", "IncreasedAttackSpeedUniqueHelmetDex4", "IncreasedAttackSpeedUniqueHelmetDex6", "IncreasedAttackSpeedUniqueHelmetStrDex2", "IncreasedAttackSpeedUniqueQuiver1", "IncreasedAttackSpeedUniqueQuiver9", "LocalIncreasedAttackSpeedImplicitMarakethOneHandMace1", "LocalIncreasedAttackSpeedImplicitMarakethOneHandMace2", "LocalIncreasedAttackSpeedUniqueBow2", "LocalIncreasedAttackSpeedUniqueBow3", "LocalIncreasedAttackSpeedUniqueBow4", "LocalIncreasedAttackSpeedUniqueBow5", "LocalIncreasedAttackSpeedUniqueClaw2", "LocalIncreasedAttackSpeedUniqueClaw3", "LocalIncreasedAttackSpeedUniqueDagger12", "LocalIncreasedAttackSpeedUniqueDagger3", "LocalIncreasedAttackSpeedUniqueDescentBow1", "LocalIncreasedAttackSpeedUniqueDescentDagger1", "LocalIncreasedAttackSpeedUniqueDescentOneHandMace1", "LocalIncreasedAttackSpeedUniqueOneHandMace1", "LocalIncreasedAttackSpeedUniqueOneHandMace8", "LocalIncreasedAttackSpeedUniqueOneHandSword1", "LocalIncreasedAttackSpeedUniqueOneHandSword12", "LocalIncreasedAttackSpeedUniqueRapier1", "LocalIncreasedAttackSpeedUniqueTwoHandMace4", "LocalIncreasedAttackSpeedUniqueTwoHandSword1", "LocalIncreasedAttackSpeedUniqueTwoHandSword3", }, + ["#% increased attack speed if you have blocked recently"] = { "AttackSpeedIfBlockedRecentlyUber1", }, + ["#% increased attack speed if you've taken a savage hit recently"] = { "AttackSpeedAfterSavageHitTakenUnique__1", }, + ["#% increased attack speed per # dexterity"] = { "AttackSpeedPerDexterity", "IncreasedAttackSpeedPerDexterityUnique__1", }, + ["#% increased attack speed per #% quality"] = { "LocalAugmentedQualityE1", "LocalAugmentedQualityE2", "LocalAugmentedQualityE3", }, + ["#% increased attack speed per fortification"] = { "AttackSpeedPerFortificationUnique__1", }, + ["#% increased attack speed per frenzy charge"] = { "AttackSpeedPerFrenzyChargeUniqueGlovesDexInt5", }, + ["#% increased attack speed when on full life"] = { "AttackSpeedOnFullLifeUniqueDescentHelmet1", "AttackSpeedOnFullLifeUniqueGlovesStr1", }, + ["#% increased attack speed when on low life"] = { "IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4", "IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1", "IncreasedAttackSpeedWhenOnLowLifeUnique__1", }, + ["#% increased attack speed with movement skills"] = { "AttackSpeedWithMovementSkillsUniqueClaw9", }, + ["#% increased attack speed with swords"] = { "SwordPhysicalAttackSpeedUnique__1", }, + ["#% increased attack, cast and movement speed during effect"] = { "DegradingMovementSpeedDuringFlaskEffectUnique__1", }, + ["#% increased attack, cast and movement speed while you do not have iron reflexes"] = { "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1", }, + ["#% increased attribute requirements"] = { "IncreasedLocalAttributeRequirementsUniqueGlovesDexInt1", "IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4", "IncreasedLocalAttributeRequirementsUnique__1", }, + ["#% increased attributes per allocated keystone"] = { "AllAttributesPerAssignedKeystoneUniqueJewel32", }, + ["#% increased bleeding duration per # intelligence"] = { "IncreaseBleedDurationPerIntelligenceUnique__1", }, + ["#% increased block recovery"] = { "BlockRecoveryImplicitShield1", "BlockRecoveryImplicitShield2", "BlockRecoveryImplicitShield3", }, + ["#% increased brand damage"] = { "BrandDamageUnique__1", }, + ["#% increased brand damage per # devotion"] = { "BrandDamagePerDevotion", }, + ["#% increased burning damage"] = { "BurnDamageUniqueDescentOneHandMace1", "BurnDamageUniqueStaff1", }, + ["#% increased burning damage if you've ignited an enemy recently"] = { "IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1", }, + ["#% increased cast speed"] = { "IncreasedCastSpeedImplicitMarakethWand1", "IncreasedCastSpeedImplicitMarakethWand2", "IncreasedCastSpeedUniqueDescentWand1", "IncreasedCastSpeedUniqueGlovesInt4", "IncreasedCastSpeedUniqueStaff1", "IncreasedCastSpeedUniqueStaff5", "IncreasedCastSpeedUniqueWand1", "IncreasedCastSpeedUniqueWand10", }, + ["#% increased cast speed for each corpse consumed recently"] = { "CastSpeedPerCorpseConsumedRecentlyUnique__1", }, + ["#% increased cast speed for each different non-instant spell you've cast recently"] = { "SpellDamagePerUniqueSpellRecentlyUnique__1", }, + ["#% increased cast speed per power charge"] = { "IncreasedCastSpeedPerPowerChargeUnique__1", }, + ["#% increased cast speed when on full life"] = { "CastSpeedOnFullLifeUniqueDescentHelmet1", }, + ["#% increased cast speed when on low life"] = { "CastSpeedOnLowLifeUniqueDescentHelmet1", }, + ["#% increased chaos damage"] = { "IncreasedChaosDamageImplicitUnique__1", }, + ["#% increased chaos damage per # intelligence from allocated passives in radius"] = { "ChaosDamageIncreasedPerIntUniqueJewel2", }, + ["#% increased chaos damage per level"] = { "IncreasedElementalDamagePerLevelUniqueTwoHandSword7", }, + ["#% increased character size"] = { "ActorSizeUniqueAmulet2", "ActorSizeUniqueBeltDemigods1", "ActorSizeUniqueRingDemigods1", "ActorSizeUnique__1", "ActorSizeUnique__2", "ActorSizeUnique__3", "ActorSizeUnique__4", }, + ["#% increased charges per use"] = { "FlaskChargesUsedUnique__3", "FlaskChargesUsedUnique__7", "FlaskChargesUsedUnique___1", }, + ["#% increased chill duration on enemies"] = { "FreezeChillDurationUnique__1", "IncreasedChillDurationUniqueBodyDex1", "IncreasedChillDurationUniqueBodyStrInt3", }, + ["#% increased chill duration on enemies when in off hand"] = { "OffHandChillDurationUniqueOneHandAxe2", }, + ["#% increased chill duration on you"] = { "ChillDurationOnSelfUnique__1", }, + ["#% increased claw physical damage when on low life"] = { "IncreasedClawDamageOnLowLifeUniqueClaw4", }, + ["#% increased cold damage"] = { "ColdDamagePercentUnique__8", }, + ["#% increased cold damage per #% chance to block attack damage"] = { "IncreasedColdDamagePerBlockChanceUnique__1", }, + ["#% increased cold damage taken"] = { "ColdDamageTakenUnique__2", }, + ["#% increased cost of skills"] = { "IncreasedSkillCostUnique_1", }, + ["#% increased critical strike chance"] = { "LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe1", "LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe2", "LocalCriticalStrikeChanceUniqueClaw2", "LocalCriticalStrikeChanceUniqueDagger11", "LocalCriticalStrikeChanceUniqueDescentDagger1", "LocalCriticalStrikeChanceUniqueOneHandMace1", }, + ["#% increased critical strike chance against bleeding enemies"] = { "CriticalStrikeChanceAgainstBleedingEnemiesUber1", }, + ["#% increased critical strike chance against chilled enemies"] = { "GlobalCriticalStrikeChanceAgainstChilledUnique__1", }, + ["#% increased critical strike chance against enemies that are on full life"] = { "CriticalChanceAgainstEnemiesOnFullLifeUnique__1", }, + ["#% increased critical strike chance per # intelligence"] = { "CriticalStrikeChancePerIntelligenceUnique__1", }, + ["#% increased critical strike chance per # strength"] = { "CritChancePercentPerStrengthUniqueOneHandSword8_", }, + ["#% increased critical strike chance per brand"] = { "CriticalStrikeChancePerBrandUnique__1___", }, + ["#% increased critical strike chance per endurance charge"] = { "ChargeBonusCriticalStrikeChancePerEnduranceCharge", }, + ["#% increased critical strike chance per frenzy charge"] = { "ChargeBonusCriticalStrikeChancePerFrenzyCharge", }, + ["#% increased critical strike chance per grand spectrum"] = { "CriticalStrikeChancePerStackableJewelUnique__1", }, + ["#% increased damage"] = { "AllDamageUniqueBelt11", "AllDamageUniqueRing8", "AllDamageUnique__1", "DamageAuraUniqueHelmetDexInt2", "UndyingBreathDamageAuraUniqueStaff5", }, + ["#% increased damage for each poison on you up to a maximum of #%"] = { "DamagePerPoisonOnSelfUnique__1_", }, + ["#% increased damage for each type of abyss jewel affecting you"] = { "DamagePerAbyssJewelTypeUnique__1_", }, + ["#% increased damage if you've frozen an enemy recently"] = { "IncreasedDamageIfFrozenRecentlyUnique__1", }, + ["#% increased damage on burning ground"] = { "IncreasedDamageOnBurningGroundUniqueBootsInt6", }, + ["#% increased damage over time"] = { "DegenerationDamageUniqueDagger8", "DegenerationDamageUnique__1", }, + ["#% increased damage per # dexterity"] = { "DamagePer15DexterityUnique__1", "DamagePer15DexterityUnique__2", }, + ["#% increased damage per # of your lowest attribute"] = { "IncreasedDamagePerLowestAttributeUnique__1", }, + ["#% increased damage per # strength when in main hand"] = { "DamagePerStrengthInMainHandUniqueSceptre6", }, + ["#% increased damage per crab barrier"] = { "DamagePerCrabBarrierUnique__1", }, + ["#% increased damage per endurance charge"] = { "ChargeBonusDamagePerEnduranceCharge", }, + ["#% increased damage per frenzy charge"] = { "ChargeBonusDamagePerFrenzyCharge", }, + ["#% increased damage per power charge"] = { "ChargeBonusDamagePerPowerCharge", "IncreasedDamagePerPowerChargeUnique__1", }, + ["#% increased damage per power charge with hits against enemies on full life"] = { "IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6", }, + ["#% increased damage per power charge with hits against enemies on low life"] = { "IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6", }, + ["#% increased damage taken"] = { "DamageTakenUniqueJewel24", "IncreasedDamageTakenUnique__1", }, + ["#% increased damage taken from ghosts"] = { "DamageTakenFromGhostsUniqueOneHandSword12", }, + ["#% increased damage taken from melee attacks"] = { "MeleeDamageTakenUniqueAmulet12", }, + ["#% increased damage taken from skeletons"] = { "DamageTakenFromSkeletonsUniqueOneHandSword12_", }, + ["#% increased damage taken if you've taken a savage hit recently"] = { "ReducedDamageIfTakenASavageHitRecentlyUnique_1", }, + ["#% increased damage taken per frenzy charge"] = { "DamageTakenPerFrenzyChargeUniqueOneHandSword6", }, + ["#% increased damage taken while on full energy shield"] = { "DamageTakenOnFullESUniqueCorruptedJewel15", "DamageTakenOnFullESUnique__1", }, + ["#% increased damage taken while phasing"] = { "DamageTakenWhilePhasingUnique__1", }, + ["#% increased damage when on low life"] = { "DamageOnLowLifeUniqueHelmetStrInt5", "IncreasedPhysicalDamagePercentOnLowLifeUniqueOneHandSword1", }, + ["#% increased damage while ignited"] = { "DamageWhileIgnitedUniqueRing18", }, + ["#% increased damage while on consecrated ground"] = { "IncreasedDamageOnConsecratedGroundUnique__1", }, + ["#% increased damage while shocked"] = { "DamageIncreaseWhileShockedUniqueBelt12", }, + ["#% increased damage with ailments per elder item equipped"] = { "AilmentDamagePerElderItemUnique__1__", }, + ["#% increased damage with bleeding inflicted on poisoned enemies"] = { "BleedDamageAgainstPoisonedEnemiesUber1", }, + ["#% increased damage with bleeding per endurance charge"] = { "BleedingDamagePerEnduranceChargeUber1", }, + ["#% increased damage with claws while on low life"] = { "IncreasedClawDamageOnLowLifeUnique__1__", }, + ["#% increased damage with hits for each level higher the enemy is than you"] = { "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1", }, + ["#% increased damage with hits against frozen enemies"] = { "IncreasedDamageAgainstFrozenEnemiesUnique__1", }, + ["#% increased damage with hits against shocked enemies"] = { "IncreasedDamageToShockedTargetsUniqueRing29", }, + ["#% increased damage with hits and ailments against hindered enemies"] = { "DamageAgainstNearEnemiesUnique__1", }, + ["#% increased damage with hits and ailments against taunted enemies"] = { "IncreasedDamageAgainstTauntedEnemiesUber1", }, + ["#% increased damage with ignite inflicted on chilled enemies"] = { "BurningDamageToChilledEnemiesUniqueOneHandAxe2", }, + ["#% increased damage with movement skills"] = { "DamageWithMovementSkillsUniqueClaw9", }, + ["#% increased damage with poison inflicted on bleeding enemies"] = { "PoisonDamageAgainstBleedingEnemiesUber1", }, + ["#% increased damage with poison per frenzy charge"] = { "PoisonDamagePerFrenzyChargeUnique__1", }, + ["#% increased damage with unarmed attacks against bleeding enemies"] = { "UnarmedDamageVsBleedingEnemiesUnique__1", }, + ["#% increased defences from equipped shield"] = { "ShieldArmourIncreaseUnique__1", }, + ["#% increased defences from equipped shield per # devotion"] = { "ShieldDefencesPerDevotion", }, + ["#% increased dexterity"] = { "PercentageDexterityUniqueBodyDex7", "PercentageDexterityUnique__5", }, + ["#% increased dexterity if strength is higher than intelligence"] = { "PercentDexterityIfStrengthHigherThanIntelligenceUnique__1", }, + ["#% increased duration"] = { "FlaskEffectDurationUnique__4", }, + ["#% increased duration of ailments on enemies"] = { "IncreasedAilmentDurationUnique__1", }, + ["#% increased duration of curses on you"] = { "IncreasedSelfCurseDurationUniqueShieldStrDex2", }, + ["#% increased duration of elemental ailments on enemies"] = { "ElementalStatusAilmentDurationDescentUniqueQuiver1", }, + ["#% increased duration of lightning ailments"] = { "ShockDurationUniqueGlovesDexInt3", "ShockDurationUniqueStaff8", }, + ["#% increased duration of shrine effects on you"] = { "ShrineEffectDurationUniqueHelmetDexInt3", }, + ["#% increased duration. #% to this value when used"] = { "FlaskDurationConsumedPerUse", "HarvestFlaskEnchantmentDurationLoweredOnUse1_", }, + ["#% increased effect of arcane surge on you per"] = { "ArcaneSurgeEffectPerCasterAbyssJewelUnique__1", }, + ["#% increased effect of buffs granted by socketed golem skills"] = { "LocalGolemBuffEffectUnique__1", }, + ["#% increased effect of buffs granted by your golems"] = { "GolemBuffEffectUnique__1", }, + ["#% increased effect of buffs on you"] = { "IncreasedBuffEffectivenessBodyInt12", "IncreasedBuffEffectivenessUniqueOneHandSword11", }, + ["#% increased effect of curses on you"] = { "IncreasedCurseEffectUnique__1", "UndyingBreathCurseAuraUniqueStaff5", }, + ["#% increased effect of lightning ailments"] = { "LightningAilmentEffectUnique__1", "ShockEffectUnique__3", }, + ["#% increased effect of non-curse auras from your skills"] = { "AuraEffectUniqueShieldInt2", "AuraEffectUnique__1", "AuraEffectUnique__2____", "DamageTakenUniqueStaff5", "IncreasedAuraEffectUniqueJewel45", }, + ["#% increased effect of non-curse auras from your skills on your minions"] = { "AuraEffectOnMinionsUniqueShieldInt2", "AuraEffectOnMinionsUnique__1_", }, + ["#% increased effect of non-curse auras per # devotion"] = { "AuraEffectPerDevotion", }, + ["#% increased effect of non-damaging ailments on enemies per # devotion"] = { "AilmentEffectPerDevotion", }, + ["#% increased effect of non-damaging ailments per elder item equipped"] = { "AilmentEffectPerElderItemUnique__1", }, + ["#% increased effect of non-keystone passive skills in radius"] = { "PassiveEffectivenessJewelUnique__1_", }, + ["#% increased effect of onslaught on you"] = { "OnslaughtEffectUnique__1", }, + ["#% increased effect of shrine buffs on you"] = { "ShrineBuffEffectUniqueHelmetDexInt3", }, + ["#% increased effect of tattoos in radius"] = { "SoulTattooEffectUnique__1", }, + ["#% increased effect of your curses"] = { "CurseEffectivenessUniqueJewel45", }, + ["#% increased effect. #% to this value when used"] = { "HarvestFlaskEnchantmentEffectLoweredOnUse2", }, + ["#% increased elemental ailment duration on you"] = { "CurseEffectElementalAilmentDurationOnSelfR1", "SelfStatusAilmentDurationUnique__1", }, + ["#% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptre1", "ElementalDamagePercentImplicitSceptre2", "ElementalDamagePercentImplicitSceptre3", "ElementalDamagePercentImplicitSceptreNew1", "ElementalDamagePercentImplicitSceptreNew10", "ElementalDamagePercentImplicitSceptreNew11", "ElementalDamagePercentImplicitSceptreNew12___", "ElementalDamagePercentImplicitSceptreNew13", "ElementalDamagePercentImplicitSceptreNew14", "ElementalDamagePercentImplicitSceptreNew15", "ElementalDamagePercentImplicitSceptreNew16", "ElementalDamagePercentImplicitSceptreNew17", "ElementalDamagePercentImplicitSceptreNew18", "ElementalDamagePercentImplicitSceptreNew19", "ElementalDamagePercentImplicitSceptreNew2", "ElementalDamagePercentImplicitSceptreNew20", "ElementalDamagePercentImplicitSceptreNew21__", "ElementalDamagePercentImplicitSceptreNew22", "ElementalDamagePercentImplicitSceptreNew3", "ElementalDamagePercentImplicitSceptreNew4", "ElementalDamagePercentImplicitSceptreNew5", "ElementalDamagePercentImplicitSceptreNew6", "ElementalDamagePercentImplicitSceptreNew7", "ElementalDamagePercentImplicitSceptreNew8", "ElementalDamagePercentImplicitSceptreNew9", "ElementalDamagePercentUnique__2", "ElementalDamageUniqueDescentBelt1", "ElementalDamageUniqueHelmetInt9", "ElementalDamageUniqueJewel10", "ElementalDamageUniqueSceptre1", "ElementalDamageUnique__1", }, + ["#% increased elemental damage during any flask effect"] = { "ElementalDamageDuringFlaskEffectUnique__1", }, + ["#% increased elemental damage if you've killed a cursed enemy recently"] = { "IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1", }, + ["#% increased elemental damage if you've warcried recently"] = { "IncreasedElementalDamageIfUsedWarcryRecentlyUnique__1", }, + ["#% increased elemental damage per # devotion"] = { "ElementalDamagePerDevotion_", }, + ["#% increased elemental damage per # dexterity"] = { "ElementalDamagePerDexterityUnique__1", }, + ["#% increased elemental damage per # intelligence"] = { "ElementalDamagePer12IntelligenceUber1", }, + ["#% increased elemental damage per # strength"] = { "ElementalDamagePer12StrengthUber1", }, + ["#% increased elemental damage per grand spectrum"] = { "IncreasedDamagePerStackableJewelUnique__1", }, + ["#% increased elemental damage per level"] = { "IncreasedChaosDamagePerLevelUniqueTwoHandSword7", }, + ["#% increased elemental damage per power charge"] = { "ElementalDamagePerPowerChargeUber1", }, + ["#% increased elemental damage with attack skills"] = { "WeaponElementalDamageImplicitSword1", "WeaponElementalDamageUniqueBelt10", }, + ["#% increased elemental damage with attack skills during any flask effect"] = { "IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10", }, + ["#% increased endurance charge duration"] = { "EnduranceChargeDurationUniqueBodyStrInt4", "JewelImplicitEnduranceChargeDuration", }, + ["#% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueBodyStrInt1", "LocalIncreasedEnergyShieldUniqueHelmetInt4", }, + ["#% increased energy shield per # strength"] = { "EnergyShieldPerStrengthUnique__1", }, + ["#% increased energy shield per power charge"] = { "ChargeBonusEnergyShieldPerPowerCharge", }, + ["#% increased energy shield recharge rate"] = { "ReducedEnergyShieldDelayUniqueBelt11", }, + ["#% increased evasion if you have hit an enemy recently"] = { "IncreasedEvasionRatingIfHitEnemyRecentlyUber1", }, + ["#% increased evasion rating"] = { "LocalIncreasedEvasionPercentAndStunRecoveryUniqueDexHelmet1", "LocalIncreasedEvasionRatingPercentUniqueBootsDex7", "LocalIncreasedEvasionRatingPercentUniqueHelmetDex6", }, + ["#% increased evasion rating during onslaught"] = { "IncreasedEvasionWithOnslaughtUnique_1", }, + ["#% increased evasion rating if you have been hit recently"] = { "IncreasedEvasionIfHitRecentlyUnique___1", }, + ["#% increased evasion rating per # dexterity allocated in radius"] = { "ClawPhysDamageAndEvasionPerDexUniqueJewel47", }, + ["#% increased evasion rating per # intelligence"] = { "EvasionRatingPerIntelligenceUnique__1", }, + ["#% increased evasion rating per # maximum mana"] = { "DodgeAndSpellDodgePerMaximumManaUnique__1", }, + ["#% increased evasion rating per frenzy charge"] = { "ChargeBonusEvasionPerFrenzyCharge", "EvasionRatingPerFrenzyChargeUniqueBootsStrDex2", }, + ["#% increased evasion rating while moving"] = { "EvasionRatingWhileMovingUnique__1", }, + ["#% increased evasion rating while phasing"] = { "ChanceToDodgeAttacksWhilePhasingUnique___1", }, + ["#% increased evasion while leeching"] = { "IncreasedEvasionRatingWhileLeechingUber1", }, + ["#% increased experience gain"] = { "IncreasedExperienceUniqueIntHelmet3", "IncreasedExperienceUniqueRing14", "IncreasedExperienceUniqueSceptre1", }, + ["#% increased experience gain for corrupted gems"] = { "IncreasedCorruptedGemExperienceUniqueCorruptedJewel9", }, + ["#% increased explicit ailment modifier magnitudes"] = { "WeaponEnchantmentHeistAilmentEffect1", "WeaponEnchantmentHeistAilmentEffectAttributeRequirement1_", "WeaponEnchantmentHeistAilmentEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistAilmentEffectNoBlueSockets1__", "WeaponEnchantmentHeistAilmentEffectNoGreenSockets1", "WeaponEnchantmentHeistAilmentEffectNoRedSockets1_", "WeaponEnchantmentHeistAilmentEffectOnlyBlueSockets1__", "WeaponEnchantmentHeistAilmentEffectOnlyGreenSockets1", "WeaponEnchantmentHeistAilmentEffectOnlyRedSockets1", "WeaponEnchantmentHeistAilmentEffectSocketPenalty1__", "WeaponEnchantmentHeistAilmentEffectSocketsAreLinked1", "WeaponEnchantmentHeistAilmentEffectWhiteSockets1", "WeaponEnchantmentHeistCasterDamageEffectAilmentEffect1_", "WeaponEnchantmentHeistChaosEffectAilmentEffect1_", "WeaponEnchantmentHeistColdEffectAilmentEffect1", "WeaponEnchantmentHeistFireEffectAilmentEffect1_", "WeaponEnchantmentHeistLightningEffectAilmentEffect1", "WeaponEnchantmentHeistManaEffectAilmentEffect1", "WeaponEnchantmentHeistPhysicalEffectAilmentEffect1", }, + ["#% increased explicit attribute modifier magnitudes"] = { "ArmourEnchantmentHeistAttributeEffect1", "ArmourEnchantmentHeistAttributeEffectAttributeRequirementsPenalty1", "ArmourEnchantmentHeistAttributeEffectDefenceEffectPenalty1", "ArmourEnchantmentHeistAttributeEffectLifeEffectPenalty1_", "ArmourEnchantmentHeistAttributeEffectNoBlueSockets1", "ArmourEnchantmentHeistAttributeEffectNoGreenSockets1", "ArmourEnchantmentHeistAttributeEffectNoRedSockets1", "ArmourEnchantmentHeistAttributeEffectOnlyBlueSockets1_", "ArmourEnchantmentHeistAttributeEffectOnlyGreenSockets1", "ArmourEnchantmentHeistAttributeEffectOnlyRedSockets1", "ArmourEnchantmentHeistAttributeEffectSocketPenalty1", "ArmourEnchantmentHeistAttributeEffectSocketsAreLinked1", "ArmourEnchantmentHeistAttributeEffectWhiteSocket1_", "ArmourEnchantmentHeistDefenceEffectAttributeEffect1", "ArmourEnchantmentHeistLifeEffectAttributeEffect1_", "ArmourEnchantmentHeistManaEffectAttributeEffect1", "WeaponEnchantmentHeistAttributeEffect1", "WeaponEnchantmentHeistAttributeEffectAttributeRequirement1", "WeaponEnchantmentHeistAttributeEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistAttributeEffectDamageEffectPenalty1", "WeaponEnchantmentHeistAttributeEffectNoBlueSockets1_", "WeaponEnchantmentHeistAttributeEffectNoGreenSockets1", "WeaponEnchantmentHeistAttributeEffectNoRedSockets1", "WeaponEnchantmentHeistAttributeEffectOnlyBlueSockets1", "WeaponEnchantmentHeistAttributeEffectOnlyGreenSockets1", "WeaponEnchantmentHeistAttributeEffectOnlyRedSockets1_", "WeaponEnchantmentHeistAttributeEffectSocketPenalty1", "WeaponEnchantmentHeistAttributeEffectSocketsAreLinked1_", "WeaponEnchantmentHeistAttributeEffectWhiteSockets1_", "WeaponEnchantmentHeistCasterDamageEffectAttributeEffect1", "WeaponEnchantmentHeistChaosEffectAttributeEffect1", "WeaponEnchantmentHeistColdEffectAttributeEffect1", "WeaponEnchantmentHeistFireEffectAttributeEffect1", "WeaponEnchantmentHeistLightningEffectAttributeEffect1", "WeaponEnchantmentHeistManaEffectAttributeEffect1_", "WeaponEnchantmentHeistPhysicalEffectAttributeEffect1____", }, + ["#% increased explicit caster damage modifier magnitudes"] = { "WeaponEnchantmentHeistCasterDamageEffect1", "WeaponEnchantmentHeistCasterDamageEffectAttributeRequirement1_", "WeaponEnchantmentHeistCasterDamageEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistCasterDamageEffectCriticalEffect1", "WeaponEnchantmentHeistCasterDamageEffectCriticalEffectPenalty1", "WeaponEnchantmentHeistCasterDamageEffectNoBlueSockets1_", "WeaponEnchantmentHeistCasterDamageEffectNoGreenSockets1", "WeaponEnchantmentHeistCasterDamageEffectNoRedSockets1_", "WeaponEnchantmentHeistCasterDamageEffectOnlyBlueSockets1_", "WeaponEnchantmentHeistCasterDamageEffectOnlyGreenSockets1", "WeaponEnchantmentHeistCasterDamageEffectOnlyRedSockets1", "WeaponEnchantmentHeistCasterDamageEffectSocketPenalty1__", "WeaponEnchantmentHeistCasterDamageEffectSocketsAreLinked1", "WeaponEnchantmentHeistCasterDamageEffectSpeedEffect1", "WeaponEnchantmentHeistCasterDamageEffectSpeedEffectPenalty1", "WeaponEnchantmentHeistCasterDamageEffectWhiteSockets1", }, + ["#% increased explicit chaos modifier magnitudes"] = { "WeaponEnchantmentHeistChaosEffect1__", "WeaponEnchantmentHeistChaosEffectAttributeRequirement1_", "WeaponEnchantmentHeistChaosEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistChaosEffectCriticalEffect1", "WeaponEnchantmentHeistChaosEffectCriticalEffectPenalty1", "WeaponEnchantmentHeistChaosEffectNoBlueSockets1", "WeaponEnchantmentHeistChaosEffectNoGreenSockets1", "WeaponEnchantmentHeistChaosEffectNoRedSockets1___", "WeaponEnchantmentHeistChaosEffectOnlyBlueSockets1", "WeaponEnchantmentHeistChaosEffectOnlyGreenSockets1___", "WeaponEnchantmentHeistChaosEffectOnlyRedSockets1", "WeaponEnchantmentHeistChaosEffectSocketPenalty1", "WeaponEnchantmentHeistChaosEffectSocketsAreLinked1_", "WeaponEnchantmentHeistChaosEffectSpeedEffect1_", "WeaponEnchantmentHeistChaosEffectSpeedEffectPenalty1", "WeaponEnchantmentHeistChaosEffectWhiteSockets1", }, + ["#% increased explicit cold modifier magnitudes"] = { "WeaponEnchantmentHeistColdEffect1__", "WeaponEnchantmentHeistColdEffectAttributeRequirement1", "WeaponEnchantmentHeistColdEffectAttributeRequirementPenalty1_", "WeaponEnchantmentHeistColdEffectCriticalEffect1_", "WeaponEnchantmentHeistColdEffectCriticalEffectPenalty1", "WeaponEnchantmentHeistColdEffectNoBlueSockets1", "WeaponEnchantmentHeistColdEffectNoGreenSockets1", "WeaponEnchantmentHeistColdEffectNoRedSockets1", "WeaponEnchantmentHeistColdEffectOnlyBlueSockets1_", "WeaponEnchantmentHeistColdEffectOnlyGreenSockets1__", "WeaponEnchantmentHeistColdEffectOnlyRedSockets1_", "WeaponEnchantmentHeistColdEffectSocketPenalty1_", "WeaponEnchantmentHeistColdEffectSocketsAreLinked1", "WeaponEnchantmentHeistColdEffectSpeedEffect1", "WeaponEnchantmentHeistColdEffectSpeedEffectPenalty1", "WeaponEnchantmentHeistColdEffectWhiteSockets1___", }, + ["#% increased explicit critical modifier magnitudes"] = { "WeaponEnchantmentHeistCriticalEffect1_", "WeaponEnchantmentHeistCriticalEffectAttributeRequirement1_", "WeaponEnchantmentHeistCriticalEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistCriticalEffectDamageEffectPenalty1", "WeaponEnchantmentHeistCriticalEffectNoBlueSockets1", "WeaponEnchantmentHeistCriticalEffectNoGreenSockets1", "WeaponEnchantmentHeistCriticalEffectNoRedSockets1", "WeaponEnchantmentHeistCriticalEffectOnlyBlueSockets1", "WeaponEnchantmentHeistCriticalEffectOnlyGreenSockets1", "WeaponEnchantmentHeistCriticalEffectOnlyRedSockets1", "WeaponEnchantmentHeistCriticalEffectSocketPenalty1___", "WeaponEnchantmentHeistCriticalEffectSocketsAreLinked1", "WeaponEnchantmentHeistCriticalEffectWhiteSockets1_", "WeaponEnchantmentHeistFireEffectCriticalEffect1", "WeaponEnchantmentHeistLightningEffectCriticalEffect1", "WeaponEnchantmentHeistManaEffectCriticalEffect1", "WeaponEnchantmentHeistPhysicalEffectCriticalEffect1", }, + ["#% increased explicit defence modifier magnitudes"] = { "ArmourEnchantmentHeistDefenceEffect1", "ArmourEnchantmentHeistDefenceEffectAttributeRequirements1", "ArmourEnchantmentHeistDefenceEffectAttributeRequirementsPenalty1_", "ArmourEnchantmentHeistDefenceEffectNoBlueSockets1", "ArmourEnchantmentHeistDefenceEffectNoGreenSockets1", "ArmourEnchantmentHeistDefenceEffectNoRedSockets1", "ArmourEnchantmentHeistDefenceEffectOnlyBlueSockets1", "ArmourEnchantmentHeistDefenceEffectOnlyGreenSockets1", "ArmourEnchantmentHeistDefenceEffectOnlyRedSockets1___", "ArmourEnchantmentHeistDefenceEffectResistanceEffect1", "ArmourEnchantmentHeistDefenceEffectResistanceEffectPenalty1", "ArmourEnchantmentHeistDefenceEffectSocketPenalty1", "ArmourEnchantmentHeistDefenceEffectSocketsAreLinked1", "ArmourEnchantmentHeistDefenceEffectWhiteSocket1", }, + ["#% increased explicit fire modifier magnitudes"] = { "WeaponEnchantmentHeistFireEffect1", "WeaponEnchantmentHeistFireEffectAttributeRequirement1", "WeaponEnchantmentHeistFireEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistFireEffectNoBlueSockets1", "WeaponEnchantmentHeistFireEffectNoGreenSockets1_", "WeaponEnchantmentHeistFireEffectNoRedSockets1", "WeaponEnchantmentHeistFireEffectOnlyBlueSockets1", "WeaponEnchantmentHeistFireEffectOnlyGreenSockets1", "WeaponEnchantmentHeistFireEffectOnlyRedSockets1", "WeaponEnchantmentHeistFireEffectSocketPenalty1", "WeaponEnchantmentHeistFireEffectSocketsAreLinked1", "WeaponEnchantmentHeistFireEffectSpeedEffect1", "WeaponEnchantmentHeistFireEffectSpeedEffectPenalty1", "WeaponEnchantmentHeistFireEffectWhiteSockets1", }, + ["#% increased explicit life modifier magnitudes"] = { "ArmourEnchantmentHeistLifeEffect1", "ArmourEnchantmentHeistLifeEffectAttributeRequirements1", "ArmourEnchantmentHeistLifeEffectAttributeRequirementsPenalty1_", "ArmourEnchantmentHeistLifeEffectNoBlueSockets1", "ArmourEnchantmentHeistLifeEffectNoGreenSockets1__", "ArmourEnchantmentHeistLifeEffectNoRedSockets1", "ArmourEnchantmentHeistLifeEffectOnlyBlueSockets1", "ArmourEnchantmentHeistLifeEffectOnlyGreenSockets1", "ArmourEnchantmentHeistLifeEffectOnlyRedSockets1", "ArmourEnchantmentHeistLifeEffectResistanceEffect1__", "ArmourEnchantmentHeistLifeEffectResistanceEffectPenalty1", "ArmourEnchantmentHeistLifeEffectSocketPenalty1", "ArmourEnchantmentHeistLifeEffectSocketsAreLinked1_", "ArmourEnchantmentHeistLifeEffectWhiteSocket1_", }, + ["#% increased explicit lightning modifier magnitudes"] = { "WeaponEnchantmentHeistLightningEffect1", "WeaponEnchantmentHeistLightningEffectAttributeRequirement1", "WeaponEnchantmentHeistLightningEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistLightningEffectNoBlueSockets1_", "WeaponEnchantmentHeistLightningEffectNoGreenSockets1", "WeaponEnchantmentHeistLightningEffectNoRedSockets1", "WeaponEnchantmentHeistLightningEffectOnlyBlueSockets1", "WeaponEnchantmentHeistLightningEffectOnlyGreenSockets1", "WeaponEnchantmentHeistLightningEffectOnlyRedSockets1", "WeaponEnchantmentHeistLightningEffectSocketPenalty1", "WeaponEnchantmentHeistLightningEffectSocketsAreLinked1", "WeaponEnchantmentHeistLightningEffectSpeedEffect1_", "WeaponEnchantmentHeistLightningEffectSpeedEffectPenalty1", "WeaponEnchantmentHeistLightningEffectWhiteSockets1_", }, + ["#% increased explicit mana modifier magnitudes"] = { "ArmourEnchantmentHeistManaEffect1", "ArmourEnchantmentHeistManaEffectAttributeRequirements1", "ArmourEnchantmentHeistManaEffectAttributeRequirementsPenalty1", "ArmourEnchantmentHeistManaEffectNoBlueSockets1", "ArmourEnchantmentHeistManaEffectNoGreenSockets1", "ArmourEnchantmentHeistManaEffectNoRedSockets1_", "ArmourEnchantmentHeistManaEffectOnlyBlueSockets1", "ArmourEnchantmentHeistManaEffectOnlyGreenSockets1", "ArmourEnchantmentHeistManaEffectOnlyRedSockets1", "ArmourEnchantmentHeistManaEffectResistanceEffect1", "ArmourEnchantmentHeistManaEffectResistanceEffectPenalty1", "ArmourEnchantmentHeistManaEffectSocketPenalty1", "ArmourEnchantmentHeistManaEffectSocketsAreLinked1", "ArmourEnchantmentHeistManaEffectWhiteSocket1_", "WeaponEnchantmentHeistManaEffect1", "WeaponEnchantmentHeistManaEffectAttributeRequirement1", "WeaponEnchantmentHeistManaEffectAttributeRequirementPenalty1__", "WeaponEnchantmentHeistManaEffectNoBlueSockets1__", "WeaponEnchantmentHeistManaEffectNoGreenSockets1", "WeaponEnchantmentHeistManaEffectNoRedSockets1", "WeaponEnchantmentHeistManaEffectOnlyBlueSockets1", "WeaponEnchantmentHeistManaEffectOnlyGreenSockets1", "WeaponEnchantmentHeistManaEffectOnlyRedSockets1", "WeaponEnchantmentHeistManaEffectSocketPenalty1_", "WeaponEnchantmentHeistManaEffectSocketsAreLinked1", "WeaponEnchantmentHeistManaEffectSpeedEffect1", "WeaponEnchantmentHeistManaEffectSpeedEffectPenalty1", "WeaponEnchantmentHeistManaEffectWhiteSockets1", }, + ["#% increased explicit physical modifier magnitudes"] = { "WeaponEnchantmentHeistPhysicalEffect1", "WeaponEnchantmentHeistPhysicalEffectAttributeRequirement1", "WeaponEnchantmentHeistPhysicalEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistPhysicalEffectNoBlueSockets1", "WeaponEnchantmentHeistPhysicalEffectNoGreenSockets1_", "WeaponEnchantmentHeistPhysicalEffectNoRedSockets1", "WeaponEnchantmentHeistPhysicalEffectOnlyBlueSockets1_", "WeaponEnchantmentHeistPhysicalEffectOnlyGreenSockets1", "WeaponEnchantmentHeistPhysicalEffectOnlyRedSockets1", "WeaponEnchantmentHeistPhysicalEffectSocketPenalty1", "WeaponEnchantmentHeistPhysicalEffectSocketsAreLinked1", "WeaponEnchantmentHeistPhysicalEffectSpeedEffect1", "WeaponEnchantmentHeistPhysicalEffectSpeedEffectPenalty1___", "WeaponEnchantmentHeistPhysicalEffectWhiteSockets1_", }, + ["#% increased explicit resistance modifier magnitudes"] = { "ArmourEnchantmentHeistResistanceEffect1__", "ArmourEnchantmentHeistResistanceEffectAttributeRequirementsPenalty1", "ArmourEnchantmentHeistResistanceEffectNoBlueSockets1", "ArmourEnchantmentHeistResistanceEffectNoGreenSockets1", "ArmourEnchantmentHeistResistanceEffectNoRedSockets1", "ArmourEnchantmentHeistResistanceEffectOnlyBlueSockets1", "ArmourEnchantmentHeistResistanceEffectOnlyGreenSockets1", "ArmourEnchantmentHeistResistanceEffectOnlyRedSockets1", "ArmourEnchantmentHeistResistanceEffectSocketPenalty1", "ArmourEnchantmentHeistResistanceEffectSocketsAreLinked1_", "ArmourEnchantmentHeistResistanceEffectWhiteSocket1", }, + ["#% increased explicit speed modifier magnitudes"] = { "WeaponEnchantmentHeistSpeedEffect1_", "WeaponEnchantmentHeistSpeedEffectAttributeRequirement1__", "WeaponEnchantmentHeistSpeedEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistSpeedEffectNoBlueSockets1", "WeaponEnchantmentHeistSpeedEffectNoGreenSockets1", "WeaponEnchantmentHeistSpeedEffectNoRedSockets1", "WeaponEnchantmentHeistSpeedEffectOnlyBlueSockets1", "WeaponEnchantmentHeistSpeedEffectOnlyGreenSockets1", "WeaponEnchantmentHeistSpeedEffectOnlyRedSockets1", "WeaponEnchantmentHeistSpeedEffectSocketPenalty1", "WeaponEnchantmentHeistSpeedEffectSocketsAreLinked1__", "WeaponEnchantmentHeistSpeedEffectWhiteSockets1_", }, + ["#% increased fire damage"] = { "FireDamagePercentUniqueHelmetInt5", "FireDamagePercentUniqueSceptre9", "FireDamagePercentUnique__12___", "FireDamagePercentUnique___7", "IncreasedFireDamgeIfHitRecentlyUnique__1", }, + ["#% increased fire damage per # strength"] = { "FireDamagePerStrengthUnique__1", }, + ["#% increased fire damage taken"] = { "IncreasedFireDamageTakenUniqueBodyStrDex5", "IncreasedFireDamageTakenUniqueTwoHandSword6", }, + ["#% increased fire resistance"] = { "NearbyEnemiesIncreasedFireColdResistUnique__1_", }, + ["#% increased fishing line strength"] = { "FishingLineStrengthUnique__1", }, + ["#% increased fishing pool consumption"] = { "FishingPoolConsumptionUnique__1__", }, + ["#% increased fishing range"] = { "FishingCastDistanceUnique__1__", }, + ["#% increased flask charges gained"] = { "BeltIncreasedFlaskChargesGainedUniqueBelt2", }, + ["#% increased flask charges gained during any flask effect"] = { "FlaskChargeRecoveryDuringFlaskEffectUnique__1", }, + ["#% increased flask effect duration"] = { "BeltIncreasedFlaskDurationUniqueBelt3", "BeltIncreasedFlaskDurationUnique__1", "BeltIncreasedFlaskDurationUnique__2", "BeltIncreasedFlaskDurationUnique__4", "FlaskDurationUniqueJewel_____8", "JewelImplicitFlaskDuration", }, + ["#% increased flask life recovery rate"] = { "BeltFlaskLifeRecoveryRateUniqueBelt4", "FlaskLifeRecoveryRateUniqueBodyStrDex1", }, + ["#% increased flask mana recovery rate"] = { "FlaskManaRecoveryRateUniqueBodyStrDex1", }, + ["#% increased fortification duration per # strength"] = { "FortifyDurationPerStrengthUber1", }, + ["#% increased freeze duration on enemies"] = { "FreezeDurationUniqueGlovesStrInt3", "FreezeDurationUnique__1", }, + ["#% increased freeze duration on you"] = { "FreezeDurationOnSelfUnique__1", }, + ["#% increased frenzy charge duration"] = { "JewelImplicitFrenzyChargeDuration__", }, + ["#% increased global accuracy rating"] = { "AccuracyPercentImplicit2HSword1", "AccuracyPercentImplicit2HSword2_", "AccuracyPercentImplicitSword1", "AccuracyPercentImplicitSword2", "PercentIncreasedAccuracyJewelUnique__1", }, + ["#% increased global armour while you have no energy shield"] = { "IncreasedArmourOnZeroEnergyShieldUnique__1", }, + ["#% increased global attack speed per green socket"] = { "AttackSpeedPerGreenSocketUniqueOneHandSword5", }, + ["#% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger1", "CriticalStrikeChanceImplicitDagger2", "CriticalStrikeChanceImplicitDagger3", "CriticalStrikeChanceImplicitDaggerNew1", "CriticalStrikeChanceImplicitDaggerNew2", "CriticalStrikeChanceImplicitDaggerNew3", "CriticalStrikeChanceImplicitMarakethStaff1", "CriticalStrikeChanceImplicitMarakethStaff2", "CriticalStrikeChanceUniqueBodyInt4", "CriticalStrikeChanceUniqueDagger3", "CriticalStrikeChanceUniqueGlovesDex2", "CriticalStrikeChanceUniqueHelmetDex4", "CriticalStrikeChanceUniqueOneHandSword2", "CriticalStrikeChanceUniqueRapier1", "CriticalStrikeChanceUnique__1", }, + ["#% increased global critical strike chance per level"] = { "CriticalStrikeChancePerLevelUniqueTwoHandAxe8", }, + ["#% increased global defences"] = { "AllDefencesUnique__1", "AllDefencesUnique__2", "AllDefencesUnique__3", }, + ["#% increased global defences per white socket"] = { "GlobalDefensesPerWhiteSocketUnique__1", }, + ["#% increased global evasion rating when on low life"] = { "EvasionRatingPercentOnLowLifeUniqueHelmetDex4", }, + ["#% increased global physical damage"] = { "IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe1", "IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe2", "IncreasedPhysicalDamagePercentUniqueBootsDexInt4", "IncreasedPhysicalDamagePercentUniqueDescentClaw1", "IncreasedPhysicalDamagePercentUniqueGlovesStr2", "IncreasedPhysicalDamagePercentUniqueHelmetStr1", "IncreasedPhysicalDamagePercentUniqueJewel9", "IncreasedPhysicalDamagePercentUniqueQuiver2", "IncreasedPhysicalDamagePercentUniqueRing1", "IncreasedPhysicalDamagePercentUniqueShieldStrDex1", "IncreasedPhysicalDamagePercentUniqueSwordImplicit1", "IncreasedPhysicalDamagePercentUnique__4", }, + ["#% increased global physical damage while frozen"] = { "PhysicalDamageWhileFrozenUnique___1", }, + ["#% increased global physical damage with weapons per red socket"] = { "PhysicalDamgePerRedSocketUniqueOneHandSword5", }, + ["#% increased herald of ice damage"] = { "HeraldOfIceDamageUnique__1_", }, + ["#% increased ignite duration on enemies"] = { "BurnDurationUniqueDescentOneHandMace1", "BurnDurationUniqueRing31", "BurnDurationUnique__1", "BurnDurationUnique__2", }, + ["#% increased ignite duration on you"] = { "IncreasedSelfBurnDurationUniqueRing28", "SelfBurnDurationUnique__1", }, + ["#% increased impale effect"] = { "ImpaleEffectUnique__1", "ImpaleEffectUnique__2", }, + ["#% increased intelligence for each unique item equipped"] = { "IncreasedIntelligencePerUniqueUniqueRing14", }, + ["#% increased intelligence requirement"] = { "IncreasedIntelligenceRequirementsUniqueGlovesStrInt4", "IncreasedIntelligenceRequirementsUniqueSceptre1", }, + ["#% increased item quantity per white socket"] = { "ItemQuantityPerWhiteSocketUniqueRing39_", }, + ["#% increased item rarity per white socket"] = { "ItemRarityPerWhiteSocketUniqueRing39", }, + ["#% increased knockback distance"] = { "KnockbackDistanceUnique__1", }, + ["#% increased life recovered"] = { "FlaskExtraLifeUnique__1", }, + ["#% increased life recovery from flasks"] = { "BeltFlaskLifeRecoveryUniqueDescentBelt1", "BeltFlaskLifeRecoveryUnique__2", "FlaskLifeRecoveryRateUniqueJewel46", "FlaskLifeRecoveryUniqueAmulet25", }, + ["#% increased life recovery rate per # strength on allocated passives in radius"] = { "LifeRecoveryRatePerAllocatedStrengthUnique__1_", "LifeRecoveryRatePerAllocatedStrengthUnique__2", }, + ["#% increased light radius"] = { "LightRadiusUniqueBelt6", "LightRadiusUniqueBodyInt8", "LightRadiusUniqueBodyStr4", "LightRadiusUniqueRing15", "LightRadiusUniqueRing9_", "LightRadiusUniqueSceptre2", "LightRadiusUniqueShieldDemigods", "LightRadiusUniqueStaff10_", "LightRadiusUnique__11", "LightRadiusUnique__3", "LightRadiusUnique__4", "LightRadiusUnique__8", "LightRadiusUnique__9", }, + ["#% increased light radius during effect"] = { "FlaskLightRadiusUniqueFlask1", }, + ["#% increased lightning damage"] = { "CriticalStrikesDealIncreasedLightningDamageUnique__1", "LightningDamagePercentUniqueRing29", "LightningDamagePercentUnique__3", "LightningDamagePercentUnique__4", }, + ["#% increased lightning damage per # intelligence"] = { "IncreasedLightningDamagePer10IntelligenceUnique__1", }, + ["#% increased lightning damage taken"] = { "IncreasedLightningDamageTakenUnique__1", }, + ["#% increased main hand critical strike chance per"] = { "MainHandCriticalStrikeChancePerMeleeAbyssJewelUnique__1", }, + ["#% increased mana cost of skills"] = { "ManaCostIncreaseUniqueTwoHandAxe4", "ManaCostIncreasedUniqueCorruptedJewel3", "ManaCostIncreasedUniqueHelmetStrInt6", "ManaCostIncreasedUniqueWand7", }, + ["#% increased mana cost of skills during effect"] = { "FlaskBuffReducedManaCostWhileHealingUnique__1", }, + ["#% increased mana recovery from flasks"] = { "BeltFlaskManaRecoveryUniqueDescentBelt1", "BeltFlaskManaRecoveryUnique__2", "FlaskManaRecoveryUniqueShieldInt3", }, + ["#% increased mana recovery rate"] = { "IncreasedManaRecoveryRateUnique__1", }, + ["#% increased mana recovery rate per # intelligence on allocated passives in radius"] = { "ManaRecoveryRatePerAllocatedIntelligenceUnique__1", "ManaRecoveryRatePerAllocatedIntelligenceUnique__2", }, + ["#% increased mana regeneration rate"] = { "ManaRegenerationAuraUnique__1", "ManaRegenerationUniqueBelt6", "ManaRegenerationUniqueBootsDex2", "ManaRegenerationUniqueBow11", "ManaRegenerationUniqueDexHelmet2", "ManaRegenerationUniqueIntHelmet2", "ManaRegenerationUniqueJewel43", "ManaRegenerationUniqueRing5", "ReducedManaRegenerationUniqueRing27", }, + ["#% increased mana regeneration rate during any flask effect"] = { "ManaRegenerationDuringFlaskEffectUnique__1", }, + ["#% increased mana regeneration rate per power charge"] = { "IncreasedManaRegenerationPerPowerChargeUnique__1", }, + ["#% increased mana regeneration rate per raised spectre"] = { "ManaRegenerationPerSpectreUnique__1", }, + ["#% increased mana regeneration rate while stationary"] = { "IncreasedManaRegenerationWhileStationaryUnique__1", }, + ["#% increased mana reservation efficiency of herald skills"] = { "HeraldReservationEfficiencyUnique__1", }, + ["#% increased mana reservation efficiency of skills"] = { "IncreasedManaReservationsCostUniqueOneHandSword11", "ManaReservationEfficiencyUniqueHelmetDex5_", "ManaReservationEfficiencyUniqueJewel44_", "ManaReservationEfficiencyUniqueOneHandSword11", "ReducedManaReservationsCostUniqueHelmetDex5", "ReducedManaReservationsCostUniqueJewel44", }, + ["#% increased mana reservation efficiency of skills per # total attributes"] = { "ManaReservationEfficiencyPerAttributeUnique__1", "ManaReservationPerAttributeUnique__1", }, + ["#% increased maximum energy shield"] = { "IncreasedEnergyShieldPercentUnique__1", "IncreasedEnergyShieldPercentUnique__4", "IncreasedEnergyShieldPercentUnique__6", }, + ["#% increased maximum energy shield for each corrupted item equipped"] = { "MaximumEnergyShieldPercentPerCorruptedItemUnique__1_", }, + ["#% increased maximum life"] = { "MaximumLifeShieldInt1", "MaximumLifeUniqueBelt4", "MaximumLifeUniqueBodyInt3", "MaximumLifeUnique__14", "MaximumLifeUnique__2", "MaximumLifeUnique__27", "MaximumLifeUnique__3", }, + ["#% increased maximum life for each corrupted item equipped"] = { "MaximumLifePercentPerCorruptedItemUnique__1_", }, + ["#% increased maximum life per abyss jewel affecting you"] = { "IncreasedLifePerAbyssalJewelUnique__1", "IncreasedLifePerAbyssalJewelUnique__2", }, + ["#% increased maximum life per grand spectrum"] = { "MaximumLifePerStackableJewelUnique__1", }, + ["#% increased maximum mana"] = { "MaximumManaUniqueRing5", "MaximumManaUniqueStaff5", "MaximumManaUniqueTwoHandMace5", "MaximumManaUnique__10", }, + ["#% increased maximum mana per #% chance to block spell damage"] = { "IncreasedManaPerSpellBlockChanceUnique__1", }, + ["#% increased maximum mana per abyss jewel affecting you"] = { "IncreasedManaPerAbyssalJewelUnique__1_", "IncreasedManaPerAbyssalJewelUnique__2", }, + ["#% increased maximum total life recovery per second from leech"] = { "MaximumLifeLeechRateUnique__1", }, + ["#% increased melee damage"] = { "MeleeDamageIncreaseUniqueHelmetStrDex3", }, + ["#% increased melee damage against bleeding enemies"] = { "MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6", "MeleeDamageAgainstBleedingEnemiesUnique__1", }, + ["#% increased melee damage against frozen enemies"] = { "AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6", }, + ["#% increased melee damage against ignited enemies"] = { "AdditionalMeleeDamageToBurningEnemiesUniqueDagger6", }, + ["#% increased melee damage against shocked enemies"] = { "AdditionalMeleeDamageToShockedEnemiesUniqueDagger6", }, + ["#% increased melee damage per endurance charge"] = { "IncreasedDamagePerEnduranceChargeUnique_1", }, + ["#% increased melee damage when on full life"] = { "MeleeDamageOnFullLifeUniqueAmulet13", }, + ["#% increased melee physical damage against ignited enemies"] = { "IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1", }, + ["#% increased melee physical damage per # dexterity"] = { "MeleePhysicalDamagePerDexterityUnique__1_", }, + ["#% increased melee physical damage per # strength while fortified"] = { "MeleePhysicalDamagePerStrengthWhileFortifiedUber1", }, + ["#% increased minion attack and cast speed per # devotion"] = { "MinionAttackAndCastSpeedPerDevotion", }, + ["#% increased minion attack and cast speed per skeleton you own"] = { "MinionAttackAndCastSpeedPerSkeleton__1", }, + ["#% increased minion attack speed per # dexterity"] = { "MinionAttackSpeedPerXDexUnique__1", }, + ["#% increased minion duration per raised zombie"] = { "MinionDurationPerZombie__1", }, + ["#% increased minion movement speed per # dexterity"] = { "MinionMovementSpeedPerXDexUnique__1", }, + ["#% increased movement skill mana cost"] = { "IncreasedCostOfMovementSkillsUnique_1", }, + ["#% increased movement speed"] = { "JewelImplicitMovementSpeed", "MovementSpeedUnique_42", "MovementVelocityDescent2Boots1", "MovementVelocityImplicitArmour1", "MovementVelocityImplicitShield1", "MovementVelocityImplicitShield2", "MovementVelocityImplicitShield3", "MovementVelocityMarakethBowImplicit1", "MovementVelocityMarakethBowImplicit2", "MovementVelocityUniqueAmulet5", "MovementVelocityUniqueBodyDex4", "MovementVelocityUniqueBodyDex5", "MovementVelocityUniqueBodyDex7", "MovementVelocityUniqueBodyStrDex5_", "MovementVelocityUniqueBootsA1", "MovementVelocityUniqueBootsDex1", "MovementVelocityUniqueBootsDex2", "MovementVelocityUniqueBootsDex7", "MovementVelocityUniqueBootsDex8", "MovementVelocityUniqueBootsDexInt1", "MovementVelocityUniqueBootsDexInt2", "MovementVelocityUniqueBootsDexInt4", "MovementVelocityUniqueBootsInt2", "MovementVelocityUniqueBootsInt5", "MovementVelocityUniqueBootsInt6", "MovementVelocityUniqueBootsStr1", "MovementVelocityUniqueBootsStr3", "MovementVelocityUniqueBootsStrDex1", "MovementVelocityUniqueBootsStrDex3", "MovementVelocityUniqueBootsStrDex4", "MovementVelocityUniqueBootsStrDex5", "MovementVelocityUniqueBootsStrInt2_", "MovementVelocityUniqueBootsStrInt3", "MovementVelocityUniqueBootsW1", "MovementVelocityUniqueBow7", "MovementVelocityUniqueClaw3", "MovementVelocityUniqueHelmetDex6", "MovementVelocityUniqueHelmetInt6", "MovementVelocityUniqueHelmetStrDex1", "MovementVelocityUniqueHelmetStrDex2", "MovementVelocityUniqueIntHelmet2", "MovementVelocityUniqueJewel43", "MovementVelocityUniqueOneHandAxe3", "MovementVelocityUniqueOneHandAxe7", "MovementVelocityUniqueOneHandSword9", "MovementVelocityUniqueTwoHandSword1", "MovementVelocityUniqueTwoHandSword3", "MovementVelocityUnique__1", "MovementVelocityUnique__10", "MovementVelocityUnique__11", "MovementVelocityUnique__12", "MovementVelocityUnique__13", "MovementVelocityUnique__14", "MovementVelocityUnique__15", "MovementVelocityUnique__16", "MovementVelocityUnique__17__", "MovementVelocityUnique__18", "MovementVelocityUnique__20_", "MovementVelocityUnique__22", "MovementVelocityUnique__24", "MovementVelocityUnique__25", "MovementVelocityUnique__26", "MovementVelocityUnique__27", "MovementVelocityUnique__29", "MovementVelocityUnique__3", "MovementVelocityUnique__30", "MovementVelocityUnique__31", "MovementVelocityUnique__34", "MovementVelocityUnique__35", "MovementVelocityUnique__37", "MovementVelocityUnique__4", "MovementVelocityUnique__40", "MovementVelocityUnique__42", "MovementVelocityUnique__43", "MovementVelocityUnique__45", "MovementVelocityUnique__47_", "MovementVelocityUnique__48", "MovementVelocityUnique__49", "MovementVelocityUnique__50", "MovementVelocityUnique__54", "MovementVelocityUnique__58", "MovementVelocityUnique__7", "MovementVelocityUnique__8", "MovementVelocityUnique___5", "MovementVelocityUnique___6", "MovementVeolcityUniqueBootsDemigods1", "MovementVeolcityUniqueBootsDex4", "NearbyAlliesMovementVelocityUnique__1", }, + ["#% increased movement speed during any flask effect"] = { "MovementSpeedDuringFlaskEffectUnique__1", }, + ["#% increased movement speed for # seconds on throwing a trap"] = { "MovementSpeedOnTrapThrowUniqueBootsDex6", "MovementSpeedOnTrapThrowUnique__1", }, + ["#% increased movement speed for each poison on you up to a maximum of #%"] = { "MovementSpeedPerPoisonOnSelfUnique__1_", }, + ["#% increased movement speed if you have used a vaal skill recently"] = { "MovementVelocityIfVaalSkillUsedRecentlyUnique__1_", }, + ["#% increased movement speed if you've hit an enemy recently"] = { "MovementSpeedIfHitRecentlyUnique__1_", }, + ["#% increased movement speed if you've killed recently"] = { "MovementSpeedIfKilledRecentlyUnique___1", "MovementSpeedIfKilledRecentlyUnique___2", }, + ["#% increased movement speed if you've warcried recently"] = { "MovementSpeedIfUsedWarcryRecentlyUnique_1", "MovementSpeedIfUsedWarcryRecentlyUnique__2", }, + ["#% increased movement speed on shocked ground"] = { "MovementVelocityOnShockedGroundUniqueBootsInt6_", }, + ["#% increased movement speed per # dexterity on allocated passives in radius"] = { "MovementSpeedPerAllocatedDexterityJewelUnique__1", "MovementSpeedPerAllocatedDexterityUnique__1", "MovementSpeedPerAllocatedDexterityUnique__2", }, + ["#% increased movement speed per # evasion rating, up to #%"] = { "MovementVelicityPerEvasionUniqueBodyDex6", }, + ["#% increased movement speed per endurance charge"] = { "ChargeBonusMovementVelocityPerEnduranceCharge", }, + ["#% increased movement speed per frenzy charge"] = { "ChargeBonusMovementVelocityPerFrenzyCharge", "MovementVelocityPerFrenzyChargeUniqueBodyDexInt3", "MovementVelocityPerFrenzyChargeUniqueBootsDex4", "MovementVelocityPerFrenzyChargeUniqueBootsStrDex2", "MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_", "MovementVelocityPerFrenzyChargeUnique__1", "MovementVelocityPerFrenzyChargeUnique__2", }, + ["#% increased movement speed per power charge"] = { "ChargeBonusMovementVelocityPerPowerCharge", "MovementVelocityPerPowerChargeUnique__1__", }, + ["#% increased movement speed when on full life"] = { "MovementVelocityOnFullLifeUniqueAmulet13", "MovementVelocityOnFullLifeUniqueBootsInt3", "MovementVelocityOnFullLifeUniqueTwoHandAxe2", "MovementVelocityOnFullLifeUnique__1", }, + ["#% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueBootsDex3", "MovementVelocityOnLowLifeUniqueGlovesDexInt1", "MovementVelocityOnLowLifeUniqueRapier1", "MovementVelocityOnLowLifeUniqueShieldStrInt5", }, + ["#% increased movement speed while bleeding"] = { "MovementVelocityWhileBleedingUnique__1", }, + ["#% increased movement speed while cursed"] = { "IncreasedMovementVelictyWhileCursedUniqueOneHandSword4", }, + ["#% increased movement speed while fortified"] = { "MovementSpeedWhileFortifiedUber1", }, + ["#% increased movement speed while ignited"] = { "MovementVelocityWhileIgnitedUnique__1", }, + ["#% increased movement speed while on full energy shield"] = { "MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8", }, + ["#% increased movement speed while phasing"] = { "MovementSpeedWhilePhasedUnique__1", "MovementSpeedWhilePhasedUnique__2", }, + ["#% increased movement speed while shocked"] = { "MovementVelocityWhileShockedUniqueBelt12", }, + ["#% increased movement speed while you have cat's stealth"] = { "MovementSpeedWithCatsStealthUnique__1", }, + ["#% increased physical attack damage while dual wielding"] = { "DualWieldingPhysicalDamageUnique__1", }, + ["#% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueDescentBow1", "LocalIncreasedPhysicalDamagePercentUniqueDescentStaff1", "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword1", "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword2", "LocalIncreasedPhysicalDamagePercentUniqueStaff9", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace2", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace4", "LocalIncreasedPhysicalDamagePercentUnique__26", "LocalIncreasedPhysicalDamageUniqueSceptre9", }, + ["#% increased physical damage over time per # dexterity"] = { "IncreasePhysicalDegenDamagePerDexterityUnique__1", }, + ["#% increased physical damage per endurance charge"] = { "IncreasedPhysicalDamagePerEnduranceChargeUnique__1", }, + ["#% increased physical damage taken"] = { "IncreasedPhysicalDamageTakenUniqueBootsDex8", "IncreasedPhysicalDamageTakenUniqueTwoHandSword6", }, + ["#% increased physical damage taken while moving"] = { "IncreasedPhysicalDamageTakenWhileMovingUnique__1", }, + ["#% increased physical damage while you have resolute technique"] = { "PhysicalDamageWhileResoluteTechniqueUnique__1__", }, + ["#% increased physical damage with axes"] = { "AxeBonus1", "AxePhysicalDamageUnique__1", }, + ["#% increased physical damage with bows"] = { "BowBonus1", }, + ["#% increased physical damage with claws"] = { "ClawBonus1", }, + ["#% increased physical damage with daggers"] = { "DaggerBonus1", }, + ["#% increased physical damage with maces or sceptres"] = { "MaceBonus1", }, + ["#% increased physical damage with staves"] = { "StaffBonus1", }, + ["#% increased physical damage with swords"] = { "SwordBonus1", }, + ["#% increased physical damage with wands"] = { "WandBonus1", }, + ["#% increased physical weapon damage per # strength"] = { "IncreasedAreaOfEffectPerIntelligence", }, + ["#% increased poison duration per power charge"] = { "PoisonDurationPerPowerChargeUnique__1", }, + ["#% increased power charge duration"] = { "IncreasedPowerChargeDurationUniqueWand3", "JewelImplicitPowerChargeDuration", }, + ["#% increased projectile attack damage per # accuracy rating"] = { "IncreaseProjectileAttackDamagePerAccuracyUnique__1", }, + ["#% increased projectile damage"] = { "IncreasedProjectileDamageUnique__5", "IncreasedProjectileDamageUnique__6", "ProjectileDamageJewelUniqueJewel41", }, + ["#% increased projectile damage per # dexterity from allocated passives in radius"] = { "ExtraArrowForSplitArrowUniqueJewel60", }, + ["#% increased projectile damage per power charge"] = { "ProjectileDamagePerPowerChargeUniqueAmulet15", }, + ["#% increased projectile speed"] = { "ProjectileSpeedUniqueAmulet5", "ProjectileSpeedUnique__2", "ProjectileSpeedUnique__5__", "ProjectileSpeedUnique___1", }, + ["#% increased projectile speed per frenzy charge"] = { "ProjectileSpeedPerFrenzyChargeUniqueAmulet15", }, + ["#% increased quantity of fish caught"] = { "FishingQuantityUnique__2", }, + ["#% increased quantity of gold dropped by slain enemies"] = { "VillageIncreasedGold", }, + ["#% increased quantity of items dropped by slain frozen enemies"] = { "ItemQuantityWhenFrozenUniqueBow9", }, + ["#% increased quantity of items found"] = { "ItemFoundQuantityIncreasedUnique__1", }, + ["#% increased quantity of items found per chest opened recently"] = { "ItemQuantityPerChestOpenedRecentlyUnique__1", }, + ["#% increased raised zombie size"] = { "ZombieSizeUniqueSceptre3_", }, + ["#% increased rarity of fish caught"] = { "FishingRarityUnique__1", }, + ["#% increased rarity of items dropped by frozen enemies"] = { "IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4", "IncreasedRarityWhenSlayingFrozenUnique__1", }, + ["#% increased rarity of items dropped by slain shocked enemies"] = { "ItemRarityWhenShockedUniqueBow9", }, + ["#% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueAmulet6", "ItemFoundRarityIncreaseUniqueBodyStr5", "ItemFoundRarityIncreaseUniqueHelmetDex3", "ItemFoundRarityIncreaseUnique__1", "ItemFoundRarityIncreaseUnique__2", "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1", "NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9", "NearbyAlliesHaveIncreasedItemRarityUnique__1", }, + ["#% increased rarity of items found per # rampage kills"] = { "IncreasedRarityPerRampageStacksUnique__1", }, + ["#% increased rarity of items found when on low life"] = { "ItemRarityOnLowLifeUniqueBootsInt1", }, + ["#% increased recovery rate of life and energy shield per power charge"] = { "LifeAndEnergyShieldRecoveryRatePerPowerChargeUnique__1", }, + ["#% increased reservation efficiency of skills"] = { "ReducedManaReservationCostUnique__1", "ReservationEfficiencyUnique__3__", }, + ["#% increased scorching ray beam length"] = { "FireBeamLengthUnique__1", }, + ["#% increased shock duration on enemies"] = { "ShockDurationUnique__1", "ShockDurationUnique__3", }, + ["#% increased shock duration on you"] = { "SelfShockDurationUniqueBelt12_", "SelfShockDurationUnique__1", "SelfShockDurationUnique__2", }, + ["#% increased skill effect duration"] = { "SkillEffectDurationUniqueJewel44", "SkillEffectDurationUniqueTwoHandMace5", "SkillEffectDurationUnique__3", }, + ["#% increased spell critical strike chance per # player maximum life"] = { "SpellCriticalStrikeChancePerLifeUnique__1", }, + ["#% increased spell damage"] = { "SpellDamageUniqueDescentWand1", "SpellDamageUniqueGlovesInt2", "SpellDamageUnique__3", }, + ["#% increased spell damage if you've dealt a critical strike in the past # seconds"] = { "SpellDamageIfYouHaveCritRecentlyUnique__1", }, + ["#% increased spell damage per # intelligence"] = { "SpellDamagePerIntelligenceUniqueStaff12", }, + ["#% increased spell damage per # player maximum life"] = { "SpellDamagePerLifeUnique__1", }, + ["#% increased spell damage per #% chance to block attack damage"] = { "IncreasedSpellDamagePerBlockChanceUniqueClaw7", }, + ["#% increased spell damage per level"] = { "SpellDamageIncreasedPerLevelUniqueSceptre8", }, + ["#% increased spell damage per power charge"] = { "IncreasedSpellDamagePerPowerChargeUniqueWand3", }, + ["#% increased spell damage taken when on low mana"] = { "SpellDamageTakenOnLowManaUniqueBodyInt4", }, + ["#% increased spell damage while shocked"] = { "IncreasedSpellDamageWhileShockedUnique__1", }, + ["#% increased strength"] = { "PercentageStrengthImplicitMace1", "PercentageStrengthUnique__3", }, + ["#% increased strength requirement"] = { "IncreasedStrengthREquirementsUniqueGlovesStrInt4", "IncreasedStrengthRequirementUniqueStaff8", "IncreasedStrengthRequirementsUniqueTwoHandSword4", }, + ["#% increased stun and block recovery"] = { "IncreasedStunRecoveryReducedStunThresholdImplicitR1", "IncreasedStunRecoveryReducedStunThresholdImplicitR2", "IncreasedStunRecoveryReducedStunThresholdImplicitR3", "StunRecoveryUniqueAmulet18", "StunRecoveryUniqueBootsStrDex1", "StunRecoveryUniqueBootsStrDex3", "StunRecoveryUniqueClaw8", "StunRecoveryUniqueHelmetInt6", "StunRecoveryUniqueQuiver4", "StunRecoveryUnique__1_", "StunRecoveryUnique__5", }, + ["#% increased stun duration on enemies"] = { "StunDurationImplicitMace1", "StunDurationImplicitMace2", "StunDurationUniqueGlovesDexInt3", "StunDurationUniqueGlovesInt4_", "StunDurationUniqueTwoHandSword5", }, + ["#% increased stun duration on you"] = { "IncreasedStunDurationOnSelfUnique_1", }, + ["#% increased stun duration per # strength"] = { "StunDurationPerStrengthUber1", }, + ["#% increased stun threshold"] = { "IncreasedStunThresholdUnique__1_", }, + ["#% increased taunt duration"] = { "IncreasedTauntDurationUniqueShieldStr4", }, + ["#% increased total recovery per second from life leech"] = { "IncreasedLifeLeechRateUniqueBodyStrDex4", "IncreasedLifeLeechRateUnique__1", "JewelImplicitLifeLeechRate", }, + ["#% increased total recovery per second from life, mana, or energy shield leech"] = { "IncreasedLifeLeechRateUniqueAmulet20", "LifeManaESLeechRateUnique__1", }, + ["#% increased total recovery per second from mana leech"] = { "JewelImplicitManaLeechRate", }, + ["#% increased totem damage"] = { "TotemDamageUnique__1_", }, + ["#% increased totem damage per # devotion"] = { "TotemDamagePerDevotion", }, + ["#% increased totem life per # strength allocated in radius"] = { "TotemLifePerStrengthUniqueJewel15", }, + ["#% increased warcry buff effect"] = { "WarcryEffectUnique__1", "WarcryEffectUnique__2", }, + ["#% increased warcry cooldown recovery rate"] = { "WarcryCooldownSpeedUnique__1", "WarcryCooldownSpeedUnique__2", }, + ["#% less animate weapon duration"] = { "AnimateWeaponDurationUniqueTwoHandMace8", }, + ["#% less attack speed"] = { "RingAttackSpeedUnique__1", }, + ["#% less burning damage"] = { "EmberwakeLessBurningDamageUnique__1", }, + ["#% less critical strike chance"] = { "LessCriticalStrikeChanceAmulet17", }, + ["#% less damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueBow4", }, + ["#% less damage taken if you have not been hit recently"] = { "ReducedDamageIfNotHitRecentlyUnique__1", }, + ["#% less damage taken per # rage, up to a maximum of #%"] = { "DamageTakenPer5RageCappedAt50PercentUnique_1", }, + ["#% less duration of ignites you inflict"] = { "IgniteDurationEmberglowUnique__1", }, + ["#% less effect of your curses"] = { "DoedresSkinLessCurseEffectUnique__1", }, + ["#% less elemental damage taken per raised zombie"] = { "ElementalDamageTakenPerZombieUnique__1", }, + ["#% less flask charges gained from kills"] = { "FlaskChargesFromKillUniqueJewel_9", "FlaskChargesFromKillsFinalUnique__1_", }, + ["#% less ignite duration"] = { "UniqueVolkuursGuidanceIgniteDurationFinal", }, + ["#% less mine damage"] = { "LessMineDamageUniqueStaff11", }, + ["#% less poison duration"] = { "VolkuurLessPoisonDurationUnique__1", }, + ["#% less power charge duration"] = { "PowerChargeDurationFinalUnique__1__", }, + ["#% less ward during effect"] = { "FlaskMoreWardUnique1", }, + ["#% maximum critical strike chance"] = { "MaximumCriticalStrikeChanceUniqueAmulet17", }, + ["#% more damage with arrow hits at close range"] = { "PhysicalBowDamageCloseRangeUniqueBow6", }, + ["#% more damage with arrow hits at close range while you have iron reflexes"] = { "ArborixMoreDamageAtCloseRangeUnique__1", }, + ["#% more global accuracy rating"] = { "AccuracyRatingIsDoubledUber1", }, + ["#% more life"] = { "MetamorphosisItemisedBossDifficult", }, + ["#% of attack damage leeched as life"] = { "LifeLeechAllAttackDamagePermyriadImplicitClaw2", "LifeLeechFromAttacksPermyriadUnique__1", "LifeLeechPermyriadUniqueBodyStr3", "LifeLeechPermyriadUniqueBodyStrDex3", }, + ["#% of attack damage leeched as life against bleeding enemies"] = { "AttackDamageLifeLeechAgainstBleedingEnemiesUnique_1", "LifeLeechPhysicalAgainstBleedingEnemiesUniqueOneHandMace8", }, + ["#% of attack damage leeched as life against chilled enemies"] = { "LifeLeechFromAttacksAgainstChilledEnemiesUniqueBelt14", "LifeLeechPermyriadFromAttacksAgainstChilledEnemiesUniqueBelt14", }, + ["#% of attack damage leeched as life against maimed enemies"] = { "LifeLeechFromAttackDamageAgainstMaimedEnemiesUnique__1", }, + ["#% of attack damage leeched as life against taunted enemies"] = { "AttackLeechAgainstTauntedEnemyUnique__1", }, + ["#% of attack damage leeched as life on critical strike"] = { "CriticalStrikeAttackLifeLeechUnique__1", }, + ["#% of attack damage leeched as life per frenzy charge"] = { "AttackDamageLeechPerFrenzyChargeUnique__1", }, + ["#% of attack damage leeched as mana"] = { "ManaLeechPermyriadStrDexHelmet1", "ManaLeechPermyriadUniqueGlovesDexInt6", }, + ["#% of attack damage leeched as mana against poisoned enemies"] = { "AttackDamageManaLeechAgainstPoisonedEnemiesUnique_1", "AttackDamageManaLeechAgainstPoisonedEnemiesUnique_2", }, + ["#% of attack damage leeched as mana per power charge"] = { "ManaLeechPermyriadPerPowerChargeUniqueBelt5_", }, + ["#% of chaos damage leeched as life"] = { "ChaosDamageLifeLeechPermyriadUniqueShieldStrInt8", "ChaosDamageLifeLeechPermyriadUnique__1", "ChaosDamageLifeLeechPermyriadUnique__2", }, + ["#% of chaos damage leeched as life during effect"] = { "ChaosDamageLifeLeechPerMyriadWhileUsingFlaskUniqueFlask5", "ChaosDamageLifeLeechPermyriadWhileUsingFlaskUniqueFlask5New", }, + ["#% of chaos damage taken does not bypass energy shield"] = { "ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1", }, + ["#% of cold damage converted to fire damage"] = { "ConvertColdToFireUniqueRing15", }, + ["#% of cold damage from hits taken as fire damage"] = { "TalismanColdTakenAsFire", }, + ["#% of cold damage from hits taken as lightning damage"] = { "TalismanColdTakenAsLightning", }, + ["#% of cold damage leeched as life"] = { "ColdDamageLifeLeechCorrupted_", "ColdDamageLifeLeechPerMyriadUniqueBelt9b", "ColdDamageLifeLeechPermyriadUniqueBelt9bNew", }, + ["#% of cold damage taken as lightning damage"] = { "ColdHitAndDoTDamageTakenAsLightningUnique__1", }, + ["#% of damage against frozen enemies leeched as life"] = { "LifeLeechOnFrozenEnemiesUniqueRing19", "LifeLeechPermyriadOnFrozenEnemiesUnique__1", }, + ["#% of damage against shocked enemies leeched as mana"] = { "ManaLeechOnShockedEnemiesUniqueRing19", }, + ["#% of damage dealt by your mines is leeched to you as life"] = { "MineDamageLeechedToYouUnique__1", }, + ["#% of damage dealt by your totems is leeched to you as life"] = { "TotemLeechLifeToYouUnique__1", }, + ["#% of damage from hits is taken from marked target's life before you"] = { "DamageTakenFromMarkedTargetUnique__1", }, + ["#% of damage from hits is taken from your raised spectres' life before you"] = { "DamageRemovedFromSpectresUnique__1", }, + ["#% of damage is taken from mana before life"] = { "DamageRemovedFromManaBeforeLifeTestMod", }, + ["#% of damage is taken from mana before life per power charge"] = { "DamageTakeFromManaBeforeLifePerPowerChargeUnique__1", }, + ["#% of damage leeched as energy shield against frozen enemies"] = { "EnergyShieldLeechPermyriadOnFrozenEnemiesUniqueRing19", }, + ["#% of damage leeched as life"] = { "LifeLeechAnyDamageUnique__1", }, + ["#% of damage leeched as life against cursed enemies"] = { "LifeLeechVsCursedEnemiesUnique__1", }, + ["#% of damage leeched as life against shocked enemies"] = { "LifeLeechPermyriadOnFrozenEnemiesUniqueRing19", "LifeLeechPermyriadVsShockedEnemiesUniqueRing29", "LifeLeechVsShockedEnemiesUniqueRing29", }, + ["#% of damage leeched as life for skills used by totems"] = { "LifeLeechFromTotemSkillsUniqueShieldStr5", }, + ["#% of damage leeched as life on critical strike"] = { "LifeLeechOnCritPermyriadUniqueTwoHandAxe8", "LifeLeechOnCritUniqueTwoHandAxe8", }, + ["#% of damage leeched as life per siphoning charge"] = { "LifeLeechPerSiphoningChargeUnique__1", }, + ["#% of damage leeched as life while you have at least # total endurance, frenzy and power charges"] = { "DamageLeechWith5ChargesUnique__1", }, + ["#% of damage leeched as mana against frozen enemies"] = { "ManaLeechPermyriadOnShockedEnemiesUniqueRing19", }, + ["#% of damage taken bypasses ward"] = { "DamageBypassesWardPercentUnique__1", }, + ["#% of damage taken from stunning hits is recovered as energy shield"] = { "StunningHitsRecoverEnergyShieldUnique__1", }, + ["#% of damage taken recouped as mana"] = { "JewelImplicitDamageTakenGainedAsMana", "PercentDamageGoesToManaUnique__1", }, + ["#% of damage you reflect to enemies when hit is leeched as life"] = { "DamageYouReflectGainedAsLifeUniqueHelmetDexInt6", "DamageYouReflectGainedAsLifeUnique__1", }, + ["#% of elemental damage from hits taken as chaos damage"] = { "ElementalDamageTakenAsChaosUniqueBodyStrInt5", }, + ["#% of elemental damage from hits taken as physical damage"] = { "ElementalDamageTakenAsPhysicalUnique__1", }, + ["#% of elemental damage leeched as life"] = { "ElementalDamageLeechedAsLifePermyriadUniqueSceptre7_", "ElementalDamageLeechedAsLifeUniqueSceptre7", }, + ["#% of fire damage converted to chaos damage"] = { "ConvertFireToChaosUniqueBodyInt4", "ConvertFireToChaosUniqueBodyInt4Updated", "ConvertFireToChaosUniqueDagger10", "ConvertFireToChaosUniqueDagger10Updated", }, + ["#% of fire damage from hits taken as cold damage"] = { "FireDamageTakenAsColdUnique___1", "FireDamageTakenAsColdUnique___2_", "TalismanFireTakenAsCold", }, + ["#% of fire damage from hits taken as lightning damage"] = { "TalismanFireTakenAsLightning", }, + ["#% of fire damage from hits taken as physical damage"] = { "FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5", "FireDamageTakenConvertedToPhysicalUnique__1", }, + ["#% of fire damage leeched as life"] = { "FireDamageLifeLeechCorrupted", "FireDamageLifeLeechPerMyriadUniqueBelt9a_", "FireDamageLifeLeechPermyriadUniqueBelt9aNew", }, + ["#% of fire damage leeched as life while ignited"] = { "FireDamageLeechedAsLifeWhileIgnitedUnique__1", }, + ["#% of fire damage taken as lightning damage"] = { "FireHitAndDoTDamageTakenAsLightningUnique__1", }, + ["#% of fire damage taken causes extra physical damage"] = { "FireDamageTakenCausesExtraPhysicalDamageUniqueBodyStrDex5", }, + ["#% of leech from hits with this weapon is instant per enemy power"] = { "LeechInstantMonsterPowerUnique__1", }, + ["#% of life leech applies to enemies as chaos damage"] = { "EnemiesLoseLifePlayerLeechesUnique__1", }, + ["#% of life recovery from flasks is applied to nearby allies instead of you"] = { "FlaskLifeRecoveryAlliesUnique__1_", }, + ["#% of lightning damage converted to chaos damage"] = { "ConvertLightningDamageToChaosUniqueBow10", "ConvertLightningDamageToChaosUniqueBow10Updated", }, + ["#% of lightning damage converted to cold damage"] = { "ConvertLightningToColdUniqueRing34", }, + ["#% of lightning damage from hits taken as cold damage"] = { "TalismanLightningTakenAsCold", }, + ["#% of lightning damage from hits taken as fire damage"] = { "TalismanLightningTakenAsFire", }, + ["#% of lightning damage is taken from mana before life"] = { "PercentLightningDamageTakenFromManaBeforeLifeUnique__1", }, + ["#% of lightning damage leeched as life"] = { "LightningDamageLifeLeechCorrupted", "LightningDamageLifeLeechPerMyriadUniqueBelt9c", "LightningDamageLifeLeechPermyriadUniqueBelt9cNew", }, + ["#% of lightning damage leeched as life during effect"] = { "LightningLifeLeechDuringFlaskEffect__1", }, + ["#% of lightning damage leeched as mana"] = { "ManaLeechFromLightningDamageUniqueStaff8", "ManaLeechPermyriadFromLightningDamageUniqueStaff8", }, + ["#% of lightning damage leeched as mana during effect"] = { "LightningManaLeechDuringFlaskEffect__1", }, + ["#% of maximum energy shield taken as physical damage on minion death"] = { "PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_", }, + ["#% of maximum life converted to energy shield"] = { "MaximumLifeConvertedToEnergyShieldUnique__1", "MaximumLifeConvertedToEnergyShieldUnique__2", }, + ["#% of maximum life taken as chaos damage per second"] = { "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6", }, + ["#% of melee physical damage taken reflected to attacker"] = { "PhysicalDamageTakenPercentToReflectUniqueBodyStr2", }, + ["#% of non-chaos damage taken bypasses energy shield"] = { "NonChaosDamageBypassEnergyShieldPercentUnique__1", }, + ["#% of physical attack damage leeched as life"] = { "LifeLeechImplicitClaw1", "LifeLeechImplicitClaw2", "LifeLeechLocalPermyriadUniqueOneHandMace8__", "LifeLeechLocalPermyriadUnique__1", "LifeLeechLocalUniqueOneHandMace8", "LifeLeechPermyriadImplicitClaw1", "LifeLeechPermyriadImplicitClaw2", "LifeLeechPermyriadUniqueBelt1", "LifeLeechPermyriadUniqueClaw3", "LifeLeechPermyriadUniqueClaw6", "LifeLeechPermyriadUniqueGlovesStrDex1", "LifeLeechPermyriadUniqueOneHandAxe6", "LifeLeechPermyriadUniqueRing2", "LifeLeechPermyriadUniqueShieldDex2", "LifeLeechPermyriadUniqueShieldDex5", "LifeLeechPermyriadUniqueTwoHandAxe4", "LifeLeechPermyriadUniqueTwoHandMace1", "LifeLeechPermyriadUnique__2", "LifeLeechPermyriadUnique__3", "LifeLeechPermyriadUnique__4", "LifeLeechPermyriadUnique__5", "LifeLeechPermyriad__1", "LifeLeechUniqueBelt1", "LifeLeechUniqueBodyStr3", "LifeLeechUniqueClaw3", "LifeLeechUniqueClaw6", "LifeLeechUniqueGlovesStrDex1", "LifeLeechUniqueOneHandAxe6", "LifeLeechUniqueRing2", "LifeLeechUniqueShieldDex2", "LifeLeechUniqueShieldDex5", "LifeLeechUniqueTwoHandAxe4", "LifeLeechUniqueTwoHandMace1", }, + ["#% of physical attack damage leeched as life and mana"] = { "LifeAndManaLeechImplicitMarakethClaw1", }, + ["#% of physical attack damage leeched as life per red socket"] = { "LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1", }, + ["#% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadLocalUnique__1", "ManaLeechPermyriadUniqueAmulet3", "ManaLeechPermyriadUniqueBelt1", "ManaLeechPermyriadUniqueBodyStr6", "ManaLeechPermyriadUniqueGlovesStrDex1", "ManaLeechPermyriadUniqueRing17", "ManaLeechPermyriadUniqueTwoHandMace4", "ManaLeechPermyriadUniqueTwoHandSword2", "ManaLeechPermyriadUnique__1", "ManaLeechPermyriadUnique__2", "ManaLeechStrDexHelmet1", "ManaLeechUniqueAmulet3", "ManaLeechUniqueBelt1", "ManaLeechUniqueBodyStr6", "ManaLeechUniqueGlovesDexInt6", "ManaLeechUniqueGlovesStrDex1", "ManaLeechUniqueRing17", "ManaLeechUniqueTwoHandMace4", "ManaLeechUniqueTwoHandSword2", }, + ["#% of physical attack damage leeched as mana during effect"] = { "FlaskBuffManaLeechWhileHealing", }, + ["#% of physical attack damage leeched as mana per blue socket"] = { "ManaLeechFromPhysicalDamagePerBlueSocketUniqueOneHandSword5", "ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique", "ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5", }, + ["#% of physical attack damage leeched as mana per power charge"] = { "ManaLeechPerPowerChargeUniqueBelt5", }, + ["#% of physical damage converted to a random element"] = { "DamageConversionToRandomElementUnique__1", }, + ["#% of physical damage converted to chaos damage"] = { "PhysicalDamageConvertToChaosBodyStrInt4", "PhysicalDamageConvertToChaosUniqueBow5", "PhysicalDamageConvertToChaosUnique__1", "PhysicalDamageConvertedToChaosUnique__1", "PhysicalDamageConvertedToChaosUnique__2", }, + ["#% of physical damage converted to chaos damage per level"] = { "PhysicalDamageConvertedToChaosPerLevelUnique__1", }, + ["#% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUniqueGlovesDex1", "ConvertPhysicalToColdUniqueOneHandAxe8", "ConvertPhysicalToColdUnique__1", "ConvertPhysicalToColdUnique__2", }, + ["#% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUniqueOneHandSword4", "ConvertPhysicalToFireUniqueQuiver1_", "ConvertPhysicalToFireUniqueShieldStr3", "ConvertPhysicalToFireUnique__1", "ConvertPhysicalToFireUnique__2_", "ConvertPhysicalToFireUnique__4", "DamageConversionFireUnique__1", }, + ["#% of physical damage converted to fire damage against ignited enemies"] = { "PhysicalDamageConvertedToFireVsBurningEnemyUniqueSceptre9", }, + ["#% of physical damage converted to fire while you have avatar of fire"] = { "ConvertPhysicalToFireWithAvatarOfFireUnique__1", }, + ["#% of physical damage converted to lightning damage"] = { "ConvertPhysicalToLightningUniqueOneHandAxe8", "ConvertPhysicaltoLightningUnique__1", "ConvertPhysicaltoLightningUnique__2", "ConvertPhysicaltoLightningUnique__3", "ConvertPhysicaltoLightningUnique__4", }, + ["#% of physical damage converted to lightning during effect"] = { "PhysicalToLightningDuringFlaskEffect__1", }, + ["#% of physical damage from hits taken as chaos damage"] = { "PhysicalDamagePercentTakesAsChaosDamageUniqueBow5", "PhysicalDamageTakenAsChaosUnique__1", }, + ["#% of physical damage from hits taken as cold damage"] = { "PhysicalDamageTakenAsColdUnique__1", }, + ["#% of physical damage from hits taken as damage of a random element"] = { "PhysicalDamageTakenAsRandomElementUnique__1", }, + ["#% of physical damage from hits taken as fire damage"] = { "PhysicalDamageTakenAsFirePercentUniqueBodyInt2", "PhysicalDamageTakenAsFirePercentUnique__1", }, + ["#% of physical damage from hits taken as lightning damage"] = { "PhysicalDamageTakenAsLightningDescentTwoHandSword1", "PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2", }, + ["#% of physical damage from hits with this weapon is converted to a random element"] = { "LocalDamageConversionToRandomElementImplicitE1", "LocalDamageConversionToRandomElementUnique__1", "LocalDamageConversionToRandomElementUnique__2_", }, + ["#% of physical damage leeched as life"] = { "PhysicalDamageLifeLeechPerMyriadUniqueBelt9d", "PhysicalDamageLifeLeechPermyriadUniqueBelt9dNew", }, + ["#% of physical damage taken as fire damage"] = { "PhysicalHitAndDoTDamageTakenAsFireUnique__2", }, + ["#% of spell damage leeched as energy shield for each curse on enemy"] = { "EnergyShieldLeechPerCurseUnique__1_", }, + ["#% of spell damage leeched as life"] = { "SpellLifeLeechJewel", }, + ["#% of spell damage leeched as life if equipped shield has at least #% chance to block"] = { "LifeLeechFromSpellsWith30BlockOnShieldUnique__1_", }, + ["#% of spell damage leeched as mana"] = { "SpellManaLeechJewel", }, + ["#% reduced area of effect of hex skills"] = { "CurseAreaOfEffectUniqueQuiver5", }, + ["#% reduced armour per # strength"] = { "ArmourPerStrengthUnique__1_", }, + ["#% reduced attack and cast speed per frenzy charge"] = { "AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4", }, + ["#% reduced attack damage with main hand"] = { "MainHandOffHandDamage1_", "MainHandOffHandDamage2", "MainHandOffHandDamage3_", }, + ["#% reduced attack speed"] = { "LocalIncreasedAttackSpeedUniqueTwoHandMace3", "LocalReducedAttackSpeedUniqueDagger9", "LocalReducedAttackSpeedUniqueOneHandMace6", "LocalReducedAttackSpeedUnique__1", "LocalReducedAttackSpeedUnique__2", "ReducedAttackSpeedUniqueAmulet16", "ReducedAttackSpeedUnique__1", "ReducedAttackSpeedUnique__2", }, + ["#% reduced attack speed while phasing"] = { "ReducedAttackSpeedWhilePhasingUnique__1", }, + ["#% reduced attribute requirements"] = { "ArmourEnchantmentHeistAttributeRequirements1", "WeaponEnchantmentHeistAttributeRequirement1", }, + ["#% reduced bleeding duration"] = { "ReducedBleedDurationUnique__1_", }, + ["#% reduced cast speed"] = { "IncreasedCastSpeedUniqueAmulet16", "ReducedCastSpeedUniqueBootsDex5", "ReducedCastSpeedUniqueHelmetInt8", "ReducedCastSpeedUniqueHelmetStrInt6", }, + ["#% reduced chance to block attack and spell damage"] = { "ReducedChanceToBlockUnique__1", }, + ["#% reduced chaos damage taken over time"] = { "ChaosDamageOverTimeUnique__1", }, + ["#% reduced character size"] = { "ActorSizeUniqueAmulet12", "ActorSizeUniqueHelmetDex6", }, + ["#% reduced charges per use. #% to this value when used"] = { "HarvestFlaskEnchantmentChargesUsedLoweredOnUse4", }, + ["#% reduced chill duration on you"] = { "ReducedChillDurationOnSelfUniqueRing30", }, + ["#% reduced cold damage taken"] = { "ColdDamageTakenUnique__1", }, + ["#% reduced cooldown recovery rate for throwing traps"] = { "TrapSkillEffectDurationTrapCooldownPenaltyImplicitR1", "TrapSkillEffectDurationTrapCooldownPenaltyImplicitR2", "TrapSkillEffectDurationTrapCooldownPenaltyImplicitR3", }, + ["#% reduced cost of aura skills that summon totems"] = { "ManaCostOfTotemAurasUniqueCorruptedJewel8", }, + ["#% reduced critical strike chance per power charge"] = { "CriticalStrikeChancePerPowerChargeUnique__1", }, + ["#% reduced damage"] = { "AllDamageUniqueHelmetDexInt2", }, + ["#% reduced damage taken from projectile hits"] = { "ReducedProjectileDamageTakenUniqueAmulet12", }, + ["#% reduced damage when on low life"] = { "ReducedPhysicalDamagePercentOnLowLifeUniqueHelmetDex4", }, + ["#% reduced dexterity"] = { "PercentageDexterityUnique__1", }, + ["#% reduced duration"] = { "FlaskIncreasedDurationUnique__2", }, + ["#% reduced duration of ailments on enemies"] = { "IncreasedAilmentDurationUnique__2", }, + ["#% reduced duration of curses on you"] = { "ReducedSelfCurseDurationUniqueShieldDex3", }, + ["#% reduced duration of curses on you per # devotion"] = { "CurseSelfDurationPerDevotion", }, + ["#% reduced duration of elemental ailments on enemies"] = { "ElementalStatusAilmentDurationUniqueAmulet19", }, + ["#% reduced effect of chill on you"] = { "ChillEffectivenessOnSelfUniqueRing28", "JewelImplicitReducedChillEffect", }, + ["#% reduced effect of curses on you"] = { "ReducedCurseEffectUniqueRing26", "ReducedCurseEffectUniqueRing7", "ReducedCurseEffectUnique__1", "ReducedCurseEffectUnique__2", }, + ["#% reduced effect of shock on you"] = { "JewelImplicitReducedShockEffect", }, + ["#% reduced elemental ailment duration on you per # devotion"] = { "ElementalAilmentSelfDurationPerDevotion_", }, + ["#% reduced elemental damage taken from hits per endurance charge"] = { "ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1", }, + ["#% reduced elemental damage taken per endurance charge"] = { "ReducedElementalDamageTakenPerEnduranceChargeUber1", }, + ["#% reduced elemental damage taken while stationary"] = { "ReducedElementalDamageTakenWhileStationaryUnique__1_", }, + ["#% reduced endurance charge duration"] = { "EnduranceChargeDurationUniqueAmulet14", }, + ["#% reduced enemy stun threshold"] = { "StunThresholdReductionImlicitMarakethOneHandSword1", "StunThresholdReductionImlicitMarakethOneHandSword2", "StunThresholdReductionImplicitMace1", "StunThresholdReductionImplicitMace2", "StunThresholdReductionImplicitMace3_", "StunThresholdReductionUniqueGlovesDexInt2", "StunThresholdReductionUniqueTwoHandMace1", }, + ["#% reduced enemy stun threshold during any flask effect"] = { "ReducedStunThresholdWhileUsingFlaskUniqueBelt9d", }, + ["#% reduced enemy stun threshold while you have at least # strength"] = { "ReducedStunThresholdWith500StrengthUber1", }, + ["#% reduced enemy stun threshold with melee weapons"] = { "TinctureStunThresholdImplicit1", }, + ["#% reduced enemy stun threshold with this weapon"] = { "StunThresholdReductionUniqueClaw2_", "StunThresholdReductionUniqueClaw6", "StunThresholdReductionUniqueTwoHandSword5", }, + ["#% reduced energy shield recharge rate"] = { "IncreasedEnergyShieldDelayUniqueHelmetInt4", "ReducedEnergyShieldRegenerationRateUniqueQuiver7", }, + ["#% reduced explicit critical modifier magnitudes"] = { "WeaponEnchantmentHeistFireEffectCriticalEffectPenalty1", "WeaponEnchantmentHeistLightningEffectCriticalEffectPenalty1_", "WeaponEnchantmentHeistManaEffectCriticalEffectPenalty1", "WeaponEnchantmentHeistPhysicalEffectCriticalEffectPenalty1", }, + ["#% reduced explicit damage modifier magnitudes"] = { "WeaponEnchantmentHeistSpeedEffectDamageEffectPenalty1", }, + ["#% reduced explicit defence modifier magnitudes"] = { "ArmourEnchantmentHeistResistanceEffectDefenceEffectPenalty1__", }, + ["#% reduced explicit life modifier magnitudes"] = { "ArmourEnchantmentHeistResistanceEffectLifeEffectPenalty1", }, + ["#% reduced flask charges gained"] = { "BeltReducedFlaskChargesGainedUnique__1", "FlaskChargesUniqueJewel___8", }, + ["#% reduced flask charges gained during any flask effect"] = { "FlaskChargeRecoveryDuringFlaskEffectUnique__2", }, + ["#% reduced flask effect duration"] = { "BeltReducedFlaskDurationUniqueDescentBelt1", }, + ["#% reduced flask effect duration per level"] = { "FlaskDurationPerLevelUnique__1", }, + ["#% reduced flask life recovery rate"] = { "FlaskLifeRecoveryRateUniqueSceptre5", }, + ["#% reduced freeze duration on you"] = { "JewelImplicitReducedFreezeDuration_", "ReducedFreezeDurationUniqueShieldStrInt3", }, + ["#% reduced frenzy charge duration"] = { "FrenzyChargeDurationUniqueBootsStrDex2", "FrenzyChargeDurationUnique__1", }, + ["#% reduced frenzy charge duration per frenzy charge"] = { "FrenzyChargeDurationPerFrenzyChargeUniqueGlovesDexInt5", }, + ["#% reduced global accuracy rating"] = { "AccuracyPercentUniqueClaw9", "AccuracyPercentUnique__1", }, + ["#% reduced global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueHelmetStrDex2", }, + ["#% reduced golem size"] = { "GolemSizeUnique__1", }, + ["#% reduced ignite duration on enemies"] = { "BurnDurationUniqueWand10", "IgniteDurationUnique__1", "IgniteDurationUnique__2", "IgniteDurationUnique__3_", }, + ["#% reduced ignite duration on you"] = { "JewelImplicitReducedIgniteDuration_", }, + ["#% reduced intelligence"] = { "PercentageIntelligenceUnique__1", }, + ["#% reduced life recovery rate per # strength on unallocated passives in radius"] = { "LifeRecoveryRatePerUnallocatedStrengthUnique__1_", }, + ["#% reduced life regeneration rate"] = { "ReducedLifeRegenerationPercentUniqueOneHandAxe5", }, + ["#% reduced light radius"] = { "LightRadiusUniqueBodyStrInt4", "LightRadiusUniqueBootsStrDex2", "LightRadiusUniqueBootsStrDex3", "LightRadiusUniqueHelmetStrDex6", "LightRadiusUniqueHelmetStrInt4", "LightRadiusUnique__10", "LightRadiusUnique__6", }, + ["#% reduced mana cost of skills"] = { "ManaCostReductionUniqueJewel44", }, + ["#% reduced mana cost of skills per # devotion"] = { "ReducedManaCostPerDevotion", }, + ["#% reduced mana cost of skills when on low life"] = { "ReducedManaCostOnLowLifeUniqueHelmetStrInt1", }, + ["#% reduced mana cost per endurance charge"] = { "ReduceManaCostPerEnduranceChargeUnique__1", }, + ["#% reduced mana recovery rate per # intelligence on unallocated passives in radius"] = { "ManaRecoveryRatePerUnallocatedIntelligenceUnique__1", }, + ["#% reduced mana regeneration rate"] = { "ManaRegenerationUniqueHelmetStrInt5", "ManaRegenerationUnique__14___", }, + ["#% reduced maximum energy shield"] = { "ReducedEnergyShieldPercentUniqueAmulet13", "ReducedEnergyShieldPercentUniqueRing16", }, + ["#% reduced maximum life"] = { "MaximumLifeUniqueAmulet6", "MaximumLifeUniqueOneHandSword2", "MaximumLifeUniqueRing16", "MaximumLifeUnique__23", }, + ["#% reduced maximum mana"] = { "GainManaOnManaPaidManaCost1", "GainManaOnManaPaidManaCost2", "GainManaOnManaPaidManaCost3____", "MaximumManaUniqueBodyStrInt1", }, + ["#% reduced maximum number of raised zombies"] = { "NumberOfZombiesSummonedPercentageUniqueSceptre3", }, + ["#% reduced maximum number of summoned raging spirits"] = { "ReducedRagingSpiritsAllowedUnique__1", }, + ["#% reduced maximum recovery per energy shield leech"] = { "MaximumESLeechAmountUnique__1_", }, + ["#% reduced maximum recovery per life leech"] = { "MaximumLifeLeechAmountUnique__1", "MaximumLifeLeechAmountUnique__2", }, + ["#% reduced movement speed"] = { "MovementSkillCooldownReducedMoveSpeedImplicitR1", "MovementSkillCooldownReducedMoveSpeedImplicitR2_", "MovementSkillCooldownReducedMoveSpeedImplicitR3_", "MovementVelocityUniqueBodyStr5", "MovementVelocityUniqueGlovesStrDex2", "MovementVelocityUniqueShieldStr1", "MovementVelocityUniqueTwoHandMace3", "MovementVelocityUnique__52", "MovementVeolcityUniqueBodyDex6", "ReducedMovementVelocityUniqueCorruptedJewel2_", "ReducedMovementVelocityUniqueOneHandMace7", "ReducedMovementVelocityUnique__1", "ReducedMovementVelocityUnique__2", "ReducedMovementVelocityUnique__3", }, + ["#% reduced movement speed per # dexterity on unallocated passives in radius"] = { "MovementSpeedPerUnallocatedDexterityUnique__1_", }, + ["#% reduced movement speed per chest opened recently"] = { "MovementSpeedPerChestOpenedRecentlyUnique__1", }, + ["#% reduced movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueBootsStrDex1", }, + ["#% reduced power charge duration"] = { "PowerChargeDurationUniqueAmulet14", }, + ["#% reduced projectile damage"] = { "ReducedProjectileDamageUniqueAmulet12", }, + ["#% reduced projectile speed"] = { "ProjectileSpeedUniqueQuiver2", "ProjectileSpeedUniqueQuiver8", "ProjectileSpeedUnique__3", "ProjectileSpeedUnique__4", }, + ["#% reduced quantity of items found"] = { "ItemFoundQuantityReduceUniqueCorruptedJewel1", }, + ["#% reduced rarity of items found"] = { "ItemFoundRarityDecreaseUniqueOneHandSword4", "ItemFoundRarityDecreaseUniqueRapier1", "ItemFoundRarityIncreaseUniqueRapier2", }, + ["#% reduced recovery rate"] = { "FlaskIncreasedDuration1", }, + ["#% reduced reflected elemental damage taken"] = { "JewelImplicitReducedElementalReflect", }, + ["#% reduced reflected physical damage taken"] = { "JewelImplicitReducedPhysicalReflect", }, + ["#% reduced reservation efficiency of skills"] = { "IncreasedManaReservationsCostUnique__1", "IncreasedManaReservationsCostUnique__2", "ReservationEfficiencyUnique__1_", "ReservationEfficiencyUnique__2", }, + ["#% reduced spell damage"] = { "SpellDamageOnWeaponUniqueWand3", }, + ["#% reduced spell damage taken from blinded enemies"] = { "SpellDamageTakenFromBlindEnemies__1", }, + ["#% reduced strength"] = { "PercentageStrengthUnique__1", "PercentageStrengthUnique__4_", }, + ["#% reduced strength requirement"] = { "ReducedStrengthRequirementUniqueBodyStr5", "ReducedStrengthRequirementsUniqueTwoHandMace5", }, + ["#% reduced stun and block recovery"] = { "NearbyEnemiesReducedStunRecoveryUnique__1", }, + ["#% reduced time before lockdown"] = { "HeistContractNPCPerksDoubled", }, + ["#% reduced trap duration"] = { "TrapDurationUnique__1", }, + ["#% reduced ward during effect"] = { "FlaskBuffWardWhileHealingUnique__1", }, + ["#% slower start of energy shield recharge during any flask effect"] = { "EnergyShieldDelayDuringFlaskEffect__1", }, + ["#% to all elemental resistances"] = { "AllResistancesUniqueRing25", "AllResistancesUniqueRing3", "AllResistancesUniqueShieldDexInt2", }, + ["#% to all maximum resistances"] = { "IncreasedMaximumResistsUnique__2", }, + ["#% to all resistances per minion from your non-vaal skills"] = { "AllResistancesReducedPerActiveNonVaalSkillMinionUnique_1", }, + ["#% to amount of suppressed spell damage prevented"] = { "SpellDamageSuppressedUnique__2", }, + ["#% to cold resistance"] = { "ColdResistUnique__14", "ColdResistUnique__9", }, + ["#% to fire resistance"] = { "FireResistUniqueBodyStr5", "FireResistUniqueHelmetInt7", "FireResistUnique__10", "FireResistUnique__11", "FireResistUnique__3", }, + ["#% to global critical strike multiplier"] = { "CriticalMultiplierUniqueRing8", }, + ["#% to lightning resistance"] = { "LightningResistUniqueBodyStrDex2", "LightningResistUnique__9", }, + ["#% to maximum chance to block attack damage"] = { "MaximumBlockChanceUnique__1", "MaximumBlockChanceUnique__2", }, + ["#% to maximum chance to block spell damage"] = { "MaximumSpellBlockChanceUnique__1", }, + ["(#) life gained when you block"] = { "GainLifeOnBlockUniqueAmulet16", }, + ["(#) mana gained when you block"] = { "GainManaOnBlockUniqueAmulet16", "GainManaOnBlockUnique__1", }, + ["(#) to (#) added attack chaos damage per # maximum mana"] = { "AttacksGainMinMaxAddedChaosDamageBasedOnManaUnique__1", }, + ["(#) to (#) added cold damage per frenzy charge"] = { "ChargeBonusAddedColdDamagePerFrenzyCharge", }, + ["(#) to (#) added cold damage with bow attacks"] = { "AddedColdDamageUniqueBodyDex1", }, + ["(#) to (#) added fire damage per # of maximum life or maximum mana, whichever is lower"] = { "AddedFireDamagePer100LowestOfLifeOrManaUnique__1", }, + ["(#) to (#) added lightning damage with wand attacks"] = { "AddedLightningDamageUnique__4", }, + ["(#) to (#) added physical damage with bow attacks"] = { "AddedPhysicalDamageUniqueQuiver10", "AddedPhysicalDamageUniqueQuiver3", "AddedPhysicalDamageUniqueQuiver9", }, + ["(#) to (#) fire damage per endurance charge"] = { "ChargeBonusAddedFireDamagePerEnduranceCharge", }, + ["(#) to (#) lightning damage per power charge"] = { "ChargeBonusAddedLightningDamagePerPowerCharge", "GlobalAddedLightningDamagePerPowerChargeUnique__1", }, + ["(#)% additional physical damage reduction"] = { "AdditionalPhysicalDamageReductionUnique_1UNUSED", "TalismanReducedPhysicalDamageTaken_", }, + ["(#)% additional physical damage reduction during effect"] = { "LocalFlaskPhysicalDamageReductionUnique__1", }, + ["(#)% additional physical damage reduction while bleeding"] = { "AdditionalPhysicalDamageReductionWhileBleedingUnique__1", }, + ["(#)% chance for bleeding inflicted with this weapon to deal #% more damage"] = { "VillageLocalChanceForBleedingDamage", }, + ["(#)% chance for elemental resistances to count as being #% against enemy hits"] = { "TreatResistancesAsMaxChanceUnique__1", }, + ["(#)% chance for energy shield recharge to start when you block"] = { "EnergyShieldRechargeOnBlockUnique__1", }, + ["(#)% chance for energy shield recharge to start when you kill an enemy"] = { "EnergyShieldRechargeOnKillUnique__1__", }, + ["(#)% chance for poisons inflicted with this weapon to deal #% more damage"] = { "VillageLocalChanceForPoisonDamage", }, + ["(#)% chance for traps to trigger an additional time"] = { "TrapTriggerTwiceChanceUnique__1", }, + ["(#)% chance on melee hit for all impales on the enemy to last for an additional hit"] = { "ChanceMeleeHitsDontConsumeImpalesUnique_1UNUSED", }, + ["(#)% chance on melee hit for the strongest impale on target to last for # additional hit"] = { "ChanceMeleeHitsDontRemoveSTRONGESTImpaleUnique_1", }, + ["(#)% chance that if you would gain rage on hit, you instead gain up to your maximum rage"] = { "ChanceToGainMaximumRageUnique__1", }, + ["(#)% chance to aggravate bleeding on targets you hit with attacks"] = { "VillageAggravateBleedOnAttack", }, + ["(#)% chance to avoid being stunned"] = { "AvoidStunUniqueRingVictors", }, + ["(#)% chance to avoid bleeding"] = { "ChanceToAvoidBleedingUnique__1", }, + ["(#)% chance to avoid elemental ailments"] = { "AvoidElementalAilmentsUnique__2", "AvoidElementalAilmentsUnique__3", }, + ["(#)% chance to avoid projectiles"] = { "ProjectileAvoidUnique", }, + ["(#)% chance to blind enemies on critical strike"] = { "ChanceToBlindOnCriticalStrikesUnique__2_", }, + ["(#)% chance to blind enemies on hit with attacks"] = { "AttacksBlindOnHitChanceUnique__2", }, + ["(#)% chance to blind enemies on hit with spells"] = { "VillageSpellChanceToBlind", }, + ["(#)% chance to block attack damage"] = { "BlockPercentUniqueAmulet16", "BlockPercentUniqueQuiver4", "BlockPercentUnique__1", "BlockPercentUnique__3", }, + ["(#)% chance to block spell damage"] = { "BlockingBlocksSpellsUnique__2", "SpellBlockPercentageUniqueAmulet1", "SpellBlockPercentageUniqueBootsInt5", "SpellBlockPercentageUniqueQuiver4", "SpellBlockPercentageUniqueShieldDex6", "SpellBlockPercentageUniqueShieldInt1", "SpellBlockPercentageUniqueShieldStrInt1", "SpellBlockPercentageUniqueTwoHandAxe6", "SpellBlockPercentageUnique__2", "SpellBlockPercentageUnique__3_", "SpellBlockPercentageUnique__4", "SpellBlockUniqueBootsInt5", "SpellBlockUniqueShieldInt1", "SpellBlockUniqueShieldStrInt1", }, + ["(#)% chance to chill attackers for # seconds on block"] = { "ChanceToChillAttackersOnBlockUnique__1", }, + ["(#)% chance to cover enemies in ash on hit"] = { "VillageCoverInAshOnHit", }, + ["(#)% chance to cover enemies in frost on hit"] = { "VillageCoverInFrostOnHit", }, + ["(#)% chance to create chilled ground when you freeze an enemy"] = { "VillageSpreadChilledGroundOnFreeze", }, + ["(#)% chance to create consecrated ground when you shatter an enemy"] = { "VillageSpreadConsecratedGroundOnShatter", }, + ["(#)% chance to curse enemies with elemental weakness on hit"] = { "VillageCurseOnHitElementalWeakness", }, + ["(#)% chance to curse you with punishment on kill"] = { "PunishmentSelfCurseOnKillUniqueCorruptedJewel13", }, + ["(#)% chance to deal double damage if you've cast vulnerability in the past # seconds"] = { "VulnerabilityDoubleDamageUnique__1", }, + ["(#)% chance to freeze"] = { "ChanceToFreezeUniqueQuiver5", "VillageChanceToFreeze", "VillageChanceToFreezeTwoHand", }, + ["(#)% chance to freeze during any flask effect"] = { "FreezeChanceWhileUsingFlaskUniqueBelt9b", }, + ["(#)% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteUnique__1", "ChanceToFreezeShockIgniteUnique__2", "ChanceToFreezeShockIgniteUnique__3", "TalismanChanceToFreezeShockIgnite_", }, + ["(#)% chance to gain a frenzy charge for each enemy you hit with a critical strike"] = { "FrenzyChargePerEnemyCritUnique__1", }, + ["(#)% chance to gain a frenzy charge on critical strike at close range"] = { "FrenzyChargeOnCritCloseRangeUnique__1", }, + ["(#)% chance to gain a frenzy charge on hit if # redeemer items are equipped"] = { "FrenzyChargeOnHitChance4RedeemerItemsUnique__1", }, + ["(#)% chance to gain a frenzy charge on hit while blinded"] = { "FrenzyChargeOnHitBlindedUnique__1", }, + ["(#)% chance to gain a frenzy charge on hitting an enemy with no evasion rating"] = { "FrenzyChargeNoEvasionRatingUnique__1", }, + ["(#)% chance to gain a frenzy charge on kill"] = { "FrenzyChargeOnKillChanceUniqueBootsDex4", "VillageFrenzyChargeOnKillChance", }, + ["(#)% chance to gain a frenzy charge on killing an enemy affected by at least # poisons"] = { "GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1", }, + ["(#)% chance to gain a power charge on hit if # crusader items are equipped"] = { "PowerChargeOnHit4CrusaderItemsUnique__1", }, + ["(#)% chance to gain a power charge on kill"] = { "PowerChargeOnKillChanceUnique__1", "VillagePowerChargeOnKillChance", }, + ["(#)% chance to gain a power charge on killing an enemy affected by fewer than # poisons"] = { "GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1", }, + ["(#)% chance to gain a power charge when you cast a curse spell"] = { "PowerChargeOnCurseUnique__1", }, + ["(#)% chance to gain a power, frenzy or endurance charge on kill"] = { "PowerFrenzyOrEnduranceChargeOnKillUnique__1", }, + ["(#)% chance to gain an additional vaal soul on kill"] = { "AdditionalVaalSoulOnKillUniqueCorruptedJewel4_", }, + ["(#)% chance to gain an endurance charge on hitting an enemy with no armour"] = { "EnduranceChargeNoArmourUnique__1_", }, + ["(#)% chance to gain an endurance charge on kill"] = { "VillageEnduranceChargeOnKillChance", }, + ["(#)% chance to gain chaotic might for # seconds on kill"] = { "VillageChaoticMightOnKill", }, + ["(#)% chance to ignite"] = { "ChanceToIgniteUniqueBootsStrInt3", "ChanceToIgniteUnique__1", "ChanceToIgniteUnique__4", "ChanceToIgniteUnique__6", "ChanceToIgniteUnique__7", "IncreasedChanceToIgniteUniqueRing24", "VillageChanceToIgnite", "VillageChanceToIgniteTwoHand", }, + ["(#)% chance to ignite during any flask effect"] = { "IgniteChanceWhileUsingFlaskUniqueBelt9a", }, + ["(#)% chance to impale enemies on hit with attacks"] = { "AttackImpaleChanceUnique__1", "AttackImpaleChanceUnique__2", "AttackImpaleChanceUnique__3", }, + ["(#)% chance to impale on spell hit"] = { "VillageChanceToImpaleWithSpells", }, + ["(#)% chance to inflict a grasping vine on melee weapon hit"] = { "TinctureGraspingVineOnWeaponHitUnique__1", }, + ["(#)% chance to inflict an additional poison on the same target when you inflict poison"] = { "AdditionalPoisonChanceUnique__1", }, + ["(#)% chance to inflict brittle"] = { "AlternateColdAilmentUnique__1", }, + ["(#)% chance to inflict cold exposure on hit"] = { "VillageColdExposureOnHit", }, + ["(#)% chance to inflict corrosion on hit with attacks"] = { "AttackCorrosionOnHitChanceUnique__1", }, + ["(#)% chance to inflict corrosion on hit with spells"] = { "VillageSpellCorrosionOnHitChance", }, + ["(#)% chance to inflict fire exposure on hit"] = { "VillageFireExposureOnHit", }, + ["(#)% chance to inflict lightning exposure on hit"] = { "VillageLightningExposureOnHit", }, + ["(#)% chance to inflict withered for # seconds on hit"] = { "WitherOnHitChanceUnique__1", }, + ["(#)% chance to lose a frenzy charge when you use a travel skill"] = { "LoseFrenzyChargeOnTravelSkillUnique__1", }, + ["(#)% chance to lose a power charge when you gain elusive"] = { "LosePowerChargeOnElusiveGainUnique__1_", }, + ["(#)% chance to lose an endurance charge when you gain fortification"] = { "LoseEnduranceChargeOnFortifyGainUnique__1", }, + ["(#)% chance to maim on hit"] = { "LocalMaimOnHitChanceUnique__1", }, + ["(#)% chance to poison on hit with attacks"] = { "ChanceToPoisonWithAttacksUnique___2", }, + ["(#)% chance to poison per power charge"] = { "PoisonChancePerPowerChargeUnique__1", }, + ["(#)% chance to refresh ignite duration on melee weapon hit"] = { "TinctureRefreshIgniteDurationUnique__1", }, + ["(#)% chance to restore your ward on hit"] = { "VillageWardRestoreChance", }, + ["(#)% chance to sap enemies"] = { "AlternateLightningAilmentUnique__1__", }, + ["(#)% chance to sap enemies in chilling areas"] = { "ChanceToSapVsEnemiesInChillingAreasUnique__1", }, + ["(#)% chance to scorch enemies"] = { "AlternateFireAilmentUnique__1", }, + ["(#)% chance to shock"] = { "ChanceToShockUniqueOneHandSword7", "ChanceToShockUnique__3", "ChanceToShockUnique__4_", "VillageChanceToShock", "VillageChanceToShockTwoHand", }, + ["(#)% chance to shock attackers for # seconds on block"] = { "ChanceToShockAttackersOnBlockUnique__1_", }, + ["(#)% chance to shock during any flask effect"] = { "ShockChanceWhileUsingFlaskUniqueBelt9c", }, + ["(#)% chance to throw up to # additional traps"] = { "ChanceToThrowFourAdditionalTrapsUnique__1", }, + ["(#)% chance to trigger level # create lesser shrine when you kill an enemy"] = { "CastLevel1SummonLesserShrineOnKillUnique", }, + ["(#)% chance when you kill a magic monster to gain its modifiers for # seconds"] = { "VillageGainMagicMonsterModsOnKill", }, + ["(#)% chance when you kill a scorched enemy to burn each surrounding"] = { "ScorchedEnemiesDegenExplodeUnique__1_", }, + ["(#)% faster restoration of ward"] = { "WardDelayRecoveryUnique__1", }, + ["(#)% faster start of energy shield recharge"] = { "ReducedEnergyShieldDelayImplicit1_", "ReducedEnergyShieldDelayUniqueDagger4", "ReducedEnergyShieldDelayUnique__1", }, + ["(#)% increased amount recovered"] = { "FlaskIncreasedRecoveryAmountUniqueFlask4", "FlaskIncreasedRecoveryAmountUnique__1", "FlaskIncreasedRecoveryAmountUnique__2", }, + ["(#)% increased area damage"] = { "AreaDamageUniqueBodyDexInt1", "AreaDamageUniqueOneHandMace7", }, + ["(#)% increased area of effect"] = { "AreaOfEffectUniqueBodyDexInt1", "AreaOfEffectUniqueOneHandMace7", "AreaOfEffectUnique_9", "AreaOfEffectUnique__10", "AreaOfEffectUnique__6", "AreaOfEffectUnique__8", "TalismanIncreasedAreaOfEffect", "UniqueSpecialCorruptionAreaOfEffect_", }, + ["(#)% increased area of effect during effect"] = { "FlaskIncreasedAreaOfEffectDuringEffectUnique__1_", }, + ["(#)% increased area of effect for attacks"] = { "IncreasedAttackAreaOfEffectUnique__4", }, + ["(#)% increased area of effect of aura skills"] = { "AuraIncreasedIncreasedAreaOfEffectUnique_2", "AuraIncreasedIncreasedAreaOfEffectUnique_3", "AuraIncreasedIncreasedAreaOfEffectUnique_4", "AuraIncreasedIncreasedAreaOfEffectUnique_5", "AuraIncreasedIncreasedAreaOfEffectUnique_6", "IncreasedAuraRadiusUniqueBodyDexInt4", "JewelImplicitAuraAreaOfEffect", }, + ["(#)% increased area of effect while in sand stance"] = { "AreaOfEffectSandStanceUnique__1", }, + ["(#)% increased area of effect while unarmed"] = { "UnarmedAreaOfEffectUniqueJewel4", }, + ["(#)% increased armour"] = { "GlobalPhysicalDamageReductionRatingPercentUnique__1", "GlobalPhysicalDamageReductionRatingPercentUnique__2", "IncreasedPhysicalDamageReductionRatingPercentUniqueJewel50", "IncreasedPhysicalDamageReductionRatingPercentUnique__1", "LocalIncreasedArmourPercentAndStunRecoveryUniqueShieldStr1", "LocalIncreasedArmourUniqueHelmetStrInt_2", "LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique6", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique7", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique8_", "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStr6", "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStrDexInt1a", "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBootsStr3", "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueGlovesStr3", "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueHelmetStrDex6", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__1", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__11", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__13", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__14_", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__15", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__16", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__17", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__18", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__20", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__21", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__23", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__24", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__25", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__26", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__27", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__28", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__29", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__3", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__30", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__31", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__32", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__33", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__34", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__35", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__36UNUSED", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__37", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__38", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__5", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__6", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__7", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__8", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__9", "LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr3", "LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr4", "LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrDex1", "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr1", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr2", "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3", "LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr2", "LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr3", "LocalIncreasedPhysicalDamageReductionRatingUnique__2", }, + ["(#)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergySheildUniqueGlovesStrInt2", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1e", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1h", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt1", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt3", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt4", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt5", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt6", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt7", "LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt1", "LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt3", "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt1", "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt2", "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt5", "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt6", "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt_1", "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt3", "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4", "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt5", "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt6", "LocalIncreasedArmourAndEnergyShieldUnique__1", "LocalIncreasedArmourAndEnergyShieldUnique__10_", "LocalIncreasedArmourAndEnergyShieldUnique__11", "LocalIncreasedArmourAndEnergyShieldUnique__12", "LocalIncreasedArmourAndEnergyShieldUnique__13_", "LocalIncreasedArmourAndEnergyShieldUnique__14", "LocalIncreasedArmourAndEnergyShieldUnique__15", "LocalIncreasedArmourAndEnergyShieldUnique__16", "LocalIncreasedArmourAndEnergyShieldUnique__17_", "LocalIncreasedArmourAndEnergyShieldUnique__18_", "LocalIncreasedArmourAndEnergyShieldUnique__2", "LocalIncreasedArmourAndEnergyShieldUnique__20", "LocalIncreasedArmourAndEnergyShieldUnique__21", "LocalIncreasedArmourAndEnergyShieldUnique__23_", "LocalIncreasedArmourAndEnergyShieldUnique__24", "LocalIncreasedArmourAndEnergyShieldUnique__25", "LocalIncreasedArmourAndEnergyShieldUnique__26", "LocalIncreasedArmourAndEnergyShieldUnique__27", "LocalIncreasedArmourAndEnergyShieldUnique__28", "LocalIncreasedArmourAndEnergyShieldUnique__3", "LocalIncreasedArmourAndEnergyShieldUnique__30", "LocalIncreasedArmourAndEnergyShieldUnique__5", "LocalIncreasedArmourAndEnergyShieldUnique__6", "LocalIncreasedArmourAndEnergyShieldUnique__7", "LocalIncreasedArmourAndEnergyShieldUnique__8", "LocalIncreasedArmourAndEnergyShieldUnique__9_", }, + ["(#)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionRatingUniqueBodyStrDex3", "LocalIncreasedArmourAndEvasionRatingUnique__1", "LocalIncreasedArmourAndEvasionUniqueBodyStrDex2", "LocalIncreasedArmourAndEvasionUniqueBodyStrDex4", "LocalIncreasedArmourAndEvasionUniqueBodyStrDex5", "LocalIncreasedArmourAndEvasionUniqueBodyStrDexInt1b", "LocalIncreasedArmourAndEvasionUniqueBootsStrDex3", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex2", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex4", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex5", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex6", "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex2", "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex4", "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex5", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex1", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex3", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex4", "LocalIncreasedArmourAndEvasionUniqueShieldStrDex5", "LocalIncreasedArmourAndEvasionUniqueStrDexHelmet1", "LocalIncreasedArmourAndEvasionUnique__1", "LocalIncreasedArmourAndEvasionUnique__10_", "LocalIncreasedArmourAndEvasionUnique__11", "LocalIncreasedArmourAndEvasionUnique__12", "LocalIncreasedArmourAndEvasionUnique__13", "LocalIncreasedArmourAndEvasionUnique__14", "LocalIncreasedArmourAndEvasionUnique__15_", "LocalIncreasedArmourAndEvasionUnique__16__", "LocalIncreasedArmourAndEvasionUnique__17_", "LocalIncreasedArmourAndEvasionUnique__18", "LocalIncreasedArmourAndEvasionUnique__19_", "LocalIncreasedArmourAndEvasionUnique__2", "LocalIncreasedArmourAndEvasionUnique__20", "LocalIncreasedArmourAndEvasionUnique__21", "LocalIncreasedArmourAndEvasionUnique__22", "LocalIncreasedArmourAndEvasionUnique__23", "LocalIncreasedArmourAndEvasionUnique__24", "LocalIncreasedArmourAndEvasionUnique__25", "LocalIncreasedArmourAndEvasionUnique__26", "LocalIncreasedArmourAndEvasionUnique__27", "LocalIncreasedArmourAndEvasionUnique__28", "LocalIncreasedArmourAndEvasionUnique__3_", "LocalIncreasedArmourAndEvasionUnique__4", "LocalIncreasedArmourAndEvasionUnique__5_", "LocalIncreasedArmourAndEvasionUnique__6", "LocalIncreasedArmourAndEvasionUnique__7", "LocalIncreasedArmourAndEvasionUnique__8_", "LocalIncreasedArmourAndEvasionUnique__9", }, + ["(#)% increased armour while bleeding"] = { "IncreasedArmourWhileBleedingUnique__1", }, + ["(#)% increased armour, evasion and energy shield"] = { "LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i", "LocalIncreasedArmourEvasionEnergyShieldUnique__1_", }, + ["(#)% increased aspect of the spider area of effect"] = { "AreaOfEffectAspectOfSpiderUnique__1", }, + ["(#)% increased aspect of the spider debuff duration"] = { "AspectOfSpiderDurationUnique__1", }, + ["(#)% increased attack and cast speed"] = { "AttackAndCastSpeedUniqueRing39", "AttackAndCastSpeedUnique__1", "AttackAndCastSpeedUnique__10", "AttackAndCastSpeedUnique__2", "AttackAndCastSpeedUnique__3", "AttackAndCastSpeedUnique__4", "AttackAndCastSpeedUnique__5", "AttackAndCastSpeedUnique__6", "AttackAndCastSpeedUnique__7", "AttackAndCastSpeedUnique__8", "AttackAndCastSpeedUnique__9", "TalismanAttackAndCastSpeed", }, + ["(#)% increased attack and cast speed while at maximum fortification"] = { "AttackAndCastSpeedFortifyUnique__1", }, + ["(#)% increased attack and cast speed while physical aegis is depleted"] = { "AttackAndCastSpeedWithoutPhysicalAegisUnique__1", }, + ["(#)% increased attack and movement speed while you have a bestial minion"] = { "AttackAndMovementSpeedBeastialMinionUnique__1", }, + ["(#)% increased attack damage"] = { "DualStrikeThresholdJewel__2_", "TalismanAttackDamage", }, + ["(#)% increased attack damage against bleeding enemies"] = { "AttackDamageAgainstBleedingUnique__1__", }, + ["(#)% increased attack damage if you've been hit recently"] = { "AttackDamageIfHitRecentlyUnique", }, + ["(#)% increased attack damage if your opposite ring is a shaper item"] = { "AttackDamageShaperItemUnique__1", }, + ["(#)% increased attack damage while holding a shield"] = { "AttackDamageWhileHoldingShieldUnique__1", }, + ["(#)% increased attack speed"] = { "IncreasedAttackSpeedImplicitQuiver10New", "IncreasedAttackSpeedTransformedUnique__1", "IncreasedAttackSpeedUniqueAmulet20", "IncreasedAttackSpeedUniqueBodyStr3", "IncreasedAttackSpeedUniqueGlovesDemigods1", "IncreasedAttackSpeedUniqueGlovesDexInt_1", "IncreasedAttackSpeedUniqueGlovesStr1", "IncreasedAttackSpeedUniqueGlovesStrDex1", "IncreasedAttackSpeedUniqueGlovesStrDex5", "IncreasedAttackSpeedUniqueIntHelmet2", "IncreasedAttackSpeedUniqueQuiver10", "IncreasedAttackSpeedUniqueQuiver3", "IncreasedAttackSpeedUniqueQuiver5", "IncreasedAttackSpeedUniqueQuiver6", "IncreasedAttackSpeedUniqueQuiver7", "IncreasedAttackSpeedUniqueRing27", "IncreasedAttackSpeedUniqueRing37", "IncreasedAttackSpeedUniqueShieldDex6", "IncreasedAttackSpeedUniqueShieldDexInt2", "IncreasedAttackSpeedUniqueShieldInt5", "IncreasedAttackSpeedUnique_1", "IncreasedAttackSpeedUnique__2", "IncreasedAttackSpeedUnique__3_", "IncreasedAttackSpeedUnique__4_", "IncreasedAttackSpeedUnique__5", "IncreasedAttackSpeedUnique__6", "IncreasedAttackSpeedUnique__7", "IncreasedAttackSpeedUnique__8", "IncreasedAttackSpeedUnique__9", "LocalIncreasedAccuracyUnique__2", "LocalIncreasedAttackSpeedOneHandSword3", "LocalIncreasedAttackSpeedUniqueBow1", "LocalIncreasedAttackSpeedUniqueBow10", "LocalIncreasedAttackSpeedUniqueBow11", "LocalIncreasedAttackSpeedUniqueBow12", "LocalIncreasedAttackSpeedUniqueBow6", "LocalIncreasedAttackSpeedUniqueBow8", "LocalIncreasedAttackSpeedUniqueBow9", "LocalIncreasedAttackSpeedUniqueClaw1", "LocalIncreasedAttackSpeedUniqueClaw8", "LocalIncreasedAttackSpeedUniqueClaw9", "LocalIncreasedAttackSpeedUniqueOneHandAxe1", "LocalIncreasedAttackSpeedUniqueOneHandAxe2", "LocalIncreasedAttackSpeedUniqueOneHandAxe7", "LocalIncreasedAttackSpeedUniqueOneHandSword11", "LocalIncreasedAttackSpeedUniqueOneHandSword13_", "LocalIncreasedAttackSpeedUniqueOneHandSword6", "LocalIncreasedAttackSpeedUniqueOneHandSword7", "LocalIncreasedAttackSpeedUniqueOneHandSword8", "LocalIncreasedAttackSpeedUniqueOneHandSword9", "LocalIncreasedAttackSpeedUniqueSceptre1", "LocalIncreasedAttackSpeedUniqueSceptre7", "LocalIncreasedAttackSpeedUniqueSceptre9", "LocalIncreasedAttackSpeedUniqueStaff7", "LocalIncreasedAttackSpeedUniqueStaff9", "LocalIncreasedAttackSpeedUniqueTwoHandAxe7", "LocalIncreasedAttackSpeedUniqueTwoHandAxe9", "LocalIncreasedAttackSpeedUniqueTwoHandMace8_", "LocalIncreasedAttackSpeedUniqueTwoHandSword6", "LocalIncreasedAttackSpeedUniqueTwoHandSword8", "LocalIncreasedAttackSpeedUniqueWand6", "LocalIncreasedAttackSpeedUniqueWand9", "LocalIncreasedAttackSpeedUnique__1", "LocalIncreasedAttackSpeedUnique__10", "LocalIncreasedAttackSpeedUnique__11", "LocalIncreasedAttackSpeedUnique__12", "LocalIncreasedAttackSpeedUnique__13", "LocalIncreasedAttackSpeedUnique__14", "LocalIncreasedAttackSpeedUnique__15", "LocalIncreasedAttackSpeedUnique__16", "LocalIncreasedAttackSpeedUnique__17", "LocalIncreasedAttackSpeedUnique__18", "LocalIncreasedAttackSpeedUnique__19", "LocalIncreasedAttackSpeedUnique__2", "LocalIncreasedAttackSpeedUnique__20", "LocalIncreasedAttackSpeedUnique__21", "LocalIncreasedAttackSpeedUnique__22", "LocalIncreasedAttackSpeedUnique__23", "LocalIncreasedAttackSpeedUnique__24", "LocalIncreasedAttackSpeedUnique__25", "LocalIncreasedAttackSpeedUnique__26_", "LocalIncreasedAttackSpeedUnique__27", "LocalIncreasedAttackSpeedUnique__28", "LocalIncreasedAttackSpeedUnique__29", "LocalIncreasedAttackSpeedUnique__3", "LocalIncreasedAttackSpeedUnique__30", "LocalIncreasedAttackSpeedUnique__31", "LocalIncreasedAttackSpeedUnique__32", "LocalIncreasedAttackSpeedUnique__33", "LocalIncreasedAttackSpeedUnique__34", "LocalIncreasedAttackSpeedUnique__35", "LocalIncreasedAttackSpeedUnique__36", "LocalIncreasedAttackSpeedUnique__37___", "LocalIncreasedAttackSpeedUnique__39", "LocalIncreasedAttackSpeedUnique__4", "LocalIncreasedAttackSpeedUnique__40", "LocalIncreasedAttackSpeedUnique__42", "LocalIncreasedAttackSpeedUnique__43", "LocalIncreasedAttackSpeedUnique__44", "LocalIncreasedAttackSpeedUnique__45", "LocalIncreasedAttackSpeedUnique__5", "LocalIncreasedAttackSpeedUnique__6", "LocalIncreasedAttackSpeedUnique__7", "LocalIncreasedAttackSpeedUnique__8", "LocalIncreasedAttackSpeedUnique__9", "VillageLocalIncreasedAttackSpeed", }, + ["(#)% increased attack speed during effect"] = { "LocalFlaskAttackAndCastSpeedWhileHealingUnique__1", }, + ["(#)% increased attack speed if you haven't cast dash recently"] = { "AttackSpeedIfHaventUsedDashRecentlyUnique__1", }, + ["(#)% increased attack speed if you haven't gained a frenzy charge recently"] = { "AttackSpeedFrenzyChargeNotGainedUnique__1", }, + ["(#)% increased attack speed if you've changed stance recently"] = { "AttackSpeedChangedStanceUnique__1", }, + ["(#)% increased attack speed if you've dealt a critical strike recently"] = { "AttackSpeedIfCriticalStrikeDealtRecentlyUnique__1", }, + ["(#)% increased attack speed while chilled"] = { "AttackSpeedWhileChilledUnique__1", }, + ["(#)% increased attack speed while ignited"] = { "IncreasedAttackSpeedWhileIgnitedUniqueJewel20", "IncreasedAttackSpeedWhileIgnitedUniqueRing24", }, + ["(#)% increased attack speed with movement skills"] = { "AttackSpeedWithMovementSkillsUniqueBodyDex5", }, + ["(#)% increased attributes"] = { "AllAttributesPercentUnique__1", "AllAttributesPercentUnique__2", "TalismanIncreasedAllAttributes", }, + ["(#)% increased attributes if # elder items are equipped"] = { "PercentageAllAttributes6ElderItemsUnique__1", }, + ["(#)% increased bonuses gained from equipped quiver"] = { "QuiverModifierEffectUnique__1", }, + ["(#)% increased burning damage"] = { "BurnDamageUniqueCorruptedJewel1", "BurnDamageUniqueRing15", "BurnDamageUnique__1", }, + ["(#)% increased burning damage for each time you have shocked a non-shocked enemy recently, up to a maximum of #%"] = { "BurningDamagePerEnemyShockedRecentlyUnique__1_", }, + ["(#)% increased cast speed"] = { "IncreasedCastSpeedFishing__Unique1", "IncreasedCastSpeedUniqueAmulet1", "IncreasedCastSpeedUniqueAmulet20", "IncreasedCastSpeedUniqueClaw7", "IncreasedCastSpeedUniqueGlovesDemigods1", "IncreasedCastSpeedUniqueGlovesStr1", "IncreasedCastSpeedUniqueIntHelmet2", "IncreasedCastSpeedUniqueRing27", "IncreasedCastSpeedUniqueRing38", "IncreasedCastSpeedUniqueSceptre6", "IncreasedCastSpeedUniqueSceptre7", "IncreasedCastSpeedUniqueStaff12", "IncreasedCastSpeedUniqueStaff2", "IncreasedCastSpeedUniqueStaff_1", "IncreasedCastSpeedUniqueTwoHandMace8", "IncreasedCastSpeedUniqueWand11", "IncreasedCastSpeedUniqueWand3", "IncreasedCastSpeedUniqueWand4", "IncreasedCastSpeedUniqueWand7", "IncreasedCastSpeedUnique__1", "IncreasedCastSpeedUnique__10", "IncreasedCastSpeedUnique__11__", "IncreasedCastSpeedUnique__12", "IncreasedCastSpeedUnique__13", "IncreasedCastSpeedUnique__14", "IncreasedCastSpeedUnique__15_", "IncreasedCastSpeedUnique__16", "IncreasedCastSpeedUnique__17", "IncreasedCastSpeedUnique__18_", "IncreasedCastSpeedUnique__19__", "IncreasedCastSpeedUnique__2", "IncreasedCastSpeedUnique__20", "IncreasedCastSpeedUnique__21", "IncreasedCastSpeedUnique__22", "IncreasedCastSpeedUnique__23", "IncreasedCastSpeedUnique__24", "IncreasedCastSpeedUnique__25", "IncreasedCastSpeedUnique__26", "IncreasedCastSpeedUnique__27", "IncreasedCastSpeedUnique__28", "IncreasedCastSpeedUnique__3", "IncreasedCastSpeedUnique__4", "IncreasedCastSpeedUnique__5", "IncreasedCastSpeedUnique__6", "IncreasedCastSpeedUnique__7", "IncreasedCastSpeedUnique__8", "IncreasedCastSpeedUnique__9", "RitualRingCastSpeed", "VillageIncreasedCastSpeed", "VillageIncreasedCastSpeedTwoHand", }, + ["(#)% increased cast speed if you've dealt a critical strike recently"] = { "CastSpeedIfCriticalStrikeDealtRecentlyUnique__1", }, + ["(#)% increased cast speed while chilled"] = { "CastSpeedWhileChilledUnique__1", }, + ["(#)% increased cast speed while ignited"] = { "IncreasedCastSpeedWhileIgnitedUniqueJewel20_", "IncreasedCastSpeedWhileIgnitedUniqueRing24", }, + ["(#)% increased chaos damage"] = { "IncreasedChaosDamageImplicit1_", "IncreasedChaosDamageUniqueBodyStrDex4", "IncreasedChaosDamageUniqueCorruptedJewel2", "IncreasedChaosDamageUniqueShieldDex7", "IncreasedChaosDamageUniqueWand_1", "IncreasedChaosDamageUnique__1", "IncreasedChaosDamageUnique__2", "IncreasedChaosDamageUnique__3", "IncreasedChaosDamageUnique__4", "IncreasedChaosDamageUnique__4_2", "IncreasedChaosDamageUnique__5", "TalismanIncreasedChaosDamage", }, + ["(#)% increased chaos damage while affected by herald of agony"] = { "HeraldBonusAgonyChaosDamage_", }, + ["(#)% increased charge recovery"] = { "FlaskChargesAddedIncreasePercentUnique_1", "FlaskChargesAddedIncreasePercentUnique__2", "FlaskChargesAddedIncreasePercentUnique__3", }, + ["(#)% increased charges gained by other flasks during effect"] = { "IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1", }, + ["(#)% increased charges per use"] = { "FlaskChargesUsedUnique__5", "FlaskChargesUsedUnique__6_", "FlaskChargesUsedUnique__8", "FlaskChargesUsedUnique__9_", "FlaskChargesUsedUnique___12", "FlaskChargesUsedUnique___2", "LocalFlaskChargesUsedUniqueFlask2", "LocalFlaskChargesUsedUniqueFlask36", "LocalFlaskChargesUsedUniqueFlask9", }, + ["(#)% increased chill duration on enemies"] = { "IncreasedChillDurationUniqueQuiver5", "IncreasedChillDurationUnique__1", }, + ["(#)% increased cold damage"] = { "ColdDamagePercentUniqueBelt9b", "ColdDamagePercentUniqueHelmetStrInt3", "ColdDamagePercentUniqueRing19", "ColdDamagePercentUniqueStaff2", "ColdDamagePercentUnique__1", "ColdDamagePercentUnique__12", "ColdDamagePercentUnique__13", "ColdDamagePercentUnique__14", "ColdDamagePercentUnique__15", "ColdDamagePercentUnique__2", "ColdDamagePercentUnique__3", "ColdDamagePercentUnique__4", "ColdDamagePercentUnique__5", "ColdDamagePercentUnique__6", "ColdDamagePercentUnique__7", "ColdDamagePercentUnique__9", "ColdDamagePercentUnique___10", "ColdDamagePercentUnique___11", "RunecraftingColdDamage", "TalismanIncreasedColdDamage", }, + ["(#)% increased cold damage if you have used a fire skill recently"] = { "IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1", }, + ["(#)% increased cold damage per #% cold resistance above #%"] = { "ColdDamagePerResistanceAbove75Unique__1", }, + ["(#)% increased cold damage per #% missing cold resistance, up to a maximum of #%"] = { "ColdDamagePerMissingColdResistanceUnique__1", }, + ["(#)% increased cold damage per frenzy charge"] = { "IncreasedColdDamagePerFrenzyChargeUnique__1", "IncreasedColdDamagePerFrenzyChargeUnique__2", }, + ["(#)% increased cold damage while affected by herald of ice"] = { "HeraldBonusIceColdDamage", }, + ["(#)% increased cold damage while your off hand is empty"] = { "IncreasedColdDamageWhileOffhandIsEmpty_", }, + ["(#)% increased cold damage with attack skills"] = { "ColdWeaponDamageUniqueOneHandMace4", }, + ["(#)% increased cooldown recovery rate"] = { "GlobalCooldownRecoveryUnique__1", "GlobalCooldownRecoveryUnique__2", "TinctureCooldownRecoveryUnique__1", "UniqueSpecialCorruptionCooldownRecoverySpeed__", }, + ["(#)% increased cooldown recovery rate for throwing traps"] = { "TrapCooldownRecoveryUnique__1", }, + ["(#)% increased cooldown recovery rate if # shaper items are equipped"] = { "GlobalCooldownRecovery2ShaperItemsUnique__1", }, + ["(#)% increased cooldown recovery rate if you've cast temporal chains in the past # seconds"] = { "TemporalChainsCooldownRecoveryUnique__1", }, + ["(#)% increased cooldown recovery rate of travel skills"] = { "TravelSkillCooldownRecoveryUnique__1_", }, + ["(#)% increased cooldown recovery rate of travel skills per frenzy charge"] = { "TravelSkillCooldownRecoveryPerFrenzyChargeUnique__1", }, + ["(#)% increased cost of skills for each # total mana spent recently"] = { "ManaCostPer200ManaSpentRecentlyUnique__1", }, + ["(#)% increased critical strike chance"] = { "CriticalStrikeChanceUniqueBow9", "LocalCriticalStrikeChanceImplicitBow1", "LocalCriticalStrikeChanceUniquSceptre10", "LocalCriticalStrikeChanceUnique14", "LocalCriticalStrikeChanceUniqueBow11", "LocalCriticalStrikeChanceUniqueDagger8", "LocalCriticalStrikeChanceUniqueOneHandAxe8_", "LocalCriticalStrikeChanceUniqueOneHandMace4", "LocalCriticalStrikeChanceUniqueOneHandSword10", "LocalCriticalStrikeChanceUniqueOneHandSword4", "LocalCriticalStrikeChanceUniqueOneHandSword8", "LocalCriticalStrikeChanceUniqueSceptre9", "LocalCriticalStrikeChanceUniqueStaff14", "LocalCriticalStrikeChanceUniqueStaff7", "LocalCriticalStrikeChanceUniqueTwoHandAxe_1", "LocalCriticalStrikeChanceUniqueTwoHandMace6", "LocalCriticalStrikeChanceUniqueWand6_", "LocalCriticalStrikeChanceUniqueWand9", "LocalCriticalStrikeChanceUnique__1", "LocalCriticalStrikeChanceUnique__10", "LocalCriticalStrikeChanceUnique__11", "LocalCriticalStrikeChanceUnique__12", "LocalCriticalStrikeChanceUnique__13", "LocalCriticalStrikeChanceUnique__14", "LocalCriticalStrikeChanceUnique__15", "LocalCriticalStrikeChanceUnique__16", "LocalCriticalStrikeChanceUnique__17_", "LocalCriticalStrikeChanceUnique__18", "LocalCriticalStrikeChanceUnique__19", "LocalCriticalStrikeChanceUnique__2", "LocalCriticalStrikeChanceUnique__20", "LocalCriticalStrikeChanceUnique__21", "LocalCriticalStrikeChanceUnique__22", "LocalCriticalStrikeChanceUnique__23", "LocalCriticalStrikeChanceUnique__24", "LocalCriticalStrikeChanceUnique__25", "LocalCriticalStrikeChanceUnique__26", "LocalCriticalStrikeChanceUnique__27", "LocalCriticalStrikeChanceUnique__28", "LocalCriticalStrikeChanceUnique__3", "LocalCriticalStrikeChanceUnique__4", "LocalCriticalStrikeChanceUnique__5", "LocalCriticalStrikeChanceUnique__6", "LocalCriticalStrikeChanceUnique__7", "LocalCriticalStrikeChanceUnique__8", "LocalCriticalStrikeChanceUnique__9", "VillageLocalCriticalStrikeChance", }, + ["(#)% increased critical strike chance against bleeding enemies"] = { "CriticalStrikeChanceAgainstBleedingEnemiesUnique__1", }, + ["(#)% increased critical strike chance against blinded enemies"] = { "CriticalChanceAgainstBlindedEnemiesUnique__1", "CriticalChanceAgainstBlindedEnemiesUnique__2__", }, + ["(#)% increased critical strike chance against enemies on consecrated ground during effect"] = { "FlaskConsecratedGroundEffectCriticalStrikeUnique__1", }, + ["(#)% increased critical strike chance for spells if you've killed recently"] = { "SpellCriticalStrikeChanceIfKilledRecentlyUnique__1", }, + ["(#)% increased critical strike chance if you haven't gained a power charge recently"] = { "CriticalStrikeChancePowerChargeNotGainedUnique__1", }, + ["(#)% increased critical strike chance while physical aegis is depleted"] = { "CriticalStrikeChanceWithoutPhysicalAegisUnique__1", }, + ["(#)% increased critical strike chance while you have at least # intelligence"] = { "CriticalStrikeChanceAt200IntelligenceUnique__1", }, + ["(#)% increased critical strike chance while you have avatar of fire"] = { "IncreasedCriticalStrikeChanceWithAvatarOfFireUnique__1", }, + ["(#)% increased critical strike chance with arrows that fork"] = { "CriticalStrikeChanceForForkingArrowsUnique__1", }, + ["(#)% increased critical strike chance with bows"] = { "CriticalStrikeChanceImplicitQuiver8New", }, + ["(#)% increased critical strike chance with melee weapons"] = { "TinctureCriticalStrikeChanceImplicit1", }, + ["(#)% increased critical strike chance with traps"] = { "TrapCritChanceUnique__1", }, + ["(#)% increased critical strike chance with vaal skills during effect"] = { "FlaskVaalSkillCriticalStrikeChanceUnique__1", }, + ["(#)% increased damage"] = { "AllDamageUniqueRing6", "AllDamageUnique__2", "AllDamageUnique__4", "TalismanIncreasedDamage", }, + ["(#)% increased damage for each magic item equipped"] = { "IncreasedDamagePerMagicItemJewel25", }, + ["(#)% increased damage if you have consumed a corpse recently"] = { "DamageIfConsumedCorpseUnique__1__", }, + ["(#)% increased damage if you have shocked an enemy recently"] = { "IncreasedDamageIfShockedRecentlyUnique__1", }, + ["(#)% increased damage if you summoned a golem in the past # seconds"] = { "IncreasedDamageIfGolemSummonedRecently__1", }, + ["(#)% increased damage over time"] = { "DamageOverTimeUnique___1", "DegenerationDamageEssence_1", "DegenerationDamageImplicit1", "DegenerationDamageUnique__2", "DegenerationDamageUnique__3", "DegenerationDamageUnique__4__", "DegenerationDamageUnique__5", }, + ["(#)% increased damage per curse on you"] = { "IncreasedDamagePerCurseOnSelfCorruptedJewel13_", "IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8", }, + ["(#)% increased damage per frenzy charge with hits against enemies on low life"] = { "EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4", }, + ["(#)% increased damage per raised zombie"] = { "DamagePerZombieUnique__1", }, + ["(#)% increased damage while ignited"] = { "DamageWhileIgnitedUnique__1", }, + ["(#)% increased damage while leeching"] = { "IncreasedDamageWhileLeechingLifeUniqueJewel19", "IncreasedDamageWhileLeechingUnique__1", "IncreasedDamageWhileLeechingUnique__2__", }, + ["(#)% increased damage while you have no energy shield"] = { "IncreasedDamageOnZeroEnergyShieldUniqueShieldStrInt8", }, + ["(#)% increased damage while you have no frenzy charges"] = { "IncreasedDamageAtNoFrenzyChargesUnique__1", }, + ["(#)% increased damage with bleeding"] = { "BleedDamageUnique__1_", }, + ["(#)% increased damage with hits against chilled enemies"] = { "IncreasedDamageToChilledEnemies1", }, + ["(#)% increased damage with hits against magic monsters"] = { "DamageOnMagicMonstersUnique__1_", }, + ["(#)% increased damage with hits against rare monsters"] = { "DamageOnRareMonstersUniqueBelt7", }, + ["(#)% increased damage with hits and ailments against bleeding enemies"] = { "DamageAgainstBleedingEnemiesUnique__1", }, + ["(#)% increased damage with hits and ailments against blinded enemies"] = { "DamageAgainstBlindedEnemiesUnique__1", "IncreaseDamageOnBlindedEnemiesUniqueQuiver9_", "IncreaseDamageOnBlindedEnemiesUnique__1", }, + ["(#)% increased damage with hits and ailments against chilled enemies"] = { "DamageWithHitsAndAilmentsAgainstChilledEnemyUnique__1", }, + ["(#)% increased damage with hits and ailments against cursed enemies"] = { "HitAndAilmentDamageCursedEnemiesUnique__1", }, + ["(#)% increased damage with hits and ailments against enemies affected by # spider's webs"] = { "DamageAgainstEnemiesWith3WebsUnique__1_", }, + ["(#)% increased damage with hits and ailments against ignited enemies"] = { "IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3", }, + ["(#)% increased damage with hits and ailments against marked enemy"] = { "DamageAgainstMarkedEnemiesUnique__1", }, + ["(#)% increased damage with hits and ailments per curse on enemy"] = { "IncreasedDamagePerCurseUniqueHelmetInt9", }, + ["(#)% increased damage with movement skills"] = { "DamageWithMovementSkillsUniqueBodyDex5", }, + ["(#)% increased damage with poison"] = { "PoisonDamageUnique__1", "PoisonDamageUnique__2", }, + ["(#)% increased damage with poison if you have at least # dexterity"] = { "PoisonDamageWithOver300DexterityUnique__1", }, + ["(#)% increased damage with poison per power charge"] = { "PoisonDamagePerPowerChargeUnique__1", }, + ["(#)% increased damage with vaal skills"] = { "VaalSkillDamageUnique__1", }, + ["(#)% increased damage with vaal skills during effect"] = { "FlaskVaalSkillDamageUnique__1", }, + ["(#)% increased defences per minion from your non-vaal skills"] = { "GlobalDefensesIncreasedPerActiveNonVaalSkillMinionUnique_1", }, + ["(#)% increased dexterity"] = { "PercentageDexterityUniqueHelmetStrDex6", "PercentageDexterityUniqueJewel29", "PercentageDexterityUnique__2", "PercentageDexterityUnique__3", "PercentageDexterityUnique__4", "TalismanIncreasedDexterity", }, + ["(#)% increased dexterity if # redeemer items are equipped"] = { "PercentageDexterity2RedeemerItemsUnique__1", }, + ["(#)% increased duration"] = { "FlaskEffectDurationUnique__1", "FlaskEffectDurationUnique__3", "FlaskEffectDurationUnique__7", "FlaskEffectIncreasedDurationReducedEffect1", "FlaskEffectIncreasedDurationReducedEffect2", "FlaskEffectIncreasedDurationReducedEffect3_", "FlaskEffectIncreasedDurationReducedEffect4__", "FlaskEffectIncreasedDurationReducedEffect5", }, + ["(#)% increased duration of ailments on enemies"] = { "IncreasedAilmentDurationUnique__3_", "IncreasedAilmentDurationUnique__4", }, + ["(#)% increased duration of elemental ailments on enemies"] = { "ElementalStatusAilmentDurationUnique__1_", }, + ["(#)% increased duration of lightning ailments"] = { "ShockDurationUnique__2", }, + ["(#)% increased duration of poisons you inflict during effect"] = { "FlaskPoisonDurationUnique__1", }, + ["(#)% increased effect of arcane surge on you"] = { "ArcaneSurgeEffectUnique__1", }, + ["(#)% increased effect of chilled ground"] = { "ChilledGroundEffectUnique__1", }, + ["(#)% increased effect of chills you inflict while leeching mana"] = { "ChillEffectLeechingManaUnique__1", }, + ["(#)% increased effect of cold ailments"] = { "ChillEffectUnique__1", }, + ["(#)% increased effect of consecrated ground you create"] = { "ConsecratedGroundEffectUnique__1", }, + ["(#)% increased effect of elusive on you per power charge"] = { "ElusiveBuffEffectPerPowerChargeUnique__1", }, + ["(#)% increased effect of impales inflicted with spells"] = { "SpellImpaleEffectUnique__1", }, + ["(#)% increased effect of jewel socket passive skills containing corrupted magic jewels"] = { "CorruptedMagicJewelModEffectUnique__1", }, + ["(#)% increased effect of lightning ailments"] = { "ShockEffectUnique__2", }, + ["(#)% increased effect of non-curse auras from your skills"] = { "AuraEffectGlobalUnique__1", "IncreasedAuraEffectUniqueBodyDexInt4", "UniqueSpecialCorruptionAuraEffect", }, + ["(#)% increased effect of non-curse auras from your skills while you have a linked target"] = { "AuraEffectWhileLinkedUnique__1", }, + ["(#)% increased effect of non-damaging ailments"] = { "IncreasedAilmentEffectOnEnemiesUnique_2", "IncreasedAilmentEffectOnEnemiesUnique__1", "NonDamagingAilmentEffectUnique_1", }, + ["(#)% increased effect of non-damaging ailments inflicted by summoned skitterbots"] = { "SkitterbotIncreasedAilmentEffectUnique__1", }, + ["(#)% increased effect of non-damaging ailments you inflict during effect"] = { "FlaskNonDamagingAilmentIncreasedEffectUnique__1", }, + ["(#)% increased effect of scorch"] = { "ScorchEffectUnique__1", }, + ["(#)% increased effect of shock"] = { "ShockEffectUnique__1", }, + ["(#)% increased effect of shocks you inflict during effect"] = { "ShockEffectDuringFlaskEffectUnique__1__", }, + ["(#)% increased effect of shocks you inflict while leeching energy shield"] = { "ShockEffectLeechingESUnique__1", }, + ["(#)% increased effect of shrine buffs on you"] = { "ShrineBuffEffectUnique__1", }, + ["(#)% increased effect of socketed abyss jewels"] = { "AbyssJewelEffectUnique__1", }, + ["(#)% increased effect of your curses"] = { "CurseEffectivenessUnique__2_", "CurseEffectivenessUnique__3_", "CurseEffectivenessUnique__4", "UniqueSpecialCorruptionCurseEffect___", }, + ["(#)% increased elemental damage"] = { "ElementalDamagePercentImplicitAtlasRing_", "ElementalDamagePercentUnique__1", "ElementalDamageUniqueBootsStr1", "ElementalDamageUniqueIntHelmet3", "ElementalDamageUniqueJewel_1", "ElementalDamageUniqueRingVictors", "ElementalDamageUniqueSceptre7", "ElementalDamageUniqueStaff13", "ElementalDamageUnique__2_", "ElementalDamageUnique__3", "ElementalDamageUnique__4", }, + ["(#)% increased elemental damage if you've dealt a critical strike recently"] = { "ElementalDamageIfCritRecently", }, + ["(#)% increased elemental damage per #% fire, cold, or lightning resistance above #%"] = { "ElementalDamagePerResistanceAbove75Unique_1", }, + ["(#)% increased elemental damage per #% missing"] = { "ElementalDamagePerMissingResistanceUnique_1", }, + ["(#)% increased elemental damage per frenzy charge"] = { "IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6", }, + ["(#)% increased elemental damage per power charge"] = { "ElementalDamagePerPowerChargeUnique__1", }, + ["(#)% increased elemental damage taken"] = { "ElementalDamageTakenUnique__1", }, + ["(#)% increased elemental damage while in an area affected by a sextant"] = { "ElementalDamageWhileAffectedBySextantUnique__1", }, + ["(#)% increased elemental damage with attack skills"] = { "WeaponElementalDamageImplicitBow1", "WeaponElementalDamageImplicitBow2", "WeaponElementalDamageImplicitBow3", "WeaponElementalDamageImplicitQuiver13New", "WeaponElementalDamageUniqueBelt5", "WeaponElementalDamageUniqueRing10", "WeaponElementalDamageUniqueShieldStrInt4", "WeaponElementalDamageUnique__1", "WeaponElementalDamageUnique__2", "WeaponElementalDamageUnique__3", "WeaponElementalDamageUnique__4", "WeaponElementalDamageUnique__5", "WeaponElementalDamageUnique__6", }, + ["(#)% increased elemental damage with attack skills per power charge"] = { "IncreasedWeaponElementalDamagePercentPerPowerChargeUnique__1", }, + ["(#)% increased elemental damage with hits and ailments for"] = { "DamagePerStatusAilmentOnEnemiesUniqueRing21", }, + ["(#)% increased elemental damage with melee weapons"] = { "TinctureElementalDamageImplicit1", }, + ["(#)% increased elemental resistances"] = { "IncreasedElementalResistancesUnique__1", }, + ["(#)% increased elusive effect"] = { "ElusiveEffectUnique__1", }, + ["(#)% increased endurance charge duration"] = { "ChargeBonusEnduranceChargeDuration", }, + ["(#)% increased endurance, frenzy and power charge duration"] = { "ChargeDurationUniqueBodyDexInt3", }, + ["(#)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3", "LocalIncreasedEnergyShieldPercentUniqueBodyInt8", "LocalIncreasedEnergyShieldPercentUniqueBody_1", "LocalIncreasedEnergyShieldPercentUniqueBootsInt5", "LocalIncreasedEnergyShieldPercentUniqueBootsInt6", "LocalIncreasedEnergyShieldPercentUniqueShieldInt1", "LocalIncreasedEnergyShieldPercentUniqueShieldInt2", "LocalIncreasedEnergyShieldPercentUnique__10", "LocalIncreasedEnergyShieldPercentUnique__11", "LocalIncreasedEnergyShieldPercentUnique__12", "LocalIncreasedEnergyShieldPercentUnique__13", "LocalIncreasedEnergyShieldPercentUnique__14", "LocalIncreasedEnergyShieldPercentUnique__15_", "LocalIncreasedEnergyShieldPercentUnique__16", "LocalIncreasedEnergyShieldPercentUnique__17", "LocalIncreasedEnergyShieldPercentUnique__18", "LocalIncreasedEnergyShieldPercentUnique__19", "LocalIncreasedEnergyShieldPercentUnique__20_", "LocalIncreasedEnergyShieldPercentUnique__21", "LocalIncreasedEnergyShieldPercentUnique__22", "LocalIncreasedEnergyShieldPercentUnique__23", "LocalIncreasedEnergyShieldPercentUnique__24", "LocalIncreasedEnergyShieldPercentUnique__25_", "LocalIncreasedEnergyShieldPercentUnique__26", "LocalIncreasedEnergyShieldPercentUnique__27", "LocalIncreasedEnergyShieldPercentUnique__28__", "LocalIncreasedEnergyShieldPercentUnique__29", "LocalIncreasedEnergyShieldPercentUnique__30___", "LocalIncreasedEnergyShieldPercentUnique__31____", "LocalIncreasedEnergyShieldPercentUnique__32", "LocalIncreasedEnergyShieldPercentUnique__33", "LocalIncreasedEnergyShieldPercentUnique__34", "LocalIncreasedEnergyShieldPercentUnique__5", "LocalIncreasedEnergyShieldPercentUnique__6", "LocalIncreasedEnergyShieldPercentUnique__7", "LocalIncreasedEnergyShieldPercentUnique__8", "LocalIncreasedEnergyShieldPercentUnique__9", "LocalIncreasedEnergyShieldPercentUnique___4_", "LocalIncreasedEnergyShieldPercent__1", "LocalIncreasedEnergyShieldPercent__2", "LocalIncreasedEnergyShieldPercent___3", "LocalIncreasedEnergyShieldUniqueBodyInt1", "LocalIncreasedEnergyShieldUniqueBodyInt3", "LocalIncreasedEnergyShieldUniqueBodyInt4", "LocalIncreasedEnergyShieldUniqueBodyInt7", "LocalIncreasedEnergyShieldUniqueBodyInt9", "LocalIncreasedEnergyShieldUniqueBodyStrDexInt1g", "LocalIncreasedEnergyShieldUniqueBootsInt4", "LocalIncreasedEnergyShieldUniqueGlovesInt4", "LocalIncreasedEnergyShieldUniqueGlovesInt5", "LocalIncreasedEnergyShieldUniqueGlovesInt6", "LocalIncreasedEnergyShieldUniqueHelmetInt10", "LocalIncreasedEnergyShieldUniqueHelmetInt7", "LocalIncreasedEnergyShieldUniqueShieldInt3", }, + ["(#)% increased energy shield recharge rate"] = { "JewelImplicitEnergyShieldRechargeRate", }, + ["(#)% increased energy shield recharge rate during any flask effect"] = { "ESRechargeRateDuringFlaskEffect__1", }, + ["(#)% increased energy shield recovery rate"] = { "EnergyShieldRecoveryRateUnique__1", "LifeAndEnergyShieldRecoveryRateUnique_1", }, + ["(#)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt1", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt4", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1d", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1f", "LocalIncreasedEvasionAndEnergyShieldUniqueGlovesDexInt6", "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt3", "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt5", "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt6", "LocalIncreasedEvasionAndEnergyShieldUnique__1", "LocalIncreasedEvasionAndEnergyShieldUnique__10", "LocalIncreasedEvasionAndEnergyShieldUnique__11_", "LocalIncreasedEvasionAndEnergyShieldUnique__12", "LocalIncreasedEvasionAndEnergyShieldUnique__13", "LocalIncreasedEvasionAndEnergyShieldUnique__14", "LocalIncreasedEvasionAndEnergyShieldUnique__15", "LocalIncreasedEvasionAndEnergyShieldUnique__16", "LocalIncreasedEvasionAndEnergyShieldUnique__17", "LocalIncreasedEvasionAndEnergyShieldUnique__18", "LocalIncreasedEvasionAndEnergyShieldUnique__19___", "LocalIncreasedEvasionAndEnergyShieldUnique__2", "LocalIncreasedEvasionAndEnergyShieldUnique__20", "LocalIncreasedEvasionAndEnergyShieldUnique__21_", "LocalIncreasedEvasionAndEnergyShieldUnique__22", "LocalIncreasedEvasionAndEnergyShieldUnique__23", "LocalIncreasedEvasionAndEnergyShieldUnique__24", "LocalIncreasedEvasionAndEnergyShieldUnique__25", "LocalIncreasedEvasionAndEnergyShieldUnique__26", "LocalIncreasedEvasionAndEnergyShieldUnique__27", "LocalIncreasedEvasionAndEnergyShieldUnique__28", "LocalIncreasedEvasionAndEnergyShieldUnique__29", "LocalIncreasedEvasionAndEnergyShieldUnique__3", "LocalIncreasedEvasionAndEnergyShieldUnique__30_", "LocalIncreasedEvasionAndEnergyShieldUnique__31", "LocalIncreasedEvasionAndEnergyShieldUnique__32_", "LocalIncreasedEvasionAndEnergyShieldUnique__33", "LocalIncreasedEvasionAndEnergyShieldUnique__34", "LocalIncreasedEvasionAndEnergyShieldUnique__35", "LocalIncreasedEvasionAndEnergyShieldUnique__36", "LocalIncreasedEvasionAndEnergyShieldUnique__37", "LocalIncreasedEvasionAndEnergyShieldUnique__38", "LocalIncreasedEvasionAndEnergyShieldUnique__39", "LocalIncreasedEvasionAndEnergyShieldUnique__4", "LocalIncreasedEvasionAndEnergyShieldUnique__5", "LocalIncreasedEvasionAndEnergyShieldUnique__6_", "LocalIncreasedEvasionAndEnergyShieldUnique__7", "LocalIncreasedEvasionAndEnergyShieldUnique__8", "LocalIncreasedEvasionAndEnergyShieldUnique__9", }, + ["(#)% increased evasion rating"] = { "GlobalEvasionRatingPercentUnique__1", "IncreasedEvasionRatingPercentUnique__1_", "IncreasedEvasionRatingPercentUnique__2", "LocalIncreasedEvasionRatingPercentUniqueBodyDex1", "LocalIncreasedEvasionRatingPercentUniqueBodyDex2", "LocalIncreasedEvasionRatingPercentUniqueBodyDex3", "LocalIncreasedEvasionRatingPercentUniqueBodyDex4", "LocalIncreasedEvasionRatingPercentUniqueBodyDex5", "LocalIncreasedEvasionRatingPercentUniqueBodyDex6", "LocalIncreasedEvasionRatingPercentUniqueBodyStrDex5", "LocalIncreasedEvasionRatingPercentUniqueBodyStrDexInt1c", "LocalIncreasedEvasionRatingPercentUniqueBootsDex1", "LocalIncreasedEvasionRatingPercentUniqueBootsDex3", "LocalIncreasedEvasionRatingPercentUniqueBootsDex6", "LocalIncreasedEvasionRatingPercentUniqueBootsDexInt1", "LocalIncreasedEvasionRatingPercentUniqueBootsStrDex5", "LocalIncreasedEvasionRatingPercentUniqueDexHelmet2", "LocalIncreasedEvasionRatingPercentUniqueGlovesDex2", "LocalIncreasedEvasionRatingPercentUniqueGlovesDexInt5", "LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex1", "LocalIncreasedEvasionRatingPercentUniqueHelmetDex5", "LocalIncreasedEvasionRatingPercentUniqueShieldDex1", "LocalIncreasedEvasionRatingPercentUniqueShieldDex3", "LocalIncreasedEvasionRatingPercentUniqueShieldDex4", "LocalIncreasedEvasionRatingPercentUniqueShieldDex5", "LocalIncreasedEvasionRatingPercentUnique__1", "LocalIncreasedEvasionRatingPercentUnique__10", "LocalIncreasedEvasionRatingPercentUnique__11", "LocalIncreasedEvasionRatingPercentUnique__12", "LocalIncreasedEvasionRatingPercentUnique__13", "LocalIncreasedEvasionRatingPercentUnique__14", "LocalIncreasedEvasionRatingPercentUnique__15_", "LocalIncreasedEvasionRatingPercentUnique__16", "LocalIncreasedEvasionRatingPercentUnique__17", "LocalIncreasedEvasionRatingPercentUnique__18", "LocalIncreasedEvasionRatingPercentUnique__19", "LocalIncreasedEvasionRatingPercentUnique__2", "LocalIncreasedEvasionRatingPercentUnique__20", "LocalIncreasedEvasionRatingPercentUnique__21", "LocalIncreasedEvasionRatingPercentUnique__3", "LocalIncreasedEvasionRatingPercentUnique__4", "LocalIncreasedEvasionRatingPercentUnique__5", "LocalIncreasedEvasionRatingPercentUnique__6", "LocalIncreasedEvasionRatingPercentUnique__7", "LocalIncreasedEvasionRatingPercentUnique__8", "LocalIncreasedEvasionRatingPercentUnique__9", "LocalIncreasedEvationRatingPercentUniqueBootsDex9", }, + ["(#)% increased evasion rating and armour"] = { "GlobalEvasionRatingAndArmourPercentUnique__1_", }, + ["(#)% increased evasion rating if you've cast dash recently"] = { "EvasionRatingIfUsedDashRecentlyUnique__1", }, + ["(#)% increased experience gain of gems"] = { "GlobalGemExperienceGainUnique__1", }, + ["(#)% increased fire damage"] = { "FireDamagePercentUniqueBelt9a", "FireDamagePercentUniqueBodyInt4", "FireDamagePercentUniqueRing18", "FireDamagePercentUniqueRing24", "FireDamagePercentUniqueRing36", "FireDamagePercentUniqueRing38", "FireDamagePercentUniqueStaff1_", "FireDamagePercentUniqueStrHelmet2", "FireDamagePercentUniqueWand10", "FireDamagePercentUnique__1", "FireDamagePercentUnique__10", "FireDamagePercentUnique__11", "FireDamagePercentUnique__13", "FireDamagePercentUnique__14", "FireDamagePercentUnique__15", "FireDamagePercentUnique__3", "FireDamagePercentUnique__4", "FireDamagePercentUnique__6", "FireDamagePercentUnique__9", "FireDamagePercentUnique___2", "FireDamagePercentUnique___5", "FireDamagePercentUnique____8", "RunecraftingFireDamage", "SpellDamageUniqueDagger10", "TalismanIncreasedFireDamage", }, + ["(#)% increased fire damage if you have used a cold skill recently"] = { "IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1", }, + ["(#)% increased fire damage per #% fire resistance above #%"] = { "VillageFireDamagePerResistanceAbove75", }, + ["(#)% increased fire damage per #% missing fire resistance, up to a maximum of #%"] = { "FireDamagePerMissingFireResistanceUnique__1", }, + ["(#)% increased fire damage while affected by herald of ash"] = { "HeraldBonusAshFireDamage", }, + ["(#)% increased fire damage with hits and ailments against bleeding enemies"] = { "FireDamageVersusBleedingEnemiesUnique__1", }, + ["(#)% increased fire damage with hits and ailments against blinded enemies"] = { "FireDamageToBlindEnemies__1", }, + ["(#)% increased fish bite sensitivity"] = { "FishBiteSensitivityUnique__1", "TalismanFishBiteSensitivity", }, + ["(#)% increased flask charges gained"] = { "BeltIncreasedFlaskChargesGainedUnique__1_", }, + ["(#)% increased flask charges used"] = { "BeltIncreasedFlaskChargedUsedUnique__1", }, + ["(#)% increased flask effect duration"] = { "BeltIncreasedFlaskDurationUnique__3___", "FlaskDurationUniqueGlovesDex_1", }, + ["(#)% increased flask mana recovery rate"] = { "FlaskManaRecoveryRateUniqueSceptre5", }, + ["(#)% increased fortification duration"] = { "FortifyDurationUnique_1", }, + ["(#)% increased frenzy charge duration"] = { "ChargeBonusFrenzyChargeDuration", }, + ["(#)% increased global accuracy rating"] = { "AccuracyPercentUniqueBow5", "IncreasedAccuracyPercentImplicitQuiver7", "IncreasedAccuracyPercentImplicitQuiver7New", "IncreasedAccuracyPercentUnique__1", }, + ["(#)% increased global critical strike chance"] = { "CriticalSrikeChanceUniqueSceptre7", "CriticalStrikeChanceImplicitQuiver13", "CriticalStrikeChanceImplicitRing1", "CriticalStrikeChanceUniqueAmulet17", "CriticalStrikeChanceUniqueAmulet18", "CriticalStrikeChanceUniqueGlovesDexInt6", "CriticalStrikeChanceUniqueGlovesStr3", "CriticalStrikeChanceUniqueHelmetDex6", "CriticalStrikeChanceUniqueRing11_", "CriticalStrikeChanceUniqueWand10", "CriticalStrikeChanceUniqueWand3", "CriticalStrikeChanceUnique__2", "CriticalStrikeChanceUnique__3", "CriticalStrikeChanceUnique__4_", "CriticalStrikeChanceUnique__5__", "CriticalStrikeChanceUnique__6", "TalismanIncreasedCriticalChance", }, + ["(#)% increased global critical strike chance when in main hand"] = { "CriticalStrikeChanceInMainHandUnique_1", }, + ["(#)% increased global damage"] = { "AllDamageUniqueSceptre8", "AllDamageUniqueStaff4", "AllDamageUnique__3", }, + ["(#)% increased global defences"] = { "AllDefencesUniqueHelmetStrInt4_", "AllDefencesUnique__4", "AllDefencesUnique__5", "AllDefencesVictorAmulet", "AllDefensesImplicitJetRing", "FormlessBreachRingImplicit", "TalismanGlobalDefensesPercent", }, + ["(#)% increased global maximum energy shield and reduced lightning resistance"] = { "EnergyShieldAndReducedLightningResistanceUnique__1", }, + ["(#)% increased global physical damage"] = { "IncreasedPhysicalDamagePercentImplicitBelt1", "IncreasedPhysicalDamagePercentUniqueBelt13", "IncreasedPhysicalDamagePercentUniqueBelt2", "IncreasedPhysicalDamagePercentUniqueBelt9d", "IncreasedPhysicalDamagePercentUniqueBowImplicit1", "IncreasedPhysicalDamagePercentUniqueShieldDexInt1", "IncreasedPhysicalDamagePercentUnique__1", "IncreasedPhysicalDamagePercentUnique__2", "IncreasedPhysicalDamagePercentUnique__3", "IncreasedPhysicalDamagePercentUnique__5", "IncreasedPhysicalDamagePercentUnique__6", "IncreasedPhysicalDamagePercentUnique__7", "PhysicalDamagePercentUnique___1", "TalismanIncreasedPhysicalDamage", }, + ["(#)% increased golem damage for each type of golem you have summoned"] = { "IncreasedGolemDamagePerGolemUnique__1", }, + ["(#)% increased ignite duration on enemies"] = { "BurnDurationUniqueBodyInt2", "IgniteDurationUnique__4", }, + ["(#)% increased implicit modifier magnitudes"] = { "ClassicNebulisImplicitModifierMagnitudeUnique_1", "ReplicaNebulisImplicitModifierMagnitudeUnique_1", }, + ["(#)% increased intelligence"] = { "PercentageIntelligenceUniqueHelmetStrDex6", "PercentageIntelligenceUniqueStaff12_", "PercentageIntelligenceUnique__2", "PercentageIntelligenceUnique__3", "PercentageIntelligenceUnique__4", "PercentageIntelligenceUnique__5", "TalismanIncreasedIntelligence", }, + ["(#)% increased intelligence if # crusader items are equipped"] = { "PercentageIntelligence2CrusaderItemsUnique__1", }, + ["(#)% increased life recovery from flasks"] = { "BeltFlaskLifeRecoveryUnique__1", "FlaskLifeRecoveryUnique__1", }, + ["(#)% increased life regeneration rate"] = { "LifeRecoveryRateUnique__1", "LifeRegenerationUnique__6", }, + ["(#)% increased life reservation efficiency of skills"] = { "LIfeReservationEfficiencyUnique__1", }, + ["(#)% increased light radius"] = { "JewelImplicitLightRadius", "LightRadiusUniqueAmulet17", "LightRadiusUniqueBodyStrInt5", "LightRadiusUniqueRing11", "LightRadiusUnique__1", "LightRadiusUnique__2", "LightRadiusUnique__5", "LightRadiusUnique__7_", }, + ["(#)% increased lightning damage"] = { "LightningDamagePercentUniqueBelt9c", "LightningDamagePercentUniqueHelmetStrInt3", "LightningDamagePercentUniqueRing20", "LightningDamagePercentUniqueRing34", "LightningDamagePercentUniqueStaff8", "LightningDamagePercentUnique__2", "LightningDamagePercentUnique__5", "LightningDamagePercentUnique__6", "LightningDamagePercentUnique__7", "LightningDamagePercentUnique__8", "LightningDamagePercentUnique___1", "LightningDamageUniqueHelmetDexInt1", "LightningDamageUniqueWand1", "RunecraftingLightningDamage", "TalismanIncreasedLightningDamage", "WeaponLightningDamageUniqueOneHandMace3", }, + ["(#)% increased lightning damage per #% lightning resistance above #%"] = { "LightningDamagePerResistanceAbove75Unique__1", }, + ["(#)% increased lightning damage per frenzy charge"] = { "IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6", }, + ["(#)% increased lightning damage while affected by herald of thunder"] = { "HeraldBonusThunderLightningDamage", }, + ["(#)% increased mana cost of skills"] = { "ManaCostIncreaseUniqueGlovesInt6", }, + ["(#)% increased mana recovery from flasks"] = { "BeltFlaskManaRecoveryUnique__1", "FlaskManaRecoveryUniqueBodyDex7", "FlaskManaRecoveryUnique__1", "FlaskManaRecoveryUnique__2", }, + ["(#)% increased mana regeneration rate"] = { "ManaRegenerationImplicitAmulet1", "ManaRegenerationImplicitAmulet2", "ManaRegenerationImplicitDemigodsBelt1", "ManaRegenerationUniqueAmulet10", "ManaRegenerationUniqueAmulet21", "ManaRegenerationUniqueBodyDexInt2", "ManaRegenerationUniqueBootsDex5", "ManaRegenerationUniqueBootsInt2", "ManaRegenerationUniqueBootsStrDex4", "ManaRegenerationUniqueGlovesStrInt2", "ManaRegenerationUniqueHelmetStrInt_1", "ManaRegenerationUniqueJewel30", "ManaRegenerationUniqueOneHandMace3", "ManaRegenerationUniqueRing14", "ManaRegenerationUniqueRing26", "ManaRegenerationUniqueRing33", "ManaRegenerationUniqueRing34", "ManaRegenerationUniqueRingDemigod1", "ManaRegenerationUniqueShieldInt5", "ManaRegenerationUnique__1", "ManaRegenerationUnique__10", "ManaRegenerationUnique__11___", "ManaRegenerationUnique__12", "ManaRegenerationUnique__13", "ManaRegenerationUnique__15", "ManaRegenerationUnique__16", "ManaRegenerationUnique__2", "ManaRegenerationUnique__3", "ManaRegenerationUnique__4", "ManaRegenerationUnique__5", "ManaRegenerationUnique__6", "ManaRegenerationUnique__7", "ManaRegenerationUnique__8", "ManaRegenerationUnique__9___", }, + ["(#)% increased mana regeneration rate while moving"] = { "ManaRegenerationRateWhileMovingUnique__1", }, + ["(#)% increased mana reservation efficiency of skills"] = { "ManaReservationEfficiencyUnique__2", "ManaReservationEfficiencyUnique__3", "ReducedManaReservationCostUnique__2", }, + ["(#)% increased maximum energy shield"] = { "GlobalEnergyShieldPercentUnique__1", "IncreasedEnergyShieldPercentUniqueJewel51", "IncreasedEnergyShieldPercentUniqueOneHandSword2", "IncreasedEnergyShieldPercentUnique__2_", "IncreasedEnergyShieldPercentUnique__3", "IncreasedEnergyShieldPercentUnique__5", "TalismanIncreasedEnergyShield", }, + ["(#)% increased maximum life"] = { "MaximumLifeImplicitAtlasRing", "MaximumLifeUniqueBodyStrDex1", "MaximumLifeUniqueGlovesStrInt3", "MaximumLifeUniqueJewel52", "MaximumLifeUniqueShieldDexInt2", "MaximumLifeUniqueStaff4", "MaximumLifeUnique__1", "MaximumLifeUnique__10_", "MaximumLifeUnique__11", "MaximumLifeUnique__12", "MaximumLifeUnique__13", "MaximumLifeUnique__15", "MaximumLifeUnique__16", "MaximumLifeUnique__17", "MaximumLifeUnique__18", "MaximumLifeUnique__19", "MaximumLifeUnique__20___", "MaximumLifeUnique__21", "MaximumLifeUnique__22", "MaximumLifeUnique__4_", "MaximumLifeUnique__5", "MaximumLifeUnique__6", "MaximumLifeUnique__7", "MaximumLifeUnique__9", "TalismanIncreasedLife", }, + ["(#)% increased maximum life and reduced fire resistance"] = { "LifeAndReducedFireResistanceUnique__1", }, + ["(#)% increased maximum life if # elder items are equipped"] = { "MaximumLifeIncreasePercent2ElderItemsUnique__1", }, + ["(#)% increased maximum life if no equipped items are corrupted"] = { "IncreasedLifeWhileNoCorruptedItemsUnique__1", }, + ["(#)% increased maximum life, mana and global energy shield"] = { "MaximumLifeManaEnergyShieldUnique__1", }, + ["(#)% increased maximum mana"] = { "MaximumManaImplicitAtlasRing_", "MaximumManaUniqueAmulet10", "MaximumManaUniqueJewel54", "MaximumManaUniqueStaff4", "MaximumManaUniqueStaff6", "MaximumManaUnique__1", "MaximumManaUnique__3", "MaximumManaUnique__4", "MaximumManaUnique__5", "MaximumManaUnique__6", "MaximumManaUnique__7", "MaximumManaUnique__8", "MaximumManaUnique__9", "MaximumManaUnique___2", "TalismanIncreasedMana", }, + ["(#)% increased maximum mana and reduced cold resistance"] = { "ManaAndReducedColdResistanceUnique__1", }, + ["(#)% increased maximum mana if # shaper items are equipped"] = { "MaximumManaIncreasePercent2ShaperItemsUnique__1", }, + ["(#)% increased maximum recovery per life leech for each #% of life reserved"] = { "MaximumLifeLeechAmountPerLifeReservedUnique__1", }, + ["(#)% increased melee damage"] = { "MeleeDamageImplicitGloves1", "MeleeDamageUniqueAmulet12", "MeleeDamageUnique__1", "MeleeDamageUnique__2", }, + ["(#)% increased mine throwing speed"] = { "RemoteMineLayingSpeedUniqueStaff11", }, + ["(#)% increased minion damage per raised spectre"] = { "MinionDamagePerSpectre__1", }, + ["(#)% increased minion duration"] = { "MinionDurationUnique__1", }, + ["(#)% increased movement speed"] = { "ChanceToDodgeUniqueRing37", "MovementVelocityUniqueAmulet20", "MovementVelocityUniqueBootsInt1", "MovementVelocityUniqueBootsInt4", "MovementVelocityUnique__19", "MovementVelocityUnique__21", "MovementVelocityUnique__28", "MovementVelocityUnique__32", "MovementVelocityUnique__33_", "MovementVelocityUnique__36_", "MovementVelocityUnique__38", "MovementVelocityUnique__39_", "MovementVelocityUnique__44", "MovementVelocityUnique__46", "MovementVelocityUnique__51", "MovementVelocityUnique__53", "MovementVelocityUnique__55", "MovementVelocityUnique__56", "MovementVelocityUnique__57", "MovementVelocityUnique__9_", "MovementVelocityVictorAmulet", "MovementVeolcityUniqueAmulet12", }, + ["(#)% increased movement speed if # hunter items are equipped"] = { "MovementVelocity4HunterItemsUnique__1", }, + ["(#)% increased movement speed if you've cast dash recently"] = { "MovementSpeedIfUsedDashRecentlyUnique__1", }, + ["(#)% increased movement speed per # rage"] = { "MovementSpeedPer5RageUnique_1", }, + ["(#)% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueRing9", "MovementVelocityOnLowLifeUnique__1", }, + ["(#)% increased movement speed while affected by a magic abyss jewel"] = { "MovementVelocityWithMagicAbyssJewelUnique__1", }, + ["(#)% increased movement speed while chilled"] = { "MovementVelocityWhileChilledUnique__1_", }, + ["(#)% increased movement speed while ignited"] = { "MovementVelocityWhileIgnitedUniqueJewel20", "MovementVelocityWhileIgnitedUnique__2", }, + ["(#)% increased physical damage"] = { "LocalIncreasedPhyiscalDamagePercentUnique__3", "LocalIncreasedPhysicalDamagePercentUnique13", "LocalIncreasedPhysicalDamagePercentUniqueBow1", "LocalIncreasedPhysicalDamagePercentUniqueBow10", "LocalIncreasedPhysicalDamagePercentUniqueBow2", "LocalIncreasedPhysicalDamagePercentUniqueBow3", "LocalIncreasedPhysicalDamagePercentUniqueBow5", "LocalIncreasedPhysicalDamagePercentUniqueBow6", "LocalIncreasedPhysicalDamagePercentUniqueBow7", "LocalIncreasedPhysicalDamagePercentUniqueClaw1", "LocalIncreasedPhysicalDamagePercentUniqueClaw2", "LocalIncreasedPhysicalDamagePercentUniqueClaw3", "LocalIncreasedPhysicalDamagePercentUniqueClaw4", "LocalIncreasedPhysicalDamagePercentUniqueClaw5", "LocalIncreasedPhysicalDamagePercentUniqueClaw6", "LocalIncreasedPhysicalDamagePercentUniqueDagger11", "LocalIncreasedPhysicalDamagePercentUniqueDagger12", "LocalIncreasedPhysicalDamagePercentUniqueDagger2", "LocalIncreasedPhysicalDamagePercentUniqueDagger3", "LocalIncreasedPhysicalDamagePercentUniqueDagger9", "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe1", "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe5", "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6", "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe8", "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace1", "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace3", "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace6", "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace7", "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace8", "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword12", "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword13", "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword4", "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword8", "LocalIncreasedPhysicalDamagePercentUniqueRapier1", "LocalIncreasedPhysicalDamagePercentUniqueRapier2", "LocalIncreasedPhysicalDamagePercentUniqueSceptre1", "LocalIncreasedPhysicalDamagePercentUniqueSceptre2", "LocalIncreasedPhysicalDamagePercentUniqueSceptre5", "LocalIncreasedPhysicalDamagePercentUniqueStaff14", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe1", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe10", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe2", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe3", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe4", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe5", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe6", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe8", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace1", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace5", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace7", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace8", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword1", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword2", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword3", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword5", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword7", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword8", "LocalIncreasedPhysicalDamagePercentUniqueWand1", "LocalIncreasedPhysicalDamagePercentUniqueWand9", "LocalIncreasedPhysicalDamagePercentUniqueWand9x", "LocalIncreasedPhysicalDamagePercentUnique__1", "LocalIncreasedPhysicalDamagePercentUnique__10", "LocalIncreasedPhysicalDamagePercentUnique__11_", "LocalIncreasedPhysicalDamagePercentUnique__12", "LocalIncreasedPhysicalDamagePercentUnique__13", "LocalIncreasedPhysicalDamagePercentUnique__14", "LocalIncreasedPhysicalDamagePercentUnique__15", "LocalIncreasedPhysicalDamagePercentUnique__16", "LocalIncreasedPhysicalDamagePercentUnique__17_", "LocalIncreasedPhysicalDamagePercentUnique__18", "LocalIncreasedPhysicalDamagePercentUnique__19", "LocalIncreasedPhysicalDamagePercentUnique__2", "LocalIncreasedPhysicalDamagePercentUnique__20", "LocalIncreasedPhysicalDamagePercentUnique__21", "LocalIncreasedPhysicalDamagePercentUnique__22", "LocalIncreasedPhysicalDamagePercentUnique__23", "LocalIncreasedPhysicalDamagePercentUnique__24", "LocalIncreasedPhysicalDamagePercentUnique__25", "LocalIncreasedPhysicalDamagePercentUnique__27", "LocalIncreasedPhysicalDamagePercentUnique__28__", "LocalIncreasedPhysicalDamagePercentUnique__29", "LocalIncreasedPhysicalDamagePercentUnique__30", "LocalIncreasedPhysicalDamagePercentUnique__31", "LocalIncreasedPhysicalDamagePercentUnique__33", "LocalIncreasedPhysicalDamagePercentUnique__34___", "LocalIncreasedPhysicalDamagePercentUnique__35", "LocalIncreasedPhysicalDamagePercentUnique__36_", "LocalIncreasedPhysicalDamagePercentUnique__37__", "LocalIncreasedPhysicalDamagePercentUnique__38", "LocalIncreasedPhysicalDamagePercentUnique__39", "LocalIncreasedPhysicalDamagePercentUnique__4", "LocalIncreasedPhysicalDamagePercentUnique__40", "LocalIncreasedPhysicalDamagePercentUnique__41___", "LocalIncreasedPhysicalDamagePercentUnique__42", "LocalIncreasedPhysicalDamagePercentUnique__43", "LocalIncreasedPhysicalDamagePercentUnique__44", "LocalIncreasedPhysicalDamagePercentUnique__45", "LocalIncreasedPhysicalDamagePercentUnique__46", "LocalIncreasedPhysicalDamagePercentUnique__47", "LocalIncreasedPhysicalDamagePercentUnique__48", "LocalIncreasedPhysicalDamagePercentUnique__49", "LocalIncreasedPhysicalDamagePercentUnique__5", "LocalIncreasedPhysicalDamagePercentUnique__50", "LocalIncreasedPhysicalDamagePercentUnique__51", "LocalIncreasedPhysicalDamagePercentUnique__52", "LocalIncreasedPhysicalDamagePercentUnique__53", "LocalIncreasedPhysicalDamagePercentUnique__54", "LocalIncreasedPhysicalDamagePercentUnique__55", "LocalIncreasedPhysicalDamagePercentUnique__56", "LocalIncreasedPhysicalDamagePercentUnique__57", "LocalIncreasedPhysicalDamagePercentUnique__58", "LocalIncreasedPhysicalDamagePercentUnique__6", "LocalIncreasedPhysicalDamagePercentUnique__7", "LocalIncreasedPhysicalDamagePercentUnique__8", "LocalIncreasedPhysicalDamagePercentUnique__9", "LocalIncreasedPhysicalDamageUniqueClaw8", "LocalIncreasedPhysicalDamageUniqueOneHandMace4", "LocalIncreasedPhysicalDamageUniqueOneHandMace5", "LocalIncreasedPhysicalDamageUniqueOneHandSceptre10", "LocalIncreasedPhysicalDamageUniqueOneHandSword11", "VillageLocalPhysicalDamagePercent1", "VillageLocalPhysicalDamagePercent2", "VillageLocalPhysicalDamagePercent3", }, + ["(#)% increased physical damage per endurance charge"] = { "IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6", }, + ["(#)% increased physical damage taken"] = { "IncreasedPhysicalDamageTakenUniqueHelmetStr3", }, + ["(#)% increased physical damage while affected by herald of purity"] = { "HeraldBonusPurityPhysicalDamage", }, + ["(#)% increased physical damage with hits and ailments against ignited enemies"] = { "PhysicalDamageVersusIgnitedEnemiesUnique__1", }, + ["(#)% increased physical damage with ranged weapons"] = { "RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3", "RangedWeaponPhysicalDamagePlusPercentUnique__1", }, + ["(#)% increased poison duration"] = { "PoisonDurationUnique__1_", "PoisonDurationUnique__2", "PoisonDurationUnique__3", "VillagePoisonDuration", }, + ["(#)% increased poison duration if you have at least # intelligence"] = { "PoisonDurationWithOver150IntelligenceUnique__1", }, + ["(#)% increased power charge duration"] = { "ChargeBonusPowerChargeDuration", "IncreasedPowerChargeDurationUnique__1", }, + ["(#)% increased projectile attack damage"] = { "ProjectileAttackDamageImplicitGloves1", }, + ["(#)% increased projectile attack damage while you have at least # dexterity"] = { "ProjectileAttackDamageAt200DexterityUnique__1", }, + ["(#)% increased projectile damage"] = { "IncreasedProjectileDamageUniqueBootsDexInt4", "IncreasedProjectileDamageUniqueQuiver4", "IncreasedProjectileDamageUniqueStaff10", "IncreasedProjectileDamageUnique__1", "IncreasedProjectileDamageUnique__2", "IncreasedProjectileDamageUnique__7", "IncreasedProjectileDamageUnique___10_", "IncreasedProjectileDamageUnique___11", "IncreasedProjectileDamageUnique___12", "IncreasedProjectileDamageUnique___3", "IncreasedProjectileDamageUnique___4", "IncreasedProjectileDamageUnique___8", "IncreasedProjectileDamageUnique___9", }, + ["(#)% increased projectile damage while in blood stance"] = { "ProjectileDamageBloodStanceUnique__1", }, + ["(#)% increased projectile speed"] = { "ProjectileSpeedImplicitQuiver4New", "ProjectileSpeedUniqueBow4_", "ProjectileSpeedUniqueQuiver4", "ProjectileSpeedUnique__10", "ProjectileSpeedUnique__6", "ProjectileSpeedUnique__7", "ProjectileSpeedUnique__8", "ProjectileSpeedUnique__9", }, + ["(#)% increased quantity of fish caught"] = { "FishingQuantityUnique__1", }, + ["(#)% increased quantity of gold dropped by slain enemies"] = { "IncreasedGoldFoundUnique__1", }, + ["(#)% increased quantity of items dropped by slain maimed enemies"] = { "IIQFromMaimedEnemiesUnique_1", }, + ["(#)% increased quantity of items dropped by slain normal enemies"] = { "NormalMonsterItemQuantityUnique__1", }, + ["(#)% increased quantity of items found"] = { "ItemFoundQuantityIncreaseUniqueBelt3", "ItemFoundQuantityIncreaseUniqueBodyStr5", "ItemFoundQuantityIncreaseUniqueBootsDex2", "ItemFoundQuantityIncreaseUniqueGlovesInt1", "ItemFoundQuantityIncreaseUniqueRing7", "ItemFoundQuantityIncreaseUniqueShieldInt4", "TalismanIncreasedItemQuantity", "UniqueSpecialCorruptionItemQuantity_", }, + ["(#)% increased quantity of items found during effect"] = { "FlaskItemQuantityUniqueFlask1", }, + ["(#)% increased quantity of items found when on low life"] = { "ItemQuantityOnLowLifeUnique__1", }, + ["(#)% increased quantity of items found with a magic item equipped"] = { "ItemQuantityWhileWearingAMagicItemUnique__1", }, + ["(#)% increased rage effect"] = { "VillageRageEffect", }, + ["(#)% increased rarity of fish caught"] = { "FishingRarityUniqueFishingRod1", "FishingRarityUnique__2_", }, + ["(#)% increased rarity of items dropped by enemies killed with a critical strike"] = { "KilledMonsterItemRarityOnCritUniqueRing11", }, + ["(#)% increased rarity of items dropped by slain magic enemies"] = { "MagicMonsterItemRarityUnique__1", }, + ["(#)% increased rarity of items dropped by slain maimed enemies"] = { "IIRFromMaimedEnemiesUnique_1", }, + ["(#)% increased rarity of items found"] = { "ItemFoundRarityIncreaseImplicitAmulet1", "ItemFoundRarityIncreaseImplicitDemigodsBelt1", "ItemFoundRarityIncreaseImplicitRing1", "ItemFoundRarityIncreaseUniqueBootsDemigods1", "ItemFoundRarityIncreaseUniqueBootsDexInt1", "ItemFoundRarityIncreaseUniqueGlovesStrDex2", "ItemFoundRarityIncreaseUniqueHelmetDex6", "ItemFoundRarityIncreaseUniqueHelmetWreath1", "ItemFoundRarityIncreaseUniqueRing3", "ItemFoundRarityIncreaseUniqueRing6", "ItemFoundRarityIncreaseUniqueRingDemigods1", "ItemFoundRarityIncreaseUniqueShieldDemigods", "ItemFoundRarityIncreaseUniqueShieldStrDex2", "ItemFoundRarityIncreaseUniqueStrDexHelmet1", "ItemFoundRarityIncreaseUniqueTwoHandAxe2", "ItemFoundRarityIncreaseUnique__10", "ItemFoundRarityIncreaseUnique__3", "ItemFoundRarityIncreaseUnique__4_", "ItemFoundRarityIncreaseUnique__5", "ItemFoundRarityIncreaseUnique__6", "ItemFoundRarityIncreaseUnique__7", "ItemFoundRarityIncreaseUnique__8", "ItemFoundRarityIncreaseUnique__9", }, + ["(#)% increased rarity of items found during effect"] = { "FlaskItemRarityUniqueFlask1", }, + ["(#)% increased rarity of items found per mana burn, up to a maximum of #%"] = { "TinctureRarityPerToxicityUnique__1", }, + ["(#)% increased rarity of items found with a normal item equipped"] = { "ItemRarityWhileWearingANormalItemUnique__1", }, + ["(#)% increased recovery rate"] = { "FlaskIncreasedRecoverySpeedUnique___1", }, + ["(#)% increased reservation efficiency of skills"] = { "ReservationEfficiencyUnique__5", }, + ["(#)% increased reservation efficiency of skills while affected by a unique abyss jewel"] = { "ReservationEfficiencyWithUniqueAbyssJewelUnique__1", }, + ["(#)% increased skeleton attack speed"] = { "MaximumMinionCountUniqueJewel1", "SkeletonAttackSpeedUniqueJewel1", }, + ["(#)% increased skeleton cast speed"] = { "SkeletonCastSpeedUniqueJewel1", }, + ["(#)% increased skeleton duration"] = { "SkeletonDurationUniqueTwoHandSword4", }, + ["(#)% increased skeleton movement speed"] = { "SkeletonMovementSpeedUniqueJewel1", }, + ["(#)% increased skill effect duration"] = { "SkillEffectDurationUnique__1", "TalismanIncreasedSkillEffectDuration", "UniqueSpecialCorruptionSkillEffectDuration", }, + ["(#)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUniqueBootsStrDex5", "SpellCriticalStrikeChanceUniqueDagger1", "SpellCriticalStrikeChanceUniqueGlovesInt5", "SpellCriticalStrikeChanceUniqueGlovesInt6", "SpellCriticalStrikeChanceUniqueHelmetInt6", "SpellCriticalStrikeChanceUniqueShieldInt3", "SpellCriticalStrikeChanceUnique__1", "SpellCriticalStrikeChanceUnique__2", "SpellCriticalStrikeChanceUnique__3", "SpellCriticalStrikeChanceUnique__4", "SpellCriticalStrikeChanceUnique__5", "VillageSpellCriticalStrikeChance", "VillageSpellCriticalStrikeChanceTwoHand", }, + ["(#)% increased spell critical strike chance per raised spectre"] = { "SpellCriticalStrikeChancePerSpectreUnique__1_", }, + ["(#)% increased spell damage"] = { "SpellDamageImplicitArmour1", "SpellDamageImplicitGloves1", "SpellDamageImplicitShield1", "SpellDamageImplicitShield2", "SpellDamageImplicitShield3", "SpellDamageOnWeaponImplicitWand1", "SpellDamageOnWeaponImplicitWand10", "SpellDamageOnWeaponImplicitWand11", "SpellDamageOnWeaponImplicitWand12", "SpellDamageOnWeaponImplicitWand13", "SpellDamageOnWeaponImplicitWand14", "SpellDamageOnWeaponImplicitWand15", "SpellDamageOnWeaponImplicitWand16", "SpellDamageOnWeaponImplicitWand17", "SpellDamageOnWeaponImplicitWand18", "SpellDamageOnWeaponImplicitWand2", "SpellDamageOnWeaponImplicitWand3", "SpellDamageOnWeaponImplicitWand4", "SpellDamageOnWeaponImplicitWand5", "SpellDamageOnWeaponImplicitWand6", "SpellDamageOnWeaponImplicitWand7", "SpellDamageOnWeaponImplicitWand8", "SpellDamageOnWeaponImplicitWand9", "SpellDamageOnWeaponUniqueDagger1", "SpellDamageOnWeaponUniqueDagger4", "SpellDamageOnWeaponUniqueTwoHandAxe9", "SpellDamageUniqueBodyInt7", "SpellDamageUniqueCorruptedJewel3_", "SpellDamageUniqueHelmetDexInt1", "SpellDamageUniqueHelmetInt8", "SpellDamageUniqueRing35", "SpellDamageUniqueSceptre2", "SpellDamageUniqueSceptre5", "SpellDamageUniqueShieldInt1", "SpellDamageUniqueShieldStrInt1", "SpellDamageUniqueStaff11_", "SpellDamageUniqueStaff12", "SpellDamageUniqueStaff2", "SpellDamageUniqueStaff6", "SpellDamageUniqueWand1", "SpellDamageUniqueWand4", "SpellDamageUniqueWand7", "SpellDamageUnique__10", "SpellDamageUnique__11", "SpellDamageUnique__12", "SpellDamageUnique__13", "SpellDamageUnique__14", "SpellDamageUnique__15", "SpellDamageUnique__16", "SpellDamageUnique__17", "SpellDamageUnique__18", "SpellDamageUnique__2", "SpellDamageUnique__4", "SpellDamageUnique__5", "SpellDamageUnique__6", "SpellDamageUnique__7", "SpellDamageUnique__8_", "SpellDamageUnique__9", "TalismanSpellDamage", "VillageWeaponSpellDamage1", "VillageWeaponSpellDamage2", "VillageWeaponSpellDamage3", "VillageWeaponSpellDamageTwoHand1", "VillageWeaponSpellDamageTwoHand2", "VillageWeaponSpellDamageTwoHand3", }, + ["(#)% increased spell damage for each # total mana you have spent recently, up to #%"] = { "SpellDamagePer200ManaSpentRecentlyUnique__1__", }, + ["(#)% increased spell damage if you've dealt a critical strike recently"] = { "SpellDamageIfYouHaveCritRecentlyUnique__2", }, + ["(#)% increased spell damage if your opposite ring is an elder item"] = { "SpellDamageElderItemUnique__1_", }, + ["(#)% increased spell damage per power charge"] = { "IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6", "IncreasedSpellDamagePerPowerChargeUnique__1", }, + ["(#)% increased spell damage while no mana is reserved"] = { "SpellDamageWithNoManaReservedUniqueJewel30", }, + ["(#)% increased strength"] = { "PercentageStrengthUniqueBootsStrInt2", "PercentageStrengthUniqueHelmetStrDex6", "PercentageStrengthUniqueJewel29", "PercentageStrengthUnique__2", "PercentageStrengthUnique__5", "TalismanIncreasedStrength", }, + ["(#)% increased strength if # warlord items are equipped"] = { "PercentageStrength2WarlordItemsUnique__1", }, + ["(#)% increased stun and block recovery"] = { "StunRecoveryImplicitBelt1", "StunRecoveryUniqueGlovesStrInt1", "StunRecoveryUniqueHelmetStrInt4", "StunRecoveryUnique__2", "StunRecoveryUnique__3", "StunRecoveryUnique__4", "StunRecoveryUnique__6", "StunRecoveryUnique__7", "StunRecoveryUnique__8", }, + ["(#)% increased stun duration on enemies"] = { "StunDurationImplicitBelt1", "StunDurationImplicitQuiver9", "StunDurationUniqueOneHandMace6", "StunDurationUniqueQuiver2", "StunDurationUniqueQuiver8", "StunDurationUniqueTwoHandMace1", "StunDurationUniqueTwoHandMace2", "StunDurationUniqueTwoHandMace3", "StunDurationUnique__1", "StunDurationUnique__2", }, + ["(#)% increased total recovery per second from life leech"] = { "IncreasedLifeLeechRateUnique__2", }, + ["(#)% increased total recovery per second from mana leech"] = { "IncreasedManaLeechRateUnique__1", }, + ["(#)% increased totem life"] = { "TotemLifeUniqueBodyInt7", "TotemLifeUnique__1", "TotemLifeUnique__2_", }, + ["(#)% increased totem placement speed"] = { "JewelImplicitTotemPlacementSpeed", "SummonTotemCastSpeedImplicit1", "SummonTotemCastSpeedUnique__1", "SummonTotemCastSpeedUnique__2", "SummonTotemCastSpeedUnique__3", }, + ["(#)% increased trap and mine throwing speed"] = { "TrapAndMineThrowSpeedUnique_1", }, + ["(#)% increased trap damage"] = { "TrapDamageUniqueBelt6", "TrapDamageUniqueShieldDexInt1", "TrapDamageUnique___1", }, + ["(#)% increased trap throwing speed"] = { "TrapThrowSpeedUniqueBootsDex6", "TrapThrowingSpeedUnique_1", }, + ["(#)% increased trap trigger area of effect"] = { "TrapTriggerRadiusUnique__1", }, + ["(#)% increased unveiled modifier magnitudes"] = { "LocalVeiledModEffectUnique__1", }, + ["(#)% increased vaal skill critical strike chance"] = { "VaalSkillCriticalStrikeChanceCorruptedJewel6", }, + ["(#)% increased valour gained"] = { "BannerResourceGainedUnique__1", }, + ["(#)% increased warcry speed"] = { "WarcrySpeedUnique__1", "WarcrySpeedUnique__2", }, + ["(#)% increased ward"] = { "LocalIncreasedWardPercentUnique__1_", "LocalIncreasedWardPercentUnique__2", "LocalIncreasedWardPercentUnique__3", "LocalIncreasedWardPercentUnique__4_", }, + ["(#)% less duration"] = { "FlaskLessDurationUnique1", "FlaskLessDurationUnique2", }, + ["(#)% less energy shield recharge rate"] = { "LessRechargeRateSoullessEleganceUnique__1", }, + ["(#)% less impale duration"] = { "ImpaleDurationUnique_1", }, + ["(#)% less minimum physical attack damage"] = { "RyuslathaMinimumDamageModifierUnique__1", }, + ["(#)% less physical and chaos damage taken while sane"] = { "PhysicalChaosDamageTakenNotUnhingedUnique__1_", }, + ["(#)% less poison duration"] = { "LessPoisonDurationUnique_1", }, + ["(#)% more attack speed with unarmed melee attacks"] = { "UnarmedMoreMeleeAttackSpeedUnique__1", }, + ["(#)% more critical strike chance while insane"] = { "CriticalStrikeChanceFinalUnhingedUnique__1", }, + ["(#)% more main hand attack speed"] = { "WingsOfEntropyMainHandAttackSpeedFinalUnique__1_", }, + ["(#)% more maximum life"] = { "MoreMaximumReservedLifeUnique__1", }, + ["(#)% more maximum physical attack damage"] = { "RyuslathaMaximumDamageModifierUnique__1_", }, + ["(#)% more melee physical damage during effect"] = { "PhysicalDamageOnFlaskUseUniqueFlask9", }, + ["(#)% more physical damage with unarmed melee attacks"] = { "FacebreakerUnarmedMoreDamage", }, + ["(#)% of attack damage leeched as life"] = { "LifeLeechPermyriadUniqueBodyStrInt5", "LifeLeechPermyriadUniqueHelmetInt7", }, + ["(#)% of attack damage leeched as mana"] = { "ManaLeechPermyriadUniqueHelmetInt7", }, + ["(#)% of attack physical damage converted to cold damage"] = { "VillageAttackConvertToCold", }, + ["(#)% of attack physical damage converted to fire damage"] = { "VillageAttackConvertToFire", }, + ["(#)% of attack physical damage converted to lightning damage"] = { "VillageAttackConvertToLightning", }, + ["(#)% of chaos damage leeched as life"] = { "ChaosDamageLifeLeechPermyriadUnique__3", }, + ["(#)% of cold damage converted to chaos damage"] = { "VillageConvertColdToChaos", }, + ["(#)% of cold damage taken as fire damage"] = { "ColdHitAndDoTDamageTakenAsFireUnique__1", }, + ["(#)% of damage from hits is taken from void spawns' life before you per void spawn"] = { "DamageRemovedFromVoidSpawnsUnique__1", }, + ["(#)% of damage from hits is taken from your nearest totem's life before you"] = { "DamageTakenFromTotemLifeBeforePlayerUnique__1", }, + ["(#)% of damage is taken from mana before life"] = { "DamageTakenFromManaUniqueHelmet_1", }, + ["(#)% of damage taken from stunning hits is recovered as life"] = { "StunningHitsRecoverLifeUnique__1", }, + ["(#)% of damage taken recouped as life"] = { "DamageTakenGainedAsLifeUnique__1_", "DamageTakenGainedAsLifeUnique__2", "DamageTakenGainedAsLifeUnique__3", "DamageTakenGainedAsLifeUnique__4", }, + ["(#)% of damage taken recouped as mana"] = { "PercentDamageGoesToManaUniqueBootsDex3", "PercentDamageGoesToManaUniqueHelmetStrInt3", "PercentDamageGoesToManaUnique__2", }, + ["(#)% of elemental damage from hits taken as physical damage"] = { "ElementalDamageTakenAsPhysicalUnique__2", }, + ["(#)% of elemental damage leeched as energy shield if # shaper items are equipped"] = { "ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1", }, + ["(#)% of elemental damage taken as chaos damage if # hunter items are equipped"] = { "ElementalDamageTakenAsChaos4HunterItemsUnique__1", }, + ["(#)% of fire and lightning damage from hits taken as cold damage during effect"] = { "FireLightningTakenSsColdUniquFlask8", }, + ["(#)% of life regenerated per second if you've dealt a critical strike in the past # seconds"] = { "LifeRegenerationIfCrit8SecondsUnique__1", }, + ["(#)% of lightning damage taken as fire damage"] = { "LightningHitAndDoTDamageTakenAsFireUnique__1", }, + ["(#)% of physical attack damage leeched as life"] = { "LifeLeechJewel", "LifeLeechLocal1", "LifeLeechLocal2", "LifeLeechLocal3", "LifeLeechPermyriadUniqueAmulet9", "LifeLeechPermyriadUniqueHelmetDexInt6", "LifeLeechPermyriadUniqueRing12", "LifeLeechPermyriadUnique__7", "LifeLeechPermyriadUnique__8", "LifeLeechPermyriadUnique__9", "LifeLeechUniqueAmulet9", "LifeLeechUniqueBodyStrDex3", "LifeLeechUniqueBodyStrInt5", "LifeLeechUniqueHelmetInt7", "LifeLeechUniqueRing12", "VillageLifeLeechLocalPermyriad", }, + ["(#)% of physical attack damage leeched as mana"] = { "ManaLeechJewel", "ManaLeechLocal1", "ManaLeechPermyriadUniqueOneHandSword2", "ManaLeechPermyriadUnique__3", "ManaLeechUniqueHelmetInt7", "ManaLeechUniqueOneHandSword2", "VillageManaLeechLocalPermyriad", }, + ["(#)% of physical damage converted to chaos damage"] = { "PhysicalDamageConvertToChaosUniqueClaw2", }, + ["(#)% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUnique__3", }, + ["(#)% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUnique__3__", }, + ["(#)% of physical damage converted to lightning damage"] = { "ConvertPhysicaltoLightningUnique__5", }, + ["(#)% of physical damage from hits taken as cold damage during effect"] = { "PhysicalTakenAsColdUniqueFlask8", }, + ["(#)% of physical damage leeched as energy shield if # elder items are equipped"] = { "PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1", }, + ["(#)% of physical damage prevented recently is regenerated as energy shield per second if # crusader items are equipped"] = { "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1", }, + ["(#)% of physical damage taken as cold damage if # redeemer items are equipped"] = { "PhysicalDamageTakenAsCold4RedeemerItemsUnique__1", }, + ["(#)% of physical damage taken as fire damage"] = { "PhysicalHitAndDoTDamageTakenAsFireUnique__1", }, + ["(#)% of physical damage taken as fire damage if # warlord items are equipped"] = { "PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1", }, + ["(#)% of physical damage taken as lightning damage if # crusader items are equipped"] = { "PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1", }, + ["(#)% of suppressed spell damage taken bypasses energy shield"] = { "SuppressedDamageBypassEnergyShieldUnique_1", }, + ["(#)% of suppressed spell damage taken recouped as energy shield"] = { "SuppressedDamageRecoupedAsEnergyShield_1", }, + ["(#)% reduced amount recovered"] = { "FlaskFullInstantRecoveryUnique__1", "FlaskLifeLeechIsInstantDuringEffect", }, + ["(#)% reduced area of effect for attacks"] = { "IncreasedAttackAreaOfEffectUnique__3", }, + ["(#)% reduced area of effect of hex skills"] = { "CurseAreaOfEffectUnique__4", }, + ["(#)% reduced attack and cast speed"] = { "ReducedAttackAndCastSpeedUniqueGlovesStrInt4", }, + ["(#)% reduced attack speed"] = { "IncreasedAttackSpeedUniqueGlovesStr2", "LocalIncreasedAttackSpeedUnique__38", "LocalIncreasedAttackSpeedUnique__41", "LocalReducedAttackSpeedUnique__3", "ReducedAttackSpeedUniqueGlovesStrInt4", }, + ["(#)% reduced cast speed"] = { "IncreasedCastSpeedUniqueGlovesInt2", "ReducedCastSpeedUniqueGlovesStrInt4_", "ReducedCastSpeedUnique__1_", }, + ["(#)% reduced charges per use"] = { "FlaskChargesUsedUnique__10", "FlaskChargesUsedUnique__11", "FlaskChargesUsedUnique__4", "LocalFlaskChargesUsedUnique__2", }, + ["(#)% reduced cold resistance"] = { "ReducedColdResistanceUnique__1", }, + ["(#)% reduced duration"] = { "FlaskConsecratedGroundDurationUnique__1", "FlaskEffectDurationUnique__2", "FlaskEffectDurationUnique__6", "FlaskIncreasedDurationUnique__3", }, + ["(#)% reduced duration of elemental ailments on you while affected by a rare abyss jewel"] = { "ElementalAilmentDurationWithRareAbyssJewelUnique__1", }, + ["(#)% reduced elemental resistances"] = { "IncreasedElementalResistancesUnique__2_", }, + ["(#)% reduced enemy stun threshold"] = { "StunThresholdReductionUniqueBootsStr3", "StunThresholdReductionUniqueOneHandMace6", "StunThresholdReductionUniqueQuiver2", "StunThresholdReductionUniqueQuiver8", "StunThresholdReductionUniqueStaff11", }, + ["(#)% reduced enemy stun threshold with this weapon"] = { "StunThresholdReductionUniqueOneHandMace5", "StunThresholdReductionUnique__1___", "StunThresholdReductionUnique__2", "VillageLocalStunThresholdReduction", }, + ["(#)% reduced experience gain"] = { "IncreasedExperienceUniqueTwoHandMace4", }, + ["(#)% reduced fire resistance"] = { "ReducedFireResistanceUnique__1", "ReducedFireResistanceUnique__2", }, + ["(#)% reduced flask charges used"] = { "BeltIncreasedFlaskChargedUsedUnique__2", }, + ["(#)% reduced flask effect duration"] = { "IncreasedFlaskDurationUnique__1", }, + ["(#)% reduced intelligence"] = { "PercentageIntelligenceUniqueJewel29", }, + ["(#)% reduced life recovery from flasks"] = { "FlaskLifeRecoveryUniqueGlovesDex_1", }, + ["(#)% reduced lightning resistance"] = { "ReducedLightningResistanceUnique__1", }, + ["(#)% reduced mana burn rate"] = { "TinctureToxicityRateUnique__1", "TinctureToxicityRateUnique__2", }, + ["(#)% reduced mana cost of minion skills"] = { "MinionSkillManaCostUnique__1_", "MinionSkillManaCostUnique__2", }, + ["(#)% reduced mana cost of raise spectre"] = { "RaiseSpectreManaCostUnique__1_", }, + ["(#)% reduced mana cost of skills"] = { "ManaCostReductionUnique__1", "ManaCostReductionUnique__2_", }, + ["(#)% reduced mana reservation efficiency of skills"] = { "ManaReservationEfficiencyUnique__1", }, + ["(#)% reduced maximum life"] = { "MaximumLifeUnique__26", }, + ["(#)% reduced maximum mana"] = { "IncreasedManaUniqueGlovesStr1", "PercentReducedMaximumManaUnique_1", }, + ["(#)% reduced mine throwing speed"] = { "RemoteMineLayingSpeedUnique__1", }, + ["(#)% reduced movement speed"] = { "MovementVelocityUnique__2", }, + ["(#)% reduced quantity of fish caught"] = { "FishingQuantityUniqueFishingRod1", }, + ["(#)% reduced quantity of items found"] = { "ItemFoundQuantityIncreaseUniqueRing32", }, + ["(#)% reduced rage cost of skills"] = { "ReducedRageCostUnique__1", }, + ["(#)% reduced rarity of items found"] = { "ItemFoundRarityDecreaseUniqueRing10", "ItemFoundRarityDecreaseUniqueTwoHandMace4", "ItemFoundRarityIncreaseUniqueRing32_", }, + ["(#)% reduced recovery rate"] = { "FlaskIncreasedRecoverySpeedUniqueFlask3", }, + ["(#)% reduced recovery rate of life and energy shield"] = { "LifeEnergyShieldRecoveryRateUnique__1", }, + ["(#)% reduced reservation efficiency of skills"] = { "ReservationEfficiencyUnique__10", "ReservationEfficiencyUnique__6", "ReservationEfficiencyUnique__7", "ReservationEfficiencyUnique__8", "ReservationEfficiencyUnique__9", }, + ["(#)% reduced skeleton duration"] = { "SkeletonDurationUniqueJewel1_", }, + ["(#)% reduced skill effect duration"] = { "ReducedSkillEffectDurationUniqueAmulet20", "SkillEffectDurationUnique__2_", }, + ["(#)% reduced soul gain prevention duration"] = { "VaalSoulGainPreventionUnique__1__", }, + ["(#)% reduced stun and block recovery"] = { "StunRecoveryUniqueOneHandSword13", }, + ["(#)% reduced total recovery per second from life leech"] = { "ReducedLifeLeechRateUniqueJewel19", }, + ["(#)% reduced totem damage"] = { "ReducedTotemDamageUniqueJewel26", }, + ["(#)% reduced trap duration"] = { "TrapDurationUniqueBelt6", }, + ["(#)% reduced trap throwing speed"] = { "TrapThrowSpeedUnique__1_", }, + ["(#)% slower restoration of ward"] = { "WardDelayRecoveryUnique__2", }, + ["(-10-10)% reduced charges per use"] = { "FlaskChargesUsedUnique__10", "FlaskChargesUsedUnique__4", }, + ["(-10-10)% reduced quantity of items found"] = { "ItemFoundQuantityIncreaseUniqueRing32", }, + ["(-100-50)% reduced life recovery from flasks"] = { "FlaskLifeRecoveryUniqueGlovesDex_1", }, + ["(-15-15)% reduced mana reservation efficiency of skills"] = { "ManaReservationEfficiencyUnique__1", }, + ["(-16-16)% reduced attack speed"] = { "LocalIncreasedAttackSpeedUnique__38", }, + ["(-17-17)% reduced maximum life"] = { "MaximumLifeUnique__26", }, + ["(-20-20)% reduced skill effect duration"] = { "SkillEffectDurationUnique__2_", }, + ["(-35-35)% reduced duration"] = { "FlaskIncreasedDurationUnique__3", }, + ["(-35-35)% reduced mana burn rate"] = { "TinctureToxicityRateUnique__2", }, + ["(-40-40)% reduced area of effect for attacks"] = { "IncreasedAttackAreaOfEffectUnique__3", }, + ["(-40-40)% reduced rarity of items found"] = { "ItemFoundRarityIncreaseUniqueRing32_", }, + ["(0-100)% increased effect of jewel socket passive skills containing corrupted magic jewels"] = { "CorruptedMagicJewelModEffectUnique__1", }, + ["(0-40)% increased attack and cast speed"] = { "AttackAndCastSpeedUnique__9", }, + ["(0-50)% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUnique__3", }, + ["(0-50)% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUnique__3__", }, + ["(0-50)% of physical damage converted to lightning damage"] = { "ConvertPhysicaltoLightningUnique__5", }, + ["(0.2-0.3)% of physical attack damage leeched as life"] = { "VillageLifeLeechLocalPermyriad", }, + ["(0.2-0.3)% of physical attack damage leeched as mana"] = { "VillageManaLeechLocalPermyriad", }, + ["(0.2-0.4)% of attack damage leeched as mana"] = { "ManaLeechPermyriadUniqueHelmetInt7", }, + ["(0.3-0.5)% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUnique__7", }, + ["(0.4-0.5)% of chaos damage leeched as life"] = { "ChaosDamageLifeLeechPermyriadUnique__3", }, + ["(0.4-0.8)% of attack damage leeched as life"] = { "LifeLeechPermyriadUniqueHelmetInt7", }, + ["(0.4-0.8)% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueHelmetDexInt6", }, + ["(0.6-0.8)% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueRing12", }, + ["(0.6-1)% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadUniqueOneHandSword2", }, + ["(0.8-1)% of attack damage leeched as life"] = { "LifeLeechPermyriadUniqueBodyStrInt5", }, + ["(1-1.5)% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadUnique__3", }, + ["(1-10)% chance to avoid projectiles"] = { "ProjectileAvoidUnique", }, + ["(1-100)% chance to trigger level 1 create lesser shrine when you kill an enemy"] = { "CastLevel1SummonLesserShrineOnKillUnique", }, + ["(1-100)% increased duration of lightning ailments"] = { "ShockDurationUnique__2", }, + ["(1-100)% increased mana recovery from flasks"] = { "FlaskManaRecoveryUnique__2", }, + ["(1-100)% increased mana regeneration rate"] = { "ManaRegenerationUnique__10", }, + ["(1-2) to (18-20) lightning damage per power charge"] = { "ChargeBonusAddedLightningDamagePerPowerCharge", }, + ["(1-2) to (36-40) lightning damage per power charge"] = { "GlobalAddedLightningDamagePerPowerChargeUnique__1", }, + ["(1-2)% of physical attack damage leeched as life"] = { "LifeLeechJewel", "LifeLeechLocal1", }, + ["(1-2)% of physical attack damage leeched as mana"] = { "ManaLeechJewel", "ManaLeechLocal1", "ManaLeechUniqueHelmetInt7", }, + ["(1-20)% increased attack speed"] = { "IncreasedAttackSpeedUnique__3_", }, + ["(1-20)% increased cast speed"] = { "IncreasedCastSpeedUnique__17", }, + ["(1-20)% increased movement speed"] = { "MovementVelocityUnique__38", }, + ["(1-3)% of elemental damage leeched as energy shield if 2 shaper items are equipped"] = { "ElementalEnergyShieldLeechPermyriad2ShaperItemsUnique__1", }, + ["(1-3)% of physical damage leeched as energy shield if 2 elder items are equipped"] = { "PhysicalEnergyShieldLeechPermyriad2ElderItemsUnique__1", }, + ["(1-3)% of physical damage prevented recently is regenerated as energy shield per second if 6 crusader items are equipped"] = { "PhysicalDamagePreventedAsEnergyShieldRegen6CrusaderItemsUnique__1", }, + ["(1-40)% increased movement speed"] = { "MovementVelocityUnique__21", }, + ["(1-5)% increased rarity of items found per mana burn, up to a maximum of 100%"] = { "TinctureRarityPerToxicityUnique__1", }, + ["(1-50)% increased effect of lightning ailments"] = { "ShockEffectUnique__2", }, + ["(1-7)% increased intelligence"] = { "PercentageIntelligenceUnique__5", }, + ["(1-7)% increased movement speed"] = { "MovementVelocityUnique__55", }, + ["(1-7)% more attack speed with unarmed melee attacks"] = { "UnarmedMoreMeleeAttackSpeedUnique__1", }, + ["(1.2-2)% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueAmulet9", }, + ["(10-14) to (19-24) added physical damage with bow attacks"] = { "AddedPhysicalDamageUniqueQuiver3", }, + ["(10-14)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueBow11", "LocalIncreasedAttackSpeedUniqueBow6", }, + ["(10-14)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand2", }, + ["(10-15)% additional physical damage reduction while bleeding"] = { "AdditionalPhysicalDamageReductionWhileBleedingUnique__1", }, + ["(10-15)% chance to block attack damage"] = { "BlockPercentUniqueAmulet16", }, + ["(10-15)% chance to block spell damage"] = { "SpellBlockPercentageUniqueShieldInt1", "SpellBlockPercentageUnique__4", }, + ["(10-15)% chance to cover enemies in ash on hit"] = { "VillageCoverInAshOnHit", }, + ["(10-15)% chance to cover enemies in frost on hit"] = { "VillageCoverInFrostOnHit", }, + ["(10-15)% chance to create chilled ground when you freeze an enemy"] = { "VillageSpreadChilledGroundOnFreeze", }, + ["(10-15)% chance to freeze"] = { "VillageChanceToFreeze", }, + ["(10-15)% chance to gain a frenzy charge on hit if 4 redeemer items are equipped"] = { "FrenzyChargeOnHitChance4RedeemerItemsUnique__1", }, + ["(10-15)% chance to gain a power charge on hit if 4 crusader items are equipped"] = { "PowerChargeOnHit4CrusaderItemsUnique__1", }, + ["(10-15)% chance to gain a power, frenzy or endurance charge on kill"] = { "PowerFrenzyOrEnduranceChargeOnKillUnique__1", }, + ["(10-15)% chance to ignite"] = { "ChanceToIgniteUniqueBootsStrInt3", "ChanceToIgniteUnique__6", "VillageChanceToIgnite", }, + ["(10-15)% chance to impale on spell hit"] = { "VillageChanceToImpaleWithSpells", }, + ["(10-15)% chance to shock"] = { "ChanceToShockUnique__4_", "VillageChanceToShock", }, + ["(10-15)% faster start of energy shield recharge"] = { "ReducedEnergyShieldDelayImplicit1_", }, + ["(10-15)% increased area of effect"] = { "AreaOfEffectUnique__6", }, + ["(10-15)% increased area of effect while unarmed"] = { "UnarmedAreaOfEffectUniqueJewel4", }, + ["(10-15)% increased armour"] = { "IncreasedPhysicalDamageReductionRatingPercentUnique__1", }, + ["(10-15)% increased attack and cast speed"] = { "AttackAndCastSpeedUnique__1", }, + ["(10-15)% increased attack damage"] = { "DualStrikeThresholdJewel__2_", }, + ["(10-15)% increased attack damage while holding a shield"] = { "AttackDamageWhileHoldingShieldUnique__1", }, + ["(10-15)% increased attack speed"] = { "IncreasedAttackSpeedUniqueBodyStr3", "IncreasedAttackSpeedUniqueGlovesStr1", "IncreasedAttackSpeedUniqueIntHelmet2", "IncreasedAttackSpeedUniqueRing27", "IncreasedAttackSpeedUniqueShieldDexInt2", "LocalIncreasedAttackSpeedUniqueBow10", "LocalIncreasedAttackSpeedUniqueBow9", "LocalIncreasedAttackSpeedUniqueClaw8", "LocalIncreasedAttackSpeedUniqueClaw9", "LocalIncreasedAttackSpeedUniqueOneHandAxe2", "LocalIncreasedAttackSpeedUniqueOneHandSword13_", "LocalIncreasedAttackSpeedUniqueTwoHandSword6", "LocalIncreasedAttackSpeedUnique__13", "LocalIncreasedAttackSpeedUnique__17", "LocalIncreasedAttackSpeedUnique__20", "LocalIncreasedAttackSpeedUnique__22", "LocalIncreasedAttackSpeedUnique__23", "LocalIncreasedAttackSpeedUnique__26_", "LocalIncreasedAttackSpeedUnique__29", "LocalIncreasedAttackSpeedUnique__4", "LocalIncreasedAttackSpeedUnique__7", "LocalIncreasedAttackSpeedUnique__8", }, + ["(10-15)% increased attributes if 6 elder items are equipped"] = { "PercentageAllAttributes6ElderItemsUnique__1", }, + ["(10-15)% increased cast speed"] = { "IncreasedCastSpeedFishing__Unique1", "IncreasedCastSpeedUniqueGlovesStr1", "IncreasedCastSpeedUniqueIntHelmet2", "IncreasedCastSpeedUniqueRing27", "IncreasedCastSpeedUnique__20", "IncreasedCastSpeedUnique__23", "IncreasedCastSpeedUnique__7", }, + ["(10-15)% increased cold damage"] = { "ColdDamagePercentUniqueHelmetStrInt3", "ColdDamagePercentUnique__1", "ColdDamagePercentUnique__12", "ColdDamagePercentUnique__13", "ColdDamagePercentUnique__15", "ColdDamagePercentUnique__2", }, + ["(10-15)% increased cooldown recovery rate"] = { "GlobalCooldownRecoveryUnique__2", }, + ["(10-15)% increased cooldown recovery rate for throwing traps"] = { "TrapCooldownRecoveryUnique__1", }, + ["(10-15)% increased dexterity"] = { "PercentageDexterityUnique__4", }, + ["(10-15)% increased dexterity if 2 redeemer items are equipped"] = { "PercentageDexterity2RedeemerItemsUnique__1", }, + ["(10-15)% increased duration of elemental ailments on enemies"] = { "ElementalStatusAilmentDurationUnique__1_", }, + ["(10-15)% increased effect of non-curse auras from your skills"] = { "AuraEffectGlobalUnique__1", "IncreasedAuraEffectUniqueBodyDexInt4", "UniqueSpecialCorruptionAuraEffect", }, + ["(10-15)% increased effect of your curses"] = { "CurseEffectivenessUnique__4", "UniqueSpecialCorruptionCurseEffect___", }, + ["(10-15)% increased elemental damage"] = { "ElementalDamageUniqueJewel_1", }, + ["(10-15)% increased elemental damage per 1% missing"] = { "ElementalDamagePerMissingResistanceUnique_1", }, + ["(10-15)% increased energy shield recovery rate"] = { "LifeAndEnergyShieldRecoveryRateUnique_1", }, + ["(10-15)% increased fire damage"] = { "FireDamagePercentUnique__1", "FireDamagePercentUnique__10", "FireDamagePercentUnique__11", "FireDamagePercentUnique__9", "FireDamagePercentUnique___2", "FireDamagePercentUnique____8", }, + ["(10-15)% increased global defences"] = { "AllDefencesUnique__5", }, + ["(10-15)% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUnique__3", "IncreasedPhysicalDamagePercentUnique__5", "IncreasedPhysicalDamagePercentUnique__6", "IncreasedPhysicalDamagePercentUnique__7", "PhysicalDamagePercentUnique___1", }, + ["(10-15)% increased intelligence if 2 crusader items are equipped"] = { "PercentageIntelligence2CrusaderItemsUnique__1", }, + ["(10-15)% increased light radius"] = { "LightRadiusUniqueAmulet17", "LightRadiusUniqueRing11", }, + ["(10-15)% increased lightning damage"] = { "LightningDamagePercentUniqueHelmetStrInt3", "LightningDamagePercentUnique__5", "LightningDamagePercentUnique__6", "LightningDamagePercentUnique___1", }, + ["(10-15)% increased maximum life"] = { "MaximumLifeUnique__20___", }, + ["(10-15)% increased maximum life if 2 elder items are equipped"] = { "MaximumLifeIncreasePercent2ElderItemsUnique__1", }, + ["(10-15)% increased maximum mana if 2 shaper items are equipped"] = { "MaximumManaIncreasePercent2ShaperItemsUnique__1", }, + ["(10-15)% increased movement speed"] = { "MovementVelocityUniqueAmulet20", "MovementVelocityUnique__32", "MovementVelocityUnique__56", "MovementVeolcityUniqueAmulet12", }, + ["(10-15)% increased movement speed if 4 hunter items are equipped"] = { "MovementVelocity4HunterItemsUnique__1", }, + ["(10-15)% increased physical damage with ranged weapons"] = { "RangedWeaponPhysicalDamagePlusPercentUniqueBodyDex3", }, + ["(10-15)% increased quantity of items found"] = { "ItemFoundQuantityIncreaseUniqueBodyStr5", }, + ["(10-15)% increased quantity of items found with a magic item equipped"] = { "ItemQuantityWhileWearingAMagicItemUnique__1", }, + ["(10-15)% increased skill effect duration"] = { "SkillEffectDurationUnique__1", }, + ["(10-15)% increased spell damage"] = { "SpellDamageImplicitShield2", }, + ["(10-15)% increased strength if 2 warlord items are equipped"] = { "PercentageStrength2WarlordItemsUnique__1", }, + ["(10-15)% of damage taken recouped as life"] = { "DamageTakenGainedAsLifeUnique__4", }, + ["(10-15)% of physical damage from hits taken as cold damage during effect"] = { "PhysicalTakenAsColdUniqueFlask8", }, + ["(10-15)% reduced enemy stun threshold"] = { "StunThresholdReductionUniqueQuiver2", }, + ["(10-15)% reduced intelligence"] = { "PercentageIntelligenceUniqueJewel29", }, + ["(10-15)% reduced mana cost of minion skills"] = { "MinionSkillManaCostUnique__1_", }, + ["(10-15)% reduced maximum mana"] = { "IncreasedManaUniqueGlovesStr1", }, + ["(10-15)% reduced mine throwing speed"] = { "RemoteMineLayingSpeedUnique__1", }, + ["(10-16)% increased attack speed"] = { "IncreasedAttackSpeedUniqueGlovesDemigods1", "LocalIncreasedAttackSpeedUnique__43", }, + ["(10-16)% increased quantity of items found"] = { "ItemFoundQuantityIncreaseUniqueRing7", }, + ["(10-16)% increased quantity of items found when on low life"] = { "ItemQuantityOnLowLifeUnique__1", }, + ["(10-18)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueWand6", }, + ["(10-19)% increased spell damage"] = { "VillageWeaponSpellDamage1", }, + ["(10-20)% chance for bleeding inflicted with this weapon to deal 100% more damage"] = { "VillageLocalChanceForBleedingDamage", }, + ["(10-20)% chance for energy shield recharge to start when you kill an enemy"] = { "EnergyShieldRechargeOnKillUnique__1__", }, + ["(10-20)% chance for poisons inflicted with this weapon to deal 100% more damage"] = { "VillageLocalChanceForPoisonDamage", }, + ["(10-20)% chance that if you would gain rage on hit, you instead gain up to your maximum rage"] = { "ChanceToGainMaximumRageUnique__1", }, + ["(10-20)% chance to aggravate bleeding on targets you hit with attacks"] = { "VillageAggravateBleedOnAttack", }, + ["(10-20)% chance to avoid being stunned"] = { "AvoidStunUniqueRingVictors", }, + ["(10-20)% chance to blind enemies on hit with attacks"] = { "AttacksBlindOnHitChanceUnique__2", }, + ["(10-20)% chance to blind enemies on hit with spells"] = { "VillageSpellChanceToBlind", }, + ["(10-20)% chance to gain a frenzy charge on hit while blinded"] = { "FrenzyChargeOnHitBlindedUnique__1", }, + ["(10-20)% chance to gain a power charge when you cast a curse spell"] = { "PowerChargeOnCurseUnique__1", }, + ["(10-20)% chance to ignite"] = { "ChanceToIgniteUnique__7", }, + ["(10-20)% chance to impale enemies on hit with attacks"] = { "AttackImpaleChanceUnique__1", "AttackImpaleChanceUnique__2", }, + ["(10-20)% chance to inflict corrosion on hit with spells"] = { "VillageSpellCorrosionOnHitChance", }, + ["(10-20)% increased area damage"] = { "AreaDamageUniqueOneHandMace7", }, + ["(10-20)% increased area of effect"] = { "AreaOfEffectUnique_9", }, + ["(10-20)% increased area of effect during effect"] = { "FlaskIncreasedAreaOfEffectDuringEffectUnique__1_", }, + ["(10-20)% increased attack and movement speed while you have a bestial minion"] = { "AttackAndMovementSpeedBeastialMinionUnique__1", }, + ["(10-20)% increased attack speed"] = { "LocalIncreasedAttackSpeedOneHandSword3", "LocalIncreasedAttackSpeedUniqueBow1", "LocalIncreasedAttackSpeedUniqueSceptre1", }, + ["(10-20)% increased attack speed while chilled"] = { "AttackSpeedWhileChilledUnique__1", }, + ["(10-20)% increased attack speed while ignited"] = { "IncreasedAttackSpeedWhileIgnitedUniqueJewel20", }, + ["(10-20)% increased attack speed with movement skills"] = { "AttackSpeedWithMovementSkillsUniqueBodyDex5", }, + ["(10-20)% increased cast speed"] = { "IncreasedCastSpeedUniqueStaff2", "IncreasedCastSpeedUniqueWand3", "IncreasedCastSpeedUnique__8", }, + ["(10-20)% increased cast speed while chilled"] = { "CastSpeedWhileChilledUnique__1", }, + ["(10-20)% increased cast speed while ignited"] = { "IncreasedCastSpeedWhileIgnitedUniqueJewel20_", }, + ["(10-20)% increased cold damage"] = { "ColdDamagePercentUnique___10", "RunecraftingColdDamage", }, + ["(10-20)% increased cooldown recovery rate if 2 shaper items are equipped"] = { "GlobalCooldownRecovery2ShaperItemsUnique__1", }, + ["(10-20)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueStaff7", "LocalCriticalStrikeChanceUniqueWand9", }, + ["(10-20)% increased damage per curse on you"] = { "IncreasedDamagePerCurseOnSelfCorruptedJewel13_", "IncreasedDamagePerCurseOnSelfUniqueCorruptedJewel8", }, + ["(10-20)% increased damage with hits and ailments per curse on enemy"] = { "IncreasedDamagePerCurseUniqueHelmetInt9", }, + ["(10-20)% increased duration of ailments on enemies"] = { "IncreasedAilmentDurationUnique__3_", }, + ["(10-20)% increased effect of non-damaging ailments"] = { "NonDamagingAilmentEffectUnique_1", }, + ["(10-20)% increased elemental damage"] = { "ElementalDamageUniqueBootsStr1", "ElementalDamageUniqueIntHelmet3", "ElementalDamageUniqueRingVictors", }, + ["(10-20)% increased elemental damage with attack skills"] = { "WeaponElementalDamageUniqueBelt5", "WeaponElementalDamageUniqueShieldStrInt4", }, + ["(10-20)% increased fire damage"] = { "FireDamagePercentUnique__13", "RunecraftingFireDamage", }, + ["(10-20)% increased flask charges used"] = { "BeltIncreasedFlaskChargedUsedUnique__1", }, + ["(10-20)% increased flask effect duration"] = { "BeltIncreasedFlaskDurationUnique__3___", "FlaskDurationUniqueGlovesDex_1", }, + ["(10-20)% increased lightning damage"] = { "RunecraftingLightningDamage", }, + ["(10-20)% increased mana reservation efficiency of skills"] = { "ManaReservationEfficiencyUnique__3", }, + ["(10-20)% increased maximum life"] = { "MaximumLifeUniqueShieldDexInt2", "MaximumLifeUniqueStaff4", }, + ["(10-20)% increased maximum mana"] = { "MaximumManaUniqueStaff4", "MaximumManaUnique__3", }, + ["(10-20)% increased movement speed"] = { "MovementVelocityUnique__19", }, + ["(10-20)% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUnique__1", }, + ["(10-20)% increased movement speed while chilled"] = { "MovementVelocityWhileChilledUnique__1_", }, + ["(10-20)% increased movement speed while ignited"] = { "MovementVelocityWhileIgnitedUniqueJewel20", "MovementVelocityWhileIgnitedUnique__2", }, + ["(10-20)% increased projectile speed"] = { "ProjectileSpeedUnique__9", }, + ["(10-20)% increased quantity of fish caught"] = { "FishingQuantityUnique__1", }, + ["(10-20)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueShieldDemigods", "ItemFoundRarityIncreaseUnique__4_", "ItemFoundRarityIncreaseUnique__8", }, + ["(10-20)% increased stun duration on enemies"] = { "StunDurationUniqueTwoHandMace2", }, + ["(10-20)% of cold damage taken as fire damage"] = { "ColdHitAndDoTDamageTakenAsFireUnique__1", }, + ["(10-20)% of damage taken recouped as life"] = { "DamageTakenGainedAsLifeUnique__1_", }, + ["(10-20)% of damage taken recouped as mana"] = { "PercentDamageGoesToManaUniqueHelmetStrInt3", }, + ["(10-20)% of lightning damage taken as fire damage"] = { "LightningHitAndDoTDamageTakenAsFireUnique__1", }, + ["(10-20)% of physical damage converted to chaos damage"] = { "PhysicalDamageConvertToChaosUniqueClaw2", }, + ["(10-20)% of physical damage taken as fire damage"] = { "PhysicalHitAndDoTDamageTakenAsFireUnique__1", }, + ["(10-20)% reduced charges per use"] = { "FlaskChargesUsedUnique__11", "LocalFlaskChargesUsedUnique__2", }, + ["(10-20)% reduced enemy stun threshold"] = { "StunThresholdReductionUniqueOneHandMace6", }, + ["(10-20)% reduced mana cost of skills"] = { "ManaCostReductionUnique__2_", }, + ["(10-20)% reduced rarity of items found"] = { "ItemFoundRarityDecreaseUniqueRing10", }, + ["(10-20)% reduced skeleton duration"] = { "SkeletonDurationUniqueJewel1_", }, + ["(10-20)% reduced skill effect duration"] = { "ReducedSkillEffectDurationUniqueAmulet20", }, + ["(10-20)% reduced total recovery per second from life leech"] = { "ReducedLifeLeechRateUniqueJewel19", }, + ["(10-25)% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteUnique__1", }, + ["(10-25)% increased attack speed"] = { "IncreasedAttackSpeedUniqueAmulet20", }, + ["(10-25)% increased cast speed"] = { "IncreasedCastSpeedUniqueAmulet20", }, + ["(10-25)% increased ignite duration on enemies"] = { "IgniteDurationUnique__4", }, + ["(10-25)% increased movement speed"] = { "MovementVelocityUniqueBootsInt1", }, + ["(10-25)% increased poison duration"] = { "PoisonDurationUnique__3", }, + ["(10-25)% reduced rage cost of skills"] = { "ReducedRageCostUnique__1", }, + ["(10-30)% increased damage"] = { "AllDamageUniqueRing6", }, + ["(10-30)% increased elusive effect"] = { "ElusiveEffectUnique__1", }, + ["(10-30)% increased light radius"] = { "LightRadiusUnique__2", }, + ["(10-30)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueRing6", }, + ["(100-120)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__13", "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3", }, + ["(100-120)% increased critical strike chance with traps"] = { "TrapCritChanceUnique__1", }, + ["(100-120)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__11", "LocalIncreasedEnergyShieldUniqueBodyInt7", "LocalIncreasedEnergyShieldUniqueGlovesInt5", }, + ["(100-120)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__6_", }, + ["(100-120)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBodyStrDex5", "LocalIncreasedEvasionRatingPercentUniqueShieldDex5", "LocalIncreasedEvasionRatingPercentUnique__10", "LocalIncreasedEvasionRatingPercentUnique__3", }, + ["(100-120)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueClaw6", "LocalIncreasedPhysicalDamagePercentUnique__10", }, + ["(100-125)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe2", "LocalIncreasedPhysicalDamagePercentUnique__2", }, + ["(100-130)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__20_", }, + ["(100-130)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueGlovesDexInt6", }, + ["(100-130)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__7", }, + ["(100-140)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__1", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__32", }, + ["(100-140)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__17_", }, + ["(100-140)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUnique__8_", }, + ["(100-140)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3", }, + ["(100-140)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueBow6", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe1", "LocalIncreasedPhysicalDamagePercentUnique__13", "LocalIncreasedPhysicalDamagePercentUnique__4", "LocalIncreasedPhysicalDamagePercentUnique__48", }, + ["(100-140)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUnique__1", }, + ["(100-140)% increased spell damage"] = { "SpellDamageUnique__8_", }, + ["(100-150)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueHelmetStrDex6", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__24", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__28", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__30", }, + ["(100-150)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt1", "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt1", }, + ["(100-150)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueShieldStrDex4", "LocalIncreasedArmourAndEvasionUnique__12", "LocalIncreasedArmourAndEvasionUnique__14", "LocalIncreasedArmourAndEvasionUnique__19_", "LocalIncreasedArmourAndEvasionUnique__22", "LocalIncreasedArmourAndEvasionUnique__24", "LocalIncreasedArmourAndEvasionUnique__26", "LocalIncreasedArmourAndEvasionUnique__6", "LocalIncreasedArmourAndEvasionUnique__7", }, + ["(100-150)% increased critical strike chance against bleeding enemies"] = { "CriticalStrikeChanceAgainstBleedingEnemiesUnique__1", }, + ["(100-150)% increased critical strike chance against enemies on consecrated ground during effect"] = { "FlaskConsecratedGroundEffectCriticalStrikeUnique__1", }, + ["(100-150)% increased critical strike chance with melee weapons"] = { "TinctureCriticalStrikeChanceImplicit1", }, + ["(100-150)% increased damage with poison"] = { "PoisonDamageUnique__2", }, + ["(100-150)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__28__", "LocalIncreasedEnergyShieldUniqueBodyInt1", }, + ["(100-150)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__18", "LocalIncreasedEvasionAndEnergyShieldUnique__21_", "LocalIncreasedEvasionAndEnergyShieldUnique__24", "LocalIncreasedEvasionAndEnergyShieldUnique__26", "LocalIncreasedEvasionAndEnergyShieldUnique__27", "LocalIncreasedEvasionAndEnergyShieldUnique__36", }, + ["(100-150)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBodyDex2", "LocalIncreasedEvasionRatingPercentUniqueBootsDex3", "LocalIncreasedEvasionRatingPercentUniqueBootsStrDex5", "LocalIncreasedEvasionRatingPercentUnique__20", "LocalIncreasedEvasionRatingPercentUnique__21", }, + ["(100-150)% increased rarity of items dropped by slain magic enemies"] = { "MagicMonsterItemRarityUnique__1", }, + ["(100-150)% increased spell damage"] = { "SpellDamageUnique__17", }, + ["(100-160)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__33", }, + ["(100-160)% increased evasion rating if you've cast dash recently"] = { "EvasionRatingIfUsedDashRecentlyUnique__1", }, + ["(100-200)% increased cold damage while your off hand is empty"] = { "IncreasedColdDamageWhileOffhandIsEmpty_", }, + ["(100-200)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__24", }, + ["(100-200)% increased endurance, frenzy and power charge duration"] = { "ChargeDurationUniqueBodyDexInt3", }, + ["(100-200)% increased spell damage"] = { "SpellDamageOnWeaponUniqueTwoHandAxe9", }, + ["(100-200)% increased stun and block recovery"] = { "StunRecoveryUnique__8", }, + ["(100-777)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__38", }, + ["(105-145) to (160-200) added cold damage with bow attacks"] = { "AddedColdDamageUniqueBodyDex1", }, + ["(11-15)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueSceptre7", }, + ["(11-15)% increased physical damage"] = { "VillageLocalPhysicalDamagePercent1", }, + ["(11-15)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand3", }, + ["(110-130)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__1", }, + ["(110-150)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__13", }, + ["(110-170)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueWand9x", }, + ["(12-15)% chance to block spell damage"] = { "SpellBlockPercentageUniqueAmulet1", "SpellBlockPercentageUniqueQuiver4", }, + ["(12-15)% chance to gain a power charge on killing an enemy affected by fewer than 5 poisons"] = { "GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1", }, + ["(12-15)% increased maximum life"] = { "MaximumLifeUnique__22", }, + ["(12-16)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueStaff7", "LocalIncreasedAttackSpeedUniqueTwoHandAxe7", }, + ["(12-16)% increased attributes"] = { "TalismanIncreasedAllAttributes", }, + ["(12-16)% increased maximum life"] = { "MaximumLifeUniqueGlovesStrInt3", }, + ["(12-16)% increased spell damage"] = { "SpellDamageImplicitGloves1", }, + ["(12-16)% increased spell damage per power charge"] = { "IncreasedSpellDamagePerPowerChargeUnique__1", }, + ["(12-18) to (231-347) added lightning damage with wand attacks"] = { "AddedLightningDamageUnique__4", }, + ["(12-18)% chance to block spell damage"] = { "SpellBlockUniqueShieldInt1", }, + ["(12-18)% increased cast speed"] = { "IncreasedCastSpeedUnique__28", }, + ["(12-20)% increased cast speed"] = { "IncreasedCastSpeedUnique__10", }, + ["(12-20)% increased mana reservation efficiency of skills"] = { "ManaReservationEfficiencyUnique__2", "ReducedManaReservationCostUnique__2", }, + ["(12-20)% increased rarity of items found"] = { "ItemFoundRarityIncreaseImplicitAmulet1", }, + ["(12-24)% increased global physical damage"] = { "IncreasedPhysicalDamagePercentImplicitBelt1", }, + ["(120-140)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt4", }, + ["(120-140)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex4", }, + ["(120-140)% increased critical strike chance against blinded enemies"] = { "CriticalChanceAgainstBlindedEnemiesUnique__1", }, + ["(120-140)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__17", }, + ["(120-140)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__1", }, + ["(120-140)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe8", }, + ["(120-150)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__23", "LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr3", }, + ["(120-150)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt2", }, + ["(120-150)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUnique__11", "LocalIncreasedArmourAndEvasionUnique__15_", "LocalIncreasedArmourAndEvasionUnique__5_", }, + ["(120-150)% increased elemental damage if you've dealt a critical strike recently"] = { "ElementalDamageIfCritRecently", }, + ["(120-150)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__12", "LocalIncreasedEnergyShieldUniqueHelmetInt7", }, + ["(120-150)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt1", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt4", "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt3", "LocalIncreasedEvasionAndEnergyShieldUnique__34", }, + ["(120-150)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__14", "LocalIncreasedEvasionRatingPercentUnique__17", }, + ["(120-150)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueRapier2", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword1", }, + ["(120-150)% increased spell damage if you've dealt a critical strike recently"] = { "SpellDamageIfYouHaveCritRecentlyUnique__2", }, + ["(120-160)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__24", }, + ["(120-160)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUnique__1", }, + ["(120-160)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueShieldInt1", "LocalIncreasedEnergyShieldPercent___3", "LocalIncreasedEnergyShieldUniqueBodyInt4", }, + ["(120-160)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__39", }, + ["(120-160)% increased global critical strike chance"] = { "CriticalStrikeChanceUnique__4_", }, + ["(120-160)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique13", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe5", "LocalIncreasedPhysicalDamagePercentUnique__44", "LocalIncreasedPhysicalDamagePercentUnique__56", "LocalIncreasedPhysicalDamagePercentUnique__57", }, + ["(120-160)% increased spell damage"] = { "SpellDamageUniqueStaff6", }, + ["(120-170)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__13", }, + ["(120-180)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique7", }, + ["(120-180)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe10", }, + ["(120-200)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__36UNUSED", }, + ["(120-200)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__31", }, + ["(120-240)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__38", }, + ["(125-150)% increased charges per use"] = { "FlaskChargesUsedUnique__5", "FlaskChargesUsedUnique___2", }, + ["(125-150)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueBodyInt8", }, + ["(125-150)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUniqueGlovesInt6", }, + ["(13-17)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand4", }, + ["(13-18)% increased cast speed"] = { "VillageIncreasedCastSpeedTwoHand", }, + ["(130-150)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__11", }, + ["(130-150)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__14", }, + ["(130-150)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__7", }, + ["(130-150)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__9", }, + ["(130-150)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe5", "LocalIncreasedPhysicalDamagePercentUnique__37__", }, + ["(130-160)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__55", "LocalIncreasedPhysicalDamagePercentUnique__7", }, + ["(130-170)% increased energy shield"] = { "LocalIncreasedEnergyShieldUniqueHelmetInt10", }, + ["(14-18)% increased attack speed"] = { "LocalIncreasedAttackSpeedUnique__34", "LocalIncreasedAttackSpeedUnique__45", }, + ["(14-18)% increased cast speed"] = { "IncreasedCastSpeedUnique__2", }, + ["(14-18)% increased damage over time"] = { "DegenerationDamageImplicit1", }, + ["(14-18)% increased intelligence"] = { "PercentageIntelligenceUniqueStaff12_", }, + ["(14-18)% increased projectile attack damage"] = { "ProjectileAttackDamageImplicitGloves1", }, + ["(14-18)% increased trap throwing speed"] = { "TrapThrowSpeedUniqueBootsDex6", }, + ["(14-20)% increased attack speed"] = { "LocalIncreasedAttackSpeedUnique__6", }, + ["(14-20)% increased damage over time"] = { "DegenerationDamageEssence_1", }, + ["(14-20)% increased totem life"] = { "TotemLifeUnique__1", }, + ["(14-20)% increased totem placement speed"] = { "SummonTotemCastSpeedUnique__1", }, + ["(140-152)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__33", }, + ["(140-160)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt3", }, + ["(140-160)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__33", }, + ["(140-160)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__27", "LocalIncreasedPhysicalDamagePercentUnique__5", }, + ["(140-170)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__4", }, + ["(140-180)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt6", "LocalIncreasedArmourAndEnergyShieldUnique__10_", "LocalIncreasedArmourAndEnergyShieldUnique__9_", }, + ["(140-180)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueBootsInt5", "LocalIncreasedEnergyShieldPercentUnique__31____", }, + ["(140-180)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__22", "LocalIncreasedEvasionAndEnergyShieldUnique__5", }, + ["(140-180)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueClaw1", "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe1", "LocalIncreasedPhysicalDamagePercentUnique__41___", "LocalIncreasedPhysicalDamageUniqueOneHandMace4", }, + ["(140-190)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__3", }, + ["(140-200)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace1", }, + ["(140-200)% increased stun duration on enemies"] = { "StunDurationUniqueQuiver8", }, + ["(140-220)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__12", }, + ["(140-220)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBodyDex1", }, + ["(15-18)% increased cast speed"] = { "IncreasedCastSpeedUniqueSceptre6", }, + ["(15-18)% increased strength"] = { "PercentageStrengthUniqueBootsStrInt2", }, + ["(15-19)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand5", }, + ["(15-20)% chance to block spell damage"] = { "SpellBlockPercentageUniqueBootsInt5", }, + ["(15-20)% chance to maim on hit"] = { "LocalMaimOnHitChanceUnique__1", }, + ["(15-20)% chance to shock"] = { "ChanceToShockUniqueOneHandSword7", }, + ["(15-20)% increased area of effect"] = { "AreaOfEffectUnique__8", }, + ["(15-20)% increased armour"] = { "GlobalPhysicalDamageReductionRatingPercentUnique__1", "IncreasedPhysicalDamageReductionRatingPercentUniqueJewel50", }, + ["(15-20)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueSceptre9", "LocalIncreasedAttackSpeedUnique__25", "LocalIncreasedAttackSpeedUnique__33", "LocalIncreasedAttackSpeedUnique__39", }, + ["(15-20)% increased cast speed"] = { "IncreasedCastSpeedUniqueAmulet1", "IncreasedCastSpeedUniqueClaw7", "IncreasedCastSpeedUnique__11__", "IncreasedCastSpeedUnique__14", "IncreasedCastSpeedUnique__16", }, + ["(15-20)% increased chaos damage"] = { "IncreasedChaosDamageUniqueCorruptedJewel2", }, + ["(15-20)% increased cold damage per 1% cold resistance above 75%"] = { "ColdDamagePerResistanceAbove75Unique__1", }, + ["(15-20)% increased cold damage per 1% missing cold resistance, up to a maximum of 300%"] = { "ColdDamagePerMissingColdResistanceUnique__1", }, + ["(15-20)% increased cold damage per frenzy charge"] = { "IncreasedColdDamagePerFrenzyChargeUnique__1", "IncreasedColdDamagePerFrenzyChargeUnique__2", }, + ["(15-20)% increased cooldown recovery rate"] = { "GlobalCooldownRecoveryUnique__1", }, + ["(15-20)% increased damage with hits against chilled enemies"] = { "IncreasedDamageToChilledEnemies1", }, + ["(15-20)% increased damage with poison per power charge"] = { "PoisonDamagePerPowerChargeUnique__1", }, + ["(15-20)% increased effect of cold ailments"] = { "ChillEffectUnique__1", }, + ["(15-20)% increased effect of non-damaging ailments"] = { "IncreasedAilmentEffectOnEnemiesUnique__1", }, + ["(15-20)% increased effect of your curses"] = { "CurseEffectivenessUnique__2_", }, + ["(15-20)% increased evasion rating"] = { "GlobalEvasionRatingPercentUnique__1", }, + ["(15-20)% increased fire damage per 1% missing fire resistance, up to a maximum of 300%"] = { "FireDamagePerMissingFireResistanceUnique__1", }, + ["(15-20)% increased global defences"] = { "AllDefencesUnique__4", }, + ["(15-20)% increased light radius"] = { "LightRadiusUnique__1", }, + ["(15-20)% increased lightning damage"] = { "LightningDamagePercentUnique__2", }, + ["(15-20)% increased lightning damage per 1% lightning resistance above 75%"] = { "LightningDamagePerResistanceAbove75Unique__1", }, + ["(15-20)% increased lightning damage per frenzy charge"] = { "IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6", }, + ["(15-20)% increased maximum energy shield"] = { "GlobalEnergyShieldPercentUnique__1", }, + ["(15-20)% increased maximum mana"] = { "MaximumManaUniqueJewel54", "MaximumManaUnique__7", }, + ["(15-20)% increased poison duration"] = { "PoisonDurationUnique__1_", }, + ["(15-20)% increased projectile damage"] = { "IncreasedProjectileDamageUniqueQuiver4", }, + ["(15-20)% increased spell damage"] = { "SpellDamageImplicitShield3", }, + ["(15-20)% reduced enemy stun threshold"] = { "StunThresholdReductionUniqueStaff11", }, + ["(15-25)% chance to avoid elemental ailments"] = { "AvoidElementalAilmentsUnique__3", }, + ["(15-25)% chance to inflict cold exposure on hit"] = { "VillageColdExposureOnHit", }, + ["(15-25)% chance to inflict fire exposure on hit"] = { "VillageFireExposureOnHit", }, + ["(15-25)% chance to inflict lightning exposure on hit"] = { "VillageLightningExposureOnHit", }, + ["(15-25)% chance to refresh ignite duration on melee weapon hit"] = { "TinctureRefreshIgniteDurationUnique__1", }, + ["(15-25)% increased area of effect"] = { "AreaOfEffectUniqueOneHandMace7", "UniqueSpecialCorruptionAreaOfEffect_", }, + ["(15-25)% increased attack and cast speed while at maximum fortification"] = { "AttackAndCastSpeedFortifyUnique__1", }, + ["(15-25)% increased attack speed"] = { "LocalIncreasedAccuracyUnique__2", }, + ["(15-25)% increased cast speed"] = { "IncreasedCastSpeedUnique__22", }, + ["(15-25)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique14", "LocalCriticalStrikeChanceUnique__12", "LocalCriticalStrikeChanceUnique__5", }, + ["(15-25)% increased damage while leeching"] = { "IncreasedDamageWhileLeechingUnique__2__", }, + ["(15-25)% increased damage with hits and ailments against cursed enemies"] = { "HitAndAilmentDamageCursedEnemiesUnique__1", }, + ["(15-25)% increased effect of shock"] = { "ShockEffectUnique__1", }, + ["(15-25)% increased elemental damage"] = { "ElementalDamagePercentImplicitAtlasRing_", }, + ["(15-25)% increased evasion rating"] = { "IncreasedEvasionRatingPercentUnique__2", }, + ["(15-25)% increased fire damage"] = { "FireDamagePercentUniqueRing24", }, + ["(15-25)% increased flask charges gained"] = { "BeltIncreasedFlaskChargesGainedUnique__1_", }, + ["(15-25)% increased global critical strike chance"] = { "CriticalStrikeChanceUnique__5__", }, + ["(15-25)% increased global defences"] = { "TalismanGlobalDefensesPercent", }, + ["(15-25)% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueBelt13", "IncreasedPhysicalDamagePercentUniqueShieldDexInt1", }, + ["(15-25)% increased life regeneration rate"] = { "LifeRegenerationUnique__6", }, + ["(15-25)% increased life reservation efficiency of skills"] = { "LIfeReservationEfficiencyUnique__1", }, + ["(15-25)% increased light radius"] = { "LightRadiusUnique__5", "LightRadiusUnique__7_", }, + ["(15-25)% increased lightning damage"] = { "LightningDamagePercentUniqueRing34", }, + ["(15-25)% increased mana regeneration rate"] = { "ManaRegenerationUnique__1", }, + ["(15-25)% increased maximum energy shield"] = { "TalismanIncreasedEnergyShield", }, + ["(15-25)% increased maximum life"] = { "MaximumLifeUnique__5", }, + ["(15-25)% increased movement speed"] = { "MovementVelocityUnique__57", }, + ["(15-25)% increased poison duration"] = { "VillagePoisonDuration", }, + ["(15-25)% increased poison duration if you have at least 150 intelligence"] = { "PoisonDurationWithOver150IntelligenceUnique__1", }, + ["(15-25)% increased quantity of items dropped by slain maimed enemies"] = { "IIQFromMaimedEnemiesUnique_1", }, + ["(15-25)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUnique__5", "ItemFoundRarityIncreaseUnique__6", }, + ["(15-25)% increased skill effect duration"] = { "UniqueSpecialCorruptionSkillEffectDuration", }, + ["(15-25)% increased stun and block recovery"] = { "StunRecoveryImplicitBelt1", }, + ["(15-25)% increased trap and mine throwing speed"] = { "TrapAndMineThrowSpeedUnique_1", }, + ["(15-25)% increased trap damage"] = { "TrapDamageUnique___1", }, + ["(15-25)% reduced cast speed"] = { "IncreasedCastSpeedUniqueGlovesInt2", }, + ["(15-25)% reduced enemy stun threshold with this weapon"] = { "StunThresholdReductionUniqueOneHandMace5", }, + ["(15-25)% reduced mana burn rate"] = { "TinctureToxicityRateUnique__1", }, + ["(15-29)% increased spell damage"] = { "VillageWeaponSpellDamageTwoHand1", }, + ["(15-30)% chance to impale enemies on hit with attacks"] = { "AttackImpaleChanceUnique__3", }, + ["(15-30)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__21", }, + ["(15-30)% increased global accuracy rating"] = { "AccuracyPercentUniqueBow5", }, + ["(15-30)% increased life recovery from flasks"] = { "FlaskLifeRecoveryUnique__1", }, + ["(15-30)% increased mana recovery from flasks"] = { "FlaskManaRecoveryUnique__1", }, + ["(15-30)% increased spell damage"] = { "SpellDamageUniqueHelmetDexInt1", }, + ["(15-30)% of elemental damage from hits taken as physical damage"] = { "ElementalDamageTakenAsPhysicalUnique__2", }, + ["(15-30)% reduced duration"] = { "FlaskConsecratedGroundDurationUnique__1", }, + ["(15-40)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueOneHandMace4", }, + ["(15-50)% increased elemental damage"] = { "ElementalDamagePercentUnique__1", }, + ["(150-170)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt6", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt7", }, + ["(150-170)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__28__", }, + ["(150-180)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__18", }, + ["(150-180)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergySheildUniqueGlovesStrInt2", }, + ["(150-180)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__10", "LocalIncreasedEnergyShieldPercentUnique__13", "LocalIncreasedEnergyShieldPercentUnique__16", }, + ["(150-180)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueGlovesDexInt5", }, + ["(150-180)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__46", }, + ["(150-190)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__11", }, + ["(150-200)% increased amount recovered"] = { "FlaskIncreasedRecoveryAmountUnique__2", }, + ["(150-200)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBootsStr3", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__17", "LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrDex1", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr2", }, + ["(150-200)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt_1", "LocalIncreasedArmourAndEnergyShieldUnique__13_", "LocalIncreasedArmourAndEnergyShieldUnique__15", "LocalIncreasedArmourAndEnergyShieldUnique__20", "LocalIncreasedArmourAndEnergyShieldUnique__21", "LocalIncreasedArmourAndEnergyShieldUnique__25", }, + ["(150-200)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex2", "LocalIncreasedArmourAndEvasionUnique__17_", }, + ["(150-200)% increased critical strike chance with arrows that fork"] = { "CriticalStrikeChanceForForkingArrowsUnique__1", }, + ["(150-200)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueBody_1", "LocalIncreasedEnergyShieldPercentUnique__5", }, + ["(150-200)% increased energy shield recharge rate during any flask effect"] = { "ESRechargeRateDuringFlaskEffect__1", }, + ["(150-200)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt6", "LocalIncreasedEvasionAndEnergyShieldUnique__10", "LocalIncreasedEvasionAndEnergyShieldUnique__35", }, + ["(150-200)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__2", "LocalIncreasedEvasionRatingPercentUnique__4", }, + ["(150-200)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueSceptre2", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace8", "LocalIncreasedPhysicalDamageUniqueOneHandMace5", }, + ["(150-200)% increased skeleton duration"] = { "SkeletonDurationUniqueTwoHandSword4", }, + ["(150-200)% increased spell damage"] = { "SpellDamageOnWeaponUniqueDagger1", "SpellDamageUnique__15", }, + ["(150-230)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__35", }, + ["(150-250)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__25", }, + ["(150-250)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__26", }, + ["(150-250)% increased bonuses gained from equipped quiver"] = { "QuiverModifierEffectUnique__1", }, + ["(150-250)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__50", }, + ["(150-300)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUnique__13", }, + ["(16-20)% increased attack speed"] = { "LocalIncreasedAttackSpeedUnique__37___", }, + ["(16-20)% increased golem damage for each type of golem you have summoned"] = { "IncreasedGolemDamagePerGolemUnique__1", }, + ["(16-20)% increased maximum mana"] = { "MaximumManaUnique__8", }, + ["(16-20)% increased melee damage"] = { "MeleeDamageImplicitGloves1", }, + ["(16-20)% increased physical damage"] = { "VillageLocalPhysicalDamagePercent2", }, + ["(16-22)% chance to block spell damage"] = { "SpellBlockPercentageUnique__3_", }, + ["(16-22)% chance to ignite"] = { "ChanceToIgniteUnique__1", }, + ["(16-22)% increased attack speed"] = { "LocalIncreasedAttackSpeedUnique__15", }, + ["(16-24)% increased maximum mana"] = { "MaximumManaUniqueAmulet10", }, + ["(16-24)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueRingDemigods1", }, + ["(16-24)% increased reservation efficiency of skills while affected by a unique abyss jewel"] = { "ReservationEfficiencyWithUniqueAbyssJewelUnique__1", }, + ["(160-180)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt3", }, + ["(160-180)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__11_", }, + ["(160-180)% increased physical damage"] = { "LocalIncreasedPhysicalDamageUniqueClaw8", }, + ["(160-190)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__21", }, + ["(160-200)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueBodyStrDex4", "LocalIncreasedArmourAndEvasionUnique__28", }, + ["(160-200)% increased critical strike chance while you have avatar of fire"] = { "IncreasedCriticalStrikeChanceWithAvatarOfFireUnique__1", }, + ["(160-200)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__14", }, + ["(160-200)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBootsDex6", }, + ["(160-200)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace7", }, + ["(160-220)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__32_", }, + ["(160-220)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__1", }, + ["(165-195)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__38", }, + ["(165-205)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__5", }, + ["(17-21)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand6", }, + ["(17-23)% increased chaos damage"] = { "IncreasedChaosDamageImplicit1_", }, + ["(17-25)% increased attack speed"] = { "LocalIncreasedAttackSpeedUnique__14", }, + ["(17-31)% increased minion duration"] = { "MinionDurationUnique__1", }, + ["(170-190)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__17_", "LocalIncreasedPhysicalDamagePercentUnique__9", }, + ["(170-200)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUnique__9", }, + ["(170-200)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__25", }, + ["(170-230)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__7", }, + ["(170-250)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueShieldStrDex5", }, + ["(170-250)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__18", }, + ["(175-200)% increased charges per use"] = { "FlaskChargesUsedUnique__8", }, + ["(175-200)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__39", }, + ["(18-22)% increased elemental resistances"] = { "IncreasedElementalResistancesUnique__1", }, + ["(18-22)% increased global defences"] = { "AllDefencesUniqueHelmetStrInt4_", }, + ["(18-22)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand7", }, + ["(18-24) mana gained when you block"] = { "GainManaOnBlockUniqueAmulet16", }, + ["(18-25)% increased cold damage"] = { "ColdDamagePercentUnique__4", }, + ["(18-25)% increased fire damage"] = { "FireDamagePercentUnique__3", }, + ["(18-28)% increased trap damage"] = { "TrapDamageUniqueShieldDexInt1", }, + ["(180-200)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueShieldDex3", }, + ["(180-200)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueBow1", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe4", "LocalIncreasedPhysicalDamagePercentUnique__20", "LocalIncreasedPhysicalDamagePercentUnique__29", }, + ["(180-210)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__34___", "LocalIncreasedPhysicalDamagePercentUnique__35", }, + ["(180-220)% increased armour"] = { "LocalIncreasedArmourPercentAndStunRecoveryUniqueShieldStr1", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__14_", "LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr3", }, + ["(180-220)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2", }, + ["(180-220)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionRatingUniqueBodyStrDex3", }, + ["(180-220)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__19", "LocalIncreasedEnergyShieldPercentUnique__21", }, + ["(180-220)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__12", }, + ["(180-220)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword3", "LocalIncreasedPhysicalDamagePercentUnique__31", }, + ["(180-230)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__24", }, + ["(180-240)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__54", }, + ["(180-250)% increased energy shield"] = { "LocalIncreasedEnergyShieldUniqueGlovesInt6", }, + ["(185-215)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__30", }, + ["(19-31)% increased chaos damage"] = { "TalismanIncreasedChaosDamage", }, + ["(2-2.5)% of life regenerated per second if you've dealt a critical strike in the past 8 seconds"] = { "LifeRegenerationIfCrit8SecondsUnique__1", }, + ["(2-3)% increased movement speed per 5 rage"] = { "MovementSpeedPer5RageUnique_1", }, + ["(2-3)% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUnique__8", "LifeLeechPermyriadUnique__9", "LifeLeechUniqueBodyStrDex3", }, + ["(2-4)% of physical attack damage leeched as life"] = { "LifeLeechUniqueHelmetInt7", }, + ["(20-100)% increased charges per use"] = { "FlaskChargesUsedUnique___12", }, + ["(20-22)% increased stun and block recovery"] = { "StunRecoveryUniqueHelmetStrInt4", }, + ["(20-24)% chance to block attack damage"] = { "BlockPercentUniqueQuiver4", }, + ["(20-24)% increased elemental damage with attack skills"] = { "WeaponElementalDamageImplicitBow1", }, + ["(20-24)% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueBowImplicit1", }, + ["(20-24)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand8", }, + ["(20-25)% chance to avoid elemental ailments"] = { "AvoidElementalAilmentsUnique__2", }, + ["(20-25)% chance to create consecrated ground when you shatter an enemy"] = { "VillageSpreadConsecratedGroundOnShatter", }, + ["(20-25)% chance to freeze"] = { "VillageChanceToFreezeTwoHand", }, + ["(20-25)% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteUnique__2", }, + ["(20-25)% chance to ignite"] = { "VillageChanceToIgniteTwoHand", }, + ["(20-25)% chance to inflict withered for 2 seconds on hit"] = { "WitherOnHitChanceUnique__1", }, + ["(20-25)% chance to lose a frenzy charge when you use a travel skill"] = { "LoseFrenzyChargeOnTravelSkillUnique__1", }, + ["(20-25)% chance to lose a power charge when you gain elusive"] = { "LosePowerChargeOnElusiveGainUnique__1_", }, + ["(20-25)% chance to lose an endurance charge when you gain fortification"] = { "LoseEnduranceChargeOnFortifyGainUnique__1", }, + ["(20-25)% chance to shock"] = { "VillageChanceToShockTwoHand", }, + ["(20-25)% chance when you kill a magic monster to gain its modifiers for 60 seconds"] = { "VillageGainMagicMonsterModsOnKill", }, + ["(20-25)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueOneHandSword11", "LocalIncreasedAttackSpeedUniqueOneHandSword9", "LocalIncreasedAttackSpeedUnique__21", }, + ["(20-25)% increased attack speed if you haven't gained a frenzy charge recently"] = { "AttackSpeedFrenzyChargeNotGainedUnique__1", }, + ["(20-25)% increased cold damage"] = { "ColdDamagePercentUnique__6", }, + ["(20-25)% increased cooldown recovery rate if you've cast temporal chains in the past 10 seconds"] = { "TemporalChainsCooldownRecoveryUnique__1", }, + ["(20-25)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__11", }, + ["(20-25)% increased damage"] = { "AllDamageUnique__2", }, + ["(20-25)% increased damage for each magic item equipped"] = { "IncreasedDamagePerMagicItemJewel25", }, + ["(20-25)% increased elemental damage with attack skills"] = { "WeaponElementalDamageUnique__4", }, + ["(20-25)% increased elemental damage with attack skills per power charge"] = { "IncreasedWeaponElementalDamagePercentPerPowerChargeUnique__1", }, + ["(20-25)% increased life regeneration rate"] = { "LifeRecoveryRateUnique__1", }, + ["(20-25)% increased melee damage"] = { "MeleeDamageUnique__1", }, + ["(20-25)% increased poison duration"] = { "PoisonDurationUnique__2", }, + ["(20-25)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueHelmetDex6", }, + ["(20-25)% increased skill effect duration"] = { "TalismanIncreasedSkillEffectDuration", }, + ["(20-25)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUniqueHelmetInt6", "VillageSpellCriticalStrikeChance", }, + ["(20-25)% increased spell damage"] = { "SpellDamageUniqueBodyInt7", "SpellDamageUniqueRing35", "SpellDamageUnique__12", "SpellDamageUnique__13", }, + ["(20-25)% increased spell damage for each 200 total mana you have spent recently, up to 2000%"] = { "SpellDamagePer200ManaSpentRecentlyUnique__1__", }, + ["(20-25)% increased warcry speed"] = { "WarcrySpeedUnique__1", }, + ["(20-25)% of cold damage converted to chaos damage"] = { "VillageConvertColdToChaos", }, + ["(20-25)% reduced enemy stun threshold"] = { "StunThresholdReductionUniqueQuiver8", }, + ["(20-26)% increased attack speed"] = { "LocalIncreasedAttackSpeedUnique__32", }, + ["(20-28)% increased spell damage"] = { "SpellDamageUniqueWand4", }, + ["(20-29)% increased spell damage"] = { "VillageWeaponSpellDamage2", }, + ["(20-30)% chance on melee hit for the strongest impale on target to last for 1 additional hit"] = { "ChanceMeleeHitsDontRemoveSTRONGESTImpaleUnique_1", }, + ["(20-30)% chance to block spell damage"] = { "SpellBlockPercentageUniqueShieldStrInt1", }, + ["(20-30)% chance to curse enemies with elemental weakness on hit"] = { "VillageCurseOnHitElementalWeakness", }, + ["(20-30)% chance to curse you with punishment on kill"] = { "PunishmentSelfCurseOnKillUniqueCorruptedJewel13", }, + ["(20-30)% chance to freeze during any flask effect"] = { "FreezeChanceWhileUsingFlaskUniqueBelt9b", }, + ["(20-30)% chance to gain a frenzy charge on critical strike at close range"] = { "FrenzyChargeOnCritCloseRangeUnique__1", }, + ["(20-30)% chance to gain a frenzy charge on hitting an enemy with no evasion rating"] = { "FrenzyChargeNoEvasionRatingUnique__1", }, + ["(20-30)% chance to gain a frenzy charge on kill"] = { "FrenzyChargeOnKillChanceUniqueBootsDex4", }, + ["(20-30)% chance to gain an additional vaal soul on kill"] = { "AdditionalVaalSoulOnKillUniqueCorruptedJewel4_", }, + ["(20-30)% chance to gain an endurance charge on hitting an enemy with no armour"] = { "EnduranceChargeNoArmourUnique__1_", }, + ["(20-30)% chance to ignite during any flask effect"] = { "IgniteChanceWhileUsingFlaskUniqueBelt9a", }, + ["(20-30)% chance to inflict a grasping vine on melee weapon hit"] = { "TinctureGraspingVineOnWeaponHitUnique__1", }, + ["(20-30)% chance to inflict corrosion on hit with attacks"] = { "AttackCorrosionOnHitChanceUnique__1", }, + ["(20-30)% chance to sap enemies in chilling areas"] = { "ChanceToSapVsEnemiesInChillingAreasUnique__1", }, + ["(20-30)% chance to shock during any flask effect"] = { "ShockChanceWhileUsingFlaskUniqueBelt9c", }, + ["(20-30)% increased area of effect for attacks"] = { "IncreasedAttackAreaOfEffectUnique__4", }, + ["(20-30)% increased area of effect of aura skills"] = { "AuraIncreasedIncreasedAreaOfEffectUnique_2", "AuraIncreasedIncreasedAreaOfEffectUnique_3", "AuraIncreasedIncreasedAreaOfEffectUnique_4", "AuraIncreasedIncreasedAreaOfEffectUnique_5", "AuraIncreasedIncreasedAreaOfEffectUnique_6", }, + ["(20-30)% increased area of effect while in sand stance"] = { "AreaOfEffectSandStanceUnique__1", }, + ["(20-30)% increased armour"] = { "GlobalPhysicalDamageReductionRatingPercentUnique__2", }, + ["(20-30)% increased attack damage"] = { "TalismanAttackDamage", }, + ["(20-30)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueClaw1", "LocalIncreasedAttackSpeedUnique__30", "LocalIncreasedAttackSpeedUnique__44", }, + ["(20-30)% increased attack speed if you haven't cast dash recently"] = { "AttackSpeedIfHaventUsedDashRecentlyUnique__1", }, + ["(20-30)% increased burning damage"] = { "BurnDamageUniqueCorruptedJewel1", "BurnDamageUnique__1", }, + ["(20-30)% increased cast speed"] = { "IncreasedCastSpeedUnique__25", }, + ["(20-30)% increased chaos damage"] = { "IncreasedChaosDamageUniqueShieldDex7", "IncreasedChaosDamageUnique__4_2", }, + ["(20-30)% increased charge recovery"] = { "FlaskChargesAddedIncreasePercentUnique__2", }, + ["(20-30)% increased cold damage"] = { "ColdDamagePercentUniqueBelt9b", "ColdDamagePercentUnique__7", "ColdDamagePercentUnique___11", "TalismanIncreasedColdDamage", }, + ["(20-30)% increased cold damage if you have used a fire skill recently"] = { "IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1", }, + ["(20-30)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueOneHandSword8", "LocalCriticalStrikeChanceUniqueTwoHandAxe_1", "LocalCriticalStrikeChanceUniqueWand6_", "LocalCriticalStrikeChanceUnique__23", "LocalCriticalStrikeChanceUnique__27", "LocalCriticalStrikeChanceUnique__28", }, + ["(20-30)% increased critical strike chance with bows"] = { "CriticalStrikeChanceImplicitQuiver8New", }, + ["(20-30)% increased damage over time"] = { "DegenerationDamageUnique__2", "DegenerationDamageUnique__5", }, + ["(20-30)% increased damage per frenzy charge with hits against enemies on low life"] = { "EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4", }, + ["(20-30)% increased damage while you have no energy shield"] = { "IncreasedDamageOnZeroEnergyShieldUniqueShieldStrInt8", }, + ["(20-30)% increased damage with hits against magic monsters"] = { "DamageOnMagicMonstersUnique__1_", }, + ["(20-30)% increased damage with hits against rare monsters"] = { "DamageOnRareMonstersUniqueBelt7", }, + ["(20-30)% increased effect of non-damaging ailments you inflict during effect"] = { "FlaskNonDamagingAilmentIncreasedEffectUnique__1", }, + ["(20-30)% increased elemental damage"] = { "ElementalDamageUnique__2_", }, + ["(20-30)% increased elemental damage with attack skills"] = { "WeaponElementalDamageImplicitQuiver13New", "WeaponElementalDamageUniqueRing10", "WeaponElementalDamageUnique__6", }, + ["(20-30)% increased fire damage"] = { "FireDamagePercentUniqueBelt9a", "FireDamagePercentUniqueRing36", "FireDamagePercentUniqueWand10", "FireDamagePercentUnique___5", "TalismanIncreasedFireDamage", }, + ["(20-30)% increased fire damage if you have used a cold skill recently"] = { "IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1", }, + ["(20-30)% increased global accuracy rating"] = { "IncreasedAccuracyPercentImplicitQuiver7", "IncreasedAccuracyPercentImplicitQuiver7New", }, + ["(20-30)% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitQuiver13", "CriticalStrikeChanceImplicitRing1", "CriticalStrikeChanceUniqueGlovesDexInt6", }, + ["(20-30)% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueBelt9d", "TalismanIncreasedPhysicalDamage", }, + ["(20-30)% increased light radius"] = { "LightRadiusUniqueBodyStrInt5", }, + ["(20-30)% increased lightning damage"] = { "LightningDamagePercentUniqueBelt9c", "LightningDamagePercentUnique__7", "LightningDamageUniqueHelmetDexInt1", "LightningDamageUniqueWand1", "TalismanIncreasedLightningDamage", }, + ["(20-30)% increased mana recovery from flasks"] = { "BeltFlaskManaRecoveryUnique__1", }, + ["(20-30)% increased mana regeneration rate"] = { "ManaRegenerationImplicitAmulet1", "ManaRegenerationUniqueBootsDex5", "ManaRegenerationUniqueJewel30", "ManaRegenerationUnique__2", "ManaRegenerationUnique__4", }, + ["(20-30)% increased maximum mana"] = { "MaximumManaUnique___2", "TalismanIncreasedMana", }, + ["(20-30)% increased movement speed"] = { "MovementVelocityUnique__28", "MovementVelocityUnique__39_", "MovementVelocityUnique__51", "MovementVelocityUnique__53", }, + ["(20-30)% increased movement speed if you've cast dash recently"] = { "MovementSpeedIfUsedDashRecentlyUnique__1", }, + ["(20-30)% increased projectile speed"] = { "ProjectileSpeedImplicitQuiver4New", "ProjectileSpeedUniqueQuiver4", "ProjectileSpeedUnique__10", "ProjectileSpeedUnique__6", }, + ["(20-30)% increased rarity of fish caught"] = { "FishingRarityUnique__2_", }, + ["(20-30)% increased rarity of items found"] = { "ItemFoundRarityIncreaseImplicitDemigodsBelt1", "ItemFoundRarityIncreaseUniqueBootsDemigods1", "ItemFoundRarityIncreaseUniqueBootsDexInt1", "ItemFoundRarityIncreaseUniqueHelmetWreath1", "ItemFoundRarityIncreaseUniqueStrDexHelmet1", "ItemFoundRarityIncreaseUnique__9", }, + ["(20-30)% increased spell damage"] = { "SpellDamageUniqueSceptre2", "SpellDamageUniqueSceptre5", "SpellDamageUniqueShieldStrInt1", "TalismanSpellDamage", }, + ["(20-30)% increased stun duration on enemies"] = { "StunDurationImplicitBelt1", "StunDurationUniqueQuiver2", "StunDurationUnique__1", "StunDurationUnique__2", }, + ["(20-30)% increased totem life"] = { "TotemLifeUniqueBodyInt7", "TotemLifeUnique__2_", }, + ["(20-30)% increased totem placement speed"] = { "SummonTotemCastSpeedImplicit1", }, + ["(20-30)% more maximum life"] = { "MoreMaximumReservedLifeUnique__1", }, + ["(20-30)% of attack physical damage converted to cold damage"] = { "VillageAttackConvertToCold", }, + ["(20-30)% of attack physical damage converted to fire damage"] = { "VillageAttackConvertToFire", }, + ["(20-30)% of attack physical damage converted to lightning damage"] = { "VillageAttackConvertToLightning", }, + ["(20-30)% of damage is taken from mana before life"] = { "DamageTakenFromManaUniqueHelmet_1", }, + ["(20-30)% of damage taken from stunning hits is recovered as life"] = { "StunningHitsRecoverLifeUnique__1", }, + ["(20-30)% of fire and lightning damage from hits taken as cold damage during effect"] = { "FireLightningTakenSsColdUniquFlask8", }, + ["(20-30)% reduced attack and cast speed"] = { "ReducedAttackAndCastSpeedUniqueGlovesStrInt4", }, + ["(20-30)% reduced attack speed"] = { "LocalIncreasedAttackSpeedUnique__41", "ReducedAttackSpeedUniqueGlovesStrInt4", }, + ["(20-30)% reduced cast speed"] = { "ReducedCastSpeedUniqueGlovesStrInt4_", "ReducedCastSpeedUnique__1_", }, + ["(20-30)% reduced enemy stun threshold with this weapon"] = { "StunThresholdReductionUnique__1___", "StunThresholdReductionUnique__2", }, + ["(20-30)% reduced flask effect duration"] = { "IncreasedFlaskDurationUnique__1", }, + ["(20-30)% reduced mana cost of minion skills"] = { "MinionSkillManaCostUnique__2", }, + ["(20-30)% reduced recovery rate of life and energy shield"] = { "LifeEnergyShieldRecoveryRateUnique__1", }, + ["(20-30)% reduced trap throwing speed"] = { "TrapThrowSpeedUnique__1_", }, + ["(20-35)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueStaff14", "LocalCriticalStrikeChanceUnique__7", }, + ["(20-35)% reduced reservation efficiency of skills"] = { "ReservationEfficiencyUnique__10", "ReservationEfficiencyUnique__6", "ReservationEfficiencyUnique__7", "ReservationEfficiencyUnique__8", "ReservationEfficiencyUnique__9", }, + ["(20-40)% chance to gain a frenzy charge for each enemy you hit with a critical strike"] = { "FrenzyChargePerEnemyCritUnique__1", }, + ["(20-40)% increased area of effect of aura skills"] = { "IncreasedAuraRadiusUniqueBodyDexInt4", }, + ["(20-40)% increased attack damage if you've been hit recently"] = { "AttackDamageIfHitRecentlyUnique", }, + ["(20-40)% increased chaos damage"] = { "IncreasedChaosDamageUnique__5", }, + ["(20-40)% increased charge recovery"] = { "FlaskChargesAddedIncreasePercentUnique__3", }, + ["(20-40)% increased cold damage"] = { "ColdDamagePercentUnique__9", }, + ["(20-40)% increased cooldown recovery rate"] = { "TinctureCooldownRecoveryUnique__1", }, + ["(20-40)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__20", "LocalCriticalStrikeChanceUnique__22", "LocalCriticalStrikeChanceUnique__25", "LocalCriticalStrikeChanceUnique__26", }, + ["(20-40)% increased damage if you have consumed a corpse recently"] = { "DamageIfConsumedCorpseUnique__1__", }, + ["(20-40)% increased effect of non-curse auras from your skills while you have a linked target"] = { "AuraEffectWhileLinkedUnique__1", }, + ["(20-40)% increased effect of non-damaging ailments"] = { "IncreasedAilmentEffectOnEnemiesUnique_2", }, + ["(20-40)% increased endurance charge duration"] = { "ChargeBonusEnduranceChargeDuration", }, + ["(20-40)% increased evasion rating"] = { "LocalIncreasedEvationRatingPercentUniqueBootsDex9", }, + ["(20-40)% increased fish bite sensitivity"] = { "FishBiteSensitivityUnique__1", }, + ["(20-40)% increased frenzy charge duration"] = { "ChargeBonusFrenzyChargeDuration", }, + ["(20-40)% increased mana regeneration rate"] = { "ManaRegenerationImplicitDemigodsBelt1", "ManaRegenerationUniqueBootsInt2", "ManaRegenerationUniqueGlovesStrInt2", "ManaRegenerationUniqueRing26", "ManaRegenerationUniqueRing33", "ManaRegenerationUniqueShieldInt5", "ManaRegenerationUnique__3", "ManaRegenerationUnique__5", }, + ["(20-40)% increased maximum mana"] = { "MaximumManaUnique__9", }, + ["(20-40)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueDagger12", }, + ["(20-40)% increased power charge duration"] = { "ChargeBonusPowerChargeDuration", }, + ["(20-40)% increased projectile damage"] = { "IncreasedProjectileDamageUniqueBootsDexInt4", }, + ["(20-40)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUnique__10", }, + ["(20-40)% increased spell damage"] = { "SpellDamageUniqueWand7", "SpellDamageUnique__11", }, + ["(20-45)% increased spell damage"] = { "SpellDamageUnique__4", }, + ["(20-50)% increased damage if you have shocked an enemy recently"] = { "IncreasedDamageIfShockedRecentlyUnique__1", }, + ["(20-50)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword12", }, + ["(20-60)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt1", }, + ["(20-60)% increased global critical strike chance"] = { "CriticalStrikeChanceUnique__2", }, + ["(200-220)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueGlovesStr3", }, + ["(200-220)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1e", "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1h", }, + ["(200-220)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueBodyStrDexInt1b", }, + ["(200-220)% increased energy shield"] = { "LocalIncreasedEnergyShieldUniqueBodyInt9", }, + ["(200-220)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1d", "LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1f", }, + ["(200-220)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace5", }, + ["(200-230)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__22", }, + ["(200-240)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBodyDex6", }, + ["(200-240)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__23", }, + ["(200-250)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStr6", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__16", "LocalIncreasedPhysicalDamageReductionRatingUnique__2", }, + ["(200-250)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__18_", "LocalIncreasedArmourAndEnergyShieldUnique__8", }, + ["(200-250)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueShieldStrDex1", "LocalIncreasedArmourAndEvasionUnique__20", "LocalIncreasedArmourAndEvasionUnique__4", }, + ["(200-250)% increased critical strike chance for spells if you've killed recently"] = { "SpellCriticalStrikeChanceIfKilledRecentlyUnique__1", }, + ["(200-250)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__15_", "LocalIncreasedEnergyShieldPercentUnique__25_", "LocalIncreasedEnergyShieldPercentUnique__32", "LocalIncreasedEnergyShieldPercentUnique__33", }, + ["(200-250)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__16", "LocalIncreasedEvasionAndEnergyShieldUnique__17", "LocalIncreasedEvasionAndEnergyShieldUnique__23", }, + ["(200-250)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBodyDex5", }, + ["(200-250)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueAmulet17", }, + ["(200-250)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueClaw3", "LocalIncreasedPhysicalDamagePercentUnique__40", "LocalIncreasedPhysicalDamagePercentUnique__43", }, + ["(200-300)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex4", "LocalIncreasedArmourAndEvasionUnique__18", }, + ["(200-300)% increased charges per use"] = { "LocalFlaskChargesUsedUniqueFlask36", }, + ["(200-300)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__51", "LocalIncreasedPhysicalDamagePercentUnique__53", }, + ["(21-24)% chance to block spell damage"] = { "SpellBlockUniqueShieldStrInt1", }, + ["(21-25)% increased physical damage"] = { "VillageLocalPhysicalDamagePercent3", }, + ["(21-25)% reduced enemy stun threshold with this weapon"] = { "VillageLocalStunThresholdReduction", }, + ["(210-250)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercent__2", "LocalIncreasedEnergyShieldUniqueBodyInt3", }, + ["(22-26)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand9", }, + ["(22-27)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueOneHandSword8", }, + ["(22-28)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__17_", }, + ["(22-30)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__2", }, + ["(220-240)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt5", }, + ["(220-250)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__18", }, + ["(220-250)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3", }, + ["(220-250)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__18", }, + ["(230-260)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__3", }, + ["(230-260)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword8", "LocalIncreasedPhysicalDamagePercentUnique__42", }, + ["(230-270)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__22", }, + ["(24-28)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand10", }, + ["(24-32)% increased movement speed while affected by a magic abyss jewel"] = { "MovementVelocityWithMagicAbyssJewelUnique__1", }, + ["(240-260)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__9", }, + ["(240-280)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__23", }, + ["(240-300)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt5", "LocalIncreasedArmourAndEnergyShieldUnique__6", }, + ["(245-280)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt5", }, + ["(25-28)% increased elemental damage with attack skills"] = { "WeaponElementalDamageImplicitBow2", }, + ["(25-30)% chance to gain a frenzy charge on killing an enemy affected by at least 5 poisons"] = { "GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1", }, + ["(25-30)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueOneHandSword7", "LocalIncreasedAttackSpeedUnique__35", "LocalIncreasedAttackSpeedUnique__5", }, + ["(25-30)% increased attack speed if you've changed stance recently"] = { "AttackSpeedChangedStanceUnique__1", }, + ["(25-30)% increased cast speed"] = { "IncreasedCastSpeedUniqueWand7", "IncreasedCastSpeedUnique__13", }, + ["(25-30)% increased cold damage"] = { "ColdDamagePercentUniqueRing19", }, + ["(25-30)% increased damage if you summoned a golem in the past 8 seconds"] = { "IncreasedDamageIfGolemSummonedRecently__1", }, + ["(25-30)% increased damage while leeching"] = { "IncreasedDamageWhileLeechingLifeUniqueJewel19", }, + ["(25-30)% increased elemental damage with attack skills"] = { "WeaponElementalDamageUnique__5", }, + ["(25-30)% increased fire damage"] = { "FireDamagePercentUniqueRing18", "FireDamagePercentUnique__4", }, + ["(25-30)% increased lightning damage"] = { "LightningDamagePercentUniqueRing20", }, + ["(25-30)% reduced attack speed"] = { "LocalReducedAttackSpeedUnique__3", }, + ["(25-35)% chance for energy shield recharge to start when you block"] = { "EnergyShieldRechargeOnBlockUnique__1", }, + ["(25-35)% chance to gain a power charge on kill"] = { "PowerChargeOnKillChanceUnique__1", }, + ["(25-35)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueOneHandAxe1", "LocalIncreasedAttackSpeedUnique__40", }, + ["(25-35)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__15", }, + ["(25-35)% increased damage"] = { "TalismanIncreasedDamage", }, + ["(25-35)% increased fire damage"] = { "FireDamagePercentUniqueBodyInt4", }, + ["(25-35)% increased projectile damage"] = { "IncreasedProjectileDamageUnique___11", }, + ["(25-35)% increased quantity of gold dropped by slain enemies"] = { "IncreasedGoldFoundUnique__1", }, + ["(25-35)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUniqueShieldInt3", }, + ["(25-35)% increased stun duration on enemies"] = { "StunDurationImplicitQuiver9", }, + ["(25-35)% increased warcry speed"] = { "WarcrySpeedUnique__2", }, + ["(25-35)% increased ward"] = { "LocalIncreasedWardPercentUnique__2", }, + ["(25-40)% chance to inflict an additional poison on the same target when you inflict poison"] = { "AdditionalPoisonChanceUnique__1", }, + ["(25-40)% increased attack damage against bleeding enemies"] = { "AttackDamageAgainstBleedingUnique__1__", }, + ["(25-40)% increased attack speed while ignited"] = { "IncreasedAttackSpeedWhileIgnitedUniqueRing24", }, + ["(25-40)% increased cast speed"] = { "IncreasedCastSpeedUniqueStaff_1", }, + ["(25-40)% increased cast speed while ignited"] = { "IncreasedCastSpeedWhileIgnitedUniqueRing24", }, + ["(25-40)% increased damage with hits and ailments against blinded enemies"] = { "IncreaseDamageOnBlindedEnemiesUnique__1", }, + ["(25-40)% increased damage with hits and ailments against ignited enemies"] = { "IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3", }, + ["(25-40)% increased effect of shocks you inflict during effect"] = { "ShockEffectDuringFlaskEffectUnique__1__", }, + ["(25-40)% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueBelt2", }, + ["(25-40)% increased mana regeneration rate"] = { "ManaRegenerationUnique__12", "ManaRegenerationUnique__13", }, + ["(25-40)% increased melee damage"] = { "MeleeDamageUnique__2", }, + ["(25-50)% chance to inflict brittle"] = { "AlternateColdAilmentUnique__1", }, + ["(25-50)% chance to sap enemies"] = { "AlternateLightningAilmentUnique__1__", }, + ["(25-50)% chance to scorch enemies"] = { "AlternateFireAilmentUnique__1", }, + ["(25-50)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniquSceptre10", }, + ["(25-50)% increased duration"] = { "FlaskEffectDurationUnique__1", }, + ["(25-50)% increased valour gained"] = { "BannerResourceGainedUnique__1", }, + ["(25-50)% reduced area of effect of hex skills"] = { "CurseAreaOfEffectUnique__4", }, + ["(250-270)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueDagger9", }, + ["(250-275)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueWand1", }, + ["(250-300)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__14", }, + ["(250-300)% increased charges per use"] = { "LocalFlaskChargesUsedUniqueFlask2", }, + ["(250-300)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercent__1", }, + ["(250-300)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__19___", }, + ["(250-300)% increased global damage"] = { "AllDamageUnique__3", }, + ["(250-300)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword4", "LocalIncreasedPhysicalDamagePercentUniqueRapier1", "LocalIncreasedPhysicalDamagePercentUnique__49", }, + ["(250-350)% increased armour, evasion and energy shield"] = { "LocalIncreasedArmourEvasionEnergyShieldUnique__1_", }, + ["(250-350)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueAmulet18", }, + ["(26-30)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand11", }, + ["(26-32)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__1", }, + ["(260-300)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__15", }, + ["(260-310)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__16", }, + ["(27-31)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand12", }, + ["(270-300)% increased energy shield"] = { "LocalIncreasedEnergyShieldUniqueBodyStrDexInt1g", }, + ["(270-340)% increased armour, evasion and energy shield"] = { "LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i", }, + ["(280-320)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__24", }, + ["(29-32)% increased elemental damage with attack skills"] = { "WeaponElementalDamageImplicitBow3", }, + ["(29-33)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand13", }, + ["(3-10)% increased spell damage"] = { "SpellDamageImplicitArmour1", }, + ["(3-4) to (7-8) added fire damage per 100 of maximum life or maximum mana, whichever is lower"] = { "AddedFireDamagePer100LowestOfLifeOrManaUnique__1", }, + ["(3-4)% increased defences per minion from your non-vaal skills"] = { "GlobalDefensesIncreasedPerActiveNonVaalSkillMinionUnique_1", }, + ["(3-4)% of physical attack damage leeched as life"] = { "LifeLeechLocal2", "LifeLeechUniqueRing12", }, + ["(3-5)% additional physical damage reduction"] = { "AdditionalPhysicalDamageReductionUnique_1UNUSED", }, + ["(3-5)% increased elemental damage per power charge"] = { "ElementalDamagePerPowerChargeUnique__1", }, + ["(3-5)% increased movement speed"] = { "ChanceToDodgeUniqueRing37", "MovementVelocityUnique__9_", }, + ["(3-5)% increased skeleton movement speed"] = { "SkeletonMovementSpeedUniqueJewel1", }, + ["(3-5)% of damage from hits is taken from your nearest totem's life before you"] = { "DamageTakenFromTotemLifeBeforePlayerUnique__1", }, + ["(3-5)% of physical attack damage leeched as mana"] = { "ManaLeechUniqueOneHandSword2", }, + ["(3-6)% increased area of effect of aura skills"] = { "JewelImplicitAuraAreaOfEffect", }, + ["(3-6)% increased attack speed"] = { "VillageLocalIncreasedAttackSpeed", }, + ["(3-6)% increased energy shield recharge rate"] = { "JewelImplicitEnergyShieldRechargeRate", }, + ["(3-6)% increased light radius"] = { "JewelImplicitLightRadius", }, + ["(3-6)% increased maximum energy shield"] = { "IncreasedEnergyShieldPercentUniqueJewel51", }, + ["(3-6)% increased movement speed"] = { "MovementVelocityVictorAmulet", }, + ["(30-35)% increased chaos damage"] = { "IncreasedChaosDamageUnique__1", }, + ["(30-35)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueRing11_", }, + ["(30-35)% increased spell critical strike chance"] = { "VillageSpellCriticalStrikeChanceTwoHand", }, + ["(30-39)% increased spell damage"] = { "VillageWeaponSpellDamage3", }, + ["(30-40)% chance for elemental resistances to count as being 90% against enemy hits"] = { "TreatResistancesAsMaxChanceUnique__1", }, + ["(30-40)% chance to chill attackers for 4 seconds on block"] = { "ChanceToChillAttackersOnBlockUnique__1", }, + ["(30-40)% chance to shock attackers for 4 seconds on block"] = { "ChanceToShockAttackersOnBlockUnique__1_", }, + ["(30-40)% chance when you kill a scorched enemy to burn each surrounding"] = { "ScorchedEnemiesDegenExplodeUnique__1_", }, + ["(30-40)% increased armour while bleeding"] = { "IncreasedArmourWhileBleedingUnique__1", }, + ["(30-40)% increased cast speed"] = { "IncreasedCastSpeedUnique__3", }, + ["(30-40)% increased chill duration on enemies"] = { "IncreasedChillDurationUniqueQuiver5", }, + ["(30-40)% increased cold damage with attack skills"] = { "ColdWeaponDamageUniqueOneHandMace4", }, + ["(30-40)% increased critical strike chance"] = { "CriticalStrikeChanceUniqueBow9", "LocalCriticalStrikeChanceUniqueBow11", "LocalCriticalStrikeChanceUniqueSceptre9", "LocalCriticalStrikeChanceUniqueTwoHandMace6", "LocalCriticalStrikeChanceUnique__10", "LocalCriticalStrikeChanceUnique__3", "LocalCriticalStrikeChanceUnique__9", }, + ["(30-40)% increased damage"] = { "AllDamageUnique__4", }, + ["(30-40)% increased damage over time"] = { "DegenerationDamageUnique__3", }, + ["(30-40)% increased damage while leeching"] = { "IncreasedDamageWhileLeechingUnique__1", }, + ["(30-40)% increased elemental damage"] = { "ElementalDamageUnique__3", }, + ["(30-40)% increased elemental damage while in an area affected by a sextant"] = { "ElementalDamageWhileAffectedBySextantUnique__1", }, + ["(30-40)% increased elemental damage with hits and ailments for"] = { "DamagePerStatusAilmentOnEnemiesUniqueRing21", }, + ["(30-40)% increased fire damage"] = { "FireDamagePercentUniqueRing38", "FireDamagePercentUniqueStrHelmet2", }, + ["(30-40)% increased fish bite sensitivity"] = { "TalismanFishBiteSensitivity", }, + ["(30-40)% increased flask mana recovery rate"] = { "FlaskManaRecoveryRateUniqueSceptre5", }, + ["(30-40)% increased fortification duration"] = { "FortifyDurationUnique_1", }, + ["(30-40)% increased global accuracy rating"] = { "IncreasedAccuracyPercentUnique__1", }, + ["(30-40)% increased global critical strike chance"] = { "CriticalSrikeChanceUniqueSceptre7", }, + ["(30-40)% increased global maximum energy shield and reduced lightning resistance"] = { "EnergyShieldAndReducedLightningResistanceUnique__1", }, + ["(30-40)% increased life recovery from flasks"] = { "BeltFlaskLifeRecoveryUnique__1", }, + ["(30-40)% increased lightning damage"] = { "LightningDamagePercentUnique__8", }, + ["(30-40)% increased mana regeneration rate"] = { "ManaRegenerationUniqueBootsStrDex4", "ManaRegenerationUniqueRing34", "ManaRegenerationUniqueRingDemigod1", "ManaRegenerationUnique__6", }, + ["(30-40)% increased mana regeneration rate while moving"] = { "ManaRegenerationRateWhileMovingUnique__1", }, + ["(30-40)% increased maximum life"] = { "MaximumLifeUniqueBodyStrDex1", }, + ["(30-40)% increased maximum life and reduced fire resistance"] = { "LifeAndReducedFireResistanceUnique__1", }, + ["(30-40)% increased maximum mana and reduced cold resistance"] = { "ManaAndReducedColdResistanceUnique__1", }, + ["(30-40)% increased melee damage"] = { "MeleeDamageUniqueAmulet12", }, + ["(30-40)% increased projectile speed"] = { "ProjectileSpeedUnique__7", }, + ["(30-40)% increased rarity of items dropped by slain maimed enemies"] = { "IIRFromMaimedEnemiesUnique_1", }, + ["(30-40)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueShieldStrDex2", "ItemFoundRarityIncreaseUniqueTwoHandAxe2", }, + ["(30-40)% increased spell damage"] = { "SpellDamageUniqueCorruptedJewel3_", "SpellDamageUniqueWand1", "SpellDamageUnique__16", "SpellDamageUnique__6", }, + ["(30-40)% increased stun and block recovery"] = { "StunRecoveryUnique__2", "StunRecoveryUnique__3", "StunRecoveryUnique__7", }, + ["(30-40)% increased trap damage"] = { "TrapDamageUniqueBelt6", }, + ["(30-40)% less energy shield recharge rate"] = { "LessRechargeRateSoullessEleganceUnique__1", }, + ["(30-40)% less minimum physical attack damage"] = { "RyuslathaMinimumDamageModifierUnique__1", }, + ["(30-40)% less physical and chaos damage taken while sane"] = { "PhysicalChaosDamageTakenNotUnhingedUnique__1_", }, + ["(30-40)% more maximum physical attack damage"] = { "RyuslathaMaximumDamageModifierUnique__1_", }, + ["(30-40)% reduced stun and block recovery"] = { "StunRecoveryUniqueOneHandSword13", }, + ["(30-44)% increased spell damage"] = { "VillageWeaponSpellDamageTwoHand2", }, + ["(30-50) mana gained when you block"] = { "GainManaOnBlockUnique__1", }, + ["(30-50)% faster start of energy shield recharge"] = { "ReducedEnergyShieldDelayUnique__1", }, + ["(30-50)% increased amount recovered"] = { "FlaskIncreasedRecoveryAmountUniqueFlask4", "FlaskIncreasedRecoveryAmountUnique__1", }, + ["(30-50)% increased cold damage"] = { "ColdDamagePercentUnique__3", "ColdDamagePercentUnique__5", }, + ["(30-50)% increased critical strike chance"] = { "LocalCriticalStrikeChanceImplicitBow1", "LocalCriticalStrikeChanceUniqueOneHandAxe8_", }, + ["(30-50)% increased critical strike chance against blinded enemies"] = { "CriticalChanceAgainstBlindedEnemiesUnique__2__", }, + ["(30-50)% increased damage with hits and ailments against marked enemy"] = { "DamageAgainstMarkedEnemiesUnique__1", }, + ["(30-50)% increased duration"] = { "FlaskEffectDurationUnique__3", }, + ["(30-50)% increased effect of arcane surge on you"] = { "ArcaneSurgeEffectUnique__1", }, + ["(30-50)% increased effect of chilled ground"] = { "ChilledGroundEffectUnique__1", }, + ["(30-50)% increased effect of consecrated ground you create"] = { "ConsecratedGroundEffectUnique__1", }, + ["(30-50)% increased effect of impales inflicted with spells"] = { "SpellImpaleEffectUnique__1", }, + ["(30-50)% increased effect of scorch"] = { "ScorchEffectUnique__1", }, + ["(30-50)% increased elemental damage"] = { "ElementalDamageUniqueStaff13", }, + ["(30-50)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueShieldDex4", }, + ["(30-50)% increased fire damage"] = { "FireDamagePercentUnique__14", }, + ["(30-50)% increased fire damage with hits and ailments against blinded enemies"] = { "FireDamageToBlindEnemies__1", }, + ["(30-50)% increased global critical strike chance"] = { "CriticalStrikeChanceUnique__6", }, + ["(30-50)% increased lightning damage"] = { "LightningDamagePercentUniqueStaff8", }, + ["(30-50)% increased mana regeneration rate"] = { "ManaRegenerationUniqueHelmetStrInt_1", "ManaRegenerationUniqueOneHandMace3", "ManaRegenerationUnique__15", }, + ["(30-50)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe8", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword8", }, + ["(30-50)% increased projectile damage"] = { "IncreasedProjectileDamageUnique__1", "IncreasedProjectileDamageUnique___10_", "IncreasedProjectileDamageUnique___12", "IncreasedProjectileDamageUnique___4", }, + ["(30-50)% increased projectile speed"] = { "ProjectileSpeedUnique__8", }, + ["(30-50)% increased rarity of items found during effect"] = { "FlaskItemRarityUniqueFlask1", }, + ["(30-50)% increased spell damage"] = { "SpellDamageUnique__10", }, + ["(30-50)% increased stun duration on enemies"] = { "StunDurationUniqueOneHandMace6", }, + ["(30-50)% increased totem placement speed"] = { "SummonTotemCastSpeedUnique__2", }, + ["(30-50)% increased ward"] = { "LocalIncreasedWardPercentUnique__3", }, + ["(30-50)% reduced experience gain"] = { "IncreasedExperienceUniqueTwoHandMace4", }, + ["(30-50)% reduced rarity of items found"] = { "ItemFoundRarityDecreaseUniqueTwoHandMace4", }, + ["(30-50)% reduced totem damage"] = { "ReducedTotemDamageUniqueJewel26", }, + ["(30-50)% slower restoration of ward"] = { "WardDelayRecoveryUnique__2", }, + ["(30-60)% increased evasion rating and armour"] = { "GlobalEvasionRatingAndArmourPercentUnique__1_", }, + ["(30-60)% increased spell damage"] = { "SpellDamageUnique__14", }, + ["(300-340)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__6", }, + ["(300-350)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__30___", }, + ["(300-350)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__47", }, + ["(300-360)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace6", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9", }, + ["(300-400)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4", }, + ["(300-400)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionRatingUnique__1", "LocalIncreasedArmourAndEvasionUnique__16__", }, + ["(300-400)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2", "LocalIncreasedEvasionAndEnergyShieldUnique__20", }, + ["(31-35)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand14", }, + ["(31-43)% increased chaos damage"] = { "IncreasedChaosDamageUniqueWand_1", }, + ["(33-37)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand15", }, + ["(33-48)% increased ward"] = { "LocalIncreasedWardPercentUnique__1_", }, + ["(34-48) life gained when you block"] = { "GainLifeOnBlockUniqueAmulet16", }, + ["(35-39)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand16", }, + ["(35-45)% increased duration"] = { "FlaskEffectIncreasedDurationReducedEffect1", }, + ["(35-50)% increased chill duration on enemies"] = { "IncreasedChillDurationUnique__1", }, + ["(35-50)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__14", }, + ["(35-50)% increased quantity of items dropped by slain normal enemies"] = { "NormalMonsterItemQuantityUnique__1", }, + ["(35-50)% reduced recovery rate"] = { "FlaskIncreasedRecoverySpeedUniqueFlask3", }, + ["(350-400)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__3", }, + ["(350-400)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__29", }, + ["(350-650)% increased armour"] = { "LocalIncreasedArmourUniqueHelmetStrInt_2", }, + ["(36-40)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand17", }, + ["(36-50)% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueBow8", }, + ["(38-42)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand18", }, + ["(380-420)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStrDexInt1a", }, + ["(380-420)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBodyStrDexInt1c", }, + ["(4-12)% increased elemental damage with attack skills"] = { "WeaponElementalDamageUnique__1", }, + ["(4-5)% of physical attack damage leeched as life"] = { "LifeLeechUniqueBodyStrInt5", }, + ["(4-6)% additional physical damage reduction"] = { "TalismanReducedPhysicalDamageTaken_", }, + ["(4-6)% chance to block attack damage"] = { "BlockPercentUnique__3", }, + ["(4-6)% chance to block spell damage"] = { "SpellBlockPercentageUnique__2", }, + ["(4-6)% chance to freeze, shock and ignite"] = { "TalismanChanceToFreezeShockIgnite_", }, + ["(4-6)% chance to throw up to 4 additional traps"] = { "ChanceToThrowFourAdditionalTrapsUnique__1", }, + ["(4-6)% increased cast speed"] = { "IncreasedCastSpeedUnique__4", }, + ["(4-6)% increased dexterity"] = { "PercentageDexterityUniqueJewel29", "PercentageDexterityUnique__2", }, + ["(4-6)% increased intelligence"] = { "PercentageIntelligenceUnique__2", }, + ["(4-6)% increased maximum energy shield"] = { "IncreasedEnergyShieldPercentUnique__2_", }, + ["(4-6)% increased maximum life"] = { "MaximumLifeUnique__13", "MaximumLifeUnique__7", "MaximumLifeUnique__9", }, + ["(4-6)% increased maximum mana"] = { "MaximumManaUnique__4", }, + ["(4-6)% increased strength"] = { "PercentageStrengthUniqueJewel29", "PercentageStrengthUnique__2", }, + ["(4-6)% increased totem placement speed"] = { "JewelImplicitTotemPlacementSpeed", }, + ["(4-6)% of damage from hits is taken from void spawns' life before you per void spawn"] = { "DamageRemovedFromVoidSpawnsUnique__1", }, + ["(4-7)% increased elemental damage per frenzy charge"] = { "IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6", }, + ["(4-7)% increased maximum life"] = { "MaximumLifeUnique__12", }, + ["(4-7)% increased physical damage per endurance charge"] = { "IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6", }, + ["(4-7)% increased spell damage per power charge"] = { "IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6", }, + ["(4-8)% increased attack speed"] = { "LocalIncreasedAttackSpeedUnique__1", }, + ["(4-8)% increased cast speed"] = { "IncreasedCastSpeedUnique__1", }, + ["(4-8)% increased maximum life"] = { "MaximumLifeUnique__4_", "MaximumLifeUnique__6", }, + ["(4-8)% increased quantity of items found"] = { "ItemFoundQuantityIncreaseUniqueShieldInt4", }, + ["(40-45)% increased mana regeneration rate"] = { "ManaRegenerationUnique__8", }, + ["(40-50)% additional physical damage reduction during effect"] = { "LocalFlaskPhysicalDamageReductionUnique__1", }, + ["(40-50)% chance to avoid bleeding"] = { "ChanceToAvoidBleedingUnique__1", }, + ["(40-50)% chance to blind enemies on critical strike"] = { "ChanceToBlindOnCriticalStrikesUnique__2_", }, + ["(40-50)% chance to poison on hit with attacks"] = { "ChanceToPoisonWithAttacksUnique___2", }, + ["(40-50)% increased area damage"] = { "AreaDamageUniqueBodyDexInt1", }, + ["(40-50)% increased area of effect"] = { "AreaOfEffectUniqueBodyDexInt1", "AreaOfEffectUnique__10", }, + ["(40-50)% increased aspect of the spider debuff duration"] = { "AspectOfSpiderDurationUnique__1", }, + ["(40-50)% increased charges per use"] = { "FlaskChargesUsedUnique__9_", }, + ["(40-50)% increased cold damage"] = { "ColdDamagePercentUniqueStaff2", }, + ["(40-50)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueDagger8", "LocalCriticalStrikeChanceUnique__19", "LocalCriticalStrikeChanceUnique__4", }, + ["(40-50)% increased damage with hits and ailments against bleeding enemies"] = { "DamageAgainstBleedingEnemiesUnique__1", }, + ["(40-50)% increased damage with hits and ailments against blinded enemies"] = { "DamageAgainstBlindedEnemiesUnique__1", }, + ["(40-50)% increased elemental damage taken"] = { "ElementalDamageTakenUnique__1", }, + ["(40-50)% increased global critical strike chance"] = { "TalismanIncreasedCriticalChance", }, + ["(40-50)% increased global damage"] = { "AllDamageUniqueStaff4", }, + ["(40-50)% increased mana regeneration rate"] = { "ManaRegenerationUniqueBodyDexInt2", }, + ["(40-50)% increased maximum energy shield"] = { "IncreasedEnergyShieldPercentUniqueOneHandSword2", }, + ["(40-50)% increased physical damage taken"] = { "IncreasedPhysicalDamageTakenUniqueHelmetStr3", }, + ["(40-50)% increased projectile attack damage while you have at least 200 dexterity"] = { "ProjectileAttackDamageAt200DexterityUnique__1", }, + ["(40-50)% increased rarity of items dropped by enemies killed with a critical strike"] = { "KilledMonsterItemRarityOnCritUniqueRing11", }, + ["(40-50)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueGlovesStrDex2", }, + ["(40-50)% increased spell damage"] = { "SpellDamageUnique__7", }, + ["(40-50)% increased stun duration on enemies"] = { "StunDurationUniqueTwoHandMace1", "StunDurationUniqueTwoHandMace3", }, + ["(40-50)% less impale duration"] = { "ImpaleDurationUnique_1", }, + ["(40-50)% reduced mana cost of raise spectre"] = { "RaiseSpectreManaCostUnique__1_", }, + ["(40-50)% reduced quantity of fish caught"] = { "FishingQuantityUniqueFishingRod1", }, + ["(40-55)% increased elemental damage with attack skills"] = { "WeaponElementalDamageUnique__3", }, + ["(40-60)% faster restoration of ward"] = { "WardDelayRecoveryUnique__1", }, + ["(40-60)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex2", "LocalIncreasedArmourAndEvasionUniqueStrDexHelmet1", }, + ["(40-60)% increased chaos damage while affected by herald of agony"] = { "HeraldBonusAgonyChaosDamage_", }, + ["(40-60)% increased charge recovery"] = { "FlaskChargesAddedIncreasePercentUnique_1", }, + ["(40-60)% increased cold damage while affected by herald of ice"] = { "HeraldBonusIceColdDamage", }, + ["(40-60)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__6", }, + ["(40-60)% increased damage with bleeding"] = { "BleedDamageUnique__1_", }, + ["(40-60)% increased damage with hits and ailments against blinded enemies"] = { "IncreaseDamageOnBlindedEnemiesUniqueQuiver9_", }, + ["(40-60)% increased damage with hits and ailments against enemies affected by 3 spider's webs"] = { "DamageAgainstEnemiesWith3WebsUnique__1_", }, + ["(40-60)% increased damage with poison"] = { "PoisonDamageUnique__1", }, + ["(40-60)% increased energy shield"] = { "LocalIncreasedEnergyShieldUniqueBootsInt4", "LocalIncreasedEnergyShieldUniqueGlovesInt4", }, + ["(40-60)% increased fire damage"] = { "SpellDamageUniqueDagger10", }, + ["(40-60)% increased fire damage while affected by herald of ash"] = { "HeraldBonusAshFireDamage", }, + ["(40-60)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueGlovesStr3", "CriticalStrikeChanceUniqueWand10", }, + ["(40-60)% increased global damage"] = { "AllDamageUniqueSceptre8", }, + ["(40-60)% increased lightning damage while affected by herald of thunder"] = { "HeraldBonusThunderLightningDamage", }, + ["(40-60)% increased mana regeneration rate"] = { "ManaRegenerationUnique__11___", }, + ["(40-60)% increased mine throwing speed"] = { "RemoteMineLayingSpeedUniqueStaff11", }, + ["(40-60)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword7", "LocalIncreasedPhysicalDamagePercentUnique__6", "LocalIncreasedPhysicalDamagePercentUnique__8", }, + ["(40-60)% increased physical damage while affected by herald of purity"] = { "HeraldBonusPurityPhysicalDamage", }, + ["(40-60)% increased projectile damage while in blood stance"] = { "ProjectileDamageBloodStanceUnique__1", }, + ["(40-60)% increased spell damage"] = { "SpellDamageUniqueShieldInt1", "SpellDamageUniqueStaff11_", }, + ["(40-60)% increased spell damage while no mana is reserved"] = { "SpellDamageWithNoManaReservedUniqueJewel30", }, + ["(40-60)% increased stun and block recovery"] = { "StunRecoveryUniqueGlovesStrInt1", "StunRecoveryUnique__6", }, + ["(40-60)% increased trap trigger area of effect"] = { "TrapTriggerRadiusUnique__1", }, + ["(40-60)% less duration"] = { "FlaskLessDurationUnique1", "FlaskLessDurationUnique2", }, + ["(40-60)% more critical strike chance while insane"] = { "CriticalStrikeChanceFinalUnhingedUnique__1", }, + ["(40-60)% reduced duration of elemental ailments on you while affected by a rare abyss jewel"] = { "ElementalAilmentDurationWithRareAbyssJewelUnique__1", }, + ["(40-60)% reduced maximum mana"] = { "PercentReducedMaximumManaUnique_1", }, + ["(40-70)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUnique__3_", }, + ["(40-70)% increased totem placement speed"] = { "SummonTotemCastSpeedUnique__3", }, + ["(40-75)% increased ignite duration on enemies"] = { "BurnDurationUniqueBodyInt2", }, + ["(40-80)% faster start of energy shield recharge"] = { "ReducedEnergyShieldDelayUniqueDagger4", }, + ["(40-80)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__30", }, + ["(40-80)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueShieldInt2", }, + ["(40-80)% increased mana cost of skills"] = { "ManaCostIncreaseUniqueGlovesInt6", }, + ["(400-450)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__19", }, + ["(400-500)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__1", }, + ["(400-500)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__25", "LocalIncreasedEvasionAndEnergyShieldUnique__30_", }, + ["(44-66)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueOneHandSword10", }, + ["(45-50)% increased mana regeneration rate"] = { "ManaRegenerationUnique__7", }, + ["(45-59)% increased spell damage"] = { "VillageWeaponSpellDamageTwoHand3", }, + ["(45-60)% chance on melee hit for all impales on the enemy to last for an additional hit"] = { "ChanceMeleeHitsDontConsumeImpalesUnique_1UNUSED", }, + ["(45-65)% increased mana regeneration rate"] = { "ManaRegenerationUniqueRing14", }, + ["(450-500)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__11", }, + ["(46-55)% increased duration"] = { "FlaskEffectIncreasedDurationReducedEffect2", }, + ["(475-600)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__8", }, + ["(48-56)% increased mana regeneration rate"] = { "ManaRegenerationImplicitAmulet2", }, + ["(5-10) to (12-24) added physical damage with bow attacks"] = { "AddedPhysicalDamageUniqueQuiver10", }, + ["(5-10) to (20-25) added attack chaos damage per 100 maximum mana"] = { "AttacksGainMinMaxAddedChaosDamageBasedOnManaUnique__1", }, + ["(5-10)% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteUnique__3", }, + ["(5-10)% chance to gain a frenzy charge on kill"] = { "VillageFrenzyChargeOnKillChance", }, + ["(5-10)% chance to gain a power charge on kill"] = { "VillagePowerChargeOnKillChance", }, + ["(5-10)% chance to gain an endurance charge on kill"] = { "VillageEnduranceChargeOnKillChance", }, + ["(5-10)% chance to ignite"] = { "IncreasedChanceToIgniteUniqueRing24", }, + ["(5-10)% chance to restore your ward on hit"] = { "VillageWardRestoreChance", }, + ["(5-10)% chance to shock"] = { "ChanceToShockUnique__3", }, + ["(5-10)% increased attack and cast speed"] = { "AttackAndCastSpeedUniqueRing39", "AttackAndCastSpeedUnique__2", "AttackAndCastSpeedUnique__5", }, + ["(5-10)% increased attack speed"] = { "IncreasedAttackSpeedTransformedUnique__1", "IncreasedAttackSpeedUniqueGlovesStrDex1", "IncreasedAttackSpeedUniqueRing37", "IncreasedAttackSpeedUnique__2", "IncreasedAttackSpeedUnique__6", "LocalIncreasedAttackSpeedUniqueStaff9", "LocalIncreasedAttackSpeedUniqueWand9", "LocalIncreasedAttackSpeedUnique__3", "LocalIncreasedAttackSpeedUnique__36", }, + ["(5-10)% increased cast speed"] = { "IncreasedCastSpeedUniqueRing38", "IncreasedCastSpeedUnique__15_", "IncreasedCastSpeedUnique__26", "IncreasedCastSpeedUnique__6", }, + ["(5-10)% increased effect of your curses"] = { "CurseEffectivenessUnique__3_", }, + ["(5-10)% increased elemental damage per 1% fire, cold, or lightning resistance above 75%"] = { "ElementalDamagePerResistanceAbove75Unique_1", }, + ["(5-10)% increased experience gain of gems"] = { "GlobalGemExperienceGainUnique__1", }, + ["(5-10)% increased global defences"] = { "AllDefencesVictorAmulet", "AllDefensesImplicitJetRing", }, + ["(5-10)% increased maximum life"] = { "MaximumLifeUnique__21", }, + ["(5-10)% increased maximum recovery per life leech for each 5% of life reserved"] = { "MaximumLifeLeechAmountPerLifeReservedUnique__1", }, + ["(5-10)% increased movement speed"] = { "MovementVelocityUnique__33_", "MovementVelocityUnique__44", }, + ["(5-10)% increased quantity of items found"] = { "ItemFoundQuantityIncreaseUniqueGlovesInt1", }, + ["(5-10)% increased reservation efficiency of skills"] = { "ReservationEfficiencyUnique__5", }, + ["(5-10)% increased spell damage"] = { "SpellDamageImplicitShield1", }, + ["(5-10)% of damage taken recouped as mana"] = { "PercentDamageGoesToManaUniqueBootsDex3", }, + ["(5-10)% of elemental damage taken as chaos damage if 4 hunter items are equipped"] = { "ElementalDamageTakenAsChaos4HunterItemsUnique__1", }, + ["(5-10)% of physical damage taken as cold damage if 4 redeemer items are equipped"] = { "PhysicalDamageTakenAsCold4RedeemerItemsUnique__1", }, + ["(5-10)% of physical damage taken as fire damage if 4 warlord items are equipped"] = { "PhysicalDamageTakenAsFirePercent4WarlordItemsUnique__1", }, + ["(5-10)% of physical damage taken as lightning damage if 4 crusader items are equipped"] = { "PhysicalDamageTakenAsLightningPercent4CrusaderItemsUnique__1", }, + ["(5-10)% reduced enemy stun threshold"] = { "StunThresholdReductionUniqueBootsStr3", }, + ["(5-10)% reduced movement speed"] = { "MovementVelocityUnique__2", }, + ["(5-15)% increased attack speed"] = { "IncreasedAttackSpeedUnique__9", }, + ["(5-15)% increased attack speed during effect"] = { "LocalFlaskAttackAndCastSpeedWhileHealingUnique__1", }, + ["(5-15)% increased attributes"] = { "AllAttributesPercentUnique__2", }, + ["(5-15)% increased cast speed"] = { "IncreasedCastSpeedUnique__27", }, + ["(5-15)% increased cold damage"] = { "ColdDamagePercentUnique__14", }, + ["(5-15)% increased dexterity"] = { "PercentageDexterityUniqueHelmetStrDex6", }, + ["(5-15)% increased intelligence"] = { "PercentageIntelligenceUniqueHelmetStrDex6", }, + ["(5-15)% increased movement speed"] = { "MovementVelocityUniqueBootsInt4", }, + ["(5-15)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUnique__7", }, + ["(5-15)% increased strength"] = { "PercentageStrengthUniqueHelmetStrDex6", }, + ["(5-15)% reduced attack speed"] = { "IncreasedAttackSpeedUniqueGlovesStr2", }, + ["(5-25)% increased duration of ailments on enemies"] = { "IncreasedAilmentDurationUnique__4", }, + ["(5-6)% of physical attack damage leeched as life"] = { "LifeLeechLocal3", }, + ["(5-7)% increased attack and cast speed"] = { "AttackAndCastSpeedUnique__6", }, + ["(5-7)% increased attributes"] = { "AllAttributesPercentUnique__1", }, + ["(5-7)% increased cast speed"] = { "IncreasedCastSpeedUnique__18_", }, + ["(5-7)% increased critical strike chance"] = { "VillageLocalCriticalStrikeChance", }, + ["(5-7)% increased global defences"] = { "FormlessBreachRingImplicit", }, + ["(5-7)% increased maximum life"] = { "MaximumLifeImplicitAtlasRing", }, + ["(5-7)% increased quantity of items found"] = { "UniqueSpecialCorruptionItemQuantity_", }, + ["(5-8)% increased area of effect"] = { "TalismanIncreasedAreaOfEffect", }, + ["(5-8)% increased attack and cast speed"] = { "AttackAndCastSpeedUnique__7", }, + ["(5-8)% increased attack speed"] = { "LocalIncreasedAttackSpeedUnique__19", "LocalIncreasedAttackSpeedUnique__27", }, + ["(5-8)% increased cast speed"] = { "IncreasedCastSpeedUniqueWand4", }, + ["(5-8)% increased damage per raised zombie"] = { "DamagePerZombieUnique__1", }, + ["(5-8)% increased intelligence"] = { "PercentageIntelligenceUnique__4", }, + ["(5-8)% increased movement speed"] = { "MovementVelocityUnique__36_", }, + ["(50-100)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__34", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__8", }, + ["(50-100)% increased charges gained by other flasks during effect"] = { "IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1", }, + ["(50-100)% increased effect of socketed abyss jewels"] = { "AbyssJewelEffectUnique__1", }, + ["(50-100)% increased energy shield recovery rate"] = { "EnergyShieldRecoveryRateUnique__1", }, + ["(50-100)% increased maximum mana"] = { "MaximumManaUniqueStaff6", }, + ["(50-100)% increased projectile speed"] = { "ProjectileSpeedUniqueBow4_", }, + ["(50-100)% increased spell critical strike chance per raised spectre"] = { "SpellCriticalStrikeChancePerSpectreUnique__1_", }, + ["(50-100)% more main hand attack speed"] = { "WingsOfEntropyMainHandAttackSpeedFinalUnique__1_", }, + ["(50-100)% of suppressed spell damage taken bypasses energy shield"] = { "SuppressedDamageBypassEnergyShieldUnique_1", }, + ["(50-100)% of suppressed spell damage taken recouped as energy shield"] = { "SuppressedDamageRecoupedAsEnergyShield_1", }, + ["(50-55)% reduced cold resistance"] = { "ReducedColdResistanceUnique__1", }, + ["(50-55)% reduced fire resistance"] = { "ReducedFireResistanceUnique__1", }, + ["(50-55)% reduced lightning resistance"] = { "ReducedLightningResistanceUnique__1", }, + ["(50-60)% increased cost of skills for each 200 total mana spent recently"] = { "ManaCostPer200ManaSpentRecentlyUnique__1", }, + ["(50-60)% increased critical strike chance while you have at least 200 intelligence"] = { "CriticalStrikeChanceAt200IntelligenceUnique__1", }, + ["(50-60)% increased rarity of fish caught"] = { "FishingRarityUniqueFishingRod1", }, + ["(50-60)% increased spell damage"] = { "SpellDamageUniqueStaff2", }, + ["(50-60)% less poison duration"] = { "LessPoisonDurationUnique_1", }, + ["(50-65)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueWand3", }, + ["(50-70)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__28", }, + ["(50-70)% increased aspect of the spider area of effect"] = { "AreaOfEffectAspectOfSpiderUnique__1", }, + ["(50-70)% increased critical strike chance while physical aegis is depleted"] = { "CriticalStrikeChanceWithoutPhysicalAegisUnique__1", }, + ["(50-70)% increased damage while ignited"] = { "DamageWhileIgnitedUnique__1", }, + ["(50-70)% increased damage with hits and ailments against chilled enemies"] = { "DamageWithHitsAndAilmentsAgainstChilledEnemyUnique__1", }, + ["(50-70)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBodyDex4", }, + ["(50-70)% increased fire damage"] = { "FireDamagePercentUnique__6", }, + ["(50-70)% increased global critical strike chance"] = { "CriticalStrikeChanceUnique__3", }, + ["(50-70)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueBow10", "LocalIncreasedPhysicalDamagePercentUniqueDagger11", }, + ["(50-70)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueRing3", }, + ["(50-70)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUniqueBootsStrDex5", }, + ["(50-70)% increased spell damage"] = { "SpellDamageUniqueStaff12", }, + ["(50-75)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__2", }, + ["(50-75)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__8", }, + ["(50-75)% increased duration of poisons you inflict during effect"] = { "FlaskPoisonDurationUnique__1", }, + ["(50-75)% increased effect of non-damaging ailments inflicted by summoned skitterbots"] = { "SkitterbotIncreasedAilmentEffectUnique__1", }, + ["(50-75)% increased effect of shrine buffs on you"] = { "ShrineBuffEffectUnique__1", }, + ["(50-75)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace1", "LocalIncreasedPhysicalDamagePercentUnique__15", "LocalIncreasedPhysicalDamagePercentUnique__52", }, + ["(50-75)% reduced trap duration"] = { "TrapDurationUniqueBelt6", }, + ["(50-80)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__21", "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr1", }, + ["(50-80)% increased chaos damage"] = { "IncreasedChaosDamageUniqueBodyStrDex4", }, + ["(50-80)% increased cooldown recovery rate of travel skills"] = { "TravelSkillCooldownRecoveryUnique__1_", }, + ["(50-80)% increased duration"] = { "FlaskEffectDurationUnique__7", }, + ["(50-80)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueBootsInt6", }, + ["(50-80)% increased ward"] = { "LocalIncreasedWardPercentUnique__4_", }, + ["(500-1000)% increased stun and block recovery"] = { "StunRecoveryUnique__4", }, + ["(500-1000)% increased total recovery per second from life leech"] = { "IncreasedLifeLeechRateUnique__2", }, + ["(500-1000)% increased total recovery per second from mana leech"] = { "IncreasedManaLeechRateUnique__1", }, + ["(500-600)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__9", }, + ["(500-600)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3", }, + ["(56-66)% increased duration"] = { "FlaskEffectIncreasedDurationReducedEffect3_", "FlaskEffectIncreasedDurationReducedEffect4__", "FlaskEffectIncreasedDurationReducedEffect5", }, + ["(6-10)% chance to deal double damage if you've cast vulnerability in the past 10 seconds"] = { "VulnerabilityDoubleDamageUnique__1", }, + ["(6-10)% chance to ignite"] = { "ChanceToIgniteUnique__4", }, + ["(6-10)% chance to poison per power charge"] = { "PoisonChancePerPowerChargeUnique__1", }, + ["(6-10)% increased attack and cast speed"] = { "AttackAndCastSpeedUnique__4", "TalismanAttackAndCastSpeed", }, + ["(6-10)% increased attack speed"] = { "IncreasedAttackSpeedUniqueShieldDex6", "LocalIncreasedAttackSpeedUnique__42", }, + ["(6-10)% increased cast speed"] = { "IncreasedCastSpeedUniqueGlovesDemigods1", "IncreasedCastSpeedUniqueSceptre7", "IncreasedCastSpeedUnique__12", "VillageIncreasedCastSpeed", }, + ["(6-10)% increased maximum energy shield"] = { "IncreasedEnergyShieldPercentUnique__3", "IncreasedEnergyShieldPercentUnique__5", }, + ["(6-10)% increased maximum life"] = { "MaximumLifeUnique__10_", "MaximumLifeUnique__11", "MaximumLifeUnique__16", "MaximumLifeUnique__17", }, + ["(6-10)% increased maximum mana"] = { "MaximumManaUnique__6", }, + ["(6-10)% increased quantity of items found"] = { "ItemFoundQuantityIncreaseUniqueBootsDex2", "TalismanIncreasedItemQuantity", }, + ["(6-10)% of physical attack damage leeched as life"] = { "LifeLeechUniqueAmulet9", }, + ["(6-12)% increased attack and cast speed"] = { "AttackAndCastSpeedUnique__10", }, + ["(6-12)% increased attack speed"] = { "IncreasedAttackSpeedUnique__7", "LocalIncreasedAttackSpeedUniqueTwoHandSword8", }, + ["(6-12)% increased cast speed"] = { "RitualRingCastSpeed", }, + ["(6-12)% increased strength"] = { "PercentageStrengthUnique__5", }, + ["(6-12)% increased trap throwing speed"] = { "TrapThrowingSpeedUnique_1", }, + ["(6-12)% of damage taken recouped as life"] = { "DamageTakenGainedAsLifeUnique__3", }, + ["(6-12)% of damage taken recouped as mana"] = { "PercentDamageGoesToManaUnique__2", }, + ["(6-15)% increased rarity of items found"] = { "ItemFoundRarityIncreaseImplicitRing1", }, + ["(6-30)% increased rarity of items found"] = { "ItemFoundRarityIncreaseUnique__3", }, + ["(6-7)% chance to block spell damage"] = { "SpellBlockUniqueBootsInt5", }, + ["(6-8) to (12-13) added cold damage per frenzy charge"] = { "ChargeBonusAddedColdDamagePerFrenzyCharge", }, + ["(6-8)% increased attack and cast speed"] = { "AttackAndCastSpeedUnique__8", }, + ["(6-8)% increased maximum life"] = { "MaximumLifeUniqueJewel52", "MaximumLifeUnique__15", }, + ["(6-8)% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueRing9", }, + ["(6-8)% increased quantity of items found"] = { "ItemFoundQuantityIncreaseUniqueBelt3", }, + ["(6-8)% reduced mana cost of skills"] = { "ManaCostReductionUnique__1", }, + ["(6-8)% reduced soul gain prevention duration"] = { "VaalSoulGainPreventionUnique__1__", }, + ["(6-9)% increased attack and cast speed"] = { "AttackAndCastSpeedUnique__3", }, + ["(6-9)% increased attack speed"] = { "IncreasedAttackSpeedUniqueGlovesStrDex5", }, + ["(60-100)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__27", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__7", }, + ["(60-100)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt5", }, + ["(60-100)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueBootsStrDex3", "LocalIncreasedArmourAndEvasionUnique__21", "LocalIncreasedArmourAndEvasionUnique__25", }, + ["(60-100)% increased damage with movement skills"] = { "DamageWithMovementSkillsUniqueBodyDex5", }, + ["(60-100)% increased effect of chills you inflict while leeching mana"] = { "ChillEffectLeechingManaUnique__1", }, + ["(60-100)% increased effect of shocks you inflict while leeching energy shield"] = { "ShockEffectLeechingESUnique__1", }, + ["(60-100)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__34", }, + ["(60-100)% increased evasion rating"] = { "IncreasedEvasionRatingPercentUnique__1_", "LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex1", "LocalIncreasedEvasionRatingPercentUniqueShieldDex1", "LocalIncreasedEvasionRatingPercentUnique__19", }, + ["(60-100)% increased mana recovery from flasks"] = { "FlaskManaRecoveryUniqueBodyDex7", }, + ["(60-100)% increased mana regeneration rate"] = { "ManaRegenerationUniqueAmulet21", }, + ["(60-100)% increased projectile damage"] = { "IncreasedProjectileDamageUniqueStaff10", }, + ["(60-120)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUnique__16", }, + ["(60-120)% increased implicit modifier magnitudes"] = { "ClassicNebulisImplicitModifierMagnitudeUnique_1", "ReplicaNebulisImplicitModifierMagnitudeUnique_1", }, + ["(60-140)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__7", }, + ["(60-70)% increased spell damage"] = { "SpellDamageOnWeaponUniqueDagger4", }, + ["(60-70)% reduced elemental resistances"] = { "IncreasedElementalResistancesUnique__2_", }, + ["(60-75)% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueHelmetDex6", }, + ["(60-80)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__20", "LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr4", "LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr2", }, + ["(60-80)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueHelmetStrDex5", }, + ["(60-80)% increased attack damage if your opposite ring is a shaper item"] = { "AttackDamageShaperItemUnique__1", }, + ["(60-80)% increased burning damage"] = { "BurnDamageUniqueRing15", }, + ["(60-80)% increased chaos damage"] = { "IncreasedChaosDamageUnique__4", }, + ["(60-80)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__18", }, + ["(60-80)% increased critical strike chance if you haven't gained a power charge recently"] = { "CriticalStrikeChancePowerChargeNotGainedUnique__1", }, + ["(60-80)% increased critical strike chance with vaal skills during effect"] = { "FlaskVaalSkillCriticalStrikeChanceUnique__1", }, + ["(60-80)% increased damage while you have no frenzy charges"] = { "IncreasedDamageAtNoFrenzyChargesUnique__1", }, + ["(60-80)% increased damage with vaal skills during effect"] = { "FlaskVaalSkillDamageUnique__1", }, + ["(60-80)% increased elemental damage with attack skills"] = { "WeaponElementalDamageUnique__2", }, + ["(60-80)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__26", }, + ["(60-80)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueGlovesDex2", "LocalIncreasedEvasionRatingPercentUnique__12", "LocalIncreasedEvasionRatingPercentUnique__15_", }, + ["(60-80)% increased global critical strike chance when in main hand"] = { "CriticalStrikeChanceInMainHandUnique_1", }, + ["(60-80)% increased mana regeneration rate"] = { "ManaRegenerationUnique__16", }, + ["(60-80)% increased physical damage"] = { "LocalIncreasedPhyiscalDamagePercentUnique__3", "LocalIncreasedPhysicalDamagePercentUniqueBow5", "LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6", "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace8", "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword13", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe6", "LocalIncreasedPhysicalDamagePercentUnique__11_", "LocalIncreasedPhysicalDamagePercentUnique__36_", }, + ["(60-80)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUnique__2", "SpellCriticalStrikeChanceUnique__3", "SpellCriticalStrikeChanceUnique__4", }, + ["(60-80)% increased spell damage"] = { "SpellDamageUnique__18", "SpellDamageUnique__2", }, + ["(60-80)% increased spell damage if your opposite ring is an elder item"] = { "SpellDamageElderItemUnique__1_", }, + ["(60-80)% reduced duration"] = { "FlaskEffectDurationUnique__2", }, + ["(60-90)% increased unveiled modifier magnitudes"] = { "LocalVeiledModEffectUnique__1", }, + ["(600-1000)% more physical damage with unarmed melee attacks"] = { "FacebreakerUnarmedMoreDamage", }, + ["(65-75)% reduced amount recovered"] = { "FlaskFullInstantRecoveryUnique__1", }, + ["(65-75)% reduced fire resistance"] = { "ReducedFireResistanceUnique__2", }, + ["(7-10)% chance to block spell damage"] = { "SpellBlockPercentageUniqueTwoHandAxe6", }, + ["(7-10)% chance to freeze"] = { "ChanceToFreezeUniqueQuiver5", }, + ["(7-10)% increased attack speed"] = { "IncreasedAttackSpeedUniqueQuiver6", "LocalIncreasedAttackSpeedUniqueOneHandAxe7", "LocalIncreasedAttackSpeedUniqueOneHandSword6", }, + ["(7-10)% increased cooldown recovery rate of travel skills per frenzy charge"] = { "TravelSkillCooldownRecoveryPerFrenzyChargeUnique__1", }, + ["(7-10)% increased effect of elusive on you per power charge"] = { "ElusiveBuffEffectPerPowerChargeUnique__1", }, + ["(7-10)% increased elemental damage"] = { "ElementalDamageUnique__4", }, + ["(7-10)% increased fire damage per 1% fire resistance above 75%"] = { "VillageFireDamagePerResistanceAbove75", }, + ["(7-10)% increased maximum life"] = { "MaximumLifeUnique__18", }, + ["(7-10)% increased maximum mana"] = { "MaximumManaUnique__1", }, + ["(7-10)% increased projectile damage"] = { "IncreasedProjectileDamageUnique__2", "IncreasedProjectileDamageUnique__7", "IncreasedProjectileDamageUnique___3", "IncreasedProjectileDamageUnique___8", "IncreasedProjectileDamageUnique___9", }, + ["(7-10)% increased rage effect"] = { "VillageRageEffect", }, + ["(7-10)% increased skeleton attack speed"] = { "MaximumMinionCountUniqueJewel1", "SkeletonAttackSpeedUniqueJewel1", }, + ["(7-10)% increased skeleton cast speed"] = { "SkeletonCastSpeedUniqueJewel1", }, + ["(7-10)% more melee physical damage during effect"] = { "PhysicalDamageOnFlaskUseUniqueFlask9", }, + ["(7-10)% reduced flask charges used"] = { "BeltIncreasedFlaskChargedUsedUnique__2", }, + ["(7-12)% increased attack speed"] = { "IncreasedAttackSpeedUnique__4_", "LocalIncreasedAttackSpeedUniqueBow12", "LocalIncreasedAttackSpeedUniqueTwoHandAxe9", }, + ["(7-12)% increased cast speed"] = { "IncreasedCastSpeedUnique__21", }, + ["(7-12)% increased maximum life"] = { "MaximumLifeUnique__19", }, + ["(7-13)% chance to gain chaotic might for 10 seconds on kill"] = { "VillageChaoticMightOnKill", }, + ["(7-13)% increased cast speed"] = { "IncreasedCastSpeedUniqueWand11", }, + ["(7-13)% increased chaos damage"] = { "IncreasedChaosDamageUnique__3", }, + ["(7-14)% increased attack speed"] = { "IncreasedAttackSpeedUniqueQuiver10", }, + ["(7-9) to (13-14) fire damage per endurance charge"] = { "ChargeBonusAddedFireDamagePerEnduranceCharge", }, + ["(7-9)% chance to block spell damage"] = { "BlockingBlocksSpellsUnique__2", }, + ["(70-100)% increased charges per use"] = { "LocalFlaskChargesUsedUniqueFlask9", }, + ["(70-100)% increased elemental damage with melee weapons"] = { "TinctureElementalDamageImplicit1", }, + ["(70-100)% increased fire damage with hits and ailments against bleeding enemies"] = { "FireDamageVersusBleedingEnemiesUnique__1", }, + ["(70-100)% increased physical damage with hits and ailments against ignited enemies"] = { "PhysicalDamageVersusIgnitedEnemiesUnique__1", }, + ["(70-100)% increased spell damage"] = { "SpellDamageUnique__9", }, + ["(70-130)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__23_", }, + ["(70-80)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt6", }, + ["(70-80)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueBow7", }, + ["(70-80)% reduced duration"] = { "FlaskEffectDurationUnique__6", }, + ["(70-90)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__13", }, + ["(70-90)% increased fire damage"] = { "FireDamagePercentUniqueStaff1_", }, + ["(700-800)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__45", }, + ["(75-100)% increased damage with poison if you have at least 300 dexterity"] = { "PoisonDamageWithOver300DexterityUnique__1", }, + ["(75-100)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueClaw2", }, + ["(75-100)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUniqueGlovesInt5", }, + ["(75-150)% increased physical damage with ranged weapons"] = { "RangedWeaponPhysicalDamagePlusPercentUnique__1", }, + ["(75-90)% increased spell damage"] = { "SpellDamageUnique__5", }, + ["(8-10) to (14-16) added physical damage with bow attacks"] = { "AddedPhysicalDamageUniqueQuiver9", }, + ["(8-10)% increased attack speed"] = { "IncreasedAttackSpeedImplicitQuiver10New", "LocalIncreasedAttackSpeedUnique__10", }, + ["(8-10)% increased cast speed"] = { "IncreasedCastSpeedUnique__24", }, + ["(8-10)% increased maximum mana"] = { "MaximumManaImplicitAtlasRing_", }, + ["(8-12)% chance for traps to trigger an additional time"] = { "TrapTriggerTwiceChanceUnique__1", }, + ["(8-12)% chance to block attack damage"] = { "BlockPercentUnique__1", }, + ["(8-12)% chance to block spell damage"] = { "SpellBlockPercentageUniqueShieldDex6", }, + ["(8-12)% increased attack speed"] = { "IncreasedAttackSpeedUniqueGlovesDexInt_1", "IncreasedAttackSpeedUniqueQuiver3", "IncreasedAttackSpeedUniqueQuiver5", "IncreasedAttackSpeedUniqueQuiver7", "IncreasedAttackSpeedUniqueShieldInt5", "IncreasedAttackSpeedUnique__5", "LocalIncreasedAttackSpeedUniqueTwoHandMace8_", "LocalIncreasedAttackSpeedUnique__16", "LocalIncreasedAttackSpeedUnique__2", "LocalIncreasedAttackSpeedUnique__24", "LocalIncreasedAttackSpeedUnique__28", "LocalIncreasedAttackSpeedUnique__31", "LocalIncreasedAttackSpeedUnique__9", }, + ["(8-12)% increased attack speed if you've dealt a critical strike recently"] = { "AttackSpeedIfCriticalStrikeDealtRecentlyUnique__1", }, + ["(8-12)% increased burning damage for each time you have shocked a non-shocked enemy recently, up to a maximum of 120%"] = { "BurningDamagePerEnemyShockedRecentlyUnique__1_", }, + ["(8-12)% increased cast speed"] = { "IncreasedCastSpeedUniqueStaff12", "IncreasedCastSpeedUniqueTwoHandMace8", "IncreasedCastSpeedUnique__5", "IncreasedCastSpeedUnique__9", }, + ["(8-12)% increased cast speed if you've dealt a critical strike recently"] = { "CastSpeedIfCriticalStrikeDealtRecentlyUnique__1", }, + ["(8-12)% increased cooldown recovery rate"] = { "UniqueSpecialCorruptionCooldownRecoverySpeed__", }, + ["(8-12)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__16", }, + ["(8-12)% increased damage over time"] = { "DamageOverTimeUnique___1", "DegenerationDamageUnique__4__", }, + ["(8-12)% increased dexterity"] = { "PercentageDexterityUnique__3", }, + ["(8-12)% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUnique__1", "IncreasedPhysicalDamagePercentUnique__2", }, + ["(8-12)% increased intelligence"] = { "PercentageIntelligenceUnique__3", }, + ["(8-12)% increased maximum life"] = { "MaximumLifeUnique__1", "TalismanIncreasedLife", }, + ["(8-12)% increased maximum life if no equipped items are corrupted"] = { "IncreasedLifeWhileNoCorruptedItemsUnique__1", }, + ["(8-12)% increased minion damage per raised spectre"] = { "MinionDamagePerSpectre__1", }, + ["(8-12)% increased movement speed"] = { "MovementVelocityUnique__46", }, + ["(8-12)% increased quantity of items found during effect"] = { "FlaskItemQuantityUniqueFlask1", }, + ["(8-12)% increased spell damage"] = { "SpellDamageOnWeaponImplicitWand1", }, + ["(8-13)% increased attack speed"] = { "IncreasedAttackSpeedUnique_1", }, + ["(8-14)% increased attack speed"] = { "LocalIncreasedAttackSpeedUnique__11", "LocalIncreasedAttackSpeedUnique__12", "LocalIncreasedAttackSpeedUnique__18", }, + ["(8-14)% increased dexterity"] = { "TalismanIncreasedDexterity", }, + ["(8-14)% increased intelligence"] = { "TalismanIncreasedIntelligence", }, + ["(8-14)% increased strength"] = { "TalismanIncreasedStrength", }, + ["(8-15)% increased attack and cast speed while physical aegis is depleted"] = { "AttackAndCastSpeedWithoutPhysicalAegisUnique__1", }, + ["(8-15)% increased cast speed"] = { "IncreasedCastSpeedUnique__19__", }, + ["(8-16)% increased attack speed"] = { "IncreasedAttackSpeedUnique__8", }, + ["(80-100)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__15", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__9", }, + ["(80-100)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUnique__10_", "LocalIncreasedArmourAndEvasionUnique__2", }, + ["(80-100)% increased chaos damage"] = { "IncreasedChaosDamageUnique__2", }, + ["(80-100)% increased charges per use"] = { "FlaskChargesUsedUnique__6_", }, + ["(80-100)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUnique__14", }, + ["(80-100)% increased elemental damage"] = { "ElementalDamageUniqueSceptre7", }, + ["(80-100)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__6", "LocalIncreasedEnergyShieldPercentUnique___4_", "LocalIncreasedEnergyShieldUniqueShieldInt3", }, + ["(80-100)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__8", }, + ["(80-100)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBodyDex3", "LocalIncreasedEvasionRatingPercentUniqueBootsDex1", "LocalIncreasedEvasionRatingPercentUniqueDexHelmet2", "LocalIncreasedEvasionRatingPercentUniqueHelmetDex5", "LocalIncreasedEvasionRatingPercentUnique__5", "LocalIncreasedEvasionRatingPercentUnique__8", }, + ["(80-100)% increased lightning damage"] = { "WeaponLightningDamageUniqueOneHandMace3", }, + ["(80-100)% increased mana regeneration rate"] = { "ManaRegenerationUniqueAmulet10", "ManaRegenerationUnique__9___", }, + ["(80-100)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueBow2", "LocalIncreasedPhysicalDamagePercentUniqueClaw4", "LocalIncreasedPhysicalDamagePercentUniqueClaw5", "LocalIncreasedPhysicalDamagePercentUniqueDagger2", "LocalIncreasedPhysicalDamagePercentUniqueDagger3", "LocalIncreasedPhysicalDamagePercentUniqueSceptre1", "LocalIncreasedPhysicalDamagePercentUniqueStaff14", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe3", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace7", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword2", "LocalIncreasedPhysicalDamagePercentUnique__12", "LocalIncreasedPhysicalDamageUniqueOneHandSceptre10", }, + ["(80-100)% increased power charge duration"] = { "IncreasedPowerChargeDurationUnique__1", }, + ["(80-100)% increased rarity of items found with a normal item equipped"] = { "ItemRarityWhileWearingANormalItemUnique__1", }, + ["(80-100)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUniqueDagger1", }, + ["(80-100)% increased spell damage"] = { "SpellDamageUniqueHelmetInt8", }, + ["(80-100)% of damage taken recouped as life"] = { "DamageTakenGainedAsLifeUnique__2", }, + ["(80-120)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__26", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__29", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__31", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__37", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__6", }, + ["(80-120)% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt3", "LocalIncreasedArmourAndEnergyShieldUnique__16", "LocalIncreasedArmourAndEnergyShieldUnique__27", "LocalIncreasedArmourAndEnergyShieldUnique__5", }, + ["(80-120)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueBodyStrDex5", "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex5", "LocalIncreasedArmourAndEvasionUnique__23", "LocalIncreasedArmourAndEvasionUnique__27", }, + ["(80-120)% increased damage with vaal skills"] = { "VaalSkillDamageUnique__1", }, + ["(80-120)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__27", }, + ["(80-120)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__28", "LocalIncreasedEvasionAndEnergyShieldUnique__37", }, + ["(80-120)% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBootsDexInt1", }, + ["(80-120)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandMace3", "LocalIncreasedPhysicalDamagePercentUniqueSceptre5", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword5", }, + ["(80-120)% increased recovery rate"] = { "FlaskIncreasedRecoverySpeedUnique___1", }, + ["(80-120)% increased spell critical strike chance"] = { "SpellCriticalStrikeChanceUnique__5", }, + ["(80-120)% increased vaal skill critical strike chance"] = { "VaalSkillCriticalStrikeChanceCorruptedJewel6", }, + ["(80-130)% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUnique__29", }, + ["(80-140)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueWand9", }, + ["(80-90)% reduced amount recovered"] = { "FlaskLifeLeechIsInstantDuringEffect", }, + ["(80-95)% increased physical damage"] = { "LocalIncreasedPhysicalDamageUniqueOneHandSword11", }, + ["(9-15)% increased maximum mana"] = { "MaximumManaUnique__5", }, + ["(9-21)% increased maximum life, mana and global energy shield"] = { "MaximumLifeManaEnergyShieldUnique__1", }, + ["(90-105)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueBow3", }, + ["(90-110)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueGlovesStrDex6", }, + ["(90-110)% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueOneHandSword4", }, + ["(90-110)% increased evasion and energy shield"] = { "LocalIncreasedEvasionAndEnergyShieldUnique__2", }, + ["(90-110)% increased fire damage"] = { "FireDamagePercentUnique__15", }, + ["(90-120)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueBodyStrDex2", }, + ["(90-130)% increased armour and evasion"] = { "LocalIncreasedArmourAndEvasionUniqueShieldStrDex3", }, + ["(90-130)% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUnique__58", }, + ["(90-140)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique6", }, + ["(90-150)% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique8_", }, + ["+# accuracy rating per # intelligence"] = { "AccuracyPerIntelligenceUnique__1", }, + ["+# armour per summoned totem"] = { "ArmourPerTotemUnique__1", }, + ["+# armour while stationary"] = { "AddedArmourWhileStationaryUnique__1", }, + ["+# armour while you do not have avatar of fire"] = { "ArmourWithoutAvatarOfFireUnique__1", }, + ["+# dexterity requirement"] = { "DexterityRequirementsUnique__1", }, + ["+# intelligence requirement"] = { "AddedIntelligenceRequirementsUnique__1", "IntelligenceRequirementsUniqueBow12", "IntelligenceRequirementsUniqueOneHandMace3", "IntelligenceRequirementsUnique_1", }, + ["+# life per # dexterity"] = { "LifePerDexterityUnique__1", }, + ["+# life per #% increased rarity of items found"] = { "MaximumLifePerItemRarityUnique__1", }, + ["+# mana per # strength"] = { "ManaPerStrengthUnique__1__", }, + ["+# maximum energy shield per # strength"] = { "EnergyShieldPer5StrengthUnique__1", }, + ["+# metres to melee strike range"] = { "IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13", "IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42", }, + ["+# metres to melee strike range per white socket"] = { "MeleeRangePerWhiteSocketUniqueOneHandSword5", }, + ["+# metres to melee strike range while at maximum frenzy charges"] = { "MeleeWeaponRangeAtMaximumFrenzyChargesUber1_", }, + ["+# metres to melee strike range while fortified"] = { "MeleeWeaponRangeWhileFortifiedUber1", }, + ["+# metres to weapon range"] = { "LocalIncreasedMeleeWeaponRangeEssence1", "LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1", "LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5", "LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_", "LocalIncreasedMeleeWeaponRangeUnique__1", "LocalIncreasedMeleeWeaponRangeUnique___2", "VillageLocalMeleeWeaponRange", }, + ["+# physical damage taken from attack hits"] = { "TakesDamageWhenAttackedUniqueIntHelmet1", }, + ["+# prefix modifier allowed"] = { "MaxPrefixMaxSuffixImplicitE2_", "MaxPrefixMaxSuffixImplicitE4", }, + ["+# prefix modifiers allowed"] = { "MaxPrefixMaxSuffixImplicitE3", }, + ["+# second to summon skeleton cooldown"] = { "SummonSkeletonsCooldownTimeUnique__1", }, + ["+# seconds to cat's agility duration"] = { "CatsAgilityDurationUnique__1", }, + ["+# seconds to cat's stealth duration"] = { "CatsStealthDurationUnique__1_", }, + ["+# seconds to duration of frenzy and power charges on culling strike"] = { "ExtendFrenzyPowerChargeDurationCullUnique__1", }, + ["+# strength and intelligence requirement"] = { "StrengthIntelligenceRequirementsUnique__1", }, + ["+# strength requirement"] = { "StrengthRequirementsUniqueOneHandMace3", "StrengthRequirementsUnique__1", "StrengthRequirementsUnique__2", "StrengthRequirementsUnique__4", }, + ["+# to accuracy rating"] = { "AccuracyPerPointToClassStartUnique__1", "IncreasedAccuracy2hSwordImplicit1", "IncreasedAccuracy2hSwordImplicit2", "IncreasedAccuracy2hSwordImplicit3", "IncreasedAccuracy2hSwordImplicit4", "IncreasedAccuracy2hSwordImplicit5", "IncreasedAccuracy2hSwordImplicit6", "IncreasedAccuracy2hSwordImplicit7", "IncreasedAccuracy2hSwordImplicit8", "IncreasedAccuracy2hSwordImplicit9", "IncreasedAccuracySwordImplicit1", "IncreasedAccuracySwordImplicit2", "IncreasedAccuracySwordImplicit3", "IncreasedAccuracySwordImplicit4", "IncreasedAccuracySwordImplicit5", "IncreasedAccuracySwordImplicit6", "IncreasedAccuracySwordImplicit7", "IncreasedAccuracySwordImplicit8", "IncreasedAccuracySwordImplicit9", "IncreasedAccuracyUniqueAmulet5", "IncreasedAccuracyUniqueBow2", "IncreasedAccuracyUniqueDescentBow1", "IncreasedAccuracyUniqueRing17", "IncreasedAccuracyUniqueStrDexHelmet1", }, + ["+# to accuracy rating for each empty green socket on any equipped item"] = { "IncreasedAccuracyEmptyGreenSocketUnique__1", }, + ["+# to accuracy rating per # dexterity on unallocated passives in radius"] = { "AccuracyRatingPerUnallocatedDexterityUnique__1_", }, + ["+# to accuracy rating per # intelligence on unallocated passives in radius"] = { "AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1", }, + ["+# to all attributes"] = { "AllAttributesTestUniqueAmulet1", "AllAttributesUnique__13_", }, + ["+# to armour"] = { "ArmourPerPointToClassStartUnique__1", "IncreasedPhysicalDamageReductionRatingUniqueJewel9", "LocalIncreasedPhysicalDamageReductionRatingTransformedUnique__1", }, + ["+# to armour per # evasion rating on equipped shield"] = { "ArmourPerEvasionRatingOnShieldUnique__1", }, + ["+# to armour per endurance charge"] = { "ArmourPerEnduranceChargeUnique__1", }, + ["+# to armour while frozen"] = { "ArmourWhileFrozenUniqueRing18", }, + ["+# to dexterity"] = { "DexterityPerPointToClassStartUnique__1", "DexterityUniqueAmulet7", "DexterityUniqueBootsDex3", "DexterityUniqueBootsInt2", "DexterityUniqueBootsInt3", "DexterityUniqueDagger12", "DexterityUniqueGlovesStrDex3", "DexterityUniqueJewel8", "DexterityUniqueQuiver7", "DexterityUniqueRing3", "DexterityUnique__13", "DexterityUnique__9", }, + ["+# to dexterity and intelligence"] = { "DexterityIntelligenceUnique__1__", }, + ["+# to evasion rating"] = { "EvasionPerPointToClassStartUnique__1", "IncreasedEvasionRatingUniqueQuiver3_", "IncreasedEvasionRatingUnique__2", "IncreasedEvasionRatingUnique___1", }, + ["+# to evasion rating per # maximum energy shield on equipped shield"] = { "EvasionRatingPerEnergyShieldOnShieldUnique__1", }, + ["+# to evasion rating while on full life"] = { "EvasionOnFullLifeUniqueBodyDex4", "EvasionOnFullLifeUnique__1_", }, + ["+# to intelligence"] = { "IntelligencePerPointToClassStartUnique__1", "IntelligenceUniqueBootsDex3", "IntelligenceUniqueOneHandSword2", "IntelligenceUniqueWand1", "IntelligenceUnique__13", "IntelligenceUnique__5", }, + ["+# to level of all (#) gems"] = { "RandomSkillUnique__1", }, + ["+# to level of all chaos skill gems if # hunter items are equipped"] = { "GlobalChaosGemLevel6HunterItemsUnique__1", }, + ["+# to level of all chaos spell skill gems"] = { "GlobalChaosSpellGemsLevelUniqueWand_1", "LocalIncreaseSocketedChaosGemLevelUnique__1", "VillageGlobalIncreaseChaosSpellSkillGemLevel", }, + ["+# to level of all cold skill gems if # redeemer items are equipped"] = { "GlobalColdGemLevel6RedeemerItemsUnique__1", }, + ["+# to level of all cold spell skill gems"] = { "GlobalColdSpellGemsLevelUnique__1", "LocalIncreaseSocketedColdGemLevelUniqueStaff2", "VillageGlobalIncreaseColdSpellSkillGemLevel", }, + ["+# to level of all fire skill gems if # warlord items are equipped"] = { "GlobalFireGemLevel6WarlordItemsUnique__1", }, + ["+# to level of all fire spell skill gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueDagger10", "LocalIncreaseSocketedFireGemLevelUniqueStaff1", "VillageGlobalIncreaseFireSpellSkillGemLevel", }, + ["+# to level of all lightning skill gems if # crusader items are equipped"] = { "GlobalLightningGemLevel6CrusaderItemsUnique__1", }, + ["+# to level of all lightning spell skill gems"] = { "LocalIncreaseSocketedLightningGemLevelUniqueStaff8", "VillageGlobalIncreaseLightningSpellSkillGemLevel", }, + ["+# to level of all minion skill gems"] = { "GlobalIncreaseMinionSpellSkillGemLevelUnique__3", "GlobalIncreaseMinionSpellSkillGemLevelUnique__4", "VillageGlobalIncreaseMinionSpellSkillGemLevel", }, + ["+# to level of all non-exceptional support gems if # shaper items are equipped"] = { "GlobalSupportGemLevel6ShaperItemsUnique__1", }, + ["+# to level of all physical skill gems if # elder items are equipped"] = { "GlobalPhysicalGemLevel6ElderItemsUnique__1", }, + ["+# to level of all physical spell skill gems"] = { "GlobalPhysicalSpellGemsLevelUnique__1", "VillageGlobalIncreasePhysicalSpellSkillGemLevel", }, + ["+# to level of all raise zombie gems"] = { "MaximumMinionCountUniqueBootsInt4", }, + ["+# to level of all skill gems"] = { "GlobalSkillGemLevelUnique__1", }, + ["+# to level of all spell skill gems"] = { "GlobalSpellGemsLevelUnique__1", "LocalIncreaseSocketedGemLevelUnique___3", "VillageGlobalIncreaseSpellSkillGemLevel", }, + ["+# to level of all vaal skill gems"] = { "GlobalVaalGemsLevelImplicit1_", }, + ["+# to level of socketed aura gems"] = { "LocalIncreaseSocketedAuraGemLevelUniqueBodyDexInt4", "LocalIncreaseSocketedAuraGemLevelUniqueHelmetDex5", "LocalIncreaseSocketedAuraGemLevelUnique___1", "LocalIncreaseSocketedAuraGemLevelUnique___2___", "LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2", }, + ["+# to level of socketed bow gems"] = { "LocalIncreaseSocketedBowGemLevelUniqueBow2", }, + ["+# to level of socketed cold gems"] = { "LocalIncreaseSocketedColdGemLevelUniqueClaw5", "LocalIncreaseSocketedColdGemLevelUniqueDexHelmet2", "LocalIncreaseSocketedColdGemLevelUniqueStaff13", "LocalIncreaseSocketedColdGemLevelUnique__1", }, + ["+# to level of socketed curse gems"] = { "IncreaseSocketedCurseGemLevelUniqueHelmetInt9", "IncreaseSocketedCurseGemLevelUniqueShieldDex4", "IncreaseSocketedCurseGemLevelUnique__1", "IncreaseSocketedCurseGemLevelUnique__2", }, + ["+# to level of socketed dexterity gems"] = { "LocalIncreaseSocketedDexterityGemLevelUniqueClaw8", }, + ["+# to level of socketed elemental gems"] = { "LocalIncreaseSocketedElementalGemUniqueGlovesInt6", "LocalIncreaseSocketedElementalGemUnique___1", }, + ["+# to level of socketed fire gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueBodyInt4", "LocalIncreaseSocketedFireGemLevelUniqueDexHelmet2", "LocalIncreaseSocketedFireGemLevelUniqueStaff13", "LocalIncreaseSocketedFireGemLevelUnique__1_", "LocalIncreaseSocketedFireGemLevelUnique__2", }, + ["+# to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5", "LocalIncreaseSocketedGemLevelUniqueHelmetStrDex6", "LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2", "LocalIncreaseSocketedGemLevelUniqueRing23", "LocalIncreaseSocketedGemLevelUniqueRing39", "LocalIncreaseSocketedGemLevelUniqueSceptre1", "LocalIncreaseSocketedGemLevelUniqueTwoHandAxe9", "LocalIncreaseSocketedGemLevelUniqueWand8", "LocalIncreaseSocketedGemLevelUnique__1", "LocalIncreaseSocketedGemLevelUnique__11_", "LocalIncreaseSocketedGemLevelUnique__2", "LocalIncreaseSocketedGemLevelUnique__4", "LocalIncreaseSocketedGemLevelUnique__5", "LocalIncreaseSocketedGemLevelUnique__6", "LocalIncreaseSocketedGemLevelUnique__7", "LocalIncreaseSocketedGemLevelUnique__8", "UniqueSpecialCorruptionSocketedGemLevel", }, + ["+# to level of socketed golem gems"] = { "LocalIncreaseSocketedGolemLevelUniqueRing35", "LocalIncreaseSocketedGolemLevelUniqueRing36", "LocalIncreaseSocketedGolemLevelUniqueRing37", }, + ["+# to level of socketed herald gems"] = { "LocalIncreaseSocketedHeraldLevelUnique__1_", "LocalIncreaseSocketedHeraldLevelUnique__2", }, + ["+# to level of socketed melee gems"] = { "LocalIncreaseSocketedMeleeGemLevelUniqueRapier1", "LocalIncreaseSocketedMeleeGemLevelUniqueTwoHandMace5", "VillageLocalIncreaseSocketedMeleeGemLevel", }, + ["+# to level of socketed minion gems"] = { "LocalIncreaseSocketedMinionGemLevelUniqueShieldInt2", "LocalIncreaseSocketedMinionGemLevelUniqueTwoHandMace5", "LocalIncreaseSocketedMinionGemLevelUnique__1", "LocalIncreaseSocketedMinionGemLevelUnique__2_", "LocalIncreaseSocketedMinionGemLevelUnique__3", "LocalIncreaseSocketedMinionGemLevelUnique__4", "LocalIncreaseSocketedMinionGemLevelUnique__5____", }, + ["+# to level of socketed movement gems"] = { "LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5", }, + ["+# to level of socketed projectile gems"] = { "LocalIncreaseSocketedProjectileGemLevel1", }, + ["+# to level of socketed skill gems"] = { "LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_", "LocalIncreaseSocketedActiveSkillGemLevelUnique__1", }, + ["+# to level of socketed skill gems per # player levels"] = { "SocketedGemLevelPer25PlayerLevelsUnique__1", }, + ["+# to level of socketed spell gems"] = { "LocalIncreaseSocketedSpellGemLevel1", "LocalIncreaseSocketedSpellGemLevelUniqueWand4", "LocalIncreaseSocketedSpellGemLevelUnique__1", }, + ["+# to level of socketed strength gems"] = { "LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3", }, + ["+# to level of socketed support gems"] = { "LocalIncreaseSocketedSupportGemLevelUniqueStaff12", "LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7", "LocalIncreaseSocketedSupportGemLevelUnique__1", }, + ["+# to level of socketed vaal gems"] = { "LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4", "LocalIncreaseSocketedVaalGemLevelUnique__1", }, + ["+# to level of socketed warcry gems"] = { "LocalIncreaseSocketedWarcryGemLevelUniqueShieldDex7", "LocalIncreaseSocketedWarcryGemLevelUniqueShieldInt5", "LocalIncreaseSocketedWarcryGemLevelUniqueShieldStr4", }, + ["+# to maximum charges"] = { "FlaskExtraChargesUnique__1", "FlaskExtraChargesUnique__4", }, + ["+# to maximum charges. # to this value when used"] = { "HarvestFlaskEnchantmentMaximumChargesLoweredOnUse3_", }, + ["+# to maximum divine charges"] = { "DivineChargeOnHitUnique__1_", }, + ["+# to maximum endurance charges"] = { "ChargeBonusMaximumEnduranceCharges", "MaximumEnduranceChargeUniqueBodyStr3", "MaximumEnduranceChargeUniqueBodyStrDex3", "MaximumEnduranceChargeUniqueRing2", "MaximumEnduranceChargeUnique__1_", "MaximumEnduranceChargeUnique__2", }, + ["+# to maximum endurance charges if # warlord items are equipped"] = { "MaximumEnduranceCharges6WarlordItemsUnique__1", }, + ["+# to maximum energy shield"] = { "EnergyShieldPerPointToClassStartUnique__1", "IncreasedEnergyShieldUniqueDagger4", "IncreasedEnergyShieldUniqueGlovesInt6", "IncreasedEnergyShieldUnique__2", "IncreasedEnergyShieldUnique__6", "LocalIncreasedEnergyShieldUniqueGlovesInt1", "LocalIncreasedEnergyShieldUniqueGlovesInt2", "LocalIncreasedEnergyShieldUnique__13_", "LocalIncreasedEnergyShieldUnique___4", }, + ["+# to maximum energy shield per # armour on equipped shield"] = { "EnergyShieldPerArmourOnShieldUnique__1", }, + ["+# to maximum energy shield per # reserved life"] = { "MaximumEnergyShieldPerReservedLifeUnique__1", }, + ["+# to maximum energy shield per blue socket"] = { "EnergyShieldPerBlueSocket", "EnergyShieldPerBlueSocketUniqueRing39", }, + ["+# to maximum fortification per endurance charge"] = { "MaximumFortificationPerEnduranceChargeUnique__1", }, + ["+# to maximum fortification while affected by glorious madness"] = { "FortifyEffectSelfGloriousMadnessUnique1", }, + ["+# to maximum fortification while stationary"] = { "FortifyEffectWhileStationaryUber1", }, + ["+# to maximum frenzy charges"] = { "ChargeBonusMaximumFrenzyCharges", "MaximumFrenzyChargesUniqueBodyStr3", "MaximumFrenzyChargesUniqueBootsStrDex2_", "MaximumFrenzyChargesUniqueDescentOneHandSword1", "MaximumFrenzyChargesUnique__1", }, + ["+# to maximum frenzy charges if # redeemer items are equipped"] = { "MaximumFrenzyCharges6RedeemerItemsUnique__1", }, + ["+# to maximum life"] = { "IncreasedLifeUniqueBodyStr1", "IncreasedLifeUniqueBootsInt4", "IncreasedLifeUniqueDescentHelmet1", "IncreasedLifeUniqueDescentShield1", "IncreasedLifeUniqueOneHandMace7", "IncreasedLifeUniqueTwoHandAxe4", "IncreasedLifeUnique__104_", "IncreasedLifeUnique__87", "LifePerPointToClassStartUnique__1_", }, + ["+# to maximum life for each empty red socket on any equipped item"] = { "IncreasedLifeEmptyRedSocketUnique__1", }, + ["+# to maximum life per # dexterity"] = { "MaximumLifePer10DexterityUnique__1", }, + ["+# to maximum life per # intelligence"] = { "IncreasedLifePerIntelligenceUnique__1", "LifePer10IntelligenceUnique__1", }, + ["+# to maximum life per elder item equipped"] = { "IncreasedLifePerElderItemUnique__1", }, + ["+# to maximum life per red socket"] = { "LifePerRedSocket", "LifePerRedSocketUniqueRing39", }, + ["+# to maximum mana"] = { "IncreasedManaUniqueAmulet10", "IncreasedManaUniqueBootsInt4", "IncreasedManaUniqueOneHandMace7", "IncreasedManaUnique__19", "IncreasedManaUnique__2", "ManaPerPointToClassStartUnique__1", }, + ["+# to maximum mana for each empty blue socket on any equipped item"] = { "IncreasedManaEmptyBlueSocketUnique__1", }, + ["+# to maximum mana per # dexterity on unallocated passives in radius"] = { "FlatManaPerUnallocatedDexterityJewelUnique__1", }, + ["+# to maximum mana per # intelligence"] = { "GainManaPer2IntelligenceUnique_1", }, + ["+# to maximum mana per green socket"] = { "ManaPerGreenSocket", "ManaPerGreenSocketUniqueRing39", }, + ["+# to maximum number of crab barriers"] = { "MaximumCrabBarriersUnique__1", }, + ["+# to maximum number of raging spirits"] = { "ExtraRagingSpiritsUnique__1", }, + ["+# to maximum number of raised spectres per socketed ghastly eye jewel"] = { "MaximumSpectrePerGhastlyEyeUnique__1", }, + ["+# to maximum number of raised zombies"] = { "MaximumMinionCountUniqueTwoHandSword4", "MaximumMinionCountUniqueWand2", "MaximumMinionCountUniqueWand2Updated", "TalismanAdditionalZombie", }, + ["+# to maximum number of raised zombies per # strength"] = { "AdditionalZombiesPerXStrengthUnique__1", }, + ["+# to maximum number of sacred wisps"] = { "AdditionalSacredWispUnique__1", }, + ["+# to maximum number of skeletons"] = { "MaximumMinionCountUniqueBootsStrInt2", "MaximumMinionCountUniqueBootsStrInt2Updated", }, + ["+# to maximum number of spectres"] = { "MaximumMinionCountUniqueBodyInt9", "MaximumMinionCountUniqueSceptre5", "MaximumMinionCountUnique__1__", "MaximumMinionCountUnique__2", }, + ["+# to maximum number of summoned golems"] = { "MaximumGolemsUnique__1", "MaximumGolemsUnique__2", "MaximumGolemsUnique__3", "VillageMaximumGolems", }, + ["+# to maximum number of summoned golems if you have # primordial items socketed or equipped"] = { "GolemPerPrimordialJewel", }, + ["+# to maximum number of summoned holy relics"] = { "AdditionalHolyRelicUnique__1", }, + ["+# to maximum number of summoned phantasms"] = { "ExtraMaximumPhantasmsUnique__1", }, + ["+# to maximum number of summoned totems"] = { "AdditionalTotemsUnique__1", }, + ["+# to maximum power charges"] = { "ChargeBonusMaximumPowerCharges", "IncreasedMaximumPowerChargesUniqueStaff7", "IncreasedMaximumPowerChargesUniqueWand3", "IncreasedMaximumPowerChargesUnique__1", "IncreasedMaximumPowerChargesUnique__2", "IncreasedMaximumPowerChargesUnique__3", "IncreasedMaximumPowerChargesUnique__4", }, + ["+# to maximum power charges and maximum endurance charges"] = { "MaximumPowerandEnduranceChargesImplicitE1", }, + ["+# to maximum power charges if # crusader items are equipped"] = { "IncreasedMaximumPowerCharges6CrusaderItemsUnique__1", }, + ["+# to maximum rage"] = { "MaximumRageImplicitE1", "MaximumRageImplicitE2", "MaximumRageImplicitE3", "MaximumRageUnique__1", "MaximumRageUnique__2", }, + ["+# to maximum rage while wielding a sword"] = { "MaxRagePerEquippedSwordUnique__1____", }, + ["+# to maximum siphoning charges per elder or shaper item equipped"] = { "MaximumSiphoningChargePerElderOrShaperItemUnique__1", }, + ["+# to maximum snipe stages"] = { "AdditionalMaxStackSnipeUnique", }, + ["+# to maximum spirit charges per abyss jewel affecting you"] = { "MaximumSpiritChargesPerAbyssJewelEquippedUnique__1", "MaximumSpiritChargesPerAbyssJewelEquippedUnique__2", }, + ["+# to minimum endurance charges per grand spectrum"] = { "MinimumEnduranceChargesPerStackableJewelUnique__1", }, + ["+# to minimum endurance charges while on low life"] = { "MinimumEnduranceChargeOnLowLifeUnique__1", }, + ["+# to minimum endurance, frenzy and power charges"] = { "UniqueSpecialCorruptionAllMinCharges", }, + ["+# to minimum frenzy charges per grand spectrum"] = { "MinimumFrenzyChargesPerStackableJewelUnique__1", }, + ["+# to minimum power charges per grand spectrum"] = { "MinimumPowerChargesPerStackableJewelUnique__1", }, + ["+# to minimum power charges while on low life"] = { "MinimumPowerChargeOnLowLifeUnique__1", }, + ["+# to number of summoned arbalists"] = { "SummonArbalistNumberOfArbalistsAllowed", }, + ["+# to spectre maximum life"] = { "SpectreLifeUnique__1___", }, + ["+# to strength"] = { "StrengthPerPointToClassStartUnique__1", "StrengthUniqueBelt4", "StrengthUniqueDagger2", "StrengthUniqueGlovesStr2", "StrengthUniqueGlovesStrDex3", "StrengthUniqueHelmetDexInt1", "StrengthUniqueTwoHandAxe5", "StrengthUniqueTwoHandMace1", "StrengthUnique__1", "StrengthUnique__12", "StrengthUnique__15", "StrengthUnique__20_", "StrengthUnique__4", }, + ["+# to strength and dexterity"] = { "StrengthDexterityImplicitSword_1", "StrengthDexterityUnique__1", }, + ["+# to strength and intelligence"] = { "StrengthIntelligenceUnique__1", }, + ["+# to total mana cost of skills"] = { "IncreaseGlobalFlatManaCostUnique__1", }, + ["+#% chance to be frozen, shocked and ignited"] = { "ChanceToBeFrozenShockedIgnitedUnique__1", }, + ["+#% chance to be ignited"] = { "IncreasedChanceToBeIgnitedUniqueRing24", "IncreasedChanceToBeIgnitedUnique__1", }, + ["+#% chance to be poisoned"] = { "ChanceToBePoisonedUnique__1", }, + ["+#% chance to be shocked"] = { "ChanceToBeShockedUnique__1", "ChanceToBeShockedUnique__2", }, + ["+#% chance to block"] = { "AdditionalBlockChanceUniqueDescentShield1_", "AdditionalBlockChanceUniqueShieldDex1", "AdditionalBlockChanceUniqueShieldDex2", "AdditionalBlockChanceUniqueShieldDex4", "AdditionalBlockChanceUniqueShieldDex5", "AdditionalBlockChanceUniqueShieldInt4", "AdditionalBlockChanceUniqueShieldStr1", "AdditionalBlockChanceUniqueShieldStr4", "AdditionalBlockChanceUniqueShieldStrDex2", "AdditionalBlockChanceUniqueShieldStrInt4", "AdditionalBlockChanceUniqueShieldStrInt6", "AdditionalBlockChanceUnique__11", "AdditionalBlockChanceUnique__2", "AdditionalBlockChanceUnique__4", "AdditionalBlockChanceUnique__5", }, + ["+#% chance to block attack damage"] = { "AdditionalBlockUniqueBodyDex2", }, + ["+#% chance to block attack damage from cursed enemies"] = { "BlockChanceVersusCursedEnemiesUnique__1", }, + ["+#% chance to block attack damage from taunted enemies"] = { "AdditionalChanceToBlockAgainstTauntedEnemiesUnique_1", }, + ["+#% chance to block attack damage if you have blocked spell damage recently"] = { "AttackBlockIfBlockedSpellRecentlyUnique__1_", }, + ["+#% chance to block attack damage if you've dealt a critical strike recently"] = { "AdditionalBlockChanceIfCritRecentlyUber1__", }, + ["+#% chance to block attack damage per # strength"] = { "BlockChancePer50StrengthUnique__1", }, + ["+#% chance to block attack damage per endurance charge"] = { "ChargeBonusBlockChancePerEnduranceCharge", }, + ["+#% chance to block attack damage per frenzy charge"] = { "ChargeBonusBlockChancePerFrenzyCharge_", }, + ["+#% chance to block attack damage per power charge"] = { "ChargeBonusBlockChancePerPowerCharge_", }, + ["+#% chance to block attack damage per summoned skeleton"] = { "AttackBlockPerSkeletonUnique__1", }, + ["+#% chance to block attack damage when in off hand"] = { "AdditionalChanceToBlockInOffHandUnique_1", }, + ["+#% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUniqueDagger3", "BlockWhileDualWieldingUniqueDagger9", "BlockWhileDualWieldingUniqueOneHandSword5", "BlockWhileDualWieldingUnique__1", "BlockWhileDualWieldingUnique__2_", }, + ["+#% chance to block attack damage while dual wielding claws"] = { "BlockWhileDualWieldingClawsUniqueClaw1", }, + ["+#% chance to block attack damage while holding a shield"] = { "ShieldBlockChanceUniqueAmulet16", }, + ["+#% chance to block attack damage while not cursed"] = { "AdditionalBlockWhileNotCursedUnique__1", }, + ["+#% chance to block attack damage while on consecrated ground"] = { "BlockChanceOnConsecratedGroundUnique__1", }, + ["+#% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentImplicitStaff1", "StaffBlockPercentImplicitStaff2", "StaffBlockPercentImplicitStaff3", "StaffBlockPercentUniqueStaff7", "StaffBlockPercentUniqueStaff9", "StaffBlockPercentUnique__1", "StaffBlockPercentUnique__2_", "StaffBlockPercentUnique__4_", "StaffBlockPercentUnique__5", }, + ["+#% chance to block attack damage while you have at least # crab barriers"] = { "AdditionalBlockChance10CrabBarriersUnique__1", "AdditionalBlockChance5CrabBarriersUnique__1", }, + ["+#% chance to block projectile attack damage"] = { "BlockVsProjectilesUniqueShieldStr2", }, + ["+#% chance to block spell damage if you have blocked attack damage recently"] = { "SpellBlockIfBlockedAttackRecentlyUnique__1", }, + ["+#% chance to block spell damage per power charge"] = { "ChanceToBlockSpellsPerPowerChargeUnique__1", "ChanceToBlockSpellsPerPowerChargeUnique__2_", }, + ["+#% chance to block spell damage while cursed"] = { "AdditionalSpellBlockWhileCursedUnique__1", }, + ["+#% chance to block spell damage while on low life"] = { "SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_", }, + ["+#% chance to block spell damage while wielding a staff"] = { "StaffSpellBlockPercent2", "StaffSpellBlockPercent3", "StaffSpellBlockPercentImplicitStaff__1", }, + ["+#% chance to suppress spell damage"] = { "ChanceToDodgeImplicitShield1", "ChanceToDodgeImplicitShield2", "ChanceToDodgeSpellsImplicitShield1", "ChanceToDodgeSpellsImplicitShield2", "ChanceToDodgeSpellsUniqueBodyDex1", "ChanceToDodgeSpellsUnique__2", "ChanceToDodgeUniqueBodyDex1", "ChanceToDodgeUniqueBootsDex7", "ChanceToDodgeUniqueJewel46", "ChanceToSuppressSpellsUniqueBodyDex1", "ChanceToSuppressSpellsUniqueJewel46", "ChanceToSuppressSpellsUnique__1", }, + ["+#% chance to suppress spell damage per endurance charge"] = { "ChargeBonusDodgeChancePerEnduranceCharge", }, + ["+#% chance to suppress spell damage per frenzy charge"] = { "ChanceToDodgePerFrenzyChargeUniqueBootsStrDex2", "ChargeBonusDodgeChancePerFrenzyCharge", }, + ["+#% chance to suppress spell damage per power charge"] = { "ChargeBonusDodgeChancePerPowerCharge", }, + ["+#% critical strike chance per power charge"] = { "AdditionalCriticalStrikeChancePerPowerChargeUnique__1", }, + ["+#% global critical strike multiplier while you have no frenzy charges"] = { "GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1", }, + ["+#% to all elemental resistances"] = { "AllResistancesDescentUniqueQuiver1", "AllResistancesImplicitShield1", "AllResistancesImplicitShield2", "AllResistancesImplicitShield3", "AllResistancesUniqueAmulet2", "AllResistancesUniqueBodyStrInt2", "AllResistancesUniqueBootsInt5", "AllResistancesUniqueGlovesStrDex2", "AllResistancesUniqueIntHelmet3", "AllResistancesUniqueJewel8", "AllResistancesUniqueRing9", "AllResistancesUniqueShieldStrInt2", "AllResistancesUniqueShieldStrInt4", "AllResistancesUnique__1", "AllResistancesUnique__13", }, + ["+#% to all elemental resistances for each empty white socket on any equipped item"] = { "AllResistEmptyWhiteSocketUnique__1", }, + ["+#% to all elemental resistances per # devotion"] = { "ElementalResistancesPerDevotion", }, + ["+#% to all elemental resistances per # omniscience"] = { "ElementalResistPerAscendanceUnique__1__", }, + ["+#% to all elemental resistances per endurance charge"] = { "ElementalResistancePerEnduranceChargeDescentShield1", }, + ["+#% to all elemental resistances per grand spectrum"] = { "AllResistancePerStackableJewelUnique__1", }, + ["+#% to all elemental resistances while on low life"] = { "ElementalResistsOnLowLifeUniqueHelmetStrInt1", }, + ["+#% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__3", }, + ["+#% to all maximum elemental resistances during effect"] = { "FlaskMaximumElementalResistancesUniqueFlask1", }, + ["+#% to all maximum resistances"] = { "IncreasedMaximumResistsUniqueShieldStrInt1", }, + ["+#% to all maximum resistances while poisoned"] = { "MaximumResistancesWhilePoisonedUnique__1", }, + ["+#% to all maximum resistances while you have no endurance charges"] = { "MaximumResistanceWithNoEnduranceChargesUnique__1__", }, + ["+#% to chaos resistance"] = { "ChaosResistUnique__1", "ChaosResistUnique__26", "ChaosResistUnique__5", }, + ["+#% to chaos resistance during any flask effect"] = { "ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3", }, + ["+#% to chaos resistance per endurance charge"] = { "ChaosResistancePerEnduranceChargeUnique__1_", "ChargeBonusChaosResistancePerEnduranceCharge_", }, + ["+#% to chaos resistance per poison on you"] = { "ChaosResistancePerPoisonOnSelfUnique__1", }, + ["+#% to chaos resistance while stationary"] = { "ChaosResistanceWhileStationaryUnique__1", }, + ["+#% to cold damage over time multiplier"] = { "ColdDamageOverTimeMultiplierUnique__2", }, + ["+#% to cold resistance"] = { "ColdResistUniqueAmulet3", "ColdResistUniqueBootsDex8", "ColdResistUniqueBootsDexInt2", "ColdResistUniqueGlovesStrDex4", "ColdResistUniqueShieldDex1", "ColdResistUniqueStrHelmet2", "ColdResistUnique__5", }, + ["+#% to critical strike chance while affected by aspect of the cat"] = { "AdditionalCriticalStrikeChanceWithCatAspectUnique__1", }, + ["+#% to critical strike multiplier if you haven't dealt a critical strike recently"] = { "CriticalStrikeMultiplierIfHaventCritRecentlyUber1", }, + ["+#% to critical strike multiplier if you've dealt a non-critical strike recently"] = { "CritMultiIfDealtNonCritRecentlyUnique__1", "CritMultiIfDealtNonCritRecentlyUnique__2", }, + ["+#% to critical strike multiplier per # strength on unallocated passives in radius"] = { "CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_", "CriticalStrikeMultiplierPerUnallocatedStrengthUnique__1", }, + ["+#% to critical strike multiplier per #% chance to block attack damage"] = { "CriticalMultiplierPerBlockChanceUnique__1", }, + ["+#% to critical strike multiplier per power charge"] = { "ChargeBonusCriticalStrikeMultiplierPerPowerCharge", }, + ["+#% to damage over time multiplier for ailments per elder item equipped"] = { "AilmentDamageOverTimeMultiplierPerElderItemUnique__1", }, + ["+#% to damage over time multiplier for bleeding"] = { "BleedDotMultiplier2HImplicit1", }, + ["+#% to damage over time multiplier for bleeding per frenzy charge"] = { "BleedDotMultiplierPerFrenzyChargeUnique__1_", }, + ["+#% to damage over time multiplier for poison per frenzy charge"] = { "PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5", }, + ["+#% to damage over time multiplier per # intelligence on unallocated passives in radius"] = { "DamageOverTimeMultiplierPerUnallocatedIntelligenceUnique__1___", }, + ["+#% to elemental resistances during effect"] = { "FlaskElementalResistancesUniqueFlask1_", }, + ["+#% to fire damage over time multiplier"] = { "BurningArrowThresholdJewelUnique__1", }, + ["+#% to fire resistance"] = { "FireResistUniqueAmulet7", "FireResistUniqueBelt3", }, + ["+#% to fire resistance while on low life"] = { "FireResistOnLowLifeUniqueShieldStrInt5", }, + ["+#% to global critical strike multiplier"] = { "CriticalMultiplierImplicitSword1", "CriticalMultiplierImplicitSword2", "CriticalMultiplierImplicitSword2H1", "CriticalMultiplierImplicitSword3", "CriticalMultiplierImplicitSwordM2", "CriticalMultiplierUniqueDescentDagger1", "CriticalMultiplierUniqueGlovesDexInt2", "CriticalMultiplierUniqueGlovesDexInt4", "CriticalMultiplierUniqueHelmetStr3", "LocalCriticalMultiplierUniqueBow3", "LocalCriticalMultiplierUniqueClaw2", "NearbyAlliesHaveCriticalStrikeMultiplierUnique__1", }, + ["+#% to global critical strike multiplier per green socket"] = { "CriticalStrikeMultiplierPerGreenSocketUnique_1", }, + ["+#% to lightning resistance"] = { "LightningResistUniqueDescentTwoHandSword1", "LightningResistUniqueShieldDex2", "LightningResistUniqueShieldInt1", "LightningResistUniqueStrDexHelmet1", "LightningResistUnique__23_", }, + ["+#% to maximum chance to block attack damage"] = { "MaximumBlockChanceUniqueAmulet16", }, + ["+#% to maximum chance to block attack damage if # elder items are equipped"] = { "MaximumBlockChance4ElderItemsUnique__1", }, + ["+#% to maximum chance to block spell damage if # shaper items are equipped"] = { "MaximumSpellBlockChance4ShaperItemsUnique__1", }, + ["+#% to maximum chaos resistance"] = { "ChayulaBreachRingImplicit", "MaxChaosResistanceCrushedImplicitR1", "MaxChaosResistanceCrushedImplicitR2", "MaxChaosResistanceCrushedImplicitR3", }, + ["+#% to maximum cold resistance"] = { "IncreasedMaximumColdResistUniqueShieldStrInt4", "MaximumColdResistUniqueShieldDex1", "MaximumColdResistUnique__2", "TulBreachRingImplicit", }, + ["+#% to maximum cold resistance while affected by herald of ice"] = { "HeraldBonusMaxColdResist__", }, + ["+#% to maximum effect of shock"] = { "MaximumShockOverrideUniqueBow10", "VillageMaximumShock", }, + ["+#% to maximum fire resistance"] = { "MaximumFireResistUniqueShieldStrInt5", "XophBreachRingImplicit", }, + ["+#% to maximum fire resistance while affected by herald of ash"] = { "HeraldBonusAshMaxFireResist", }, + ["+#% to maximum lightning resistance"] = { "EshBreachRingImplicit", "MaximumLightningResistUniqueStaff8c", }, + ["+#% to maximum lightning resistance while affected by herald of thunder"] = { "HeraldBonusThunderMaxLightningResist", }, + ["+#% to maximum quality"] = { "LocalMaximumQualityImplicitE1", "LocalMaximumQualityImplicitE2", "LocalMaximumQualityImplicitE3", }, + ["+#% to off hand critical strike chance per # maximum energy shield on shield"] = { "SpectralShieldThrowThresholdJewel1_", }, + ["+#% to off hand critical strike multiplier per"] = { "OffHandCriticalStrikeMultiplierPerMeleeAbyssJewelUnique__1__", }, + ["+#% to off hand critical strike multiplier per # maximum energy shield on shield"] = { "SpectralShieldThrowThresholdJewel2", }, + ["+#% to quality of socketed gems"] = { "SocketedGemQualityUnique__2_", }, + ["+#% to quality of socketed support gems"] = { "IncreaseSocketedSupportGemQualityUnique__2", }, + ["+#% to unarmed melee attack critical strike chance"] = { "BaseUnarmedCriticalStrikeChanceUnique__1", }, + ["+(#) armour if you've blocked recently"] = { "GainArmourIfBlockedRecentlyUnique__1", }, + ["+(#) energy shield gained on killing a shocked enemy"] = { "GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4", "GainEnergyShieldOnKillShockedEnemyUnique__1_", }, + ["+(#) mana gained on killing a frozen enemy"] = { "GainManaOnKillingFrozenEnemyUnique__1", }, + ["+(#) maximum energy shield per level"] = { "EnergyShieldPerLevelUnique__1", }, + ["+(#) maximum life per level"] = { "LifePerLevelUnique__1", }, + ["+(#) maximum mana per level"] = { "ManaPerLevelUnique__1", }, + ["+(#) metres to melee strike range with unarmed attacks"] = { "UnarmedStrikeRangeUniqueJewel__1_", "UnarmedStrikeRangeUnique__1", }, + ["+(#) seconds to avian's flight duration"] = { "AviansFlightDurationUnique__1", }, + ["+(#) seconds to avian's might duration"] = { "AviansMightDurationUnique__1", }, + ["+(#) strength requirement"] = { "StrengthRequirementsUnique__3_", }, + ["+(#) to accuracy rating"] = { "AccuracyAgainstBleedingEnemiesUnique__1", "IncreasedAccuracyUniqueAmulet17_", "IncreasedAccuracyUniqueAmulet7", "IncreasedAccuracyUniqueBow4", "IncreasedAccuracyUniqueBow7", "IncreasedAccuracyUniqueGlovesDexInt1", "IncreasedAccuracyUniqueHelmetInt7", "IncreasedAccuracyUniqueOneHandSword9", "IncreasedAccuracyUniqueRing12", "IncreasedAccuracyUniqueSceptre8", "IncreasedAccuracyUniqueTwoHandAxe1", "IncreasedAccuracyUniqueTwoHandAxe5", "IncreasedAccuracyUniqueTwoHandSword1", "IncreasedAccuracyUniqueTwoHandSword7", "IncreasedAccuracyUniqueWand6", "IncreasedAccuracyUnique__1", "IncreasedAccuracyUnique__10", "IncreasedAccuracyUnique__2", "IncreasedAccuracyUnique__3", "IncreasedAccuracyUnique__4", "IncreasedAccuracyUnique__5", "IncreasedAccuracyUnique__6", "IncreasedAccuracyUnique__7_", "IncreasedAccuracyUnique__8", "LocalIncreasedAccuracyUnique__1", "LocalIncreasedAccuracyUnique__3", "LocalIncreasedAccuracyUnique__4", "LocalIncreasedAccuracyUnique__5", }, + ["+(#) to accuracy rating while at maximum frenzy charges"] = { "AccuracyRatingWithMaxFrenzyChargesUnique__1", }, + ["+(#) to all attributes"] = { "AllAttributesImplicitAmulet1", "AllAttributesImplicitDemigodOneHandSword1", "AllAttributesImplicitDemigodRing1", "AllAttributesImplicitWreath1", "AllAttributesUniqueAmulet22", "AllAttributesUniqueAmulet8", "AllAttributesUniqueAmulet9", "AllAttributesUniqueBelt3", "AllAttributesUniqueBodyStr3", "AllAttributesUniqueHelmetStr3", "AllAttributesUniqueHelmetStrInt5", "AllAttributesUniqueRing26", "AllAttributesUniqueRing6", "AllAttributesUniqueStaff10", "AllAttributesUniqueTwoHandMace7", "AllAttributesUnique__1", "AllAttributesUnique__10_", "AllAttributesUnique__11", "AllAttributesUnique__12", "AllAttributesUnique__14", "AllAttributesUnique__15", "AllAttributesUnique__16_", "AllAttributesUnique__17_", "AllAttributesUnique__18", "AllAttributesUnique__19", "AllAttributesUnique__2", "AllAttributesUnique__20", "AllAttributesUnique__21", "AllAttributesUnique__22_", "AllAttributesUnique__23", "AllAttributesUnique__24", "AllAttributesUnique__25", "AllAttributesUnique__26", "AllAttributesUnique__27", "AllAttributesUnique__28", "AllAttributesUnique__29", "AllAttributesUnique__3", "AllAttributesUnique__30", "AllAttributesUnique__31", "AllAttributesUnique__4", "AllAttributesUnique__5", "AllAttributesUnique__6", "AllAttributesUnique__7", "AllAttributesUnique__8_", "AllAttributesUnique__9", }, + ["+(#) to armour"] = { "IncreasedPhysicalDamageReductionRatingUniqueAmulet16", "IncreasedPhysicalDamageReductionRatingUniqueBelt9", "IncreasedPhysicalDamageReductionRatingUniqueQuiver4", "IncreasedPhysicalDamageReductionRatingUniqueRing12", "IncreasedPhysicalDamageReductionRatingUnique__1", "IncreasedPhysicalDamageReductionRatingUnique__10", "IncreasedPhysicalDamageReductionRatingUnique__11", "IncreasedPhysicalDamageReductionRatingUnique__2", "IncreasedPhysicalDamageReductionRatingUnique__3", "IncreasedPhysicalDamageReductionRatingUnique__4", "IncreasedPhysicalDamageReductionRatingUnique__5", "IncreasedPhysicalDamageReductionRatingUnique__6_", "IncreasedPhysicalDamageReductionRatingUnique__7", "IncreasedPhysicalDamageReductionRatingUnique__8", "IncreasedPhysicalDamageReductionRatingUnique__9", "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__2", "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStrInt2", "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr_1", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr1", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5", "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStrDex3", "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1", "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStrDex3", "LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStrDex2", "LocalIncreasedPhysicalDamageReductionRatingUnique__1", }, + ["+(#) to armour and evasion rating"] = { "ArmourAndEvasionImplicitBelt1", }, + ["+(#) to dexterity"] = { "DexterityImplicitAmulet1", "DexterityImplicitQuiver1", "DexterityUniqueBelt7", "DexterityUniqueBodyDex1", "DexterityUniqueBodyDex4", "DexterityUniqueBootsDex1", "DexterityUniqueBootsDex4_", "DexterityUniqueBootsDex8", "DexterityUniqueBootsDex9", "DexterityUniqueBootsDexInt2", "DexterityUniqueBootsInt1", "DexterityUniqueBootsStrDex1", "DexterityUniqueBow4", "DexterityUniqueBow6", "DexterityUniqueBow7", "DexterityUniqueClaw9", "DexterityUniqueDagger11", "DexterityUniqueDagger3", "DexterityUniqueGlovesDex2", "DexterityUniqueGlovesDexInt4", "DexterityUniqueGlovesDex_1", "DexterityUniqueGlovesInt4__", "DexterityUniqueGlovesStrDex1", "DexterityUniqueHelmetDex4", "DexterityUniqueHelmetDexInt2", "DexterityUniqueHelmetStrDex2", "DexterityUniqueHelmetStrDex3", "DexterityUniqueJewel13", "DexterityUniqueJewel36", "DexterityUniqueQuiver6", "DexterityUniqueRing8", "DexterityUniqueShieldStrInt2", "DexterityUnique__1", "DexterityUnique__10_", "DexterityUnique__11", "DexterityUnique__12", "DexterityUnique__14", "DexterityUnique__15", "DexterityUnique__16", "DexterityUnique__17", "DexterityUnique__18", "DexterityUnique__19", "DexterityUnique__2", "DexterityUnique__20__", "DexterityUnique__21_", "DexterityUnique__22", "DexterityUnique__23", "DexterityUnique__24", "DexterityUnique__25", "DexterityUnique__26", "DexterityUnique__27", "DexterityUnique__28", "DexterityUnique__29", "DexterityUnique__3", "DexterityUnique__30", "DexterityUnique__31", "DexterityUnique__32", "DexterityUnique__33", "DexterityUnique__34", "DexterityUnique__4", "DexterityUnique__5", "DexterityUnique__6", "DexterityUnique__7", "DexterityUnique__8", }, + ["+(#) to dexterity and intelligence"] = { "DexterityAndIntelligenceUniqueQuiver_1", "DexterityAndIntelligenceUnique_2", "DexterityAndIntelligenceUnique_3", "HybridDexInt", }, + ["+(#) to evasion rating"] = { "IncreasedEvasionRatingUniqueAmulet17", "IncreasedEvasionRatingUniqueAmulet7", "IncreasedEvasionRatingUniqueOneHandSword4", "IncreasedEvasionRatingUniqueOneHandSword9", "IncreasedEvasionRatingUniqueQuiver1", "IncreasedEvasionRatingUniqueRapier1", "IncreasedEvasionRatingUniqueRing30", "IncreasedEvasionRatingUnique__3", "IncreasedEvasionRatingUnique__4", "IncreasedEvasionRatingUnique__5_", "IncreasedEvasionRatingUnique__6_", "IncreasedEvasionRatingUnique__7", "LocalIncreasedEvasionRatingPercentUniqueBootsDex5", "LocalIncreasedEvasionRatingPercentUniqueBootsStrDex4", "LocalIncreasedEvasionRatingPercentUniqueGlovesDex1", "LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex3", "LocalIncreasedEvasionRatingPercentUniqueHelmetDex3", "LocalIncreasedEvasionRatingUniqueBodyDex6", "LocalIncreasedEvasionRatingUniqueBodyDex7", "LocalIncreasedEvasionRatingUniqueBodyInt5", "LocalIncreasedEvasionRatingUniqueBootsDex8", "LocalIncreasedEvasionRatingUniqueGlovesDex_1", "LocalIncreasedEvasionRatingUniqueShieldStrDex2", "LocalIncreasedEvasionRatingUnique__1", "LocalIncreasedEvasionRatingUnique__2", "LocalIncreasedEvasionRatingUnique__3", "LocalIncreasedEvasionRatingUnique__4", "LocalIncreasedEvasionRatingUnique__5", }, + ["+(#) to evasion rating and energy shield"] = { "LocalFlatIncreasedEvasionAndEnergyShieldUnique__1", "LocalFlatIncreasedEvasionAndEnergyShieldUnique__2_", }, + ["+(#) to evasion rating while in sand stance"] = { "EvasionRatingSandStanceUnique__1", }, + ["+(#) to evasion rating while on low life"] = { "EvasionOnLowLifeUniqueAmulet4", }, + ["+(#) to intelligence"] = { "IntelligenceImplicitAmulet1", "IntelligenceUniqueBelt1", "IntelligenceUniqueBelt11", "IntelligenceUniqueBodyInt3", "IntelligenceUniqueBodyStrInt3", "IntelligenceUniqueBootsDex1", "IntelligenceUniqueBootsInt1", "IntelligenceUniqueBootsInt3", "IntelligenceUniqueDagger10_", "IntelligenceUniqueGlovesInt2", "IntelligenceUniqueGlovesInt3", "IntelligenceUniqueGlovesInt5", "IntelligenceUniqueGlovesStr3", "IntelligenceUniqueHelmetInt5", "IntelligenceUniqueHelmetInt6", "IntelligenceUniqueHelmetInt9", "IntelligenceUniqueHelmetWard1", "IntelligenceUniqueJewel11", "IntelligenceUniqueJewel35", "IntelligenceUniqueOneHandAxe1", "IntelligenceUniqueQuiver6", "IntelligenceUniqueRing13", "IntelligenceUniqueRing34", "IntelligenceUniqueRing4", "IntelligenceUniqueSceptre5", "IntelligenceUniqueShieldDex3", "IntelligenceUniqueShieldInt4", "IntelligenceUniqueStaff8", "IntelligenceUniqueWand2", "IntelligenceUniqueWand8", "IntelligenceUnique__10", "IntelligenceUnique__11", "IntelligenceUnique__12", "IntelligenceUnique__14", "IntelligenceUnique__15_", "IntelligenceUnique__16", "IntelligenceUnique__17", "IntelligenceUnique__18", "IntelligenceUnique__19", "IntelligenceUnique__20", "IntelligenceUnique__21", "IntelligenceUnique__22_", "IntelligenceUnique__23", "IntelligenceUnique__25", "IntelligenceUnique__26_", "IntelligenceUnique__27", "IntelligenceUnique__28", "IntelligenceUnique__29", "IntelligenceUnique__3", "IntelligenceUnique__30", "IntelligenceUnique__31", "IntelligenceUnique__32", "IntelligenceUnique__33", "IntelligenceUnique__34", "IntelligenceUnique__35", "IntelligenceUnique__36", "IntelligenceUnique__37", "IntelligenceUnique__38", "IntelligenceUnique__4", "IntelligenceUnique__6", "IntelligenceUnique__7", "IntelligenceUnique__8", "IntelligenceUnique__9", "Intelligence__1", }, + ["+(#) to level of all elemental skill gems if the stars are aligned"] = { "InfluenceElementalSkillGemLevelUnique__1", }, + ["+(#) to level of all elemental support gems if the stars are aligned"] = { "InfluenceElementalSupportGemLevelUnique__1", }, + ["+(#) to level of all melee skill gems"] = { "GlobalIncreaseMeleeSkillGemLevelUnique__1", }, + ["+(#) to level of all minion skill gems"] = { "GlobalIncreaseMinionSpellSkillGemLevelUnique__1", "GlobalIncreaseMinionSpellSkillGemLevelUnique__2", "GlobalIncreaseMinionSpellSkillGemLevelUnique__5", }, + ["+(#) to level of all spell skill gems"] = { "GlobalSpellGemsLevelUniqueStaff_1", "GlobalSpellGemsLevelUniqueStaff_2", }, + ["+(#) to level of socketed aura gems"] = { "LocalIncreaseSocketedAuraGemLevelUnique___3", }, + ["+(#) to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUnique__10", "LocalIncreaseSocketedGemLevelUnique__9", }, + ["+(#) to level of socketed lightning gems"] = { "LocalIncreaseSocketedLightningGemLevelUnique__1", }, + ["+(#) to maximum charges"] = { "FlaskExtraChargesUnique__2_", "FlaskExtraChargesUnique__3", }, + ["+(#) to maximum energy shield"] = { "AddedEnergyShieldFlatUnique_1", "IncreasedEnergyShieldImplicitBelt1", "IncreasedEnergyShieldImplicitBelt2", "IncreasedEnergyShieldImplicitRing1", "IncreasedEnergyShieldUniqueAmulet14", "IncreasedEnergyShieldUniqueBelt11", "IncreasedEnergyShieldUniqueBelt5", "IncreasedEnergyShieldUniqueBodyStrDexInt1", "IncreasedEnergyShieldUniqueClaw1", "IncreasedEnergyShieldUniqueQuiver7", "IncreasedEnergyShieldUniqueRing18", "IncreasedEnergyShieldUniqueRing27", "IncreasedEnergyShieldUniqueRing35", "IncreasedEnergyShieldUnique__10", "IncreasedEnergyShieldUnique__11", "IncreasedEnergyShieldUnique__12", "IncreasedEnergyShieldUnique__13", "IncreasedEnergyShieldUnique__3", "IncreasedEnergyShieldUnique__4", "IncreasedEnergyShieldUnique__5", "IncreasedEnergyShieldUnique__7", "IncreasedEnergyShieldUnique__8", "IncreasedEnergyShieldUnique__9", "IncreasedEnergyShieldUnique___1", "LocalIncreasedEnergySheildUnique__2_", "LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueHelmetInt2", "LocalIncreasedEnergyShieldPercentAndStunRecoveryUnique__1", "LocalIncreasedEnergyShieldPercentUniqueBootsInt1", "LocalIncreasedEnergyShieldPercentUniqueIntHelmet1", "LocalIncreasedEnergyShieldUniqueBodyInt5", "LocalIncreasedEnergyShieldUniqueBootsDex1", "LocalIncreasedEnergyShieldUniqueBootsDex8", "LocalIncreasedEnergyShieldUniqueBootsDexInt4", "LocalIncreasedEnergyShieldUniqueBootsInt2", "LocalIncreasedEnergyShieldUniqueGlovesDexInt3", "LocalIncreasedEnergyShieldUniqueGlovesStr4", "LocalIncreasedEnergyShieldUniqueHelmetDexInt5", "LocalIncreasedEnergyShieldUniqueHelmetInt5_", "LocalIncreasedEnergyShieldUniqueHelmetInt6", "LocalIncreasedEnergyShieldUniqueHelmetInt_1", "LocalIncreasedEnergyShieldUniqueHelmetStrInt5_", "LocalIncreasedEnergyShieldUniqueShieldInt5", "LocalIncreasedEnergyShieldUnique__10", "LocalIncreasedEnergyShieldUnique__11", "LocalIncreasedEnergyShieldUnique__12", "LocalIncreasedEnergyShieldUnique__13", "LocalIncreasedEnergyShieldUnique__14", "LocalIncreasedEnergyShieldUnique__15", "LocalIncreasedEnergyShieldUnique__16", "LocalIncreasedEnergyShieldUnique__17__", "LocalIncreasedEnergyShieldUnique__18_", "LocalIncreasedEnergyShieldUnique__19", "LocalIncreasedEnergyShieldUnique__20", "LocalIncreasedEnergyShieldUnique__21", "LocalIncreasedEnergyShieldUnique__22", "LocalIncreasedEnergyShieldUnique__23", "LocalIncreasedEnergyShieldUnique__24_", "LocalIncreasedEnergyShieldUnique__25", "LocalIncreasedEnergyShieldUnique__26", "LocalIncreasedEnergyShieldUnique__27_", "LocalIncreasedEnergyShieldUnique__28", "LocalIncreasedEnergyShieldUnique__29", "LocalIncreasedEnergyShieldUnique__30__", "LocalIncreasedEnergyShieldUnique__31", "LocalIncreasedEnergyShieldUnique__32", "LocalIncreasedEnergyShieldUnique__33", "LocalIncreasedEnergyShieldUnique__34", "LocalIncreasedEnergyShieldUnique__35", "LocalIncreasedEnergyShieldUnique__5", "LocalIncreasedEnergyShieldUnique__6", "LocalIncreasedEnergyShieldUnique__7", "LocalIncreasedEnergyShieldUnique__8", "LocalIncreasedEnergyShieldUnique__9", "LocalIncreasedEnergyShiledUniqueBootsInt6", "RitualRingEnergyShield", }, + ["+(#) to maximum fortification"] = { "MaximumFortificationUnique__1", }, + ["+(#) to maximum life"] = { "IncreasedLifeFireResistUniqueBelt14", "IncreasedLifeImplicitBelt1", "IncreasedLifeImplicitGlovesDemigods1", "IncreasedLifeImplicitRing1", "IncreasedLifeImplicitShield1", "IncreasedLifeImplicitShield2", "IncreasedLifeImplicitShield3", "IncreasedLifeUniqueAmulet14", "IncreasedLifeUniqueAmulet18", "IncreasedLifeUniqueAmulet19", "IncreasedLifeUniqueAmulet22", "IncreasedLifeUniqueAmulet25", "IncreasedLifeUniqueAmulet4", "IncreasedLifeUniqueBelt13", "IncreasedLifeUniqueBelt7", "IncreasedLifeUniqueBelt8", "IncreasedLifeUniqueBodyDex6", "IncreasedLifeUniqueBodyDexInt1", "IncreasedLifeUniqueBodyDexInt3", "IncreasedLifeUniqueBodyInt5", "IncreasedLifeUniqueBodyStr2", "IncreasedLifeUniqueBodyStr6", "IncreasedLifeUniqueBodyStrDex2", "IncreasedLifeUniqueBodyStrDex3_", "IncreasedLifeUniqueBodyStrDex4", "IncreasedLifeUniqueBodyStrDex5", "IncreasedLifeUniqueBodyStrDexInt1", "IncreasedLifeUniqueBodyStrInt5", "IncreasedLifeUniqueBodyStrInt6", "IncreasedLifeUniqueBodyStrInt7", "IncreasedLifeUniqueBootsDex6", "IncreasedLifeUniqueBootsDex7", "IncreasedLifeUniqueBootsDex9__", "IncreasedLifeUniqueBootsStr2", "IncreasedLifeUniqueBootsStr3_", "IncreasedLifeUniqueBootsStrDex3", "IncreasedLifeUniqueGlovesDexInt5", "IncreasedLifeUniqueGlovesInt3", "IncreasedLifeUniqueGlovesStr3", "IncreasedLifeUniqueGlovesStrDex4", "IncreasedLifeUniqueGlovesStrInt2", "IncreasedLifeUniqueHelmetDex4", "IncreasedLifeUniqueHelmetDex5", "IncreasedLifeUniqueHelmetDexInt2", "IncreasedLifeUniqueHelmetStr1", "IncreasedLifeUniqueHelmetStrDex4", "IncreasedLifeUniqueHelmetStrDex5", "IncreasedLifeUniqueOneHandAxe3", "IncreasedLifeUniqueOneHandSword1", "IncreasedLifeUniqueQuiver21", "IncreasedLifeUniqueQuiver3", "IncreasedLifeUniqueQuiver9", "IncreasedLifeUniqueRing1", "IncreasedLifeUniqueRing19", "IncreasedLifeUniqueRing28", "IncreasedLifeUniqueRing32", "IncreasedLifeUniqueShieldDex2", "IncreasedLifeUniqueShieldDex5", "IncreasedLifeUniqueShieldDex6", "IncreasedLifeUniqueShieldDexInt1", "IncreasedLifeUniqueShieldStr1", "IncreasedLifeUniqueShieldStr2", "IncreasedLifeUniqueShieldStr4", "IncreasedLifeUniqueShieldStr5", "IncreasedLifeUniqueShieldStrDex7", "IncreasedLifeUniqueShieldStrInt6", "IncreasedLifeUniqueTwoHandMace6", "IncreasedLifeUniqueWand4", "IncreasedLifeUnique__1", "IncreasedLifeUnique__10", "IncreasedLifeUnique__100", "IncreasedLifeUnique__101", "IncreasedLifeUnique__102", "IncreasedLifeUnique__103", "IncreasedLifeUnique__105", "IncreasedLifeUnique__106_", "IncreasedLifeUnique__107", "IncreasedLifeUnique__108", "IncreasedLifeUnique__109_", "IncreasedLifeUnique__11", "IncreasedLifeUnique__110", "IncreasedLifeUnique__111__", "IncreasedLifeUnique__112", "IncreasedLifeUnique__113", "IncreasedLifeUnique__114", "IncreasedLifeUnique__115", "IncreasedLifeUnique__116", "IncreasedLifeUnique__117", "IncreasedLifeUnique__118", "IncreasedLifeUnique__119", "IncreasedLifeUnique__120", "IncreasedLifeUnique__121", "IncreasedLifeUnique__122", "IncreasedLifeUnique__123", "IncreasedLifeUnique__124", "IncreasedLifeUnique__125", "IncreasedLifeUnique__126", "IncreasedLifeUnique__127", "IncreasedLifeUnique__12_", "IncreasedLifeUnique__13", "IncreasedLifeUnique__14", "IncreasedLifeUnique__15", "IncreasedLifeUnique__16", "IncreasedLifeUnique__18", "IncreasedLifeUnique__19", "IncreasedLifeUnique__2", "IncreasedLifeUnique__20", "IncreasedLifeUnique__21", "IncreasedLifeUnique__22", "IncreasedLifeUnique__23", "IncreasedLifeUnique__24", "IncreasedLifeUnique__25", "IncreasedLifeUnique__26", "IncreasedLifeUnique__27", "IncreasedLifeUnique__28", "IncreasedLifeUnique__29", "IncreasedLifeUnique__3", "IncreasedLifeUnique__30", "IncreasedLifeUnique__31", "IncreasedLifeUnique__32", "IncreasedLifeUnique__33", "IncreasedLifeUnique__34", "IncreasedLifeUnique__35", "IncreasedLifeUnique__36_", "IncreasedLifeUnique__37", "IncreasedLifeUnique__38", "IncreasedLifeUnique__39", "IncreasedLifeUnique__4", "IncreasedLifeUnique__40", "IncreasedLifeUnique__41", "IncreasedLifeUnique__42_", "IncreasedLifeUnique__43", "IncreasedLifeUnique__44", "IncreasedLifeUnique__45", "IncreasedLifeUnique__46", "IncreasedLifeUnique__47", "IncreasedLifeUnique__48", "IncreasedLifeUnique__49_", "IncreasedLifeUnique__5", "IncreasedLifeUnique__50", "IncreasedLifeUnique__51", "IncreasedLifeUnique__52", "IncreasedLifeUnique__53", "IncreasedLifeUnique__54", "IncreasedLifeUnique__55", "IncreasedLifeUnique__56", "IncreasedLifeUnique__57", "IncreasedLifeUnique__58", "IncreasedLifeUnique__59", "IncreasedLifeUnique__6", "IncreasedLifeUnique__60", "IncreasedLifeUnique__61", "IncreasedLifeUnique__62", "IncreasedLifeUnique__63_", "IncreasedLifeUnique__64", "IncreasedLifeUnique__65", "IncreasedLifeUnique__66", "IncreasedLifeUnique__67_", "IncreasedLifeUnique__68_", "IncreasedLifeUnique__69", "IncreasedLifeUnique__70", "IncreasedLifeUnique__71", "IncreasedLifeUnique__72_", "IncreasedLifeUnique__73", "IncreasedLifeUnique__74", "IncreasedLifeUnique__75", "IncreasedLifeUnique__76", "IncreasedLifeUnique__77", "IncreasedLifeUnique__78", "IncreasedLifeUnique__79", "IncreasedLifeUnique__8", "IncreasedLifeUnique__80_", "IncreasedLifeUnique__81", "IncreasedLifeUnique__82", "IncreasedLifeUnique__83", "IncreasedLifeUnique__84", "IncreasedLifeUnique__85_", "IncreasedLifeUnique__86_", "IncreasedLifeUnique__88", "IncreasedLifeUnique__89", "IncreasedLifeUnique__9", "IncreasedLifeUnique__90", "IncreasedLifeUnique__91", "IncreasedLifeUnique__92_", "IncreasedLifeUnique__93", "IncreasedLifeUnique__94", "IncreasedLifeUnique__95", "IncreasedLifeUnique__96__", "IncreasedLifeUnique__97", "IncreasedLifeUnique__98", "IncreasedLifeUnique__99", "IncreasedLifeUnique___7", "MaximumLifeUnique__24", "MaximumLifeUnique__25", "RitualRingLife", }, + ["+(#) to maximum life if there are no life modifiers on other equipped items"] = { "IncreasedLifeNoLifeModifiersUnique__1", }, + ["+(#) to maximum mana"] = { "IncreasedManaImplicitArmour1", "IncreasedManaImplicitRing1", "IncreasedManaUniqueAmulet1", "IncreasedManaUniqueAmulet18", "IncreasedManaUniqueAmulet19", "IncreasedManaUniqueBelt5", "IncreasedManaUniqueBodyDexInt2", "IncreasedManaUniqueBodyInt5", "IncreasedManaUniqueBodyInt9", "IncreasedManaUniqueBodyStrInt6", "IncreasedManaUniqueBootsInt5", "IncreasedManaUniqueBootsStrDex3", "IncreasedManaUniqueBootsStrDex4", "IncreasedManaUniqueBow1", "IncreasedManaUniqueClaw7", "IncreasedManaUniqueDagger4", "IncreasedManaUniqueDexHelmet1", "IncreasedManaUniqueGlovesInt3", "IncreasedManaUniqueHelmetDexInt2", "IncreasedManaUniqueHelmetDexInt3", "IncreasedManaUniqueHelmetInt4", "IncreasedManaUniqueHelmetInt8", "IncreasedManaUniqueHelmetStrDex5_", "IncreasedManaUniqueHelmetStrInt3", "IncreasedManaUniqueHelmetStrInt_1", "IncreasedManaUniqueIntHelmet3", "IncreasedManaUniqueQuiver1", "IncreasedManaUniqueQuiver1a", "IncreasedManaUniqueRing14", "IncreasedManaUniqueRing17", "IncreasedManaUniqueRing20", "IncreasedManaUniqueRing29", "IncreasedManaUniqueSceptre6", "IncreasedManaUniqueShieldInt2", "IncreasedManaUniqueTwoHandAxe9", "IncreasedManaUniqueTwoHandSword2", "IncreasedManaUniqueWand3", "IncreasedManaUniqueWand4", "IncreasedManaUnique__1", "IncreasedManaUnique__10", "IncreasedManaUnique__12", "IncreasedManaUnique__13", "IncreasedManaUnique__14", "IncreasedManaUnique__15", "IncreasedManaUnique__16", "IncreasedManaUnique__17", "IncreasedManaUnique__18", "IncreasedManaUnique__20_", "IncreasedManaUnique__21", "IncreasedManaUnique__22__", "IncreasedManaUnique__23", "IncreasedManaUnique__24", "IncreasedManaUnique__25", "IncreasedManaUnique__26", "IncreasedManaUnique__27", "IncreasedManaUnique__28", "IncreasedManaUnique__29", "IncreasedManaUnique__3", "IncreasedManaUnique__30", "IncreasedManaUnique__31", "IncreasedManaUnique__4", "IncreasedManaUnique__5", "IncreasedManaUnique__6", "IncreasedManaUnique__7", "IncreasedManaUnique__8", "IncreasedManaUnique__9", "RitualRingMana", }, + ["+(#) to maximum number of eaten souls"] = { "SoulEaterStackCountUnique__1", }, + ["+(#) to maximum number of raised zombies"] = { "MaximumMinionCountUniqueTwoHandSword4Updated", }, + ["+(#) to maximum number of summoned totems"] = { "AdditionalTotemsUniqueScepter_1", }, + ["+(#) to maximum rage"] = { "MaximumRageUnique__3", }, + ["+(#) to strength"] = { "StrengthImplicitAmulet1", "StrengthImplicitBelt1", "StrengthUniqueAmulet5", "StrengthUniqueBelt1", "StrengthUniqueBelt2", "StrengthUniqueBelt7", "StrengthUniqueBodyStr4", "StrengthUniqueBodyStrInt3", "StrengthUniqueBootsDexInt2", "StrengthUniqueBootsInt1", "StrengthUniqueBootsStrDex1", "StrengthUniqueClaw5_", "StrengthUniqueClaw9", "StrengthUniqueGlovesDex1", "StrengthUniqueGlovesStrInt2", "StrengthUniqueHelmetStrDex3", "StrengthUniqueIntHelmet3", "StrengthUniqueJewel34", "StrengthUniqueJewel37", "StrengthUniqueOneHandSword8", "StrengthUniqueQuiver6", "StrengthUniqueRing2", "StrengthUniqueRing31__", "StrengthUniqueRing36", "StrengthUniqueRing8", "StrengthUniqueSceptre6", "StrengthUniqueTwoHandAxe3", "StrengthUniqueTwoHandSword5", "StrengthUnique__10", "StrengthUnique__11", "StrengthUnique__13_", "StrengthUnique__14", "StrengthUnique__16", "StrengthUnique__17", "StrengthUnique__18", "StrengthUnique__19_", "StrengthUnique__21", "StrengthUnique__22", "StrengthUnique__23", "StrengthUnique__24", "StrengthUnique__25", "StrengthUnique__26", "StrengthUnique__27", "StrengthUnique__28", "StrengthUnique__29", "StrengthUnique__3", "StrengthUnique__30", "StrengthUnique__31", "StrengthUnique__32", "StrengthUnique__33", "StrengthUnique__34", "StrengthUnique__5", "StrengthUnique__6", "StrengthUnique__7_", "StrengthUnique__8", "StrengthUnique__9", "StrengthUnique___2", }, + ["+(#) to strength and dexterity"] = { "HybridStrDex", "HybridStrDexUnique__1", "StrengthAndDexterityUnique_1", }, + ["+(#) to strength and intelligence"] = { "HybridStrInt", "StrengthIntelligenceUnique__2", }, + ["+(#) to ward"] = { "LocalIncreasedWardUnique__1", }, + ["+(#)% chance to avoid elemental damage from hits while phasing"] = { "AvoidElementalDamagePhasingUnique__1", }, + ["+(#)% chance to avoid physical damage from hits while phasing"] = { "AvoidPhysicalDamageWhilePhasingUnique__1", }, + ["+(#)% chance to block"] = { "AdditionalBlockChanceUniqueShieldStrDex1", "AdditionalBlockChanceUniqueShieldStrDex3__", "AdditionalBlockChanceUnique__1", "AdditionalBlockChanceUnique__10", "AdditionalBlockChanceUnique__12", "AdditionalBlockChanceUnique__13", "AdditionalBlockChanceUnique__3", "AdditionalBlockChanceUnique__6", "AdditionalBlockChanceUnique__7__", "AdditionalBlockChanceUnique__8_", "AdditionalBlockChanceUnique__9", }, + ["+(#)% chance to block attack damage"] = { "AdditionalBlockUnique__1", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR1", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR2__", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR3", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR4", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR5", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR6", }, + ["+(#)% chance to block attack damage during effect"] = { "BlockIncreasedDuringFlaskEffectUniqueFlask7", "BlockIncreasedDuringFlaskEffectUnique__1", }, + ["+(#)% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUniqueTwoHandAxe6", "VillageBlockWhileDualWielding", }, + ["+(#)% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__3", }, + ["+(#)% chance to block spell damage"] = { "SpellBlockPercentageUnique__1", }, + ["+(#)% chance to block spell damage during effect"] = { "SpellBlockIncreasedDuringFlaskEffectUniqueFlask7", "SpellBlockIncreasedDuringFlaskEffectUnique__1_", }, + ["+(#)% chance to block spell damage while in off hand"] = { "SpellBlockWhileInOffHandUnique_1", }, + ["+(#)% chance to suppress spell damage"] = { "ChanceToDodgeSpellsUnique__1", "ChanceToDodgeSpellsUnique__3_", "ChanceToDodgeUnique__1", "ChanceToSuppressSpellsUnique__1_", "ChanceToSuppressSpellsUnique__2", "ChanceToSuppressSpellsUnique__3", "ChanceToSuppressSpellsUnique__4", "SpellDodgeUniqueBootsDex7New", "SpellDodgeUniqueBootsDex7_", }, + ["+(#)% chance to suppress spell damage while channelling"] = { "ChanceToDodgeAttacksWhileChannellingUnique__1", "ChanceToDodgeSpellsWhileChannellingUnique__1", "ChanceToSuppressSpellsWhileChannellingUnique__1____", }, + ["+(#)% chance to suppress spell damage while your off hand is empty"] = { "ChanceToDodgeWhileOffhandIsEmpty", "VillageSuppressChanceEmptyOffhand", }, + ["+(#)% global critical strike multiplier while you have a frenzy charge"] = { "CriticalStrikeMultiplierFrenzyChargesUnique__1", }, + ["+(#)% to all elemental resistances"] = { "AllResistajcesUniqueStaff10", "AllResistancesDemigodsImplicit", "AllResistancesImplicitArmour1", "AllResistancesImplicitRing1", "AllResistancesImplicitVictorAmulet", "AllResistancesImplictBootsDemigods1", "AllResistancesImplictHelmetDemigods1", "AllResistancesUniqueAmulet14", "AllResistancesUniqueAmulet9", "AllResistancesUniqueBelt10", "AllResistancesUniqueBelt13", "AllResistancesUniqueBeltDemigods1", "AllResistancesUniqueBodyDexInt1", "AllResistancesUniqueBodyStrDex1", "AllResistancesUniqueBodyStrDexInt1", "AllResistancesUniqueBootsStr1", "AllResistancesUniqueDagger9", "AllResistancesUniqueHelmetDex3", "AllResistancesUniqueHelmetDexInt4", "AllResistancesUniqueHelmetStrInt1", "AllResistancesUniqueRapier2", "AllResistancesUniqueRing21", "AllResistancesUniqueRing4", "AllResistancesUniqueRing6", "AllResistancesUniqueRing7", "AllResistancesUniqueShieldDex3", "AllResistancesUniqueShieldStrInt1", "AllResistancesUniqueTwoHandMace6_", "AllResistancesUnique__10", "AllResistancesUnique__11__", "AllResistancesUnique__12", "AllResistancesUnique__14", "AllResistancesUnique__15", "AllResistancesUnique__16", "AllResistancesUnique__17", "AllResistancesUnique__19", "AllResistancesUnique__2", "AllResistancesUnique__20", "AllResistancesUnique__21", "AllResistancesUnique__23__", "AllResistancesUnique__26", "AllResistancesUnique__27", "AllResistancesUnique__28", "AllResistancesUnique__29", "AllResistancesUnique__3", "AllResistancesUnique__30", "AllResistancesUnique__31", "AllResistancesUnique__32", "AllResistancesUnique__33", "AllResistancesUnique__34", "AllResistancesUnique__35", "AllResistancesUnique__37", "AllResistancesUnique__38", "AllResistancesUnique__4", "AllResistancesUnique__5", "AllResistancesUnique__7", "AllResistancesUnique__8", "AllResistancesUnique__9", "ChanceToAvoidElementalStatusAilmentsUniqueAmulet22", }, + ["+(#)% to all elemental resistances while you have at least # strength"] = { "AllResistanceAt200StrengthUnique__1", }, + ["+(#)% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__1__", "MaximumElementalResistanceUnique__4", }, + ["+(#)% to all maximum elemental resistances if # shaper items are equipped"] = { "MaximumElementalResistance6ShaperItemsUnique__1", }, + ["+(#)% to all maximum resistances"] = { "IncreasedMaximumResistsUnique__1", }, + ["+(#)% to chaos damage over time multiplier"] = { "ChaosNonAilmentDamageOverTimeMultiplierUnique__1", }, + ["+(#)% to chaos resistance"] = { "ChaosResistDemigodsTorchImplicit", "ChaosResistHelmetStrDex2", "ChaosResistImplicitBoots1", "ChaosResistImplicitRing1", "ChaosResistUniqueAmulet15_", "ChaosResistUniqueAmulet23", "ChaosResistUniqueBodyInt8", "ChaosResistUniqueBody_1", "ChaosResistUniqueBootsStrInt2", "ChaosResistUniqueBow12", "ChaosResistUniqueDagger8", "ChaosResistUniqueHelmetDexInt5", "ChaosResistUniqueHelmetInt__1", "ChaosResistUniqueHelmetStrInt2", "ChaosResistUniqueHelmetStrInt5", "ChaosResistUniqueQuiver9", "ChaosResistUniqueRing12", "ChaosResistUniqueRing16", "ChaosResistUniqueWand7", "ChaosResistUnique__10", "ChaosResistUnique__11", "ChaosResistUnique__12", "ChaosResistUnique__13", "ChaosResistUnique__14", "ChaosResistUnique__15", "ChaosResistUnique__16", "ChaosResistUnique__17", "ChaosResistUnique__18_", "ChaosResistUnique__19", "ChaosResistUnique__2", "ChaosResistUnique__20_", "ChaosResistUnique__21", "ChaosResistUnique__22", "ChaosResistUnique__23", "ChaosResistUnique__24", "ChaosResistUnique__25", "ChaosResistUnique__27", "ChaosResistUnique__28", "ChaosResistUnique__29", "ChaosResistUnique__3", "ChaosResistUnique__30", "ChaosResistUnique__31", "ChaosResistUnique__32", "ChaosResistUnique__33", "ChaosResistUnique__34", "ChaosResistUnique__35", "ChaosResistUnique__36", "ChaosResistUnique__37", "ChaosResistUnique__38", "ChaosResistUnique__4", "ChaosResistUnique__6", "ChaosResistUnique__7", "ChaosResistUnique__9", }, + ["+(#)% to chaos resistance when on low life"] = { "ChaosResistanceOnLowLifeUniqueRing9", }, + ["+(#)% to chaos resistance while affected by herald of agony"] = { "HeraldBonusAgonyChaosResist_", }, + ["+(#)% to cold and lightning resistances"] = { "ColdAndLightningResistImplicitBoots1", "ColdAndLightningResistImplicitRing1", "ColdAndLightningResistUnique__1", "ColdAndLightningResistUnique__2", }, + ["+(#)% to cold damage over time multiplier"] = { "ColdDamageOverTimeMultiplierUnique__1", }, + ["+(#)% to cold resistance"] = { "ColdResistDexHelmet2", "ColdResistImplicitRing1", "ColdResistUniqueAmulet13", "ColdResistUniqueBelt1", "ColdResistUniqueBelt13", "ColdResistUniqueBelt14", "ColdResistUniqueBelt4", "ColdResistUniqueBelt9", "ColdResistUniqueBodyDex7", "ColdResistUniqueBodyInt5", "ColdResistUniqueBodyStr5", "ColdResistUniqueBodyStrInt3", "ColdResistUniqueBootsStrDex5", "ColdResistUniqueGlovesDex1", "ColdResistUniqueGlovesStrDex3", "ColdResistUniqueGlovesStrInt3", "ColdResistUniqueHelmetDex5", "ColdResistUniqueHelmetStrInt2", "ColdResistUniqueOneHandAxe1_", "ColdResistUniqueQuiver5", "ColdResistUniqueRing24", "ColdResistUniqueRing28", "ColdResistUniqueRing32", "ColdResistUniqueShieldDex7", "ColdResistUniqueShieldInt3", "ColdResistUniqueShieldStrDex1", "ColdResistUnique__1", "ColdResistUnique__10", "ColdResistUnique__11", "ColdResistUnique__12", "ColdResistUnique__13", "ColdResistUnique__15", "ColdResistUnique__16", "ColdResistUnique__17", "ColdResistUnique__18", "ColdResistUnique__19", "ColdResistUnique__2", "ColdResistUnique__20", "ColdResistUnique__21", "ColdResistUnique__22_", "ColdResistUnique__23", "ColdResistUnique__24", "ColdResistUnique__25", "ColdResistUnique__26", "ColdResistUnique__27", "ColdResistUnique__28", "ColdResistUnique__29", "ColdResistUnique__3", "ColdResistUnique__30", "ColdResistUnique__31_", "ColdResistUnique__32", "ColdResistUnique__33", "ColdResistUnique__34", "ColdResistUnique__35", "ColdResistUnique__36_", "ColdResistUnique__37", "ColdResistUnique__38", "ColdResistUnique__39", "ColdResistUnique__4", "ColdResistUnique__40", "ColdResistUnique__41", "ColdResistUnique__42", "ColdResistUnique__43", "ColdResistUnique__6", "ColdResistUnique__7", "ColdResistUnique__8", "ColdResistanceBodyDex6", }, + ["+(#)% to cold resistance when socketed with a green gem"] = { "ColdResistanceWhenSocketedWithGreenGemUniqueRing25", }, + ["+(#)% to cold resistance while affected by herald of ice"] = { "HeraldBonusColdResist", }, + ["+(#)% to critical strike chance against enemies on consecrated ground during effect"] = { "FlaskConsecratedGroundEffectUnique__1_", }, + ["+(#)% to critical strike multiplier for spells if you haven't killed recently"] = { "SpellCriticalStrikeMultiplierIfNotKilledRecentlyUnique__1", }, + ["+(#)% to critical strike multiplier if dexterity is higher than intelligence"] = { "CriticalStrikeMultiplierIfDexterityHigherThanIntelligenceUnique__1", }, + ["+(#)% to critical strike multiplier if you've cast enfeeble in the past # seconds"] = { "EnfeebleCriticalStrikeMultiplierUnique__1", }, + ["+(#)% to critical strike multiplier if you've gained a power charge recently"] = { "CriticalStrikeMultiplierIfGainedPowerChargeUnique__1_", }, + ["+(#)% to critical strike multiplier per power charge"] = { "CriticalMultiplierPerPowerChargeUnique__1", }, + ["+(#)% to critical strike multiplier with one handed melee weapons"] = { "OneHandedMeleeCriticalStrikeMultiplierUnique__1", }, + ["+(#)% to critical strike multiplier with unarmed melee attacks"] = { "UnarmedMeleeAttackCriticalStrikeMultiplierUnique__1", }, + ["+(#)% to damage over time multiplier"] = { "GlobalDamageOverTimeMultiplierUnique__1", "GlobalDamageOverTimeMultiplierUnique__2", "TalismanGlobalDamageOverTimeMultiplier", }, + ["+(#)% to damage over time multiplier for ailments from critical strikes"] = { "VillageCriticalAilmentDamageOverTimeMultiplier", }, + ["+(#)% to damage over time multiplier for bleeding from critical strikes"] = { "CriticalBleedDotMultiplierUnique__1_", }, + ["+(#)% to damage over time multiplier for bleeding from hits with this weapon"] = { "LocalBleedDamageOverTimeMultiplierUnique__1", }, + ["+(#)% to damage over time multiplier for poison from critical strikes during effect"] = { "FlaskCriticalStrikeDoTMultiplierUnique__1", }, + ["+(#)% to damage over time multiplier if you've dealt a critical strike in the past # seconds"] = { "DamageOverTimeMultiplierIfCrit8SecondsUnique__1_", }, + ["+(#)% to fire and chaos resistances"] = { "FireAndChaosDamageResistanceUnique__1__", }, + ["+(#)% to fire and cold resistances"] = { "FireAndColdResistImplicitBoots1_", "FireAndColdResistImplicitRing1", "FireAndColdResistUnique__1", "FireAndColdResistUnique__2", "FireAndColdResistUnique__3", "FireAndColdResistUnique__4_", }, + ["+(#)% to fire and lightning resistances"] = { "FireAndLightningResistImplicitBoots1", "FireAndLightningResistImplicitRing1", "FireAndLightningResistUnique__1", "FireAndLightningResistUnique__2", }, + ["+(#)% to fire damage over time multiplier"] = { "FireDamageOverTimeMultiplierUnique__1", "FireDamageOverTimeMultiplierUnique__2_", "FireDamageOverTimeMultiplierUnique__3", }, + ["+(#)% to fire resistance"] = { "FireResistImplicitAmulet1", "FireResistImplicitRing1", "FireResistUniqueAmulet13", "FireResistUniqueAmulet16", "FireResistUniqueAmulet4", "FireResistUniqueBelt13", "FireResistUniqueBelt14", "FireResistUniqueBelt6", "FireResistUniqueBelt9", "FireResistUniqueBodyDex3", "FireResistUniqueBodyInt2", "FireResistUniqueBodyInt5", "FireResistUniqueBootsDex2", "FireResistUniqueBootsDexInt1", "FireResistUniqueBootsStr3_", "FireResistUniqueBootsStrInt3", "FireResistUniqueDexHelmet2", "FireResistUniqueHelmetStrInt2", "FireResistUniqueOneHandAxe7_", "FireResistUniqueOneHandMace1", "FireResistUniqueOneHandSword4", "FireResistUniqueRing15", "FireResistUniqueRing32", "FireResistUniqueShieldStr3", "FireResistUniqueShieldStrDex1", "FireResistUniqueShieldStrDex3", "FireResistUniqueShieldStrInt5", "FireResistUnique__1", "FireResistUnique__12", "FireResistUnique__13", "FireResistUnique__14", "FireResistUnique__15", "FireResistUnique__16", "FireResistUnique__18", "FireResistUnique__19", "FireResistUnique__2", "FireResistUnique__20_", "FireResistUnique__21", "FireResistUnique__23_", "FireResistUnique__24", "FireResistUnique__25", "FireResistUnique__26", "FireResistUnique__27_", "FireResistUnique__28_", "FireResistUnique__29", "FireResistUnique__30", "FireResistUnique__31", "FireResistUnique__32", "FireResistUnique__34", "FireResistUnique__35", "FireResistUnique__36", "FireResistUnique__37", "FireResistUnique__38", "FireResistUnique__4", "FireResistUnique__5", "FireResistUnique__6", "FireResistUnique__7_", "FireResistUnique__8", "FireResistUnique__9", "FireResistanceBodyDex6", "FireResistanceUniqueGlovesInt_1", }, + ["+(#)% to fire resistance when socketed with a red gem"] = { "FireResistanceWhenSocketedWithRedGemUniqueRing25", }, + ["+(#)% to fire resistance while affected by herald of ash"] = { "HeraldBonusFireResist", }, + ["+(#)% to global critical strike multiplier"] = { "CriticalMultiplierImplicitBow1", "CriticalMultiplierUniqueAmulet17", "CriticalMultiplierUniqueDagger8", "CriticalMultiplierUniqueGlovesDex2", "CriticalMultiplierUniqueGlovesDexInt6_", "CriticalMultiplierUniqueRing17", "CriticalMultiplierUnique__1", "CriticalMultiplierUnique__2", "CriticalMultiplierUnique__3__", "CriticalMultiplierUnique__4____", "CriticalMultiplierUnique__5", "CriticalMultiplierUnique__6", "CriticalMultiplierUnique__7", "CriticalMultiplierUnique__8", "LocalCriticalMultiplierUniqueDagger4", "LocalCriticalMultiplierUniqueOneHandSword4", "TalismanIncreasedCriticalStrikeMultiplier_", }, + ["+(#)% to lightning resistance"] = { "LightningResistImplicitRing1", "LightningResistUniqueAmulet15", "LightningResistUniqueBelt11", "LightningResistUniqueBelt9", "LightningResistUniqueBodyInt1", "LightningResistUniqueBodyInt5", "LightningResistUniqueBootsDexInt4", "LightningResistUniqueBootsStrDex2", "LightningResistUniqueDexHelmet1", "LightningResistUniqueHelmetDexInt1", "LightningResistUniqueHelmetInt10", "LightningResistUniqueHelmetStrInt2", "LightningResistUniqueOneHandMace1", "LightningResistUniqueRing32", "LightningResistUniqueRing35", "LightningResistUniqueShieldInt3", "LightningResistUniqueShieldStrDex1", "LightningResistUnique__1", "LightningResistUnique__10", "LightningResistUnique__11", "LightningResistUnique__12", "LightningResistUnique__13", "LightningResistUnique__14", "LightningResistUnique__15", "LightningResistUnique__16", "LightningResistUnique__17_", "LightningResistUnique__18", "LightningResistUnique__19_", "LightningResistUnique__2", "LightningResistUnique__20", "LightningResistUnique__21", "LightningResistUnique__22", "LightningResistUnique__24", "LightningResistUnique__25", "LightningResistUnique__26", "LightningResistUnique__27", "LightningResistUnique__28", "LightningResistUnique__29", "LightningResistUnique__3", "LightningResistUnique__30", "LightningResistUnique__31", "LightningResistUnique__32", "LightningResistUnique__33", "LightningResistUnique__4", "LightningResistUnique__5", "LightningResistUnique__6", "LightningResistUnique__7", "LightningResistUnique__8", "LightningResistanceBodyDex6", }, + ["+(#)% to lightning resistance when socketed with a blue gem"] = { "LightningResistanceWhenSocketedWithBlueGemUniqueRing25", }, + ["+(#)% to lightning resistance while affected by herald of thunder"] = { "HeraldBonusThunderLightningResist_", }, + ["+(#)% to maximum chaos resistance if # hunter items are equipped"] = { "MaximumChaosResistance4HunterItemsUnique__1", }, + ["+(#)% to maximum cold resistance"] = { "MaximumColdResistUnique__1_", }, + ["+(#)% to maximum cold resistance if # redeemer items are equipped"] = { "MaximumColdResist4RedeemerItemsUnique__1", }, + ["+(#)% to maximum fire resistance"] = { "MaximumFireResistUnique__1", }, + ["+(#)% to maximum fire resistance if # warlord items are equipped"] = { "MaximumFireResist4WarlordItemsUnique__1", }, + ["+(#)% to maximum lightning resistance"] = { "MaximumLightningResistUnique__1", }, + ["+(#)% to maximum lightning resistance if # crusader items are equipped"] = { "MaximumLightningResistance4CrusaderItemsUnique__1", }, + ["+(#)% to melee critical strike multiplier"] = { "MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3", }, + ["+(#)% to off hand critical strike chance"] = { "OffHandBaseCriticalStrikeChanceUnique__1", }, + ["+(#)% to physical damage over time multiplier"] = { "PhysicalDamageOverTimeMultiplierUnique__1", }, + ["+(#)% to quality of all skill gems"] = { "GlobalSkillGemQualityUnique__1", }, + ["+(#)% to quality of socketed gems"] = { "SocketedGemQualityUnique__1", }, + ["+(#)% to quality of socketed support gems"] = { "IncreaseSocketedSupportGemQualityUnique__1___", }, + ["+(#)% to spell critical strike chance if # shaper items are equipped"] = { "AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1", }, + ["+(#)% to unarmed melee attack critical strike chance"] = { "BaseUnarmedCriticalStrikeChanceUnique__2", }, + ["+(#)% to vaal skill critical strike multiplier"] = { "VaalSkillCriticalStrikeMultiplierCorruptedJewel6", }, + ["+(-1-1) to level of all spell skill gems"] = { "GlobalSpellGemsLevelUniqueStaff_2", }, + ["+(-10-10) to maximum number of eaten souls"] = { "SoulEaterStackCountUnique__1", }, + ["+(-13-13)% to chaos resistance"] = { "ChaosResistUnique__27", }, + ["+(-15-15)% to all elemental resistances"] = { "AllResistancesUnique__38", }, + ["+(-2-2) seconds to avian's flight duration"] = { "AviansFlightDurationUnique__1", }, + ["+(-2-2) seconds to avian's might duration"] = { "AviansMightDurationUnique__1", }, + ["+(-200-200) to maximum life"] = { "IncreasedLifeUnique__117", }, + ["+(-23-23)% to chaos resistance"] = { "ChaosResistUnique__24", }, + ["+(-25-50)% to cold resistance"] = { "ColdResistUniqueRing32", }, + ["+(-25-50)% to fire resistance"] = { "FireResistUniqueRing32", }, + ["+(-25-50)% to lightning resistance"] = { "LightningResistUniqueRing32", }, + ["+(-3-3)% to maximum cold resistance"] = { "MaximumColdResistUnique__1_", }, + ["+(-3-3)% to maximum fire resistance"] = { "MaximumFireResistUnique__1", }, + ["+(-3-3)% to maximum lightning resistance"] = { "MaximumLightningResistUnique__1", }, + ["+(-30-30)% to cold resistance"] = { "ColdResistUnique__35", }, + ["+(-30-30)% to fire resistance"] = { "FireResistUnique__28_", }, + ["+(-30-30)% to lightning resistance"] = { "LightningResistUnique__25", }, + ["+(-40-90) to maximum charges"] = { "FlaskExtraChargesUnique__2_", }, + ["+(-5-5) to maximum rage"] = { "MaximumRageUnique__3", }, + ["+(0-30)% chance to suppress spell damage"] = { "ChanceToSuppressSpellsUnique__3", }, + ["+(0-5)% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__4", }, + ["+(0-60) to maximum life"] = { "IncreasedLifeUniqueRing32", }, + ["+(0.1-0.7) metres to melee strike range with unarmed attacks"] = { "UnarmedStrikeRangeUnique__1", }, + ["+(0.3-0.4) metres to melee strike range with unarmed attacks"] = { "UnarmedStrikeRangeUniqueJewel__1_", }, + ["+(1-1.5)% to spell critical strike chance if 4 shaper items are equipped"] = { "AdditionalCriticalStrikeChanceWithSpells4ShaperItemsUnique__1", }, + ["+(1-10) to maximum fortification"] = { "MaximumFortificationUnique__1", }, + ["+(1-10)% chance to block"] = { "AdditionalBlockChanceUnique__12", }, + ["+(1-100) to maximum life"] = { "IncreasedLifeUnique__125", }, + ["+(1-100) to maximum mana"] = { "IncreasedManaUnique__18", }, + ["+(1-2) maximum energy shield per level"] = { "EnergyShieldPerLevelUnique__1", }, + ["+(1-2) maximum life per level"] = { "LifePerLevelUnique__1", }, + ["+(1-2) maximum mana per level"] = { "ManaPerLevelUnique__1", }, + ["+(1-2) to level of all minion skill gems"] = { "GlobalIncreaseMinionSpellSkillGemLevelUnique__1", "GlobalIncreaseMinionSpellSkillGemLevelUnique__2", "GlobalIncreaseMinionSpellSkillGemLevelUnique__5", }, + ["+(1-2) to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUnique__10", }, + ["+(1-2) to maximum number of raised zombies"] = { "MaximumMinionCountUniqueTwoHandSword4Updated", }, + ["+(1-2)% to all maximum elemental resistances if 6 shaper items are equipped"] = { "MaximumElementalResistance6ShaperItemsUnique__1", }, + ["+(1-2)% to critical strike chance against enemies on consecrated ground during effect"] = { "FlaskConsecratedGroundEffectUnique__1_", }, + ["+(1-3) to level of all elemental skill gems if the stars are aligned"] = { "InfluenceElementalSkillGemLevelUnique__1", }, + ["+(1-3) to level of all elemental support gems if the stars are aligned"] = { "InfluenceElementalSupportGemLevelUnique__1", }, + ["+(1-3) to level of all melee skill gems"] = { "GlobalIncreaseMeleeSkillGemLevelUnique__1", }, + ["+(1-3) to level of socketed lightning gems"] = { "LocalIncreaseSocketedLightningGemLevelUnique__1", }, + ["+(1-4)% to all maximum resistances"] = { "IncreasedMaximumResistsUnique__1", }, + ["+(1-5)% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__1__", }, + ["+(1-50)% to lightning resistance"] = { "LightningResistUnique__13", }, + ["+(1-7)% to unarmed melee attack critical strike chance"] = { "BaseUnarmedCriticalStrikeChanceUnique__2", }, + ["+(1-75) to maximum mana"] = { "IncreasedManaUnique__15", }, + ["+(10-12)% chance to suppress spell damage"] = { "ChanceToDodgeSpellsUnique__3_", }, + ["+(10-15) to all attributes"] = { "AllAttributesUniqueHelmetStrInt5", "AllAttributesUniqueRing26", "AllAttributesUnique__2", "AllAttributesUnique__26", "AllAttributesUnique__28", }, + ["+(10-15) to dexterity"] = { "DexterityUniqueClaw9", "DexterityUniqueDagger11", "DexterityUniqueGlovesDex_1", }, + ["+(10-15) to maximum life"] = { "IncreasedLifeUniqueOneHandAxe3", }, + ["+(10-15) to strength"] = { "StrengthUniqueClaw9", }, + ["+(10-15)% to all elemental resistances"] = { "AllResistancesUniqueBelt13", "AllResistancesUniqueBodyStrDex1", "AllResistancesUniqueBootsStr1", "AllResistancesUnique__10", "AllResistancesUnique__12", "AllResistancesUnique__14", "AllResistancesUnique__2", "AllResistancesUnique__28", "AllResistancesUnique__32", "AllResistancesUnique__4", "AllResistancesUnique__5", "AllResistancesUnique__9", }, + ["+(10-15)% to cold resistance"] = { "ColdResistUniqueRing28", }, + ["+(10-15)% to fire resistance"] = { "FireResistUnique__31", "FireResistanceUniqueGlovesInt_1", }, + ["+(10-15)% to lightning resistance"] = { "LightningResistUnique__28", }, + ["+(10-16) to all attributes"] = { "AllAttributesImplicitAmulet1", }, + ["+(10-16)% to all elemental resistances"] = { "AllResistancesUnique__16", }, + ["+(10-20) to all attributes"] = { "AllAttributesUniqueAmulet22", "AllAttributesUnique__17_", "AllAttributesUnique__24", "AllAttributesUnique__25", "AllAttributesUnique__27", "AllAttributesUnique__29", "AllAttributesUnique__3", "AllAttributesUnique__30", }, + ["+(10-20) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr1", }, + ["+(10-20) to dexterity"] = { "DexterityUniqueBow4", "DexterityUniqueBow6", "DexterityUniqueDagger3", "DexterityUniqueRing8", "DexterityUnique__21_", }, + ["+(10-20) to dexterity and intelligence"] = { "DexterityAndIntelligenceUniqueQuiver_1", }, + ["+(10-20) to intelligence"] = { "IntelligenceUniqueOneHandAxe1", "IntelligenceUniqueSceptre5", "IntelligenceUniqueWand2", "IntelligenceUnique__28", }, + ["+(10-20) to maximum charges"] = { "FlaskExtraChargesUnique__3", }, + ["+(10-20) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUniqueBootsInt2", }, + ["+(10-20) to maximum life"] = { "IncreasedLifeImplicitShield1", "IncreasedLifeUniqueHelmetDex5", }, + ["+(10-20) to maximum mana"] = { "IncreasedManaUniqueBootsStrDex3", }, + ["+(10-20) to strength"] = { "StrengthUniqueBodyStr4", "StrengthUniqueRing2", "StrengthUnique__21", }, + ["+(10-20)% to all elemental resistances"] = { "AllResistancesUniqueAmulet9", "AllResistancesUniqueHelmetStrInt1", "AllResistancesUnique__20", "AllResistancesUnique__33", "AllResistancesUnique__37", "AllResistancesUnique__7", }, + ["+(10-20)% to cold resistance"] = { "ColdResistUniqueBelt13", "ColdResistUniqueBelt4", "ColdResistUniqueShieldInt3", "ColdResistUniqueShieldStrDex1", "ColdResistUnique__21", }, + ["+(10-20)% to fire and cold resistances"] = { "FireAndColdResistUnique__4_", }, + ["+(10-20)% to fire resistance"] = { "FireResistUniqueBelt13", "FireResistUniqueShieldStrDex1", "FireResistUnique__15", }, + ["+(10-20)% to lightning resistance"] = { "LightningResistUniqueShieldInt3", "LightningResistUniqueShieldStrDex1", }, + ["+(10-20)% to off hand critical strike chance"] = { "OffHandBaseCriticalStrikeChanceUnique__1", }, + ["+(10-30) to all attributes"] = { "AllAttributesUniqueRing6", }, + ["+(10-30) to intelligence"] = { "IntelligenceUniqueWand8", }, + ["+(10-30) to maximum mana"] = { "IncreasedManaUniqueQuiver1", "IncreasedManaUniqueQuiver1a", }, + ["+(10-30) to strength and intelligence"] = { "StrengthIntelligenceUnique__2", }, + ["+(10-30)% to all elemental resistances"] = { "AllResistancesUniqueRing6", }, + ["+(10-40)% to cold resistance"] = { "ColdResistUnique__39", }, + ["+(10-40)% to fire resistance"] = { "FireResistUnique__34", }, + ["+(10-40)% to lightning resistance"] = { "LightningResistUnique__29", }, + ["+(10-77)% to critical strike multiplier with unarmed melee attacks"] = { "UnarmedMeleeAttackCriticalStrikeMultiplierUnique__1", }, + ["+(100-120) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUnique__1", }, + ["+(100-120) to maximum energy shield"] = { "IncreasedEnergyShieldUniqueQuiver7", "LocalIncreasedEnergyShieldPercentAndStunRecoveryUnique__1", "LocalIncreasedEnergyShieldUnique__25", "LocalIncreasedEnergyShieldUnique__9", }, + ["+(100-120) to maximum life"] = { "IncreasedLifeUnique__72_", "IncreasedLifeUnique__86_", }, + ["+(100-120) to maximum mana"] = { "IncreasedManaUniqueHelmetStrInt3", }, + ["+(100-125)% to melee critical strike multiplier"] = { "MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3", }, + ["+(100-150) to accuracy rating"] = { "IncreasedAccuracyUniqueAmulet7", }, + ["+(100-150) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr_1", }, + ["+(100-150) to evasion rating"] = { "IncreasedEvasionRatingUniqueAmulet7", "LocalIncreasedEvasionRatingUnique__1", }, + ["+(100-150) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUniqueBootsDex1", }, + ["+(100-150) to maximum life"] = { "IncreasedLifeUnique__22", }, + ["+(100-150) to maximum mana"] = { "IncreasedManaUniqueBodyDexInt2", "IncreasedManaUniqueTwoHandAxe9", }, + ["+(100-150) to ward"] = { "LocalIncreasedWardUnique__1", }, + ["+(100-150)% to global critical strike multiplier"] = { "CriticalMultiplierUnique__6", }, + ["+(100-200) to accuracy rating"] = { "IncreasedAccuracyUniqueGlovesDexInt1", }, + ["+(100-200) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__33", }, + ["+(1000-1500) to evasion rating"] = { "IncreasedEvasionRatingUnique__3", }, + ["+(11-19)% to chaos resistance"] = { "ChaosResistDemigodsTorchImplicit", }, + ["+(11-25)% to lightning resistance"] = { "LightningResistanceBodyDex6", }, + ["+(110-130) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__8", }, + ["+(12-16)% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__3", }, + ["+(12-16)% to chaos resistance"] = { "ChaosResistUniqueQuiver9", }, + ["+(12-16)% to cold and lightning resistances"] = { "ColdAndLightningResistImplicitRing1", }, + ["+(12-16)% to fire and cold resistances"] = { "FireAndColdResistImplicitRing1", }, + ["+(12-16)% to fire and lightning resistances"] = { "FireAndLightningResistImplicitRing1", }, + ["+(12-18)% to all elemental resistances"] = { "AllResistancesUnique__15", }, + ["+(12-18)% to damage over time multiplier"] = { "TalismanGlobalDamageOverTimeMultiplier", }, + ["+(120-150) to accuracy rating"] = { "IncreasedAccuracyUniqueTwoHandAxe5", }, + ["+(120-150) to evasion rating and energy shield"] = { "LocalFlatIncreasedEvasionAndEnergyShieldUnique__2_", }, + ["+(120-160) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__2", }, + ["+(120-160) to maximum life"] = { "IncreasedLifeUnique__106_", }, + ["+(120-160) to maximum mana"] = { "IncreasedManaUnique__20_", }, + ["+(120-180) to evasion rating"] = { "LocalIncreasedEvasionRatingUniqueBodyDex7", }, + ["+(13-17)% to chaos resistance"] = { "ChaosResistImplicitBoots1", }, + ["+(13-19)% to chaos resistance"] = { "ChaosResistUniqueBootsStrInt2", }, + ["+(13-23)% to chaos resistance"] = { "ChaosResistUnique__30", }, + ["+(13-29)% to chaos resistance"] = { "ChaosResistUnique__34", "ChaosResistUnique__35", }, + ["+(130-150) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__22", }, + ["+(130-160) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__15", }, + ["+(14-18)% to all elemental resistances"] = { "AllResistancesUnique__3", }, + ["+(14-20)% chance to suppress spell damage while channelling"] = { "ChanceToSuppressSpellsWhileChannellingUnique__1____", }, + ["+(15-20) to all attributes"] = { "AllAttributesUniqueStaff10", "AllAttributesUnique__10_", "AllAttributesUnique__12", "AllAttributesUnique__20", "AllAttributesUnique__4", "AllAttributesUnique__9", }, + ["+(15-20) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__29", }, + ["+(15-20) to maximum life"] = { "IncreasedLifeUniqueWand4", }, + ["+(15-20) to maximum mana"] = { "IncreasedManaUniqueWand4", }, + ["+(15-20)% to all elemental resistances"] = { "AllResistancesUniqueAmulet14", "AllResistancesUniqueTwoHandMace6_", "AllResistancesUnique__17", }, + ["+(15-20)% to chaos resistance"] = { "ChaosResistUniqueRing12", }, + ["+(15-20)% to cold and lightning resistances"] = { "ColdAndLightningResistUnique__2", }, + ["+(15-20)% to global critical strike multiplier"] = { "CriticalMultiplierUnique__7", }, + ["+(15-20)% to lightning resistance"] = { "LightningResistUnique__6", }, + ["+(15-25) to all attributes"] = { "AllAttributesUnique__14", "AllAttributesUnique__16_", }, + ["+(15-25) to dexterity"] = { "DexterityUnique__34", }, + ["+(15-25) to intelligence"] = { "IntelligenceUniqueBelt11", "IntelligenceUniqueQuiver6", "IntelligenceUniqueRing34", "IntelligenceUnique__3", "IntelligenceUnique__37", }, + ["+(15-25) to maximum energy shield"] = { "IncreasedEnergyShieldImplicitRing1", "IncreasedEnergyShieldUniqueRing27", "IncreasedEnergyShieldUniqueRing35", }, + ["+(15-25) to maximum mana"] = { "IncreasedManaUniqueShieldInt2", }, + ["+(15-25) to strength"] = { "StrengthUniqueQuiver6", "StrengthUniqueRing31__", "StrengthUnique__33", "StrengthUnique__34", }, + ["+(15-25)% to all elemental resistances"] = { "AllResistancesDemigodsImplicit", "AllResistancesUnique__11__", "AllResistancesUnique__19", "AllResistancesUnique__21", "AllResistancesUnique__23__", }, + ["+(15-25)% to chaos resistance"] = { "ChaosResistHelmetStrDex2", "ChaosResistUnique__7", }, + ["+(15-25)% to cold resistance"] = { "ColdResistUnique__19", "ColdResistUnique__34", "ColdResistUnique__38", "ColdResistUnique__6", }, + ["+(15-25)% to damage over time multiplier for ailments from critical strikes"] = { "VillageCriticalAilmentDamageOverTimeMultiplier", }, + ["+(15-25)% to fire and cold resistances"] = { "FireAndColdResistUnique__1", }, + ["+(15-25)% to fire damage over time multiplier"] = { "FireDamageOverTimeMultiplierUnique__2_", }, + ["+(15-25)% to fire resistance"] = { "FireResistUniqueOneHandAxe7_", "FireResistUnique__24", "FireResistUnique__27_", "FireResistUnique__32", }, + ["+(15-25)% to global critical strike multiplier"] = { "CriticalMultiplierImplicitBow1", "CriticalMultiplierUniqueDagger8", "CriticalMultiplierUniqueRing17", "CriticalMultiplierUnique__4____", }, + ["+(15-25)% to lightning resistance"] = { "LightningResistUnique__27", }, + ["+(15-30) to all attributes"] = { "AllAttributesUnique__7", }, + ["+(15-30) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUniqueBootsDex8", }, + ["+(15-30) to maximum mana"] = { "IncreasedManaUniqueDexHelmet1", }, + ["+(15-30) to strength"] = { "StrengthUniqueTwoHandAxe3", }, + ["+(15-30)% to cold resistance"] = { "ColdResistUniqueBodyInt5", }, + ["+(15-30)% to fire resistance"] = { "FireResistUniqueBodyInt5", "FireResistUnique__2", }, + ["+(15-30)% to lightning resistance"] = { "LightningResistUniqueBodyInt5", "LightningResistUnique__1", }, + ["+(15-35) to strength"] = { "StrengthUnique__31", }, + ["+(15-50) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__20", }, + ["+(150-200) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__30__", "LocalIncreasedEnergyShieldUnique__7", }, + ["+(150-200) to maximum life"] = { "IncreasedLifeUniqueBootsStr2", }, + ["+(150-200) to maximum mana"] = { "IncreasedManaUnique__10", "IncreasedManaUnique__26", }, + ["+(150-225) to maximum energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueIntHelmet1", }, + ["+(150-250) to accuracy rating"] = { "IncreasedAccuracyUniqueTwoHandAxe1", "IncreasedAccuracyUnique__6", }, + ["+(150-250) to evasion rating while on low life"] = { "EvasionOnLowLifeUniqueAmulet4", }, + ["+(1500-3000) armour if you've blocked recently"] = { "GainArmourIfBlockedRecentlyUnique__1", }, + ["+(16-24) to all attributes"] = { "AllAttributesImplicitDemigodOneHandSword1", "AllAttributesImplicitWreath1", }, + ["+(16-24) to dexterity"] = { "DexterityUniqueJewel13", "DexterityUniqueJewel36", }, + ["+(16-24) to dexterity and intelligence"] = { "HybridDexInt", }, + ["+(16-24) to intelligence"] = { "IntelligenceUniqueJewel11", "IntelligenceUniqueJewel35", }, + ["+(16-24) to strength"] = { "StrengthUniqueJewel34", "StrengthUniqueJewel37", }, + ["+(16-24) to strength and dexterity"] = { "HybridStrDex", }, + ["+(16-24) to strength and intelligence"] = { "HybridStrInt", }, + ["+(16-24)% to all elemental resistances"] = { "AllResistancesUniqueBeltDemigods1", }, + ["+(160-180) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__24_", }, + ["+(160-180) to maximum life"] = { "IncreasedLifeUniqueShieldStr1", }, + ["+(160-220) to accuracy rating"] = { "IncreasedAccuracyUniqueSceptre8", }, + ["+(17-23)% to chaos resistance"] = { "ChaosResistImplicitRing1", "ChaosResistUnique__10", "ChaosResistUnique__11", "ChaosResistUnique__12", "ChaosResistUnique__13", "ChaosResistUnique__14", "ChaosResistUnique__17", "ChaosResistUnique__22", "ChaosResistUnique__33", "ChaosResistUnique__9", }, + ["+(17-29)% to chaos resistance"] = { "ChaosResistUniqueAmulet23", "ChaosResistUniqueDagger8", "ChaosResistUnique__25", "ChaosResistUnique__28", "ChaosResistUnique__29", "ChaosResistUnique__4", "ChaosResistUnique__6", }, + ["+(18-35)% to global critical strike multiplier"] = { "CriticalMultiplierUnique__5", }, + ["+(180-200) to armour"] = { "IncreasedPhysicalDamageReductionRatingUnique__5", }, + ["+(180-200) to evasion rating"] = { "IncreasedEvasionRatingUniqueOneHandSword9", }, + ["+(180-200) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__19", }, + ["+(180-220) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStrInt2", }, + ["+(19-29)% to chaos resistance"] = { "ChaosResistUnique__21", "ChaosResistUnique__23", }, + ["+(2-3)% to maximum chaos resistance if 4 hunter items are equipped"] = { "MaximumChaosResistance4HunterItemsUnique__1", }, + ["+(2-3)% to maximum cold resistance if 4 redeemer items are equipped"] = { "MaximumColdResist4RedeemerItemsUnique__1", }, + ["+(2-3)% to maximum fire resistance if 4 warlord items are equipped"] = { "MaximumFireResist4WarlordItemsUnique__1", }, + ["+(2-3)% to maximum lightning resistance if 4 crusader items are equipped"] = { "MaximumLightningResistance4CrusaderItemsUnique__1", }, + ["+(2-6)% chance to block attack damage"] = { "AdditionalBlockUnique__1", }, + ["+(2-6)% chance to block spell damage"] = { "SpellBlockPercentageUnique__1", }, + ["+(20-24)% to all elemental resistances"] = { "AllResistancesUniqueBodyStrDexInt1", }, + ["+(20-25) mana gained on killing a frozen enemy"] = { "GainManaOnKillingFrozenEnemyUnique__1", }, + ["+(20-25) to all attributes"] = { "AllAttributesUniqueHelmetStr3", }, + ["+(20-25) to maximum mana"] = { "IncreasedManaImplicitArmour1", "IncreasedManaUnique__29", }, + ["+(20-25)% chance to block"] = { "AdditionalBlockChanceUnique__9", }, + ["+(20-25)% chance to suppress spell damage"] = { "ChanceToSuppressSpellsUnique__2", }, + ["+(20-25)% to all elemental resistances"] = { "AllResistancesUnique__26", "AllResistancesUnique__27", }, + ["+(20-25)% to all elemental resistances while you have at least 200 strength"] = { "AllResistanceAt200StrengthUnique__1", }, + ["+(20-25)% to chaos resistance when on low life"] = { "ChaosResistanceOnLowLifeUniqueRing9", }, + ["+(20-25)% to cold and lightning resistances"] = { "ColdAndLightningResistUnique__1", }, + ["+(20-25)% to cold resistance"] = { "ColdResistUniqueOneHandAxe1_", "ColdResistUnique__20", }, + ["+(20-25)% to fire and chaos resistances"] = { "FireAndChaosDamageResistanceUnique__1__", }, + ["+(20-25)% to fire resistance"] = { "FireResistUniqueShieldStrInt5", "FireResistUnique__14", }, + ["+(20-25)% to lightning resistance"] = { "LightningResistUnique__11", }, + ["+(20-26)% chance to suppress spell damage"] = { "SpellDodgeUniqueBootsDex7New", }, + ["+(20-30) to all attributes"] = { "AllAttributesUniqueBelt3", "AllAttributesUnique__11", "AllAttributesUnique__18", "AllAttributesUnique__19", "AllAttributesUnique__22_", "AllAttributesUnique__8_", }, + ["+(20-30) to dexterity"] = { "DexterityImplicitAmulet1", "DexterityUniqueBodyDex4", "DexterityUniqueBootsDex1", "DexterityUniqueBootsDex8", "DexterityUniqueBootsDexInt2", "DexterityUniqueBow7", "DexterityUniqueGlovesDex2", "DexterityUniqueGlovesInt4__", "DexterityUniqueHelmetDexInt2", "DexterityUniqueHelmetStrDex3", "DexterityUniqueShieldStrInt2", "DexterityUnique__1", "DexterityUnique__12", "DexterityUnique__14", "DexterityUnique__17", "DexterityUnique__28", "DexterityUnique__29", "DexterityUnique__31", }, + ["+(20-30) to dexterity and intelligence"] = { "DexterityAndIntelligenceUnique_2", "DexterityAndIntelligenceUnique_3", }, + ["+(20-30) to evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBootsDex5", }, + ["+(20-30) to intelligence"] = { "IntelligenceImplicitAmulet1", "IntelligenceUniqueBelt1", "IntelligenceUniqueBodyInt3", "IntelligenceUniqueBootsDex1", "IntelligenceUniqueBootsInt3", "IntelligenceUniqueGlovesInt3", "IntelligenceUniqueGlovesInt5", "IntelligenceUniqueHelmetInt9", "IntelligenceUniqueHelmetWard1", "IntelligenceUniqueShieldInt4", "IntelligenceUnique__12", "IntelligenceUnique__14", "IntelligenceUnique__18", "IntelligenceUnique__20", "IntelligenceUnique__23", "IntelligenceUnique__27", "IntelligenceUnique__32", "IntelligenceUnique__4", "IntelligenceUnique__7", "Intelligence__1", }, + ["+(20-30) to maximum energy shield"] = { "IncreasedEnergyShieldUniqueAmulet14", "IncreasedEnergyShieldUniqueBelt11", "IncreasedEnergyShieldUnique___1", "LocalIncreasedEnergyShieldUnique__6", "LocalIncreasedEnergyShiledUniqueBootsInt6", }, + ["+(20-30) to maximum life"] = { "IncreasedLifeImplicitGlovesDemigods1", "IncreasedLifeImplicitRing1", "IncreasedLifeImplicitShield2", "IncreasedLifeUniqueBootsStrDex3", "IncreasedLifeUniqueOneHandSword1", "IncreasedLifeUniqueRing1", "IncreasedLifeUnique__39", }, + ["+(20-30) to maximum mana"] = { "IncreasedManaImplicitRing1", "IncreasedManaUniqueBodyInt9", "IncreasedManaUniqueIntHelmet3", "IncreasedManaUniqueSceptre6", "IncreasedManaUniqueTwoHandSword2", }, + ["+(20-30) to strength"] = { "StrengthImplicitAmulet1", "StrengthUniqueAmulet5", "StrengthUniqueBelt1", "StrengthUniqueBootsDexInt2", "StrengthUniqueClaw5_", "StrengthUniqueGlovesDex1", "StrengthUniqueGlovesStrInt2", "StrengthUniqueHelmetStrDex3", "StrengthUniqueIntHelmet3", "StrengthUniqueRing8", "StrengthUnique__14", "StrengthUnique__16", "StrengthUnique__17", "StrengthUnique__23", "StrengthUnique__24", "StrengthUnique__3", "StrengthUnique__6", "StrengthUnique__7_", "StrengthUnique__8", }, + ["+(20-30)% chance to block spell damage during effect"] = { "SpellBlockIncreasedDuringFlaskEffectUnique__1_", }, + ["+(20-30)% to all elemental resistances"] = { "AllResistancesUniqueRing21", "AllResistancesUniqueShieldDex3", "AllResistancesUniqueShieldStrInt1", "AllResistancesUnique__31", "AllResistancesUnique__8", }, + ["+(20-30)% to chaos resistance"] = { "ChaosResistUniqueHelmetStrInt2", "ChaosResistUnique__18_", "ChaosResistUnique__32", }, + ["+(20-30)% to cold resistance"] = { "ColdResistDexHelmet2", "ColdResistImplicitRing1", "ColdResistUniqueBelt1", "ColdResistUniqueBodyStr5", "ColdResistUniqueBootsStrDex5", "ColdResistUniqueGlovesDex1", "ColdResistUniqueHelmetDex5", "ColdResistUniqueHelmetStrInt2", "ColdResistUnique__1", "ColdResistUnique__2", "ColdResistUnique__22_", "ColdResistUnique__28", "ColdResistUnique__29", "ColdResistUnique__3", "ColdResistUnique__32", "ColdResistUnique__37", "ColdResistUnique__40", "ColdResistUnique__41", "ColdResistUnique__43", }, + ["+(20-30)% to damage over time multiplier for poison from critical strikes during effect"] = { "FlaskCriticalStrikeDoTMultiplierUnique__1", }, + ["+(20-30)% to fire and cold resistances"] = { "FireAndColdResistUnique__2", }, + ["+(20-30)% to fire and lightning resistances"] = { "FireAndLightningResistUnique__1", "FireAndLightningResistUnique__2", }, + ["+(20-30)% to fire resistance"] = { "FireResistImplicitAmulet1", "FireResistImplicitRing1", "FireResistUniqueAmulet4", "FireResistUniqueBelt6", "FireResistUniqueBootsStr3_", "FireResistUniqueDexHelmet2", "FireResistUniqueHelmetStrInt2", "FireResistUniqueOneHandMace1", "FireResistUnique__1", "FireResistUnique__13", "FireResistUnique__18", "FireResistUnique__19", "FireResistUnique__21", "FireResistUnique__30", "FireResistUnique__35", "FireResistUnique__37", "FireResistUnique__5", }, + ["+(20-30)% to global critical strike multiplier"] = { "CriticalMultiplierUniqueGlovesDex2", "CriticalMultiplierUniqueGlovesDexInt6_", "LocalCriticalMultiplierUniqueOneHandSword4", }, + ["+(20-30)% to lightning resistance"] = { "LightningResistImplicitRing1", "LightningResistUniqueBootsDexInt4", "LightningResistUniqueDexHelmet1", "LightningResistUniqueHelmetDexInt1", "LightningResistUniqueHelmetStrInt2", "LightningResistUniqueOneHandMace1", "LightningResistUnique__15", "LightningResistUnique__2", "LightningResistUnique__20", "LightningResistUnique__21", "LightningResistUnique__22", "LightningResistUnique__31", "LightningResistUnique__33", "LightningResistUnique__4", }, + ["+(20-30)% to quality of all skill gems"] = { "GlobalSkillGemQualityUnique__1", }, + ["+(20-35) to dexterity"] = { "DexterityUnique__33", }, + ["+(20-40) to all attributes"] = { "AllAttributesUniqueAmulet9", }, + ["+(20-40) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStrDex2", }, + ["+(20-40) to dexterity"] = { "DexterityUnique__18", "DexterityUnique__20__", "DexterityUnique__27", "DexterityUnique__6", }, + ["+(20-40) to evasion rating"] = { "IncreasedEvasionRatingUniqueRapier1", "LocalIncreasedEvasionRatingUniqueShieldStrDex2", }, + ["+(20-40) to intelligence"] = { "IntelligenceUniqueDagger10_", "IntelligenceUnique__25", "IntelligenceUnique__6", }, + ["+(20-40) to maximum life"] = { "IncreasedLifeUniqueAmulet22", "IncreasedLifeUniqueRing28", "IncreasedLifeUnique__5", }, + ["+(20-40) to maximum mana"] = { "IncreasedManaUniqueAmulet19", "IncreasedManaUniqueBootsStrDex4", "IncreasedManaUniqueRing29", }, + ["+(20-40) to strength"] = { "StrengthUnique__10", "StrengthUnique__19_", "StrengthUnique__5", "StrengthUnique__9", }, + ["+(20-40)% to cold resistance"] = { "ColdResistUniqueBelt14", "ColdResistUniqueShieldDex7", "ColdResistUnique__12", "ColdResistUnique__13", "ColdResistUnique__15", "ColdResistUnique__31_", "ColdResistUnique__36_", "ColdResistUnique__8", }, + ["+(20-40)% to damage over time multiplier"] = { "GlobalDamageOverTimeMultiplierUnique__1", "GlobalDamageOverTimeMultiplierUnique__2", }, + ["+(20-40)% to fire resistance"] = { "FireResistUniqueBelt14", "FireResistUnique__23_", "FireResistUnique__25", "FireResistUnique__29", "FireResistUnique__9", }, + ["+(20-40)% to lightning resistance"] = { "LightningResistUniqueBootsStrDex2", "LightningResistUniqueRing35", "LightningResistUnique__12", "LightningResistUnique__3", "LightningResistUnique__30", "LightningResistUnique__5", }, + ["+(20-45) to evasion rating"] = { "LocalIncreasedEvasionRatingUniqueGlovesDex_1", }, + ["+(20-50) to dexterity"] = { "DexterityUnique__23", }, + ["+(20-50) to intelligence"] = { "IntelligenceUniqueGlovesInt2", "IntelligenceUnique__29", }, + ["+(20-50) to maximum mana"] = { "IncreasedManaUnique__12", }, + ["+(20-50) to strength"] = { "StrengthUnique__22", }, + ["+(20-60) to maximum life"] = { "IncreasedLifeUnique__80_", }, + ["+(200-250) energy shield gained on killing a shocked enemy"] = { "GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4", }, + ["+(200-300) to accuracy rating"] = { "IncreasedAccuracyUnique__7_", }, + ["+(200-300) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStrDex3", }, + ["+(200-300) to evasion rating"] = { "IncreasedEvasionRatingUniqueRing30", }, + ["+(200-300) to maximum energy shield"] = { "IncreasedEnergyShieldUniqueClaw1", }, + ["+(200-300) to maximum life"] = { "IncreasedLifeUniqueBodyStrDex5", "IncreasedLifeUniqueHelmetStrDex4", }, + ["+(200-400) to armour"] = { "IncreasedPhysicalDamageReductionRatingUnique__11", }, + ["+(21-24)% chance to suppress spell damage"] = { "SpellDodgeUniqueBootsDex7_", }, + ["+(210-240)% to global critical strike multiplier"] = { "CriticalMultiplierUniqueAmulet17", }, + ["+(22-30)% to vaal skill critical strike multiplier"] = { "VaalSkillCriticalStrikeMultiplierCorruptedJewel6", }, + ["+(23-31)% to chaos resistance"] = { "ChaosResistUnique__15", "ChaosResistUnique__20_", }, + ["+(23-32) to intelligence"] = { "IntelligenceUnique__38", }, + ["+(23-37)% to chaos resistance"] = { "ChaosResistUniqueBody_1", "ChaosResistUnique__36", "ChaosResistUnique__37", "ChaosResistUnique__38", }, + ["+(24-30)% to chaos resistance"] = { "ChaosResistUniqueHelmetDexInt5", }, + ["+(24-36)% to global critical strike multiplier"] = { "TalismanIncreasedCriticalStrikeMultiplier_", }, + ["+(240-300) to maximum life"] = { "IncreasedLifeUnique__34", }, + ["+(240-380) to evasion rating"] = { "LocalIncreasedEvasionRatingUniqueBodyDex6", }, + ["+(25-30) to all attributes"] = { "AllAttributesUnique__15", "AllAttributesUnique__21", }, + ["+(25-30) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUniqueGlovesDexInt3", }, + ["+(25-30) to maximum life"] = { "IncreasedLifeUnique__122", }, + ["+(25-30) to maximum mana"] = { "IncreasedManaUniqueRing14", }, + ["+(25-30)% to cold resistance"] = { "ColdResistUnique__23", "ColdResistUnique__24", }, + ["+(25-30)% to fire and cold resistances"] = { "FireAndColdResistUnique__3", }, + ["+(25-30)% to lightning resistance"] = { "LightningResistUnique__17_", "LightningResistUnique__18", }, + ["+(25-35) to dexterity"] = { "DexterityUniqueBootsDex9", }, + ["+(25-35) to maximum life"] = { "IncreasedLifeUnique__25", }, + ["+(25-35) to strength"] = { "StrengthImplicitBelt1", }, + ["+(25-35)% to all elemental resistances"] = { "AllResistancesUnique__35", }, + ["+(25-35)% to cold damage over time multiplier"] = { "ColdDamageOverTimeMultiplierUnique__1", }, + ["+(25-35)% to cold resistance"] = { "ColdResistUnique__25", }, + ["+(25-35)% to damage over time multiplier for bleeding from hits with this weapon"] = { "LocalBleedDamageOverTimeMultiplierUnique__1", }, + ["+(25-35)% to fire resistance"] = { "FireResistUniqueRing15", }, + ["+(25-35)% to lightning resistance"] = { "LightningResistUniqueHelmetInt10", }, + ["+(25-40) to maximum life"] = { "IncreasedLifeImplicitBelt1", }, + ["+(25-40) to strength and dexterity"] = { "StrengthAndDexterityUnique_1", }, + ["+(25-40)% to all elemental resistances"] = { "AllResistancesUniqueRing7", }, + ["+(25-40)% to cold resistance"] = { "ColdResistUniqueRing24", }, + ["+(25-40)% to critical strike multiplier if dexterity is higher than intelligence"] = { "CriticalStrikeMultiplierIfDexterityHigherThanIntelligenceUnique__1", }, + ["+(25-50) to accuracy rating"] = { "IncreasedAccuracyUniqueBow4", }, + ["+(25-50) to all attributes"] = { "AllAttributesUniqueTwoHandMace7", }, + ["+(25-50) to maximum life"] = { "IncreasedLifeUniqueBodyInt5", "IncreasedLifeUniqueHelmetStr1", }, + ["+(25-50) to maximum mana"] = { "IncreasedManaUniqueBodyInt5", }, + ["+(25-50)% to global critical strike multiplier"] = { "CriticalMultiplierUnique__3__", }, + ["+(25-75) to all attributes"] = { "AllAttributesUnique__5", }, + ["+(25-75) to maximum mana"] = { "IncreasedManaUniqueHelmetInt4", }, + ["+(26-30)% to all elemental resistances"] = { "AllResistancesUniqueHelmetDexInt4", }, + ["+(26-32)% chance to suppress spell damage"] = { "ChanceToSuppressSpellsUnique__1_", }, + ["+(26-32)% to fire resistance"] = { "FireResistUnique__7_", }, + ["+(26-40)% to cold resistance"] = { "ColdResistanceBodyDex6", }, + ["+(260-300) to armour"] = { "IncreasedPhysicalDamageReductionRatingUniqueRing12", "IncreasedPhysicalDamageReductionRatingUnique__2", }, + ["+(260-320) to armour and evasion rating"] = { "ArmourAndEvasionImplicitBelt1", }, + ["+(27-33)% to global critical strike multiplier"] = { "CriticalMultiplierUnique__1", }, + ["+(27-37)% to chaos resistance"] = { "ChaosResistUniqueHelmetInt__1", }, + ["+(28-35)% to physical damage over time multiplier"] = { "PhysicalDamageOverTimeMultiplierUnique__1", }, + ["+(280-300) to accuracy rating"] = { "IncreasedAccuracyUniqueOneHandSword9", }, + ["+(29-41)% to chaos resistance"] = { "ChaosResistUnique__19", }, + ["+(29-43)% to chaos resistance"] = { "ChaosResistUnique__16", }, + ["+(3-4)% chance to block"] = { "AdditionalBlockChanceUnique__6", }, + ["+(3-4)% chance to block attack damage"] = { "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR4", }, + ["+(3-5) to level of all spell skill gems"] = { "GlobalSpellGemsLevelUniqueStaff_1", }, + ["+(3-5) to level of socketed aura gems"] = { "LocalIncreaseSocketedAuraGemLevelUnique___3", }, + ["+(3-5) to maximum number of summoned totems"] = { "AdditionalTotemsUniqueScepter_1", }, + ["+(3-5)% chance to block"] = { "AdditionalBlockChanceUniqueShieldStrDex3__", "AdditionalBlockChanceUnique__1", }, + ["+(3-6)% chance to block"] = { "AdditionalBlockChanceUniqueShieldStrDex1", }, + ["+(3-8)% chance to block"] = { "AdditionalBlockChanceUnique__10", }, + ["+(30-35) to maximum energy shield"] = { "IncreasedEnergyShieldUnique__11", }, + ["+(30-35)% to cold resistance"] = { "ColdResistUniqueBelt9", }, + ["+(30-35)% to fire resistance"] = { "FireResistUniqueBelt9", }, + ["+(30-35)% to lightning resistance"] = { "LightningResistUniqueBelt9", }, + ["+(30-40) to dexterity"] = { "DexterityImplicitQuiver1", "DexterityUniqueBootsDex4_", "DexterityUnique__10_", "DexterityUnique__16", "DexterityUnique__19", "DexterityUnique__2", "DexterityUnique__30", "DexterityUnique__32", "DexterityUnique__4", "DexterityUnique__5", }, + ["+(30-40) to intelligence"] = { "IntelligenceUniqueBodyStrInt3", "IntelligenceUniqueHelmetInt5", "IntelligenceUnique__10", "IntelligenceUnique__15_", "IntelligenceUnique__16", "IntelligenceUnique__26_", "IntelligenceUnique__30", "IntelligenceUnique__33", "IntelligenceUnique__8", }, + ["+(30-40) to maximum energy shield"] = { "IncreasedEnergyShieldUniqueRing18", "IncreasedEnergyShieldUnique__5", "LocalIncreasedEnergySheildUnique__2_", "LocalIncreasedEnergyShieldUniqueHelmetDexInt5", }, + ["+(30-40) to maximum life"] = { "IncreasedLifeImplicitShield3", "IncreasedLifeUniqueAmulet14", "IncreasedLifeUniqueBelt13", "IncreasedLifeUniqueRing19", "IncreasedLifeUnique__10", "IncreasedLifeUnique__19", "IncreasedLifeUnique__48", }, + ["+(30-40) to maximum mana"] = { "IncreasedManaUniqueClaw7", "IncreasedManaUniqueHelmetDexInt3", "IncreasedManaUniqueRing20", }, + ["+(30-40) to strength"] = { "StrengthUniqueBodyStrInt3", "StrengthUniqueRing36", "StrengthUnique__11", "StrengthUnique__25", "StrengthUnique__28", "StrengthUnique__29", "StrengthUnique__30", }, + ["+(30-40)% chance to suppress spell damage while your off hand is empty"] = { "ChanceToDodgeWhileOffhandIsEmpty", }, + ["+(30-40)% to all elemental resistances"] = { "AllResistancesUniqueHelmetDex3", }, + ["+(30-40)% to cold resistance"] = { "ColdResistUniqueAmulet13", "ColdResistUniqueBodyDex7", "ColdResistUniqueQuiver5", "ColdResistUnique__16", "ColdResistUnique__17", "ColdResistUnique__18", "ColdResistUnique__26", "ColdResistUnique__27", "ColdResistUnique__30", "ColdResistUnique__4", }, + ["+(30-40)% to critical strike multiplier if you've cast enfeeble in the past 10 seconds"] = { "EnfeebleCriticalStrikeMultiplierUnique__1", }, + ["+(30-40)% to critical strike multiplier if you've gained a power charge recently"] = { "CriticalStrikeMultiplierIfGainedPowerChargeUnique__1_", }, + ["+(30-40)% to fire resistance"] = { "FireResistUniqueAmulet13", "FireResistUniqueBootsDexInt1", "FireResistUnique__12", "FireResistUnique__16", "FireResistUnique__20_", "FireResistUnique__8", }, + ["+(30-40)% to global critical strike multiplier"] = { "CriticalMultiplierUnique__2", "CriticalMultiplierUnique__8", "LocalCriticalMultiplierUniqueDagger4", }, + ["+(30-40)% to lightning resistance"] = { "LightningResistUniqueAmulet15", "LightningResistUniqueBodyInt1", "LightningResistUnique__10", "LightningResistUnique__14", "LightningResistUnique__16", "LightningResistUnique__19_", "LightningResistUnique__8", }, + ["+(30-45) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__11", }, + ["+(30-45)% chance to block spell damage while in off hand"] = { "SpellBlockWhileInOffHandUnique_1", }, + ["+(30-45)% to fire resistance"] = { "FireResistUniqueAmulet16", }, + ["+(30-50) to all attributes"] = { "AllAttributesUnique__1", }, + ["+(30-50) to dexterity"] = { "DexterityUnique__22", "DexterityUnique__25", "DexterityUnique__3", }, + ["+(30-50) to evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueHelmetDex3", "LocalIncreasedEvasionRatingUniqueBootsDex8", }, + ["+(30-50) to intelligence"] = { "IntelligenceUnique__19", "IntelligenceUnique__22_", "IntelligenceUnique__35", }, + ["+(30-50) to maximum energy shield"] = { "LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueHelmetInt2", "LocalIncreasedEnergyShieldUnique__13", "LocalIncreasedEnergyShieldUnique__17__", "LocalIncreasedEnergyShieldUnique__32", }, + ["+(30-50) to maximum life"] = { "IncreasedLifeUniqueAmulet18", "IncreasedLifeUniqueAmulet4", "IncreasedLifeUniqueShieldStr2", "IncreasedLifeUnique__107", "IncreasedLifeUnique__11", "IncreasedLifeUnique__123", "IncreasedLifeUnique__15", "IncreasedLifeUnique__20", "IncreasedLifeUnique__4", "IncreasedLifeUnique__40", "IncreasedLifeUnique__8", }, + ["+(30-50) to maximum mana"] = { "IncreasedManaUniqueAmulet18", "IncreasedManaUnique__16", "IncreasedManaUnique__5", "IncreasedManaUnique__6", "IncreasedManaUnique__7", }, + ["+(30-50) to strength"] = { "StrengthUnique__18", "StrengthUnique__26", "StrengthUnique__27", "StrengthUnique__32", "StrengthUnique___2", }, + ["+(30-50) to strength and dexterity"] = { "HybridStrDexUnique__1", }, + ["+(30-50)% global critical strike multiplier while you have a frenzy charge"] = { "CriticalStrikeMultiplierFrenzyChargesUnique__1", }, + ["+(30-50)% to cold resistance"] = { "ColdResistUnique__10", }, + ["+(30-50)% to fire resistance"] = { "FireResistUniqueShieldStrDex3", "FireResistUnique__6", }, + ["+(30-50)% to quality of socketed gems"] = { "SocketedGemQualityUnique__1", }, + ["+(30-55) to dexterity"] = { "DexterityUnique__24", }, + ["+(30-60) to evasion rating"] = { "LocalIncreasedEvasionRatingUniqueBodyInt5", }, + ["+(30-60) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUniqueBodyInt5", "LocalIncreasedEnergyShieldUnique__31", "RitualRingEnergyShield", }, + ["+(30-60) to maximum life"] = { "IncreasedLifeUniqueBodyStr2", "IncreasedLifeUnique__1", "IncreasedLifeUnique__16", "IncreasedLifeUnique__27", "IncreasedLifeUnique__69", "RitualRingLife", }, + ["+(30-60) to maximum mana"] = { "IncreasedManaUniqueHelmetInt8", "IncreasedManaUnique__8", "RitualRingMana", }, + ["+(30-70) to maximum mana"] = { "IncreasedManaUniqueHelmetStrInt_1", }, + ["+(300-350) to accuracy rating"] = { "IncreasedAccuracyUniqueHelmetInt7", "IncreasedAccuracyUniqueRing12", "IncreasedAccuracyUniqueTwoHandSword1", }, + ["+(300-350) to armour"] = { "IncreasedPhysicalDamageReductionRatingUniqueBelt9", }, + ["+(300-400) to accuracy rating"] = { "IncreasedAccuracyUnique__1", "IncreasedAccuracyUnique__5", "LocalIncreasedAccuracyUnique__5", }, + ["+(300-500) to accuracy rating"] = { "IncreasedAccuracyUnique__10", }, + ["+(300-500) to armour"] = { "IncreasedPhysicalDamageReductionRatingUnique__8", }, + ["+(300-500) to evasion rating"] = { "IncreasedEvasionRatingUnique__4", }, + ["+(31-43)% to chaos resistance while affected by herald of agony"] = { "HeraldBonusAgonyChaosResist_", }, + ["+(31-53)% to chaos resistance"] = { "ChaosResistUnique__3", }, + ["+(32-40)% to cold resistance"] = { "ColdResistUnique__7", }, + ["+(330-350) to accuracy rating"] = { "LocalIncreasedAccuracyUnique__1", }, + ["+(340-400) to accuracy rating"] = { "IncreasedAccuracyUniqueWand6", }, + ["+(35-40) to maximum life"] = { "IncreasedLifeUniqueTwoHandMace6", }, + ["+(35-40)% to cold resistance"] = { "ColdResistUnique__11", }, + ["+(35-40)% to lightning resistance"] = { "LightningResistUnique__7", }, + ["+(35-45) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStrDex3", }, + ["+(35-45) to dexterity"] = { "DexterityUniqueQuiver6", }, + ["+(35-45) to evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex3", }, + ["+(35-45) to maximum life"] = { "IncreasedLifeUniqueBootsDex6", "IncreasedLifeUnique__18", }, + ["+(35-50) to strength"] = { "StrengthUniqueOneHandSword8", }, + ["+(35-50)% chance to block attack damage during effect"] = { "BlockIncreasedDuringFlaskEffectUnique__1", }, + ["+(35-50)% to fire resistance"] = { "FireResistUniqueShieldStr3", "FireResistUnique__38", }, + ["+(350-400) to accuracy rating"] = { "IncreasedAccuracyUniqueBow7", "IncreasedAccuracyUnique__2", }, + ["+(350-400) to armour"] = { "IncreasedPhysicalDamageReductionRatingUnique__4", }, + ["+(350-500) to accuracy rating"] = { "IncreasedAccuracyUnique__8", }, + ["+(350-500) to evasion rating"] = { "LocalIncreasedEvasionRatingUnique__4", }, + ["+(4-5)% chance to block attack damage"] = { "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR1", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR2__", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR3", "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR5", }, + ["+(4-6)% chance to block spell damage during effect"] = { "SpellBlockIncreasedDuringFlaskEffectUniqueFlask7", }, + ["+(40-45) to maximum energy shield"] = { "IncreasedEnergyShieldUnique__8", }, + ["+(40-50) to all attributes"] = { "AllAttributesUniqueBodyStr3", }, + ["+(40-50) to dexterity"] = { "DexterityUniqueBodyDex1", "DexterityUniqueGlovesDexInt4", "DexterityUniqueGlovesStrDex1", "DexterityUnique__11", "DexterityUnique__7", "DexterityUnique__8", }, + ["+(40-50) to evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueGlovesDex1", }, + ["+(40-50) to intelligence"] = { "IntelligenceUniqueHelmetInt6", "IntelligenceUnique__11", "IntelligenceUnique__34", "IntelligenceUnique__9", }, + ["+(40-50) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__5", }, + ["+(40-50) to maximum life"] = { "IncreasedLifeUniqueQuiver3", "IncreasedLifeUnique__118", "IncreasedLifeUnique__41", "IncreasedLifeUnique__47", "IncreasedLifeUnique__61", "IncreasedLifeUnique__77", }, + ["+(40-50) to maximum mana"] = { "IncreasedManaUniqueWand3", }, + ["+(40-50) to strength"] = { "StrengthUniqueBelt2", "StrengthUniqueTwoHandSword5", }, + ["+(40-50)% to chaos resistance"] = { "ChaosResistUniqueBodyInt8", "ChaosResistUniqueRing16", }, + ["+(40-50)% to cold resistance"] = { "ColdResistUniqueGlovesStrDex3", "ColdResistUniqueGlovesStrInt3", }, + ["+(40-50)% to fire resistance"] = { "FireResistUniqueBodyDex3", "FireResistUniqueBootsDex2", "FireResistUniqueOneHandSword4", "FireResistUnique__4", }, + ["+(40-55) to dexterity"] = { "DexterityUniqueBelt7", }, + ["+(40-55) to strength"] = { "StrengthUniqueBelt7", }, + ["+(40-55)% to chaos damage over time multiplier"] = { "ChaosNonAilmentDamageOverTimeMultiplierUnique__1", }, + ["+(40-60) to dexterity"] = { "DexterityUniqueBootsStrDex1", }, + ["+(40-60) to evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBootsStrDex4", }, + ["+(40-60) to intelligence"] = { "IntelligenceUniqueShieldDex3", }, + ["+(40-60) to maximum energy shield"] = { "IncreasedEnergyShieldUnique__12", "IncreasedEnergyShieldUnique__13", "LocalIncreasedEnergyShieldUniqueHelmetInt5_", "LocalIncreasedEnergyShieldUniqueHelmetInt6", "LocalIncreasedEnergyShieldUnique__12", "LocalIncreasedEnergyShieldUnique__34", "LocalIncreasedEnergyShieldUnique__35", }, + ["+(40-60) to maximum life"] = { "IncreasedLifeUniqueShieldStr5", "IncreasedLifeUniqueShieldStrInt6", "IncreasedLifeUnique__26", "IncreasedLifeUnique__30", "IncreasedLifeUnique__71", "MaximumLifeUnique__25", }, + ["+(40-60) to maximum mana"] = { "IncreasedManaUniqueBootsInt5", "IncreasedManaUniqueRing17", "IncreasedManaUnique__14", "IncreasedManaUnique__24", "IncreasedManaUnique__25", }, + ["+(40-60) to strength"] = { "StrengthUniqueBootsStrDex1", }, + ["+(40-60)% to all elemental resistances"] = { "AllResistancesUniqueRapier2", }, + ["+(40-60)% to cold resistance"] = { "ColdResistUnique__33", }, + ["+(40-60)% to damage over time multiplier if you've dealt a critical strike in the past 8 seconds"] = { "DamageOverTimeMultiplierIfCrit8SecondsUnique__1_", }, + ["+(40-60)% to fire damage over time multiplier"] = { "FireDamageOverTimeMultiplierUnique__1", }, + ["+(40-60)% to fire resistance"] = { "FireResistUnique__26", }, + ["+(40-60)% to lightning resistance"] = { "LightningResistUnique__24", }, + ["+(40-70) to intelligence"] = { "IntelligenceUnique__17", }, + ["+(40-70) to maximum life"] = { "IncreasedLifeUnique__111__", }, + ["+(40-70) to maximum mana"] = { "IncreasedManaUniqueAmulet1", "IncreasedManaUnique__21", "IncreasedManaUnique__23", "IncreasedManaUnique__30", }, + ["+(40-80) to dexterity"] = { "DexterityUnique__15", }, + ["+(40-80) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__26", }, + ["+(40-80) to maximum life"] = { "IncreasedLifeUniqueAmulet19", "IncreasedLifeUnique__13", }, + ["+(400-450) to armour"] = { "IncreasedPhysicalDamageReductionRatingUniqueQuiver4", }, + ["+(400-500) to accuracy rating"] = { "AccuracyAgainstBleedingEnemiesUnique__1", "LocalIncreasedAccuracyUnique__3", "LocalIncreasedAccuracyUnique__4", }, + ["+(400-500) to accuracy rating while at maximum frenzy charges"] = { "AccuracyRatingWithMaxFrenzyChargesUnique__1", }, + ["+(400-500) to armour"] = { "IncreasedPhysicalDamageReductionRatingUniqueAmulet16", "IncreasedPhysicalDamageReductionRatingUnique__3", }, + ["+(400-500) to evasion rating"] = { "IncreasedEvasionRatingUniqueOneHandSword4", "LocalIncreasedEvasionRatingUnique__3", }, + ["+(400-600) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5", }, + ["+(43-61)% to chaos resistance"] = { "ChaosResistUniqueHelmetStrInt5", }, + ["+(45-55) to maximum mana"] = { "IncreasedManaUniqueBelt5", }, + ["+(45-60) to maximum life"] = { "IncreasedLifeUnique__14", "MaximumLifeUnique__24", }, + ["+(45-65) to maximum life"] = { "IncreasedLifeUnique__109_", }, + ["+(450-500) to armour"] = { "IncreasedPhysicalDamageReductionRatingUnique__1", }, + ["+(5-10) to all attributes"] = { "AllAttributesUnique__23", }, + ["+(5-10) to dexterity"] = { "DexterityUnique__26", }, + ["+(5-10) to intelligence"] = { "IntelligenceUnique__21", }, + ["+(5-10)% chance to block"] = { "AdditionalBlockChanceUnique__13", }, + ["+(5-10)% to all elemental resistances"] = { "AllResistancesUnique__29", "ChanceToAvoidElementalStatusAilmentsUniqueAmulet22", }, + ["+(5-10)% to chaos resistance"] = { "ChaosResistUniqueWand7", }, + ["+(5-10)% to lightning resistance"] = { "LightningResistUniqueBelt11", }, + ["+(5-15) to intelligence"] = { "IntelligenceUnique__31", "IntelligenceUnique__36", }, + ["+(5-15)% to all elemental resistances"] = { "AllResistancesUnique__34", }, + ["+(5-20) to intelligence"] = { "IntelligenceUniqueRing4", }, + ["+(5-20)% to all elemental resistances"] = { "AllResistancesUniqueRing4", }, + ["+(5-30) to dexterity"] = { "DexterityUniqueBootsInt1", }, + ["+(5-30) to intelligence"] = { "IntelligenceUniqueBootsInt1", }, + ["+(5-30) to maximum energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueBootsInt1", }, + ["+(5-30) to strength"] = { "StrengthUniqueBootsInt1", }, + ["+(5-30)% to cold resistance"] = { "ColdResistUnique__42", }, + ["+(5-30)% to fire resistance"] = { "FireResistUnique__36", }, + ["+(5-30)% to lightning resistance"] = { "LightningResistUnique__32", }, + ["+(5-6)% chance to block attack damage"] = { "ChanceToBlockAndDamageTakenFromBlockedHitsImplicitR6", }, + ["+(5-7)% to all elemental resistances"] = { "AllResistajcesUniqueStaff10", }, + ["+(5-8) to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUnique__9", }, + ["+(5-8)% to quality of socketed support gems"] = { "IncreaseSocketedSupportGemQualityUnique__1___", }, + ["+(50-100) to maximum energy shield"] = { "AddedEnergyShieldFlatUnique_1", "LocalIncreasedEnergyShieldUniqueHelmetInt_1", }, + ["+(50-100) to maximum life"] = { "IncreasedLifeUnique__115", }, + ["+(50-175) to maximum life"] = { "IncreasedLifeUnique__88", }, + ["+(50-60) to maximum life"] = { "IncreasedLifeUniqueBelt7", "IncreasedLifeUniqueShieldStr4", "IncreasedLifeUnique__67_", "IncreasedLifeUnique__68_", }, + ["+(50-60) to maximum mana"] = { "IncreasedManaUnique__13", }, + ["+(50-60)% to cold resistance while affected by herald of ice"] = { "HeraldBonusColdResist", }, + ["+(50-60)% to fire resistance"] = { "FireResistUniqueBootsStrInt3", }, + ["+(50-60)% to fire resistance while affected by herald of ash"] = { "HeraldBonusFireResist", }, + ["+(50-60)% to lightning resistance while affected by herald of thunder"] = { "HeraldBonusThunderLightningResist_", }, + ["+(50-65) to dexterity"] = { "DexterityUniqueHelmetStrDex2", }, + ["+(50-70) to dexterity"] = { "DexterityUniqueHelmetDex4", }, + ["+(50-70) to maximum energy shield"] = { "IncreasedEnergyShieldUnique__9", "LocalIncreasedEnergyShieldUniqueHelmetStrInt5_", "LocalIncreasedEnergyShieldUnique__10", "LocalIncreasedEnergyShieldUnique__28", }, + ["+(50-70) to maximum life"] = { "IncreasedLifeUniqueBodyDexInt1", "IncreasedLifeUniqueBootsDex9__", "IncreasedLifeUniqueBootsStr3_", "IncreasedLifeUniqueGlovesStrDex4", "IncreasedLifeUniqueGlovesStrInt2", "IncreasedLifeUniqueHelmetStrDex5", "IncreasedLifeUniqueQuiver9", "IncreasedLifeUniqueShieldDex6", "IncreasedLifeUniqueShieldStrDex7", "IncreasedLifeUnique__102", "IncreasedLifeUnique__110", "IncreasedLifeUnique__113", "IncreasedLifeUnique__114", "IncreasedLifeUnique__119", "IncreasedLifeUnique__12_", "IncreasedLifeUnique__2", "IncreasedLifeUnique__28", "IncreasedLifeUnique__44", "IncreasedLifeUnique__49_", "IncreasedLifeUnique__50", "IncreasedLifeUnique__54", "IncreasedLifeUnique__62", "IncreasedLifeUnique__65", "IncreasedLifeUnique__73", "IncreasedLifeUnique__75", "IncreasedLifeUnique__76", "IncreasedLifeUnique__83", "IncreasedLifeUnique__84", "IncreasedLifeUnique__89", "IncreasedLifeUnique__92_", "IncreasedLifeUnique__93", "IncreasedLifeUnique__95", "IncreasedLifeUnique__96__", "IncreasedLifeUnique__98", "IncreasedLifeUnique__99", "IncreasedLifeUnique___7", }, + ["+(50-70) to maximum mana"] = { "IncreasedManaUniqueBodyStrInt6", "IncreasedManaUniqueHelmetStrDex5_", "IncreasedManaUnique__22__", "IncreasedManaUnique__3", }, + ["+(50-70) to strength"] = { "StrengthUniqueSceptre6", }, + ["+(50-75)% chance to suppress spell damage while your off hand is empty"] = { "VillageSuppressChanceEmptyOffhand", }, + ["+(50-75)% to cold resistance"] = { "ColdResistUniqueBodyStrInt3", }, + ["+(50-75)% to fire resistance"] = { "FireResistUniqueBodyInt2", }, + ["+(50-75)% to lightning resistance"] = { "LightningResistUnique__26", }, + ["+(50-80) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__14", }, + ["+(50-80) to maximum life"] = { "IncreasedLifeUnique__23", "IncreasedLifeUnique__97", }, + ["+(50-80) to maximum mana"] = { "IncreasedManaUnique__9", }, + ["+(50-90) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__27_", }, + ["+(500-700) strength requirement"] = { "StrengthRequirementsUnique__3_", }, + ["+(55-70) to maximum mana"] = { "IncreasedManaUnique__31", }, + ["+(55-75) to maximum life"] = { "IncreasedLifeUniqueBootsDex7", }, + ["+(6-10)% chance to block"] = { "AdditionalBlockChanceUnique__3", }, + ["+(6-10)% chance to suppress spell damage"] = { "ChanceToDodgeSpellsUnique__1", "ChanceToDodgeUnique__1", "ChanceToSuppressSpellsUnique__4", }, + ["+(6-10)% to all elemental resistances"] = { "AllResistancesUniqueDagger9", }, + ["+(6-10)% to critical strike multiplier per power charge"] = { "CriticalMultiplierPerPowerChargeUnique__1", }, + ["+(6-10)% to fire resistance"] = { "FireResistanceBodyDex6", }, + ["+(6-15)% to all elemental resistances"] = { "AllResistancesUniqueBelt10", }, + ["+(6-8)% chance to block attack damage while dual wielding"] = { "VillageBlockWhileDualWielding", }, + ["+(60-100) to maximum life"] = { "IncreasedLifeUniqueBodyStr6", "IncreasedLifeUniqueHelmetDexInt2", "IncreasedLifeUnique__32", "IncreasedLifeUnique__33", }, + ["+(60-100) to maximum mana"] = { "IncreasedManaUniqueDagger4", "IncreasedManaUniqueHelmetDexInt2", "IncreasedManaUnique__28", }, + ["+(60-100)% to critical strike multiplier for spells if you haven't killed recently"] = { "SpellCriticalStrikeMultiplierIfNotKilledRecentlyUnique__1", }, + ["+(60-100)% to critical strike multiplier with one handed melee weapons"] = { "OneHandedMeleeCriticalStrikeMultiplierUnique__1", }, + ["+(60-120) to maximum mana"] = { "IncreasedManaUnique__1", }, + ["+(60-120) to strength"] = { "StrengthUnique__13_", }, + ["+(60-70) to maximum energy shield"] = { "IncreasedEnergyShieldUniqueBelt5", "IncreasedEnergyShieldUnique__10", }, + ["+(60-70) to maximum life"] = { "IncreasedLifeUniqueAmulet25", "IncreasedLifeUniqueBodyDex6", "IncreasedLifeUniqueGlovesDexInt5", "IncreasedLifeUnique__55", "IncreasedLifeUnique__57", "IncreasedLifeUnique__60", "IncreasedLifeUnique__9", }, + ["+(60-75) to intelligence"] = { "IntelligenceUniqueRing13", }, + ["+(60-75) to maximum life"] = { "IncreasedLifeUniqueGlovesStr3", }, + ["+(60-80) to intelligence"] = { "IntelligenceUniqueGlovesStr3", }, + ["+(60-80) to maximum energy shield"] = { "IncreasedEnergyShieldImplicitBelt2", "LocalIncreasedEnergyShieldUnique__23", }, + ["+(60-80) to maximum life"] = { "IncreasedLifeUniqueBodyDexInt3", "IncreasedLifeUniqueBodyStrDex2", "IncreasedLifeUniqueGlovesInt3", "IncreasedLifeUniqueShieldDex2", "IncreasedLifeUniqueShieldDexInt1", "IncreasedLifeUnique__103", "IncreasedLifeUnique__105", "IncreasedLifeUnique__120", "IncreasedLifeUnique__121", "IncreasedLifeUnique__124", "IncreasedLifeUnique__3", "IncreasedLifeUnique__38", "IncreasedLifeUnique__42_", "IncreasedLifeUnique__43", "IncreasedLifeUnique__45", "IncreasedLifeUnique__46", "IncreasedLifeUnique__52", "IncreasedLifeUnique__53", "IncreasedLifeUnique__56", "IncreasedLifeUnique__58", "IncreasedLifeUnique__59", "IncreasedLifeUnique__6", "IncreasedLifeUnique__63_", "IncreasedLifeUnique__64", "IncreasedLifeUnique__66", "IncreasedLifeUnique__78", "IncreasedLifeUnique__79", "IncreasedLifeUnique__85_", "IncreasedLifeUnique__94", }, + ["+(60-80) to maximum mana"] = { "IncreasedManaUniqueGlovesInt3", "IncreasedManaUnique__27", }, + ["+(60-80)% to damage over time multiplier for bleeding from critical strikes"] = { "CriticalBleedDotMultiplierUnique__1_", }, + ["+(60-90) to maximum life"] = { "IncreasedLifeUniqueBodyStrDex3_", "IncreasedLifeUniqueBodyStrInt6", "IncreasedLifeUnique__100", "IncreasedLifeUnique__101", "IncreasedLifeUnique__126", "IncreasedLifeUnique__21", "IncreasedLifeUnique__81", }, + ["+(600-1000) to accuracy rating"] = { "IncreasedAccuracyUnique__3", }, + ["+(600-1000) to armour"] = { "IncreasedPhysicalDamageReductionRatingUnique__10", }, + ["+(600-1000) to evasion rating"] = { "IncreasedEvasionRatingUnique__6_", }, + ["+(600-700) to armour"] = { "IncreasedPhysicalDamageReductionRatingUnique__7", }, + ["+(600-700) to evasion rating"] = { "IncreasedEvasionRatingUnique__5_", "LocalIncreasedEvasionRatingUnique__2", }, + ["+(64-96) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__18_", }, + ["+(65-80) to maximum life"] = { "IncreasedLifeUnique__31", }, + ["+(7-10)% chance to suppress spell damage while channelling"] = { "ChanceToDodgeAttacksWhileChannellingUnique__1", "ChanceToDodgeSpellsWhileChannellingUnique__1", }, + ["+(7-11)% to chaos resistance"] = { "ChaosResistUniqueBow12", }, + ["+(7-13) to all attributes"] = { "AllAttributesUnique__31", }, + ["+(7-19)% to chaos resistance"] = { "ChaosResistUnique__31", }, + ["+(70-100) to maximum life"] = { "IncreasedLifeUniqueBodyStrDex4", "IncreasedLifeUnique__36_", "IncreasedLifeUnique__37", "IncreasedLifeUnique__91", }, + ["+(70-150) to maximum energy shield"] = { "IncreasedEnergyShieldUnique__3", }, + ["+(70-80) to maximum energy shield"] = { "IncreasedEnergyShieldUniqueBodyStrDexInt1", }, + ["+(70-85) to maximum life"] = { "IncreasedLifeFireResistUniqueBelt14", }, + ["+(70-90) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUniqueShieldInt5", }, + ["+(70-90) to maximum life"] = { "IncreasedLifeUniqueShieldDex5", }, + ["+(700-1000) to evasion rating while in sand stance"] = { "EvasionRatingSandStanceUnique__1", }, + ["+(700-1000) to maximum life if there are no life modifiers on other equipped items"] = { "IncreasedLifeNoLifeModifiersUnique__1", }, + ["+(75-100) to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1", }, + ["+(75-100) to maximum life"] = { "IncreasedLifeUniqueBelt8", }, + ["+(75-100)% to cold resistance when socketed with a green gem"] = { "ColdResistanceWhenSocketedWithGreenGemUniqueRing25", }, + ["+(75-100)% to fire resistance when socketed with a red gem"] = { "FireResistanceWhenSocketedWithRedGemUniqueRing25", }, + ["+(75-100)% to lightning resistance when socketed with a blue gem"] = { "LightningResistanceWhenSocketedWithBlueGemUniqueRing25", }, + ["+(75-200) to maximum life"] = { "IncreasedLifeUniqueQuiver21", }, + ["+(75-80) to maximum energy shield"] = { "IncreasedEnergyShieldUnique__4", }, + ["+(8-10)% to all elemental resistances"] = { "AllResistancesImplicitRing1", "AllResistancesUnique__30", }, + ["+(8-10)% to chaos resistance"] = { "ChaosResistUniqueAmulet15_", }, + ["+(8-12) to all attributes"] = { "AllAttributesImplicitDemigodRing1", }, + ["+(8-12)% chance to block"] = { "AdditionalBlockChanceUnique__7__", }, + ["+(8-12)% chance to block attack damage during effect"] = { "BlockIncreasedDuringFlaskEffectUniqueFlask7", }, + ["+(8-12)% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUniqueTwoHandAxe6", }, + ["+(8-12)% to all elemental resistances"] = { "AllResistancesImplicitArmour1", "AllResistancesImplicitVictorAmulet", }, + ["+(8-12)% to cold and lightning resistances"] = { "ColdAndLightningResistImplicitBoots1", }, + ["+(8-12)% to fire and cold resistances"] = { "FireAndColdResistImplicitBoots1_", }, + ["+(8-12)% to fire and lightning resistances"] = { "FireAndLightningResistImplicitBoots1", }, + ["+(8-12)% to fire damage over time multiplier"] = { "FireDamageOverTimeMultiplierUnique__3", }, + ["+(8-15)% chance to avoid elemental damage from hits while phasing"] = { "AvoidElementalDamagePhasingUnique__1", }, + ["+(8-15)% chance to avoid physical damage from hits while phasing"] = { "AvoidPhysicalDamageWhilePhasingUnique__1", }, + ["+(8-16)% to all elemental resistances"] = { "AllResistancesImplictBootsDemigods1", "AllResistancesImplictHelmetDemigods1", }, + ["+(8-16)% to chaos resistance"] = { "ChaosResistUnique__2", }, + ["+(8-24) to all attributes"] = { "AllAttributesUnique__6", }, + ["+(80-100) to all attributes"] = { "AllAttributesUniqueAmulet8", }, + ["+(80-100) to armour"] = { "IncreasedPhysicalDamageReductionRatingUnique__9", }, + ["+(80-100) to evasion rating"] = { "IncreasedEvasionRatingUniqueAmulet17", "IncreasedEvasionRatingUniqueQuiver1", "IncreasedEvasionRatingUnique__7", }, + ["+(80-100) to evasion rating and energy shield"] = { "LocalFlatIncreasedEvasionAndEnergyShieldUnique__1", }, + ["+(80-100) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUniqueBootsDexInt4", "LocalIncreasedEnergyShieldUniqueGlovesStr4", "LocalIncreasedEnergyShieldUnique__21", }, + ["+(80-100) to maximum life"] = { "IncreasedLifeUniqueBodyStrInt7", "IncreasedLifeUniqueHelmetDex4", "IncreasedLifeUnique__108", "IncreasedLifeUnique__112", "IncreasedLifeUnique__116", "IncreasedLifeUnique__127", "IncreasedLifeUnique__29", "IncreasedLifeUnique__35", "IncreasedLifeUnique__74", "IncreasedLifeUnique__82", "IncreasedLifeUnique__90", }, + ["+(80-100) to maximum mana"] = { "IncreasedManaUniqueBow1", "IncreasedManaUnique__17", }, + ["+(80-120) to accuracy rating"] = { "IncreasedAccuracyUniqueAmulet17_", }, + ["+(80-120) to evasion rating"] = { "LocalIncreasedEvasionRatingUnique__5", }, + ["+(80-120) to intelligence"] = { "IntelligenceUniqueStaff8", }, + ["+(80-120) to maximum energy shield"] = { "IncreasedEnergyShieldUnique__7", }, + ["+(80-120) to maximum mana"] = { "IncreasedManaUnique__4", }, + ["+(80-90) to maximum life"] = { "IncreasedLifeUniqueBodyStrInt5", }, + ["+(800-1000) to accuracy rating"] = { "IncreasedAccuracyUnique__4", }, + ["+(800-1200) to armour"] = { "IncreasedPhysicalDamageReductionRatingUnique__6_", }, + ["+(9-12)% to all elemental resistances"] = { "AllResistancesUniqueBodyDexInt1", }, + ["+(9-13)% chance to block"] = { "AdditionalBlockChanceUnique__8_", }, + ["+(9-20) to maximum energy shield"] = { "IncreasedEnergyShieldImplicitBelt1", }, + ["+(90-100) to maximum life"] = { "IncreasedLifeUniqueBodyStrDexInt1", "IncreasedLifeUnique__24", "IncreasedLifeUnique__51", "IncreasedLifeUnique__70", }, + ["+(90-110) to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__16", }, + ["+(90-120) energy shield gained on killing a shocked enemy"] = { "GainEnergyShieldOnKillShockedEnemyUnique__1_", }, + ["+(90-120) to accuracy rating"] = { "IncreasedAccuracyUniqueTwoHandSword7", }, + ["+0.2 metres to melee strike range"] = { "IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13", "IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42", }, + ["+0.2 metres to melee strike range per white socket"] = { "MeleeRangePerWhiteSocketUniqueOneHandSword5", }, + ["+0.2 metres to melee strike range while fortified"] = { "MeleeWeaponRangeWhileFortifiedUber1", }, + ["+0.2 metres to weapon range"] = { "LocalIncreasedMeleeWeaponRangeEssence1", "LocalIncreasedMeleeWeaponRangeUniqueDescentStaff1", "LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5", "LocalIncreasedMeleeWeaponRangeUnique__1", "LocalIncreasedMeleeWeaponRangeUnique___2", }, + ["+0.2% to off hand critical strike chance per 10 maximum energy shield on shield"] = { "SpectralShieldThrowThresholdJewel1_", }, + ["+0.3 metres to melee strike range while at maximum frenzy charges"] = { "MeleeWeaponRangeAtMaximumFrenzyChargesUber1_", }, + ["+0.3% critical strike chance per power charge"] = { "AdditionalCriticalStrikeChancePerPowerChargeUnique__1", }, + ["+1 life per 2% increased rarity of items found"] = { "MaximumLifePerItemRarityUnique__1", }, + ["+1 life per 4 dexterity"] = { "LifePerDexterityUnique__1", }, + ["+1 mana per 4 strength"] = { "ManaPerStrengthUnique__1__", }, + ["+1 metres to weapon range"] = { "LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_", }, + ["+1 prefix modifier allowed"] = { "MaxPrefixMaxSuffixImplicitE2_", "MaxPrefixMaxSuffixImplicitE4", }, + ["+1 second to summon skeleton cooldown"] = { "SummonSkeletonsCooldownTimeUnique__1", }, + ["+1 to level of all chaos skill gems if 6 hunter items are equipped"] = { "GlobalChaosGemLevel6HunterItemsUnique__1", }, + ["+1 to level of all chaos spell skill gems"] = { "GlobalChaosSpellGemsLevelUniqueWand_1", "VillageGlobalIncreaseChaosSpellSkillGemLevel", }, + ["+1 to level of all cold skill gems if 6 redeemer items are equipped"] = { "GlobalColdGemLevel6RedeemerItemsUnique__1", }, + ["+1 to level of all cold spell skill gems"] = { "VillageGlobalIncreaseColdSpellSkillGemLevel", }, + ["+1 to level of all fire skill gems if 6 warlord items are equipped"] = { "GlobalFireGemLevel6WarlordItemsUnique__1", }, + ["+1 to level of all fire spell skill gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueDagger10", "VillageGlobalIncreaseFireSpellSkillGemLevel", }, + ["+1 to level of all lightning skill gems if 6 crusader items are equipped"] = { "GlobalLightningGemLevel6CrusaderItemsUnique__1", }, + ["+1 to level of all lightning spell skill gems"] = { "VillageGlobalIncreaseLightningSpellSkillGemLevel", }, + ["+1 to level of all minion skill gems"] = { "GlobalIncreaseMinionSpellSkillGemLevelUnique__3", "GlobalIncreaseMinionSpellSkillGemLevelUnique__4", "VillageGlobalIncreaseMinionSpellSkillGemLevel", }, + ["+1 to level of all non-exceptional support gems if 6 shaper items are equipped"] = { "GlobalSupportGemLevel6ShaperItemsUnique__1", }, + ["+1 to level of all physical skill gems if 6 elder items are equipped"] = { "GlobalPhysicalGemLevel6ElderItemsUnique__1", }, + ["+1 to level of all physical spell skill gems"] = { "VillageGlobalIncreasePhysicalSpellSkillGemLevel", }, + ["+1 to level of all raise zombie gems"] = { "MaximumMinionCountUniqueBootsInt4", }, + ["+1 to level of all skill gems"] = { "GlobalSkillGemLevelUnique__1", }, + ["+1 to level of all spell skill gems"] = { "LocalIncreaseSocketedGemLevelUnique___3", }, + ["+1 to level of all vaal skill gems"] = { "GlobalVaalGemsLevelImplicit1_", }, + ["+1 to level of socketed aura gems"] = { "LocalIncreaseSocketedAuraGemLevelUniqueBodyDexInt4", }, + ["+1 to level of socketed bow gems"] = { "LocalIncreaseSocketedBowGemLevelUniqueBow2", }, + ["+1 to level of socketed cold gems"] = { "LocalIncreaseSocketedColdGemLevelUniqueClaw5", "LocalIncreaseSocketedColdGemLevelUniqueDexHelmet2", "LocalIncreaseSocketedColdGemLevelUniqueStaff13", }, + ["+1 to level of socketed dexterity gems"] = { "LocalIncreaseSocketedDexterityGemLevelUniqueClaw8", }, + ["+1 to level of socketed elemental gems"] = { "LocalIncreaseSocketedElementalGemUniqueGlovesInt6", }, + ["+1 to level of socketed fire gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueDexHelmet2", "LocalIncreaseSocketedFireGemLevelUniqueStaff13", }, + ["+1 to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5", "LocalIncreaseSocketedGemLevelUniqueHelmetStrDex6", "LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2", "LocalIncreaseSocketedGemLevelUniqueSceptre1", "LocalIncreaseSocketedGemLevelUniqueTwoHandAxe9", "LocalIncreaseSocketedGemLevelUnique__2", "LocalIncreaseSocketedGemLevelUnique__4", "LocalIncreaseSocketedGemLevelUnique__5", "LocalIncreaseSocketedGemLevelUnique__7", }, + ["+1 to level of socketed melee gems"] = { "LocalIncreaseSocketedMeleeGemLevelUniqueRapier1", "LocalIncreaseSocketedMeleeGemLevelUniqueTwoHandMace5", }, + ["+1 to level of socketed minion gems"] = { "LocalIncreaseSocketedMinionGemLevelUniqueTwoHandMace5", }, + ["+1 to level of socketed projectile gems"] = { "LocalIncreaseSocketedProjectileGemLevel1", }, + ["+1 to level of socketed skill gems"] = { "LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_", }, + ["+1 to level of socketed skill gems per 25 player levels"] = { "SocketedGemLevelPer25PlayerLevelsUnique__1", }, + ["+1 to level of socketed spell gems"] = { "LocalIncreaseSocketedSpellGemLevel1", "LocalIncreaseSocketedSpellGemLevelUniqueWand4", }, + ["+1 to level of socketed strength gems"] = { "LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3", }, + ["+1 to level of socketed support gems"] = { "LocalIncreaseSocketedSupportGemLevelUniqueStaff12", }, + ["+1 to level of socketed warcry gems"] = { "LocalIncreaseSocketedWarcryGemLevelUniqueShieldDex7", "LocalIncreaseSocketedWarcryGemLevelUniqueShieldStr4", }, + ["+1 to maximum endurance charges"] = { "ChargeBonusMaximumEnduranceCharges", "MaximumEnduranceChargeUniqueBodyStr3", "MaximumEnduranceChargeUniqueRing2", "MaximumEnduranceChargeUnique__1_", "MaximumEnduranceChargeUnique__2", }, + ["+1 to maximum endurance charges if 6 warlord items are equipped"] = { "MaximumEnduranceCharges6WarlordItemsUnique__1", }, + ["+1 to maximum energy shield per 5 armour on equipped shield"] = { "EnergyShieldPerArmourOnShieldUnique__1", }, + ["+1 to maximum fortification per endurance charge"] = { "MaximumFortificationPerEnduranceChargeUnique__1", }, + ["+1 to maximum frenzy charges"] = { "ChargeBonusMaximumFrenzyCharges", "MaximumFrenzyChargesUniqueBodyStr3", "MaximumFrenzyChargesUniqueBootsStrDex2_", "MaximumFrenzyChargesUniqueDescentOneHandSword1", "MaximumFrenzyChargesUnique__1", }, + ["+1 to maximum frenzy charges if 6 redeemer items are equipped"] = { "MaximumFrenzyCharges6RedeemerItemsUnique__1", }, + ["+1 to maximum life per 2 intelligence"] = { "IncreasedLifePerIntelligenceUnique__1", }, + ["+1 to maximum mana per 2 intelligence"] = { "GainManaPer2IntelligenceUnique_1", }, + ["+1 to maximum number of raised spectres per socketed ghastly eye jewel"] = { "MaximumSpectrePerGhastlyEyeUnique__1", }, + ["+1 to maximum number of raised zombies"] = { "MaximumMinionCountUniqueTwoHandSword4", "MaximumMinionCountUniqueWand2", "MaximumMinionCountUniqueWand2Updated", "TalismanAdditionalZombie", }, + ["+1 to maximum number of raised zombies per 500 strength"] = { "AdditionalZombiesPerXStrengthUnique__1", }, + ["+1 to maximum number of sacred wisps"] = { "AdditionalSacredWispUnique__1", }, + ["+1 to maximum number of skeletons"] = { "MaximumMinionCountUniqueBootsStrInt2", "MaximumMinionCountUniqueBootsStrInt2Updated", }, + ["+1 to maximum number of spectres"] = { "MaximumMinionCountUniqueBodyInt9", "MaximumMinionCountUniqueSceptre5", }, + ["+1 to maximum number of summoned golems"] = { "MaximumGolemsUnique__1", "MaximumGolemsUnique__2", "VillageMaximumGolems", }, + ["+1 to maximum number of summoned golems if you have 3 primordial items socketed or equipped"] = { "GolemPerPrimordialJewel", }, + ["+1 to maximum number of summoned holy relics"] = { "AdditionalHolyRelicUnique__1", }, + ["+1 to maximum number of summoned totems"] = { "AdditionalTotemsUnique__1", }, + ["+1 to maximum power charges"] = { "ChargeBonusMaximumPowerCharges", "IncreasedMaximumPowerChargesUniqueStaff7", "IncreasedMaximumPowerChargesUniqueWand3", "IncreasedMaximumPowerChargesUnique__1", "IncreasedMaximumPowerChargesUnique__2", "IncreasedMaximumPowerChargesUnique__4", }, + ["+1 to maximum power charges and maximum endurance charges"] = { "MaximumPowerandEnduranceChargesImplicitE1", }, + ["+1 to maximum power charges if 6 crusader items are equipped"] = { "IncreasedMaximumPowerCharges6CrusaderItemsUnique__1", }, + ["+1 to maximum siphoning charges per elder or shaper item equipped"] = { "MaximumSiphoningChargePerElderOrShaperItemUnique__1", }, + ["+1 to maximum spirit charges per abyss jewel affecting you"] = { "MaximumSpiritChargesPerAbyssJewelEquippedUnique__1", "MaximumSpiritChargesPerAbyssJewelEquippedUnique__2", }, + ["+1 to minimum endurance charges per grand spectrum"] = { "MinimumEnduranceChargesPerStackableJewelUnique__1", }, + ["+1 to minimum endurance, frenzy and power charges"] = { "UniqueSpecialCorruptionAllMinCharges", }, + ["+1 to minimum frenzy charges per grand spectrum"] = { "MinimumFrenzyChargesPerStackableJewelUnique__1", }, + ["+1 to minimum power charges per grand spectrum"] = { "MinimumPowerChargesPerStackableJewelUnique__1", }, + ["+1 to number of summoned arbalists"] = { "SummonArbalistNumberOfArbalistsAllowed", }, + ["+1% chance to block attack damage per 50 strength"] = { "BlockChancePer50StrengthUnique__1", }, + ["+1% chance to block attack damage per endurance charge"] = { "ChargeBonusBlockChancePerEnduranceCharge", }, + ["+1% chance to block attack damage per frenzy charge"] = { "ChargeBonusBlockChancePerFrenzyCharge_", }, + ["+1% chance to block attack damage per power charge"] = { "ChargeBonusBlockChancePerPowerCharge_", }, + ["+1% chance to block attack damage per summoned skeleton"] = { "AttackBlockPerSkeletonUnique__1", }, + ["+1% chance to suppress spell damage per endurance charge"] = { "ChargeBonusDodgeChancePerEnduranceCharge", }, + ["+1% chance to suppress spell damage per frenzy charge"] = { "ChargeBonusDodgeChancePerFrenzyCharge", }, + ["+1% chance to suppress spell damage per power charge"] = { "ChargeBonusDodgeChancePerPowerCharge", }, + ["+1% to all elemental resistances per 15 omniscience"] = { "ElementalResistPerAscendanceUnique__1__", }, + ["+1% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__3", }, + ["+1% to chaos resistance per poison on you"] = { "ChaosResistancePerPoisonOnSelfUnique__1", }, + ["+1% to critical strike chance while affected by aspect of the cat"] = { "AdditionalCriticalStrikeChanceWithCatAspectUnique__1", }, + ["+1% to critical strike multiplier per 1% chance to block attack damage"] = { "CriticalMultiplierPerBlockChanceUnique__1", }, + ["+1% to maximum cold resistance while affected by herald of ice"] = { "HeraldBonusMaxColdResist__", }, + ["+1% to maximum fire resistance while affected by herald of ash"] = { "HeraldBonusAshMaxFireResist", }, + ["+1% to maximum lightning resistance while affected by herald of thunder"] = { "HeraldBonusThunderMaxLightningResist", }, + ["+10 to dexterity"] = { "DexterityUniqueAmulet7", "DexterityUniqueBootsInt3", "DexterityUniqueGlovesStrDex3", "DexterityUniqueRing3", }, + ["+10 to intelligence"] = { "IntelligenceUniqueOneHandSword2", "IntelligenceUniqueWand1", }, + ["+10 to maximum divine charges"] = { "DivineChargeOnHitUnique__1_", }, + ["+10 to maximum life"] = { "IncreasedLifeUniqueDescentHelmet1", }, + ["+10 to maximum rage"] = { "MaximumRageImplicitE1", "MaximumRageUnique__1", }, + ["+10 to maximum rage while wielding a sword"] = { "MaxRagePerEquippedSwordUnique__1____", }, + ["+10 to strength"] = { "StrengthUniqueGlovesStrDex3", "StrengthUniqueTwoHandAxe5", "StrengthUniqueTwoHandMace1", }, + ["+10% chance to be frozen, shocked and ignited"] = { "ChanceToBeFrozenShockedIgnitedUnique__1", }, + ["+10% chance to block"] = { "AdditionalBlockChanceUniqueShieldDex5", }, + ["+10% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUnique__1", }, + ["+10% chance to block attack damage while holding a shield"] = { "ShieldBlockChanceUniqueAmulet16", }, + ["+10% chance to block attack damage while not cursed"] = { "AdditionalBlockWhileNotCursedUnique__1", }, + ["+10% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__2_", }, + ["+10% to all elemental resistances"] = { "AllResistancesDescentUniqueQuiver1", "AllResistancesUniqueIntHelmet3", "AllResistancesUniqueRing9", "AllResistancesUniqueShieldStrInt4", "AllResistancesUnique__13", }, + ["+10% to elemental resistances during effect"] = { "FlaskElementalResistancesUniqueFlask1_", }, + ["+10% to fire damage over time multiplier"] = { "BurningArrowThresholdJewelUnique__1", }, + ["+10% to global critical strike multiplier per green socket"] = { "CriticalStrikeMultiplierPerGreenSocketUnique_1", }, + ["+10% to maximum effect of shock"] = { "VillageMaximumShock", }, + ["+100 strength requirement"] = { "StrengthRequirementsUnique__1", "StrengthRequirementsUnique__4", }, + ["+100 to accuracy rating"] = { "IncreasedAccuracyUniqueAmulet5", }, + ["+100 to maximum charges. -1 to this value when used"] = { "HarvestFlaskEnchantmentMaximumChargesLoweredOnUse3_", }, + ["+100 to maximum energy shield per blue socket"] = { "EnergyShieldPerBlueSocketUniqueRing39", }, + ["+100 to maximum life"] = { "IncreasedLifeUniqueTwoHandAxe4", "IncreasedLifeUnique__104_", }, + ["+100 to maximum life per red socket"] = { "LifePerRedSocketUniqueRing39", }, + ["+100 to maximum mana"] = { "IncreasedManaUniqueAmulet10", }, + ["+100 to maximum mana per green socket"] = { "ManaPerGreenSocketUniqueRing39", }, + ["+100% chance to block attack damage if you have blocked spell damage recently"] = { "AttackBlockIfBlockedSpellRecentlyUnique__1_", }, + ["+100% chance to block spell damage if you have blocked attack damage recently"] = { "SpellBlockIfBlockedAttackRecentlyUnique__1", }, + ["+1000 to evasion rating while on full life"] = { "EvasionOnFullLifeUniqueBodyDex4", }, + ["+1000 to maximum life"] = { "IncreasedLifeUniqueBodyStr1", }, + ["+1000 to spectre maximum life"] = { "SpectreLifeUnique__1___", }, + ["+11% to chaos resistance"] = { "ChaosResistUnique__1", }, + ["+110 to evasion rating"] = { "IncreasedEvasionRatingUnique___1", }, + ["+12 to level of socketed skill gems"] = { "LocalIncreaseSocketedActiveSkillGemLevelUnique__1", }, + ["+12% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUniqueDagger3", }, + ["+12% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUniqueStaff9", }, + ["+12% chance to suppress spell damage"] = { "ChanceToDodgeUniqueBootsDex7", }, + ["+12% to all elemental resistances"] = { "AllResistancesImplicitShield3", }, + ["+120 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit2", }, + ["+125 to accuracy rating per 10 dexterity on unallocated passives in radius"] = { "AccuracyRatingPerUnallocatedDexterityUnique__1_", }, + ["+125 to accuracy rating per 10 intelligence on unallocated passives in radius"] = { "AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1", }, + ["+15 to dexterity"] = { "DexterityUniqueBootsDex3", }, + ["+15 to intelligence"] = { "IntelligenceUniqueBootsDex3", }, + ["+15 to maximum energy shield"] = { "IncreasedEnergyShieldUniqueGlovesInt6", }, + ["+15 to maximum life"] = { "IncreasedLifeUniqueDescentShield1", }, + ["+15 to maximum mana per 10 dexterity on unallocated passives in radius"] = { "FlatManaPerUnallocatedDexterityJewelUnique__1", }, + ["+15 to maximum rage"] = { "MaximumRageImplicitE2", }, + ["+15% chance to block"] = { "AdditionalBlockChanceUnique__11", }, + ["+15% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__1", "StaffBlockPercentUnique__5", }, + ["+15% chance to suppress spell damage"] = { "ChanceToDodgeSpellsUniqueBodyDex1", "ChanceToDodgeUniqueBodyDex1", }, + ["+15% to all elemental resistances"] = { "AllResistancesUniqueBodyStrInt2", "AllResistancesUniqueGlovesStrDex2", "AllResistancesUnique__1", }, + ["+1500 armour while stationary"] = { "AddedArmourWhileStationaryUnique__1", }, + ["+1500 to evasion rating while on full life"] = { "EvasionOnFullLifeUnique__1_", }, + ["+160 dexterity requirement"] = { "DexterityRequirementsUnique__1", }, + ["+165 to accuracy rating"] = { "IncreasedAccuracySwordImplicit2", }, + ["+18 to maximum energy shield"] = { "LocalIncreasedEnergyShieldUniqueGlovesInt1", }, + ["+18% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUnique__2_", }, + ["+18% to all elemental resistances for each empty white socket on any equipped item"] = { "AllResistEmptyWhiteSocketUnique__1", }, + ["+185 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit3", }, + ["+190 to accuracy rating"] = { "IncreasedAccuracySwordImplicit3", }, + ["+2 accuracy rating per 2 intelligence"] = { "AccuracyPerIntelligenceUnique__1", }, + ["+2 maximum energy shield per 5 strength"] = { "EnergyShieldPer5StrengthUnique__1", }, + ["+2 metres to weapon range"] = { "VillageLocalMeleeWeaponRange", }, + ["+2 seconds to cat's agility duration"] = { "CatsAgilityDurationUnique__1", }, + ["+2 seconds to cat's stealth duration"] = { "CatsStealthDurationUnique__1_", }, + ["+2 to level of all chaos spell skill gems"] = { "LocalIncreaseSocketedChaosGemLevelUnique__1", }, + ["+2 to level of all cold spell skill gems"] = { "LocalIncreaseSocketedColdGemLevelUniqueStaff2", }, + ["+2 to level of all fire spell skill gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueStaff1", }, + ["+2 to level of all lightning spell skill gems"] = { "LocalIncreaseSocketedLightningGemLevelUniqueStaff8", }, + ["+2 to level of all spell skill gems"] = { "GlobalSpellGemsLevelUnique__1", "VillageGlobalIncreaseSpellSkillGemLevel", }, + ["+2 to level of socketed aura gems"] = { "LocalIncreaseSocketedAuraGemLevelUniqueHelmetDex5", "LocalIncreaseSocketedAuraGemLevelUnique___1", "LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2", }, + ["+2 to level of socketed cold gems"] = { "LocalIncreaseSocketedColdGemLevelUnique__1", }, + ["+2 to level of socketed curse gems"] = { "IncreaseSocketedCurseGemLevelUniqueHelmetInt9", "IncreaseSocketedCurseGemLevelUnique__1", }, + ["+2 to level of socketed elemental gems"] = { "LocalIncreaseSocketedElementalGemUnique___1", }, + ["+2 to level of socketed fire gems"] = { "LocalIncreaseSocketedFireGemLevelUnique__1_", "LocalIncreaseSocketedFireGemLevelUnique__2", }, + ["+2 to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUniqueRing39", "LocalIncreaseSocketedGemLevelUniqueWand8", "LocalIncreaseSocketedGemLevelUnique__1", "LocalIncreaseSocketedGemLevelUnique__11_", "LocalIncreaseSocketedGemLevelUnique__6", "LocalIncreaseSocketedGemLevelUnique__8", "UniqueSpecialCorruptionSocketedGemLevel", }, + ["+2 to level of socketed herald gems"] = { "LocalIncreaseSocketedHeraldLevelUnique__1_", }, + ["+2 to level of socketed melee gems"] = { "VillageLocalIncreaseSocketedMeleeGemLevel", }, + ["+2 to level of socketed minion gems"] = { "LocalIncreaseSocketedMinionGemLevelUniqueShieldInt2", "LocalIncreaseSocketedMinionGemLevelUnique__1", "LocalIncreaseSocketedMinionGemLevelUnique__2_", "LocalIncreaseSocketedMinionGemLevelUnique__3", "LocalIncreaseSocketedMinionGemLevelUnique__4", }, + ["+2 to level of socketed spell gems"] = { "LocalIncreaseSocketedSpellGemLevelUnique__1", }, + ["+2 to level of socketed support gems"] = { "LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7", "LocalIncreaseSocketedSupportGemLevelUnique__1", }, + ["+2 to level of socketed vaal gems"] = { "LocalIncreaseSocketedVaalGemLevelUnique__1", }, + ["+2 to maximum endurance charges"] = { "MaximumEnduranceChargeUniqueBodyStrDex3", }, + ["+2 to maximum life per 10 dexterity"] = { "MaximumLifePer10DexterityUnique__1", }, + ["+2 to maximum life per 10 intelligence"] = { "LifePer10IntelligenceUnique__1", }, + ["+2 to maximum number of spectres"] = { "MaximumMinionCountUnique__1__", "MaximumMinionCountUnique__2", }, + ["+2 to maximum power charges"] = { "IncreasedMaximumPowerChargesUnique__3", }, + ["+2 to maximum snipe stages"] = { "AdditionalMaxStackSnipeUnique", }, + ["+2% chance to block spell damage per power charge"] = { "ChanceToBlockSpellsPerPowerChargeUnique__1", }, + ["+2% chance to suppress spell damage per frenzy charge"] = { "ChanceToDodgePerFrenzyChargeUniqueBootsStrDex2", }, + ["+2% to all elemental resistances per 10 devotion"] = { "ElementalResistancesPerDevotion", }, + ["+2% to all maximum resistances while you have no endurance charges"] = { "MaximumResistanceWithNoEnduranceChargesUnique__1__", }, + ["+2% to maximum chaos resistance"] = { "ChayulaBreachRingImplicit", "MaxChaosResistanceCrushedImplicitR1", }, + ["+2% to maximum cold resistance"] = { "TulBreachRingImplicit", }, + ["+2% to maximum fire resistance"] = { "XophBreachRingImplicit", }, + ["+2% to maximum lightning resistance"] = { "EshBreachRingImplicit", }, + ["+20 to all attributes"] = { "AllAttributesUnique__13_", }, + ["+20 to dexterity"] = { "DexterityUniqueDagger12", "DexterityUniqueJewel8", "DexterityUnique__13", }, + ["+20 to dexterity and intelligence"] = { "DexterityIntelligenceUnique__1__", }, + ["+20 to evasion rating per 5 maximum energy shield on equipped shield"] = { "EvasionRatingPerEnergyShieldOnShieldUnique__1", }, + ["+20 to intelligence"] = { "IntelligenceUnique__13", }, + ["+20 to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique___4", }, + ["+20 to maximum life"] = { "IncreasedLifeUniqueBootsInt4", }, + ["+20 to maximum mana"] = { "IncreasedManaUniqueBootsInt4", }, + ["+20 to maximum rage"] = { "MaximumRageImplicitE3", }, + ["+20 to strength"] = { "StrengthUniqueHelmetDexInt1", "StrengthUnique__15", "StrengthUnique__20_", }, + ["+20 to strength and dexterity"] = { "StrengthDexterityUnique__1", }, + ["+20 to strength and intelligence"] = { "StrengthIntelligenceUnique__1", }, + ["+20% chance to be shocked"] = { "ChanceToBeShockedUnique__1", }, + ["+20% chance to block attack damage from cursed enemies"] = { "BlockChanceVersusCursedEnemiesUnique__1", }, + ["+20% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentImplicitStaff1", }, + ["+20% chance to block spell damage while cursed"] = { "AdditionalSpellBlockWhileCursedUnique__1", }, + ["+20% chance to block spell damage while wielding a staff"] = { "StaffSpellBlockPercentImplicitStaff__1", }, + ["+20% chance to suppress spell damage"] = { "ChanceToDodgeSpellsUnique__2", }, + ["+20% to all elemental resistances"] = { "AllResistancesUniqueAmulet2", "AllResistancesUniqueBootsInt5", }, + ["+20% to all elemental resistances while on low life"] = { "ElementalResistsOnLowLifeUniqueHelmetStrInt1", }, + ["+20% to cold resistance"] = { "ColdResistUniqueBootsDex8", "ColdResistUniqueBootsDexInt2", }, + ["+20% to damage over time multiplier for bleeding"] = { "BleedDotMultiplier2HImplicit1", }, + ["+20% to fire resistance"] = { "FireResistUniqueAmulet7", "FireResistUniqueBelt3", }, + ["+20% to off hand critical strike multiplier per"] = { "OffHandCriticalStrikeMultiplierPerMeleeAbyssJewelUnique__1__", }, + ["+200 intelligence requirement"] = { "IntelligenceRequirementsUnique_1", }, + ["+200 strength requirement"] = { "StrengthRequirementsUniqueOneHandMace3", "StrengthRequirementsUnique__2", }, + ["+200 to strength"] = { "StrengthUnique__12", }, + ["+2000 armour while you do not have avatar of fire"] = { "ArmourWithoutAvatarOfFireUnique__1", }, + ["+2000 to armour"] = { "LocalIncreasedPhysicalDamageReductionRatingTransformedUnique__1", }, + ["+212 intelligence requirement"] = { "IntelligenceRequirementsUniqueBow12", }, + ["+22% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentImplicitStaff2", }, + ["+22% chance to block spell damage while wielding a staff"] = { "StaffSpellBlockPercent2", }, + ["+225 to accuracy rating for each empty green socket on any equipped item"] = { "IncreasedAccuracyEmptyGreenSocketUnique__1", }, + ["+23 to maximum life"] = { "IncreasedLifeUnique__87", }, + ["+240 to accuracy rating"] = { "IncreasedAccuracySwordImplicit4", }, + ["+25 physical damage taken from attack hits"] = { "TakesDamageWhenAttackedUniqueIntHelmet1", }, + ["+25 to dexterity"] = { "DexterityUnique__9", }, + ["+25 to strength"] = { "StrengthUniqueBelt4", "StrengthUniqueDagger2", }, + ["+25% chance to be ignited"] = { "IncreasedChanceToBeIgnitedUniqueRing24", "IncreasedChanceToBeIgnitedUnique__1", }, + ["+25% chance to be poisoned"] = { "ChanceToBePoisonedUnique__1", }, + ["+25% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentImplicitStaff3", }, + ["+25% chance to block projectile attack damage"] = { "BlockVsProjectilesUniqueShieldStr2", }, + ["+25% chance to block spell damage while wielding a staff"] = { "StaffSpellBlockPercent3", }, + ["+25% to all elemental resistances"] = { "AllResistancesUniqueShieldStrInt2", }, + ["+25% to cold resistance"] = { "ColdResistUniqueAmulet3", }, + ["+25% to critical strike multiplier if you've dealt a non-critical strike recently"] = { "CritMultiIfDealtNonCritRecentlyUnique__1", }, + ["+25% to fire resistance while on low life"] = { "FireResistOnLowLifeUniqueShieldStrInt5", }, + ["+25% to global critical strike multiplier"] = { "CriticalMultiplierImplicitSword1", "CriticalMultiplierImplicitSword2H1", }, + ["+25% to lightning resistance"] = { "LightningResistUniqueShieldInt1", }, + ["+25% to maximum quality"] = { "LocalMaximumQualityImplicitE1", "LocalMaximumQualityImplicitE2", "LocalMaximumQualityImplicitE3", }, + ["+250 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit4", }, + ["+250 to maximum energy shield"] = { "IncreasedEnergyShieldUnique__6", }, + ["+257 intelligence requirement"] = { "AddedIntelligenceRequirementsUnique__1", }, + ["+3 prefix modifiers allowed"] = { "MaxPrefixMaxSuffixImplicitE3", }, + ["+3 seconds to duration of frenzy and power charges on culling strike"] = { "ExtendFrenzyPowerChargeDurationCullUnique__1", }, + ["+3 to level of all (1-286) gems"] = { "RandomSkillUnique__1", }, + ["+3 to level of all cold spell skill gems"] = { "GlobalColdSpellGemsLevelUnique__1", }, + ["+3 to level of all physical spell skill gems"] = { "GlobalPhysicalSpellGemsLevelUnique__1", }, + ["+3 to level of socketed curse gems"] = { "IncreaseSocketedCurseGemLevelUniqueShieldDex4", "IncreaseSocketedCurseGemLevelUnique__2", }, + ["+3 to level of socketed fire gems"] = { "LocalIncreaseSocketedFireGemLevelUniqueBodyInt4", }, + ["+3 to level of socketed golem gems"] = { "LocalIncreaseSocketedGolemLevelUniqueRing35", "LocalIncreaseSocketedGolemLevelUniqueRing36", "LocalIncreaseSocketedGolemLevelUniqueRing37", }, + ["+3 to level of socketed minion gems"] = { "LocalIncreaseSocketedMinionGemLevelUnique__5____", }, + ["+3 to level of socketed warcry gems"] = { "LocalIncreaseSocketedWarcryGemLevelUniqueShieldInt5", }, + ["+3 to maximum number of summoned golems"] = { "MaximumGolemsUnique__3", }, + ["+3 to maximum number of summoned phantasms"] = { "ExtraMaximumPhantasmsUnique__1", }, + ["+3 to minimum endurance charges while on low life"] = { "MinimumEnduranceChargeOnLowLifeUnique__1", }, + ["+3 to minimum power charges while on low life"] = { "MinimumPowerChargeOnLowLifeUnique__1", }, + ["+3% chance to block"] = { "AdditionalBlockChanceUniqueDescentShield1_", }, + ["+3% chance to block attack damage while you have at least 5 crab barriers"] = { "AdditionalBlockChance5CrabBarriersUnique__1", }, + ["+3% chance to suppress spell damage"] = { "ChanceToDodgeImplicitShield1", "ChanceToDodgeSpellsImplicitShield1", "ChanceToDodgeUniqueJewel46", }, + ["+3% to all elemental resistances per endurance charge"] = { "ElementalResistancePerEnduranceChargeDescentShield1", }, + ["+3% to all maximum resistances while poisoned"] = { "MaximumResistancesWhilePoisonedUnique__1", }, + ["+3% to critical strike multiplier per power charge"] = { "ChargeBonusCriticalStrikeMultiplierPerPowerCharge", }, + ["+3% to damage over time multiplier per 10 intelligence on unallocated passives in radius"] = { "DamageOverTimeMultiplierPerUnallocatedIntelligenceUnique__1___", }, + ["+3% to maximum chance to block attack damage"] = { "MaximumBlockChanceUniqueAmulet16", }, + ["+3% to maximum chance to block attack damage if 4 elder items are equipped"] = { "MaximumBlockChance4ElderItemsUnique__1", }, + ["+3% to maximum chance to block spell damage if 4 shaper items are equipped"] = { "MaximumSpellBlockChance4ShaperItemsUnique__1", }, + ["+3% to maximum chaos resistance"] = { "MaxChaosResistanceCrushedImplicitR2", }, + ["+3% to maximum cold resistance"] = { "MaximumColdResistUnique__2", }, + ["+30 to accuracy rating"] = { "IncreasedAccuracyUniqueBow2", "IncreasedAccuracyUniqueDescentBow1", }, + ["+30 to dexterity"] = { "DexterityUniqueQuiver7", }, + ["+30 to maximum energy shield per 100 reserved life"] = { "MaximumEnergyShieldPerReservedLifeUnique__1", }, + ["+30 to maximum energy shield per blue socket"] = { "EnergyShieldPerBlueSocket", }, + ["+30 to maximum life per red socket"] = { "LifePerRedSocket", }, + ["+30 to maximum mana"] = { "IncreasedManaUnique__2", }, + ["+30 to maximum mana per green socket"] = { "ManaPerGreenSocket", }, + ["+30 to strength"] = { "StrengthUnique__1", "StrengthUnique__4", }, + ["+30% chance to block spell damage while on low life"] = { "SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_", }, + ["+30% chance to suppress spell damage"] = { "ChanceToSuppressSpellsUniqueBodyDex1", }, + ["+30% to chaos resistance while stationary"] = { "ChaosResistanceWhileStationaryUnique__1", }, + ["+30% to cold resistance"] = { "ColdResistUniqueStrHelmet2", }, + ["+30% to global critical strike multiplier"] = { "CriticalMultiplierUniqueGlovesDexInt2", }, + ["+30% to lightning resistance"] = { "LightningResistUniqueShieldDex2", "LightningResistUniqueStrDexHelmet1", }, + ["+30% to quality of socketed gems"] = { "SocketedGemQualityUnique__2_", }, + ["+30% to quality of socketed support gems"] = { "IncreaseSocketedSupportGemQualityUnique__2", }, + ["+300 armour per summoned totem"] = { "ArmourPerTotemUnique__1", }, + ["+300 intelligence requirement"] = { "IntelligenceRequirementsUniqueOneHandMace3", }, + ["+300 to evasion rating"] = { "IncreasedEvasionRatingUnique__2", }, + ["+305 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit5", }, + ["+32 to maximum energy shield"] = { "LocalIncreasedEnergyShieldUniqueGlovesInt2", }, + ["+330 to accuracy rating"] = { "IncreasedAccuracySwordImplicit5", }, + ["+333 to accuracy rating"] = { "IncreasedAccuracyUniqueRing17", }, + ["+35 to maximum energy shield"] = { "IncreasedEnergyShieldUnique__2", }, + ["+35% to global critical strike multiplier"] = { "CriticalMultiplierImplicitSword2", }, + ["+350 to accuracy rating"] = { "IncreasedAccuracySwordImplicit6", }, + ["+350 to evasion rating"] = { "IncreasedEvasionRatingUniqueQuiver3_", }, + ["+360 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit6", }, + ["+4 to level of socketed herald gems"] = { "LocalIncreaseSocketedHeraldLevelUnique__2", }, + ["+4 to maximum fortification while stationary"] = { "FortifyEffectWhileStationaryUber1", }, + ["+4% to all elemental resistances"] = { "AllResistancesImplicitShield1", }, + ["+4% to all maximum elemental resistances during effect"] = { "FlaskMaximumElementalResistancesUniqueFlask1", }, + ["+4% to all maximum resistances"] = { "IncreasedMaximumResistsUniqueShieldStrInt1", }, + ["+4% to chaos resistance per endurance charge"] = { "ChaosResistancePerEnduranceChargeUnique__1_", "ChargeBonusChaosResistancePerEnduranceCharge_", }, + ["+4% to damage over time multiplier for ailments per elder item equipped"] = { "AilmentDamageOverTimeMultiplierPerElderItemUnique__1", }, + ["+4% to damage over time multiplier for bleeding per frenzy charge"] = { "BleedDotMultiplierPerFrenzyChargeUnique__1_", }, + ["+4% to maximum chaos resistance"] = { "MaxChaosResistanceCrushedImplicitR3", }, + ["+4% to off hand critical strike multiplier per 10 maximum energy shield on shield"] = { "SpectralShieldThrowThresholdJewel2", }, + ["+40 to accuracy rating"] = { "AccuracyPerPointToClassStartUnique__1", }, + ["+40 to armour"] = { "ArmourPerPointToClassStartUnique__1", }, + ["+40 to evasion rating"] = { "EvasionPerPointToClassStartUnique__1", }, + ["+40 to intelligence"] = { "IntelligenceUnique__5", }, + ["+40 to maximum energy shield"] = { "LocalIncreasedEnergyShieldUnique__13_", }, + ["+40 to maximum life for each empty red socket on any equipped item"] = { "IncreasedLifeEmptyRedSocketUnique__1", }, + ["+40 to maximum mana for each empty blue socket on any equipped item"] = { "IncreasedManaEmptyBlueSocketUnique__1", }, + ["+40% to cold resistance"] = { "ColdResistUniqueGlovesStrDex4", }, + ["+40% to global critical strike multiplier"] = { "CriticalMultiplierImplicitSwordM2", "CriticalMultiplierUniqueGlovesDexInt4", "LocalCriticalMultiplierUniqueClaw2", }, + ["+40% to lightning resistance"] = { "LightningResistUniqueDescentTwoHandSword1", }, + ["+40% to maximum effect of shock"] = { "MaximumShockOverrideUniqueBow10", }, + ["+400 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit7", "IncreasedAccuracySwordImplicit7", }, + ["+435 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit8", }, + ["+45 to accuracy rating"] = { "IncreasedAccuracySwordImplicit1", }, + ["+45 to maximum charges"] = { "FlaskExtraChargesUnique__1", }, + ["+45% to global critical strike multiplier"] = { "CriticalMultiplierUniqueDescentDagger1", }, + ["+460 to accuracy rating"] = { "IncreasedAccuracySwordImplicit8", }, + ["+470 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit9", }, + ["+475 to accuracy rating"] = { "IncreasedAccuracySwordImplicit9", }, + ["+5 to armour per 5 evasion rating on equipped shield"] = { "ArmourPerEvasionRatingOnShieldUnique__1", }, + ["+5 to dexterity"] = { "DexterityPerPointToClassStartUnique__1", "DexterityUniqueBootsInt2", }, + ["+5 to intelligence"] = { "IntelligencePerPointToClassStartUnique__1", }, + ["+5 to level of socketed aura gems"] = { "LocalIncreaseSocketedAuraGemLevelUnique___2___", }, + ["+5 to level of socketed gems"] = { "LocalIncreaseSocketedGemLevelUniqueRing23", }, + ["+5 to level of socketed movement gems"] = { "LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5", }, + ["+5 to level of socketed vaal gems"] = { "LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4", }, + ["+5 to maximum energy shield"] = { "EnergyShieldPerPointToClassStartUnique__1", }, + ["+5 to maximum life"] = { "LifePerPointToClassStartUnique__1_", }, + ["+5 to maximum mana"] = { "ManaPerPointToClassStartUnique__1", }, + ["+5 to maximum number of crab barriers"] = { "MaximumCrabBarriersUnique__1", }, + ["+5 to maximum rage"] = { "MaximumRageUnique__2", }, + ["+5 to strength"] = { "StrengthPerPointToClassStartUnique__1", }, + ["+5% chance to block"] = { "AdditionalBlockChanceUniqueShieldDex1", "AdditionalBlockChanceUniqueShieldDex2", "AdditionalBlockChanceUniqueShieldDex4", "AdditionalBlockChanceUniqueShieldInt4", "AdditionalBlockChanceUniqueShieldStr1", "AdditionalBlockChanceUniqueShieldStr4", "AdditionalBlockChanceUniqueShieldStrDex2", "AdditionalBlockChanceUniqueShieldStrInt6", "AdditionalBlockChanceUnique__5", }, + ["+5% chance to block attack damage"] = { "AdditionalBlockUniqueBodyDex2", }, + ["+5% chance to block attack damage from taunted enemies"] = { "AdditionalChanceToBlockAgainstTauntedEnemiesUnique_1", }, + ["+5% chance to block attack damage if you've dealt a critical strike recently"] = { "AdditionalBlockChanceIfCritRecentlyUber1__", }, + ["+5% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUniqueDagger9", }, + ["+5% chance to block attack damage while on consecrated ground"] = { "BlockChanceOnConsecratedGroundUnique__1", }, + ["+5% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUnique__4_", }, + ["+5% chance to block attack damage while you have at least 10 crab barriers"] = { "AdditionalBlockChance10CrabBarriersUnique__1", }, + ["+5% chance to block spell damage per power charge"] = { "ChanceToBlockSpellsPerPowerChargeUnique__2_", }, + ["+5% chance to suppress spell damage"] = { "ChanceToDodgeImplicitShield2", "ChanceToDodgeSpellsImplicitShield2", "ChanceToSuppressSpellsUniqueJewel46", }, + ["+5% to damage over time multiplier for poison per frenzy charge"] = { "PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5", }, + ["+5% to maximum cold resistance"] = { "IncreasedMaximumColdResistUniqueShieldStrInt4", "MaximumColdResistUniqueShieldDex1", }, + ["+5% to maximum fire resistance"] = { "MaximumFireResistUniqueShieldStrInt5", }, + ["+5% to maximum lightning resistance"] = { "MaximumLightningResistUniqueStaff8c", }, + ["+50 to armour"] = { "IncreasedPhysicalDamageReductionRatingUniqueJewel9", }, + ["+50 to maximum energy shield"] = { "IncreasedEnergyShieldUniqueDagger4", }, + ["+50 to strength"] = { "StrengthUniqueGlovesStr2", }, + ["+50 to strength and dexterity"] = { "StrengthDexterityImplicitSword_1", }, + ["+50 to total mana cost of skills"] = { "IncreaseGlobalFlatManaCostUnique__1", }, + ["+50% chance to be shocked"] = { "ChanceToBeShockedUnique__2", }, + ["+50% chance to suppress spell damage"] = { "ChanceToSuppressSpellsUnique__1", }, + ["+50% global critical strike multiplier while you have no frenzy charges"] = { "GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1", }, + ["+50% to chaos resistance"] = { "ChaosResistUnique__26", }, + ["+50% to chaos resistance during any flask effect"] = { "ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3", }, + ["+50% to cold damage over time multiplier"] = { "ColdDamageOverTimeMultiplierUnique__2", }, + ["+50% to cold resistance"] = { "ColdResistUniqueShieldDex1", }, + ["+50% to critical strike multiplier if you haven't dealt a critical strike recently"] = { "CriticalStrikeMultiplierIfHaventCritRecentlyUber1", }, + ["+50% to global critical strike multiplier"] = { "CriticalMultiplierImplicitSword3", "LocalCriticalMultiplierUniqueBow3", "NearbyAlliesHaveCriticalStrikeMultiplierUnique__1", }, + ["+500 to accuracy rating"] = { "IncreasedAccuracyUniqueStrDexHelmet1", }, + ["+500 to all attributes"] = { "AllAttributesTestUniqueAmulet1", }, + ["+500 to armour per endurance charge"] = { "ArmourPerEnduranceChargeUnique__1", }, + ["+500 to maximum mana"] = { "IncreasedManaUnique__19", }, + ["+5000 to armour while frozen"] = { "ArmourWhileFrozenUniqueRing18", }, + ["+6 to maximum life per elder item equipped"] = { "IncreasedLifePerElderItemUnique__1", }, + ["+6 to maximum number of raging spirits"] = { "ExtraRagingSpiritsUnique__1", }, + ["+6% chance to block"] = { "AdditionalBlockChanceUniqueShieldStrInt4", "AdditionalBlockChanceUnique__2", "AdditionalBlockChanceUnique__4", }, + ["+6% chance to block attack damage while wielding a staff"] = { "StaffBlockPercentUniqueStaff7", }, + ["+6% to all elemental resistances"] = { "AllResistancesUniqueJewel8", }, + ["+60 to accuracy rating"] = { "IncreasedAccuracy2hSwordImplicit1", }, + ["+60 to maximum charges"] = { "FlaskExtraChargesUnique__4", }, + ["+60 to maximum fortification while affected by glorious madness"] = { "FortifyEffectSelfGloriousMadnessUnique1", }, + ["+60% to chaos resistance"] = { "ChaosResistUnique__5", }, + ["+60% to critical strike multiplier if you've dealt a non-critical strike recently"] = { "CritMultiIfDealtNonCritRecentlyUnique__2", }, + ["+60% to global critical strike multiplier"] = { "CriticalMultiplierUniqueHelmetStr3", }, + ["+600 strength and intelligence requirement"] = { "StrengthIntelligenceRequirementsUnique__1", }, + ["+7% to all elemental resistances per grand spectrum"] = { "AllResistancePerStackableJewelUnique__1", }, + ["+7% to critical strike multiplier per 10 strength on unallocated passives in radius"] = { "CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_", "CriticalStrikeMultiplierPerUnallocatedStrengthUnique__1", }, + ["+7% to unarmed melee attack critical strike chance"] = { "BaseUnarmedCriticalStrikeChanceUnique__1", }, + ["+70 to maximum life"] = { "IncreasedLifeUniqueOneHandMace7", }, + ["+70 to maximum mana"] = { "IncreasedManaUniqueOneHandMace7", }, + ["+75% to cold resistance"] = { "ColdResistUnique__5", }, + ["+75% to lightning resistance"] = { "LightningResistUnique__23_", }, + ["+8% chance to block attack damage when in off hand"] = { "AdditionalChanceToBlockInOffHandUnique_1", }, + ["+8% chance to block attack damage while dual wielding"] = { "BlockWhileDualWieldingUniqueOneHandSword5", }, + ["+8% chance to block attack damage while dual wielding claws"] = { "BlockWhileDualWieldingClawsUniqueClaw1", }, + ["+8% to all elemental resistances"] = { "AllResistancesImplicitShield2", }, + ["-(#) chaos damage taken"] = { "ChaosDamageTakenUniqueBodyStr4", }, + ["-(#) fire damage taken from hits"] = { "ReducedFireDamageTakenUnique__1", }, + ["-(#) physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueBelt8", "PhysicalAttackDamageReducedUniqueBodyDex3", "PhysicalAttackDamageReducedUniqueBodyStr2", "PhysicalAttackDamageReducedUniqueShieldDexInt1", "PhysicalAttackDamageReducedUnique__1", }, + ["-(#) physical damage taken from hits by animals"] = { "PhysicalDamageFromBeastsUniqueBodyDex6", }, + ["-(#) physical damage taken from projectile attacks"] = { "RangedAttackDamageReducedUniqueShieldStr2", }, + ["-(#) to intelligence"] = { "IntelligenceUnique__24", }, + ["-(#) to total mana cost of skills"] = { "ReduceGlobalFlatManaCostUnique__1", }, + ["-(#)% to all elemental resistances"] = { "AllResistancesUniqueAmulet23", "AllResistancesUniqueBelt8", "AllResistancesUnique_1", "AllResistancesUnique__18", "AllResistancesUnique__24_", "AllResistancesUnique__36", "AllResistancesUnique__6", }, + ["-(#)% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__2", }, + ["-(#)% to all resistances for each corrupted item equipped"] = { "AllResistancesPerCorruptedItemUnique__1", }, + ["-(#)% to chaos resistance"] = { "ChaosResistUnique__8", }, + ["-(#)% to fire resistance"] = { "FireResistUnique__22_", }, + ["-(#)% to lightning resistance"] = { "LightningResistUniqueBodyStr5", }, + ["-(10-5)% to all elemental resistances"] = { "AllResistancesUniqueAmulet23", }, + ["-(15-10) physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueBodyStr2", }, + ["-(18-14) physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueShieldDexInt1", }, + ["-(20-10)% to all elemental resistances"] = { "AllResistancesUnique__18", "AllResistancesUnique__6", }, + ["-(20-10)% to chaos resistance"] = { "ChaosResistUnique__8", }, + ["-(20-10)% to lightning resistance"] = { "LightningResistUniqueBodyStr5", }, + ["-(200-100) fire damage taken from hits"] = { "ReducedFireDamageTakenUnique__1", }, + ["-(25-15) to intelligence"] = { "IntelligenceUnique__24", }, + ["-(25-15)% to all elemental resistances"] = { "AllResistancesUniqueBelt8", }, + ["-(30-20)% to all elemental resistances"] = { "AllResistancesUnique_1", }, + ["-(30-20)% to fire resistance"] = { "FireResistUnique__22_", }, + ["-(40-30) chaos damage taken"] = { "ChaosDamageTakenUniqueBodyStr4", }, + ["-(50-40) physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueBelt8", }, + ["-(50-40) physical damage taken from hits by animals"] = { "PhysicalDamageFromBeastsUniqueBodyDex6", }, + ["-(50-40)% to all elemental resistances"] = { "AllResistancesUnique__36", }, + ["-(6-4)% to all maximum elemental resistances"] = { "MaximumElementalResistanceUnique__2", }, + ["-(6-4)% to all resistances for each corrupted item equipped"] = { "AllResistancesPerCorruptedItemUnique__1", }, + ["-(60-30) physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUnique__1", }, + ["-(7-5) physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueBodyDex3", }, + ["-(8-4) to total mana cost of skills"] = { "ReduceGlobalFlatManaCostUnique__1", }, + ["-(80-50) physical damage taken from projectile attacks"] = { "RangedAttackDamageReducedUniqueShieldStr2", }, + ["-(80-70)% to all elemental resistances"] = { "AllResistancesUnique__24_", }, + ["-1 dexterity per 1 dexterity on allocated passives in radius"] = { "AdditionalDexterityPerAllocatedDexterityJewelUnique__1", }, + ["-1 fire damage taken from hits per mana burn"] = { "TinctureFireDamageTakenPerToxicityUnique__1", }, + ["-1 intelligence per 1 intelligence on allocated passives in radius"] = { "AdditionalIntelligencePerAllocatedIntelligenceJewelUnique__1__", }, + ["-1 prefix modifier allowed"] = { "MaxPrefixMaxSuffixImplicitE1__", "MaxPrefixMaxSuffixModEffectImplicitE1", "MaxPrefixMaxSuffixModEffectImplicitE3", }, + ["-1 strength per 1 strength on allocated passives in radius"] = { "AdditionalStrengthPerAllocatedStrengthJewelUnique__1_", }, + ["-1 to level of socketed support gems"] = { "SocketedActiveGemLevelSupportGemPenaltyImplicitR1", }, + ["-1 to maximum endurance charges"] = { "ReducedMaximumEnduranceChargeUniqueCorruptedJewel17", "ReducedMaximumEnduranceChargeUnique__1", }, + ["-1 to maximum frenzy charges"] = { "ReducedMaximumFrenzyChargesUniqueCorruptedJewel16", "ReducedMaximumFrenzyChargesUnique__1", }, + ["-1 to maximum number of summoned golems"] = { "MaximumGolemsUnique__4_", }, + ["-1 to maximum power charges"] = { "ReducedMaximumPowerChargesUniqueCorruptedJewel18", "ReducedMaximumPowerChargesUnique__1", }, + ["-1% chance to block attack damage for every 200 fire damage taken from hits recently"] = { "AttackBlockPerFireDamageTakenUnique__1", }, + ["-10% chance to block"] = { "SubtractedBlockChanceUniqueShieldStrInt8", }, + ["-10% to amount of suppressed spell damage prevented"] = { "SpellDamageSuppressedUnique__2", }, + ["-10% to fire resistance"] = { "FireResistUniqueBodyStr5", "FireResistUnique__3", }, + ["-10% to maximum chance to block attack damage"] = { "MaximumBlockChanceUnique__1", "MaximumBlockChanceUnique__2", }, + ["-10% to maximum chance to block spell damage"] = { "MaximumSpellBlockChanceUnique__1", }, + ["-15% additional physical damage reduction"] = { "FortifyEffectCrushed1", "FortifyEffectCrushed2_", "FortifyEffectCrushed3_", }, + ["-150 to accuracy rating"] = { "ReducedAccuracyUniqueTwoHandSword5", }, + ["-2 physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueBelt3", }, + ["-2 prefix modifiers allowed"] = { "MaxPrefixMaxSuffixImplicitE6", "MaxPrefixMaxSuffixModEffectImplicitE2", }, + ["-2 to level of socketed skill gems per socketed gem"] = { "LocalIncreaseSocketedGemLevelPerFilledSocketUnique__1", }, + ["-2 to level of socketed support gems"] = { "SocketedActiveGemLevelSupportGemPenaltyImplicitR2", }, + ["-2 to maximum endurance charges"] = { "ReducedMaximumEnduranceChargeUnique__2", }, + ["-2 to maximum frenzy charges"] = { "ReducedMaximumFrenzyChargesUnique__2_", }, + ["-2 to total mana cost of skills for each corrupted item equipped"] = { "TotalManaCostPerCorruptedItemUnique__1", }, + ["-2% to all resistances per minion from your non-vaal skills"] = { "AllResistancesReducedPerActiveNonVaalSkillMinionUnique_1", }, + ["-20 to maximum life"] = { "ReducedLifeUniqueGlovesDexInt4", }, + ["-20% to all elemental resistances"] = { "AllResistancesUniqueRing25", "AllResistancesUniqueRing3", }, + ["-25 physical damage taken from projectile attacks"] = { "RangedAttackDamageReducedUniqueShieldStr1", }, + ["-3 physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueBodyDex2", }, + ["-3 prefix modifiers allowed"] = { "MaxPrefixMaxSuffixImplicitE5", }, + ["-30% to cold resistance"] = { "ColdResistUnique__14", }, + ["-30% to fire resistance"] = { "FireResistUniqueHelmetInt7", "FireResistUnique__10", }, + ["-30% to lightning resistance"] = { "LightningResistUnique__9", }, + ["-4 physical damage taken from attack hits"] = { "PhysicalAttackDamageReducedUniqueAmulet8", }, + ["-40% less critical strike chance"] = { "LessCriticalStrikeChanceAmulet17", }, + ["-40% to cold resistance"] = { "ColdResistUnique__9", }, + ["-5 to level of socketed non-vaal gems"] = { "LocalIncreaseSocketedNonVaalGemLevelUnique__1", }, + ["-5% to all maximum resistances"] = { "IncreasedMaximumResistsUnique__2", }, + ["-50% to all elemental resistances"] = { "AllResistancesUniqueShieldDexInt2", }, + ["-50% to fire resistance"] = { "FireResistUnique__11", }, + ["-50% to global critical strike multiplier"] = { "CriticalMultiplierUniqueRing8", }, + ["-500 to accuracy rating"] = { "IncreasedAccuracyUniqueTwoHandMace3", }, + ["-5000 to accuracy rating"] = { "IncreasedAccuracyUnique__9____", }, + ["-60% to lightning resistance"] = { "LightningResistUniqueBodyStrDex2", }, + ["0.2% of attack damage leeched as mana"] = { "ManaLeechPermyriadUniqueGlovesDexInt6", }, + ["0.2% of attack damage leeched as mana per power charge"] = { "ManaLeechPermyriadPerPowerChargeUniqueBelt5_", }, + ["0.2% of chaos damage leeched as life"] = { "ChaosDamageLifeLeechPermyriadUnique__1", }, + ["0.2% of damage leeched as life per siphoning charge"] = { "LifeLeechPerSiphoningChargeUnique__1", }, + ["0.2% of elemental damage leeched as life"] = { "ElementalDamageLeechedAsLifePermyriadUniqueSceptre7_", }, + ["0.2% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUnique__2", }, + ["0.2% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadUniqueAmulet3", "ManaLeechPermyriadUnique__1", }, + ["0.2% of spell damage leeched as energy shield for each curse on enemy"] = { "EnergyShieldLeechPerCurseUnique__1_", }, + ["0.3% of physical attack damage leeched as life per red socket"] = { "LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1", }, + ["0.3% of physical attack damage leeched as mana per blue socket"] = { "ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique", }, + ["0.4% of attack damage leeched as mana"] = { "ManaLeechPermyriadStrDexHelmet1", }, + ["0.4% of chaos damage leeched as life"] = { "ChaosDamageLifeLeechPermyriadUniqueShieldStrInt8", }, + ["0.4% of lightning damage leeched as mana"] = { "ManaLeechPermyriadFromLightningDamageUniqueStaff8", }, + ["0.4% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueRing2", "LifeLeechPermyriadUniqueShieldDex5", "LifeLeechPermyriadUnique__3", }, + ["0.4% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadUniqueBodyStr6", "ManaLeechPermyriadUniqueGlovesStrDex1", "ManaLeechPermyriadUniqueRing17", "ManaLeechPermyriadUniqueTwoHandMace4", }, + ["0.4% of physical attack damage leeched as mana per blue socket"] = { "ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5", }, + ["0.5% of attack damage leeched as life against maimed enemies"] = { "LifeLeechFromAttackDamageAgainstMaimedEnemiesUnique__1", }, + ["0.5% of attack damage leeched as life per frenzy charge"] = { "AttackDamageLeechPerFrenzyChargeUnique__1", }, + ["0.5% of attack damage leeched as mana against poisoned enemies"] = { "AttackDamageManaLeechAgainstPoisonedEnemiesUnique_2", }, + ["0.5% of chaos damage leeched as life"] = { "ChaosDamageLifeLeechPermyriadUnique__2", }, + ["0.5% of damage dealt by your totems is leeched to you as life"] = { "TotemLeechLifeToYouUnique__1", }, + ["0.5% of damage leeched as life while you have at least 5 total endurance, frenzy and power charges"] = { "DamageLeechWith5ChargesUnique__1", }, + ["0.5% of spell damage leeched as life if equipped shield has at least 30% chance to block"] = { "LifeLeechFromSpellsWith30BlockOnShieldUnique__1_", }, + ["0.6% of cold damage leeched as life"] = { "ColdDamageLifeLeechPermyriadUniqueBelt9bNew", }, + ["0.6% of fire damage leeched as life"] = { "FireDamageLifeLeechPermyriadUniqueBelt9aNew", }, + ["0.6% of lightning damage leeched as life"] = { "LightningDamageLifeLeechPermyriadUniqueBelt9cNew", }, + ["0.6% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueGlovesStrDex1", "LifeLeechPermyriadUniqueShieldDex2", "LifeLeechPermyriadUnique__4", }, + ["0.6% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadUniqueTwoHandSword2", }, + ["0.6% of physical damage leeched as life"] = { "PhysicalDamageLifeLeechPermyriadUniqueBelt9dNew", }, + ["0.8% of physical attack damage leeched as life and mana"] = { "LifeAndManaLeechImplicitMarakethClaw1", }, + ["1 added passive skill is a jewel socket"] = { "JewelExpansionJewelNodesLarge1", "JewelExpansionJewelNodesMedium", }, + ["1 to (31-53) spell lightning damage per 10 intelligence"] = { "SpellLightningDamagePerIntelligenceUnique__1", }, + ["1 to (5-6) added attack lightning damage per 200 accuracy rating"] = { "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR1_", "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR2_", "AddedLightningDamagePerAccuracyReducedAccuracyImplicitR3", }, + ["1 to 4 added physical damage with bow attacks"] = { "AddedPhysicalDamageImplicitQuiver6_", "AddedPhysicalDamageImplicitQuiverDescent", }, + ["1% additional physical damage reduction from hits per siphoning charge"] = { "AdditionalPhysicalDamageReductionPerSiphoningChargeUnique__1", }, + ["1% additional physical damage reduction per 10 strength on allocated passives in radius"] = { "AdditionalPhysicalReductionPerAllocatedStrengthJewelUnique__1", }, + ["1% additional physical damage reduction per frenzy charge"] = { "ChargeBonusPhysicalDamageReductionPerFrenzyCharge__", }, + ["1% additional physical damage reduction per power charge"] = { "ChargeBonusPhysicalDamageReductionPerPowerCharge_", }, + ["1% increased area damage per 12 strength"] = { "AreaDamagePerStrengthUber1", }, + ["1% increased area of effect per 20 intelligence"] = { "WeaponPhysicalDamagePerStrength", }, + ["1% increased area of effect per enemy killed recently, up to 50%"] = { "AreaOfEffectPerEnemyKilledRecentlyUnique__1", }, + ["1% increased armour per 16 strength when in off hand"] = { "ArmourPerStrengthInOffHandUniqueSceptre6", }, + ["1% increased armour per 50 reserved mana"] = { "GainArmourEqualToManaReservedUnique__1", }, + ["1% increased attack and cast speed per endurance charge"] = { "ChargeBonusAttackAndCastSpeedPerEnduranceCharge", }, + ["1% increased attack and cast speed per power charge"] = { "ChargeBonusAttackAndCastSpeedPerPowerCharge", }, + ["1% increased attack damage per 200 of the lowest of armour and evasion rating"] = { "AttackDamagePerLowestArmourOrEvasionUnique__1", }, + ["1% increased attack damage per 450 armour"] = { "AttackDamagePer450ArmourUnique__1__", }, + ["1% increased attack damage per 450 evasion rating"] = { "EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9", }, + ["1% increased attack damage per level"] = { "AttackDamageIncreasedPerLevelUniqueSceptre8", }, + ["1% increased attack speed per 10 dexterity"] = { "AttackSpeedPerDexterity", }, + ["1% increased attack speed per 25 dexterity"] = { "IncreasedAttackSpeedPerDexterityUnique__1", }, + ["1% increased attack speed per 8% quality"] = { "LocalAugmentedQualityE1", }, + ["1% increased attack speed per fortification"] = { "AttackSpeedPerFortificationUnique__1", }, + ["1% increased bleeding duration per 12 intelligence"] = { "IncreaseBleedDurationPerIntelligenceUnique__1", }, + ["1% increased chaos damage per level"] = { "IncreasedElementalDamagePerLevelUniqueTwoHandSword7", }, + ["1% increased cold damage per 1% chance to block attack damage"] = { "IncreasedColdDamagePerBlockChanceUnique__1", }, + ["1% increased critical strike chance per 8 strength"] = { "CritChancePercentPerStrengthUniqueOneHandSword8_", }, + ["1% increased damage per 15 dexterity"] = { "DamagePer15DexterityUnique__1", "DamagePer15DexterityUnique__2", }, + ["1% increased damage per 5 of your lowest attribute"] = { "IncreasedDamagePerLowestAttributeUnique__1", }, + ["1% increased damage per 8 strength when in main hand"] = { "DamagePerStrengthInMainHandUniqueSceptre6", }, + ["1% increased damage taken per frenzy charge"] = { "DamageTakenPerFrenzyChargeUniqueOneHandSword6", }, + ["1% increased effect of non-curse auras per 10 devotion"] = { "AuraEffectPerDevotion", }, + ["1% increased elemental damage per 10 dexterity"] = { "ElementalDamagePerDexterityUnique__1", }, + ["1% increased elemental damage per 12 intelligence"] = { "ElementalDamagePer12IntelligenceUber1", }, + ["1% increased elemental damage per 12 strength"] = { "ElementalDamagePer12StrengthUber1", }, + ["1% increased elemental damage per level"] = { "IncreasedChaosDamagePerLevelUniqueTwoHandSword7", }, + ["1% increased energy shield per 10 strength"] = { "EnergyShieldPerStrengthUnique__1", }, + ["1% increased evasion rating per 3 dexterity allocated in radius"] = { "ClawPhysDamageAndEvasionPerDexUniqueJewel47", }, + ["1% increased fire damage per 20 strength"] = { "FireDamagePerStrengthUnique__1", }, + ["1% increased flask effect duration"] = { "JewelImplicitFlaskDuration", }, + ["1% increased fortification duration per 10 strength"] = { "FortifyDurationPerStrengthUber1", }, + ["1% increased lightning damage per 10 intelligence"] = { "IncreasedLightningDamagePer10IntelligenceUnique__1", }, + ["1% increased maximum life per abyss jewel affecting you"] = { "IncreasedLifePerAbyssalJewelUnique__1", }, + ["1% increased maximum mana per 2% chance to block spell damage"] = { "IncreasedManaPerSpellBlockChanceUnique__1", }, + ["1% increased maximum mana per abyss jewel affecting you"] = { "IncreasedManaPerAbyssalJewelUnique__1_", }, + ["1% increased melee physical damage per 10 strength while fortified"] = { "MeleePhysicalDamagePerStrengthWhileFortifiedUber1", }, + ["1% increased minion attack and cast speed per 10 devotion"] = { "MinionAttackAndCastSpeedPerDevotion", }, + ["1% increased movement speed"] = { "JewelImplicitMovementSpeed", }, + ["1% increased movement speed per 600 evasion rating, up to 75%"] = { "MovementVelicityPerEvasionUniqueBodyDex6", }, + ["1% increased movement speed per endurance charge"] = { "ChargeBonusMovementVelocityPerEnduranceCharge", }, + ["1% increased movement speed per frenzy charge"] = { "ChargeBonusMovementVelocityPerFrenzyCharge", }, + ["1% increased movement speed per power charge"] = { "ChargeBonusMovementVelocityPerPowerCharge", }, + ["1% increased projectile attack damage per 200 accuracy rating"] = { "IncreaseProjectileAttackDamagePerAccuracyUnique__1", }, + ["1% increased projectile damage per 5 dexterity from allocated passives in radius"] = { "ExtraArrowForSplitArrowUniqueJewel60", }, + ["1% increased rarity of items found per 15 rampage kills"] = { "IncreasedRarityPerRampageStacksUnique__1", }, + ["1% increased spell damage per 10 intelligence"] = { "SpellDamagePerIntelligenceUniqueStaff12", }, + ["1% increased spell damage per level"] = { "SpellDamageIncreasedPerLevelUniqueSceptre8", }, + ["1% less elemental damage taken per raised zombie"] = { "ElementalDamageTakenPerZombieUnique__1", }, + ["1% of attack damage leeched as life"] = { "LifeLeechFromAttacksPermyriadUnique__1", "LifeLeechPermyriadUniqueBodyStr3", }, + ["1% of attack damage leeched as life against bleeding enemies"] = { "AttackDamageLifeLeechAgainstBleedingEnemiesUnique_1", }, + ["1% of attack damage leeched as life against chilled enemies"] = { "LifeLeechPermyriadFromAttacksAgainstChilledEnemiesUniqueBelt14", }, + ["1% of attack damage leeched as life on critical strike"] = { "CriticalStrikeAttackLifeLeechUnique__1", }, + ["1% of attack damage leeched as mana against poisoned enemies"] = { "AttackDamageManaLeechAgainstPoisonedEnemiesUnique_1", }, + ["1% of damage against frozen enemies leeched as life"] = { "LifeLeechPermyriadOnFrozenEnemiesUnique__1", }, + ["1% of damage dealt by your mines is leeched to you as life"] = { "MineDamageLeechedToYouUnique__1", }, + ["1% of damage is taken from mana before life per power charge"] = { "DamageTakeFromManaBeforeLifePerPowerChargeUnique__1", }, + ["1% of damage leeched as energy shield against frozen enemies"] = { "EnergyShieldLeechPermyriadOnFrozenEnemiesUniqueRing19", }, + ["1% of damage leeched as life"] = { "LifeLeechAnyDamageUnique__1", }, + ["1% of damage leeched as life against cursed enemies"] = { "LifeLeechVsCursedEnemiesUnique__1", }, + ["1% of damage leeched as life against shocked enemies"] = { "LifeLeechPermyriadOnFrozenEnemiesUniqueRing19", "LifeLeechPermyriadVsShockedEnemiesUniqueRing29", }, + ["1% of damage leeched as life for skills used by totems"] = { "LifeLeechFromTotemSkillsUniqueShieldStr5", }, + ["1% of damage leeched as mana against frozen enemies"] = { "ManaLeechPermyriadOnShockedEnemiesUniqueRing19", }, + ["1% of damage taken recouped as mana"] = { "JewelImplicitDamageTakenGainedAsMana", }, + ["1% of physical attack damage leeched as life"] = { "LifeLeechLocalPermyriadUniqueOneHandMace8__", "LifeLeechPermyriadUniqueTwoHandAxe4", "LifeLeechPermyriadUniqueTwoHandMace1", "LifeLeechPermyriadUnique__5", "LifeLeechPermyriad__1", }, + ["1% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadUnique__2", "ManaLeechStrDexHelmet1", "ManaLeechUniqueAmulet3", "ManaLeechUniqueGlovesDexInt6", }, + ["1% of physical attack damage leeched as mana per power charge"] = { "ManaLeechPerPowerChargeUniqueBelt5", }, + ["1% of physical damage converted to chaos damage per level"] = { "PhysicalDamageConvertedToChaosPerLevelUnique__1", }, + ["1% of spell damage leeched as life"] = { "SpellLifeLeechJewel", }, + ["1% of spell damage leeched as mana"] = { "SpellManaLeechJewel", }, + ["1% reduced elemental damage taken from hits per endurance charge"] = { "ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1", }, + ["1% reduced elemental damage taken per endurance charge"] = { "ReducedElementalDamageTakenPerEnduranceChargeUber1", }, + ["1% reduced mana cost of skills per 10 devotion"] = { "ReducedManaCostPerDevotion", }, + ["1.2% of damage leeched as life on critical strike"] = { "LifeLeechOnCritPermyriadUniqueTwoHandAxe8", }, + ["1.2% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueClaw3", }, + ["1.6% of physical attack damage leeched as life"] = { "LifeLeechPermyriadImplicitClaw1", }, + ["10% additional physical damage reduction while stationary"] = { "PhysicalDamageReductionWhileNotMovingUnique__1", }, + ["10% chance for energy shield recharge to start when you use a skill"] = { "StartEnergyShieldRechargeOnSkillUnique__1", }, + ["10% chance that if you would gain a crab barrier, you instead gain up to"] = { "ChanceToGainMaximumCrabBarriersUnique__1_", }, + ["10% chance to avoid elemental ailments"] = { "ChanceToAvoidElementalStatusAilmentsUniqueJewel46", }, + ["10% chance to blind enemies on hit"] = { "BlindingHitUniqueWand1", }, + ["10% chance to block spell damage"] = { "SpellBlockPercentageUniqueShieldInt4", }, + ["10% chance to cause bleeding on hit"] = { "VillageLocalChanceToBleed", }, + ["10% chance to cause monsters to flee"] = { "HitsCauseMonsterFleeUniqueBootsStrInt1", "HitsCauseMonsterFleeUniqueRing1", "HitsCauseMonsterFleeUnique__1", }, + ["10% chance to cover enemies in ash on hit"] = { "CoverInAshOnHitUnique__1", }, + ["10% chance to deal double damage while you have at least 200 strength"] = { "DoubleDamageWith200StrengthUnique__1", }, + ["10% chance to freeze"] = { "ChanceToFreezeUniqueRing30", "ChanceToFreezeUnique__3", "ChanceToFreezeUnique__4", }, + ["10% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteDescentUniqueQuiver1", "ChanceToFreezeShockIgniteUniqueRing21", }, + ["10% chance to gain a frenzy charge on hit"] = { "ChargeBonusFrenzyChargeOnHit__", }, + ["10% chance to gain a frenzy charge on kill"] = { "ChargeBonusFrenzyChargeOnKill", "FrenzyChargeOnKillChanceUniqueAmulet15", "TalismanFrenzyChargeOnKill", }, + ["10% chance to gain a power charge if you knock an enemy back with melee damage"] = { "PowerChargeOnKnockbackUniqueStaff7", }, + ["10% chance to gain a power charge on hitting an enemy affected by a spider's web"] = { "PowerChargeOnHitWebbedEnemyUnique__1", }, + ["10% chance to gain a power charge on kill"] = { "ChargeBonusPowerChargeOnKill", "PowerChargeOnKillChanceUniqueAmulet15", "PowerChargeOnKillChanceUniqueUniqueShieldInt3", "TalismanPowerChargeOnKill", }, + ["10% chance to gain adrenaline for 2 seconds when leech is"] = { "AdrenalineOnFillingLifeLeechUnique__1", }, + ["10% chance to gain an endurance charge on kill"] = { "ChargeBonusEnduranceChargeOnKill", "TalismanEnduranceChargeOnKill_", }, + ["10% chance to gain an endurance, frenzy or power charge when any"] = { "RandomChargeOnTrapTriggerUnique__1", }, + ["10% chance to gain chaotic might for 10 seconds on kill"] = { "UnholyMightOnKillPercentChanceUnique__1", }, + ["10% chance to gain onslaught for 10 seconds on kill"] = { "OnslaugtOnKillPercentChanceUnique__1", }, + ["10% chance to gain onslaught for 4 seconds when leech is"] = { "OnslaughtOnFillingLifeLeechUnique__1", }, + ["10% chance to grant a frenzy charge to nearby allies on kill"] = { "GrantsAlliesFrenzyChargeOnKillUnique__1_", }, + ["10% chance to grant a power charge to nearby allies on kill"] = { "GrantAlliesPowerChargeOnKillUnique__1", }, + ["10% chance to ignite"] = { "ChanceToIgniteUniqueBodyInt2", "ChanceToIgniteUniqueRing38", "ChanceToIgniteUnique__2", "ChanceToIgniteUnique__3", "IncreasedChanceToIgniteUniqueRing31", }, + ["10% chance to impale enemies on hit with attacks"] = { "ChanceToImpaleUnique__1", }, + ["10% chance to knock enemies back on hit"] = { "KnockbackChanceUnique__1", }, + ["10% chance to poison on hit"] = { "VillageLocalChanceToPoisonOnHit", }, + ["10% chance to remove 1 mana burn on kill"] = { "TinctureRemoveToxicityOnKillUnique__1", }, + ["10% chance to shock"] = { "ChanceToShockUniqueBow10", "ChanceToShockUnique__1", }, + ["10% chance to steal power, frenzy, and endurance charges on hit"] = { "StealChargesOnHitPercentUniqueGlovesStrDex6", }, + ["10% chance to trigger level 18 animate guardian's weapon when animated weapon kills an enemy"] = { "AnimateGuardianWeaponOnAnimatedWeaponKillUnique__1", }, + ["10% chance to trigger summon spirit of ahuana on kill"] = { "RamakosEmbraceOnKillUnique__1", }, + ["10% chance to trigger summon spirit of akoya on kill"] = { "TukohamasEmbraceOnKillUnique__1", }, + ["10% chance to trigger summon spirit of ikiaho on kill"] = { "ArohonguisEmbraceOnKillUnique__1", }, + ["10% chance to trigger summon spirit of kahuturoa on kill"] = { "RongokuraisEmbraceOnKillUnique__1", }, + ["10% chance to trigger summon spirit of kaom on kill"] = { "NgamahusEmbraceOnKillUnique__1", }, + ["10% chance to trigger summon spirit of kiloava on kill"] = { "ValakosEmbraceOnKillUnique__1", }, + ["10% chance to trigger summon spirit of maata on kill"] = { "TawhoasEmbraceOnKillUnique__1", }, + ["10% chance to trigger summon spirit of rakiata on kill"] = { "TasaliosEmbraceOnKillUnique__1", }, + ["10% chance to trigger summon spirit of tawhanuku on kill"] = { "HinekorasEmbraceOnKillUnique__1", }, + ["10% chance to trigger summon spirit of utula on kill"] = { "KitavasEmbraceOnKillUnique__1", }, + ["10% faster start of energy shield recharge"] = { "ReducedEnergyShieldDelayUniqueBodyInt1", }, + ["10% global chance to blind enemies on hit"] = { "GlobalChanceToBlindOnHitUniqueSceptre8", }, + ["10% increased accuracy rating per frenzy charge"] = { "ChargeBonusAccuracyRatingPerFrenzyCharge", }, + ["10% increased area damage"] = { "AreaDamageUniqueDescentOneHandSword1", }, + ["10% increased area of effect"] = { "AreaOfEffectImplicitTwoHandMace1__", "AreaOfEffectUniqueQuiver6", "AreaOfEffectUniqueShieldDex7", "AreaOfEffectUniqueShieldDexInt2", "AreaOfEffectUnique__1", "AreaOfEffectUnique__2_", "AreaOfEffectUnique__3", "AreaOfEffectUnique__4_", "AreaOfEffectUnique__5", }, + ["10% increased attack damage"] = { "AttackDamageUniqueJewel42", }, + ["10% increased attack speed"] = { "IncreasedAttackSpeedUniqueBodyDex5", "IncreasedAttackSpeedUniqueBodyDex7", "IncreasedAttackSpeedUniqueBootsDexInt1", "IncreasedAttackSpeedUniqueGlovesDexInt3", "IncreasedAttackSpeedUniqueHelmetDex4", "IncreasedAttackSpeedUniqueQuiver1", "IncreasedAttackSpeedUniqueQuiver9", "LocalIncreasedAttackSpeedUniqueBow2", "LocalIncreasedAttackSpeedUniqueBow3", "LocalIncreasedAttackSpeedUniqueDagger12", "LocalIncreasedAttackSpeedUniqueDagger3", "LocalIncreasedAttackSpeedUniqueDescentBow1", "LocalIncreasedAttackSpeedUniqueDescentDagger1", "LocalIncreasedAttackSpeedUniqueOneHandMace8", "LocalIncreasedAttackSpeedUniqueOneHandSword1", }, + ["10% increased cast speed"] = { "IncreasedCastSpeedImplicitMarakethWand1", "IncreasedCastSpeedUniqueGlovesInt4", "IncreasedCastSpeedUniqueStaff1", "IncreasedCastSpeedUniqueWand1", "IncreasedCastSpeedUniqueWand10", }, + ["10% increased cast speed for each different non-instant spell you've cast recently"] = { "SpellDamagePerUniqueSpellRecentlyUnique__1", }, + ["10% increased character size"] = { "ActorSizeUniqueBeltDemigods1", "ActorSizeUnique__3", }, + ["10% increased cold damage taken"] = { "ColdDamageTakenUnique__2", }, + ["10% increased damage"] = { "AllDamageUniqueBelt11", "AllDamageUniqueRing8", "AllDamageUnique__1", }, + ["10% increased damage for each type of abyss jewel affecting you"] = { "DamagePerAbyssJewelTypeUnique__1_", }, + ["10% increased damage taken"] = { "DamageTakenUniqueJewel24", "IncreasedDamageTakenUnique__1", }, + ["10% increased damage taken from ghosts"] = { "DamageTakenFromGhostsUniqueOneHandSword12", }, + ["10% increased damage taken from skeletons"] = { "DamageTakenFromSkeletonsUniqueOneHandSword12_", }, + ["10% increased damage taken if you've taken a savage hit recently"] = { "ReducedDamageIfTakenASavageHitRecentlyUnique_1", }, + ["10% increased damage taken while on full energy shield"] = { "DamageTakenOnFullESUniqueCorruptedJewel15", }, + ["10% increased damage taken while phasing"] = { "DamageTakenWhilePhasingUnique__1", }, + ["10% increased damage with poison per frenzy charge"] = { "PoisonDamagePerFrenzyChargeUnique__1", }, + ["10% increased effect of buffs on you"] = { "IncreasedBuffEffectivenessUniqueOneHandSword11", }, + ["10% increased effect of non-curse auras from your skills"] = { "AuraEffectUnique__2____", }, + ["10% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew1", "ElementalDamagePercentUnique__2", "ElementalDamageUniqueDescentBelt1", "ElementalDamageUniqueJewel10", }, + ["10% increased elemental damage with attack skills"] = { "WeaponElementalDamageUniqueBelt10", }, + ["10% increased endurance charge duration"] = { "JewelImplicitEnduranceChargeDuration", }, + ["10% increased evasion rating per frenzy charge"] = { "EvasionRatingPerFrenzyChargeUniqueBootsStrDex2", }, + ["10% increased experience gain for corrupted gems"] = { "IncreasedCorruptedGemExperienceUniqueCorruptedJewel9", }, + ["10% increased explicit ailment modifier magnitudes"] = { "WeaponEnchantmentHeistAilmentEffectOnlyBlueSockets1__", "WeaponEnchantmentHeistAilmentEffectOnlyGreenSockets1", "WeaponEnchantmentHeistAilmentEffectOnlyRedSockets1", }, + ["10% increased explicit attribute modifier magnitudes"] = { "ArmourEnchantmentHeistAttributeEffectOnlyBlueSockets1_", "ArmourEnchantmentHeistAttributeEffectOnlyGreenSockets1", "ArmourEnchantmentHeistAttributeEffectOnlyRedSockets1", "WeaponEnchantmentHeistAttributeEffectOnlyBlueSockets1", "WeaponEnchantmentHeistAttributeEffectOnlyGreenSockets1", "WeaponEnchantmentHeistAttributeEffectOnlyRedSockets1_", }, + ["10% increased explicit caster damage modifier magnitudes"] = { "WeaponEnchantmentHeistCasterDamageEffectCriticalEffectPenalty1", "WeaponEnchantmentHeistCasterDamageEffectOnlyBlueSockets1_", "WeaponEnchantmentHeistCasterDamageEffectOnlyGreenSockets1", "WeaponEnchantmentHeistCasterDamageEffectOnlyRedSockets1", "WeaponEnchantmentHeistCasterDamageEffectSpeedEffectPenalty1", }, + ["10% increased explicit chaos modifier magnitudes"] = { "WeaponEnchantmentHeistChaosEffectCriticalEffectPenalty1", "WeaponEnchantmentHeistChaosEffectOnlyBlueSockets1", "WeaponEnchantmentHeistChaosEffectOnlyGreenSockets1___", "WeaponEnchantmentHeistChaosEffectOnlyRedSockets1", "WeaponEnchantmentHeistChaosEffectSpeedEffectPenalty1", }, + ["10% increased explicit cold modifier magnitudes"] = { "WeaponEnchantmentHeistColdEffectCriticalEffectPenalty1", "WeaponEnchantmentHeistColdEffectOnlyBlueSockets1_", "WeaponEnchantmentHeistColdEffectOnlyGreenSockets1__", "WeaponEnchantmentHeistColdEffectOnlyRedSockets1_", "WeaponEnchantmentHeistColdEffectSpeedEffectPenalty1", }, + ["10% increased explicit critical modifier magnitudes"] = { "WeaponEnchantmentHeistCriticalEffectOnlyBlueSockets1", "WeaponEnchantmentHeistCriticalEffectOnlyGreenSockets1", "WeaponEnchantmentHeistCriticalEffectOnlyRedSockets1", }, + ["10% increased explicit defence modifier magnitudes"] = { "ArmourEnchantmentHeistDefenceEffectOnlyBlueSockets1", "ArmourEnchantmentHeistDefenceEffectOnlyGreenSockets1", "ArmourEnchantmentHeistDefenceEffectOnlyRedSockets1___", }, + ["10% increased explicit fire modifier magnitudes"] = { "WeaponEnchantmentHeistFireEffectOnlyBlueSockets1", "WeaponEnchantmentHeistFireEffectOnlyGreenSockets1", "WeaponEnchantmentHeistFireEffectOnlyRedSockets1", "WeaponEnchantmentHeistFireEffectSpeedEffectPenalty1", }, + ["10% increased explicit life modifier magnitudes"] = { "ArmourEnchantmentHeistLifeEffectOnlyBlueSockets1", "ArmourEnchantmentHeistLifeEffectOnlyGreenSockets1", "ArmourEnchantmentHeistLifeEffectOnlyRedSockets1", }, + ["10% increased explicit lightning modifier magnitudes"] = { "WeaponEnchantmentHeistLightningEffectOnlyBlueSockets1", "WeaponEnchantmentHeistLightningEffectOnlyGreenSockets1", "WeaponEnchantmentHeistLightningEffectOnlyRedSockets1", "WeaponEnchantmentHeistLightningEffectSpeedEffectPenalty1", }, + ["10% increased explicit mana modifier magnitudes"] = { "ArmourEnchantmentHeistManaEffectOnlyBlueSockets1", "ArmourEnchantmentHeistManaEffectOnlyGreenSockets1", "ArmourEnchantmentHeistManaEffectOnlyRedSockets1", "WeaponEnchantmentHeistManaEffectOnlyBlueSockets1", "WeaponEnchantmentHeistManaEffectOnlyGreenSockets1", "WeaponEnchantmentHeistManaEffectOnlyRedSockets1", "WeaponEnchantmentHeistManaEffectSpeedEffectPenalty1", }, + ["10% increased explicit physical modifier magnitudes"] = { "WeaponEnchantmentHeistPhysicalEffectOnlyBlueSockets1_", "WeaponEnchantmentHeistPhysicalEffectOnlyGreenSockets1", "WeaponEnchantmentHeistPhysicalEffectOnlyRedSockets1", "WeaponEnchantmentHeistPhysicalEffectSpeedEffectPenalty1___", }, + ["10% increased explicit resistance modifier magnitudes"] = { "ArmourEnchantmentHeistResistanceEffectOnlyBlueSockets1", "ArmourEnchantmentHeistResistanceEffectOnlyGreenSockets1", "ArmourEnchantmentHeistResistanceEffectOnlyRedSockets1", }, + ["10% increased explicit speed modifier magnitudes"] = { "WeaponEnchantmentHeistSpeedEffectOnlyBlueSockets1", "WeaponEnchantmentHeistSpeedEffectOnlyGreenSockets1", "WeaponEnchantmentHeistSpeedEffectOnlyRedSockets1", }, + ["10% increased fire damage taken"] = { "IncreasedFireDamageTakenUniqueTwoHandSword6", }, + ["10% increased frenzy charge duration"] = { "JewelImplicitFrenzyChargeDuration__", }, + ["10% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueGlovesStr2", "IncreasedPhysicalDamagePercentUniqueJewel9", }, + ["10% increased life recovery from flasks"] = { "FlaskLifeRecoveryRateUniqueJewel46", }, + ["10% increased light radius"] = { "LightRadiusUniqueRing15", }, + ["10% increased mana cost of skills during effect"] = { "FlaskBuffReducedManaCostWhileHealingUnique__1", }, + ["10% increased mana recovery rate"] = { "IncreasedManaRecoveryRateUnique__1", }, + ["10% increased mana regeneration rate"] = { "ManaRegenerationUniqueJewel43", }, + ["10% increased mana regeneration rate per power charge"] = { "IncreasedManaRegenerationPerPowerChargeUnique__1", }, + ["10% increased mana reservation efficiency of herald skills"] = { "HeraldReservationEfficiencyUnique__1", }, + ["10% increased mana reservation efficiency of skills"] = { "IncreasedManaReservationsCostUniqueOneHandSword11", "ManaReservationEfficiencyUniqueOneHandSword11", }, + ["10% increased maximum life"] = { "MaximumLifeShieldInt1", "MaximumLifeUniqueBelt4", "MaximumLifeUniqueBodyInt3", "MaximumLifeUnique__27", "MaximumLifeUnique__3", }, + ["10% increased movement speed"] = { "MovementVelocityDescent2Boots1", "MovementVelocityMarakethBowImplicit2", "MovementVelocityUniqueAmulet5", "MovementVelocityUniqueBodyDex4", "MovementVelocityUniqueBodyDex5", "MovementVelocityUniqueBootsDex2", "MovementVelocityUniqueBow7", "MovementVelocityUniqueHelmetDex6", "MovementVelocityUniqueHelmetInt6", "MovementVelocityUniqueHelmetStrDex1", "MovementVelocityUniqueOneHandAxe3", "MovementVelocityUniqueTwoHandSword1", "MovementVelocityUniqueTwoHandSword3", "MovementVelocityUnique__37", "MovementVelocityUnique__42", "NearbyAlliesMovementVelocityUnique__1", }, + ["10% increased movement speed for each poison on you up to a maximum of 50%"] = { "MovementSpeedPerPoisonOnSelfUnique__1_", }, + ["10% increased movement speed if you have used a vaal skill recently"] = { "MovementVelocityIfVaalSkillUsedRecentlyUnique__1_", }, + ["10% increased movement speed if you've hit an enemy recently"] = { "MovementSpeedIfHitRecentlyUnique__1_", }, + ["10% increased movement speed if you've warcried recently"] = { "MovementSpeedIfUsedWarcryRecentlyUnique_1", }, + ["10% increased movement speed when on full life"] = { "MovementVelocityOnFullLifeUniqueAmulet13", }, + ["10% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueShieldStrInt5", }, + ["10% increased movement speed while ignited"] = { "MovementVelocityWhileIgnitedUnique__1", }, + ["10% increased movement speed while phasing"] = { "MovementSpeedWhilePhasedUnique__2", }, + ["10% increased physical damage per endurance charge"] = { "IncreasedPhysicalDamagePerEnduranceChargeUnique__1", }, + ["10% increased physical damage taken"] = { "IncreasedPhysicalDamageTakenUniqueTwoHandSword6", }, + ["10% increased physical damage taken while moving"] = { "IncreasedPhysicalDamageTakenWhileMovingUnique__1", }, + ["10% increased power charge duration"] = { "JewelImplicitPowerChargeDuration", }, + ["10% increased projectile damage"] = { "ProjectileDamageJewelUniqueJewel41", }, + ["10% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueHelmetDex3", "ItemFoundRarityIncreaseUnique__1", }, + ["10% increased scorching ray beam length"] = { "FireBeamLengthUnique__1", }, + ["10% increased strength"] = { "PercentageStrengthImplicitMace1", "PercentageStrengthUnique__3", }, + ["10% increased stun duration on enemies"] = { "StunDurationUniqueGlovesDexInt3", }, + ["10% of damage from hits is taken from your raised spectres' life before you"] = { "DamageRemovedFromSpectresUnique__1", }, + ["10% of damage you reflect to enemies when hit is leeched as life"] = { "DamageYouReflectGainedAsLifeUnique__1", }, + ["10% of fire damage from hits taken as physical damage"] = { "FireDamageTakenConvertedToPhysicalUniqueBodyStrDex5", }, + ["10% of fire damage taken causes extra physical damage"] = { "FireDamageTakenCausesExtraPhysicalDamageUniqueBodyStrDex5", }, + ["10% of physical attack damage leeched as life"] = { "LifeLeechImplicitClaw2", }, + ["10% of physical damage from hits taken as chaos damage"] = { "PhysicalDamageTakenAsChaosUnique__1", }, + ["10% reduced armour per 50 strength"] = { "ArmourPerStrengthUnique__1_", }, + ["10% reduced attack speed"] = { "ReducedAttackSpeedUniqueAmulet16", "ReducedAttackSpeedUnique__2", }, + ["10% reduced cast speed"] = { "IncreasedCastSpeedUniqueAmulet16", "ReducedCastSpeedUniqueBootsDex5", }, + ["10% reduced character size"] = { "ActorSizeUniqueAmulet12", "ActorSizeUniqueHelmetDex6", }, + ["10% reduced enemy stun threshold"] = { "StunThresholdReductionImplicitMace1", "StunThresholdReductionUniqueGlovesDexInt2", }, + ["10% reduced enemy stun threshold with this weapon"] = { "StunThresholdReductionUniqueClaw6", }, + ["10% reduced flask life recovery rate"] = { "FlaskLifeRecoveryRateUniqueSceptre5", }, + ["10% reduced frenzy charge duration per frenzy charge"] = { "FrenzyChargeDurationPerFrenzyChargeUniqueGlovesDexInt5", }, + ["10% reduced global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueHelmetStrDex2", }, + ["10% reduced movement speed"] = { "MovementSkillCooldownReducedMoveSpeedImplicitR1", "MovementSkillCooldownReducedMoveSpeedImplicitR2_", "MovementSkillCooldownReducedMoveSpeedImplicitR3_", "MovementVelocityUniqueTwoHandMace3", "ReducedMovementVelocityUnique__1", "ReducedMovementVelocityUnique__2", }, + ["10% reduced quantity of items found"] = { "ItemFoundQuantityReduceUniqueCorruptedJewel1", }, + ["10% reduced reflected elemental damage taken"] = { "JewelImplicitReducedElementalReflect", }, + ["10% reduced reflected physical damage taken"] = { "JewelImplicitReducedPhysicalReflect", }, + ["10% reduced strength"] = { "PercentageStrengthUnique__4_", }, + ["10% reduced stun and block recovery"] = { "NearbyEnemiesReducedStunRecoveryUnique__1", }, + ["10% reduced trap duration"] = { "TrapDurationUnique__1", }, + ["100% chance to avoid being chilled during onslaught"] = { "CannotBeChilledWhenOnslaughtUniqueOneHandAxe6", }, + ["100% chance to avoid being chilled or frozen if you have used a fire skill recently"] = { "AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1", }, + ["100% chance to avoid being ignited while on low life"] = { "AvoidIgniteOnLowLifeUniqueShieldStrInt5", }, + ["100% chance to avoid being ignited, chilled or frozen with her blessing"] = { "UniqueConditionOnBuff__1", }, + ["100% chance to avoid being shocked while chilled"] = { "CannotBeShockedWhileChilledUnique__1", }, + ["100% chance to avoid bleeding"] = { "ChanceToAvoidBleedingUnique__2_", }, + ["100% chance to cause monster to flee on block"] = { "ChanceForEnemyToFleeOnBlockUniqueShieldDex4", }, + ["100% chance to create consecrated ground when you block"] = { "ConsecratedGroundOnBlockUniqueBodyInt8", }, + ["100% chance to create desecrated ground when you block"] = { "DesecratedGroundOnBlockUniqueBodyStrInt4", }, + ["100% chance to gain an additional vaal soul on kill"] = { "VillageAdditionalVaalSoulOnKill", }, + ["100% chance to inflict an additional poison on the same target when you inflict poison"] = { "ApplyAdditionalPoisonUnique__1", }, + ["100% chance to trigger level 1 raise spiders on kill"] = { "SummonSpidersOnKillUnique__1", }, + ["100% increased accuracy rating when on low life"] = { "IncreasedAccuracyWhenOnLowLifeUniqueClaw4", }, + ["100% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingPercentUnique__4", }, + ["100% increased aspect of the avian buff effect"] = { "AvianAspectBuffEffectUnique__1", }, + ["100% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueBow4", }, + ["100% increased burning damage if you've ignited an enemy recently"] = { "IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1", }, + ["100% increased charges per use"] = { "FlaskChargesUsedUnique__7", }, + ["100% increased chill duration on enemies when in off hand"] = { "OffHandChillDurationUniqueOneHandAxe2", }, + ["100% increased claw physical damage when on low life"] = { "IncreasedClawDamageOnLowLifeUniqueClaw4", }, + ["100% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueDescentDagger1", }, + ["100% increased critical strike chance against enemies that are on full life"] = { "CriticalChanceAgainstEnemiesOnFullLifeUnique__1", }, + ["100% increased damage when on low life"] = { "IncreasedPhysicalDamagePercentOnLowLifeUniqueOneHandSword1", }, + ["100% increased damage with hits and ailments against hindered enemies"] = { "DamageAgainstNearEnemiesUnique__1", }, + ["100% increased damage with ignite inflicted on chilled enemies"] = { "BurningDamageToChilledEnemiesUniqueOneHandAxe2", }, + ["100% increased damage with unarmed attacks against bleeding enemies"] = { "UnarmedDamageVsBleedingEnemiesUnique__1", }, + ["100% increased duration of curses on you"] = { "IncreasedSelfCurseDurationUniqueShieldStrDex2", }, + ["100% increased duration of lightning ailments"] = { "ShockDurationUniqueGlovesDexInt3", "ShockDurationUniqueStaff8", }, + ["100% increased duration. -1% to this value when used"] = { "HarvestFlaskEnchantmentDurationLoweredOnUse1_", }, + ["100% increased effect of lightning ailments"] = { "LightningAilmentEffectUnique__1", }, + ["100% increased effect of onslaught on you"] = { "OnslaughtEffectUnique__1", }, + ["100% increased effect of tattoos in radius"] = { "SoulTattooEffectUnique__1", }, + ["100% increased evasion rating during onslaught"] = { "IncreasedEvasionWithOnslaughtUnique_1", }, + ["100% increased evasion rating if you have been hit recently"] = { "IncreasedEvasionIfHitRecentlyUnique___1", }, + ["100% increased fire damage"] = { "FireDamagePercentUnique__12___", "IncreasedFireDamgeIfHitRecentlyUnique__1", }, + ["100% increased fishing line strength"] = { "FishingLineStrengthUnique__1", }, + ["100% increased freeze duration on enemies"] = { "FreezeDurationUniqueGlovesStrInt3", }, + ["100% increased global armour while you have no energy shield"] = { "IncreasedArmourOnZeroEnergyShieldUnique__1", }, + ["100% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitMarakethStaff2", "CriticalStrikeChanceUniqueBodyInt4", }, + ["100% increased global defences"] = { "AllDefencesUnique__2", "AllDefencesUnique__3", }, + ["100% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUnique__4", }, + ["100% increased global physical damage while frozen"] = { "PhysicalDamageWhileFrozenUnique___1", }, + ["100% increased ignite duration on you"] = { "IncreasedSelfBurnDurationUniqueRing28", }, + ["100% increased knockback distance"] = { "KnockbackDistanceUnique__1", }, + ["100% increased life recovery from flasks"] = { "BeltFlaskLifeRecoveryUnique__2", "FlaskLifeRecoveryUniqueAmulet25", }, + ["100% increased lightning damage"] = { "LightningDamagePercentUnique__4", }, + ["100% increased mana recovery from flasks"] = { "BeltFlaskManaRecoveryUnique__2", }, + ["100% increased melee damage against frozen enemies"] = { "AdditionalMeleeDamageToFrozenEnemiesUniqueDagger6", }, + ["100% increased melee damage against ignited enemies"] = { "AdditionalMeleeDamageToBurningEnemiesUniqueDagger6", }, + ["100% increased melee damage against shocked enemies"] = { "AdditionalMeleeDamageToShockedEnemiesUniqueDagger6", }, + ["100% increased melee physical damage against ignited enemies"] = { "IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1", }, + ["100% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueDescentBow1", "LocalIncreasedPhysicalDamagePercentUniqueDescentStaff1", "LocalIncreasedPhysicalDamagePercentUniqueStaff9", "LocalIncreasedPhysicalDamagePercentUnique__26", }, + ["100% increased physical damage while you have resolute technique"] = { "PhysicalDamageWhileResoluteTechniqueUnique__1__", }, + ["100% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueBodyStr5", }, + ["100% increased rarity of items found when on low life"] = { "ItemRarityOnLowLifeUniqueBootsInt1", }, + ["100% increased shock duration on you"] = { "SelfShockDurationUniqueBelt12_", }, + ["100% increased spell damage"] = { "SpellDamageUniqueGlovesInt2", }, + ["100% increased spell damage taken when on low mana"] = { "SpellDamageTakenOnLowManaUniqueBodyInt4", }, + ["100% increased stun and block recovery"] = { "StunRecoveryUnique__5", }, + ["100% increased total recovery per second from life leech"] = { "IncreasedLifeLeechRateUniqueBodyStrDex4", }, + ["100% of cold damage leeched as life"] = { "ColdDamageLifeLeechCorrupted_", "ColdDamageLifeLeechPerMyriadUniqueBelt9b", }, + ["100% of damage leeched as life against shocked enemies"] = { "LifeLeechVsShockedEnemiesUniqueRing29", }, + ["100% of damage you reflect to enemies when hit is leeched as life"] = { "DamageYouReflectGainedAsLifeUniqueHelmetDexInt6", }, + ["100% of elemental damage leeched as life"] = { "ElementalDamageLeechedAsLifeUniqueSceptre7", }, + ["100% of fire damage from hits taken as physical damage"] = { "FireDamageTakenConvertedToPhysicalUnique__1", }, + ["100% of fire damage leeched as life"] = { "FireDamageLifeLeechCorrupted", "FireDamageLifeLeechPerMyriadUniqueBelt9a_", }, + ["100% of life recovery from flasks is applied to nearby allies instead of you"] = { "FlaskLifeRecoveryAlliesUnique__1_", }, + ["100% of lightning damage converted to chaos damage"] = { "ConvertLightningDamageToChaosUniqueBow10", "ConvertLightningDamageToChaosUniqueBow10Updated", }, + ["100% of lightning damage leeched as life"] = { "LightningDamageLifeLeechCorrupted", "LightningDamageLifeLeechPerMyriadUniqueBelt9c", }, + ["100% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUniqueGlovesDex1", }, + ["100% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUniqueOneHandSword4", "ConvertPhysicalToFireUnique__4", }, + ["100% of physical damage from hits with this weapon is converted to a random element"] = { "LocalDamageConversionToRandomElementImplicitE1", "LocalDamageConversionToRandomElementUnique__2_", }, + ["100% of physical damage leeched as life"] = { "PhysicalDamageLifeLeechPerMyriadUniqueBelt9d", }, + ["100% reduced dexterity"] = { "PercentageDexterityUnique__1", }, + ["100% reduced global accuracy rating"] = { "AccuracyPercentUnique__1", }, + ["100% reduced intelligence"] = { "PercentageIntelligenceUnique__1", }, + ["100% reduced strength"] = { "PercentageStrengthUnique__1", }, + ["1000% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__22", }, + ["1000% of chaos damage leeched as life during effect"] = { "ChaosDamageLifeLeechPerMyriadWhileUsingFlaskUniqueFlask5", }, + ["1000% of melee physical damage taken reflected to attacker"] = { "PhysicalDamageTakenPercentToReflectUniqueBodyStr2", }, + ["10000% increased chill duration on enemies"] = { "FreezeChillDurationUnique__1", }, + ["10000% increased chill duration on you"] = { "ChillDurationOnSelfUnique__1", }, + ["10000% increased freeze duration on you"] = { "FreezeDurationOnSelfUnique__1", }, + ["10000% increased ignite duration on enemies"] = { "BurnDurationUnique__2", }, + ["10000% increased ignite duration on you"] = { "SelfBurnDurationUnique__1", }, + ["10000% increased shock duration on enemies"] = { "ShockDurationUnique__1", }, + ["10000% increased shock duration on you"] = { "SelfShockDurationUnique__1", }, + ["12 to 14 added cold damage per frenzy charge"] = { "AddedColdDamagePerFrenzyChargeUnique__1", }, + ["12% chance to avoid elemental ailments per grand spectrum"] = { "AvoidElementalAilmentsPerStackableJewelUnique__1", }, + ["12% increased attack speed"] = { "IncreasedAttackSpeedImplicitShield2", }, + ["12% increased cast speed"] = { "IncreasedCastSpeedUniqueDescentWand1", }, + ["12% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew2", "ElementalDamagePercentImplicitSceptreNew3", }, + ["12% increased explicit attribute modifier magnitudes"] = { "ArmourEnchantmentHeistAttributeEffectDefenceEffectPenalty1", "ArmourEnchantmentHeistAttributeEffectLifeEffectPenalty1_", "WeaponEnchantmentHeistAttributeEffectDamageEffectPenalty1", }, + ["12% increased explicit critical modifier magnitudes"] = { "WeaponEnchantmentHeistCriticalEffectDamageEffectPenalty1", }, + ["12% increased explicit defence modifier magnitudes"] = { "ArmourEnchantmentHeistDefenceEffectResistanceEffectPenalty1", }, + ["12% increased explicit life modifier magnitudes"] = { "ArmourEnchantmentHeistLifeEffectResistanceEffectPenalty1", }, + ["12% increased explicit mana modifier magnitudes"] = { "ArmourEnchantmentHeistManaEffectResistanceEffectPenalty1", }, + ["12% increased global attack speed per green socket"] = { "AttackSpeedPerGreenSocketUniqueOneHandSword5", }, + ["12% increased global physical damage"] = { "IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe2", }, + ["12% increased reservation efficiency of skills"] = { "ReducedManaReservationCostUnique__1", "ReservationEfficiencyUnique__3__", }, + ["12% reduced enemy stun threshold"] = { "StunThresholdReductionImlicitMarakethOneHandSword2", }, + ["120% increased block recovery"] = { "BlockRecoveryImplicitShield2", }, + ["14% increased cast speed"] = { "IncreasedCastSpeedImplicitMarakethWand2", }, + ["14% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew5", }, + ["15% chance that if you would gain endurance charges, you instead gain up to maximum endurance charges"] = { "ChargeBonusChanceToGainMaximumEnduranceCharges", }, + ["15% chance that if you would gain frenzy charges, you instead gain up to your maximum number of frenzy charges"] = { "ChargeBonusChanceToGainMaximumFrenzyCharges", }, + ["15% chance that if you would gain power charges, you instead gain up to"] = { "ChargeBonusChanceToGainMaximumPowerCharges", }, + ["15% chance to avoid being chilled"] = { "JewelImplicitChanceToAvoidChill", }, + ["15% chance to avoid being frozen"] = { "JewelImplicitChanceToAvoidFreeze", }, + ["15% chance to avoid being ignited"] = { "JewelImplicitChanceToAvoidIgnite", }, + ["15% chance to avoid being poisoned"] = { "JewelImplicitChanceToAvoidPoison", }, + ["15% chance to avoid being shocked"] = { "JewelImplicitChanceToAvoidShock", }, + ["15% chance to avoid being stunned"] = { "JewelImplicitChanceToAvoidStun", }, + ["15% chance to block attack damage"] = { "AdditionalBlockUnique__2", }, + ["15% chance to block spell damage"] = { "BlockingBlocksSpellsUniqueAmulet1", }, + ["15% chance to cause bleeding on hit"] = { "LocalChanceToBleedImplicitMarakethRapier1", }, + ["15% chance to create chilled ground when hit with an attack"] = { "SpreadChilledGroundWhenHitByAttackUnique__1", }, + ["15% chance to create chilled ground when you freeze an enemy"] = { "SpreadChilledGroundOnFreezeUnique__1", }, + ["15% chance to gain a frenzy charge on kill"] = { "FrenzyChargeOnKillChanceUnique__1", }, + ["15% chance to gain a frenzy charge when you stun an enemy"] = { "ChanceToGainFrenzyChargeOnStunUnique__1", }, + ["15% chance to gain a frenzy charge when your trap is triggered by an enemy"] = { "GainFrenzyChargeOnTrapTriggeredUnique__1", }, + ["15% chance to gain a power charge on kill"] = { "PowerChargeOnKillChanceUniqueDescentDagger1", }, + ["15% chance to maim on hit"] = { "DodgeImplicitMarakethSword1", }, + ["15% chance to poison on hit"] = { "LocalChanceToPoisonOnHitUnique__1", }, + ["15% chance to shock"] = { "ChanceToShockUniqueStaff8", }, + ["15% increased area of effect"] = { "AreaOfEffectImplicitMarakethTwoHandMace1", "AreaOfEffectImplicitTwoHandMace2_", "AreaOfEffectUniqueDescentStaff1", }, + ["15% increased area of effect for skills used by totems"] = { "TotemAreaOfEffectUniqueShieldStr5", }, + ["15% increased area of effect of aura skills"] = { "AuraIncreasedIncreasedAreaOfEffectUnique_1", }, + ["15% increased area of effect while you have no frenzy charges"] = { "IncreasedAreaOfSkillsWithNoFrenzyChargesUnique__1_", }, + ["15% increased attack and cast speed if you've used a movement skill recently"] = { "AttackAndCastSpeedOnUsingMovementSkillUnique__1", }, + ["15% increased attack speed"] = { "IncreasedAttackSpeedUniqueHelmetDex6", "LocalIncreasedAttackSpeedUniqueOneHandSword12", }, + ["15% increased attack speed when on full life"] = { "AttackSpeedOnFullLifeUniqueDescentHelmet1", }, + ["15% increased attack speed with movement skills"] = { "AttackSpeedWithMovementSkillsUniqueClaw9", }, + ["15% increased character size"] = { "ActorSizeUnique__2", }, + ["15% increased damage for each poison on you up to a maximum of 75%"] = { "DamagePerPoisonOnSelfUnique__1_", }, + ["15% increased damage taken while on full energy shield"] = { "DamageTakenOnFullESUnique__1", }, + ["15% increased damage with ailments per elder item equipped"] = { "AilmentDamagePerElderItemUnique__1__", }, + ["15% increased dexterity"] = { "PercentageDexterityUniqueBodyDex7", "PercentageDexterityUnique__5", }, + ["15% increased dexterity if strength is higher than intelligence"] = { "PercentDexterityIfStrengthHigherThanIntelligenceUnique__1", }, + ["15% increased elemental damage per grand spectrum"] = { "IncreasedDamagePerStackableJewelUnique__1", }, + ["15% increased explicit ailment modifier magnitudes"] = { "WeaponEnchantmentHeistAilmentEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistAilmentEffectSocketPenalty1__", }, + ["15% increased explicit attribute modifier magnitudes"] = { "ArmourEnchantmentHeistAttributeEffectAttributeRequirementsPenalty1", "ArmourEnchantmentHeistAttributeEffectSocketPenalty1", "WeaponEnchantmentHeistAttributeEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistAttributeEffectSocketPenalty1", }, + ["15% increased explicit caster damage modifier magnitudes"] = { "WeaponEnchantmentHeistCasterDamageEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistCasterDamageEffectSocketPenalty1__", }, + ["15% increased explicit chaos modifier magnitudes"] = { "WeaponEnchantmentHeistChaosEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistChaosEffectSocketPenalty1", }, + ["15% increased explicit cold modifier magnitudes"] = { "WeaponEnchantmentHeistColdEffectAttributeRequirementPenalty1_", "WeaponEnchantmentHeistColdEffectSocketPenalty1_", }, + ["15% increased explicit critical modifier magnitudes"] = { "WeaponEnchantmentHeistCriticalEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistCriticalEffectSocketPenalty1___", }, + ["15% increased explicit defence modifier magnitudes"] = { "ArmourEnchantmentHeistDefenceEffectAttributeRequirementsPenalty1_", "ArmourEnchantmentHeistDefenceEffectSocketPenalty1", }, + ["15% increased explicit fire modifier magnitudes"] = { "WeaponEnchantmentHeistFireEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistFireEffectSocketPenalty1", }, + ["15% increased explicit life modifier magnitudes"] = { "ArmourEnchantmentHeistLifeEffectAttributeRequirementsPenalty1_", "ArmourEnchantmentHeistLifeEffectSocketPenalty1", }, + ["15% increased explicit lightning modifier magnitudes"] = { "WeaponEnchantmentHeistLightningEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistLightningEffectSocketPenalty1", }, + ["15% increased explicit mana modifier magnitudes"] = { "ArmourEnchantmentHeistManaEffectAttributeRequirementsPenalty1", "ArmourEnchantmentHeistManaEffectSocketPenalty1", "WeaponEnchantmentHeistManaEffectAttributeRequirementPenalty1__", "WeaponEnchantmentHeistManaEffectSocketPenalty1_", }, + ["15% increased explicit physical modifier magnitudes"] = { "WeaponEnchantmentHeistPhysicalEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistPhysicalEffectSocketPenalty1", }, + ["15% increased explicit resistance modifier magnitudes"] = { "ArmourEnchantmentHeistResistanceEffectAttributeRequirementsPenalty1", "ArmourEnchantmentHeistResistanceEffectSocketPenalty1", }, + ["15% increased explicit speed modifier magnitudes"] = { "WeaponEnchantmentHeistSpeedEffectAttributeRequirementPenalty1", "WeaponEnchantmentHeistSpeedEffectSocketPenalty1", }, + ["15% increased ignite duration on enemies"] = { "BurnDurationUniqueRing31", }, + ["15% increased item quantity per white socket"] = { "ItemQuantityPerWhiteSocketUniqueRing39_", }, + ["15% increased mana recovery from flasks"] = { "FlaskManaRecoveryUniqueShieldInt3", }, + ["15% increased mana regeneration rate"] = { "ReducedManaRegenerationUniqueRing27", }, + ["15% increased movement speed"] = { "MovementVelocityUniqueBodyStrDex5_", "MovementVelocityUniqueBootsDexInt2", "MovementVelocityUniqueBootsStrDex4", "MovementVelocityUnique__16", "MovementVelocityUnique__17__", "MovementVelocityUnique__18", "MovementVelocityUnique__7", "MovementVelocityUnique__8", }, + ["15% increased movement speed during any flask effect"] = { "MovementSpeedDuringFlaskEffectUnique__1", }, + ["15% increased movement speed for 9 seconds on throwing a trap"] = { "MovementSpeedOnTrapThrowUnique__1", }, + ["15% increased movement speed if you've killed recently"] = { "MovementSpeedIfKilledRecentlyUnique___1", "MovementSpeedIfKilledRecentlyUnique___2", }, + ["15% increased movement speed if you've warcried recently"] = { "MovementSpeedIfUsedWarcryRecentlyUnique__2", }, + ["15% increased movement speed when on full life"] = { "MovementVelocityOnFullLifeUniqueTwoHandAxe2", }, + ["15% increased movement speed while fortified"] = { "MovementSpeedWhileFortifiedUber1", }, + ["15% increased movement speed while phasing"] = { "MovementSpeedWhilePhasedUnique__1", }, + ["15% increased movement speed while shocked"] = { "MovementVelocityWhileShockedUniqueBelt12", }, + ["15% increased power charge duration"] = { "IncreasedPowerChargeDurationUniqueWand3", }, + ["15% increased quantity of items dropped by slain frozen enemies"] = { "ItemQuantityWhenFrozenUniqueBow9", }, + ["15% increased skill effect duration"] = { "SkillEffectDurationUniqueTwoHandMace5", }, + ["15% of fire damage converted to chaos damage"] = { "ConvertFireToChaosUniqueBodyInt4", "ConvertFireToChaosUniqueBodyInt4Updated", }, + ["15% of physical attack damage leeched as life"] = { "LifeLeechUniqueClaw6", }, + ["15% reduced attack speed"] = { "LocalReducedAttackSpeedUnique__2", }, + ["15% reduced cast speed"] = { "ReducedCastSpeedUniqueHelmetInt8", "ReducedCastSpeedUniqueHelmetStrInt6", }, + ["15% reduced effect of chill on you"] = { "JewelImplicitReducedChillEffect", }, + ["15% reduced effect of shock on you"] = { "JewelImplicitReducedShockEffect", }, + ["15% reduced enemy stun threshold"] = { "StunThresholdReductionImplicitMace2", "StunThresholdReductionUniqueTwoHandMace1", }, + ["15% reduced freeze duration on you"] = { "JewelImplicitReducedFreezeDuration_", }, + ["15% reduced global accuracy rating"] = { "AccuracyPercentUniqueClaw9", }, + ["15% reduced ignite duration on you"] = { "JewelImplicitReducedIgniteDuration_", }, + ["15% reduced movement speed"] = { "ReducedMovementVelocityUniqueCorruptedJewel2_", }, + ["150% increased chill duration on enemies"] = { "IncreasedChillDurationUniqueBodyStrInt3", }, + ["150% increased elemental damage if you've warcried recently"] = { "IncreasedElementalDamageIfUsedWarcryRecentlyUnique__1", }, + ["150% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueHelmetDex6", }, + ["150% increased flask effect duration"] = { "BeltIncreasedFlaskDurationUnique__4", }, + ["150% increased global evasion rating when on low life"] = { "EvasionRatingPercentOnLowLifeUniqueHelmetDex4", }, + ["150% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword2", "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace4", }, + ["16% chance to block attack damage"] = { "BlockPercentUniqueDescentStaff1", }, + ["16% increased attack speed"] = { "IncreasedAttackSpeedUniqueHelmetStrDex2", }, + ["16% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew6", "ElementalDamagePercentImplicitSceptreNew7", }, + ["16% increased mana reservation efficiency of skills"] = { "ManaReservationEfficiencyUniqueHelmetDex5_", "ReducedManaReservationsCostUniqueHelmetDex5", }, + ["16% increased physical weapon damage per 10 strength"] = { "IncreasedAreaOfEffectPerIntelligence", }, + ["18% increased area of effect of aura skills"] = { "AuraIncreasedIncreasedAreaOfEffectUniqueStaff5", }, + ["18% increased area of effect of hex skills"] = { "CurseAreaOfEffectUniqueStaff5", }, + ["18% increased attack speed"] = { "IncreasedAttackSpeedImplicitShield3", }, + ["18% increased cast speed"] = { "IncreasedCastSpeedUniqueStaff5", }, + ["18% increased damage"] = { "UndyingBreathDamageAuraUniqueStaff5", }, + ["18% increased effect of curses on you"] = { "UndyingBreathCurseAuraUniqueStaff5", }, + ["18% increased effect of non-curse auras from your skills"] = { "DamageTakenUniqueStaff5", }, + ["18% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew10", "ElementalDamagePercentImplicitSceptreNew9", }, + ["18% increased maximum mana"] = { "MaximumManaUniqueStaff5", }, + ["180% increased block recovery"] = { "BlockRecoveryImplicitShield3", }, + ["180% increased evasion rating"] = { "LocalIncreasedEvasionRatingPercentUniqueBootsDex7", }, + ["2 added passive skills are jewel sockets"] = { "JewelExpansionJewelNodesLarge2___", }, + ["2 enemy writhing worms escape the flask when used"] = { "SummonsWormsOnUse", }, + ["2% chance to avoid elemental damage from hits per frenzy charge"] = { "AvoidElementalDamagePerFrenzyChargeUnique__1", }, + ["2% chance to freeze"] = { "ChanceToFreezeUnique__2", }, + ["2% chance to ignite"] = { "IncreasedChanceToIgniteUnique__1", }, + ["2% increased area of effect per 25 rampage kills"] = { "AreaOfEffectPer25RampageStacksUnique__1_", }, + ["2% increased area of effect per endurance charge"] = { "AreaOfEffectPerEnduranceChargeUnique__1", }, + ["2% increased attack and cast speed per summoned raging spirit"] = { "AttackAndCastSpeedPerRagingSpiritUnique__1", }, + ["2% increased attack critical strike chance per 200 accuracy rating"] = { "IncreasedCriticalStrikeChancePerAccuracyRatingUnique__1", }, + ["2% increased attack speed per 8% quality"] = { "LocalAugmentedQualityE2", "LocalAugmentedQualityE3", }, + ["2% increased attack speed per frenzy charge"] = { "AttackSpeedPerFrenzyChargeUniqueGlovesDexInt5", }, + ["2% increased cast speed per power charge"] = { "IncreasedCastSpeedPerPowerChargeUnique__1", }, + ["2% increased damage per power charge with hits against enemies on full life"] = { "IncreasedDamageVsFullLifePerPowerChargeUniqueGlovesStrDex6", }, + ["2% increased damage per power charge with hits against enemies on low life"] = { "IncreasedDamageVsLowLifePerPowerChargeUniqueGlovesStrDex6", }, + ["2% increased evasion rating per 10 intelligence"] = { "EvasionRatingPerIntelligenceUnique__1", }, + ["2% increased experience gain"] = { "IncreasedExperienceUniqueRing14", }, + ["2% increased intelligence for each unique item equipped"] = { "IncreasedIntelligencePerUniqueUniqueRing14", }, + ["2% increased life recovery rate per 10 strength on allocated passives in radius"] = { "LifeRecoveryRatePerAllocatedStrengthUnique__1_", }, + ["2% increased mana recovery rate per 10 intelligence on allocated passives in radius"] = { "ManaRecoveryRatePerAllocatedIntelligenceUnique__1", }, + ["2% increased mana reservation efficiency of skills per 250 total attributes"] = { "ManaReservationEfficiencyPerAttributeUnique__1", "ManaReservationPerAttributeUnique__1", }, + ["2% increased melee physical damage per 10 dexterity"] = { "MeleePhysicalDamagePerDexterityUnique__1_", }, + ["2% increased minion attack and cast speed per skeleton you own"] = { "MinionAttackAndCastSpeedPerSkeleton__1", }, + ["2% increased minion attack speed per 50 dexterity"] = { "MinionAttackSpeedPerXDexUnique__1", }, + ["2% increased minion duration per raised zombie"] = { "MinionDurationPerZombie__1", }, + ["2% increased minion movement speed per 50 dexterity"] = { "MinionMovementSpeedPerXDexUnique__1", }, + ["2% increased movement speed per 10 dexterity on allocated passives in radius"] = { "MovementSpeedPerAllocatedDexterityJewelUnique__1", "MovementSpeedPerAllocatedDexterityUnique__1", }, + ["2% increased movement speed per frenzy charge"] = { "MovementVelocityPerFrenzyChargeUniqueBootsDex4", "MovementVelocityPerFrenzyChargeUniqueDescentOneHandSword1_", }, + ["2% increased physical damage over time per 10 dexterity"] = { "IncreasePhysicalDegenDamagePerDexterityUnique__1", }, + ["2% increased quantity of items found per chest opened recently"] = { "ItemQuantityPerChestOpenedRecentlyUnique__1", }, + ["2% increased stun duration per 15 strength"] = { "StunDurationPerStrengthUber1", }, + ["2% of attack damage leeched as life"] = { "LifeLeechAllAttackDamagePermyriadImplicitClaw2", "LifeLeechPermyriadUniqueBodyStrDex3", }, + ["2% of attack damage leeched as life against taunted enemies"] = { "AttackLeechAgainstTauntedEnemyUnique__1", }, + ["2% of chaos damage leeched as life during effect"] = { "ChaosDamageLifeLeechPermyriadWhileUsingFlaskUniqueFlask5New", }, + ["2% of fire damage leeched as life while ignited"] = { "FireDamageLeechedAsLifeWhileIgnitedUnique__1", }, + ["2% of physical attack damage leeched as life"] = { "LifeLeechLocalPermyriadUnique__1", "LifeLeechPermyriadImplicitClaw2", "LifeLeechPermyriadUniqueBelt1", "LifeLeechPermyriadUniqueOneHandAxe6", "LifeLeechUniqueBelt1", "LifeLeechUniqueRing2", "LifeLeechUniqueShieldDex5", }, + ["2% of physical attack damage leeched as mana"] = { "ManaLeechPermyriadLocalUnique__1", "ManaLeechPermyriadUniqueBelt1", "ManaLeechUniqueBelt1", "ManaLeechUniqueBodyStr6", "ManaLeechUniqueGlovesStrDex1", "ManaLeechUniqueRing17", "ManaLeechUniqueTwoHandMace4", }, + ["2% of physical attack damage leeched as mana during effect"] = { "FlaskBuffManaLeechWhileHealing", }, + ["2% of physical attack damage leeched as mana per blue socket"] = { "ManaLeechFromPhysicalDamagePerBlueSocketUniqueOneHandSword5", }, + ["2% reduced flask effect duration per level"] = { "FlaskDurationPerLevelUnique__1", }, + ["2% reduced life recovery rate per 10 strength on unallocated passives in radius"] = { "LifeRecoveryRatePerUnallocatedStrengthUnique__1_", }, + ["2% reduced mana recovery rate per 10 intelligence on unallocated passives in radius"] = { "ManaRecoveryRatePerUnallocatedIntelligenceUnique__1", }, + ["2% reduced movement speed per 10 dexterity on unallocated passives in radius"] = { "MovementSpeedPerUnallocatedDexterityUnique__1_", }, + ["2% reduced movement speed per chest opened recently"] = { "MovementSpeedPerChestOpenedRecentlyUnique__1", }, + ["20 life gained on kill per frenzy charge"] = { "LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6", }, + ["20% chance for poisons inflicted with this weapon to deal 300% more damage"] = { "LocalChanceForPoisonDamage300FinalInflictedWithThisWeaponUnique__1_", }, + ["20% chance to avoid being stunned"] = { "StunAvoidanceUniqueOneHandSword13", "StunAvoidanceUnique___1", }, + ["20% chance to avoid projectiles while phasing"] = { "ChanceToAvoidProjectilesWhilePhasingUnique__1", }, + ["20% chance to blind enemies when they hit you"] = { "BlindEnemiesWhenHitUber1__", }, + ["20% chance to block attack damage"] = { "BlockPercentUnique__2", }, + ["20% chance to cause bleeding on hit"] = { "LocalChanceToBleedImplicitMarakethRapier2", }, + ["20% chance to cause bleeding with melee weapons"] = { "TinctureChanceToBleedImplicit1", }, + ["20% chance to create shocked ground when hit"] = { "ShockedGroundWhenHitUniqueHelmetInt10", }, + ["20% chance to curse non-cursed enemies with a random hex on hit"] = { "RandomCurseOnHitChanceUniqueHelmetInt10", }, + ["20% chance to deal double damage while affected by glorious madness"] = { "DoubleDamageChanceGloriousMadnessUnique_1", }, + ["20% chance to freeze"] = { "ChanceToFreezeUnique__5", }, + ["20% chance to freeze enemies for 1 second when they hit you"] = { "FreezeEnemiesWhenHitChanceUnique__1", }, + ["20% chance to gain a frenzy charge on killing a frozen enemy"] = { "ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1", }, + ["20% chance to gain a power charge on critical strike"] = { "ChargeBonusPowerChargeOnCrit", }, + ["20% chance to gain a power charge on hit"] = { "PowerChargeOnHitUnique__1", }, + ["20% chance to gain an endurance charge when you block"] = { "ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4", }, + ["20% chance to ignite"] = { "ChanceToIgniteUniqueTwoHandSword6", }, + ["20% chance to impale on spell hit"] = { "ChanceToImpaleWithSpellsUnique__1", }, + ["20% chance to inflict bleeding on hit with attacks against taunted enemies"] = { "ChanceToBleedOnTauntedEnemiesUber1", }, + ["20% chance to maim on hit"] = { "DodgeImplicitMarakethSword2", }, + ["20% chance to poison on hit"] = { "LocalChanceToPoisonOnHitUnique__3", "LocalChanceToPoisonOnHitUnique__4", }, + ["20% chance to poison on hit with attacks"] = { "ChanceToPoisonWithAttacksUnique___1", }, + ["20% chance to poison with melee weapons"] = { "TinctureChanceToPoisonImplicit1", }, + ["20% chance to spread tar when hit"] = { "GroundTarOnHitTakenUnique__1", }, + ["20% chance to trigger level 16 molten burst on melee hit"] = { "MoltenBurstOnMeleeHitUnique__1", }, + ["20% chance to trigger level 20 shade form when you use a socketed skill"] = { "LocalDisplayGrantLevelXShadeFormUnique__1", }, + ["20% chance to trigger level 20 summon volatile anomaly on kill"] = { "SummonVoidSphereOnKillUnique__1_", }, + ["20% chance to trigger level 20 tentacle whip on kill"] = { "TentacleSmashOnKillUnique__1_", }, + ["20% chance to trigger level 25 summon spectral wolf on critical strike with this weapon"] = { "SummonWolfOnCritUnique__1", }, + ["20% chance to trigger socketed spell on kill, with a 0.5 second cooldown"] = { "TriggerSocketedSpellOnKillUnique__1", }, + ["20% chance when you kill a magic monster to gain its modifiers for 60 seconds"] = { "GainMagicMonsterModsOnKillUnique__1_", }, + ["20% faster start of energy shield recharge"] = { "ReducedEnergyShieldDelayUniqueCorruptedJewel15", }, + ["20% increased area of effect"] = { "AreaOfEffectImplicitMarakethTwoHandMace2", "AreaOfEffectUniqueDescentOneHandSword1", }, + ["20% increased area of effect for attacks"] = { "IncreasedAttackAreaOfEffectUnique__1_", "IncreasedAttackAreaOfEffectUnique__2_", }, + ["20% increased area of effect if you have blocked recently"] = { "AreaOfEffectIfBlockedRecentlyUber1", }, + ["20% increased area of effect of aura skills"] = { "IncreasedAuraRadiusUnique__1", }, + ["20% increased attack and movement speed with her blessing"] = { "UniqueConditionOnBuff__2", }, + ["20% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueBow5", "LocalIncreasedAttackSpeedUniqueClaw2", "LocalIncreasedAttackSpeedUniqueDescentOneHandMace1", "LocalIncreasedAttackSpeedUniqueRapier1", "LocalIncreasedAttackSpeedUniqueTwoHandSword1", "LocalIncreasedAttackSpeedUniqueTwoHandSword3", }, + ["20% increased attack speed if you have blocked recently"] = { "AttackSpeedIfBlockedRecentlyUber1", }, + ["20% increased cast speed when on low life"] = { "CastSpeedOnLowLifeUniqueDescentHelmet1", }, + ["20% increased character size"] = { "ActorSizeUniqueAmulet2", }, + ["20% increased critical strike chance per brand"] = { "CriticalStrikeChancePerBrandUnique__1___", }, + ["20% increased damage when on low life"] = { "DamageOnLowLifeUniqueHelmetStrInt5", }, + ["20% increased damage with hits for each level higher the enemy is than you"] = { "IncreasedDamagePerLevelDifferenceAgainstHigherLevelEnemiesUnique___1", }, + ["20% increased damage with movement skills"] = { "DamageWithMovementSkillsUniqueClaw9", }, + ["20% increased effect of non-curse auras from your skills"] = { "AuraEffectUniqueShieldInt2", "AuraEffectUnique__1", }, + ["20% increased effect of non-curse auras from your skills on your minions"] = { "AuraEffectOnMinionsUniqueShieldInt2", "AuraEffectOnMinionsUnique__1_", }, + ["20% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptre1", "ElementalDamagePercentImplicitSceptreNew4", "ElementalDamageUniqueHelmetInt9", "ElementalDamageUniqueSceptre1", }, + ["20% increased elemental damage if you've killed a cursed enemy recently"] = { "IncreasedElementalDamageIfKilledCursedEnemyRecentlyUnique__1", }, + ["20% increased evasion if you have hit an enemy recently"] = { "IncreasedEvasionRatingIfHitEnemyRecentlyUber1", }, + ["20% increased evasion rating per 500 maximum mana"] = { "DodgeAndSpellDodgePerMaximumManaUnique__1", }, + ["20% increased evasion while leeching"] = { "IncreasedEvasionRatingWhileLeechingUber1", }, + ["20% increased fire damage taken"] = { "IncreasedFireDamageTakenUniqueBodyStrDex5", }, + ["20% increased fishing range"] = { "FishingCastDistanceUnique__1__", }, + ["20% increased flask effect duration"] = { "BeltIncreasedFlaskDurationUniqueBelt3", }, + ["20% increased global accuracy rating"] = { "PercentIncreasedAccuracyJewelUnique__1", }, + ["20% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueBootsDexInt4", "IncreasedPhysicalDamagePercentUniqueHelmetStr1", "IncreasedPhysicalDamagePercentUniqueShieldStrDex1", }, + ["20% increased impale effect"] = { "ImpaleEffectUnique__1", }, + ["20% increased light radius"] = { "LightRadiusUniqueShieldDemigods", "LightRadiusUniqueStaff10_", "LightRadiusUnique__3", "LightRadiusUnique__4", "LightRadiusUnique__8", }, + ["20% increased lightning damage"] = { "LightningDamagePercentUniqueRing29", }, + ["20% increased mana regeneration rate"] = { "ManaRegenerationUniqueBelt6", }, + ["20% increased maximum energy shield"] = { "IncreasedEnergyShieldPercentUnique__1", "IncreasedEnergyShieldPercentUnique__6", }, + ["20% increased maximum mana"] = { "MaximumManaUniqueRing5", "MaximumManaUnique__10", }, + ["20% increased melee damage"] = { "MeleeDamageIncreaseUniqueHelmetStrDex3", }, + ["20% increased movement speed"] = { "MovementVelocityUniqueBootsDex8", "MovementVelocityUniqueBootsDexInt1", "MovementVelocityUniqueBootsInt2", "MovementVelocityUniqueBootsInt5", "MovementVelocityUniqueBootsStr1", "MovementVelocityUniqueBootsStrDex1", "MovementVelocityUniqueBootsStrDex3", "MovementVelocityUniqueHelmetStrDex2", "MovementVelocityUnique__13", "MovementVelocityUnique__25", "MovementVelocityUnique__27", "MovementVelocityUnique__30", "MovementVelocityUnique__47_", "MovementVeolcityUniqueBootsDemigods1", "MovementVeolcityUniqueBootsDex4", }, + ["20% increased movement speed on shocked ground"] = { "MovementVelocityOnShockedGroundUniqueBootsInt6_", }, + ["20% increased movement speed when on full life"] = { "MovementVelocityOnFullLifeUniqueBootsInt3", }, + ["20% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueGlovesDexInt1", }, + ["20% increased movement speed while bleeding"] = { "MovementVelocityWhileBleedingUnique__1", }, + ["20% increased movement speed while on full energy shield"] = { "MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8", }, + ["20% increased movement speed while you have cat's stealth"] = { "MovementSpeedWithCatsStealthUnique__1", }, + ["20% increased physical damage"] = { "LocalIncreasedPhysicalDamageUniqueSceptre9", }, + ["20% increased physical damage taken"] = { "IncreasedPhysicalDamageTakenUniqueBootsDex8", }, + ["20% increased projectile damage"] = { "IncreasedProjectileDamageUnique__5", }, + ["20% increased quantity of fish caught"] = { "FishingQuantityUnique__2", }, + ["20% increased spell damage"] = { "SpellDamageUniqueDescentWand1", }, + ["20% increased stun and block recovery"] = { "StunRecoveryUniqueBootsStrDex1", }, + ["20% increased stun threshold"] = { "IncreasedStunThresholdUnique__1_", }, + ["20% increased taunt duration"] = { "IncreasedTauntDurationUniqueShieldStr4", }, + ["20% increased total recovery per second from life leech"] = { "JewelImplicitLifeLeechRate", }, + ["20% increased total recovery per second from mana leech"] = { "JewelImplicitManaLeechRate", }, + ["20% less attack speed"] = { "RingAttackSpeedUnique__1", }, + ["20% less effect of your curses"] = { "DoedresSkinLessCurseEffectUnique__1", }, + ["20% of fire damage from hits taken as cold damage"] = { "FireDamageTakenAsColdUnique___1", }, + ["20% of lightning damage leeched as life during effect"] = { "LightningLifeLeechDuringFlaskEffect__1", }, + ["20% of lightning damage leeched as mana during effect"] = { "LightningManaLeechDuringFlaskEffect__1", }, + ["20% of maximum life converted to energy shield"] = { "MaximumLifeConvertedToEnergyShieldUnique__1", }, + ["20% of physical damage from hits taken as cold damage"] = { "PhysicalDamageTakenAsColdUnique__1", }, + ["20% of physical damage from hits taken as damage of a random element"] = { "PhysicalDamageTakenAsRandomElementUnique__1", }, + ["20% of physical damage from hits taken as fire damage"] = { "PhysicalDamageTakenAsFirePercentUniqueBodyInt2", }, + ["20% reduced attack speed"] = { "LocalReducedAttackSpeedUniqueDagger9", "LocalReducedAttackSpeedUniqueOneHandMace6", }, + ["20% reduced chill duration on you"] = { "ReducedChillDurationOnSelfUniqueRing30", }, + ["20% reduced damage taken from projectile hits"] = { "ReducedProjectileDamageTakenUniqueAmulet12", }, + ["20% reduced duration of elemental ailments on enemies"] = { "ElementalStatusAilmentDurationUniqueAmulet19", }, + ["20% reduced effect of curses on you"] = { "ReducedCurseEffectUnique__1", }, + ["20% reduced enemy stun threshold"] = { "StunThresholdReductionImplicitMace3_", }, + ["20% reduced flask charges gained"] = { "FlaskChargesUniqueJewel___8", }, + ["20% reduced frenzy charge duration"] = { "FrenzyChargeDurationUnique__1", }, + ["20% reduced ignite duration on enemies"] = { "IgniteDurationUnique__1", }, + ["20% reduced light radius"] = { "LightRadiusUniqueBootsStrDex3", }, + ["20% reduced mana cost of skills when on low life"] = { "ReducedManaCostOnLowLifeUniqueHelmetStrInt1", }, + ["20% reduced mana regeneration rate"] = { "ManaRegenerationUniqueHelmetStrInt5", }, + ["20% reduced maximum life"] = { "MaximumLifeUniqueAmulet6", }, + ["20% reduced movement speed"] = { "MovementVelocityUniqueBodyStr5", }, + ["20% reduced projectile speed"] = { "ProjectileSpeedUniqueQuiver2", "ProjectileSpeedUnique__3", "ProjectileSpeedUnique__4", }, + ["20% reduced rarity of items found"] = { "ItemFoundRarityDecreaseUniqueRapier1", "ItemFoundRarityIncreaseUniqueRapier2", }, + ["20% reduced reservation efficiency of skills"] = { "IncreasedManaReservationsCostUnique__2", "ReservationEfficiencyUnique__2", }, + ["20% reduced strength requirement"] = { "ReducedStrengthRequirementsUniqueTwoHandMace5", }, + ["200 cold damage taken per second per frenzy charge while moving"] = { "DamageTakenPerFrenzyChargeMovingUnique__1", }, + ["200 fire damage taken per second per endurance charge if you've been hit recently"] = { "DamageTakenPerEnduranceChargeWhenHitUnique__1_", }, + ["200 lightning damage taken per second per power charge if"] = { "DamageTakenPerPowerChargeOnCritUnique__1", }, + ["200% increased armour against projectiles"] = { "ArmourPercent VsProjectilesUniqueShieldStr2", }, + ["200% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__4", }, + ["200% increased damage with claws while on low life"] = { "IncreasedClawDamageOnLowLifeUnique__1__", }, + ["200% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace2", }, + ["200% increased spell damage if you've dealt a critical strike in the past 8 seconds"] = { "SpellDamageIfYouHaveCritRecentlyUnique__1", }, + ["200% of life leech applies to enemies as chaos damage"] = { "EnemiesLoseLifePlayerLeechesUnique__1", }, + ["200% of lightning damage leeched as mana"] = { "ManaLeechFromLightningDamageUniqueStaff8", }, + ["22% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew12___", "ElementalDamagePercentImplicitSceptreNew8", }, + ["24% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew13", "ElementalDamagePercentImplicitSceptreNew14", }, + ["24% reduced maximum life"] = { "MaximumLifeUnique__23", }, + ["25% chance that if you would gain power charges, you instead gain up to"] = { "ChanceToGainMaximumPowerChargesUnique__1_", }, + ["25% chance to avoid being chilled"] = { "ChanceToAvoidFreezeAndChillUniqueDexHelmet5", }, + ["25% chance to avoid being poisoned"] = { "ChanceToAvoidPoisonUnique__1", }, + ["25% chance to avoid fire damage from hits"] = { "ChanceToAvoidFireDamageUnique__1", }, + ["25% chance to blind enemies on hit with melee weapons"] = { "TinctureChanceToBlindImplicit1", }, + ["25% chance to cause bleeding on hit"] = { "CausesBleedingUniqueOneHandAxe5", "CausesBleedingUniqueOneHandAxe5Updated_", "CausesBleedingUniqueTwoHandAxe7", "CausesBleedingUniqueTwoHandAxe7Updated", "CausesBleedingUnique__1", "CausesBleedingUnique__1Updated_", "CausesBleedingUnique__2", "CausesBleedingUnique__2Updated", "LocalChanceToBleedUnique__1", }, + ["25% chance to create a smoke cloud when hit"] = { "SmokeCloudWhenHitUniqueQuiver9", }, + ["25% chance to create profane ground on critical"] = { "ProfaneGroundCriticalStrikeINTHighestUnique__1", }, + ["25% chance to curse non-cursed enemies with enfeeble on hit"] = { "EnfeebleOnHitUniqueShieldStr3", }, + ["25% chance to double stun duration"] = { "ChanceForDoubleStunDurationImplicitMace_1", }, + ["25% chance to freeze with melee weapons"] = { "TinctureChanceToFreezeImplicit1", }, + ["25% chance to gain a frenzy charge on kill"] = { "FrenzyChargeOnKillChanceUnique__2", }, + ["25% chance to gain a power charge on critical strike"] = { "PowerChargeOnCriticalStrikeChanceUnique__1", }, + ["25% chance to gain a power charge when you throw a trap"] = { "PowerChargeOnTrapThrowChanceUniqueShieldDexInt1", }, + ["25% chance to gain a siphoning charge when you use a skill"] = { "SiphoningChargeOnSkillUseUnique__1", }, + ["25% chance to gain an endurance charge when you stun an enemy"] = { "GainEnduranceChargeOnStunChanceUber1", }, + ["25% chance to ignite"] = { "ChanceToIgniteUnique__5", }, + ["25% chance to ignite when in main hand"] = { "MainHandChanceToIgniteUniqueOneHandAxe2", }, + ["25% chance to ignite with melee weapons"] = { "TinctureChanceToIgniteImplicit1", }, + ["25% chance to inflict cold exposure on hit"] = { "ColdExposureOnHitUnique__1", }, + ["25% chance to inflict fire exposure on hit"] = { "FireExposureOnHitUnique__1", }, + ["25% chance to maim on hit"] = { "LocalMaimOnHit2HImplicit_1", }, + ["25% chance to poison on hit"] = { "ChanceToPoisonUnique__1_______", }, + ["25% chance to poison on hit during effect"] = { "FlaskChanceToPoisonUnique__1", }, + ["25% chance to shock"] = { "ChanceToShockUniqueRing29", }, + ["25% chance to shock with melee weapons"] = { "TinctureChanceToShockImplicit1", }, + ["25% chance to trigger level 10 summon raging spirit on kill"] = { "SummonRagingSpiritOnKillUnique__1", "VillageSummonRagingSpiritOnKill", }, + ["25% chance to trigger level 20 animate weapon on kill"] = { "TriggeredAnimateWeaponUnique__1", }, + ["25% increased area of effect while fortified"] = { "AreaOfEffectWhileFortifiedUber1", }, + ["25% increased attack speed when on low life"] = { "IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4", "IncreasedAttackSpeedWhenOnLowLifeUnique__1", }, + ["25% increased burning damage"] = { "BurnDamageUniqueDescentOneHandMace1", }, + ["25% increased chill duration on enemies"] = { "IncreasedChillDurationUniqueBodyDex1", }, + ["25% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueClaw2", "LocalCriticalStrikeChanceUniqueOneHandMace1", }, + ["25% increased critical strike chance per grand spectrum"] = { "CriticalStrikeChancePerStackableJewelUnique__1", }, + ["25% increased damage over time"] = { "DegenerationDamageUnique__1", }, + ["25% increased duration"] = { "FlaskEffectDurationUnique__4", }, + ["25% increased effect of buffs granted by socketed golem skills"] = { "LocalGolemBuffEffectUnique__1", }, + ["25% increased fire damage"] = { "FireDamagePercentUnique___7", }, + ["25% increased flask life recovery rate"] = { "BeltFlaskLifeRecoveryRateUniqueBelt4", }, + ["25% increased global critical strike chance"] = { "CriticalStrikeChanceUniqueHelmetDex4", }, + ["25% increased global physical damage with weapons per red socket"] = { "PhysicalDamgePerRedSocketUniqueOneHandSword5", }, + ["25% increased light radius"] = { "LightRadiusUniqueBelt6", "LightRadiusUniqueBodyInt8", "LightRadiusUniqueBodyStr4", "LightRadiusUnique__9", }, + ["25% increased light radius during effect"] = { "FlaskLightRadiusUniqueFlask1", }, + ["25% increased maximum mana"] = { "MaximumManaUniqueTwoHandMace5", }, + ["25% increased movement skill mana cost"] = { "IncreasedCostOfMovementSkillsUnique_1", }, + ["25% increased movement speed"] = { "MovementVelocityUniqueBootsDexInt4", "MovementVelocityUniqueBootsStr3", "MovementVelocityUniqueBootsStrDex5", "MovementVelocityUniqueBootsStrInt2_", "MovementVelocityUniqueBootsStrInt3", "MovementVelocityUniqueBootsW1", "MovementVelocityUnique__10", "MovementVelocityUnique__11", "MovementVelocityUnique__20_", "MovementVelocityUnique__26", "MovementVelocityUnique__29", "MovementVelocityUnique__31", "MovementVelocityUnique__34", "MovementVelocityUnique__40", "MovementVelocityUnique__43", }, + ["25% increased raised zombie size"] = { "ZombieSizeUniqueSceptre3_", }, + ["25% increased shock duration on enemies"] = { "ShockDurationUnique__3", }, + ["25% increased spell damage per power charge"] = { "IncreasedSpellDamagePerPowerChargeUniqueWand3", }, + ["25% increased strength requirement"] = { "IncreasedStrengthRequirementsUniqueTwoHandSword4", }, + ["25% increased stun and block recovery"] = { "StunRecoveryUniqueClaw8", }, + ["25% increased warcry buff effect"] = { "WarcryEffectUnique__1", "WarcryEffectUnique__2", }, + ["25% of elemental damage from hits taken as chaos damage"] = { "ElementalDamageTakenAsChaosUniqueBodyStrInt5", }, + ["25% of maximum life taken as chaos damage per second"] = { "LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6", }, + ["25% of physical damage converted to chaos damage"] = { "PhysicalDamageConvertToChaosUniqueBow5", "PhysicalDamageConvertToChaosUnique__1", "PhysicalDamageConvertedToChaosUnique__1", }, + ["25% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUniqueOneHandAxe8", "ConvertPhysicalToColdUnique__1", }, + ["25% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUniqueShieldStr3", }, + ["25% of physical damage converted to lightning damage"] = { "ConvertPhysicalToLightningUniqueOneHandAxe8", }, + ["25% of physical damage from hits taken as chaos damage"] = { "PhysicalDamagePercentTakesAsChaosDamageUniqueBow5", }, + ["25% reduced attack damage with main hand"] = { "MainHandOffHandDamage1_", "MainHandOffHandDamage2", "MainHandOffHandDamage3_", }, + ["25% reduced attack speed"] = { "LocalIncreasedAttackSpeedUniqueTwoHandMace3", }, + ["25% reduced bleeding duration"] = { "ReducedBleedDurationUnique__1_", }, + ["25% reduced chaos damage taken over time"] = { "ChaosDamageOverTimeUnique__1", }, + ["25% reduced damage"] = { "AllDamageUniqueHelmetDexInt2", }, + ["25% reduced enemy stun threshold during any flask effect"] = { "ReducedStunThresholdWhileUsingFlaskUniqueBelt9d", }, + ["25% reduced enemy stun threshold with this weapon"] = { "StunThresholdReductionUniqueClaw2_", "StunThresholdReductionUniqueTwoHandSword5", }, + ["25% reduced explicit critical modifier magnitudes"] = { "WeaponEnchantmentHeistFireEffectCriticalEffectPenalty1", "WeaponEnchantmentHeistLightningEffectCriticalEffectPenalty1_", "WeaponEnchantmentHeistManaEffectCriticalEffectPenalty1", "WeaponEnchantmentHeistPhysicalEffectCriticalEffectPenalty1", }, + ["25% reduced explicit damage modifier magnitudes"] = { "WeaponEnchantmentHeistSpeedEffectDamageEffectPenalty1", }, + ["25% reduced golem size"] = { "GolemSizeUnique__1", }, + ["25% reduced ignite duration on enemies"] = { "BurnDurationUniqueWand10", }, + ["25% reduced light radius"] = { "LightRadiusUniqueBodyStrInt4", "LightRadiusUniqueBootsStrDex2", }, + ["25% reduced maximum energy shield"] = { "ReducedEnergyShieldPercentUniqueRing16", }, + ["25% reduced maximum life"] = { "MaximumLifeUniqueOneHandSword2", "MaximumLifeUniqueRing16", }, + ["25% reduced movement speed"] = { "MovementVeolcityUniqueBodyDex6", }, + ["25% reduced projectile speed"] = { "ProjectileSpeedUniqueQuiver8", }, + ["250 chaos damage taken per second"] = { "ChaosDegenerationAuraNonPlayersUniqueBodyStr3", }, + ["26% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew16", "ElementalDamagePercentImplicitSceptreNew17", }, + ["3% additional physical damage reduction"] = { "UulNetolBreachRingImplicit", }, + ["3% chance for slain monsters to drop an additional scroll of wisdom"] = { "IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14", }, + ["3% increased area of effect per power charge"] = { "AreaOfEffectPerPowerChargeUber1", }, + ["3% increased cast speed for each corpse consumed recently"] = { "CastSpeedPerCorpseConsumedRecentlyUnique__1", }, + ["3% increased character size"] = { "ActorSizeUniqueRingDemigods1", "ActorSizeUnique__1", }, + ["3% increased damage per crab barrier"] = { "DamagePerCrabBarrierUnique__1", }, + ["3% increased defences from equipped shield per 10 devotion"] = { "ShieldDefencesPerDevotion", }, + ["3% increased effect of non-curse auras from your skills"] = { "IncreasedAuraEffectUniqueJewel45", }, + ["3% increased effect of non-damaging ailments on enemies per 10 devotion"] = { "AilmentEffectPerDevotion", }, + ["3% increased energy shield per power charge"] = { "ChargeBonusEnergyShieldPerPowerCharge", }, + ["3% increased experience gain"] = { "IncreasedExperienceUniqueSceptre1", }, + ["3% increased global critical strike chance per level"] = { "CriticalStrikeChancePerLevelUniqueTwoHandAxe8", }, + ["3% increased life recovery rate per 10 strength on allocated passives in radius"] = { "LifeRecoveryRatePerAllocatedStrengthUnique__2", }, + ["3% increased mana recovery rate per 10 intelligence on allocated passives in radius"] = { "ManaRecoveryRatePerAllocatedIntelligenceUnique__2", }, + ["3% increased maximum life per abyss jewel affecting you"] = { "IncreasedLifePerAbyssalJewelUnique__2", }, + ["3% increased maximum mana per abyss jewel affecting you"] = { "IncreasedManaPerAbyssalJewelUnique__2", }, + ["3% increased movement speed"] = { "MovementVelocityImplicitArmour1", "MovementVelocityImplicitShield1", "MovementVelocityUniqueOneHandSword9", }, + ["3% increased movement speed per 10 dexterity on allocated passives in radius"] = { "MovementSpeedPerAllocatedDexterityUnique__2", }, + ["3% increased poison duration per power charge"] = { "PoisonDurationPerPowerChargeUnique__1", }, + ["3% increased totem life per 10 strength allocated in radius"] = { "TotemLifePerStrengthUniqueJewel15", }, + ["3% of attack damage leeched as life against bleeding enemies"] = { "LifeLeechPhysicalAgainstBleedingEnemiesUniqueOneHandMace8", }, + ["3% of physical attack damage leeched as life"] = { "LifeLeechPermyriadUniqueClaw6", "LifeLeechUniqueGlovesStrDex1", "LifeLeechUniqueOneHandAxe6", "LifeLeechUniqueShieldDex2", }, + ["3% of physical attack damage leeched as mana"] = { "ManaLeechUniqueTwoHandSword2", }, + ["3% reduced mana cost of skills"] = { "ManaCostReductionUniqueJewel44", }, + ["3% reduced movement speed"] = { "ReducedMovementVelocityUnique__3", }, + ["30% chance to avoid being chilled during effect"] = { "AvoidChillUniqueFlask8", }, + ["30% chance to avoid being frozen during effect"] = { "AvoidFreezeUniqueFlask8", }, + ["30% chance to avoid being stunned"] = { "AvoidStunUnique__1", }, + ["30% chance to avoid elemental ailments"] = { "AvoidElementalAilmentsUnique__1_", }, + ["30% chance to avoid elemental ailments while phasing"] = { "ChanceToDodgeSpellsWhilePhasing_Unique_1", }, + ["30% chance to blind enemies on critical strike"] = { "ChanceToBlindOnCriticalStrikesUnique__1", }, + ["30% chance to block spell damage"] = { "SpellBlockUniqueDescentShieldStr1", }, + ["30% chance to cause bleeding enemies to flee on hit"] = { "BleedingEnemiesFleeOnHitUnique__1", }, + ["30% chance to cause bleeding on hit"] = { "LocalChanceToBleedUniqueDagger12", "LocalChanceToBleedUniqueOneHandMace8", }, + ["30% chance to gain a frenzy charge on kill"] = { "FrenzyChargeOnKillChanceProphecy", }, + ["30% chance to gain a power charge on kill"] = { "PowerChargeOnKillChanceProphecy_", }, + ["30% chance to gain a power charge when you stun"] = { "PowerChargeOnStunUniqueSceptre10", }, + ["30% chance to gain a power charge when you stun with melee damage"] = { "PowerChargeOnMeleeStunUniqueSceptre10", }, + ["30% chance to gain an endurance charge on kill"] = { "EnduranceChargeOnKillChanceProphecy", }, + ["30% chance to gain phasing for 4 seconds when your trap is triggered by an enemy"] = { "PhasingOnTrapTriggeredUnique__1", }, + ["30% chance to gain unholy might on block for 3 seconds"] = { "UnholyMightOnBlockChanceUniqueShieldStrInt8", }, + ["30% chance to ignite"] = { "ChanceToIgniteUniqueDescentOneHandMace1", "ChanceToIgniteUniqueOneHandSword4", }, + ["30% chance to shock"] = { "ChanceToShockUniqueGlovesStr4", }, + ["30% increased area damage"] = { "AreaDamageImplicitMace1", "AreaDamageUnique__1", }, + ["30% increased area of effect"] = { "AreaOfEffectUniqueDagger1", "AreaOfEffectUnique__7_", "AreaOfEffectUnique__9", }, + ["30% increased area of effect if you have at least 500 strength"] = { "AreaOfEffectWith500StrengthUber1", }, + ["30% increased attack damage against bleeding enemies"] = { "AttackDamageAgainstBleedingUniqueOneHandMace8", }, + ["30% increased attack speed when on full life"] = { "AttackSpeedOnFullLifeUniqueGlovesStr1", }, + ["30% increased attack speed when on low life"] = { "IncreasedAttackSpeedWhenOnLowLifeUniqueDescentHelmet1", }, + ["30% increased attack, cast and movement speed while you do not have iron reflexes"] = { "AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1", }, + ["30% increased chaos damage"] = { "IncreasedChaosDamageImplicitUnique__1", }, + ["30% increased cold damage"] = { "ColdDamagePercentUnique__8", }, + ["30% increased critical strike chance"] = { "LocalCriticalStrikeChanceUniqueDagger11", }, + ["30% increased damage over time"] = { "DegenerationDamageUniqueDagger8", }, + ["30% increased damage while ignited"] = { "DamageWhileIgnitedUniqueRing18", }, + ["30% increased effect of buffs granted by your golems"] = { "GolemBuffEffectUnique__1", }, + ["30% increased effect of buffs on you"] = { "IncreasedBuffEffectivenessBodyInt12", }, + ["30% increased effect of lightning ailments"] = { "ShockEffectUnique__3", }, + ["30% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptre2", "ElementalDamagePercentImplicitSceptreNew11", "ElementalDamagePercentImplicitSceptreNew15", "ElementalDamagePercentImplicitSceptreNew19", "ElementalDamageUnique__1", }, + ["30% increased elemental damage during any flask effect"] = { "ElementalDamageDuringFlaskEffectUnique__1", }, + ["30% increased elemental damage with attack skills"] = { "WeaponElementalDamageImplicitSword1", }, + ["30% increased elemental damage with attack skills during any flask effect"] = { "IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10", }, + ["30% increased endurance charge duration"] = { "EnduranceChargeDurationUniqueBodyStrInt4", }, + ["30% increased evasion rating while phasing"] = { "ChanceToDodgeAttacksWhilePhasingUnique___1", }, + ["30% increased fire damage"] = { "FireDamagePercentUniqueSceptre9", }, + ["30% increased freeze duration on enemies"] = { "FreezeDurationUnique__1", }, + ["30% increased global accuracy rating"] = { "AccuracyPercentImplicitSword2", }, + ["30% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger1", "CriticalStrikeChanceImplicitDaggerNew1", "CriticalStrikeChanceUniqueRapier1", "CriticalStrikeChanceUnique__1", }, + ["30% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueDescentClaw1", "IncreasedPhysicalDamagePercentUniqueQuiver2", "IncreasedPhysicalDamagePercentUniqueSwordImplicit1", }, + ["30% increased life recovery from flasks"] = { "BeltFlaskLifeRecoveryUniqueDescentBelt1", }, + ["30% increased mana recovery from flasks"] = { "BeltFlaskManaRecoveryUniqueDescentBelt1", }, + ["30% increased mana regeneration rate"] = { "ManaRegenerationAuraUnique__1", "ManaRegenerationUniqueIntHelmet2", }, + ["30% increased mana regeneration rate per raised spectre"] = { "ManaRegenerationPerSpectreUnique__1", }, + ["30% increased melee damage against bleeding enemies"] = { "MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6", }, + ["30% increased movement speed"] = { "MovementSpeedUnique_42", "MovementVelocityUniqueBootsA1", "MovementVelocityUniqueBootsDex1", "MovementVelocityUniqueBootsDex7", "MovementVelocityUniqueBootsInt6", "MovementVelocityUnique__1", "MovementVelocityUnique__12", "MovementVelocityUnique__14", "MovementVelocityUnique__15", "MovementVelocityUnique__22", "MovementVelocityUnique__24", "MovementVelocityUnique__35", "MovementVelocityUnique__45", "MovementVelocityUnique__48", "MovementVelocityUnique__49", "MovementVelocityUnique__50", "MovementVelocityUnique__54", }, + ["30% increased movement speed for 9 seconds on throwing a trap"] = { "MovementSpeedOnTrapThrowUniqueBootsDex6", }, + ["30% increased movement speed when on full life"] = { "MovementVelocityOnFullLifeUnique__1", }, + ["30% increased movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueBootsDex3", "MovementVelocityOnLowLifeUniqueRapier1", }, + ["30% increased movement speed while cursed"] = { "IncreasedMovementVelictyWhileCursedUniqueOneHandSword4", }, + ["30% increased projectile damage"] = { "IncreasedProjectileDamageUnique__6", }, + ["30% increased projectile speed"] = { "ProjectileSpeedUniqueAmulet5", "ProjectileSpeedUnique__2", "ProjectileSpeedUnique__5__", "ProjectileSpeedUnique___1", }, + ["30% increased rarity of items dropped by frozen enemies"] = { "IncreasedRarityWhenSlayingFrozenUnique__1", }, + ["30% increased rarity of items dropped by slain shocked enemies"] = { "ItemRarityWhenShockedUniqueBow9", }, + ["30% increased rarity of items found"] = { "ItemFoundRarityIncreaseUniqueAmulet6", "ItemFoundRarityIncreaseUnique__2", "LocalDisplayYouAndNearbyAlliesHaveIncreasedItemRarityUnique__1", "NearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9", "NearbyAlliesHaveIncreasedItemRarityUnique__1", }, + ["30% increased skill effect duration"] = { "SkillEffectDurationUnique__3", }, + ["30% increased stun and block recovery"] = { "IncreasedStunRecoveryReducedStunThresholdImplicitR1", }, + ["30% increased stun duration on enemies"] = { "StunDurationImplicitMace1", }, + ["30% increased total recovery per second from life, mana, or energy shield leech"] = { "IncreasedLifeLeechRateUniqueAmulet20", "LifeManaESLeechRateUnique__1", }, + ["30% less animate weapon duration"] = { "AnimateWeaponDurationUniqueTwoHandMace8", }, + ["30% less damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueBow4", }, + ["30% more damage with arrow hits at close range while you have iron reflexes"] = { "ArborixMoreDamageAtCloseRangeUnique__1", }, + ["30% of damage is taken from mana before life"] = { "DamageRemovedFromManaBeforeLifeTestMod", }, + ["30% of fire damage converted to chaos damage"] = { "ConvertFireToChaosUniqueDagger10", "ConvertFireToChaosUniqueDagger10Updated", }, + ["30% of fire damage from hits taken as cold damage"] = { "FireDamageTakenAsColdUnique___2_", }, + ["30% of lightning damage is taken from mana before life"] = { "PercentLightningDamageTakenFromManaBeforeLifeUnique__1", }, + ["30% of physical damage converted to chaos damage"] = { "PhysicalDamageConvertToChaosBodyStrInt4", }, + ["30% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUnique__2_", }, + ["30% of physical damage converted to lightning damage"] = { "ConvertPhysicaltoLightningUnique__2", }, + ["30% reduced attack speed"] = { "ReducedAttackSpeedUnique__1", }, + ["30% reduced attack speed while phasing"] = { "ReducedAttackSpeedWhilePhasingUnique__1", }, + ["30% reduced chance to block attack and spell damage"] = { "ReducedChanceToBlockUnique__1", }, + ["30% reduced cooldown recovery rate for throwing traps"] = { "TrapSkillEffectDurationTrapCooldownPenaltyImplicitR1", "TrapSkillEffectDurationTrapCooldownPenaltyImplicitR2", "TrapSkillEffectDurationTrapCooldownPenaltyImplicitR3", }, + ["30% reduced duration of ailments on enemies"] = { "IncreasedAilmentDurationUnique__2", }, + ["30% reduced endurance charge duration"] = { "EnduranceChargeDurationUniqueAmulet14", }, + ["30% reduced enemy stun threshold while you have at least 500 strength"] = { "ReducedStunThresholdWith500StrengthUber1", }, + ["30% reduced flask charges gained"] = { "BeltReducedFlaskChargesGainedUnique__1", }, + ["30% reduced flask charges gained during any flask effect"] = { "FlaskChargeRecoveryDuringFlaskEffectUnique__2", }, + ["30% reduced flask effect duration"] = { "BeltReducedFlaskDurationUniqueDescentBelt1", }, + ["30% reduced maximum mana"] = { "GainManaOnManaPaidManaCost1", "GainManaOnManaPaidManaCost2", "GainManaOnManaPaidManaCost3____", }, + ["30% reduced power charge duration"] = { "PowerChargeDurationUniqueAmulet14", }, + ["30% reduced spell damage taken from blinded enemies"] = { "SpellDamageTakenFromBlindEnemies__1", }, + ["30% reduced strength requirement"] = { "ReducedStrengthRequirementUniqueBodyStr5", }, + ["300% increased armour while chilled or frozen"] = { "IncreasedArmourWhileChilledOrFrozenUnique__1", }, + ["300% of attack damage leeched as life against chilled enemies"] = { "LifeLeechFromAttacksAgainstChilledEnemiesUniqueBelt14", }, + ["31% increased cost of skills"] = { "IncreasedSkillCostUnique_1", }, + ["31% increased light radius"] = { "LightRadiusUniqueRing9_", }, + ["32% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptreNew20", "ElementalDamagePercentImplicitSceptreNew21__", }, + ["33% chance to blind nearby enemies when gaining her blessing"] = { "UniqueEffectOnBuff__3", }, + ["33% chance to gain a frenzy charge on kill"] = { "FrenzyChargeOnKillChanceUniqueDescentOneHandSword1", }, + ["33% increased ignite duration on enemies"] = { "BurnDurationUnique__1", }, + ["33% of chaos damage taken does not bypass energy shield"] = { "ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1", }, + ["33% of non-chaos damage taken bypasses energy shield"] = { "NonChaosDamageBypassEnergyShieldPercentUnique__1", }, + ["33% reduced recovery rate"] = { "FlaskIncreasedDuration1", }, + ["333% increased armour and energy shield"] = { "LocalIncreasedArmourAndEnergyShieldUnique__19", }, + ["35% chance to avoid being stunned for each herald buff affecting you"] = { "StunAvoidancePerHeraldUnique__1", }, + ["35% increased attack speed with swords"] = { "SwordPhysicalAttackSpeedUnique__1", }, + ["35% increased lightning damage"] = { "LightningDamagePercentUnique__3", }, + ["35% less damage taken if you have not been hit recently"] = { "ReducedDamageIfNotHitRecentlyUnique__1", }, + ["35% less mine damage"] = { "LessMineDamageUniqueStaff11", }, + ["350 physical damage taken on minion death"] = { "PhysicalDamageToSelfOnMinionDeathUniqueRing33", }, + ["36% chance to block spell damage while on low life"] = { "SpellBlockOnLowLifeUniqueShieldStrDex1", }, + ["4 to 8 added fire damage with bow attacks"] = { "AddedFireDamageImplicitQuiver10", }, + ["4% additional physical damage reduction per keystone"] = { "PhysicalDamageReductionPerKeystoneUnique__1", }, + ["4% additional physical damage reduction while affected by herald of purity"] = { "HeraldBonusPurityPhysicalDamageReduction", }, + ["4% chance to block attack damage"] = { "BlockPercentMarakethDaggerImplicit1", }, + ["4% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteUniqueDescentWand1", }, + ["4% increased area damage per 10 devotion"] = { "AreaDamagePerDevotion", }, + ["4% increased attack and cast speed"] = { "AttackAndCastSpeedJewelUniqueJewel43", }, + ["4% increased attack speed"] = { "LocalIncreasedAttackSpeedImplicitMarakethOneHandMace1", }, + ["4% increased attributes per allocated keystone"] = { "AllAttributesPerAssignedKeystoneUniqueJewel32", }, + ["4% increased brand damage per 10 devotion"] = { "BrandDamagePerDevotion", }, + ["4% increased effect of your curses"] = { "CurseEffectivenessUniqueJewel45", }, + ["4% increased elemental damage per 10 devotion"] = { "ElementalDamagePerDevotion_", }, + ["4% increased mana reservation efficiency of skills"] = { "ManaReservationEfficiencyUniqueJewel44_", "ReducedManaReservationsCostUniqueJewel44", }, + ["4% increased maximum life"] = { "MaximumLifeUnique__2", }, + ["4% increased melee damage per endurance charge"] = { "IncreasedDamagePerEnduranceChargeUnique_1", }, + ["4% increased movement speed"] = { "MovementVelocityUniqueJewel43", }, + ["4% increased movement speed per frenzy charge"] = { "MovementVelocityPerFrenzyChargeUniqueBodyDexInt3", "MovementVelocityPerFrenzyChargeUnique__1", }, + ["4% increased skill effect duration"] = { "SkillEffectDurationUniqueJewel44", }, + ["4% increased totem damage per 10 devotion"] = { "TotemDamagePerDevotion", }, + ["4% reduced attack and cast speed per frenzy charge"] = { "AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4", }, + ["4% reduced duration of curses on you per 10 devotion"] = { "CurseSelfDurationPerDevotion", }, + ["4% reduced elemental ailment duration on you per 10 devotion"] = { "ElementalAilmentSelfDurationPerDevotion_", }, + ["4% reduced mana cost per endurance charge"] = { "ReduceManaCostPerEnduranceChargeUnique__1", }, + ["40% chance to cause bleeding on hit"] = { "LocalChanceToBleedUnique__2", }, + ["40% increased armour and evasion rating if you've killed a taunted enemy recently"] = { "IncreasedArmourAndEvasionIfKilledTauntedEnemyRecentlyUnique__1", }, + ["40% increased armour while not ignited, frozen or shocked"] = { "ArmourWhileNotIgnitedFrozenShockedBelt8", }, + ["40% increased attack damage against bleeding enemies"] = { "AttackDamageAgainstBleedingUniqueDagger11", }, + ["40% increased attack speed if you've taken a savage hit recently"] = { "AttackSpeedAfterSavageHitTakenUnique__1", }, + ["40% increased brand damage"] = { "BrandDamageUnique__1", }, + ["40% increased damage with hits against frozen enemies"] = { "IncreasedDamageAgainstFrozenEnemiesUnique__1", }, + ["40% increased damage with hits against shocked enemies"] = { "IncreasedDamageToShockedTargetsUniqueRing29", }, + ["40% increased duration of ailments on enemies"] = { "IncreasedAilmentDurationUnique__1", }, + ["40% increased elemental damage"] = { "ElementalDamagePercentImplicitSceptre3", "ElementalDamagePercentImplicitSceptreNew18", "ElementalDamagePercentImplicitSceptreNew22", }, + ["40% increased global accuracy rating"] = { "AccuracyPercentImplicitSword1", }, + ["40% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger2", "CriticalStrikeChanceImplicitDaggerNew2", }, + ["40% increased lightning damage taken"] = { "IncreasedLightningDamageTakenUnique__1", }, + ["40% increased main hand critical strike chance per"] = { "MainHandCriticalStrikeChancePerMeleeAbyssJewelUnique__1", }, + ["40% increased mana cost of skills"] = { "ManaCostIncreasedUniqueWand7", }, + ["40% increased maximum total life recovery per second from leech"] = { "MaximumLifeLeechRateUnique__1", }, + ["40% increased physical attack damage while dual wielding"] = { "DualWieldingPhysicalDamageUnique__1", }, + ["40% increased rarity of fish caught"] = { "FishingRarityUnique__1", }, + ["40% increased rarity of items dropped by frozen enemies"] = { "IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4", }, + ["40% increased spell damage"] = { "SpellDamageUnique__3", }, + ["40% increased strength requirement"] = { "IncreasedStrengthRequirementUniqueStaff8", }, + ["40% increased stun and block recovery"] = { "IncreasedStunRecoveryReducedStunThresholdImplicitR2", "StunRecoveryUniqueAmulet18", }, + ["40% increased totem damage"] = { "TotemDamageUnique__1_", }, + ["40% less burning damage"] = { "EmberwakeLessBurningDamageUnique__1", }, + ["40% of cold damage converted to fire damage"] = { "ConvertColdToFireUniqueRing15", }, + ["40% of cold damage taken as lightning damage"] = { "ColdHitAndDoTDamageTakenAsLightningUnique__1", }, + ["40% of elemental damage from hits taken as physical damage"] = { "ElementalDamageTakenAsPhysicalUnique__1", }, + ["40% of fire damage taken as lightning damage"] = { "FireHitAndDoTDamageTakenAsLightningUnique__1", }, + ["40% of lightning damage converted to cold damage"] = { "ConvertLightningToColdUniqueRing34", }, + ["40% of physical damage taken as fire damage"] = { "PhysicalHitAndDoTDamageTakenAsFireUnique__2", }, + ["40% reduced area of effect of hex skills"] = { "CurseAreaOfEffectUniqueQuiver5", }, + ["40% reduced attribute requirements"] = { "ArmourEnchantmentHeistAttributeRequirements1", "WeaponEnchantmentHeistAttributeRequirement1", }, + ["40% reduced critical strike chance per power charge"] = { "CriticalStrikeChancePerPowerChargeUnique__1", }, + ["40% reduced enemy stun threshold with melee weapons"] = { "TinctureStunThresholdImplicit1", }, + ["40% reduced energy shield recharge rate"] = { "ReducedEnergyShieldRegenerationRateUniqueQuiver7", }, + ["40% reduced frenzy charge duration"] = { "FrenzyChargeDurationUniqueBootsStrDex2", }, + ["40% reduced light radius"] = { "LightRadiusUniqueHelmetStrDex6", "LightRadiusUniqueHelmetStrInt4", }, + ["40% reduced movement speed when on low life"] = { "MovementVelocityOnLowLifeUniqueBootsStrDex1", }, + ["40% reduced projectile damage"] = { "ReducedProjectileDamageUniqueAmulet12", }, + ["400% increased attribute requirements"] = { "IncreasedLocalAttributeRequirementsUniqueGlovesDexInt1", }, + ["400% increased stun duration on enemies"] = { "StunDurationUniqueTwoHandSword5", }, + ["45% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueOneHandMace1", }, + ["45% increased global accuracy rating"] = { "AccuracyPercentImplicit2HSword2_", }, + ["45% increased stun duration on enemies"] = { "StunDurationImplicitMace2", }, + ["450 chaos damage taken per second"] = { "ChaosDegenerationAuraPlayersUniqueBodyStr3", }, + ["5 maximum void charges"] = { "MaximumVoidArrowsUnique__1", }, + ["5 to 10 added fire damage with bow attacks"] = { "AddedFireDamageUniqueQuiver1a", }, + ["5% additional physical damage reduction while moving"] = { "AdditionalPhysicalDamageReductionWhileMovingUnique__1", }, + ["5% chance to blind enemies on hit with attacks"] = { "AttacksBlindOnHitChanceUnique__1", }, + ["5% chance to deal double damage"] = { "DoubleDamageChanceImplicitMace1", }, + ["5% chance to deal triple damage while you have at least 400 strength"] = { "TripleDamageWith400StrengthUnique__1", }, + ["5% chance to freeze"] = { "ChanceToFreezeUnique__1", }, + ["5% chance to freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteUniqueHelmetDexInt4", }, + ["5% chance to gain unholy might for 4 seconds on melee kill"] = { "UnholyMightOnMeleeKillUniqueJewel28", }, + ["5% chance to grant a frenzy charge to nearby allies on hit"] = { "GrantAlliesFrenzyChargeOnHitUnique__1", }, + ["5% chance to grant an endurance charge to nearby allies on hit"] = { "GrantsAlliesEnduranceChargeOnHitUnique__1", }, + ["5% chance to grant chaotic might to nearby enemies on kill"] = { "GrantEnemiesUnholyMightOnKillUnique__1", }, + ["5% chance to grant onslaught to nearby enemies on kill"] = { "GrantEnemiesOnslaughtOnKillUnique__1", }, + ["5% increased attack speed"] = { "IncreasedAttackSpeedUniqueGlovesDex2", "LocalIncreasedAttackSpeedUniqueClaw3", }, + ["5% increased chaos damage per 10 intelligence from allocated passives in radius"] = { "ChaosDamageIncreasedPerIntUniqueJewel2", }, + ["5% increased character size"] = { "ActorSizeUnique__4", }, + ["5% increased critical strike chance per 25 intelligence"] = { "CriticalStrikeChancePerIntelligenceUnique__1", }, + ["5% increased damage per endurance charge"] = { "ChargeBonusDamagePerEnduranceCharge", }, + ["5% increased damage per frenzy charge"] = { "ChargeBonusDamagePerFrenzyCharge", }, + ["5% increased damage per power charge"] = { "ChargeBonusDamagePerPowerCharge", "IncreasedDamagePerPowerChargeUnique__1", }, + ["5% increased damage with bleeding per endurance charge"] = { "BleedingDamagePerEnduranceChargeUber1", }, + ["5% increased elemental damage per power charge"] = { "ElementalDamagePerPowerChargeUber1", }, + ["5% increased experience gain"] = { "IncreasedExperienceUniqueIntHelmet3", }, + ["5% increased global defences"] = { "AllDefencesUnique__1", }, + ["5% increased global physical damage"] = { "IncreasedPhysicalDamagePercentUniqueRing1", }, + ["5% increased impale effect"] = { "ImpaleEffectUnique__2", }, + ["5% increased maximum energy shield"] = { "IncreasedEnergyShieldPercentUnique__4", }, + ["5% increased maximum life"] = { "MaximumLifeUnique__14", }, + ["5% increased maximum life per grand spectrum"] = { "MaximumLifePerStackableJewelUnique__1", }, + ["5% increased movement speed"] = { "MovementVelocityUniqueBodyDex7", "MovementVelocityUniqueClaw3", "MovementVelocityUniqueIntHelmet2", "MovementVelocityUniqueOneHandAxe7", "MovementVelocityUnique__3", "MovementVelocityUnique__4", "MovementVelocityUnique__58", "MovementVelocityUnique___5", }, + ["5% increased movement speed per frenzy charge"] = { "MovementVelocityPerFrenzyChargeUniqueBootsStrDex2", }, + ["5% increased movement speed per power charge"] = { "MovementVelocityPerPowerChargeUnique__1__", }, + ["5% increased physical damage with axes"] = { "AxeBonus1", }, + ["5% increased physical damage with bows"] = { "BowBonus1", }, + ["5% increased physical damage with claws"] = { "ClawBonus1", }, + ["5% increased physical damage with daggers"] = { "DaggerBonus1", }, + ["5% increased physical damage with maces or sceptres"] = { "MaceBonus1", }, + ["5% increased physical damage with staves"] = { "StaffBonus1", }, + ["5% increased physical damage with swords"] = { "SwordBonus1", }, + ["5% increased physical damage with wands"] = { "WandBonus1", }, + ["5% increased projectile damage per power charge"] = { "ProjectileDamagePerPowerChargeUniqueAmulet15", }, + ["5% increased projectile speed per frenzy charge"] = { "ProjectileSpeedPerFrenzyChargeUniqueAmulet15", }, + ["5% increased quantity of gold dropped by slain enemies"] = { "VillageIncreasedGold", }, + ["5% increased quantity of items found"] = { "ItemFoundQuantityIncreasedUnique__1", }, + ["5% increased recovery rate of life and energy shield per power charge"] = { "LifeAndEnergyShieldRecoveryRatePerPowerChargeUnique__1", }, + ["5% increased spell critical strike chance per 100 player maximum life"] = { "SpellCriticalStrikeChancePerLifeUnique__1", }, + ["5% increased spell damage per 100 player maximum life"] = { "SpellDamagePerLifeUnique__1", }, + ["5% less damage taken per 5 rage, up to a maximum of 30%"] = { "DamageTakenPer5RageCappedAt50PercentUnique_1", }, + ["5% of damage against frozen enemies leeched as life"] = { "LifeLeechOnFrozenEnemiesUniqueRing19", }, + ["5% of damage against shocked enemies leeched as mana"] = { "ManaLeechOnShockedEnemiesUniqueRing19", }, + ["5% of leech from hits with this weapon is instant per enemy power"] = { "LeechInstantMonsterPowerUnique__1", }, + ["5% of physical attack damage leeched as life"] = { "LifeLeechLocalUniqueOneHandMace8", "LifeLeechUniqueBodyStr3", "LifeLeechUniqueTwoHandAxe4", "LifeLeechUniqueTwoHandMace1", }, + ["5% reduced cold damage taken"] = { "ColdDamageTakenUnique__1", }, + ["5% reduced elemental damage taken while stationary"] = { "ReducedElementalDamageTakenWhileStationaryUnique__1_", }, + ["5% reduced movement speed"] = { "MovementVelocityUniqueGlovesStrDex2", "MovementVelocityUniqueShieldStr1", "MovementVelocityUnique__52", "ReducedMovementVelocityUniqueOneHandMace7", }, + ["50 chaos damage taken per second"] = { "ChaosDegenerationAuraNonPlayersUnique__1", "ChaosDegenerationAuraPlayersUnique__1", }, + ["50% chance for impales on enemies you kill to reflect damage to surrounding enemies"] = { "EnemiesKilledApplyImpaleDamageUnique__1", }, + ["50% chance for spell hits against you to inflict poison"] = { "ChanceToBePoisonedBySpellsUnique__1_", }, + ["50% chance to avoid being chilled"] = { "ChanceToAvoidChillUniqueDescentOneHandAxe1", "ChanceToAvoidChilledUnique__1", }, + ["50% chance to be inflicted with bleeding when hit by an attack"] = { "ReceiveBleedingWhenHitUnique__1_", }, + ["50% chance to cause bleeding on critical strike"] = { "BleedOnMeleeCriticalStrikeUnique__1", "CausesBleedingOnCritUniqueDagger11", "CauseseBleedingOnCritUniqueDagger9", }, + ["50% chance to cause bleeding on hit"] = { "CausesBleedingUniqueTwoHandAxe4", "CausesBleedingUniqueTwoHandAxe4Updated", "LocalChanceToBleedUnique__1__", }, + ["50% chance to cause poison on critical strike"] = { "CausesPoisonOnCritUniqueDagger9", }, + ["50% chance to double stun duration"] = { "ChanceForDoubleStunDurationUnique__1", }, + ["50% chance to gain a flask charge when you deal a critical strike"] = { "FlaskChanceRechargeOnCritUnique__1", }, + ["50% chance to gain a power charge when you hit a frozen enemy"] = { "PowerChargeOnHittingFrozenEnemyUnique__1", }, + ["50% chance to gain an additional vaal soul per enemy shattered"] = { "AdditionalVaalSoulOnShatterUniqueCorruptedJewel7", }, + ["50% chance to gain an endurance charge when you block"] = { "ChanceToGainEnduranceChargeOnBlockUniqueDescentShield1", }, + ["50% chance to inflict bleeding on critical strike with attacks"] = { "BleedOnCritUnique__1_", }, + ["50% chance to maim enemies on critical strike with attacks"] = { "MaimOnCritUnique__1", }, + ["50% chance to shock"] = { "ChanceToShockUnique__2_", }, + ["50% chance to shock chilled enemies"] = { "ChanceToShockChilledEnemiesUnique__1", }, + ["50% chance to trigger socketed spells on killing a shocked enemy"] = { "CastSocketedSpellsOnShockedEnemyKillUnique__1", }, + ["50% chance to trigger socketed spells when you spend at least 100 mana on an"] = { "ChanceToCastOnManaSpentUnique__1", }, + ["50% increased arctic armour buff effect"] = { "ArcticArmourBuffEffectUnique__1_", }, + ["50% increased area of effect of hex skills"] = { "CurseAreaOfEffectUnique__3", }, + ["50% increased attack speed"] = { "LocalIncreasedAttackSpeedUniqueTwoHandMace4", }, + ["50% increased attack, cast and movement speed during effect"] = { "DegradingMovementSpeedDuringFlaskEffectUnique__1", }, + ["50% increased charges per use"] = { "FlaskChargesUsedUnique__3", }, + ["50% increased critical strike chance"] = { "LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe1", "LocalCriticalStrikeChanceImplicitMarakethTwoHandAxe2", }, + ["50% increased damage"] = { "DamageAuraUniqueHelmetDexInt2", }, + ["50% increased damage on burning ground"] = { "IncreasedDamageOnBurningGroundUniqueBootsInt6", }, + ["50% increased damage while on consecrated ground"] = { "IncreasedDamageOnConsecratedGroundUnique__1", }, + ["50% increased damage with bleeding inflicted on poisoned enemies"] = { "BleedDamageAgainstPoisonedEnemiesUber1", }, + ["50% increased damage with hits and ailments against taunted enemies"] = { "IncreasedDamageAgainstTauntedEnemiesUber1", }, + ["50% increased damage with poison inflicted on bleeding enemies"] = { "PoisonDamageAgainstBleedingEnemiesUber1", }, + ["50% increased defences from equipped shield"] = { "ShieldArmourIncreaseUnique__1", }, + ["50% increased duration of elemental ailments on enemies"] = { "ElementalStatusAilmentDurationDescentUniqueQuiver1", }, + ["50% increased duration of shrine effects on you"] = { "ShrineEffectDurationUniqueHelmetDexInt3", }, + ["50% increased duration. -1% to this value when used"] = { "FlaskDurationConsumedPerUse", }, + ["50% increased effect of curses on you"] = { "IncreasedCurseEffectUnique__1", }, + ["50% increased effect of non-keystone passive skills in radius"] = { "PassiveEffectivenessJewelUnique__1_", }, + ["50% increased effect. -1% to this value when used"] = { "HarvestFlaskEnchantmentEffectLoweredOnUse2", }, + ["50% increased elemental ailment duration on you"] = { "CurseEffectElementalAilmentDurationOnSelfR1", "SelfStatusAilmentDurationUnique__1", }, + ["50% increased energy shield"] = { "LocalIncreasedEnergyShieldUniqueHelmetInt4", }, + ["50% increased energy shield recharge rate"] = { "ReducedEnergyShieldDelayUniqueBelt11", }, + ["50% increased fire damage"] = { "FireDamagePercentUniqueHelmetInt5", }, + ["50% increased fire resistance"] = { "NearbyEnemiesIncreasedFireColdResistUnique__1_", }, + ["50% increased fishing pool consumption"] = { "FishingPoolConsumptionUnique__1__", }, + ["50% increased flask charges gained"] = { "BeltIncreasedFlaskChargesGainedUniqueBelt2", }, + ["50% increased flask charges gained during any flask effect"] = { "FlaskChargeRecoveryDuringFlaskEffectUnique__1", }, + ["50% increased flask effect duration"] = { "FlaskDurationUniqueJewel_____8", }, + ["50% increased flask life recovery rate"] = { "FlaskLifeRecoveryRateUniqueBodyStrDex1", }, + ["50% increased flask mana recovery rate"] = { "FlaskManaRecoveryRateUniqueBodyStrDex1", }, + ["50% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitDagger3", "CriticalStrikeChanceImplicitDaggerNew3", "CriticalStrikeChanceUniqueDagger3", "CriticalStrikeChanceUniqueGlovesDex2", "CriticalStrikeChanceUniqueOneHandSword2", }, + ["50% increased herald of ice damage"] = { "HeraldOfIceDamageUnique__1_", }, + ["50% increased life recovered"] = { "FlaskExtraLifeUnique__1", }, + ["50% increased light radius"] = { "LightRadiusUniqueSceptre2", "LightRadiusUnique__11", }, + ["50% increased lightning damage"] = { "CriticalStrikesDealIncreasedLightningDamageUnique__1", }, + ["50% increased mana cost of skills"] = { "ManaCostIncreaseUniqueTwoHandAxe4", "ManaCostIncreasedUniqueCorruptedJewel3", }, + ["50% increased mana regeneration rate"] = { "ManaRegenerationUniqueRing5", }, + ["50% increased mana regeneration rate during any flask effect"] = { "ManaRegenerationDuringFlaskEffectUnique__1", }, + ["50% increased melee damage against bleeding enemies"] = { "MeleeDamageAgainstBleedingEnemiesUnique__1", }, + ["50% increased movement speed"] = { "MovementVelocityUnique___6", }, + ["50% increased physical damage"] = { "LocalIncreasedPhysicalDamagePercentUniqueOneHandSword1", }, + ["50% increased shock duration on you"] = { "SelfShockDurationUnique__2", }, + ["50% increased spell damage while shocked"] = { "IncreasedSpellDamageWhileShockedUnique__1", }, + ["50% increased stun and block recovery"] = { "IncreasedStunRecoveryReducedStunThresholdImplicitR3", "StunRecoveryUniqueBootsStrDex3", "StunRecoveryUniqueHelmetInt6", "StunRecoveryUniqueQuiver4", "StunRecoveryUnique__1_", }, + ["50% increased stun duration on enemies"] = { "StunDurationUniqueGlovesInt4_", }, + ["50% increased stun duration on you"] = { "IncreasedStunDurationOnSelfUnique_1", }, + ["50% increased total recovery per second from life leech"] = { "IncreasedLifeLeechRateUnique__1", }, + ["50% increased warcry cooldown recovery rate"] = { "WarcryCooldownSpeedUnique__1", "WarcryCooldownSpeedUnique__2", }, + ["50% less duration of ignites you inflict"] = { "IgniteDurationEmberglowUnique__1", }, + ["50% less ignite duration"] = { "UniqueVolkuursGuidanceIgniteDurationFinal", }, + ["50% less poison duration"] = { "VolkuurLessPoisonDurationUnique__1", }, + ["50% maximum critical strike chance"] = { "MaximumCriticalStrikeChanceUniqueAmulet17", }, + ["50% more damage with arrow hits at close range"] = { "PhysicalBowDamageCloseRangeUniqueBow6", }, + ["50% more global accuracy rating"] = { "AccuracyRatingIsDoubledUber1", }, + ["50% more life"] = { "MetamorphosisItemisedBossDifficult", }, + ["50% of cold damage from hits taken as fire damage"] = { "TalismanColdTakenAsFire", }, + ["50% of cold damage from hits taken as lightning damage"] = { "TalismanColdTakenAsLightning", }, + ["50% of damage taken from stunning hits is recovered as energy shield"] = { "StunningHitsRecoverEnergyShieldUnique__1", }, + ["50% of fire damage from hits taken as cold damage"] = { "TalismanFireTakenAsCold", }, + ["50% of fire damage from hits taken as lightning damage"] = { "TalismanFireTakenAsLightning", }, + ["50% of lightning damage from hits taken as cold damage"] = { "TalismanLightningTakenAsCold", }, + ["50% of lightning damage from hits taken as fire damage"] = { "TalismanLightningTakenAsFire", }, + ["50% of maximum life converted to energy shield"] = { "MaximumLifeConvertedToEnergyShieldUnique__2", }, + ["50% of physical damage converted to chaos damage"] = { "PhysicalDamageConvertedToChaosUnique__2", }, + ["50% of physical damage converted to cold damage"] = { "ConvertPhysicalToColdUnique__2", }, + ["50% of physical damage converted to fire damage"] = { "ConvertPhysicalToFireUniqueQuiver1_", "ConvertPhysicalToFireUnique__1", }, + ["50% of physical damage converted to fire damage against ignited enemies"] = { "PhysicalDamageConvertedToFireVsBurningEnemyUniqueSceptre9", }, + ["50% of physical damage converted to fire while you have avatar of fire"] = { "ConvertPhysicalToFireWithAvatarOfFireUnique__1", }, + ["50% of physical damage converted to lightning damage"] = { "ConvertPhysicaltoLightningUnique__1", "ConvertPhysicaltoLightningUnique__3", "ConvertPhysicaltoLightningUnique__4", }, + ["50% of physical damage converted to lightning during effect"] = { "PhysicalToLightningDuringFlaskEffect__1", }, + ["50% of physical damage from hits taken as lightning damage"] = { "PhysicalDamageTakenAsLightningDescentTwoHandSword1", "PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2", }, + ["50% of physical damage from hits with this weapon is converted to a random element"] = { "LocalDamageConversionToRandomElementUnique__1", }, + ["50% reduced attack speed"] = { "LocalReducedAttackSpeedUnique__1", }, + ["50% reduced charges per use. -1% to this value when used"] = { "HarvestFlaskEnchantmentChargesUsedLoweredOnUse4", }, + ["50% reduced damage when on low life"] = { "ReducedPhysicalDamagePercentOnLowLifeUniqueHelmetDex4", }, + ["50% reduced duration of curses on you"] = { "ReducedSelfCurseDurationUniqueShieldDex3", }, + ["50% reduced effect of curses on you"] = { "ReducedCurseEffectUniqueRing7", }, + ["50% reduced energy shield recharge rate"] = { "IncreasedEnergyShieldDelayUniqueHelmetInt4", }, + ["50% reduced explicit defence modifier magnitudes"] = { "ArmourEnchantmentHeistResistanceEffectDefenceEffectPenalty1__", }, + ["50% reduced explicit life modifier magnitudes"] = { "ArmourEnchantmentHeistResistanceEffectLifeEffectPenalty1", }, + ["50% reduced ignite duration on enemies"] = { "IgniteDurationUnique__3_", }, + ["50% reduced life regeneration rate"] = { "ReducedLifeRegenerationPercentUniqueOneHandAxe5", }, + ["50% reduced light radius"] = { "LightRadiusUnique__10", "LightRadiusUnique__6", }, + ["50% reduced maximum energy shield"] = { "ReducedEnergyShieldPercentUniqueAmulet13", }, + ["50% reduced maximum mana"] = { "MaximumManaUniqueBodyStrInt1", }, + ["50% reduced maximum number of raised zombies"] = { "NumberOfZombiesSummonedPercentageUniqueSceptre3", }, + ["50% reduced maximum recovery per energy shield leech"] = { "MaximumESLeechAmountUnique__1_", }, + ["50% reduced maximum recovery per life leech"] = { "MaximumLifeLeechAmountUnique__1", }, + ["50% reduced rarity of items found"] = { "ItemFoundRarityDecreaseUniqueOneHandSword4", }, + ["50% reduced time before lockdown"] = { "HeistContractNPCPerksDoubled", }, + ["50% reduced ward during effect"] = { "FlaskBuffWardWhileHealingUnique__1", }, + ["50% slower start of energy shield recharge during any flask effect"] = { "EnergyShieldDelayDuringFlaskEffect__1", }, + ["500% increased attribute requirements"] = { "IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4", }, + ["500% increased charges per use"] = { "FlaskChargesUsedUnique___1", }, + ["500% increased ignite duration on enemies"] = { "BurnDurationUniqueDescentOneHandMace1", }, + ["500% increased intelligence requirement"] = { "IncreasedIntelligenceRequirementsUniqueGlovesStrInt4", }, + ["500% increased strength requirement"] = { "IncreasedStrengthREquirementsUniqueGlovesStrInt4", }, + ["6 to 10 added physical damage with bow attacks"] = { "AddedPhysicalDamageUniqueQuiver8", }, + ["6 to 12 added physical damage with bow attacks"] = { "AddedPhysicalDamageImplicitQuiver11", }, + ["6% chance to block attack damage"] = { "BlockPercentMarakethDaggerImplicit2_", "BlockPercentUniqueHelmetStrDex4", }, + ["6% chance to block spell damage"] = { "BlockingBlocksSpellsUnique__1", }, + ["6% chance to deal double damage per 500 strength"] = { "DoubleDamagePer500StrengthUnique__1", }, + ["6% increased accuracy rating per frenzy charge"] = { "AccuracyRatingPerFrenzyChargeUniqueGlovesDexInt5", }, + ["6% increased armour per endurance charge"] = { "ChargeBonusArmourPerEnduranceCharge", }, + ["6% increased attack speed"] = { "IncreasedAttackSpeedImplicitShield1", "LocalIncreasedAttackSpeedImplicitMarakethOneHandMace2", }, + ["6% increased critical strike chance per endurance charge"] = { "ChargeBonusCriticalStrikeChancePerEnduranceCharge", }, + ["6% increased critical strike chance per frenzy charge"] = { "ChargeBonusCriticalStrikeChancePerFrenzyCharge", }, + ["6% increased explicit ailment modifier magnitudes"] = { "WeaponEnchantmentHeistAilmentEffectAttributeRequirement1_", "WeaponEnchantmentHeistAilmentEffectSocketsAreLinked1", "WeaponEnchantmentHeistCasterDamageEffectAilmentEffect1_", "WeaponEnchantmentHeistChaosEffectAilmentEffect1_", "WeaponEnchantmentHeistColdEffectAilmentEffect1", "WeaponEnchantmentHeistFireEffectAilmentEffect1_", "WeaponEnchantmentHeistLightningEffectAilmentEffect1", "WeaponEnchantmentHeistManaEffectAilmentEffect1", "WeaponEnchantmentHeistPhysicalEffectAilmentEffect1", }, + ["6% increased explicit attribute modifier magnitudes"] = { "ArmourEnchantmentHeistAttributeEffectSocketsAreLinked1", "ArmourEnchantmentHeistDefenceEffectAttributeEffect1", "ArmourEnchantmentHeistLifeEffectAttributeEffect1_", "ArmourEnchantmentHeistManaEffectAttributeEffect1", "WeaponEnchantmentHeistAttributeEffectAttributeRequirement1", "WeaponEnchantmentHeistAttributeEffectSocketsAreLinked1_", "WeaponEnchantmentHeistCasterDamageEffectAttributeEffect1", "WeaponEnchantmentHeistChaosEffectAttributeEffect1", "WeaponEnchantmentHeistColdEffectAttributeEffect1", "WeaponEnchantmentHeistFireEffectAttributeEffect1", "WeaponEnchantmentHeistLightningEffectAttributeEffect1", "WeaponEnchantmentHeistManaEffectAttributeEffect1_", "WeaponEnchantmentHeistPhysicalEffectAttributeEffect1____", }, + ["6% increased explicit caster damage modifier magnitudes"] = { "WeaponEnchantmentHeistCasterDamageEffectAttributeRequirement1_", "WeaponEnchantmentHeistCasterDamageEffectCriticalEffect1", "WeaponEnchantmentHeistCasterDamageEffectSocketsAreLinked1", "WeaponEnchantmentHeistCasterDamageEffectSpeedEffect1", }, + ["6% increased explicit chaos modifier magnitudes"] = { "WeaponEnchantmentHeistChaosEffectAttributeRequirement1_", "WeaponEnchantmentHeistChaosEffectCriticalEffect1", "WeaponEnchantmentHeistChaosEffectSocketsAreLinked1_", "WeaponEnchantmentHeistChaosEffectSpeedEffect1_", }, + ["6% increased explicit cold modifier magnitudes"] = { "WeaponEnchantmentHeistColdEffectAttributeRequirement1", "WeaponEnchantmentHeistColdEffectCriticalEffect1_", "WeaponEnchantmentHeistColdEffectSocketsAreLinked1", "WeaponEnchantmentHeistColdEffectSpeedEffect1", }, + ["6% increased explicit critical modifier magnitudes"] = { "WeaponEnchantmentHeistCriticalEffectAttributeRequirement1_", "WeaponEnchantmentHeistCriticalEffectSocketsAreLinked1", "WeaponEnchantmentHeistFireEffectCriticalEffect1", "WeaponEnchantmentHeistLightningEffectCriticalEffect1", "WeaponEnchantmentHeistManaEffectCriticalEffect1", "WeaponEnchantmentHeistPhysicalEffectCriticalEffect1", }, + ["6% increased explicit defence modifier magnitudes"] = { "ArmourEnchantmentHeistDefenceEffectAttributeRequirements1", "ArmourEnchantmentHeistDefenceEffectResistanceEffect1", "ArmourEnchantmentHeistDefenceEffectSocketsAreLinked1", }, + ["6% increased explicit fire modifier magnitudes"] = { "WeaponEnchantmentHeistFireEffectAttributeRequirement1", "WeaponEnchantmentHeistFireEffectSocketsAreLinked1", "WeaponEnchantmentHeistFireEffectSpeedEffect1", }, + ["6% increased explicit life modifier magnitudes"] = { "ArmourEnchantmentHeistLifeEffectAttributeRequirements1", "ArmourEnchantmentHeistLifeEffectResistanceEffect1__", "ArmourEnchantmentHeistLifeEffectSocketsAreLinked1_", }, + ["6% increased explicit lightning modifier magnitudes"] = { "WeaponEnchantmentHeistLightningEffectAttributeRequirement1", "WeaponEnchantmentHeistLightningEffectSocketsAreLinked1", "WeaponEnchantmentHeistLightningEffectSpeedEffect1_", }, + ["6% increased explicit mana modifier magnitudes"] = { "ArmourEnchantmentHeistManaEffectAttributeRequirements1", "ArmourEnchantmentHeistManaEffectResistanceEffect1", "ArmourEnchantmentHeistManaEffectSocketsAreLinked1", "WeaponEnchantmentHeistManaEffectAttributeRequirement1", "WeaponEnchantmentHeistManaEffectSocketsAreLinked1", "WeaponEnchantmentHeistManaEffectSpeedEffect1", }, + ["6% increased explicit physical modifier magnitudes"] = { "WeaponEnchantmentHeistPhysicalEffectAttributeRequirement1", "WeaponEnchantmentHeistPhysicalEffectSocketsAreLinked1", "WeaponEnchantmentHeistPhysicalEffectSpeedEffect1", }, + ["6% increased explicit resistance modifier magnitudes"] = { "ArmourEnchantmentHeistResistanceEffectSocketsAreLinked1_", }, + ["6% increased explicit speed modifier magnitudes"] = { "WeaponEnchantmentHeistSpeedEffectAttributeRequirement1__", "WeaponEnchantmentHeistSpeedEffectSocketsAreLinked1__", }, + ["6% increased maximum life for each corrupted item equipped"] = { "MaximumLifePercentPerCorruptedItemUnique__1_", }, + ["6% increased movement speed"] = { "MovementVelocityImplicitShield2", "MovementVelocityMarakethBowImplicit1", }, + ["6% increased movement speed per frenzy charge"] = { "MovementVelocityPerFrenzyChargeUnique__2", }, + ["6% of physical attack damage leeched as life"] = { "LifeLeechUniqueClaw3", }, + ["60% chance to poison on hit"] = { "LocalChanceToPoisonOnHitUnique__2", }, + ["60% increased area of effect of hex skills"] = { "CurseAreaOfEffectUnique__1", "CurseAreaOfEffectUnique__2_", }, + ["60% increased armour"] = { "LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrInt1", }, + ["60% increased block recovery"] = { "BlockRecoveryImplicitShield1", }, + ["60% increased critical strike chance against chilled enemies"] = { "GlobalCriticalStrikeChanceAgainstChilledUnique__1", }, + ["60% increased damage if you've frozen an enemy recently"] = { "IncreasedDamageIfFrozenRecentlyUnique__1", }, + ["60% increased damage taken from melee attacks"] = { "MeleeDamageTakenUniqueAmulet12", }, + ["60% increased damage while shocked"] = { "DamageIncreaseWhileShockedUniqueBelt12", }, + ["60% increased energy shield"] = { "LocalIncreasedEnergyShieldPercentUniqueBodyStrInt1", }, + ["60% increased flask effect duration"] = { "BeltIncreasedFlaskDurationUnique__1", "BeltIncreasedFlaskDurationUnique__2", }, + ["60% increased global accuracy rating"] = { "AccuracyPercentImplicit2HSword1", }, + ["60% increased intelligence requirement"] = { "IncreasedIntelligenceRequirementsUniqueSceptre1", }, + ["60% increased item rarity per white socket"] = { "ItemRarityPerWhiteSocketUniqueRing39", }, + ["60% increased mana regeneration rate"] = { "ManaRegenerationUniqueBootsDex2", "ManaRegenerationUniqueBow11", "ManaRegenerationUniqueDexHelmet2", }, + ["60% increased mana regeneration rate while stationary"] = { "IncreasedManaRegenerationWhileStationaryUnique__1", }, + ["60% increased melee damage when on full life"] = { "MeleeDamageOnFullLifeUniqueAmulet13", }, + ["60% of physical damage converted to fire damage"] = { "DamageConversionFireUnique__1", }, + ["60% reduced cost of aura skills that summon totems"] = { "ManaCostOfTotemAurasUniqueCorruptedJewel8", }, + ["60% reduced effect of curses on you"] = { "ReducedCurseEffectUniqueRing26", }, + ["60% reduced mana regeneration rate"] = { "ManaRegenerationUnique__14___", }, + ["600% of damage leeched as life on critical strike"] = { "LifeLeechOnCritUniqueTwoHandAxe8", }, + ["7% chance to block spell damage"] = { "SpellBlockUniqueShieldInt4", "SpellBlockUniqueTwoHandAxe6", }, + ["70% increased burning damage"] = { "BurnDamageUniqueStaff1", }, + ["70% increased critical strike chance against bleeding enemies"] = { "CriticalStrikeChanceAgainstBleedingEnemiesUber1", }, + ["70% increased evasion rating"] = { "LocalIncreasedEvasionPercentAndStunRecoveryUniqueDexHelmet1", }, + ["75% chance to cause enemies to flee on use"] = { "MonstersFleeOnFlaskUseUniqueFlask9", }, + ["75% increased effect of shrine buffs on you"] = { "ShrineBuffEffectUniqueHelmetDexInt3", }, + ["75% increased mana cost of skills"] = { "ManaCostIncreasedUniqueHelmetStrInt6", }, + ["75% of damage taken bypasses ward"] = { "DamageBypassesWardPercentUnique__1", }, + ["75% of physical damage converted to a random element"] = { "DamageConversionToRandomElementUnique__1", }, + ["75% reduced effect of chill on you"] = { "ChillEffectivenessOnSelfUniqueRing28", }, + ["75% reduced maximum number of summoned raging spirits"] = { "ReducedRagingSpiritsAllowedUnique__1", }, + ["8% chance to freeze"] = { "ChanceToFreezeUniqueStaff2", }, + ["8% increased effect of arcane surge on you per"] = { "ArcaneSurgeEffectPerCasterAbyssJewelUnique__1", }, + ["8% increased effect of non-damaging ailments per elder item equipped"] = { "AilmentEffectPerElderItemUnique__1", }, + ["8% increased evasion rating per frenzy charge"] = { "ChargeBonusEvasionPerFrenzyCharge", }, + ["8% increased explicit ailment modifier magnitudes"] = { "WeaponEnchantmentHeistAilmentEffect1", "WeaponEnchantmentHeistAilmentEffectNoBlueSockets1__", "WeaponEnchantmentHeistAilmentEffectNoGreenSockets1", "WeaponEnchantmentHeistAilmentEffectNoRedSockets1_", "WeaponEnchantmentHeistAilmentEffectWhiteSockets1", }, + ["8% increased explicit attribute modifier magnitudes"] = { "ArmourEnchantmentHeistAttributeEffect1", "ArmourEnchantmentHeistAttributeEffectNoBlueSockets1", "ArmourEnchantmentHeistAttributeEffectNoGreenSockets1", "ArmourEnchantmentHeistAttributeEffectNoRedSockets1", "ArmourEnchantmentHeistAttributeEffectWhiteSocket1_", "WeaponEnchantmentHeistAttributeEffect1", "WeaponEnchantmentHeistAttributeEffectNoBlueSockets1_", "WeaponEnchantmentHeistAttributeEffectNoGreenSockets1", "WeaponEnchantmentHeistAttributeEffectNoRedSockets1", "WeaponEnchantmentHeistAttributeEffectWhiteSockets1_", }, + ["8% increased explicit caster damage modifier magnitudes"] = { "WeaponEnchantmentHeistCasterDamageEffect1", "WeaponEnchantmentHeistCasterDamageEffectNoBlueSockets1_", "WeaponEnchantmentHeistCasterDamageEffectNoGreenSockets1", "WeaponEnchantmentHeistCasterDamageEffectNoRedSockets1_", "WeaponEnchantmentHeistCasterDamageEffectWhiteSockets1", }, + ["8% increased explicit chaos modifier magnitudes"] = { "WeaponEnchantmentHeistChaosEffect1__", "WeaponEnchantmentHeistChaosEffectNoBlueSockets1", "WeaponEnchantmentHeistChaosEffectNoGreenSockets1", "WeaponEnchantmentHeistChaosEffectNoRedSockets1___", "WeaponEnchantmentHeistChaosEffectWhiteSockets1", }, + ["8% increased explicit cold modifier magnitudes"] = { "WeaponEnchantmentHeistColdEffect1__", "WeaponEnchantmentHeistColdEffectNoBlueSockets1", "WeaponEnchantmentHeistColdEffectNoGreenSockets1", "WeaponEnchantmentHeistColdEffectNoRedSockets1", "WeaponEnchantmentHeistColdEffectWhiteSockets1___", }, + ["8% increased explicit critical modifier magnitudes"] = { "WeaponEnchantmentHeistCriticalEffect1_", "WeaponEnchantmentHeistCriticalEffectNoBlueSockets1", "WeaponEnchantmentHeistCriticalEffectNoGreenSockets1", "WeaponEnchantmentHeistCriticalEffectNoRedSockets1", "WeaponEnchantmentHeistCriticalEffectWhiteSockets1_", }, + ["8% increased explicit defence modifier magnitudes"] = { "ArmourEnchantmentHeistDefenceEffect1", "ArmourEnchantmentHeistDefenceEffectNoBlueSockets1", "ArmourEnchantmentHeistDefenceEffectNoGreenSockets1", "ArmourEnchantmentHeistDefenceEffectNoRedSockets1", "ArmourEnchantmentHeistDefenceEffectWhiteSocket1", }, + ["8% increased explicit fire modifier magnitudes"] = { "WeaponEnchantmentHeistFireEffect1", "WeaponEnchantmentHeistFireEffectNoBlueSockets1", "WeaponEnchantmentHeistFireEffectNoGreenSockets1_", "WeaponEnchantmentHeistFireEffectNoRedSockets1", "WeaponEnchantmentHeistFireEffectWhiteSockets1", }, + ["8% increased explicit life modifier magnitudes"] = { "ArmourEnchantmentHeistLifeEffect1", "ArmourEnchantmentHeistLifeEffectNoBlueSockets1", "ArmourEnchantmentHeistLifeEffectNoGreenSockets1__", "ArmourEnchantmentHeistLifeEffectNoRedSockets1", "ArmourEnchantmentHeistLifeEffectWhiteSocket1_", }, + ["8% increased explicit lightning modifier magnitudes"] = { "WeaponEnchantmentHeistLightningEffect1", "WeaponEnchantmentHeistLightningEffectNoBlueSockets1_", "WeaponEnchantmentHeistLightningEffectNoGreenSockets1", "WeaponEnchantmentHeistLightningEffectNoRedSockets1", "WeaponEnchantmentHeistLightningEffectWhiteSockets1_", }, + ["8% increased explicit mana modifier magnitudes"] = { "ArmourEnchantmentHeistManaEffect1", "ArmourEnchantmentHeistManaEffectNoBlueSockets1", "ArmourEnchantmentHeistManaEffectNoGreenSockets1", "ArmourEnchantmentHeistManaEffectNoRedSockets1_", "ArmourEnchantmentHeistManaEffectWhiteSocket1_", "WeaponEnchantmentHeistManaEffect1", "WeaponEnchantmentHeistManaEffectNoBlueSockets1__", "WeaponEnchantmentHeistManaEffectNoGreenSockets1", "WeaponEnchantmentHeistManaEffectNoRedSockets1", "WeaponEnchantmentHeistManaEffectWhiteSockets1", }, + ["8% increased explicit physical modifier magnitudes"] = { "WeaponEnchantmentHeistPhysicalEffect1", "WeaponEnchantmentHeistPhysicalEffectNoBlueSockets1", "WeaponEnchantmentHeistPhysicalEffectNoGreenSockets1_", "WeaponEnchantmentHeistPhysicalEffectNoRedSockets1", "WeaponEnchantmentHeistPhysicalEffectWhiteSockets1_", }, + ["8% increased explicit resistance modifier magnitudes"] = { "ArmourEnchantmentHeistResistanceEffect1__", "ArmourEnchantmentHeistResistanceEffectNoBlueSockets1", "ArmourEnchantmentHeistResistanceEffectNoGreenSockets1", "ArmourEnchantmentHeistResistanceEffectNoRedSockets1", "ArmourEnchantmentHeistResistanceEffectWhiteSocket1", }, + ["8% increased explicit speed modifier magnitudes"] = { "WeaponEnchantmentHeistSpeedEffect1_", "WeaponEnchantmentHeistSpeedEffectNoBlueSockets1", "WeaponEnchantmentHeistSpeedEffectNoGreenSockets1", "WeaponEnchantmentHeistSpeedEffectNoRedSockets1", "WeaponEnchantmentHeistSpeedEffectWhiteSockets1_", }, + ["8% increased global defences per white socket"] = { "GlobalDefensesPerWhiteSocketUnique__1", }, + ["8% increased global physical damage"] = { "IncreasedPhysicalDamagePercentImplicitMarakethOneHandAxe1", }, + ["8% increased maximum energy shield for each corrupted item equipped"] = { "MaximumEnergyShieldPercentPerCorruptedItemUnique__1_", }, + ["8% increased spell damage per 5% chance to block attack damage"] = { "IncreasedSpellDamagePerBlockChanceUniqueClaw7", }, + ["8% of damage from hits is taken from marked target's life before you"] = { "DamageTakenFromMarkedTargetUnique__1", }, + ["8% of damage taken recouped as mana"] = { "PercentDamageGoesToManaUnique__1", }, + ["8% of maximum energy shield taken as physical damage on minion death"] = { "PhysicalDamageToSelfOnMinionDeathESPercentUniqueRing33_", }, + ["8% of physical attack damage leeched as life"] = { "LifeLeechImplicitClaw1", }, + ["8% of physical damage from hits taken as fire damage"] = { "PhysicalDamageTakenAsFirePercentUnique__1", }, + ["8% reduced enemy stun threshold"] = { "StunThresholdReductionImlicitMarakethOneHandSword1", }, + ["80% faster start of energy shield recharge"] = { "ReducedEnergyShieldDelayUniqueQuiver7", }, + ["80% increased armour while stationary"] = { "IncreasedArmourWhileStationaryUnique__1", }, + ["80% increased evasion rating while moving"] = { "EvasionRatingWhileMovingUnique__1", }, + ["80% increased global critical strike chance"] = { "CriticalStrikeChanceImplicitMarakethStaff1", }, + ["80% increased physical damage with axes"] = { "AxePhysicalDamageUnique__1", }, + ["80% less flask charges gained from kills"] = { "FlaskChargesFromKillUniqueJewel_9", "FlaskChargesFromKillsFinalUnique__1_", }, + ["80% reduced effect of curses on you"] = { "ReducedCurseEffectUnique__2", }, + ["80% reduced freeze duration on you"] = { "ReducedFreezeDurationUniqueShieldStrInt3", }, + ["80% reduced maximum recovery per life leech"] = { "MaximumLifeLeechAmountUnique__2", }, + ["80% reduced reservation efficiency of skills"] = { "IncreasedManaReservationsCostUnique__1", "ReservationEfficiencyUnique__1_", }, + ["80% reduced spell damage"] = { "SpellDamageOnWeaponUniqueWand3", }, + ["800% increased attribute requirements"] = { "IncreasedLocalAttributeRequirementsUnique__1", }, + ["85% less ward during effect"] = { "FlaskMoreWardUnique1", }, + ["9% chance to shock"] = { "ChanceToShockUniqueDescentTwoHandSword1", }, + ["9% increased cast speed when on full life"] = { "CastSpeedOnFullLifeUniqueDescentHelmet1", }, + ["9% increased movement speed"] = { "MovementVelocityImplicitShield3", }, + ["90% less power charge duration"] = { "PowerChargeDurationFinalUnique__1__", }, + ["90% reduced duration"] = { "FlaskIncreasedDurationUnique__2", }, + ["90% reduced ignite duration on enemies"] = { "IgniteDurationUnique__2", }, + ["[dnt] #% to all resistances per minion"] = { "AllResistancesReducedPerActiveMinionUnique_1UNUSED", }, + ["[dnt] (#)% increased area of effect per # rage"] = { "AreaOfEffectPerRageUnique__1", }, + ["[dnt] (#)% increased chance to block attack and spell damage for every # life spent recently"] = { "BlockChancePerLifeSpentRecentlyUnique__1", }, + ["[dnt] (5-10)% increased area of effect per 10 rage"] = { "AreaOfEffectPerRageUnique__1", }, + ["[dnt] (5-10)% increased chance to block attack and spell damage for every 100 life spent recently"] = { "BlockChancePerLifeSpentRecentlyUnique__1", }, + ["[dnt] +#% chance to block spell damage per minion"] = { "SpellBlockChancePerMinionUnique__1", }, + ["[dnt] +(#)% to global defenses per minion"] = { "GlobalDefensesIncreasedPerActiveMinionUnique_1UNUSED", }, + ["[dnt] +(3-5)% to global defenses per minion"] = { "GlobalDefensesIncreasedPerActiveMinionUnique_1UNUSED", }, + ["[dnt] +2% chance to block spell damage per minion"] = { "SpellBlockChancePerMinionUnique__1", }, + ["[dnt] -2% to all resistances per minion"] = { "AllResistancesReducedPerActiveMinionUnique_1UNUSED", }, + ["[dnt] bow attacks sacrifice (#)% of your life to fire an additional arrow for every # life sacrificed"] = { "SacrificeLifeToGainArrowUnique__1", }, + ["[dnt] bow attacks sacrifice (5-7)% of your life to fire an additional arrow for every 100 life sacrificed"] = { "SacrificeLifeToGainArrowUnique__1", }, + ["[dnt] energy shield recharge instead applies to mana"] = { "EnergyShieldRechargeApplyToManaUnique__1", }, + ["[dnt] grants level # unleash power"] = { "GrantUnleashPowerUnique__1", }, + ["[dnt] grants level 10 unleash power"] = { "GrantUnleashPowerUnique__1", }, + ["[dnt] hits with this weapon deal triple damage if you have spent at least # seconds on a single attack recently"] = { "TripleDamageIfSpentTimeOnAttackRecentlyUnique__1", }, + ["[dnt] hits with this weapon deal triple damage if you have spent at least 2 seconds on a single attack recently"] = { "TripleDamageIfSpentTimeOnAttackRecentlyUnique__1", }, + ["[dnt] impaled enemies cannot be impaled"] = { "YouCannotImpaleTheImpaledUnique_1UNUSED", }, + ["[dnt] impales you inflict have (#)% increased effect per impale on you"] = { "ImpaleEffectPerImpaleOnYouUnique__1", }, + ["[dnt] impales you inflict have (10-15)% increased effect per impale on you"] = { "ImpaleEffectPerImpaleOnYouUnique__1", }, + ["[dnt] inflict fire exposure on nearby enemies when you reach maximum rage"] = { "InflictFireExposureNearbyOnMaxRageUnique_1", }, + ["[dnt] link skills cost life instead of mana"] = { "LinkSkillsCostLifeUnique__1", }, + ["[dnt] minions are aggressive if you've blocked recently"] = { "AggressiveMinionIfBlockedRecentlyUnique__1", }, + ["[dnt] nearby non-player allies are shocked, taking #% increased damage"] = { "NearbyAlliesShockedGrantYouChargesOnDeathUnique__1", }, + ["[dnt] nearby non-player allies are shocked, taking 30% increased damage"] = { "NearbyAlliesShockedGrantYouChargesOnDeathUnique__1", }, + ["[dnt] triggers level # violent path when equipped"] = { "ViolentPaceUnique__1", }, + ["[dnt] triggers level 20 violent path when equipped"] = { "ViolentPaceUnique__1", }, + ["[dnt] unarmed attacks deal (#) to (#) added chaos damage for each poison on the target, up to #"] = { "UnarmedAddedChaosDamageForEachPoisonOnTargetUnique__1", }, + ["[dnt] unarmed attacks deal (7-11) to (13-17) added chaos damage for each poison on the target, up to 100"] = { "UnarmedAddedChaosDamageForEachPoisonOnTargetUnique__1", }, + ["[dnt] unarmed non-vaal strike skills target (#) additional nearby enemy"] = { "UnarmedStrikeSkillsAdditionalTargetUnique__1", }, + ["[dnt] unarmed non-vaal strike skills target (1-7) additional nearby enemy"] = { "UnarmedStrikeSkillsAdditionalTargetUnique__1", }, + ["[dnt] you have feeding frenzy if you've blocked recently"] = { "FeedingFrenzyIfBlockedRecentlyUnique__1", }, + ["[dnt] you have onslaught during effect of any life flask"] = { "GainOnslaughtDuringLifeFlaskUnique__1", }, + ["[dnt] your guard skill buffs take damage for linked targets as well as you"] = { "GuardSkillForLinkTargetUnique__1", }, + ["[dnt] your minions gain your chance to suppress spell damage"] = { "MinionGainYourSpellSuppressUnique__1", }, + ["[dnt] your minions have no armour or maximum energy shield"] = { "MinionHaveNoAmourOrEnergyShieldUnique__1", }, + ["acrobatics"] = { "Acrobatics", "KeystoneAcrobaticsUnique__1", "KeystonePhaseAcrobaticsUnique__1", }, + ["action speed cannot be modified to below base value"] = { "CannotBeSlowedBelowBaseUnique__1", "NearbyAlliesCannotBeSlowedUnique__1", }, + ["action speed cannot be modified to below base value if you've cast temporal chains in the past # seconds"] = { "TemporalChainsCannotBeSlowedUnique__1", }, + ["action speed cannot be modified to below base value if you've cast temporal chains in the past 10 seconds"] = { "TemporalChainsCannotBeSlowedUnique__1", }, + ["added small passive skills grant nothing"] = { "LocalAfflictionJewelDisplaySmallNodesGrantNothingUnique_1", }, + ["adds # jewel socket passive skills"] = { "ExpansionJewel3JewelSockets", }, + ["adds # passive skills"] = { "JewelExpansionPassiveNodesUnique__1", }, + ["adds # small passive skill which grants nothing"] = { "ExpansionJewelEmptyPassiveUnique__1", }, + ["adds # small passive skills which grant nothing"] = { "ExpansionJewelEmptyPassiveUnique_3_", "ExpansionJewelEmptyPassiveUnique__2", "ExpansionJewelEmptyPassiveUnique__4", }, + ["adds # to # chaos damage"] = { "LocalAddedChaosDamageUnique___1", }, + ["adds # to # chaos damage for each curse on the enemy"] = { "AddedChaosDamagePerCurseUnique__1", }, + ["adds # to # chaos damage to attacks"] = { "AddedChaosDamageUniqueAmulet23", "AddedChaosDamageUniqueBootsStrInt2", "AddedChaosDamageUnique__1", }, + ["adds # to # chaos damage to attacks per # strength"] = { "AddedChaosDamageToAttacksPer50StrengthUnique__1", }, + ["adds # to # cold damage"] = { "LocalAddedColdDamageUniqueClaw5", "LocalAddedColdDamageUniqueDescentOneHandAxe1", "LocalAddedColdDamageUniqueTwoHandMace2", "LocalAddedColdDamageUniqueTwoHandSword2", "LocalAddedColdDamageUnique__1", }, + ["adds # to # cold damage against chilled enemies"] = { "AddedColdDamageAgainstFrozenEnemiesUnique__1", "AddedColdDamageAgainstFrozenEnemiesUnique__2", }, + ["adds # to # cold damage to attacks"] = { "AddedColdDamageImplicitQuiver1", "AddedColdDamageUniqueDexHelmet1", "AddedColdDamageUniqueShieldStrDex3", "AddedColdDamageUnique__1", "AddedColdDamageUnique__9", }, + ["adds # to # cold damage to attacks per # dexterity"] = { "ColdDamageToAttacksPerDexterityUnique__1", }, + ["adds # to # cold damage to retaliation skills"] = { "CounterAttacksAddedColdDamageUnique__1", }, + ["adds # to # cold damage to spells"] = { "SpellAddedColdDamageUnique__1", }, + ["adds # to # cold damage to spells per power charge"] = { "AddedColdDamagePerPowerChargeUnique__1", "AddedColdDamagePerPowerChargeUnique__2", }, + ["adds # to # fire damage"] = { "LocalAddedFireDamageUniqueBow6", "LocalAddedFireDamageUniqueDescentOneHandMace1", "LocalAddedFireDamageUniqueRapier1", "LocalAddedFireDamageUnique__1", }, + ["adds # to # fire damage if you've blocked recently"] = { "AddedFireDamageIfBlockedRecentlyUnique__1", }, + ["adds # to # fire damage to attacks"] = { "AddedFireDamageImplicitQuiver1", "AddedFireDamageImplicitQuiver2New", "AddedFireDamageUniqueBootsStrDex1", "AddedFireDamageUniqueGlovesInt1", "AddedFireDamageUniqueShieldDemigods", "AddedFireDamageUnique__4", }, + ["adds # to # fire damage to attacks against ignited enemies"] = { "LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9", }, + ["adds # to # fire damage to attacks for every #% your light radius is above base value"] = { "AddedFireDamageFromLightRadiusUnique__1", }, + ["adds # to # fire damage to attacks per # strength"] = { "FireDamageToAttacksPerStrengthUnique__1", }, + ["adds # to # fire damage to attacks with this weapon per # strength"] = { "AddedFireDamagePerStrengthUnique__1", }, + ["adds # to # fire damage to spells"] = { "SpellAddedFireDamageUnique__1", }, + ["adds # to # lightning damage"] = { "AddedLightningDamageUniqueBow8", "AddedLightningDamageUniqueDagger3", "LocalAddedLightningDamageUniqueDescentTwoHandSword1_", "LocalAddedLightningDamageUnique__1", "LocalAddedLightningDamageUnique__6", }, + ["adds # to # lightning damage for each shocked enemy you've killed recently"] = { "AddedLightningDamagePerShockedEnemyKilledUnique__1", }, + ["adds # to # lightning damage to attacks"] = { "AddedLightningDamageImplicitQuiver1", "AddedLightningDamagePerDexInRadiusUniqueJewel53", "AddedLightningDamageUniqueBodyInt8", "AddedLightningDamageUniqueBootsStrInt1", "AddedLightningDamageUniqueGlovesDexInt3", "AddedLightningDamageUniqueGlovesInt1", "AddedLightningDamageUnique__3", }, + ["adds # to # lightning damage to attacks per # intelligence"] = { "LightningDamageToAttacksPerIntelligenceUnique__1", }, + ["adds # to # lightning damage to attacks with this weapon per # dexterity"] = { "AddedLightningDamagePerDexterityUnique__1", }, + ["adds # to # lightning damage to attacks with this weapon per # intelligence"] = { "AddedLightningDamagePerIntelligenceUnique__1", "AddedLightningDamagePerIntelligenceUnique__2", }, + ["adds # to # lightning damage to spells"] = { "SpellAddedLightningDamageUnique__1", }, + ["adds # to # lightning damage to spells and attacks"] = { "AddedLightningDamageUniqueHelmetStrInt1", }, + ["adds # to # lightning damage to spells per power charge"] = { "AddedLightningDamagePerPowerChargeUnique__1", }, + ["adds # to # physical damage"] = { "LocalAddedPhysicalDamageOneHandAxe1", "LocalAddedPhysicalDamagePercentUniqueClaw4", "LocalAddedPhysicalDamageUniqueClaw3", "LocalAddedPhysicalDamageUniqueDagger2", "LocalAddedPhysicalDamageUniqueDescentClaw1", "LocalAddedPhysicalDamageUniqueDescentDagger1", "LocalAddedPhysicalDamageUniqueDescentOneHandAxe1", "LocalAddedPhysicalDamageUniqueDescentOneHandSword1", "LocalAddedPhysicalDamageUniqueDescentStaff1", "LocalAddedPhysicalDamageUniqueOneHandMace8", "LocalAddedPhysicalDamageUniqueOneHandSword1", "LocalAddedPhysicalDamageUniqueRapier2", "LocalAddedPhysicalDamageUniqueTwoHandAxe3", "LocalAddedPhysicalDamageUniqueTwoHandMace7", "LocalAddedPhysicalDamageUnique__3", }, + ["adds # to # physical damage per endurance charge"] = { "AddedPhysicalDamagePerEnduranceChargeUnique__1", }, + ["adds # to # physical damage to attacks"] = { "AddedPhysicalDamageImplicitQuiver1", "AddedPhysicalDamageImplicitQuiver1New", "AddedPhysicalDamageImplicitRing1", "AddedPhysicalDamageUniqueAmulet25", "AddedPhysicalDamageUniqueBelt4", "AddedPhysicalDamageUniqueBodyDex4", "AddedPhysicalDamageUniqueBodyStr2", "AddedPhysicalDamageUniqueHelmetStr3", "AddedPhysicalDamageUniqueHelmetStrDex4", "AddedPhysicalDamageUniqueJewel9", "AddedPhysicalDamageUniqueRing8", "AddedPhysicalDamageUniqueShieldStrDex3", "AddedPhysicalDamageUnique__3", "AddedPhysicalDamageUnique___1", }, + ["adds # to # physical damage to attacks against frozen enemies"] = { "AddedPhysicalDamageVsFrozenEnemiesUniqueRing30", }, + ["adds # to # physical damage to attacks per # dexterity"] = { "AddedDamagePerDexterityUnique__1", }, + ["adds # to # physical damage to attacks per # strength"] = { "AddedDamagePerStrengthUnique__1", "AddedDamagePerStrengthUnique__2", }, + ["adds # to # physical damage to attacks per level"] = { "PhysicalDamageToAttacksPerLevelUnique__1_", "PhysicalDamageToAttacksPerLevelUnique__2", }, + ["adds # to # physical damage to attacks with this weapon per # player levels"] = { "AddsPhysicalDamagePer3PlayerLevelsUnique__1_", }, + ["adds # to (#) lightning damage"] = { "AddedLightningDamageUniqueBow9", "AddedLocalLightningDamageUniqueClaw1", "GlobalAddedLightningDamageUnique__3", "LocalAddedLightningDamageUniqueBow10", "LocalAddedLightningDamageUniqueOneHandSword3", "LocalAddedLightningDamageUniqueOneHandSword6", "LocalAddedLightningDamageUniqueOneHandSword7", "LocalAddedLightningDamageUnique__2", "LocalAddedLightningDamageUnique__3", "LocalAddedLightningDamageUnique__4", "LocalAddedLightningDamageUnique__5", "LocalAddedLightningDamageUnique__7", "VillageLocalLightningDamage1", "VillageLocalLightningDamage2", "VillageLocalLightningDamage3", "VillageLocalLightningDamageTwoHand1", }, + ["adds # to (#) lightning damage to attacks"] = { "AddedLightningDamageUniqueBelt10", "AddedLightningDamageUniqueBelt12", "AddedLightningDamageUniqueBodyStrDex2", }, + ["adds # to (#) lightning damage to spells"] = { "SpellAddedLightningDamageUnique__3", "SpellAddedLightningDamageUnique__4", "SpellAddedLightningDamageUnique__7", }, + ["adds # to (#) lightning damage to spells and attacks"] = { "AddedLightningDamageToSpellsAndAttacksUniqueHelmetInt10", "AddedLightningDamageUniqueBodyInt5_", "AddedLightningDamageUniqueRing19", }, + ["adds # to (#) physical damage to attacks"] = { "AddedPhysicalDamageUnique__4", }, + ["adds # to maximum life per # intelligence allocated in radius"] = { "LifePerIntelligenceInRadusUniqueJewel52", }, + ["adds #% of your maximum energy shield as cold damage to attacks with this weapon"] = { "VillageAttackColdDamageEnergyShield", }, + ["adds #% of your maximum mana as fire damage to attacks with this weapon"] = { "VillageAttackFireDamageMaximumMana", }, + ["adds (#) to # cold damage to spells"] = { "SpellAddedColdDamageUnique__2", }, + ["adds (#) to # fire damage to spells"] = { "SpellAddedFireDamageUnique__2_", }, + ["adds (#) to (#) chaos damage"] = { "AddedChaosDamageToAttacksAndSpellsUnique__1", "AddedChaosDamageToAttacksAndSpellsUnique__2", "AddedChaosDamageUniqueBow12", "GlobalAddedChaosDamageUnique__1", "GlobalAddedChaosDamageUnique__2", "GlobalAddedChaosDamageUnique__3", "GlobalAddedChaosDamageUnique__4__", "GlobalAddedChaosDamageUnique__5_", "GlobalAddedChaosDamageUnique__6_", "GlobalAddedChaosDamageUnique__7", "LocalAddedChaosDamageImplicitE1", "LocalAddedChaosDamageImplicitE2", "LocalAddedChaosDamageImplicitE3_", "LocalAddedChaosDamageUnique__2", "LocalAddedChaosDamageUnique__3", "LocalAddedChaosDamageUnique__4", "LocalChaosDamageUniqueOneHandSword3", "LocalChaosDamageUniqueTwoHandSword7", "VillageLocalChaosDamage1", "VillageLocalChaosDamage2", "VillageLocalChaosDamage3", "VillageLocalChaosDamageTwoHand1", "VillageLocalChaosDamageTwoHand2", "VillageLocalChaosDamageTwoHand3", }, + ["adds (#) to (#) chaos damage for each spider's web on the enemy"] = { "ChaosDamagePerWebOnEnemyUnique__1", }, + ["adds (#) to (#) chaos damage in off hand"] = { "OffHandAddedChaosDamageUniqueTwoHandAxe6", }, + ["adds (#) to (#) chaos damage to attacks"] = { "AddedChaosDamageUniqueBootsStrDex4", "AddedChaosDamageUniqueQuiver7", "AddedChaosDamageUniqueRing1", "AddedChaosDamageUnique__2", }, + ["adds (#) to (#) chaos damage to attacks while you have a bestial minion"] = { "AddedChaosDamageToAttacksBeastialMinionUnique__1", }, + ["adds (#) to (#) chaos damage to spells"] = { "SpellAddedChaosDamageUniqueWand7", "SpellAddedChaosDamageUnique__1", "SpellAddedChaosDamageUnique__2", }, + ["adds (#) to (#) chaos damage to spells and attacks during any flask effect"] = { "AddedChaosDamageWhileUsingAFlaskUnique__1_", "AddedChaosDamageWhileUsingAFlaskUnique__2", }, + ["adds (#) to (#) cold damage"] = { "AddedColdDamageColdPenetration1", "AddedColdDamageColdPenetration2", "AddedColdDamageColdPenetration3", "AddedColdDamageUniqueBow9", "GlobalAddedColdDamageUnique__1", "GlobalAddedColdDamageUnique__2_", "GlobalAddedColdDamageUnique__3", "GlobalAddedColdDamageUnique__4", "GlobalAddedColdDamageUnique__5", "LocalAddedColdDamageUniqueOneHandMace4_", "LocalAddedColdDamageUniqueOneHandSword3", "LocalAddedColdDamageUniqueStaff13", "LocalAddedColdDamageUniqueStaff14", "LocalAddedColdDamageUnique__10", "LocalAddedColdDamageUnique__11", "LocalAddedColdDamageUnique__2", "LocalAddedColdDamageUnique__3", "LocalAddedColdDamageUnique__4", "LocalAddedColdDamageUnique__5", "LocalAddedColdDamageUnique__6_", "LocalAddedColdDamageUnique__7", "LocalAddedColdDamageUnique__8", "LocalAddedColdDamageUnique__9_", "VillageLocalColdDamage1", "VillageLocalColdDamage2", "VillageLocalColdDamage3", "VillageLocalColdDamageTwoHand1", "VillageLocalColdDamageTwoHand2", "VillageLocalColdDamageTwoHand3", }, + ["adds (#) to (#) cold damage in off hand"] = { "OffHandAddedColdDamageUniqueOneHandAxe2", }, + ["adds (#) to (#) cold damage to attacks"] = { "AddedColdDamageUniqueBelt10", "AddedColdDamageUniqueGlovesStrInt3_", "AddedColdDamageUnique__11", "AddedColdDamageUnique__5", "AddedColdDamageUnique__6", "AddedColdDamageUnique__7", }, + ["adds (#) to (#) cold damage to spells"] = { "SpellAddedColdDamageUniqueBootsStrDex5", "SpellAddedColdDamageUnique__3", "SpellAddedColdDamageUnique__4", "SpellAddedColdDamageUnique__5", "SpellAddedColdDamageUnique__6__", "SpellAddedColdDamageUnique__7", }, + ["adds (#) to (#) cold damage to spells and attacks"] = { "AddedColdDamageSpellsAndAttacksImplicit1", "AddedColdDamageSpellsAndAttacksImplicit2", "AddedColdDamageSpellsAndAttacksImplicit3", "AddedColdDamageToSpellsAndAttacksUnique__1", "AddedColdDamageToSpellsAndAttacksUnique__2", "AddedColdDamageUniqueBodyInt5", "AddedColdDamageUniqueRing18", "AddedColdDamageUniqueRing30", "AddedColdDamageUnique__10", "AddedColdDamageUnique__2", "AddedColdDamageUnique__3", "AddedColdDamageUnique__4", }, + ["adds (#) to (#) cold damage to spells while no life is reserved"] = { "AddedColdDamageWhileNoLifeReservedUnique__1__", }, + ["adds (#) to (#) cold damage while you have avian's might"] = { "AviansMightColdDamageUnique__1", }, + ["adds (#) to (#) fire attack damage per buff on you"] = { "FireDamagePerBuffUniqueJewel17", }, + ["adds (#) to (#) fire damage"] = { "GlobalAddedFireDamageUnique__1", "GlobalAddedFireDamageUnique__2", "GlobalAddedFireDamageUnique__3_", "GlobalAddedFireDamageUnique__4", "GlobalAddedFireDamageUnique__5", "GlobalAddedFireDamageUnique__6", "LocalAddedFireDamageImplicitE1_", "LocalAddedFireDamageImplicitE2_", "LocalAddedFireDamageImplicitE3_", "LocalAddedFireDamageUniqueOneHandAxe7", "LocalAddedFireDamageUniqueOneHandSword3", "LocalAddedFireDamageUniqueStaff13", "LocalAddedFireDamageUniqueTwoHandAxe1", "LocalAddedFireDamageUniqueTwoHandSword6", "LocalAddedFireDamageUnique__2", "LocalAddedFireDamageUnique__3", "LocalAddedFireDamageUnique__4", "LocalAddedFireDamageUnique__5__", "LocalAddedFireDamageUnique__6", "LocalAddedFireDamageUnique__7", "LocalAddedFireDamageUnique__8", "VillageLocalFireDamage1", "VillageLocalFireDamage2", "VillageLocalFireDamage3", "VillageLocalFireDamageTwoHand1", "VillageLocalFireDamageTwoHand2", "VillageLocalFireDamageTwoHand3", }, + ["adds (#) to (#) fire damage in main hand"] = { "MainHandAddedFireDamageUniqueOneHandAxe2", "MainHandAddedFireDamageUniqueTwoHandAxe6", }, + ["adds (#) to (#) fire damage to attacks"] = { "AddedFireDamageImplicitQuiver9New", "AddedFireDamageUniqueAmulet7", "AddedFireDamageUniqueBelt10", "AddedFireDamageUniqueRing10", "AddedFireDamageUniqueRing28", "AddedFireDamageUniqueRing36", }, + ["adds (#) to (#) fire damage to hits with this weapon against blinded enemies"] = { "AddedFireDamageAgainstBlindedEnemiesUnique__1_", }, + ["adds (#) to (#) fire damage to spells"] = { "SpellAddedFireDamageUniqueWand10", "SpellAddedFireDamageUnique__3", "SpellAddedFireDamageUnique__4", "SpellAddedFireDamageUnique__6_", "SpellAddedFireDamageUnique__7", }, + ["adds (#) to (#) fire damage to spells and attacks"] = { "AddedFireDamageSpellsAndAttacksImplicit1", "AddedFireDamageSpellsAndAttacksImplicit2", "AddedFireDamageSpellsAndAttacksImplicit3", "AddedFireDamageUniqueBodyInt5", "AddedFireDamageUniqueRing20", "AddedFireDamageUniqueRing31", "AddedFireDamageUniqueShieldStr3", "AddedFireDamageUnique__1_", "AddedFireDamageUnique__2", "AddedFireDamageUnique__3", }, + ["adds (#) to (#) fire damage to spells while no life is reserved"] = { "AddedFireDamageWhileNoLifeReservedUnique__1", }, + ["adds (#) to (#) fire spell damage per buff on you"] = { "FireSpellDamagePerBuffUniqueJewel17", }, + ["adds (#) to (#) lightning damage"] = { "GlobalAddedLightningDamageUnique__1_", "GlobalAddedLightningDamageUnique__2_", "GlobalAddedLightningDamageUnique__4", "GlobalAddedLightningDamageUnique__5", "LocalAddedLightningDamageUniqueStaff14", "VillageLocalLightningDamageTwoHand2", "VillageLocalLightningDamageTwoHand3", }, + ["adds (#) to (#) lightning damage to attacks"] = { "AddedLightningDamageUniqueGlovesDexInt1", }, + ["adds (#) to (#) lightning damage to attacks during effect"] = { "AddedLightningDamageDuringFlaskEffect__1", }, + ["adds (#) to (#) lightning damage to hits against ignited enemies"] = { "AddedLightningDamageAgainstIgnitedEnemiesUnique__1", }, + ["adds (#) to (#) lightning damage to spells"] = { "SpellAddedLightningDamageTwoHandUniqueStaff8d", "SpellAddedLightningDamageUnique__2", "SpellAddedLightningDamageUnique__5", "SpellAddedLightningDamageUnique__6_", }, + ["adds (#) to (#) lightning damage to spells and attacks"] = { "AddedLightningDamageSpellsAndAttacksImplicit1", "AddedLightningDamageSpellsAndAttacksImplicit2", "AddedLightningDamageSpellsAndAttacksImplicit3", "AddedLightningDamageToSpellsAndAttacksUnique__1", "AddedLightningDamageUnique__1", "AddedLightningDamageUnique__2_", }, + ["adds (#) to (#) lightning damage to spells during effect"] = { "AddedSpellLightningDamageDuringFlaskEffect__1", }, + ["adds (#) to (#) lightning damage to spells while no life is reserved"] = { "AddedLightningDamageWhileNoLifeReservedUnique__1", }, + ["adds (#) to (#) lightning damage to spells while unarmed"] = { "AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4", }, + ["adds (#) to (#) lightning damage to unarmed melee hits"] = { "AddedLightningDamageWhileUnarmedUniqueGlovesStr4_", }, + ["adds (#) to (#) lightning damage while you have avian's might"] = { "AviansMightLightningDamageUnique__1_", }, + ["adds (#) to (#) physical damage"] = { "GlobalAddedPhysicalDamageUnique__1_", "GlobalAddedPhysicalDamageUnique__2", "GlobalAddedPhysicalDamageUnique__3", "LocalAddedPhyiscalDamageUnique__38", "LocalAddedPhyiscalDamageUnique__39", "LocalAddedPhyiscalDamageUnique__40__", "LocalAddedPhyiscalDamageUnique__41_", "LocalAddedPhyiscalDamageUnique__42", "LocalAddedPhyiscalDamageUnique__43", "LocalAddedPhyiscalDamageUnique__44", "LocalAddedPhysicalDamageOneHandSword3", "LocalAddedPhysicalDamageUnique14", "LocalAddedPhysicalDamageUniqueBow1", "LocalAddedPhysicalDamageUniqueBow11", "LocalAddedPhysicalDamageUniqueBow5", "LocalAddedPhysicalDamageUniqueBow7", "LocalAddedPhysicalDamageUniqueClaw9", "LocalAddedPhysicalDamageUniqueDagger11", "LocalAddedPhysicalDamageUniqueDagger12", "LocalAddedPhysicalDamageUniqueDagger8", "LocalAddedPhysicalDamageUniqueOneHandAxe3", "LocalAddedPhysicalDamageUniqueOneHandAxe5", "LocalAddedPhysicalDamageUniqueOneHandAxe6", "LocalAddedPhysicalDamageUniqueOneHandAxe7", "LocalAddedPhysicalDamageUniqueOneHandAxe8", "LocalAddedPhysicalDamageUniqueOneHandMace5", "LocalAddedPhysicalDamageUniqueOneHandSword10", "LocalAddedPhysicalDamageUniqueOneHandSword11", "LocalAddedPhysicalDamageUniqueOneHandSword12", "LocalAddedPhysicalDamageUniqueOneHandSword13", "LocalAddedPhysicalDamageUniqueOneHandSword5", "LocalAddedPhysicalDamageUniqueOneHandSword9", "LocalAddedPhysicalDamageUniqueSceptre10", "LocalAddedPhysicalDamageUniqueSceptre7", "LocalAddedPhysicalDamageUniqueSceptre9", "LocalAddedPhysicalDamageUniqueStaff7", "LocalAddedPhysicalDamageUniqueTwoHandAxe7", "LocalAddedPhysicalDamageUniqueTwoHandMace6", "LocalAddedPhysicalDamageUniqueTwoHandSword8", "LocalAddedPhysicalDamageUniqueWand9", "LocalAddedPhysicalDamageUnique__1", "LocalAddedPhysicalDamageUnique__10", "LocalAddedPhysicalDamageUnique__11", "LocalAddedPhysicalDamageUnique__12", "LocalAddedPhysicalDamageUnique__13", "LocalAddedPhysicalDamageUnique__14", "LocalAddedPhysicalDamageUnique__15", "LocalAddedPhysicalDamageUnique__16_", "LocalAddedPhysicalDamageUnique__17_", "LocalAddedPhysicalDamageUnique__18", "LocalAddedPhysicalDamageUnique__19", "LocalAddedPhysicalDamageUnique__20_", "LocalAddedPhysicalDamageUnique__21", "LocalAddedPhysicalDamageUnique__22", "LocalAddedPhysicalDamageUnique__23_", "LocalAddedPhysicalDamageUnique__24", "LocalAddedPhysicalDamageUnique__25", "LocalAddedPhysicalDamageUnique__26", "LocalAddedPhysicalDamageUnique__27", "LocalAddedPhysicalDamageUnique__28", "LocalAddedPhysicalDamageUnique__29___", "LocalAddedPhysicalDamageUnique__2_", "LocalAddedPhysicalDamageUnique__30_", "LocalAddedPhysicalDamageUnique__31", "LocalAddedPhysicalDamageUnique__32", "LocalAddedPhysicalDamageUnique__33_", "LocalAddedPhysicalDamageUnique__34", "LocalAddedPhysicalDamageUnique__35", "LocalAddedPhysicalDamageUnique__36", "LocalAddedPhysicalDamageUnique__37", "LocalAddedPhysicalDamageUnique__38", "LocalAddedPhysicalDamageUnique__4", "LocalAddedPhysicalDamageUnique__5", "LocalAddedPhysicalDamageUnique__6", "LocalAddedPhysicalDamageUnique__6_", "LocalAddedPhysicalDamageUnique__7", "LocalAddedPhysicalDamageUnique__7_", "LocalAddedPhysicalDamageUnique__8", "LocalAddedPhysicalDamageUnique__9", "LocalAddedPhysicalDamage__1", }, + ["adds (#) to (#) physical damage against bleeding enemies"] = { "AddedPhysicalDamageVsBleedingEnemiesUnique__1", }, + ["adds (#) to (#) physical damage to attacks"] = { "AddedPhysicalDamageImplicitQuiver12New", "AddedPhysicalDamageImplicitQuiver6New", "AddedPhysicalDamageImplicitRing2", "AddedPhysicalDamageUniqueBootsStr3", "AddedPhysicalDamageUniqueRing37", "AddedPhysicalDamageUniqueShieldDex6", "AddedPhysicalDamageUnique__10", "AddedPhysicalDamageUnique__11__", "AddedPhysicalDamageUnique__12", "AddedPhysicalDamageUnique__13", "AddedPhysicalDamageUnique__2", "AddedPhysicalDamageUnique__5", "AddedPhysicalDamageUnique__6_", "AddedPhysicalDamageUnique__8", "AddedPhysicalDamageUnique__9_", }, + ["adds (#) to (#) physical damage to attacks and spells per siphoning charge"] = { "PhysicalDamageToAttacksPerSiphoningChargeUnique__1", }, + ["adds (#) to (#) physical damage to attacks while you have a bestial minion"] = { "AddedPhysicalDamageToAttacksBeastialMinionUnique__1", }, + ["adds (1-10) to (150-200) lightning damage to spells"] = { "SpellAddedLightningDamageUnique__2", }, + ["adds (1-10) to (70-90) lightning damage"] = { "LocalAddedLightningDamageUniqueStaff14", }, + ["adds (1-2) to (22-24) lightning damage to spells and attacks"] = { "AddedLightningDamageSpellsAndAttacksImplicit2", }, + ["adds (1-2) to (3-4) fire damage to spells and attacks"] = { "AddedFireDamageSpellsAndAttacksImplicit1", }, + ["adds (1-2) to (3-5) physical damage"] = { "LocalAddedPhysicalDamageUniqueDagger11", }, + ["adds (1-2) to (43-56) lightning damage"] = { "GlobalAddedLightningDamageUnique__5", }, + ["adds (1-2) to (9-11) lightning damage to spells and attacks"] = { "AddedLightningDamageSpellsAndAttacksImplicit1", }, + ["adds (1-3) to (42-47) lightning damage to spells and attacks"] = { "AddedLightningDamageUnique__1", }, + ["adds (1-3) to (47-52) lightning damage"] = { "GlobalAddedLightningDamageUnique__2_", }, + ["adds (1-3) to (55-62) lightning damage while you have avian's might"] = { "AviansMightLightningDamageUnique__1_", }, + ["adds (1-3) to (62-70) lightning damage to hits against ignited enemies"] = { "AddedLightningDamageAgainstIgnitedEnemiesUnique__1", }, + ["adds (1-3) to (68-72) lightning damage to spells and attacks"] = { "AddedLightningDamageUnique__2_", }, + ["adds (1-4) to (30-50) lightning damage to attacks"] = { "AddedLightningDamageUniqueGlovesDexInt1", }, + ["adds (1-5) to (10-15) fire damage"] = { "GlobalAddedFireDamageUnique__5", }, + ["adds (10-12) to (24-28) cold damage to attacks"] = { "AddedColdDamageUniqueBelt10", }, + ["adds (10-12) to (24-28) cold damage to spells"] = { "SpellAddedColdDamageUnique__6__", }, + ["adds (10-13) to (43-47) lightning damage"] = { "GlobalAddedLightningDamageUnique__1_", }, + ["adds (10-14) to (26-34) fire damage"] = { "GlobalAddedFireDamageUnique__6", }, + ["adds (10-15) to (20-25) chaos damage to attacks"] = { "AddedChaosDamageUniqueRing1", }, + ["adds (10-15) to (20-25) cold damage"] = { "LocalAddedColdDamageUniqueStaff13", }, + ["adds (10-15) to (20-25) fire damage"] = { "LocalAddedFireDamageUniqueStaff13", }, + ["adds (10-15) to (25-30) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandAxe3", }, + ["adds (10-15) to (55-65) lightning damage to attacks during effect"] = { "AddedLightningDamageDuringFlaskEffect__1", }, + ["adds (10-15) to (55-65) lightning damage to spells during effect"] = { "AddedSpellLightningDamageDuringFlaskEffect__1", }, + ["adds (10-16) to (12-30) physical damage"] = { "LocalAddedPhysicalDamageUnique14", }, + ["adds (10-16) to (45-60) physical damage"] = { "LocalAddedPhysicalDamageUnique__16_", }, + ["adds (10-20) to (30-40) physical damage"] = { "LocalAddedPhysicalDamageUnique__20_", }, + ["adds (10-20) to (30-50) cold damage"] = { "LocalAddedColdDamageUniqueOneHandMace4_", }, + ["adds (100-120) to (150-165) physical damage against bleeding enemies"] = { "AddedPhysicalDamageVsBleedingEnemiesUnique__1", }, + ["adds (100-130) to (360-430) physical damage"] = { "LocalAddedPhysicalDamageUnique__24", }, + ["adds (11-14) to (17-21) physical damage"] = { "LocalAddedPhysicalDamageUnique__34", }, + ["adds (11-14) to (18-23) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandAxe5", }, + ["adds (11-15) to (23-26) chaos damage"] = { "VillageLocalChaosDamage2", }, + ["adds (11-15) to (23-26) cold damage"] = { "VillageLocalColdDamage2", }, + ["adds (12-14) to (15-16) physical damage to attacks and spells per siphoning charge"] = { "PhysicalDamageToAttacksPerSiphoningChargeUnique__1", }, + ["adds (12-15) to (24-27) fire damage to attacks"] = { "AddedFireDamageImplicitQuiver9New", }, + ["adds (12-15) to (24-27) physical damage to attacks"] = { "AddedPhysicalDamageImplicitQuiver12New", }, + ["adds (12-15) to (25-30) cold damage to attacks"] = { "AddedColdDamageUnique__6", }, + ["adds (12-15) to (25-30) fire damage to attacks"] = { "AddedFireDamageUniqueRing28", }, + ["adds (12-15) to (30-35) fire damage to spells and attacks"] = { "AddedFireDamageUniqueShieldStr3", }, + ["adds (12-16) to (20-24) physical damage"] = { "LocalAddedPhysicalDamageUniqueBow11", }, + ["adds (12-16) to (20-25) physical damage"] = { "GlobalAddedPhysicalDamageUnique__1_", }, + ["adds (12-17) to (25-29) fire damage"] = { "VillageLocalFireDamage2", }, + ["adds (12-17) to (26-30) chaos damage"] = { "VillageLocalChaosDamageTwoHand1", }, + ["adds (12-17) to (26-30) cold damage"] = { "VillageLocalColdDamageTwoHand1", }, + ["adds (120-140) to (150-170) cold damage to spells"] = { "SpellAddedColdDamageUnique__7", }, + ["adds (121-133) to (184-197) fire damage"] = { "LocalAddedFireDamageImplicitE3_", }, + ["adds (13-17) to (23-29) chaos damage"] = { "AddedChaosDamageToAttacksAndSpellsUnique__2", }, + ["adds (13-17) to (29-37) chaos damage"] = { "AddedChaosDamageToAttacksAndSpellsUnique__1", }, + ["adds (13-18) to (26-32) chaos damage to attacks"] = { "AddedChaosDamageUniqueQuiver7", }, + ["adds (13-18) to (26-32) physical damage to attacks"] = { "AddedPhysicalDamageUnique__10", }, + ["adds (13-18) to (50-56) lightning damage to spells"] = { "SpellAddedLightningDamageUnique__6_", }, + ["adds (130-150) to (270-300) cold damage"] = { "LocalAddedColdDamageUnique__8", }, + ["adds (130-160) to (220-240) fire damage"] = { "LocalAddedFireDamageUnique__5__", }, + ["adds (135-145) to (160-175) physical damage"] = { "LocalAddedPhysicalDamageUniqueStaff7", }, + ["adds (14-16) to (30-32) fire damage to attacks"] = { "AddedFireDamageUniqueBelt10", }, + ["adds (14-16) to (30-32) fire damage to spells"] = { "SpellAddedFireDamageUnique__6_", }, + ["adds (14-20) to (29-33) fire damage"] = { "VillageLocalFireDamageTwoHand1", }, + ["adds (14-29) to (42-47) cold damage to spells and attacks"] = { "AddedColdDamageSpellsAndAttacksImplicit3", }, + ["adds (140-155) to (210-235) physical damage"] = { "LocalAddedPhysicalDamageUniqueDagger8", }, + ["adds (145-157) to (196-210) fire damage to hits with this weapon against blinded enemies"] = { "AddedFireDamageAgainstBlindedEnemiesUnique__1_", }, + ["adds (15-20) to (21-30) chaos damage"] = { "GlobalAddedChaosDamageUnique__5_", }, + ["adds (15-20) to (25-30) physical damage"] = { "LocalAddedPhysicalDamageUniqueBow5", }, + ["adds (15-20) to (25-35) cold damage to spells and attacks"] = { "AddedColdDamageUnique__10", }, + ["adds (15-20) to (28-35) cold damage"] = { "AddedColdDamageColdPenetration2", }, + ["adds (15-20) to (30-40) physical damage"] = { "LocalAddedPhysicalDamageUnique__1", }, + ["adds (15-25) to (40-50) cold damage to spells and attacks"] = { "AddedColdDamageToSpellsAndAttacksUnique__1", }, + ["adds (15-25) to (50-60) physical damage"] = { "LocalAddedPhysicalDamageUnique__19", }, + ["adds (150-200) to (300-350) cold damage"] = { "LocalAddedColdDamageUnique__10", }, + ["adds (150-200) to (330-400) fire damage in main hand"] = { "MainHandAddedFireDamageUniqueTwoHandAxe6", }, + ["adds (150-225) to (525-600) lightning damage to unarmed melee hits"] = { "AddedLightningDamageWhileUnarmedUniqueGlovesStr4_", }, + ["adds (151-199) to (331-401) chaos damage in off hand"] = { "OffHandAddedChaosDamageUniqueTwoHandAxe6", }, + ["adds (16-19) to (25-29) cold damage"] = { "GlobalAddedColdDamageUnique__4", }, + ["adds (16-19) to (25-29) fire damage"] = { "GlobalAddedFireDamageUnique__4", }, + ["adds (16-20) to (25-30) cold damage to spells and attacks"] = { "AddedColdDamageUnique__2", }, + ["adds (16-20) to (25-30) fire damage to spells and attacks"] = { "AddedFireDamageUnique__1_", }, + ["adds (16-21) to (31-36) chaos damage to spells"] = { "SpellAddedChaosDamageUnique__2", }, + ["adds (16-21) to (31-37) chaos damage"] = { "VillageLocalChaosDamage3", }, + ["adds (16-21) to (31-37) cold damage"] = { "VillageLocalColdDamage3", }, + ["adds (16-21) to (32-38) fire damage"] = { "LocalAddedFireDamageUniqueTwoHandAxe1", }, + ["adds (16-22) to (40-45) physical damage"] = { "LocalAddedPhyiscalDamageUnique__40__", }, + ["adds (160-190) to (280-320) cold damage"] = { "LocalAddedColdDamageUnique__7", }, + ["adds (163-199) to (241-293) chaos damage"] = { "LocalAddedChaosDamageUnique__4", }, + ["adds (164-204) to (250-300) cold damage"] = { "LocalAddedColdDamageUnique__11", }, + ["adds (17-19) to (23-29) chaos damage"] = { "GlobalAddedChaosDamageUnique__1", }, + ["adds (17-23) to (29-31) chaos damage"] = { "GlobalAddedChaosDamageUnique__6_", }, + ["adds (17-24) to (35-41) fire damage"] = { "VillageLocalFireDamage3", }, + ["adds (18-22) to (36-44) physical damage"] = { "LocalAddedPhysicalDamageUnique__4", }, + ["adds (18-24) to (30-36) physical damage to attacks while you have a bestial minion"] = { "AddedPhysicalDamageToAttacksBeastialMinionUnique__1", }, + ["adds (18-24) to (32-40) fire damage to attacks"] = { "AddedFireDamageUniqueAmulet7", }, + ["adds (18-36) to (53-59) fire damage to spells and attacks"] = { "AddedFireDamageSpellsAndAttacksImplicit3", }, + ["adds (180-210) to (240-280) cold damage"] = { "LocalAddedColdDamageUnique__4", }, + ["adds (180-230) to (310-360) fire damage"] = { "LocalAddedFireDamageUnique__8", }, + ["adds (19-22) to (30-35) cold damage to spells and attacks"] = { "AddedColdDamageUnique__3", }, + ["adds (19-22) to (30-35) fire damage to spells and attacks"] = { "AddedFireDamageUnique__2", }, + ["adds (2-3) to (22-26) physical damage to attacks"] = { "AddedPhysicalDamageUnique__11__", }, + ["adds (2-3) to (4-7) cold damage to spells and attacks"] = { "AddedColdDamageSpellsAndAttacksImplicit1", }, + ["adds (2-3) to (5-6) cold damage to spells"] = { "SpellAddedColdDamageUnique__3", }, + ["adds (2-3) to (5-6) fire damage to spells"] = { "SpellAddedFireDamageUnique__4", }, + ["adds (2-3) to (5-8) fire spell damage per buff on you"] = { "FireSpellDamagePerBuffUniqueJewel17", }, + ["adds (2-4) to (5-9) cold damage to spells and attacks"] = { "AddedColdDamageUniqueBodyInt5", }, + ["adds (2-4) to (5-9) fire damage to spells and attacks"] = { "AddedFireDamageUniqueBodyInt5", }, + ["adds (2-5) to (7-10) physical damage to attacks"] = { "AddedPhysicalDamageUniqueBootsStr3", }, + ["adds (2-6) to (16-22) physical damage"] = { "LocalAddedPhysicalDamageUniqueClaw9", }, + ["adds (20-23) to (31-35) cold damage"] = { "GlobalAddedColdDamageUnique__2_", }, + ["adds (20-24) to (33-36) cold damage"] = { "GlobalAddedColdDamageUnique__1", }, + ["adds (20-24) to (33-36) fire damage"] = { "GlobalAddedFireDamageUnique__1", }, + ["adds (20-24) to (38-46) fire damage"] = { "LocalAddedFireDamageUnique__2", }, + ["adds (20-24) to (38-46) fire damage to spells"] = { "SpellAddedFireDamageUnique__3", }, + ["adds (20-25) to (26-35) cold damage"] = { "GlobalAddedColdDamageUnique__3", }, + ["adds (20-25) to (26-35) fire damage"] = { "GlobalAddedFireDamageUnique__3_", }, + ["adds (20-25) to (30-35) fire damage to spells and attacks"] = { "AddedFireDamageUniqueRing31", }, + ["adds (20-25) to (30-50) cold damage to spells and attacks"] = { "AddedColdDamageUniqueRing18", }, + ["adds (20-25) to (30-50) fire damage to spells and attacks"] = { "AddedFireDamageUniqueRing20", }, + ["adds (20-25) to (37-40) cold damage while you have avian's might"] = { "AviansMightColdDamageUnique__1", }, + ["adds (20-25) to (40-50) physical damage"] = { "LocalAddedPhyiscalDamageUnique__42", }, + ["adds (20-30) to (40-50) physical damage"] = { "LocalAddedPhyiscalDamageUnique__44", }, + ["adds (20-30) to 40 cold damage to spells"] = { "SpellAddedColdDamageUnique__2", }, + ["adds (20-30) to 40 fire damage to spells"] = { "SpellAddedFireDamageUnique__2_", }, + ["adds (21-28) to (42-48) chaos damage"] = { "VillageLocalChaosDamageTwoHand2", }, + ["adds (21-28) to (42-48) cold damage"] = { "VillageLocalColdDamageTwoHand2", }, + ["adds (22-27) to (34-38) fire damage"] = { "GlobalAddedFireDamageUnique__2", }, + ["adds (220-240) to (270-300) physical damage"] = { "LocalAddedPhysicalDamageUnique__31", }, + ["adds (223-250) to (264-280) fire damage"] = { "LocalAddedFireDamageUnique__4", }, + ["adds (225-265) to (315-385) physical damage"] = { "LocalAddedPhysicalDamageUnique__28", }, + ["adds (23-31) to (37-47) chaos damage to attacks while you have a bestial minion"] = { "AddedChaosDamageToAttacksBeastialMinionUnique__1", }, + ["adds (23-31) to (47-54) fire damage"] = { "VillageLocalFireDamageTwoHand2", }, + ["adds (24-30) to (34-40) physical damage"] = { "LocalAddedPhysicalDamageUnique__9", }, + ["adds (242-260) to (268-285) physical damage"] = { "LocalAddedPhysicalDamageUnique__33_", }, + ["adds (25-30) to (40-45) cold damage to spells and attacks"] = { "AddedColdDamageUnique__4", }, + ["adds (25-30) to (40-45) fire damage to spells and attacks"] = { "AddedFireDamageUnique__3", }, + ["adds (25-30) to (40-50) cold damage to spells"] = { "SpellAddedColdDamageUniqueBootsStrDex5", }, + ["adds (25-35) to (36-45) physical damage"] = { "LocalAddedPhysicalDamageUniqueBow7", }, + ["adds (25-35) to (45-55) physical damage"] = { "LocalAddedPhyiscalDamageUnique__38", }, + ["adds (25-35) to (45-60) cold damage"] = { "LocalAddedColdDamageUniqueStaff14", }, + ["adds (25-35) to (50-65) physical damage"] = { "LocalAddedPhysicalDamageUnique__13", }, + ["adds (25-50) to (85-125) physical damage"] = { "LocalAddedPhysicalDamageUnique__2_", }, + ["adds (255-285) to (300-330) cold damage in off hand"] = { "OffHandAddedColdDamageUniqueOneHandAxe2", }, + ["adds (255-285) to (300-330) fire damage in main hand"] = { "MainHandAddedFireDamageUniqueOneHandAxe2", }, + ["adds (26-32) to (36-42) cold damage"] = { "LocalAddedColdDamageUnique__2", }, + ["adds (26-32) to (36-42) physical damage"] = { "LocalAddedPhysicalDamageUnique__6_", }, + ["adds (26-32) to (42-48) cold damage to attacks"] = { "AddedColdDamageUnique__5", }, + ["adds (26-35) to (95-105) lightning damage to spells"] = { "SpellAddedLightningDamageUnique__5", }, + ["adds (26-38) to (52-70) chaos damage"] = { "LocalAddedChaosDamageImplicitE1", }, + ["adds (29-40) to (58-68) chaos damage"] = { "VillageLocalChaosDamageTwoHand3", }, + ["adds (29-40) to (58-68) cold damage"] = { "VillageLocalColdDamageTwoHand3", }, + ["adds (3-15) to (80-100) lightning damage to spells and attacks"] = { "AddedLightningDamageToSpellsAndAttacksUnique__1", }, + ["adds (3-4) to (10-14) physical damage to attacks"] = { "AddedPhysicalDamageImplicitRing2", }, + ["adds (3-4) to (5-6) cold damage"] = { "AddedColdDamageColdPenetration1", }, + ["adds (3-4) to (5-8) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandSword12", }, + ["adds (3-5) to (7-10) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandAxe6", }, + ["adds (3-5) to (70-82) lightning damage to spells and attacks"] = { "AddedLightningDamageSpellsAndAttacksImplicit3", }, + ["adds (3-5) to (8-12) fire attack damage per buff on you"] = { "FireDamagePerBuffUniqueJewel17", }, + ["adds (3-6) to (33-66) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandSword10", }, + ["adds (3-6) to (9-13) physical damage"] = { "LocalAddedPhysicalDamageUniqueDagger12", }, + ["adds (30-38) to (40-50) cold damage"] = { "LocalAddedColdDamageUnique__3", }, + ["adds (30-38) to (40-50) physical damage"] = { "LocalAddedPhysicalDamageUnique__11", }, + ["adds (30-40) to (50-60) chaos damage to spells and attacks during any flask effect"] = { "AddedChaosDamageWhileUsingAFlaskUnique__1_", "AddedChaosDamageWhileUsingAFlaskUnique__2", }, + ["adds (30-40) to (60-70) cold damage to attacks"] = { "AddedColdDamageUnique__11", }, + ["adds (30-40) to (70-80) physical damage"] = { "LocalAddedPhysicalDamageUnique__18", }, + ["adds (30-40) to (80-100) cold damage to attacks"] = { "AddedColdDamageUnique__7", }, + ["adds (30-45) to (60-80) fire damage"] = { "LocalAddedFireDamageUnique__6", }, + ["adds (30-45) to (80-100) physical damage"] = { "LocalAddedPhysicalDamageUnique__12", }, + ["adds (30-50) to (65-80) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandSword9", }, + ["adds (310-330) to (370-390) physical damage"] = { "LocalAddedPhysicalDamageUniqueTwoHandAxe7", }, + ["adds (310-350) to (460-500) cold damage"] = { "LocalAddedColdDamageUnique__6_", }, + ["adds (315-360) to (450-540) fire damage"] = { "LocalAddedFireDamageUnique__3", }, + ["adds (32-44) to (65-76) fire damage"] = { "VillageLocalFireDamageTwoHand3", }, + ["adds (35-39) to (54-60) cold damage to spells"] = { "SpellAddedColdDamageUnique__5", }, + ["adds (35-40) to (55-60) physical damage"] = { "LocalAddedPhysicalDamageUnique__8", }, + ["adds (35-46) to (85-128) physical damage"] = { "LocalAddedPhysicalDamageUniqueSceptre10", }, + ["adds (35-50) to (100-125) physical damage"] = { "LocalAddedPhysicalDamageUnique__23_", }, + ["adds (385-440) to (490-545) cold damage"] = { "LocalAddedColdDamageUnique__9_", }, + ["adds (4-10) to (14-36) physical damage to attacks"] = { "AddedPhysicalDamageUnique__6_", }, + ["adds (4-5) to (76-88) lightning damage"] = { "VillageLocalLightningDamageTwoHand2", }, + ["adds (4-6) to (8-12) fire damage to spells"] = { "SpellAddedFireDamageUniqueWand10", }, + ["adds (4-8) to (10-12) cold damage to spells and attacks"] = { "AddedColdDamageSpellsAndAttacksImplicit2", }, + ["adds (40-50) to (130-150) physical damage"] = { "LocalAddedPhysicalDamageUnique__14", }, + ["adds (40-60) to (90-110) cold damage to spells"] = { "SpellAddedColdDamageUnique__4", }, + ["adds (40-65) to (70-100) physical damage"] = { "LocalAddedPhyiscalDamageUnique__41_", }, + ["adds (42-47) to (66-71) physical damage"] = { "LocalAddedPhysicalDamageUnique__37", }, + ["adds (42-54) to (78-88) cold damage to spells while no life is reserved"] = { "AddedColdDamageWhileNoLifeReservedUnique__1__", }, + ["adds (425-475) to (550-600) fire damage"] = { "LocalAddedFireDamageUniqueTwoHandSword6", }, + ["adds (43-55) to (81-104) chaos damage"] = { "LocalAddedChaosDamageImplicitE2", }, + ["adds (43-56) to (330-400) physical damage"] = { "LocalAddedPhysicalDamageUniqueTwoHandMace6", }, + ["adds (45-60) to (100-120) physical damage"] = { "LocalAddedPhysicalDamageUnique__30_", }, + ["adds (46-55) to (69-83) fire damage"] = { "LocalAddedFireDamageImplicitE1_", }, + ["adds (46-63) to (92-113) chaos damage"] = { "LocalAddedChaosDamageImplicitE3_", }, + ["adds (48-53) to (58-60) chaos damage"] = { "GlobalAddedChaosDamageUnique__4__", }, + ["adds (48-56) to (73-84) chaos damage to spells"] = { "SpellAddedChaosDamageUnique__1", }, + ["adds (48-60) to (72-90) cold damage"] = { "AddedColdDamageUniqueBow9", }, + ["adds (49-98) to (101-140) chaos damage"] = { "LocalChaosDamageUniqueOneHandSword3", }, + ["adds (49-98) to (101-140) cold damage"] = { "LocalAddedColdDamageUniqueOneHandSword3", }, + ["adds (49-98) to (101-140) fire damage"] = { "LocalAddedFireDamageUniqueOneHandSword3", }, + ["adds (49-98) to (101-140) physical damage"] = { "LocalAddedPhysicalDamageOneHandSword3", }, + ["adds (5-10) to (11-13) fire damage to spells and attacks"] = { "AddedFireDamageSpellsAndAttacksImplicit2", }, + ["adds (5-10) to (11-15) physical damage to attacks"] = { "AddedPhysicalDamageUniqueRing37", }, + ["adds (5-10) to (13-20) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandSword11", }, + ["adds (5-10) to (15-23) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandMace5", }, + ["adds (5-14) to (160-173) lightning damage to spells while no life is reserved"] = { "AddedLightningDamageWhileNoLifeReservedUnique__1", }, + ["adds (5-15) to (100-140) lightning damage to spells"] = { "SpellAddedLightningDamageTwoHandUniqueStaff8d", }, + ["adds (5-15) to (20-25) fire damage"] = { "LocalAddedFireDamageUniqueOneHandAxe7", }, + ["adds (5-15) to (20-25) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandAxe7", }, + ["adds (5-15) to (25-50) physical damage to attacks"] = { "AddedPhysicalDamageUnique__2", }, + ["adds (5-7) to (11-12) physical damage to attacks"] = { "AddedPhysicalDamageUnique__9_", }, + ["adds (5-7) to (13-15) cold damage to spells and attacks"] = { "AddedColdDamageToSpellsAndAttacksUnique__2", }, + ["adds (5-8) to (10-14) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandSword13", }, + ["adds (5-8) to (106-123) lightning damage"] = { "VillageLocalLightningDamageTwoHand3", }, + ["adds (5-8) to (12-16) physical damage to attacks"] = { "AddedPhysicalDamageUnique__5", }, + ["adds (5-8) to (13-17) physical damage"] = { "LocalAddedPhysicalDamageUniqueWand9", }, + ["adds (5-8) to (15-20) physical damage"] = { "LocalAddedPhysicalDamageUnique__10", }, + ["adds (5-9) to (13-17) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandAxe8", }, + ["adds (5-9) to (13-18) physical damage"] = { "LocalAddedPhyiscalDamageUnique__43", }, + ["adds (50-55) to (72-80) chaos damage"] = { "GlobalAddedChaosDamageUnique__2", "GlobalAddedChaosDamageUnique__3", }, + ["adds (50-70) to (135-165) physical damage"] = { "LocalAddedPhysicalDamageUnique__7", }, + ["adds (50-80) to (130-180) chaos damage"] = { "AddedChaosDamageUniqueBow12", }, + ["adds (53-67) to (71-89) chaos damage"] = { "LocalAddedChaosDamageUnique__2", }, + ["adds (54-64) to (96-107) fire damage to spells while no life is reserved"] = { "AddedFireDamageWhileNoLifeReservedUnique__1", }, + ["adds (6-10) to (16-22) physical damage to attacks"] = { "AddedPhysicalDamageUnique__13", }, + ["adds (6-10) to (33-38) lightning damage"] = { "GlobalAddedLightningDamageUnique__4", }, + ["adds (6-12) to (20-25) physical damage"] = { "LocalAddedPhysicalDamageUnique__17_", }, + ["adds (6-9) to (12-16) chaos damage to attacks"] = { "AddedChaosDamageUniqueBootsStrDex4", }, + ["adds (60-68) to (90-102) chaos damage"] = { "LocalChaosDamageUniqueTwoHandSword7", }, + ["adds (60-70) to (71-80) physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandSword5", }, + ["adds (60-72) to (88-100) cold damage to attacks"] = { "AddedColdDamageUniqueGlovesStrInt3_", }, + ["adds (60-80) to (150-180) physical damage"] = { "LocalAddedPhysicalDamageUnique__6", }, + ["adds (60-85) to (100-133) physical damage"] = { "LocalAddedPhysicalDamageUnique__38", }, + ["adds (600-650) to (750-800) chaos damage"] = { "LocalAddedChaosDamageUnique__3", }, + ["adds (65-75) to (100-110) physical damage"] = { "LocalAddedPhysicalDamageUniqueTwoHandSword8", }, + ["adds (65-85) to (100-160) physical damage"] = { "LocalAddedPhysicalDamageUniqueSceptre7", }, + ["adds (7-10) to (15-18) chaos damage to attacks"] = { "AddedChaosDamageUnique__2", }, + ["adds (7-10) to (15-20) cold damage to spells and attacks"] = { "AddedColdDamageUniqueRing30", }, + ["adds (7-10) to (15-25) physical damage"] = { "LocalAddedPhysicalDamage__1", }, + ["adds (7-11) to (17-23) chaos damage"] = { "GlobalAddedChaosDamageUnique__7", }, + ["adds (7-14) to (24-34) physical damage"] = { "LocalAddedPhysicalDamageUniqueBow1", }, + ["adds (7-9) to (13-16) physical damage to attacks"] = { "AddedPhysicalDamageImplicitQuiver6New", }, + ["adds (7-9) to (14-16) chaos damage"] = { "VillageLocalChaosDamage1", }, + ["adds (7-9) to (14-16) cold damage"] = { "VillageLocalColdDamage1", }, + ["adds (70-80) to (340-375) physical damage"] = { "LocalAddedPhysicalDamageUnique__26", }, + ["adds (70-85) to (110-118) physical damage"] = { "LocalAddedPhysicalDamageUnique__36", }, + ["adds (75-85) to (115-128) cold damage"] = { "AddedColdDamageColdPenetration3", }, + ["adds (75-92) to (125-154) physical damage"] = { "LocalAddedPhysicalDamageUnique__7_", }, + ["adds (76-98) to (161-176) fire damage"] = { "LocalAddedFireDamageUnique__7", }, + ["adds (8-10) to (13-15) chaos damage for each spider's web on the enemy"] = { "ChaosDamagePerWebOnEnemyUnique__1", }, + ["adds (8-10) to (13-15) physical damage"] = { "GlobalAddedPhysicalDamageUnique__2", }, + ["adds (8-10) to (15-18) fire damage"] = { "VillageLocalFireDamage1", }, + ["adds (8-12) to (14-20) physical damage"] = { "GlobalAddedPhysicalDamageUnique__3", }, + ["adds (8-12) to (15-20) physical damage to attacks"] = { "AddedPhysicalDamageUniqueShieldDex6", "AddedPhysicalDamageUnique__8", }, + ["adds (8-12) to (16-24) physical damage"] = { "LocalAddedPhysicalDamageUnique__5", }, + ["adds (8-12) to (18-24) physical damage to attacks"] = { "AddedPhysicalDamageUnique__12", }, + ["adds (8-12) to (18-26) cold damage"] = { "GlobalAddedColdDamageUnique__5", }, + ["adds (8-12) to (20-30) fire damage to attacks"] = { "AddedFireDamageUniqueRing36", }, + ["adds (8-13) to (20-30) physical damage"] = { "LocalAddedPhysicalDamageUnique__25", }, + ["adds (8-13) to (26-31) physical damage"] = { "LocalAddedPhysicalDamageUniqueSceptre9", }, + ["adds (8-15) to (20-28) fire damage to attacks"] = { "AddedFireDamageUniqueRing10", }, + ["adds (80-100) to (160-200) cold damage"] = { "LocalAddedColdDamageUnique__5", }, + ["adds (80-100) to (200-225) physical damage"] = { "LocalAddedPhysicalDamageUnique__29___", }, + ["adds (80-115) to (150-205) physical damage"] = { "LocalAddedPhysicalDamageUnique__27", }, + ["adds (80-95) to (220-240) physical damage"] = { "LocalAddedPhysicalDamageUnique__22", }, + ["adds (80-97) to (126-144) fire damage"] = { "LocalAddedFireDamageImplicitE2_", }, + ["adds (83-91) to (123-130) physical damage"] = { "LocalAddedPhysicalDamageUnique__35", }, + ["adds (85-110) to (135-150) physical damage"] = { "LocalAddedPhyiscalDamageUnique__39", }, + ["adds (9-12) to (19-22) fire damage to spells"] = { "SpellAddedFireDamageUnique__7", }, + ["adds (90-110) to (145-170) physical damage"] = { "LocalAddedPhysicalDamageUnique__21", }, + ["adds (90-115) to (230-260) physical damage"] = { "LocalAddedPhysicalDamageUnique__15", }, + ["adds (90-130) to (140-190) chaos damage to spells"] = { "SpellAddedChaosDamageUniqueWand7", }, + ["adds (90-135) to (315-360) lightning damage to spells while unarmed"] = { "AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4", }, + ["adds (94-98) to (115-121) physical damage"] = { "LocalAddedPhysicalDamageUnique__32", }, + ["adds 0 to 3 lightning damage to attacks per 10 intelligence"] = { "LightningDamageToAttacksPerIntelligenceUnique__1", }, + ["adds 1 small passive skill which grants nothing"] = { "ExpansionJewelEmptyPassiveUnique__1", }, + ["adds 1 to (10-12) lightning damage to spells"] = { "SpellAddedLightningDamageUnique__3", }, + ["adds 1 to (120-150) lightning damage"] = { "AddedLightningDamageUniqueBow9", }, + ["adds 1 to (15-20) physical damage to attacks"] = { "AddedPhysicalDamageUnique__4", }, + ["adds 1 to (20-30) lightning damage to attacks"] = { "AddedLightningDamageUniqueBodyStrDex2", }, + ["adds 1 to (210-250) lightning damage"] = { "LocalAddedLightningDamageUniqueOneHandSword3", }, + ["adds 1 to (30-50) lightning damage to attacks"] = { "AddedLightningDamageUniqueBelt12", }, + ["adds 1 to (35-45) lightning damage"] = { "LocalAddedLightningDamageUnique__2", }, + ["adds 1 to (4-12) lightning damage to spells and attacks"] = { "AddedLightningDamageUniqueBodyInt5_", }, + ["adds 1 to (40-50) lightning damage"] = { "LocalAddedLightningDamageUniqueOneHandSword7", }, + ["adds 1 to (45-55) lightning damage"] = { "LocalAddedLightningDamageUnique__3", }, + ["adds 1 to (48-60) lightning damage"] = { "GlobalAddedLightningDamageUnique__3", }, + ["adds 1 to (50-60) lightning damage"] = { "LocalAddedLightningDamageUnique__4", }, + ["adds 1 to (50-70) lightning damage to spells and attacks"] = { "AddedLightningDamageUniqueRing19", }, + ["adds 1 to (550-600) lightning damage"] = { "LocalAddedLightningDamageUnique__7", }, + ["adds 1 to (550-650) lightning damage"] = { "LocalAddedLightningDamageUniqueOneHandSword6", }, + ["adds 1 to (60-68) lightning damage to attacks"] = { "AddedLightningDamageUniqueBelt10", }, + ["adds 1 to (60-68) lightning damage to spells"] = { "SpellAddedLightningDamageUnique__7", }, + ["adds 1 to (60-70) lightning damage"] = { "LocalAddedLightningDamageUnique__5", }, + ["adds 1 to (60-70) lightning damage to spells"] = { "SpellAddedLightningDamageUnique__4", }, + ["adds 1 to (60-80) lightning damage to spells and attacks"] = { "AddedLightningDamageToSpellsAndAttacksUniqueHelmetInt10", }, + ["adds 1 to (600-750) lightning damage"] = { "LocalAddedLightningDamageUniqueBow10", }, + ["adds 1 to (650-850) lightning damage"] = { "AddedLocalLightningDamageUniqueClaw1", }, + ["adds 1 to 10 lightning damage for each shocked enemy you've killed recently"] = { "AddedLightningDamagePerShockedEnemyKilledUnique__1", }, + ["adds 1 to 100 lightning damage to attacks"] = { "AddedLightningDamageUniqueGlovesDexInt3", }, + ["adds 1 to 12 lightning damage to attacks with this weapon per 10 dexterity"] = { "AddedLightningDamagePerDexterityUnique__1", }, + ["adds 1 to 12 lightning damage to attacks with this weapon per 10 intelligence"] = { "AddedLightningDamagePerIntelligenceUnique__1", }, + ["adds 1 to 120 lightning damage to attacks"] = { "AddedLightningDamageUniqueBootsStrInt1", }, + ["adds 1 to 13 lightning damage to attacks"] = { "AddedLightningDamageUniqueGlovesInt1", }, + ["adds 1 to 2 cold damage to attacks per 10 dexterity"] = { "ColdDamageToAttacksPerDexterityUnique__1", }, + ["adds 1 to 2 fire damage to attacks per 10 strength"] = { "FireDamageToAttacksPerStrengthUnique__1", }, + ["adds 1 to 2 lightning damage to attacks"] = { "AddedLightningDamagePerDexInRadiusUniqueJewel53", }, + ["adds 1 to 2 physical damage to attacks per level"] = { "PhysicalDamageToAttacksPerLevelUnique__1_", }, + ["adds 1 to 3 physical damage to attacks per 25 dexterity"] = { "AddedDamagePerDexterityUnique__1", }, + ["adds 1 to 3 physical damage to attacks per 25 strength"] = { "AddedDamagePerStrengthUnique__1", }, + ["adds 1 to 30 lightning damage to spells and attacks"] = { "AddedLightningDamageUniqueHelmetStrInt1", }, + ["adds 1 to 4 physical damage"] = { "LocalAddedPhysicalDamageUniqueDescentDagger1", }, + ["adds 1 to 4 physical damage to attacks"] = { "AddedPhysicalDamageImplicitQuiver1", "AddedPhysicalDamageImplicitQuiver1New", "AddedPhysicalDamageImplicitRing1", }, + ["adds 1 to 40 lightning damage to attacks"] = { "AddedLightningDamageUniqueBodyInt8", }, + ["adds 1 to 5 lightning damage to attacks"] = { "AddedLightningDamageImplicitQuiver1", }, + ["adds 1 to 5 lightning damage to attacks with this weapon per 10 intelligence"] = { "AddedLightningDamagePerIntelligenceUnique__2", }, + ["adds 1 to 59 chaos damage"] = { "LocalAddedChaosDamageUnique___1", }, + ["adds 1 to 75 lightning damage"] = { "LocalAddedLightningDamageUnique__6", }, + ["adds 1 to 80 chaos damage to attacks"] = { "AddedChaosDamageUniqueBootsStrInt2", }, + ["adds 1 to 80 chaos damage to attacks per 80 strength"] = { "AddedChaosDamageToAttacksPer50StrengthUnique__1", }, + ["adds 1 to 85 lightning damage"] = { "AddedLightningDamageUniqueBow8", }, + ["adds 1 to 9 lightning damage"] = { "LocalAddedLightningDamageUniqueDescentTwoHandSword1_", }, + ["adds 1 to maximum life per 3 intelligence allocated in radius"] = { "LifePerIntelligenceInRadusUniqueJewel52", }, + ["adds 10 to 130 lightning damage to attacks"] = { "AddedLightningDamageUnique__3", }, + ["adds 10 to 15 physical damage"] = { "LocalAddedPhysicalDamageUniqueOneHandMace8", "LocalAddedPhysicalDamageUniqueRapier2", }, + ["adds 10 to 15 physical damage to attacks against frozen enemies"] = { "AddedPhysicalDamageVsFrozenEnemiesUniqueRing30", }, + ["adds 10 to 20 cold damage to attacks"] = { "AddedColdDamageUnique__1", }, + ["adds 10 to 20 cold damage to spells per power charge"] = { "AddedColdDamagePerPowerChargeUnique__1", }, + ["adds 10 to 20 fire damage to attacks"] = { "AddedFireDamageUniqueShieldDemigods", }, + ["adds 10 to 20 physical damage to attacks"] = { "AddedPhysicalDamageUniqueAmulet25", "AddedPhysicalDamageUniqueBelt4", "AddedPhysicalDamageUnique__3", }, + ["adds 100 to 100 cold damage"] = { "LocalAddedColdDamageUnique__1", }, + ["adds 100 to 100 cold damage to spells"] = { "SpellAddedColdDamageUnique__1", }, + ["adds 100 to 100 fire damage"] = { "LocalAddedFireDamageUnique__1", }, + ["adds 100 to 100 fire damage to spells"] = { "SpellAddedFireDamageUnique__1", }, + ["adds 100 to 100 lightning damage"] = { "LocalAddedLightningDamageUnique__1", }, + ["adds 100 to 100 lightning damage to spells"] = { "SpellAddedLightningDamageUnique__1", }, + ["adds 11 to 23 cold damage"] = { "LocalAddedColdDamageUniqueTwoHandMace2", }, + ["adds 12 to 15 cold damage to attacks"] = { "AddedColdDamageUniqueShieldStrDex3", }, + ["adds 12 to 24 chaos damage to attacks"] = { "AddedChaosDamageUnique__1", }, + ["adds 12 to 24 fire damage to attacks"] = { "AddedFireDamageUniqueBootsStrDex1", }, + ["adds 12 to 24 physical damage"] = { "LocalAddedPhysicalDamageUniqueDagger2", }, + ["adds 15 to 25 cold damage to attacks"] = { "AddedColdDamageUniqueDexHelmet1", }, + ["adds 15 to 25 fire damage to attacks against ignited enemies"] = { "LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9", }, + ["adds 19 to 43 chaos damage to attacks"] = { "AddedChaosDamageUniqueAmulet23", }, + ["adds 2 to (25-29) lightning damage"] = { "VillageLocalLightningDamage1", }, + ["adds 2 to (41-48) lightning damage"] = { "VillageLocalLightningDamage2", }, + ["adds 2 to 10 physical damage"] = { "LocalAddedPhysicalDamagePercentUniqueClaw4", }, + ["adds 2 to 3 cold damage to attacks"] = { "AddedColdDamageImplicitQuiver1", }, + ["adds 2 to 3 physical damage to attacks per level"] = { "PhysicalDamageToAttacksPerLevelUnique__2", }, + ["adds 2 to 4 cold damage"] = { "LocalAddedColdDamageUniqueDescentOneHandAxe1", }, + ["adds 2 to 4 fire damage to attacks"] = { "AddedFireDamageImplicitQuiver1", }, + ["adds 2 to 4 physical damage"] = { "LocalAddedPhysicalDamageUniqueDescentOneHandAxe1", "LocalAddedPhysicalDamageUniqueDescentStaff1", }, + ["adds 2 to 4 physical damage to attacks"] = { "AddedPhysicalDamageUniqueBodyStr2", }, + ["adds 2 to 5 fire damage to attacks for every 1% your light radius is above base value"] = { "AddedFireDamageFromLightRadiusUnique__1", }, + ["adds 2 to 6 physical damage"] = { "LocalAddedPhysicalDamageUniqueDescentClaw1", "LocalAddedPhysicalDamageUniqueDescentOneHandSword1", "LocalAddedPhysicalDamageUniqueOneHandSword1", }, + ["adds 20 to 30 physical damage to attacks"] = { "AddedPhysicalDamageUniqueHelmetStrDex4", }, + ["adds 20 to 50 physical damage"] = { "LocalAddedPhysicalDamageUnique__3", }, + ["adds 25 to 30 physical damage"] = { "LocalAddedPhysicalDamageUniqueClaw3", }, + ["adds 25 to 50 cold damage"] = { "LocalAddedColdDamageUniqueClaw5", }, + ["adds 25 to 50 fire damage"] = { "LocalAddedFireDamageUniqueBow6", }, + ["adds 250 to 300 cold damage to retaliation skills"] = { "CounterAttacksAddedColdDamageUnique__1", }, + ["adds 3 jewel socket passive skills"] = { "ExpansionJewel3JewelSockets", }, + ["adds 3 small passive skills which grant nothing"] = { "ExpansionJewelEmptyPassiveUnique__2", }, + ["adds 3 to (46-53) lightning damage"] = { "VillageLocalLightningDamageTwoHand1", }, + ["adds 3 to (57-67) lightning damage"] = { "VillageLocalLightningDamage3", }, + ["adds 3 to 30 lightning damage"] = { "AddedLightningDamageUniqueDagger3", }, + ["adds 3 to 5 fire damage to attacks"] = { "AddedFireDamageImplicitQuiver2New", }, + ["adds 3 to 5 physical damage to attacks with this weapon per 3 player levels"] = { "AddsPhysicalDamagePer3PlayerLevelsUnique__1_", }, + ["adds 3 to 6 fire damage"] = { "LocalAddedFireDamageUniqueDescentOneHandMace1", }, + ["adds 3 to 7 fire damage"] = { "LocalAddedFireDamageUniqueRapier1", }, + ["adds 3 to 7 physical damage to attacks"] = { "AddedPhysicalDamageUniqueJewel9", }, + ["adds 3 to 9 lightning damage to spells per power charge"] = { "AddedLightningDamagePerPowerChargeUnique__1", }, + ["adds 30 to 40 physical damage"] = { "LocalAddedPhysicalDamageOneHandAxe1", }, + ["adds 30 to 65 cold damage to attacks"] = { "AddedColdDamageUnique__9", }, + ["adds 35 to 70 cold damage"] = { "LocalAddedColdDamageUniqueTwoHandSword2", }, + ["adds 37 to 71 chaos damage for each curse on the enemy"] = { "AddedChaosDamagePerCurseUnique__1", }, + ["adds 4 passive skills"] = { "JewelExpansionPassiveNodesUnique__1", }, + ["adds 4 to 7 fire damage to attacks with this weapon per 10 strength"] = { "AddedFireDamagePerStrengthUnique__1", }, + ["adds 4 to 8 fire damage to attacks"] = { "AddedFireDamageUniqueGlovesInt1", }, + ["adds 4 to 8 physical damage to attacks"] = { "AddedPhysicalDamageUniqueShieldStrDex3", }, + ["adds 40 to 60 cold damage against chilled enemies"] = { "AddedColdDamageAgainstFrozenEnemiesUnique__1", }, + ["adds 40 to 60 physical damage to attacks"] = { "AddedPhysicalDamageUniqueHelmetStr3", }, + ["adds 40 to 75 fire damage to attacks"] = { "AddedFireDamageUnique__4", }, + ["adds 45 to 75 fire damage if you've blocked recently"] = { "AddedFireDamageIfBlockedRecentlyUnique__1", }, + ["adds 5 small passive skills which grant nothing"] = { "ExpansionJewelEmptyPassiveUnique_3_", }, + ["adds 5 to 10 physical damage"] = { "LocalAddedPhysicalDamageUniqueTwoHandAxe3", }, + ["adds 5 to 10 physical damage to attacks"] = { "AddedPhysicalDamageUnique___1", }, + ["adds 5 to 12 physical damage to attacks"] = { "AddedPhysicalDamageUniqueBodyDex4", }, + ["adds 5 to 25 physical damage"] = { "LocalAddedPhysicalDamageUniqueTwoHandMace7", }, + ["adds 5 to 8 physical damage per endurance charge"] = { "AddedPhysicalDamagePerEnduranceChargeUnique__1", }, + ["adds 5 to 9 physical damage to attacks"] = { "AddedPhysicalDamageUniqueRing8", }, + ["adds 5% of your maximum energy shield as cold damage to attacks with this weapon"] = { "VillageAttackColdDamageEnergyShield", }, + ["adds 5% of your maximum mana as fire damage to attacks with this weapon"] = { "VillageAttackFireDamageMaximumMana", }, + ["adds 50 to 70 cold damage to spells per power charge"] = { "AddedColdDamagePerPowerChargeUnique__2", }, + ["adds 60 to 80 cold damage against chilled enemies"] = { "AddedColdDamageAgainstFrozenEnemiesUnique__2", }, + ["adds 7 small passive skills which grant nothing"] = { "ExpansionJewelEmptyPassiveUnique__4", }, + ["adds 8 to 24 physical damage to attacks per 25 strength"] = { "AddedDamagePerStrengthUnique__2", }, + ["adds disciple of kitava"] = { "JewelExpansionKeystoneDiscipleOfKitava_", }, + ["adds hollow palm technique"] = { "JewelExpansionHollowPalmTechnique", }, + ["adds kineticism"] = { "JewelExpansionKineticism", }, + ["adds knockback to melee attacks during effect"] = { "KnockbackOnFlaskUseUniqueFlask9", }, + ["adds lone messenger"] = { "JewelExpansionLoneMessenger_", }, + ["adds nature's patience"] = { "JewelExpansionNaturesPatience", }, + ["adds secrets of suffering"] = { "JewelExpansionSecretsOfSuffering", }, + ["adds veteran's awareness"] = { "JewelExpansionVeteransAwareness_", }, + ["agony crawler deals (#)% increased damage"] = { "HeraldBonusAgonyMinionDamage_", }, + ["agony crawler deals (70-100)% increased damage"] = { "HeraldBonusAgonyMinionDamage_", }, + ["all attack damage chills when you stun"] = { "ChillOnAttackStunUniqueOneHandMace5", }, + ["all bonuses from an equipped shield apply to your minions instead of you"] = { "NecromanticAegisUniqueHelmetStrDex5", }, + ["all damage can freeze"] = { "AllDamageCanFreezeUnique__1", }, + ["all damage from hits with this weapon can poison"] = { "LocalAllDamageCanPoisonImplicitE1_", }, + ["all damage inflicts poison against enemies affected by at least # grasping vines"] = { "AllDamagePoisonsGraspingVinesUnique__1", }, + ["all damage inflicts poison against enemies affected by at least 3 grasping vines"] = { "AllDamagePoisonsGraspingVinesUnique__1", }, + ["all damage inflicts poison while affected by glorious madness"] = { "AllDamageCanPoisonGloriousMadnessUnique___1", }, + ["all damage taken from hits can chill you"] = { "AllDamageTakenCanChillUnique__1", }, + ["all damage taken from hits can ignite you"] = { "AllDamageTakenCanIgniteUnique__1", }, + ["all damage with hits can chill"] = { "AllDamageCanChillUnique__1", }, + ["all damage with triggered spells can poison"] = { "AllDamageFromTriggeredSpellsCanPoisonUnique_1", }, + ["all elemental damage converted to chaos damage"] = { "AllElementalDamageConvertedToChaosUnique__1", }, + ["all hits with your next non-channelling attack within # seconds of taking a critical strike will be critical strikes"] = { "AttackCritAfterBeingCritUnique", }, + ["all hits with your next non-channelling attack within 4 seconds of taking a critical strike will be critical strikes"] = { "AttackCritAfterBeingCritUnique", }, + ["all sockets are white"] = { "AllSocketsAreWhiteUniqueRing25", "AllSocketsAreWhiteUniqueShieldStrDex7_", }, + ["all sockets linked"] = { "ArmourEnchantmentHeistSocketsAreLinked1", "WeaponEnchantmentHeistSocketsAreLinked1_", }, + ["allies' aura buffs do not affect you"] = { "CannotBeBuffedByAlliedAurasUniqueOneHandSword11", }, + ["allocated small passive skills in radius grant nothing"] = { "AllocatedNonNotablesGrantNothingUnique__1_", }, + ["allocates # if you have the matching modifier on forbidden flame"] = { "PuzzlePieceGreatTangleUnique__1", }, + ["allocates # if you have the matching modifier on forbidden flesh"] = { "PuzzlePieceCleansingFireUnique__1", }, + ["allocates 1 if you have the matching modifier on forbidden flame"] = { "PuzzlePieceGreatTangleUnique__1", }, + ["allocates 1 if you have the matching modifier on forbidden flesh"] = { "PuzzlePieceCleansingFireUnique__1", }, + ["always critically strike shocked enemies"] = { "AlwaysCritShockedEnemiesUnique__1", }, + ["always freeze, shock and ignite"] = { "ChanceToFreezeShockIgniteUniqueAmulet19", }, + ["always poison on hit against cursed enemies"] = { "ChanceToPoisonCursedEnemiesOnHitUnique__1", }, + ["an additional curse can be applied to you"] = { "AdditionalCurseOnSelfUniqueCorruptedJewel13", }, + ["an enemy writhing worm spawns every # seconds"] = { "SummonWrithingWormEveryXMsUnique__1", }, + ["an enemy writhing worm spawns every 2 seconds"] = { "SummonWrithingWormEveryXMsUnique__1", }, + ["ancestral bond"] = { "AncestorTotemBuffLingersUnique__1", "KeystoneAncestralBondUnique__1", "KeystoneAncestralBondUnique__2", }, + ["anger has no reservation"] = { "AngerNoReservationUnique__1", }, + ["animated and manifested minions' melee strikes deal #% less splash damage"] = { "IncreasedAnimatedMinionSplashDamageUnique__1", }, + ["animated and manifested minions' melee strikes deal 50% less splash damage"] = { "IncreasedAnimatedMinionSplashDamageUnique__1", }, + ["animated and manifested minions' melee strikes deal splash"] = { "AnimatedMinionsHaveMeleeSplashUnique__1", }, + ["animated guardian deals #% increased damage per animated weapon"] = { "AnimatedGuardianDamagePerAnimatedWeaponUnique__1__", }, + ["animated guardian deals 5% increased damage per animated weapon"] = { "AnimatedGuardianDamagePerAnimatedWeaponUnique__1__", }, + ["arctic armour has no reservation"] = { "ArcticArmourReservationCostUnique__1", }, + ["areas contain beasts to hunt"] = { "BestiaryLeague", }, + ["armour also applies to chaos damage taken from hits"] = { "ArmourAppliesToChaosDamageUnique__1", }, + ["armour also applies to lightning damage taken from hits"] = { "ArmourAppliesToLightningDamageUnique__1_", }, + ["armour from equipped shield is doubled"] = { "ArmourFromShieldDoubledUnique__1", }, + ["armour is increased by overcapped fire resistance"] = { "ArmourIncreasedByUncappedFireResistanceUnique__1", }, + ["arrow dancing"] = { "KeystoneArrowDodgingUnique__1", }, + ["arrows deal # to # added fire damage for each time they've pierced"] = { "ArrowAddedFireDamagePerEnemyPiercedUnique__1", }, + ["arrows deal #% increased damage with hits and ailments to targets they pierce"] = { "ArrowDamageAgainstPiercedTargetsUnique__1", "ArrowPierceAppliesToProjectileDamageUniqueQuiver3", }, + ["arrows deal 30 to 50 added fire damage for each time they've pierced"] = { "ArrowAddedFireDamagePerEnemyPiercedUnique__1", }, + ["arrows deal 50% increased damage with hits and ailments to targets they pierce"] = { "ArrowDamageAgainstPiercedTargetsUnique__1", "ArrowPierceAppliesToProjectileDamageUniqueQuiver3", }, + ["arrows fired from the first firing points always pierce"] = { "VolleyFirstPointPierceUnique__1_", }, + ["arrows fired from the fourth firing points chain +# times"] = { "VolleyFourthPointChainUnique__1", }, + ["arrows fired from the fourth firing points chain +2 times"] = { "VolleyFourthPointChainUnique__1", }, + ["arrows fired from the second firing points fork"] = { "VolleySecondPointForkUnique__1", }, + ["arrows fired from the third firing points return to you"] = { "VolleyThirdPointReturnUnique__1__", }, + ["arrows fork"] = { "ProjectilesForkUnique____1", }, + ["arrows pierce # additional target"] = { "PierceCurruption", }, + ["arrows pierce # additional targets"] = { "AdditionalPierceUnique__1", }, + ["arrows pierce 1 additional target"] = { "PierceCurruption", }, + ["arrows pierce 2 additional targets"] = { "AdditionalPierceUnique__1", }, + ["arrows pierce all targets"] = { "ArrowPierceUniqueBow7", }, + ["arrows pierce all targets after chaining"] = { "ArrowsAlwaysCritAfterPiercingUnique___1", }, + ["arrows pierce all targets after forking"] = { "ArrowsAlwaysPierceAfterForkingUnique__1__", }, + ["arrows pierce an additional target"] = { "AdditionalArrowPierceImplicitQuiver12_", "AdditionalArrowPierceImplicitQuiver5New", }, + ["arrows that pierce have #% chance to inflict bleeding"] = { "ArrowsThatPierceCauseBleedingUnique__1", }, + ["arrows that pierce have +#% to critical strike multiplier"] = { "ArrowsThatPierceHaveCritMultiUnique__1", }, + ["arrows that pierce have +50% to critical strike multiplier"] = { "ArrowsThatPierceHaveCritMultiUnique__1", }, + ["arrows that pierce have 50% chance to inflict bleeding"] = { "ArrowsThatPierceCauseBleedingUnique__1", }, + ["arsenal of vengeance"] = { "ArsenalOfVengeance", "KeyStoneRetaliationHitsUnique_1", }, + ["aspect of the avian also grants avian's might and avian's flight to nearby allies"] = { "GrantAviansAspectToAlliesUnique__1", }, + ["aspect of the cat has no reservation"] = { "CatAspectReservesNoManaUnique__1___", }, + ["aspect of the spider can inflict spider's web on enemies an additional time"] = { "IncreasedSpiderWebCountUnique__1", }, + ["aspect of the spider inflicts spider's webs and hinder every # seconds instead"] = { "AspectOfSpiderWebIntervalUnique__1", }, + ["aspect of the spider inflicts spider's webs and hinder every 0.5 seconds instead"] = { "AspectOfSpiderWebIntervalUnique__1", }, + ["attack critical strikes ignore enemy monster elemental resistances"] = { "AttackCriticalStrikesIgnoreElementalResistancesImplicitE1", "VillageWeaponIgnoreElementalResistance", }, + ["attack projectiles return to you"] = { "VillageReturningProjectiles", }, + ["attack skills gain #% of physical damage as extra fire damage per socketed red gem"] = { "AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGemUniqueTwoHandSword8", }, + ["attack skills gain 5% of physical damage as extra fire damage per socketed red gem"] = { "AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGemUniqueTwoHandSword8", }, + ["attack skills have +# to maximum number of summoned totems"] = { "AdditionalAttackTotemsUnique__1", }, + ["attack skills have +1 to maximum number of summoned totems"] = { "AdditionalAttackTotemsUnique__1", }, + ["attack skills have added lightning damage equal to #% of maximum mana"] = { "AttackLightningDamageMaximumManaUnique__1__", }, + ["attack skills have added lightning damage equal to 6% of maximum mana"] = { "AttackLightningDamageMaximumManaUnique__1__", }, + ["attacks always inflict bleeding while you have cat's stealth"] = { "AttacksBleedOnHitWithCatsStealthUnique__1_", }, + ["attacks chain an additional time when in main hand"] = { "AttacksChainInMainHandUnique__1", }, + ["attacks cost life instead of mana"] = { "AttacksHaveBloodMagic__1", "VillageAttacksCostLife", }, + ["attacks deal no physical damage"] = { "AttacksDealNoPhysicalDamage", }, + ["attacks fire (#) additional projectile when in off hand"] = { "MainHandAdditionalProjectilesWhileInOffHandUnique__1", }, + ["attacks fire (1-2) additional projectile when in off hand"] = { "MainHandAdditionalProjectilesWhileInOffHandUnique__1", }, + ["attacks fire an additional projectile"] = { "AttackAdditionalProjectilesUnique__1", }, + ["attacks fire an additional projectile when in off hand"] = { "AttacksExtraProjectileInOffHandUnique__1", }, + ["attacks have #% chance to cause bleeding"] = { "ChanceToBleedUnique__1_", "ChanceToBleedUnique__2__", "ChanceToBleedUnique__3_", }, + ["attacks have #% chance to inflict bleeding when hitting cursed enemies"] = { "AttacksCauseBleedingOnCursedEnemyHitUnique__1", }, + ["attacks have #% chance to poison while at maximum frenzy charges"] = { "AtMaximumFrenzyChargesChanceToPoisonUnique_1_", }, + ["attacks have (#)% increased area of effect when in main hand"] = { "OffHandAreaOfEffectWhileInMainHandUnique__1", }, + ["attacks have (40-60)% increased area of effect when in main hand"] = { "OffHandAreaOfEffectWhileInMainHandUnique__1", }, + ["attacks have +(#)% to critical strike chance if # elder items are equipped"] = { "AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1", }, + ["attacks have +(1-1.5)% to critical strike chance if 4 elder items are equipped"] = { "AdditionalCriticalStrikeChanceWithAttacks4ElderItemsUnique__1", }, + ["attacks have 15% chance to cause bleeding"] = { "ChanceToBleedUnique__3_", }, + ["attacks have 25% chance to cause bleeding"] = { "ChanceToBleedUnique__1_", "ChanceToBleedUnique__2__", }, + ["attacks have 25% chance to inflict bleeding when hitting cursed enemies"] = { "AttacksCauseBleedingOnCursedEnemyHitUnique__1", }, + ["attacks have 60% chance to poison while at maximum frenzy charges"] = { "AtMaximumFrenzyChargesChanceToPoisonUnique_1_", }, + ["attacks inflict unnerve on critical strike for # seconds"] = { "AttackCriticalStrikesUnnerveUnique__1", }, + ["attacks inflict unnerve on critical strike for 4 seconds"] = { "AttackCriticalStrikesUnnerveUnique__1", }, + ["attacks that fire projectiles consume up to # additional steel shard"] = { "RangedAttacksConsumeAmmoUniqueBelt__1", }, + ["attacks that fire projectiles consume up to 1 additional steel shard"] = { "RangedAttacksConsumeAmmoUniqueBelt__1", }, + ["attacks with this weapon deal # to # added chaos damage against"] = { "AddedChaosDamageVsEnemiesWith5PoisonsUnique__1", }, + ["attacks with this weapon deal (#) to (#) added fire damage to bleeding enemies"] = { "AddedFireDamageVersusBleedingEnemiesUnique__1", }, + ["attacks with this weapon deal (#) to (#) added physical damage to ignited enemies"] = { "AddedPhysicalDamageVersusIgnitedEnemiesUnique__1", }, + ["attacks with this weapon deal (80-100) to (160-200) added fire damage to bleeding enemies"] = { "AddedFireDamageVersusBleedingEnemiesUnique__1", }, + ["attacks with this weapon deal (80-100) to (160-200) added physical damage to ignited enemies"] = { "AddedPhysicalDamageVersusIgnitedEnemiesUnique__1", }, + ["attacks with this weapon deal 80 to 120 added chaos damage against"] = { "AddedChaosDamageVsEnemiesWith5PoisonsUnique__1", }, + ["attacks with this weapon deal double damage"] = { "DoubleDamageWithWeaponUnique__1", }, + ["attacks with this weapon deal double damage to chilled enemies"] = { "LocalDoubleDamageToChilledEnemiesUnique__1", }, + ["attacks with this weapon have #% chance to inflict bleeding against ignited enemies"] = { "ChanceToBleedIgnitedEnemiesUnique__1", }, + ["attacks with this weapon have #% chance to inflict bleeding while you do not have avatar of fire"] = { "ChanceToBleedWithoutAvatarOfFireUnique__1", }, + ["attacks with this weapon have (#)% increased elemental damage"] = { "ThisWeaponsWeaponElementalDamageUniqueWand6", }, + ["attacks with this weapon have (100-115)% increased elemental damage"] = { "ThisWeaponsWeaponElementalDamageUniqueWand6", }, + ["attacks with this weapon have 25% chance to inflict bleeding against ignited enemies"] = { "ChanceToBleedIgnitedEnemiesUnique__1", }, + ["attacks with this weapon have 50% chance to inflict bleeding while you do not have avatar of fire"] = { "ChanceToBleedWithoutAvatarOfFireUnique__1", }, + ["attacks with this weapon have added fire damage equal to (#)% of player's maximum life"] = { "LocalFireDamageFromLifePercentUnique_1", }, + ["attacks with this weapon have added fire damage equal to (8-12)% of player's maximum life"] = { "LocalFireDamageFromLifePercentUnique_1", }, + ["attacks with this weapon have added maximum lightning damage equal to (#)% of player's maximum energy shield"] = { "WeaponAddedLightningDamagePerEnergyShieldUnique__1", }, + ["attacks with this weapon have added maximum lightning damage equal to (10-15)% of player's maximum energy shield"] = { "WeaponAddedLightningDamagePerEnergyShieldUnique__1", }, + ["attacks with this weapon inflict hallowing flame on hit"] = { "LocalInflictHallowingFlameOnHitUnique__1", }, + ["attacks with this weapon maim on hit"] = { "LocalMaimOnHitUnique__1", }, + ["attacks with this weapon penetrate #% elemental resistances"] = { "LocalElementalPenetrationUnique__1", }, + ["attacks with this weapon penetrate 30% elemental resistances"] = { "LocalElementalPenetrationUnique__1", }, + ["attacks you use yourself have #% more attack speed"] = { "AttacksYouUseYourselfAttackSpeedFinalUnique__1", }, + ["attacks you use yourself have 50% more attack speed"] = { "AttacksYouUseYourselfAttackSpeedFinalUnique__1", }, + ["attacks you use yourself repeat an additional time"] = { "AttacksYouUseYourselfRepeatCountUnique__1", }, + ["attribute requirements can be satisfied by (#)% of omniscience"] = { "AttributeRequirementsAscendanceUnique__1", }, + ["attribute requirements can be satisfied by (15-25)% of omniscience"] = { "AttributeRequirementsAscendanceUnique__1", }, + ["avatar of fire"] = { "KeystoneAvatarOfFireUnique__1", }, + ["avoid projectiles that have chained"] = { "UniqueAvoidChainingProjectiles__1", }, + ["base spell critical strike chance of spells is equal to that of main hand weapon"] = { "SpellCritChanceEqualsWeaponCritChanceUnique__1", }, + ["bathed in the blood of (#) sacrificed in the name of xibaqua"] = { "UniqueJewelAlternateTreeInRadiusVaal", }, + ["bathed in the blood of (100-8000) sacrificed in the name of xibaqua"] = { "UniqueJewelAlternateTreeInRadiusVaal", }, + ["battlemage"] = { "BattlemageKeystoneUnique__1", "BattlemageKeystoneUnique__2_", "BattlemageKeystoneUnique__3", "BattlemageKeystoneUnique__4", "BattlemageKeystoneUnique__5", "BattlemageKeystoneUnique__6", "SpellAddedFireDamageUnique__5", "SpellAddedPhysicalDamageUnique__1_", "VillageKeystoneBattlemage", }, + ["bleeding cannot be inflicted on you"] = { "BleedingImmunityUnique__1", "BleedingImmunityUnique__2", }, + ["bleeding enemies you kill explode, dealing #% of"] = { "BleedingEnemiesExplodeUnique__1", }, + ["bleeding enemies you kill explode, dealing 5% of"] = { "BleedingEnemiesExplodeUnique__1", }, + ["bleeding enemies you kill with hits shatter"] = { "BleedingEnemiesShatterOnKillUnique__1", }, + ["bleeding on you expires #% slower while moving"] = { "BleedingExpiresSlowerWhileMovingUnique__1", }, + ["bleeding on you expires 75% slower while moving"] = { "BleedingExpiresSlowerWhileMovingUnique__1", }, + ["bleeding you inflict deals damage #% faster per frenzy charge"] = { "FasterBleedPerFrenzyChargeUnique__1", }, + ["bleeding you inflict deals damage 4% faster per frenzy charge"] = { "FasterBleedPerFrenzyChargeUnique__1", }, + ["bleeding you inflict is reflected to you"] = { "ReflectBleedingToSelfUnique__1", }, + ["blight has (#)% increased hinder duration"] = { "BlightSecondarySkillEffectDurationUnique__1", }, + ["blight has (20-30)% increased hinder duration"] = { "BlightSecondarySkillEffectDurationUnique__1", }, + ["blind chilled enemies on hit"] = { "OnHitBlindChilledEnemiesUnique__1_", }, + ["blind does not affect your light radius"] = { "BlindDoesNotAffectLightRadiusUnique__1", }, + ["blind you inflict is reflected to you"] = { "BlindReflectedToSelfUnique__1", }, + ["blood magic"] = { "BloodMagic", "KeystoneBloodMagicUnique__1_", "KeystoneMortalConvictionUnique__1", }, + ["bloodsoaked blade"] = { "KeystoneBloodsoakedBladeUnique__1", }, + ["bow attacks fire # additional arrows"] = { "AdditionalArrowsUniqueBow3", "AdditionalArrowsUnique__1", "AdditionalArrowsUnique__2", }, + ["bow attacks fire # additional arrows if you haven't cast dash recently"] = { "ArrowsIfHaventUsedDashRecentlyUnique__1", }, + ["bow attacks fire 2 additional arrows"] = { "AdditionalArrowsUniqueBow3", "AdditionalArrowsUnique__1", "AdditionalArrowsUnique__2", }, + ["bow attacks fire 2 additional arrows if you haven't cast dash recently"] = { "ArrowsIfHaventUsedDashRecentlyUnique__1", }, + ["bow attacks fire an additional arrow"] = { "AdditionalArrowsUniqueTransformed__1", }, + ["bow attacks fire an additional arrow while main hand accuracy rating is at least #"] = { "AdditionalArrowWhileAccuracyIs3000Uber1", }, + ["bow attacks fire an additional arrow while main hand accuracy rating is at least 3000"] = { "AdditionalArrowWhileAccuracyIs3000Uber1", }, + ["bow attacks have culling strike"] = { "BowAttacksCullingStrikeUnique__1", }, + ["bow attacks sacrifice a random damageable minion to fire (#) additional arrow"] = { "SacrificeMinionToFireAdditionalArrowsUnique__1", }, + ["bow attacks sacrifice a random damageable minion to fire (1-3) additional arrow"] = { "SacrificeMinionToFireAdditionalArrowsUnique__1", }, + ["bow knockback at close range"] = { "KnockbackCloseRangeUniqueBow6", }, + ["brand skills have (#)% increased duration"] = { "BrandDurationUnique__1", }, + ["brand skills have (50-100)% increased duration"] = { "BrandDurationUnique__1", }, + ["burning enemies you kill have a #% chance to explode, dealing a tenth of their maximum life as fire damage"] = { "VillageBurningEnemiesExplode", }, + ["burning enemies you kill have a 10% chance to explode, dealing a tenth of their maximum life as fire damage"] = { "VillageBurningEnemiesExplode", }, + ["burning hoofprints"] = { "GoatHoofFootprintsUnique__1", }, + ["call of steel causes (#)% increased reflected damage"] = { "CallOfSteelReflectDamageUnique__1", "CallOfSteelReflectDamageUnique__2", }, + ["call of steel causes (20-25)% increased reflected damage"] = { "CallOfSteelReflectDamageUnique__1", "CallOfSteelReflectDamageUnique__2", }, + ["call of steel deals reflected damage with (#)% increased area of effect"] = { "CallOfSteelAreaOfEffectUnique__1", "CallOfSteelAreaOfEffectUnique__2___", }, + ["call of steel deals reflected damage with (40-50)% increased area of effect"] = { "CallOfSteelAreaOfEffectUnique__1", "CallOfSteelAreaOfEffectUnique__2___", }, + ["call of steel has (#)% increased use speed"] = { "CallOfSteelUseSpeedUnique__1", "CallOfSteelUseSpeedUnique__2", }, + ["call of steel has (80-100)% increased use speed"] = { "CallOfSteelUseSpeedUnique__1", "CallOfSteelUseSpeedUnique__2", }, + ["call to arms"] = { "KeystoneCallToArmsUnique__1", "KeystoneCallToArmsUnique__2_", }, + ["can be anointed"] = { "BeltEnchantImplicit", }, + ["can be enchanted by a kalguuran runesmith"] = { "VillageTripleEnchant1H", }, + ["can be modified while corrupted"] = { "CorruptUntilFiveImplicits", "ModifyableWhileCorruptedUnique__1", }, + ["can have # additional crafted modifier"] = { "ArmourEnchantmentHeistAdditionalCraftingModifier1", "WeaponEnchantmentHeistAdditionalCraftingModifier1_", }, + ["can have # additional enchantment modifiers"] = { "MultipleEnchantmentsAllowedUnique__2", }, + ["can have # fewer traps placed at a time"] = { "AdditionalTrapsUnique__2__", }, + ["can have 1 additional crafted modifier"] = { "ArmourEnchantmentHeistAdditionalCraftingModifier1", "WeaponEnchantmentHeistAdditionalCraftingModifier1_", }, + ["can have 3 additional enchantment modifiers"] = { "MultipleEnchantmentsAllowedUnique__2", }, + ["can have 5 fewer traps placed at a time"] = { "AdditionalTrapsUnique__2__", }, + ["can have a second enchantment modifier"] = { "MultipleEnchantmentsAllowedUnique__1", }, + ["can have up to # additional trap placed at a time"] = { "AdditionalTrapsThresholdJewel", "AdditionalTrapsUnique__1", }, + ["can have up to (#) additional traps placed at a time"] = { "NumberOfAdditionalTrapsUnique_1", }, + ["can have up to (3-5) additional traps placed at a time"] = { "NumberOfAdditionalTrapsUnique_1", }, + ["can have up to 1 additional trap placed at a time"] = { "AdditionalTrapsThresholdJewel", "AdditionalTrapsUnique__1", }, + ["can roll minion modifiers"] = { "CanRollMinionModifiersImplicitWandAtlas1", }, + ["can't use chest armour"] = { "DisableChestSlot", }, + ["can't use life flasks"] = { "CannotUseLifeFlaskUnique__1", }, + ["can't use mana flasks"] = { "CannotUseManaFlaskUnique__1", }, + ["can't use other rings"] = { "DisablesOtherRingSlot", }, + ["cannot be blinded"] = { "BlindImmunityUniqueSceptre8", "BlindImmunityUnique__1", }, + ["cannot be chilled"] = { "CannotBeChilledUniqueBodyStrInt3", "CannotBeChilledUnique__1", "CannotBeFrozenOrChilledUnique__1", "CannotBeFrozenOrChilledUnique__2", }, + ["cannot be frozen"] = { "CannotBeFrozen", "CannotBeFrozenUnique__1", }, + ["cannot be frozen if # redeemer items are equipped"] = { "CannotBeFrozen6RedeemerItemsUnique__1", }, + ["cannot be frozen if 6 redeemer items are equipped"] = { "CannotBeFrozen6RedeemerItemsUnique__1", }, + ["cannot be frozen if dexterity is higher than intelligence"] = { "CannotBeFrozenWithDexHigherThanIntUnique__1", }, + ["cannot be ignited"] = { "AvoidIgniteUniqueBodyDex3", "AvoidIgniteUniqueOneHandSword4", "AvoidIgniteUnique__1", }, + ["cannot be ignited if strength is higher than dexterity"] = { "CannotBeIgnitedWithStrHigherThanDexUnique__1", }, + ["cannot be knocked back"] = { "CannotBeKnockedBack", }, + ["cannot be poisoned"] = { "CannotBePoisonedUnique__1", "CannotBePoisonedUnique__2", }, + ["cannot be poisoned while bleeding"] = { "CannotBePoisonedWhileBleedingUnique__1", }, + ["cannot be shocked"] = { "CannotBeShocked", }, + ["cannot be shocked if intelligence is higher than strength"] = { "CannotBeShockedWithIntHigherThanStrUnique__1", }, + ["cannot be stunned"] = { "CannotBeStunned", "CannotBeStunnedUnique__1_", }, + ["cannot be stunned by attacks if your opposite ring is an elder item"] = { "CannotBeStunnedByAttacksElderItemUnique__1", }, + ["cannot be stunned by spells if your opposite ring is a shaper item"] = { "CannotBeStunnedBySpellsShaperItemUnique__1", }, + ["cannot be stunned by suppressed spell damage"] = { "CannotBeStunnedSuppressedDamageUnique__1", }, + ["cannot be stunned during effect"] = { "FlaskStunImmunityUnique__1", }, + ["cannot be stunned if # elder items are equipped"] = { "CannotBeStunned6ElderItemsUnique__1", }, + ["cannot be stunned if 6 elder items are equipped"] = { "CannotBeStunned6ElderItemsUnique__1", }, + ["cannot be stunned if you have at least # crab barriers"] = { "CannotBeStunned10CrabBarriersUnique__1", }, + ["cannot be stunned if you have at least 10 crab barriers"] = { "CannotBeStunned10CrabBarriersUnique__1", }, + ["cannot be stunned when on low life"] = { "CannotBeStunnedOnLowLife", }, + ["cannot be stunned while bleeding"] = { "CannotBeStunnedWhileBleedingUnique__1", }, + ["cannot be used with chaos inoculation"] = { "LifeReservationUniqueWand2", }, + ["cannot block"] = { "NeverBlockUnique__1", }, + ["cannot block attack damage"] = { "CannotBlockAttacks", }, + ["cannot block spell damage"] = { "CannotBlockSpellsUnique__1", }, + ["cannot block while you have no energy shield"] = { "CannotBlockWithNoEnergyShieldUnique__1", }, + ["cannot cast spells"] = { "CannotCastSpellsUnique__1", }, + ["cannot deal critical strikes with attacks"] = { "AttacksCannotCritUnique__1", }, + ["cannot deal non-chaos damage"] = { "CannotDealNonChaosDamageUnique__1_", }, + ["cannot evade enemy attacks"] = { "CannotEvade", }, + ["cannot gain endurance charges"] = { "CannotGainEnduranceChargesUnique__1__", "CannotGainEnduranceChargesUnique__2", }, + ["cannot gain energy shield"] = { "CannotGainEnergyShieldUnique__1", }, + ["cannot gain mana during effect"] = { "NoManaRecoveryDuringFlaskEffectUnique__1_", }, + ["cannot gain power charges"] = { "CannotGainPowerChargesUnique__1", "MaxPowerChargesIsZeroUniqueAmulet19", }, + ["cannot ignite, chill, freeze or shock"] = { "CannotIgniteChillFreezeShockUnique__1", }, + ["cannot inflict wither on targets that are not on full life"] = { "CanOnlyInflictWitherAgainstFullLifeEnemies__1", }, + ["cannot knock enemies back"] = { "CannotKnockBackUniqueOneHandMace5_", }, + ["cannot leech"] = { "CannotLeech", }, + ["cannot leech life"] = { "CannotLeechLifeUnique__1", }, + ["cannot leech life from critical strikes"] = { "CannotLeechFromCriticalStrikesUnique___1", }, + ["cannot leech mana"] = { "CannotLeechMana", "CannotLeechManaUnique__1_", }, + ["cannot leech or regenerate mana"] = { "CannotLeechOrRegenerateManaUniqueTwoHandAxe9", "CannotLeechOrRegenerateManaUnique__1_", }, + ["cannot leech when on low life"] = { "CannotLeechOnLowLife", }, + ["cannot lose crab barriers if you have lost crab barriers recently"] = { "CannotLoseCrabBarriersIfLostRecentlyUnique__1", }, + ["cannot poison enemies with at least # poisons on them"] = { "CannotPoisonEnemiesWithNumPoisonsUnique__1", }, + ["cannot poison enemies with at least 12 poisons on them"] = { "CannotPoisonEnemiesWithNumPoisonsUnique__1", }, + ["cannot roll caster modifiers"] = { "KineticWandImplicit", }, + ["cannot take reflected elemental damage if # shaper items are equipped"] = { "ElementalReflectImmune4ShaperItemsUnique__1", }, + ["cannot take reflected elemental damage if 4 shaper items are equipped"] = { "ElementalReflectImmune4ShaperItemsUnique__1", }, + ["cannot take reflected physical damage if # elder items are equipped"] = { "PhysicalReflectImmune4ElderItemsUnique__1", }, + ["cannot take reflected physical damage if 4 elder items are equipped"] = { "PhysicalReflectImmune4ElderItemsUnique__1", }, + ["carved to glorify (#) new faithful converted by high templar maxarius"] = { "UniqueJewelAlternateTreeInRadiusTemplar", }, + ["carved to glorify (2000-10000) new faithful converted by high templar maxarius"] = { "UniqueJewelAlternateTreeInRadiusTemplar", }, + ["cast level # fire burst on hit"] = { "VillageFireBurstOnHit", }, + ["cast level 10 fire burst on hit"] = { "VillageFireBurstOnHit", }, + ["causes bleeding on hit"] = { "CausesBleedingImplicitMarakethRapier1", }, + ["causes bleeding when you stun"] = { "AttacksThatStunCauseBleedingUnique__1", }, + ["celestial footprints"] = { "CelestialFootprintsUnique__1_", }, + ["chance to block is lucky"] = { "BlockIsLuckyUnique__1", }, + ["chance to block is unlucky"] = { "BlockIsUnluckyUnique__1", }, + ["chance to block spell damage is unlucky"] = { "ExtraRollsSpellBlockUnique__1", }, + ["channelling skills deal #% increased damage per # devotion"] = { "ChannelledSkillDamagePerDevotion", }, + ["channelling skills deal (#)% increased damage"] = { "ChannelledSkillDamageUnique__1", }, + ["channelling skills deal (50-70)% increased damage"] = { "ChannelledSkillDamageUnique__1", }, + ["channelling skills deal 4% increased damage per 10 devotion"] = { "ChannelledSkillDamagePerDevotion", }, + ["chaos damage can ignite, chill and shock"] = { "ChaosDamageCanIgniteChillAndShockUnique__1", }, + ["chaos damage is taken from mana before life"] = { "ChaosDamageRemovedFromManaBeforeLifeUnique__1___", }, + ["chaos damage taken does not bypass energy shield"] = { "ChaosTakenOnES", }, + ["chaos damage taken does not bypass energy shield during effect"] = { "ChaosDamageDoesNotBypassESDuringFlaskEffectUnique__1", }, + ["chaos damage taken does not bypass energy shield while not on low life"] = { "ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1", }, + ["chaos damage taken does not bypass minions' energy shield"] = { "MinionChaosDamageDoesNotBypassESUnique__1", }, + ["chaos damage with hits is lucky"] = { "VillageChaosDamageLuck", }, + ["chaos resistance is doubled"] = { "ChaosResistDoubledUnique__1", }, + ["chaos resistance is zero"] = { "ChaosResistanceIsZeroUnique__1", }, + ["chaos skills have #% chance to ignite"] = { "ChanceToIgniteWithChaosSkillsUnique__1", }, + ["chaos skills have #% increased skill effect duration"] = { "ChaosSkillEffectDurationUnique__1", }, + ["chaos skills have 20% chance to ignite"] = { "ChanceToIgniteWithChaosSkillsUnique__1", }, + ["chaos skills have 40% increased skill effect duration"] = { "ChaosSkillEffectDurationUnique__1", }, + ["chaos skills inflict up to # withered debuffs on hit for (#) seconds"] = { "ApplyMaximumWitherOnChaosSkillHitUnique__1", }, + ["chaos skills inflict up to 15 withered debuffs on hit for (5-7) seconds"] = { "ApplyMaximumWitherOnChaosSkillHitUnique__1", }, + ["chill attackers for # seconds on block"] = { "ChanceToChillAttackersOnBlockUnique__2__", }, + ["chill attackers for 4 seconds on block"] = { "ChanceToChillAttackersOnBlockUnique__2__", }, + ["chill effect and freeze duration on you are based on #% of energy shield"] = { "ChillAndFreezeBasedOffEnergyShieldBelt5Unique", }, + ["chill effect and freeze duration on you are based on 100% of energy shield"] = { "ChillAndFreezeBasedOffEnergyShieldBelt5Unique", }, + ["chill enemies as though dealing (#)% more damage"] = { "QuiverChillAsThoughtDealingMoreDamageUnique__1", }, + ["chill enemies as though dealing (60-100)% more damage"] = { "QuiverChillAsThoughtDealingMoreDamageUnique__1", }, + ["chill enemies for # second on hit with this weapon when in off hand"] = { "ChillEnemiesOnHitWithWeaponUnique__1", }, + ["chill enemies for 1 second on hit with this weapon when in off hand"] = { "ChillEnemiesOnHitWithWeaponUnique__1", }, + ["chill enemy for # second when hit, reducing their action speed by #%"] = { "ChillEnemiesWhenHitUnique__1", }, + ["chill enemy for 1 second when hit, reducing their action speed by 30%"] = { "ChillEnemiesWhenHitUnique__1", }, + ["chill nearby enemies when you focus, causing #% reduced action speed"] = { "ChillNearbyEnemiesOnFocusUnique__1_", }, + ["chill nearby enemies when you focus, causing 30% reduced action speed"] = { "ChillNearbyEnemiesOnFocusUnique__1_", }, + ["clarity has no reservation"] = { "ClarityNoReservationUnique__1", }, + ["cold damage is increased by #% per # intelligence from allocated passives in radius"] = { "AdditionalGlacialCascadeSequenceUniqueJewel58", }, + ["cold damage is increased by 1% per 8 intelligence from allocated passives in radius"] = { "AdditionalGlacialCascadeSequenceUniqueJewel58", }, + ["cold exposure on hit if you've cast frostbite in the past # seconds"] = { "FrostbiteColdExposureOnHitUnique__1", }, + ["cold exposure on hit if you've cast frostbite in the past 10 seconds"] = { "FrostbiteColdExposureOnHitUnique__1", }, + ["cold exposure you inflict applies an extra #% to cold resistance"] = { "ColdExposureAdditionalResistanceUnique__1", }, + ["cold exposure you inflict applies an extra -12% to cold resistance"] = { "ColdExposureAdditionalResistanceUnique__1", }, + ["cold resistance is #%"] = { "ColdResistanceOverrideUnique__1", }, + ["cold resistance is 75%"] = { "ColdResistanceOverrideUnique__1", }, + ["cold skills have #% chance to poison on hit"] = { "ColdSkillsChanceToPoisonUnique__1", }, + ["cold skills have 20% chance to poison on hit"] = { "ColdSkillsChanceToPoisonUnique__1", }, + ["commanded leadership over (#) warriors under kaom"] = { "UniqueJewelAlternateTreeInRadiusKarui", }, + ["commanded leadership over (10000-18000) warriors under kaom"] = { "UniqueJewelAlternateTreeInRadiusKarui", }, + ["commissioned (#) coins to commemorate cadiro"] = { "UniqueJewelAlternateTreeInRadiusEternal", }, + ["commissioned (2000-160000) coins to commemorate cadiro"] = { "UniqueJewelAlternateTreeInRadiusEternal", }, + ["completing a heist generates # additional reveals"] = { "HeistContractAdditionalIntelligence", }, + ["completing a heist generates 3 additional reveals"] = { "HeistContractAdditionalIntelligence", }, + ["conductivity has no reservation if cast as an aura"] = { "ConductivityReservationCostUnique__1", }, + ["conduit"] = { "Conduit", "KeystoneConduitUnique__1__", }, + ["consecrated ground around you while stationary if # crusader items are equipped"] = { "ConsecratedGroundStationary2CrusaderItemsUnique__1", }, + ["consecrated ground around you while stationary if 2 crusader items are equipped"] = { "ConsecratedGroundStationary2CrusaderItemsUnique__1", }, + ["consecrated ground created by this flask has tripled radius"] = { "FlaskConsecratedGroundAreaOfEffectUnique__1_", }, + ["consecrated ground created during effect applies (#)% increased damage taken to enemies"] = { "FlaskConsecratedGroundDamageTakenUnique__1", }, + ["consecrated ground created during effect applies (7-10)% increased damage taken to enemies"] = { "FlaskConsecratedGroundDamageTakenUnique__1", }, + ["consumes a void charge to trigger level # void shot when you fire arrows with a non-triggered skill"] = { "VoidShotOnSkillUseUnique__1_", }, + ["consumes a void charge to trigger level 20 void shot when you fire arrows with a non-triggered skill"] = { "VoidShotOnSkillUseUnique__1_", }, + ["consumes frenzy charges on use"] = { "FlaskConsumesFrenzyChargesUnique__1", }, + ["consumes maximum charges to use"] = { "FlaskVaalConsumeMaximumChargesUnique__1", }, + ["consumes socketed uncorrupted support gems when they reach maximum level"] = { "ConsumesSupportGemsUnique", }, + ["corrupted blood cannot be inflicted on you"] = { "CorruptedBloodImmunityUnique_1", }, + ["corrupted soul"] = { "KeystoneCorruptedSoulUnique_1", "KeystoneCorruptedSoulUnique__2_", }, + ["count as blocking attack damage from the first target hit with each shield attack"] = { "CountAsBlockingAttackFromShieldAttackFirstTargetUnique__1", }, + ["count as having maximum number of endurance charges"] = { "CountAsHavingMaxEnduranceChargesUnique__1", "CountAsHavingMaxEnduranceFrenzyPowerCharges1", "LoseAllChargesOnMoveUnique__1", "MinimumChargesEqualToMaximumWhileStationaryUnique__1", }, + ["count as having maximum number of frenzy charges"] = { "CountAsHavingMaxFrenzyChargesUnique__1", }, + ["count as having maximum number of power charges"] = { "CountAsHavingMaxPowerChargesUnique__1", }, + ["counts as all one handed melee weapon types"] = { "WeaponCountsAsAllOneHandedWeapons__1", }, + ["counts as dual wielding"] = { "UniqueWingsOfEntropyCountsAsDualWielding", }, + ["cover enemies in ash when they hit you"] = { "CoverInAshWhenHitUnique__1", }, + ["cover full life enemies in ash for (#) seconds on melee weapon hit"] = { "TinctureCoverInAshOnFullLifeUnique__1", }, + ["cover full life enemies in ash for (4-10) seconds on melee weapon hit"] = { "TinctureCoverInAshOnFullLifeUnique__1", }, + ["create a blighted spore when your skills or minions kill a rare monster"] = { "ReviveEnemiesOnKillUnique__1", }, + ["create consecrated ground when you shatter an enemy"] = { "SpreadConsecratedGroundOnShatterUnique__1", }, + ["create profane ground instead of consecrated ground"] = { "ProfaneGroundInsteadOfConsecratedGround__1_", }, + ["creates a smoke cloud on rampage"] = { "GroundSmokeOnRampageUniqueGlovesDexInt6", }, + ["creates a smoke cloud on use"] = { "UtilityFlaskSmokeCloud", }, + ["creates chilled ground on use"] = { "UtilityFlaskChilledGround", }, + ["creates consecrated ground on critical strike"] = { "ConsecrateOnCritChanceToCreateUniqueRing11", }, + ["creates consecrated ground on use"] = { "UtilityFlaskConsecrate", }, + ["crimson dance"] = { "KeystoneCrimsonDanceUnique__1", }, + ["critical strike chance is (#)% for hits with this weapon"] = { "WeaponCritChanceOverrideUnique__1__", }, + ["critical strike chance is (30-40)% for hits with this weapon"] = { "WeaponCritChanceOverrideUnique__1__", }, + ["critical strike chance is increased by overcapped lightning resistance"] = { "CriticalChanceIncreasedByUncappedLightningResistanceUnique__1", }, + ["critical strikes deal no damage"] = { "CriticalStrikesDealNoDamageUnique__1", }, + ["critical strikes do not inherently freeze"] = { "CriticalStrikesDoNotFreezeUnique___1", }, + ["critical strikes do not inherently inflict non-damaging ailments"] = { "CriticalStrikesNotAlwaysApplyAilmentsUnique__1", }, + ["critical strikes have (#)% chance to blind enemies while you have cat's stealth"] = { "CritsBlindChanceWithCatsStealthUnique__1", }, + ["critical strikes have (10-20)% chance to blind enemies while you have cat's stealth"] = { "CritsBlindChanceWithCatsStealthUnique__1", }, + ["critical strikes have culling strike"] = { "CullingCriticalStrikes", }, + ["critical strikes inflict malignant madness if the eater of worlds is dominant"] = { "MalignantMadnessCritEaterDominantUnique__1", }, + ["critical strikes with spells inflict impale"] = { "SpellImpaleOnCritChanceUnique__1", }, + ["critical strikes with this weapon do not deal extra damage"] = { "LocalNoCriticalStrikeMultiplierUnique_1", }, + ["critical strikes with this weapon have culling strike"] = { "CritsHaveCullingStrikeUber1", }, + ["culling strike"] = { "CullingStrike", "CullingStrikeUniqueDescentTwoHandSword1", "CullingStrikeUnique__1", "NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9", "NearbyAlliesHaveCullingStrikeUnique__1", "VillageCullingStrike", }, + ["culling strike against burning enemies"] = { "CullingAgainstBurningEnemiesUniqueTwoHandSword6", }, + ["culling strike against enemies cursed with poacher's mark"] = { "CullingStrikePoachersMarkUnique__1", }, + ["culling strike against frozen enemies"] = { "CullingAgainstFrozenEnemiesUnique__1", }, + ["culling strike during effect"] = { "FlaskCullingStrikeUnique1", }, + ["curse auras from socketed skills also affect you"] = { "CurseAurasAffectYouUnique__1", }, + ["curse enemies which hit you with a random hex, ignoring curse limit"] = { "RandomCurseWhenHitChanceUnique__1", }, + ["curse enemies with elemental weakness when you block their spell damage, ignoring curse limit"] = { "ElementalWeaknessOnSpellBlockUniqueShieldInt4", }, + ["curse enemies with enfeeble on hit"] = { "VillageEnfeebleOnHit", }, + ["curse enemies with flammability on block"] = { "FlammabilityOnBlockChanceUnique__1", }, + ["curse enemies with flammability on hit"] = { "FlammabilityOnHitUniqueOneHandAxe7", "FlammabilityOnHitUnique__1", }, + ["curse enemies with punishment on hit"] = { "VillagePunishmentOnHit", }, + ["curse enemies with punishment when you block their melee damage, ignoring curse limit"] = { "PunishmentOnMeleeBlockUniqueShieldInt4", }, + ["curse enemies with socketed hex curse gem on hit"] = { "UniqueCurseWithSocketedCurseOnHit_", }, + ["curse enemies with temporal chains on hit"] = { "CurseOnHitTemporalChainsUnique__1", "TemporalChainsOnHitUniqueGlovesInt3", "VillageTemporalChainsOnHit", }, + ["curse enemies with temporal chains when you block their projectile attack damage, ignoring curse limit"] = { "TemporalChainsOnProjectileBlockUniqueShieldInt4", }, + ["curse enemies with vulnerability on block"] = { "VulnerabilityOnBlockUniqueShieldStrDex3", "VulnerabilityOnBlockUniqueStaff9", }, + ["curse enemies with vulnerability on hit"] = { "CurseLevel10VulnerabilityOnHitUnique__1", }, + ["curse skills have #% increased skill effect duration"] = { "IncreasedCurseDurationUniqueShieldDex4", "IncreasedCurseDurationUniqueShieldStrDex2", }, + ["curse skills have (#)% increased cast speed"] = { "CurseCastSpeedUnique__1", "CurseCastSpeedUnique__2", }, + ["curse skills have (#)% increased skill effect duration"] = { "IncreasedCurseDurationUniqueHelmetInt9", }, + ["curse skills have (10-20)% increased cast speed"] = { "CurseCastSpeedUnique__1", }, + ["curse skills have (30-50)% increased skill effect duration"] = { "IncreasedCurseDurationUniqueHelmetInt9", }, + ["curse skills have (8-12)% increased cast speed"] = { "CurseCastSpeedUnique__2", }, + ["curse skills have 100% increased skill effect duration"] = { "IncreasedCurseDurationUniqueShieldDex4", "IncreasedCurseDurationUniqueShieldStrDex2", }, + ["cursed enemies cannot inflict elemental ailments on you"] = { "CursedEnemiesCannotInflictElementalAilmentsUnique__1", }, + ["damage cannot be reflected"] = { "DamageCannotBeReflectedUnique__1", "DamageCannotBeReflectedUnique__2", "VillageDamageCannotBeReflected", }, + ["damage of enemies hitting you is unlucky while you are cursed with vulnerability"] = { "EnemiesExtraDamageRollsWhileAffectedByVulnerabilityUnique__1_", }, + ["damage of enemies hitting you is unlucky while you are on full life"] = { "EnemyExtraDamageRollsOnFullLifeUnique__1", "EnemyExtraDamageRollsOnFullLifeUnique__2", }, + ["damage of enemies hitting you is unlucky while you are on low life"] = { "EnemyExtraDamageRollsOnLowLifeUniqueRing9", }, + ["damage of enemies hitting you is unlucky while you have a magic ring equipped"] = { "AnyRingMagicDamageExtraRollUnique__1", }, + ["damage penetrates #% cold resistance against chilled enemies"] = { "ColdPenetrationAgainstChilledEnemiesUnique__1", }, + ["damage penetrates #% elemental resistances"] = { "ElementalPenetrationMarakethSceptreImplicit1", "ElementalPenetrationMarakethSceptreImplicit2", }, + ["damage penetrates #% fire resistance"] = { "FirePenetrationUnique__1", "IncreasedEnemyFireResistanceUniqueHelmetInt5", "PenetrateEnemyFireResistUnique__1", }, + ["damage penetrates #% fire resistance against blinded enemies"] = { "FirePenetrationAgainstBlindedEnemiesUnique__1", }, + ["damage penetrates #% lightning resistance"] = { "LightningPenetrationUniqueStaff8", "LightningPenetrationUnique__1", }, + ["damage penetrates #% lightning resistance during effect"] = { "LightningPenetrationDuringFlaskEffect__1", }, + ["damage penetrates #% of fire resistance if you have blocked recently"] = { "FirePenetrationIfBlockedRecentlyUnique__1", }, + ["damage penetrates (#)% elemental resistances"] = { "ElementalPenetrationUnique__1", }, + ["damage penetrates (#)% elemental resistances while you are chilled"] = { "ElementalPenetrationWhileChilledUnique__1___", }, + ["damage penetrates (0-20)% elemental resistances"] = { "ElementalPenetrationUnique__1", }, + ["damage penetrates (8-10)% elemental resistances while you are chilled"] = { "ElementalPenetrationWhileChilledUnique__1___", }, + ["damage penetrates 10% fire resistance"] = { "FirePenetrationUnique__1", }, + ["damage penetrates 10% fire resistance against blinded enemies"] = { "FirePenetrationAgainstBlindedEnemiesUnique__1", }, + ["damage penetrates 15% of fire resistance if you have blocked recently"] = { "FirePenetrationIfBlockedRecentlyUnique__1", }, + ["damage penetrates 20% cold resistance against chilled enemies"] = { "ColdPenetrationAgainstChilledEnemiesUnique__1", }, + ["damage penetrates 20% fire resistance"] = { "PenetrateEnemyFireResistUnique__1", }, + ["damage penetrates 20% lightning resistance"] = { "LightningPenetrationUniqueStaff8", "LightningPenetrationUnique__1", }, + ["damage penetrates 25% fire resistance"] = { "IncreasedEnemyFireResistanceUniqueHelmetInt5", }, + ["damage penetrates 4% elemental resistances"] = { "ElementalPenetrationMarakethSceptreImplicit1", }, + ["damage penetrates 6% elemental resistances"] = { "ElementalPenetrationMarakethSceptreImplicit2", }, + ["damage penetrates 6% lightning resistance during effect"] = { "LightningPenetrationDuringFlaskEffect__1", }, + ["damage penetrates fire resistance equal to your overcapped fire resistance, up to a maximum of #%"] = { "OvercappedFireResistanceAsFirePrenetrationUnique__1", }, + ["damage penetrates fire resistance equal to your overcapped fire resistance, up to a maximum of 200%"] = { "OvercappedFireResistanceAsFirePrenetrationUnique__1", }, + ["damage taken from blocked hits cannot bypass energy shield"] = { "DamageBypassEnergyShieldBlockUnique__1", }, + ["damage with hits from socketed vaal skills is lucky"] = { "LocalVaalLuckyDamageUnique__1", }, + ["damage with hits is lucky"] = { "UniqueNearbyAlliesAreLucky", }, + ["damage with weapons penetrates #% elemental resistances"] = { "WeaponElementalPenetrationUnique__1", }, + ["damage with weapons penetrates 5% elemental resistances"] = { "WeaponElementalPenetrationUnique__1", }, + ["damaging ailments deal damage (#)% faster"] = { "FasterAilmentDamageUnique__1", }, + ["damaging ailments deal damage (5-25)% faster"] = { "FasterAilmentDamageUnique__1", }, + ["damaging retaliation skills become usable every # seconds"] = { "RetaliationSkillsBecomeUsableEveryXSecondsUnique_1", }, + ["damaging retaliation skills become usable every 4 seconds"] = { "RetaliationSkillsBecomeUsableEveryXSecondsUnique_1", }, + ["deal # to # lightning damage to nearby enemies when you lose a power, frenzy, or endurance charge"] = { "LightningDamageOnChargeExpiryUniqueAmulet12", }, + ["deal 1 to 1000 lightning damage to nearby enemies when you lose a power, frenzy, or endurance charge"] = { "LightningDamageOnChargeExpiryUniqueAmulet12", }, + ["deal no chaos damage"] = { "DealNoChaosDamageUnique_1", }, + ["deal no cold damage"] = { "DealNoColdDamageUnique__1", }, + ["deal no damage when not on low life"] = { "DealNoDamageWhenNotOnLowLifeUnique__1", }, + ["deal no elemental damage"] = { "DealNoElementalDamageUnique__1", "DealNoElementalDamageUnique__2", }, + ["deal no non-elemental damage"] = { "DealNoNonElementalDamageUnique__1", }, + ["deal no non-lightning damage"] = { "DealNoNonLightningDamageUnique__1_", }, + ["deal no non-physical damage"] = { "DealNoNonPhysicalDamageUniqueBelt__1", }, + ["deal no physical damage"] = { "DealNoPhysicalDamageUniqueBelt14", }, + ["deal no physical or elemental damage"] = { "DealNoElementalPhysicalDamageUnique__1", }, + ["deal triple damage with elemental skills"] = { "ElementalSkillsTripleDamageUnique__1", }, + ["deals # chaos damage per second to nearby enemies"] = { "DisplayChaosDegenerationAuraUniqueBodyStr3", "DisplayChaosDegenerationAuraUnique__1", }, + ["deals 450 chaos damage per second to nearby enemies"] = { "DisplayChaosDegenerationAuraUniqueBodyStr3", }, + ["deals 50 chaos damage per second to nearby enemies"] = { "DisplayChaosDegenerationAuraUnique__1", }, + ["debilitate enemies for # seconds when you suppress their spell damage"] = { "DebilitateEnemiesSuppressedDamageUnique__1", }, + ["debilitate enemies for 4 seconds when you suppress their spell damage"] = { "DebilitateEnemiesSuppressedDamageUnique__1", }, + ["debilitate nearby enemies for # seconds when effect ends"] = { "FlaskDebilitateNearbyEnemiesWhenEffectEndsUnique_1", }, + ["debilitate nearby enemies for 2 seconds when effect ends"] = { "FlaskDebilitateNearbyEnemiesWhenEffectEndsUnique_1", }, + ["debuffs on you expire #% faster"] = { "DebuffTimePassedUnique__3", }, + ["debuffs on you expire (#)% faster"] = { "DebuffTimePassedUnique__1", "DebuffTimePassedUnique__2", }, + ["debuffs on you expire (15-20)% faster"] = { "DebuffTimePassedUnique__1", }, + ["debuffs on you expire (80-100)% faster"] = { "DebuffTimePassedUnique__2", }, + ["debuffs on you expire 100% faster"] = { "DebuffTimePassedUnique__3", }, + ["defences are zero"] = { "DefencesAreZeroUnique__1_", }, + ["denoted service of (#) dekhara in the akhara of balbala"] = { "UniqueJewelAlternateTreeInRadiusMaraketh", }, + ["denoted service of (500-8000) dekhara in the akhara of balbala"] = { "UniqueJewelAlternateTreeInRadiusMaraketh", }, + ["despair has no reservation if cast as an aura"] = { "DespairReservationCostUnique__1", }, + ["determination has no reservation"] = { "DeterminationNoReservationUnique__1", }, + ["dexterity and intelligence from passives in radius count towards strength melee damage bonus"] = { "DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55", }, + ["dexterity from passives in radius is transformed to intelligence"] = { "JewelDexToInt", "JewelDexToIntUniqueJewel11", }, + ["dexterity from passives in radius is transformed to strength"] = { "JewelDexToStr", "JewelDexToStrUniqueJewel37", }, + ["discipline has no reservation"] = { "DisciplineNoReservationUnique__1", }, + ["divine flesh"] = { "KeystoneDivineFleshUnique__1_", }, + ["divine shield"] = { "KeystoneDivineShieldUnique_1", }, + ["does not inflict mana burn over time"] = { "TinctureToxicityOnHitUnique__1", }, + ["drops scorched ground while moving, lasting # seconds"] = { "ScorchedGroundWhileMovingUnique__1", }, + ["drops scorched ground while moving, lasting 4 seconds"] = { "ScorchedGroundWhileMovingUnique__1", }, + ["drops shocked ground while moving, lasting # seconds"] = { "ShockedGroundWhileMovingUnique__1_", }, + ["drops shocked ground while moving, lasting 2 seconds"] = { "ShockedGroundWhileMovingUnique__1_", }, + ["during effect, #% reduced damage taken of each element for which your uncapped elemental resistance is lowest"] = { "FlaskElementalDamageTakenOfLowestResistUnique__1", }, + ["during effect, 6% reduced damage taken of each element for which your uncapped elemental resistance is lowest"] = { "FlaskElementalDamageTakenOfLowestResistUnique__1", }, + ["during effect, damage penetrates (#)% resistance of each element for which your uncapped elemental resistance is highest"] = { "FlaskElementalPenetrationOfHighestResistUnique__1", }, + ["during effect, damage penetrates (5-8)% resistance of each element for which your uncapped elemental resistance is highest"] = { "FlaskElementalPenetrationOfHighestResistUnique__1", }, + ["each rage also grants +#% to damage over time multiplier for bleeding while wielding an axe"] = { "BleedDotMultiplierPerRagePerEquippedAxeUnique__1", }, + ["each rage also grants +#% to fire damage over time multiplier"] = { "FireDoTMultiPerRageUnique_1", }, + ["each rage also grants +2% to damage over time multiplier for bleeding while wielding an axe"] = { "BleedDotMultiplierPerRagePerEquippedAxeUnique__1", }, + ["each rage also grants +2% to fire damage over time multiplier"] = { "FireDoTMultiPerRageUnique_1", }, + ["each summoned phantasm grants you phantasmal might"] = { "PhantasmGrantsBuffUnique__1", }, + ["eat (#) souls when you kill a rare or unique enemy with this weapon"] = { "GainSoulEaterStackOnRareOrUniqueKillWithWeaponUnique__1", }, + ["eat (2-4) souls when you kill a rare or unique enemy with this weapon"] = { "GainSoulEaterStackOnRareOrUniqueKillWithWeaponUnique__1", }, + ["eat a soul when you hit a rare or unique enemy, no more than once every # seconds"] = { "GainSoulEaterStackOnHitUnique__1", }, + ["eat a soul when you hit a rare or unique enemy, no more than once every 0.5 seconds"] = { "GainSoulEaterStackOnHitUnique__1", }, + ["effect is removed when ward breaks"] = { "FlaskRemoveEffectWhenWardBreaksUnique1", }, + ["effects of consecrated ground you create linger for # seconds"] = { "ConsecratedGroundLingersUnique__1", }, + ["effects of consecrated ground you create linger for 4 seconds"] = { "ConsecratedGroundLingersUnique__1", }, + ["effects of profane ground you create linger for # seconds"] = { "ProfaneGroundLingersUnique__1", }, + ["effects of profane ground you create linger for 4 seconds"] = { "ProfaneGroundLingersUnique__1", }, + ["eldritch battery"] = { "KeystoneEldritchBatteryUnique__1", "KeystoneEldritchBatteryUnique__2", "KeystoneEldritchBatteryUnique__3", }, + ["elemental ailments inflicted on you spread to enemies within # metres"] = { "ProlifElementalAilmentsFromSelfUnique__1__", }, + ["elemental ailments inflicted on you spread to enemies within 2.5 metres"] = { "ProlifElementalAilmentsFromSelfUnique__1__", }, + ["elemental ailments you inflict are reflected to you"] = { "ReflectElementalAilmentsToSelfUnique__1", }, + ["elemental damage with hits is lucky while you are shocked"] = { "ElementalDamageLuckyWhileShockedUnique__1__", }, + ["elemental damage you deal with hits is resisted by lowest elemental resistance instead"] = { "ElementalDamageLowestResistUnique__1", }, + ["elemental equilibrium"] = { "KeystoneElementalEquilibriumSceptreImplicit1", "KeystoneElementalEquilibriumUnique__1", }, + ["elemental overload"] = { "KeystoneElementalOverloadSceptreImplicit1_", "KeystoneElementalOverloadUnique__1", }, + ["elemental resistances are capped by your highest maximum elemental resistance instead"] = { "ElementalResistanceHighestMaxResistanceUnique__1_", }, + ["elemental resistances are zero"] = { "SetElementalResistancesUniqueHelmetStrInt4", }, + ["elemental resistances cannot be penetrated"] = { "UniqueElementalResistancesCannotBePenetrated__1", }, + ["elemental weakness has no reservation if cast as an aura"] = { "ElementalWeaknessReservationCostUnique__1", }, + ["emits a golden glow"] = { "PlayerLightAlternateColourUniqueRing9", }, + ["enemies affected by your spider's webs deal #% reduced damage"] = { "DamageDealtByWebbedEnemiesUnique__1", }, + ["enemies affected by your spider's webs deal 10% reduced damage"] = { "DamageDealtByWebbedEnemiesUnique__1", }, + ["enemies affected by your spider's webs have #% to all resistances"] = { "ResistancesOfWebbedEnemiesUnique__1", }, + ["enemies affected by your spider's webs have -10% to all resistances"] = { "ResistancesOfWebbedEnemiesUnique__1", }, + ["enemies blinded by you cannot inflict damaging ailments"] = { "BlindedEnemiesCannotInflictAilmentsUnique_1", }, + ["enemies blinded by you have malediction"] = { "MaledictionOnBlindWhileBlindedUnique__1", }, + ["enemies cannot leech life from you"] = { "EnemiesCantLifeLeech", "UniqueEnemiesCantLifeLeech__1", }, + ["enemies cannot leech mana from you"] = { "EnemiesCannotLeechMana", }, + ["enemies chilled by your hits can be shattered as though frozen"] = { "ChillHitsCauseShatteringUnique__1", }, + ["enemies chilled by your hits have damage taken increased by chill effect"] = { "EnemiesChilledIncreasedDamageTakenUnique__1", }, + ["enemies chilled by your hits lessen their damage dealt by half of chill effect"] = { "EnemiesChilledLessDamageDealtUnique__1", }, + ["enemies cursed by you are hindered if #% of curse duration expired"] = { "Curse25PercentHinderEnemyUnique__1", }, + ["enemies cursed by you are hindered if 25% of curse duration expired"] = { "Curse25PercentHinderEnemyUnique__1", }, + ["enemies cursed by you take #% increased damage if #% of curse duration expired"] = { "Curse75PercentEnemyDamageTakenUnique__1__", }, + ["enemies cursed by you take 35% increased damage if 75% of curse duration expired"] = { "Curse75PercentEnemyDamageTakenUnique__1__", }, + ["enemies do not block your movement for # seconds on rampage"] = { "PhasingOnRampageUniqueGlovesDexInt6", }, + ["enemies do not block your movement for 4 seconds on rampage"] = { "PhasingOnRampageUniqueGlovesDexInt6", }, + ["enemies frozen by you take #% increased damage"] = { "FrozenMonstersTakeIncreasedDamage", "FrozenMonstersTakeIncreasedDamageUnique__1", }, + ["enemies frozen by you take 20% increased damage"] = { "FrozenMonstersTakeIncreasedDamage", "FrozenMonstersTakeIncreasedDamageUnique__1", }, + ["enemies ignited by you during effect take (#)% increased damage"] = { "EnemiesIgnitedTakeIncreasedDamageUnique__1", }, + ["enemies ignited by you during effect take (7-10)% increased damage"] = { "EnemiesIgnitedTakeIncreasedDamageUnique__1", }, + ["enemies ignited by you have (#)% of physical damage they deal converted to fire"] = { "EnemyIgnitedConvertedToFireUnique__1", }, + ["enemies ignited by you have (10-15)% of physical damage they deal converted to fire"] = { "EnemyIgnitedConvertedToFireUnique__1", }, + ["enemies ignited by you take chaos damage instead of fire damage from ignite"] = { "EnemiesIgniteChaosDamageUnique__1", }, + ["enemies in your chilling areas take (#)% increased lightning damage"] = { "ChillingAreasAlsoGrantLightningDamageTakenUnique__1", }, + ["enemies in your chilling areas take (25-35)% increased lightning damage"] = { "ChillingAreasAlsoGrantLightningDamageTakenUnique__1", }, + ["enemies inflict elemental ailments on you instead of nearby allies"] = { "ElementalAilmentsOnYouInsteadOfAlliesUnique__1", }, + ["enemies killed by your hits are destroyed"] = { "EnemiesDestroyedOnKillUnique__1", "VillageEnemiesDestroyedOnKill", }, + ["enemies killed by your hits are destroyed while insane"] = { "EnemiesExplodeOnKillUnhingedUnique__1_", }, + ["enemies killed by zombies' hits explode, dealing #% of their life as fire damage"] = { "ZombiesExplodeEnemiesOnHitUniqueSceptre3", }, + ["enemies killed by zombies' hits explode, dealing 50% of their life as fire damage"] = { "ZombiesExplodeEnemiesOnHitUniqueSceptre3", }, + ["enemies killed with attack or spell hits explode, dealing #% of their life as fire damage"] = { "EnemiesExplodeOnDeathUniqueTwoHandMace7", }, + ["enemies killed with attack or spell hits explode, dealing 10% of their life as fire damage"] = { "EnemiesExplodeOnDeathUniqueTwoHandMace7", }, + ["enemies near corpses affected by your curses are blinded"] = { "EnemiesNearCursesBlindAndExplodeUnique__1", }, + ["enemies on fungal ground you kill explode, dealing #% of their life as chaos damage"] = { "EnemiesOnFungalGroundExplodeUnique__1", }, + ["enemies on fungal ground you kill explode, dealing 10% of their life as chaos damage"] = { "EnemiesOnFungalGroundExplodeUnique__1", }, + ["enemies poisoned by you cannot deal critical strikes"] = { "EnemiesPoisonedByYouCannotCritUnique_1", }, + ["enemies shocked by you have (#)% of physical damage they deal converted to lightning"] = { "EnemyShockedConvertedToLightningUnique__1", }, + ["enemies shocked by you have (10-15)% of physical damage they deal converted to lightning"] = { "EnemyShockedConvertedToLightningUnique__1", }, + ["enemies slain by socketed gems drop #% increased item quantity"] = { "SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4", }, + ["enemies slain by socketed gems drop 10% increased item quantity"] = { "SocketedGemsGetIncreasedItemQuantityUniqueShieldInt4", }, + ["enemies take #% increased elemental damage from your hits for"] = { "WitherGrantsElementalDamageTakenUnique__1__", }, + ["enemies take (#)% increased damage for each type of ailment you have inflicted on them"] = { "EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1", }, + ["enemies take (5-10)% increased damage for each type of ailment you have inflicted on them"] = { "EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1", }, + ["enemies take 4% increased elemental damage from your hits for"] = { "WitherGrantsElementalDamageTakenUnique__1__", }, + ["enemies taunted by you take #% increased damage"] = { "TauntedEnemiesTakeIncreasedDamage_", }, + ["enemies taunted by you take 10% increased damage"] = { "TauntedEnemiesTakeIncreasedDamage_", }, + ["enemies taunted by your warcries explode on death, dealing #% of their maximum life as chaos damage"] = { "WarcryTauntChaosExplosionUnique__1_", }, + ["enemies taunted by your warcries explode on death, dealing 8% of their maximum life as chaos damage"] = { "WarcryTauntChaosExplosionUnique__1_", }, + ["enemies you attack have #% chance to reflect # to # chaos damage to you"] = { "ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_", }, + ["enemies you attack have 20% chance to reflect 35 to 50 chaos damage to you"] = { "ChanceToReflectChaosDamageToSelfUniqueTwoHandSword7_", }, + ["enemies you attack reflect # physical damage to you"] = { "ReflectPhysicalDamageToSelfOnHitUnique__1", }, + ["enemies you attack reflect 100 physical damage to you"] = { "ReflectPhysicalDamageToSelfOnHitUnique__1", }, + ["enemies you inflict bleeding on grant (#)% increased flask charges"] = { "EnemiesYouBleedGrantIncreasedFlaskChargesUnique__1_", }, + ["enemies you inflict bleeding on grant (60-100)% increased flask charges"] = { "EnemiesYouBleedGrantIncreasedFlaskChargesUnique__1_", }, + ["enemies you kill are shocked"] = { "ShockOnKillUnique__1", }, + ["enemies you kill during effect have a (#)% chance to explode, dealing a tenth of their maximum life as damage of a random element"] = { "EnemyExplosionRandomElementFlaskEffectUnique__1", }, + ["enemies you kill during effect have a (20-30)% chance to explode, dealing a tenth of their maximum life as damage of a random element"] = { "EnemyExplosionRandomElementFlaskEffectUnique__1", }, + ["enemies you kill have a #% chance to explode, dealing a quarter of their maximum life as chaos damage"] = { "ExplodeOnKillChaosUnique__1", }, + ["enemies you kill have a 20% chance to explode, dealing a quarter of their maximum life as chaos damage"] = { "ExplodeOnKillChaosUnique__1", }, + ["enemies you kill while affected by glorious madness have a #% chance to explode, dealing a quarter of their life as chaos damage"] = { "EnemiesExplodeOnDeathChaosGloriousMadnessUnique1", }, + ["enemies you kill while affected by glorious madness have a 40% chance to explode, dealing a quarter of their life as chaos damage"] = { "EnemiesExplodeOnDeathChaosGloriousMadnessUnique1", }, + ["enemies you shock have #% reduced cast speed"] = { "ShockedEnemyCastSpeedUnique__1", }, + ["enemies you shock have #% reduced movement speed"] = { "ShockedEnemyMovementSpeedUnique__1", }, + ["enemies you shock have 20% reduced movement speed"] = { "ShockedEnemyMovementSpeedUnique__1", }, + ["enemies you shock have 30% reduced cast speed"] = { "ShockedEnemyCastSpeedUnique__1", }, + ["enemy hits inflict temporal chains on you"] = { "EnemyTemporalChainsOnHitUnique__1", }, + ["enemy hits on you roll low damage"] = { "EnemyHitsRollLowDamageUniqueRing9", }, + ["enemy projectiles pierce you"] = { "ChanceToBePiercedUniqueBodyStr6", }, + ["energy shield leech effects from attacks are not removed at full energy shield"] = { "ESLeechFromAttacksNotRemovedOnFullESUnique__1", "VillageESLeechFromAttacksNotRemovedOnFullES", }, + ["energy shield recharge is not delayed by damage during effect"] = { "LocalFlaskEnergyShieldRechargeNotDelayedByDamageDuringEffectUnique_1", }, + ["energy shield recharge starts when you are stunned"] = { "EnergyShieldRechargeStartsWhenStunnedUnique__1", }, + ["enfeeble has no reservation if cast as an aura"] = { "EnfeebleReservationCostUnique__1", }, + ["envy has no reservation"] = { "EnvyNoReservationUnique__1", }, + ["eternal youth"] = { "KeystoneEternalYouthUnique__1", "KeystoneEternalYouthUnique__2_", }, + ["evasion rating is increased by overcapped cold resistance"] = { "EvasionIncreasedByUncappedColdResistanceUnique__1", }, + ["everlasting sacrifice"] = { "KeystoneEverlastingSacrificeUnique__1", }, + ["every # seconds you gain elemental overload for # seconds"] = { "GainElementalOverloadEvery16SecondsUnique__1", }, + ["every # seconds you gain iron reflexes for # seconds"] = { "DisplayIronReflexesFor8SecondsUnique__1", }, + ["every # seconds, consume a nearby corpse to recover (#)% of life"] = { "VillageConsumeCorpseLifeRecovery", }, + ["every # seconds, gain avatar of fire for # seconds"] = { "GainAvatarOfFireEvery8SecondsUnique__1", }, + ["every # seconds, gain one of the following for # seconds:"] = { "HinekoraButterflyEffectUnique__1", }, + ["every # seconds, regenerate #% of life over one second if # hunter items are equipped"] = { "RegenerateLifeOver1Second2HunterItemsUnique__1", }, + ["every # seconds:"] = { "RecoverLifeAlteratingUnique__1", }, + ["every 10 seconds:"] = { "RecoverLifeAlteratingUnique__1", }, + ["every 16 seconds you gain elemental overload for 8 seconds"] = { "GainElementalOverloadEvery16SecondsUnique__1", }, + ["every 16 seconds you gain iron reflexes for 8 seconds"] = { "DisplayIronReflexesFor8SecondsUnique__1", }, + ["every 3 seconds, consume a nearby corpse to recover (7-10)% of life"] = { "VillageConsumeCorpseLifeRecovery", }, + ["every 4 seconds, regenerate 35% of life over one second if 2 hunter items are equipped"] = { "RegenerateLifeOver1Second2HunterItemsUnique__1", }, + ["every 5 seconds, gain one of the following for 5 seconds:"] = { "HinekoraButterflyEffectUnique__1", }, + ["every 8 seconds, gain avatar of fire for 4 seconds"] = { "GainAvatarOfFireEvery8SecondsUnique__1", }, + ["every rage also grants #% of physical damage as extra fire damage"] = { "PhysicalAddedAsFirePerRageUnique__1", }, + ["every rage also grants 1% of physical damage as extra fire damage"] = { "PhysicalAddedAsFirePerRageUnique__1", }, + ["excommunicate enemies on melee hit for # seconds"] = { "ExcommunicateOnMeleeHitUnique", }, + ["excommunicate enemies on melee hit for 3 seconds"] = { "ExcommunicateOnMeleeHitUnique", }, + ["exerted attacks deal #% increased damage"] = { "ExertedAttackDamageUnique__1", }, + ["exerted attacks deal (#)% increased damage"] = { "ExertedDamageWarcryCooldown1", "ExertedDamageWarcryCooldown2", "ExertedDamageWarcryCooldown3", "VillageExertedAttackDamage", }, + ["exerted attacks deal (25-30)% increased damage"] = { "ExertedDamageWarcryCooldown1", }, + ["exerted attacks deal (30-40)% increased damage"] = { "ExertedDamageWarcryCooldown2", }, + ["exerted attacks deal (40-50)% increased damage"] = { "ExertedDamageWarcryCooldown3", }, + ["exerted attacks deal (80-100)% increased damage"] = { "VillageExertedAttackDamage", }, + ["exerted attacks deal 200% increased damage"] = { "ExertedAttackDamageUnique__1", }, + ["exerted attacks knock enemies back on hit"] = { "ExertedAttackKnockbackChanceUnique__1", }, + ["extra gore"] = { "ExtraGore", }, + ["far shot"] = { "PlayerFarShotUnique__1", "PlayerFarShotUnique__2", "PlayerFarShotUnique__3", "VillagePlayerFarShot", }, + ["fire damage is increased by #% per # intelligence from allocated passives in radius"] = { "IncreasedFireballRadiusUniqueJewel57", }, + ["fire damage is increased by 1% per 5 intelligence from allocated passives in radius"] = { "IncreasedFireballRadiusUniqueJewel57", }, + ["fire resistance is #%"] = { "FireResistanceOverrideUnique__1__", }, + ["fire resistance is 75%"] = { "FireResistanceOverrideUnique__1__", }, + ["fire skills have #% chance to poison on hit"] = { "FireSkillsChanceToPoisonUnique__1", }, + ["fire skills have 20% chance to poison on hit"] = { "FireSkillsChanceToPoisonUnique__1", }, + ["flammability has no reservation if cast as an aura"] = { "FlammabilityReservationCostUnique__1", }, + ["flasks applied to you have #% increased effect"] = { "BeltIncreasedFlaskEffectUnique__1", "CannotUseFlaskInFifthSlotImplicitE1_", "IncreasedFlaskEffectUniqueJewel45", }, + ["flasks applied to you have #% increased effect per level"] = { "FlaskEffectPerLevelUnique__1", }, + ["flasks applied to you have #% reduced effect"] = { "BeltIncreasedFlaskEffectUnique__2", "FlaskEffectUniqueJewel_10", }, + ["flasks applied to you have 1% increased effect per level"] = { "FlaskEffectPerLevelUnique__1", }, + ["flasks applied to you have 20% reduced effect"] = { "FlaskEffectUniqueJewel_10", }, + ["flasks applied to you have 25% increased effect"] = { "BeltIncreasedFlaskEffectUnique__1", }, + ["flasks applied to you have 30% increased effect"] = { "CannotUseFlaskInFifthSlotImplicitE1_", }, + ["flasks applied to you have 60% reduced effect"] = { "BeltIncreasedFlaskEffectUnique__2", }, + ["flasks applied to you have 8% increased effect"] = { "IncreasedFlaskEffectUniqueJewel45", }, + ["flasks do not apply to you"] = { "CannotBeAffectedByFlasksUnique__1", }, + ["flasks gain # charge per second if you've hit a unique enemy recently"] = { "FlaskChargePerSecondUniqueEnemyUnique__1___", }, + ["flasks gain # charges every # seconds while they are inactive"] = { "FlaskChargePerSecondInactiveUniqueJewel_10", }, + ["flasks gain # charges when you hit a non-unique enemy, no more than once per second"] = { "FlaskChargeOnHitNonUniqueUniqueJewel____9", }, + ["flasks gain 1 charge per second if you've hit a unique enemy recently"] = { "FlaskChargePerSecondUniqueEnemyUnique__1___", }, + ["flasks gain 2 charges when you hit a non-unique enemy, no more than once per second"] = { "FlaskChargeOnHitNonUniqueUniqueJewel____9", }, + ["flasks gain 3 charges every 3 seconds while they are inactive"] = { "FlaskChargePerSecondInactiveUniqueJewel_10", }, + ["flasks you use apply to your raised zombies and spectres"] = { "FlasksApplyToMinionsUnique__1", }, + ["flesh and stone has no reservation"] = { "FleshAndStoneManaReservationUnique__1_", }, + ["focus has (#)% increased cooldown recovery rate"] = { "FocusCooldownRecoveryUnique__1_", }, + ["focus has (30-50)% increased cooldown recovery rate"] = { "FocusCooldownRecoveryUnique__1_", }, + ["for each nearby corpse, #% increased movement speed"] = { "MovementVelocityPerNearbyCorpseUnique__1", }, + ["for each nearby corpse, 1% increased movement speed"] = { "MovementVelocityPerNearbyCorpseUnique__1", }, + ["for each nearby corpse, regenerate # life per second"] = { "FlatLifeRegenerationPerNearbyCorpseUnique__1", }, + ["for each nearby corpse, regenerate #% life per second, up to #%"] = { "LifeRegenerationPerNearbyCorpseUnique__1", }, + ["for each nearby corpse, regenerate 0.25% life per second, up to 3%"] = { "LifeRegenerationPerNearbyCorpseUnique__1", }, + ["for each nearby corpse, regenerate 8 life per second"] = { "FlatLifeRegenerationPerNearbyCorpseUnique__1", }, + ["found magic items drop identified"] = { "MagicItemsDropIdentifiedUnique__1", }, + ["freeze chilled enemies as though dealing (#)% more damage"] = { "FreezeChilledEnemiesMoreDamageUnique__1_", }, + ["freeze chilled enemies as though dealing (50-100)% more damage"] = { "FreezeChilledEnemiesMoreDamageUnique__1_", }, + ["freezes you inflict spread to other enemies within # metres"] = { "FreezeProliferationUnique__1", }, + ["freezes you inflict spread to other enemies within 1.5 metres"] = { "FreezeProliferationUnique__1", }, + ["frostbite has no reservation if cast as an aura"] = { "FrostbiteReservationCostUnique__1", }, + ["frostblink has #% increased duration"] = { "FrostblinkDurationUnique__1_", }, + ["frostblink has 50% increased duration"] = { "FrostblinkDurationUnique__1_", }, + ["gain # armour per grand spectrum"] = { "ArmourPerStackableJewelUnique__1", }, + ["gain # endurance charge every second if you've been hit recently"] = { "ChargeBonusEnduranceChargeIfHitRecently", }, + ["gain # endurance charge every second if you've been hit recently and"] = { "EnduranceChargeIfHitRecently4WarlordItemsUnique__1", }, + ["gain # endurance charge on use"] = { "FlaskGainEnduranceChargeUnique__1_", }, + ["gain # endurance charge per second during effect"] = { "FlaskEnduranceChargePerSecondUnique1", }, + ["gain # endurance, frenzy or power charges every # seconds"] = { "GainRandomChargeEvery6SecondsImplicitE2", }, + ["gain # energy shield on kill per level"] = { "EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8", }, + ["gain # life on kill per level"] = { "LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7", }, + ["gain # life per bleeding enemy hit"] = { "LifeGainVsBleedingEnemiesUnique__1", }, + ["gain # life per elemental ailment on enemies hit with attacks"] = { "LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33", }, + ["gain # life per elemental ailment on enemies hit with spells"] = { "LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33", }, + ["gain # life per enemy hit if you have used a vaal skill recently"] = { "LifeGainOnHitIfVaalSkillUsedRecentlyUnique__1", }, + ["gain # life per enemy hit with attacks"] = { "LifeGainPerTargetUnique__1", }, + ["gain # life per enemy hit with spells"] = { "LifeGainedOnSpellHitUniqueDescentClaw1", }, + ["gain # life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueBodyStrDexInt1", "LifeGainedFromEnemyDeathUniqueDagger11", "LifeGainedFromEnemyDeathUniqueTwoHandAxe1", "LifeGainedFromEnemyDeathUniqueTwoHandAxe2", "LifeGainedFromEnemyDeathUniqueTwoHandMace7", "LifeGainedFromEnemyDeathUnique__4", "LifeGainedFromEnemyDeathUnique__5", }, + ["gain # life per ignited enemy killed"] = { "LifeGainedOnKillingIgnitedEnemiesUniqueWand10_", }, + ["gain # life when you lose an endurance charge"] = { "LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6", }, + ["gain # life when you stun an enemy"] = { "LifeGainedOnStunUnique__1_", }, + ["gain # mana on kill per level"] = { "ManaGainedOnEnemyDeathPerLevelUniqueSceptre8", }, + ["gain # mana per enemy hit with attacks"] = { "ManaGainPerTargetUniqueRing7", }, + ["gain # mana per enemy killed"] = { "ManaGainedFromEnemyDeathUniqueBodyStrDexInt1", "ManaGainedFromEnemyDeathUniqueBow2", "ManaGainedFromEnemyDeathUniqueShieldInt3", "ManaGainedFromEnemyDeathUniqueTwoHandAxe5", "ManaGainedFromEnemyDeathUniqueTwoHandSword3", "ManaGainedFromEnemyDeathUnique__1", }, + ["gain # mana per grand spectrum"] = { "ManaPerStackableJewelUnique__1", }, + ["gain # mana per taunted enemy hit"] = { "ManaGainedOnHitAgainstTauntedEnemyUniqueShieldInt5", }, + ["gain # power charges when you warcry"] = { "GainPowerChargesOnUsingWarcryUnique__1", }, + ["gain # rage on critical strike with attacks"] = { "RageOnAttackCritUnique__1", }, + ["gain # rage on melee hit"] = { "RageOnMeleeHitE1", "RageOnMeleeHitE2", "RageOnMeleeHitE3", "RageOnMeleeHitUnique__1", }, + ["gain # rage on melee weapon hit"] = { "TinctureRageOnHitImplicit1", }, + ["gain # remembrance when you spend a total of # energy"] = { "RemembranceGainedPerEnergyShieldUnique_1", }, + ["gain # vaal souls per second during effect"] = { "FlaskGainVaalSoulPerSecondUnique__1_", }, + ["gain #% increased area of effect for # seconds after spending a total of # mana"] = { "GainAreaOfEffectPluspercentOnManaSpentUnique__1", }, + ["gain #% of cold damage as extra chaos damage per frenzy charge"] = { "ChargeBonusColdDamageAddedAsChaos", }, + ["gain #% of cold damage as extra fire damage against frozen enemies"] = { "ColdAddedAsFireFrozenEnemyUnique__1", }, + ["gain #% of cold damage as extra fire damage per #% chill effect on enemy"] = { "ColdAddedAsFireChilledEnemyUnique__1", }, + ["gain #% of fire damage as extra chaos damage per endurance charge"] = { "ChargeBonusFireDamageAddedAsChaos__", }, + ["gain #% of lightning damage as extra chaos damage per power charge"] = { "ChargeBonusLightningDamageAddedAsChaos", }, + ["gain #% of lightning damage as extra cold damage per #% shock effect on enemy"] = { "LightningAddedAsColdShockedEnemyUnique__1", }, + ["gain #% of non-chaos damage as extra chaos damage per siphoning charge"] = { "NonChaosDamageAddedAsChaosPerSiphoningChargeUnique__1", }, + ["gain #% of physical attack damage as extra fire damage"] = { "AttackPhysicalDamageAddedAsFireUnique__1", }, + ["gain #% of physical attack damage as extra lightning damage"] = { "AttackPhysicalDamageAddedAsLightningUnique__1", }, + ["gain #% of physical damage as extra cold damage"] = { "ConvertPhysicalToColdUniqueQuiver5", "PhysicalAddedAsColdUnique__1", }, + ["gain #% of physical damage as extra damage of each element per spirit charge"] = { "PhysAddedAsEachElementPerSpiritChargeUnique__1", }, + ["gain #% of physical damage as extra fire damage"] = { "PhysicalAddedAsFireUnique__2", "PhysicalAddedAsFireUnique__3", }, + ["gain #% of weapon physical damage as extra damage of a random element"] = { "WeaponPhysicalDamageAddedAsRandomElementDescentUniqueQuiver1", "WeaponPhysicalDamageAddedAsRandomElementUniqueBow11", "WeaponPhysicalDamageAddedAsRandomElementUnique__1__", }, + ["gain #% of weapon physical damage as extra damage of each element"] = { "LocalPhysicalDamageAddedAsEachElementTransformed", "LocalPhysicalDamageAddedAsEachElementTransformed2", "LocalPhysicalDamageAddedAsEachElementUnique__1", }, + ["gain (#) endurance charge on use"] = { "FlaskGainEnduranceChargeUniqueFlask2", }, + ["gain (#) energy shield for each enemy you hit which is affected by a spider's web"] = { "ESOnHitWebbedEnemiesUnique__1", }, + ["gain (#) energy shield per enemy hit with attacks"] = { "EnergyShieldGainedFromEnemyDeathUnique__1", }, + ["gain (#) energy shield per enemy killed"] = { "EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6", "EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3", }, + ["gain (#) frenzy charge on use"] = { "FlaskGainFrenzyChargeUniqueFlask2", }, + ["gain (#) life for each ignited enemy hit with attacks"] = { "LifeGainOnHitVsIgnitedEnemiesUniqueRing31", }, + ["gain (#) life on culling strike"] = { "LifeGainOnCullUnique__1", }, + ["gain (#) life per cursed enemy hit with attacks"] = { "LifeGainOnHitCursedEnemyUnique__1", }, + ["gain (#) life per enemy hit with attacks"] = { "LifeGainPerTargetImplicitQuiver3New", "LifeGainPerTargetImplicitQuiver8", "LifeGainPerTargetUniqueQuiver21", "LifeGainPerTargetUniqueQuiver6_", "LifeGainPerTargetUniqueRing2", "LifeGainPerTargetUniqueRing7", "LifeGainedFromEnemyDeathUnique__1", }, + ["gain (#) life per enemy hit with spells"] = { "LifeGainedOnSpellHitUniqueClaw7", }, + ["gain (#) life per enemy hit with this weapon while you are leeching"] = { "LifeGainOnHitWhileLeechingUber1", }, + ["gain (#) life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueBootsStrInt1", "LifeGainedFromEnemyDeathUniqueDagger1", "LifeGainedFromEnemyDeathUniqueHelmetDexInt3", "LifeGainedFromEnemyDeathUniqueOneHandAxe3", "LifeGainedFromEnemyDeathUnique__2", "LifeGainedFromEnemyDeathUnique__3", }, + ["gain (#) life per ignited enemy killed"] = { "LifeGainedOnKillingIgnitedEnemiesUnique__1", }, + ["gain (#) mana on culling strike"] = { "ManaGainOnCullUnique__1_", }, + ["gain (#) mana per cursed enemy hit with attacks"] = { "ManaGainOnHitCursedEnemyUnique__1", }, + ["gain (#) mana per enemy killed"] = { "ManaGainPerTargetUnique__3", "ManaGainedFromEnemyDeathUniqueDagger1", "ManaGainedFromEnemyDeathUniqueRing4", "ManaGainedFromEnemyDeathUnique__2", "ManaGainedFromEnemyDeathUnique__3", }, + ["gain (#) power charge on use"] = { "FlaskGainPowerChargeUniqueFlask2", }, + ["gain (#) rage after spending a total of # mana"] = { "GainRageOnManaSpentUnique__1", }, + ["gain (#) rage on melee hit"] = { "VillageRageOnMeleeHit", }, + ["gain (#) vaal souls on use"] = { "FlaskGainVaalSoulsOnUseUnique__1", }, + ["gain (#)% of cold damage as extra chaos damage"] = { "ChaosDamageAsPortionOfColdDamageUnique__1", }, + ["gain (#)% of cold damage as extra fire damage against frozen enemies"] = { "VillageColdAddedAsFireFrozenEnemy", }, + ["gain (#)% of elemental damage as extra chaos damage"] = { "ElementalDamagePercentAddedAsChaosUnique__1", "ElementalDamagePercentAddedAsChaosUnique__2", "ElementalDamagePercentAddedAsChaosUnique__3", "ElementalDamagePercentAddedAsChaosUnique__4", "VillageElementalDamagePercentAddedAsChaos", }, + ["gain (#)% of elemental damage as extra chaos damage during effect"] = { "AddedChaosDamageAsPercentOfElementalWhileUsingFlaskUniqueFlask5", }, + ["gain (#)% of elemental damage as extra chaos damage per shaper item equipped"] = { "ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1", }, + ["gain (#)% of fire damage as extra chaos damage"] = { "ChaosDamageAsPortionOfFireDamageUnique__1", }, + ["gain (#)% of lightning damage as extra chaos damage"] = { "ChaosDamageAsPortionOfLightningDamageUnique__1", }, + ["gain (#)% of maximum life as extra maximum energy shield"] = { "MaximumEnergyShieldAsPercentageOfLifeUnique__1", "MaximumEnergyShieldAsPercentageOfLifeUnique__2", }, + ["gain (#)% of maximum mana as extra maximum energy shield"] = { "GainManaAsExtraEnergyShieldUnique__1", }, + ["gain (#)% of missing unreserved life before being hit by an enemy"] = { "GainMissingLifeOnHitUnique__1", }, + ["gain (#)% of non-chaos damage as extra chaos damage per summoned void spawn"] = { "ExtraChaosDamagePerVoidSpawnUnique__1", }, + ["gain (#)% of physical attack damage as extra fire damage"] = { "AttackPhysicalDamageAddedAsFireUnique__2", "PhysicalAddedAsFireUnique__1", }, + ["gain (#)% of physical damage as a random element if you've cast elemental weakness in the past # seconds"] = { "ElementalWeaknessPhysicalAsRandomElementUnique__1", }, + ["gain (#)% of physical damage as extra chaos damage"] = { "ChaosDamageAsPortionOfDamageUniqueRing16", "ChaosDamageAsPortionOfDamageUnique__1", "PhysicalDamageAddedAsChaosImplicitQuiver11New", "PhysicalDamageAddedAsChaosUniqueShiledStrInt8", }, + ["gain (#)% of physical damage as extra chaos damage during effect"] = { "AddedChaosDamageAsPercentOfPhysicalWhileUsingFlaskUniqueFlask5", }, + ["gain (#)% of physical damage as extra chaos damage if you've"] = { "PhysicalAddedAsChaosIfUsedAmethystFlaskRecentlyUnique__1", }, + ["gain (#)% of physical damage as extra chaos damage per elder item equipped"] = { "PhysicalDamagePercentAddedAsChaosPerElderItemUnique__1", }, + ["gain (#)% of physical damage as extra chaos damage while at maximum power charges"] = { "PhysAddedAsChaosWithMaxPowerChargesUnique__1", }, + ["gain (#)% of physical damage as extra cold damage"] = { "PhysicalAddedAsColdUniqueOneHandSword12", "PhysicalAddedAsColdUnique__2", "PhysicalAddedAsColdUnique__3", }, + ["gain (#)% of physical damage as extra cold damage during effect"] = { "PhysicalAddedAsColdUniqueFlask8", }, + ["gain (#)% of physical damage as extra cold damage if you've"] = { "PhysicalAddedAsColdIfUsedSapphireFlaskRecentlyUnique__1", }, + ["gain (#)% of physical damage as extra damage of a random element"] = { "TalismanDamageDealtAddedAsRandomElement", }, + ["gain (#)% of physical damage as extra damage of a random element while you are ignited"] = { "PhysicalDamageAddedAsRandomWhileIgnitedUnique__1", }, + ["gain (#)% of physical damage as extra damage of each element if"] = { "PhysAddedAsEachElement6ShaperItemsUnique__1", }, + ["gain (#)% of physical damage as extra fire damage"] = { "PhysicalAddedAsFireUnique__4", }, + ["gain (#)% of physical damage as extra fire damage if you've"] = { "PhysicalAddedAsFireIfUsedRubyFlaskRecentlyUnique__1", }, + ["gain (#)% of physical damage as extra lightning damage"] = { "PhysicalAddedAsLightningUnique__1", }, + ["gain (#)% of physical damage as extra lightning damage if you've"] = { "PhysicalAddedAsLightningIfUsedTopazFlaskRecentlyUnique__1", }, + ["gain (#)% of sword physical damage as extra fire damage"] = { "SwordPhysicalDamageToAddAsFireUniqueOneHandSword10", }, + ["gain (#)% of weapon physical damage as extra damage of a random element"] = { "WeaponPhysicalDamageAddedAsRandomElementUnique__2", }, + ["gain (#)% of weapon physical damage as extra damage of each element"] = { "VillageLocalPhysicalDamageAddedAsEachElement", }, + ["gain (1-100) mana per enemy killed"] = { "ManaGainedFromEnemyDeathUnique__3", }, + ["gain (1-3) endurance charge on use"] = { "FlaskGainEnduranceChargeUniqueFlask2", }, + ["gain (1-3) frenzy charge on use"] = { "FlaskGainFrenzyChargeUniqueFlask2", }, + ["gain (1-3) power charge on use"] = { "FlaskGainPowerChargeUniqueFlask2", }, + ["gain (10-12) vaal souls on use"] = { "FlaskGainVaalSoulsOnUseUnique__1", }, + ["gain (10-14) mana per cursed enemy hit with attacks"] = { "ManaGainOnHitCursedEnemyUnique__1", }, + ["gain (10-15) energy shield per enemy killed"] = { "EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3", }, + ["gain (10-15)% of cold damage as extra fire damage against frozen enemies"] = { "VillageColdAddedAsFireFrozenEnemy", }, + ["gain (10-15)% of maximum mana as extra maximum energy shield"] = { "GainManaAsExtraEnergyShieldUnique__1", }, + ["gain (10-15)% of physical damage as extra chaos damage"] = { "PhysicalDamageAddedAsChaosImplicitQuiver11New", }, + ["gain (10-15)% of physical damage as extra cold damage"] = { "PhysicalAddedAsColdUnique__2", }, + ["gain (10-15)% of physical damage as extra cold damage during effect"] = { "PhysicalAddedAsColdUniqueFlask8", }, + ["gain (10-15)% of physical damage as extra damage of each element if"] = { "PhysAddedAsEachElement6ShaperItemsUnique__1", }, + ["gain (10-20) life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueBootsStrInt1", }, + ["gain (10-20) mana on culling strike"] = { "ManaGainOnCullUnique__1_", }, + ["gain (10-20)% of elemental damage as extra chaos damage"] = { "ElementalDamagePercentAddedAsChaosUnique__1", "ElementalDamagePercentAddedAsChaosUnique__2", "ElementalDamagePercentAddedAsChaosUnique__3", }, + ["gain (10-20)% of missing unreserved life before being hit by an enemy"] = { "GainMissingLifeOnHitUnique__1", }, + ["gain (10-50)% of physical damage as extra cold damage"] = { "PhysicalAddedAsColdUnique__3", }, + ["gain (10-50)% of physical damage as extra fire damage"] = { "PhysicalAddedAsFireUnique__4", }, + ["gain (10-50)% of physical damage as extra lightning damage"] = { "PhysicalAddedAsLightningUnique__1", }, + ["gain (100-200) life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueDagger1", }, + ["gain (120-150) life on culling strike"] = { "LifeGainOnCullUnique__1", }, + ["gain (15-20) energy shield for each enemy you hit which is affected by a spider's web"] = { "ESOnHitWebbedEnemiesUnique__1", }, + ["gain (15-20) energy shield per enemy killed"] = { "EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6", }, + ["gain (15-20) life per enemy hit with spells"] = { "LifeGainedOnSpellHitUniqueClaw7", }, + ["gain (15-20) life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueHelmetDexInt3", }, + ["gain (15-25) energy shield per enemy hit with attacks"] = { "EnergyShieldGainedFromEnemyDeathUnique__1", }, + ["gain (15-25) life per enemy hit with attacks"] = { "LifeGainedFromEnemyDeathUnique__1", }, + ["gain (15-25) life per enemy killed"] = { "LifeGainedFromEnemyDeathUnique__3", }, + ["gain (2-3) life per enemy hit with attacks"] = { "LifeGainPerTargetUniqueQuiver6_", }, + ["gain (2-4) life per enemy hit with attacks"] = { "LifeGainPerTargetUniqueRing2", }, + ["gain (2-4) rage on melee hit"] = { "VillageRageOnMeleeHit", }, + ["gain (20-28) life per cursed enemy hit with attacks"] = { "LifeGainOnHitCursedEnemyUnique__1", }, + ["gain (20-30) life per enemy killed"] = { "LifeGainedFromEnemyDeathUnique__2", }, + ["gain (20-40) mana per enemy killed"] = { "ManaGainedFromEnemyDeathUnique__2", }, + ["gain (20-40)% of physical damage as extra cold damage if you've"] = { "PhysicalAddedAsColdIfUsedSapphireFlaskRecentlyUnique__1", }, + ["gain (20-40)% of physical damage as extra fire damage if you've"] = { "PhysicalAddedAsFireIfUsedRubyFlaskRecentlyUnique__1", }, + ["gain (20-40)% of physical damage as extra lightning damage if you've"] = { "PhysicalAddedAsLightningIfUsedTopazFlaskRecentlyUnique__1", }, + ["gain (200-300) life per ignited enemy killed"] = { "LifeGainedOnKillingIgnitedEnemiesUnique__1", }, + ["gain (25-30)% of physical damage as extra cold damage"] = { "PhysicalAddedAsColdUniqueOneHandSword12", }, + ["gain (25-35)% of physical attack damage as extra fire damage"] = { "PhysicalAddedAsFireUnique__1", }, + ["gain (3-4) life per enemy hit with attacks"] = { "LifeGainPerTargetImplicitQuiver8", }, + ["gain (3-5)% of elemental damage as extra chaos damage per shaper item equipped"] = { "ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1", }, + ["gain (3-5)% of physical damage as extra chaos damage per elder item equipped"] = { "PhysicalDamagePercentAddedAsChaosPerElderItemUnique__1", }, + ["gain (30-40)% of physical attack damage as extra fire damage"] = { "AttackPhysicalDamageAddedAsFireUnique__2", }, + ["gain (30-40)% of physical damage as a random element if you've cast elemental weakness in the past 10 seconds"] = { "ElementalWeaknessPhysicalAsRandomElementUnique__1", }, + ["gain (30-40)% of physical damage as extra chaos damage"] = { "ChaosDamageAsPortionOfDamageUnique__1", }, + ["gain (30-40)% of physical damage as extra damage of a random element while you are ignited"] = { "PhysicalDamageAddedAsRandomWhileIgnitedUnique__1", }, + ["gain (30-50) life per enemy hit with this weapon while you are leeching"] = { "LifeGainOnHitWhileLeechingUber1", }, + ["gain (30-50)% of weapon physical damage as extra damage of each element"] = { "VillageLocalPhysicalDamageAddedAsEachElement", }, + ["gain (4-5) life for each ignited enemy hit with attacks"] = { "LifeGainOnHitVsIgnitedEnemiesUniqueRing31", }, + ["gain (4-6)% of maximum life as extra maximum energy shield"] = { "MaximumEnergyShieldAsPercentageOfLifeUnique__1", }, + ["gain (4-6)% of non-chaos damage as extra chaos damage per summoned void spawn"] = { "ExtraChaosDamagePerVoidSpawnUnique__1", }, + ["gain (40-60) life per enemy hit with attacks"] = { "LifeGainPerTargetUniqueRing7", }, + ["gain (40-60)% of physical damage as extra chaos damage"] = { "ChaosDamageAsPortionOfDamageUniqueRing16", }, + ["gain (40-60)% of weapon physical damage as extra damage of a random element"] = { "WeaponPhysicalDamageAddedAsRandomElementUnique__2", }, + ["gain (40-75)% of physical damage as extra chaos damage if you've"] = { "PhysicalAddedAsChaosIfUsedAmethystFlaskRecentlyUnique__1", }, + ["gain (5-10) life per enemy hit with attacks"] = { "LifeGainPerTargetUniqueQuiver21", }, + ["gain (5-10) mana per enemy killed"] = { "ManaGainPerTargetUnique__3", }, + ["gain (5-10)% of maximum life as extra maximum energy shield"] = { "MaximumEnergyShieldAsPercentageOfLifeUnique__2", }, + ["gain (5-10)% of physical damage as extra chaos damage"] = { "PhysicalDamageAddedAsChaosUniqueShiledStrInt8", }, + ["gain (5-20) mana per enemy killed"] = { "ManaGainedFromEnemyDeathUniqueRing4", }, + ["gain (5-7) life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueOneHandAxe3", }, + ["gain (5-8)% of elemental damage as extra chaos damage"] = { "ElementalDamagePercentAddedAsChaosUnique__4", }, + ["gain (5-8)% of elemental damage as extra chaos damage during effect"] = { "AddedChaosDamageAsPercentOfElementalWhileUsingFlaskUniqueFlask5", }, + ["gain (5-8)% of physical damage as extra chaos damage during effect"] = { "AddedChaosDamageAsPercentOfPhysicalWhileUsingFlaskUniqueFlask5", }, + ["gain (50-100) mana per enemy killed"] = { "ManaGainedFromEnemyDeathUniqueDagger1", }, + ["gain (6-10)% of cold damage as extra chaos damage"] = { "ChaosDamageAsPortionOfColdDamageUnique__1", }, + ["gain (6-10)% of fire damage as extra chaos damage"] = { "ChaosDamageAsPortionOfFireDamageUnique__1", }, + ["gain (6-10)% of lightning damage as extra chaos damage"] = { "ChaosDamageAsPortionOfLightningDamageUnique__1", }, + ["gain (6-12)% of physical damage as extra damage of a random element"] = { "TalismanDamageDealtAddedAsRandomElement", }, + ["gain (6-8) life per enemy hit with attacks"] = { "LifeGainPerTargetImplicitQuiver3New", }, + ["gain (66-99)% of sword physical damage as extra fire damage"] = { "SwordPhysicalDamageToAddAsFireUniqueOneHandSword10", }, + ["gain (7-10) rage after spending a total of 200 mana"] = { "GainRageOnManaSpentUnique__1", }, + ["gain (7-10)% of elemental damage as extra chaos damage"] = { "VillageElementalDamagePercentAddedAsChaos", }, + ["gain (8-12)% of physical damage as extra chaos damage while at maximum power charges"] = { "PhysAddedAsChaosWithMaxPowerChargesUnique__1", }, + ["gain +# life when you taunt an enemy"] = { "LifeGainedOnTauntingEnemyUniqueShieldStr4", "LifeGainedOnTauntingEnemyUnique__1", }, + ["gain +#% to critical strike chance for # seconds after spending a total of # mana"] = { "GainCriticalStrikeChanceOnManaSpentUnique__1", }, + ["gain +10 life when you taunt an enemy"] = { "LifeGainedOnTauntingEnemyUniqueShieldStr4", }, + ["gain +2% to critical strike chance for 2 seconds after spending a total of 800 mana"] = { "GainCriticalStrikeChanceOnManaSpentUnique__1", }, + ["gain +50 life when you taunt an enemy"] = { "LifeGainedOnTauntingEnemyUnique__1", }, + ["gain 1 endurance charge every second if you've been hit recently"] = { "ChargeBonusEnduranceChargeIfHitRecently", }, + ["gain 1 endurance charge every second if you've been hit recently and"] = { "EnduranceChargeIfHitRecently4WarlordItemsUnique__1", }, + ["gain 1 endurance charge on use"] = { "FlaskGainEnduranceChargeUnique__1_", }, + ["gain 1 endurance charge per second during effect"] = { "FlaskEnduranceChargePerSecondUnique1", }, + ["gain 1 energy shield on kill per level"] = { "EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8", }, + ["gain 1 life on kill per level"] = { "LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7", }, + ["gain 1 mana on kill per level"] = { "ManaGainedOnEnemyDeathPerLevelUniqueSceptre8", }, + ["gain 1 rage on critical strike with attacks"] = { "RageOnAttackCritUnique__1", }, + ["gain 1 remembrance when you spend a total of 200 energy"] = { "RemembranceGainedPerEnergyShieldUnique_1", }, + ["gain 1% of cold damage as extra chaos damage per frenzy charge"] = { "ChargeBonusColdDamageAddedAsChaos", }, + ["gain 1% of cold damage as extra fire damage per 1% chill effect on enemy"] = { "ColdAddedAsFireChilledEnemyUnique__1", }, + ["gain 1% of fire damage as extra chaos damage per endurance charge"] = { "ChargeBonusFireDamageAddedAsChaos__", }, + ["gain 1% of lightning damage as extra chaos damage per power charge"] = { "ChargeBonusLightningDamageAddedAsChaos", }, + ["gain 1% of lightning damage as extra cold damage per 2% shock effect on enemy"] = { "LightningAddedAsColdShockedEnemyUnique__1", }, + ["gain 10 life per enemy hit if you have used a vaal skill recently"] = { "LifeGainOnHitIfVaalSkillUsedRecentlyUnique__1", }, + ["gain 10 life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueTwoHandAxe2", "LifeGainedFromEnemyDeathUniqueTwoHandMace7", }, + ["gain 10 life per ignited enemy killed"] = { "LifeGainedOnKillingIgnitedEnemiesUniqueWand10_", }, + ["gain 10 mana per enemy killed"] = { "ManaGainedFromEnemyDeathUniqueBow2", "ManaGainedFromEnemyDeathUniqueShieldInt3", "ManaGainedFromEnemyDeathUniqueTwoHandAxe5", "ManaGainedFromEnemyDeathUniqueTwoHandSword3", }, + ["gain 100 life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueBodyStrDexInt1", "LifeGainedFromEnemyDeathUnique__4", }, + ["gain 100 life when you lose an endurance charge"] = { "LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6", }, + ["gain 100 mana per enemy killed"] = { "ManaGainedFromEnemyDeathUniqueBodyStrDexInt1", }, + ["gain 100% of weapon physical damage as extra damage of a random element"] = { "WeaponPhysicalDamageAddedAsRandomElementUniqueBow11", }, + ["gain 100% of weapon physical damage as extra damage of each element"] = { "LocalPhysicalDamageAddedAsEachElementTransformed", "LocalPhysicalDamageAddedAsEachElementTransformed2", "LocalPhysicalDamageAddedAsEachElementUnique__1", }, + ["gain 15% of physical attack damage as extra fire damage"] = { "AttackPhysicalDamageAddedAsFireUnique__1", }, + ["gain 15% of physical attack damage as extra lightning damage"] = { "AttackPhysicalDamageAddedAsLightningUnique__1", }, + ["gain 150 life per enemy killed"] = { "LifeGainedFromEnemyDeathUnique__5", }, + ["gain 2 endurance, frenzy or power charges every 6 seconds"] = { "GainRandomChargeEvery6SecondsImplicitE2", }, + ["gain 2 power charges when you warcry"] = { "GainPowerChargesOnUsingWarcryUnique__1", }, + ["gain 2 vaal souls per second during effect"] = { "FlaskGainVaalSoulPerSecondUnique__1_", }, + ["gain 20 life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueTwoHandAxe1", }, + ["gain 20% of physical damage as extra cold damage"] = { "ConvertPhysicalToColdUniqueQuiver5", }, + ["gain 20% of physical damage as extra fire damage"] = { "PhysicalAddedAsFireUnique__3", }, + ["gain 200 armour per grand spectrum"] = { "ArmourPerStackableJewelUnique__1", }, + ["gain 25% of weapon physical damage as extra damage of a random element"] = { "WeaponPhysicalDamageAddedAsRandomElementDescentUniqueQuiver1", }, + ["gain 3 life per elemental ailment on enemies hit with attacks"] = { "LifeOnHitPerStatusAilmentOnEnemyUniqueJewel33", }, + ["gain 3 life per elemental ailment on enemies hit with spells"] = { "LifeOnSpellHitPerStatusAilmentOnEnemyUniqueJewel33", }, + ["gain 3 life per enemy hit with spells"] = { "LifeGainedOnSpellHitUniqueDescentClaw1", }, + ["gain 3 mana per taunted enemy hit"] = { "ManaGainedOnHitAgainstTauntedEnemyUniqueShieldInt5", }, + ["gain 3 rage on melee hit"] = { "RageOnMeleeHitE1", }, + ["gain 3 rage on melee weapon hit"] = { "TinctureRageOnHitImplicit1", }, + ["gain 30 life per bleeding enemy hit"] = { "LifeGainVsBleedingEnemiesUnique__1", }, + ["gain 30 mana per enemy hit with attacks"] = { "ManaGainPerTargetUniqueRing7", }, + ["gain 30 mana per enemy killed"] = { "ManaGainedFromEnemyDeathUnique__1", }, + ["gain 30 mana per grand spectrum"] = { "ManaPerStackableJewelUnique__1", }, + ["gain 30% of cold damage as extra fire damage against frozen enemies"] = { "ColdAddedAsFireFrozenEnemyUnique__1", }, + ["gain 4 rage on melee hit"] = { "RageOnMeleeHitE2", }, + ["gain 4% of non-chaos damage as extra chaos damage per siphoning charge"] = { "NonChaosDamageAddedAsChaosPerSiphoningChargeUnique__1", }, + ["gain 40% increased area of effect for 2 seconds after spending a total of 800 mana"] = { "GainAreaOfEffectPluspercentOnManaSpentUnique__1", }, + ["gain 5 life per enemy killed"] = { "LifeGainedFromEnemyDeathUniqueDagger11", }, + ["gain 5 rage on melee hit"] = { "RageOnMeleeHitE3", "RageOnMeleeHitUnique__1", }, + ["gain 5% of physical damage as extra damage of each element per spirit charge"] = { "PhysAddedAsEachElementPerSpiritChargeUnique__1", }, + ["gain 50 life when you stun an enemy"] = { "LifeGainedOnStunUnique__1_", }, + ["gain 50% of physical damage as extra cold damage"] = { "PhysicalAddedAsColdUnique__1", }, + ["gain 7 life per enemy hit with attacks"] = { "LifeGainPerTargetUnique__1", }, + ["gain 70% of physical damage as extra fire damage"] = { "PhysicalAddedAsFireUnique__2", }, + ["gain 700% of weapon physical damage as extra damage of a random element"] = { "WeaponPhysicalDamageAddedAsRandomElementUnique__1__", }, + ["gain a flask charge when you deal a critical strike"] = { "FlaskChargesOnCritUniqueTwoHandAxe8", "FlaskChargesOnCritUniqueTwoHandMace__1", "FlaskChargesOnCritUniqueTwoHandMace__2", }, + ["gain a flask charge when you deal a critical strike while at maximum frenzy charges"] = { "ChargeBonusFlaskChargeOnCritFrenzyCharges", }, + ["gain a frenzy charge if an attack ignites an enemy"] = { "FrenzyChargeOnIgniteUniqueTwoHandSword6", }, + ["gain a frenzy charge on critical strike"] = { "GainFrenzyChargeOnCriticalHit", }, + ["gain a frenzy charge on every #th rampage kill"] = { "FrenzyChargePer50RampageStacksUnique__1", }, + ["gain a frenzy charge on every 50th rampage kill"] = { "FrenzyChargePer50RampageStacksUnique__1", }, + ["gain a frenzy charge on hit while bleeding"] = { "FrenzyChargeOnHitWhileBleedingUnique__1", }, + ["gain a frenzy charge on reaching maximum power charges"] = { "WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1", }, + ["gain a frenzy, endurance, or power charge once per second while you are stationary"] = { "GainARandomChargePerSecondWhileStationaryUnique__1", }, + ["gain a power charge after spending a total of # mana"] = { "PowerChargeOnManaSpentUnique__1", }, + ["gain a power charge after spending a total of 200 mana"] = { "PowerChargeOnManaSpentUnique__1", }, + ["gain a power charge every second if you haven't lost power charges recently"] = { "GainPowerChargesNotLostRecentlyUnique__1_", }, + ["gain a power charge for each enemy you hit with a critical strike"] = { "AddPowerChargeOnCrit1__", }, + ["gain a power charge on hit while poisoned"] = { "PowerChargeOnHitWhilePoisonedUnique__1", }, + ["gain a power charge on killing a frozen enemy"] = { "GainPowerChargeOnKillingFrozenEnemyUnique__1", }, + ["gain a power charge on non-critical strike"] = { "PowerChargeOnNonCritUniqueRing17", }, + ["gain a power charge when you use a vaal skill"] = { "GainPowerChargeOnUsingVaalSkillUnique__1", }, + ["gain a random shrine buff every # seconds"] = { "VillageAlternatingShrineBuff", }, + ["gain a random shrine buff every 10 seconds"] = { "VillageAlternatingShrineBuff", }, + ["gain a random shrine buff for # seconds when you kill a rare or unique enemy"] = { "GainShrineOnRareOrUniqueKillUnique_1", }, + ["gain a random shrine buff for 30 seconds when you kill a rare or unique enemy"] = { "GainShrineOnRareOrUniqueKillUnique_1", }, + ["gain a spirit charge every second"] = { "GainSpiritChargeEverySecondUnique__1", }, + ["gain a spirit charge on kill"] = { "GainSpiritChargeOnKillChanceUnique__1", }, + ["gain absorption charges instead of power charges"] = { "GainAbsorptionChargesInsteadOfPowerUnique__1", }, + ["gain added chaos damage equal to #% of ward"] = { "GlobalAddedChaosDamageWardUnique__", }, + ["gain added chaos damage equal to 10% of ward"] = { "GlobalAddedChaosDamageWardUnique__", }, + ["gain additional elemental damage reduction equal to half your chaos resistance"] = { "ElementalDamageReductionChaosResistUnique__1", }, + ["gain adrenaline for # seconds when ward breaks"] = { "AdrenalineOnWardBreakUnique__1", }, + ["gain adrenaline for (#) second on kill"] = { "AdrenalineOnKillUnique__1", }, + ["gain adrenaline for (1-3) second on kill"] = { "AdrenalineOnKillUnique__1", }, + ["gain adrenaline for 3 seconds when ward breaks"] = { "AdrenalineOnWardBreakUnique__1", }, + ["gain adrenaline when you become flame-touched"] = { "GainAdrenalineFireTouchedGainUnique__1", }, + ["gain affliction charges instead of frenzy charges"] = { "GainAfflictionChargesInsteadOfFrenzyUnique__1", }, + ["gain an endurance charge if an attack freezes an enemy"] = { "EnduranceChargeIfAttackFreezesUnique__1", }, + ["gain an endurance charge when you are hit"] = { "GainEnduranceChargesWhenHitUnique__1_", }, + ["gain an endurance charge when you lose a power charge"] = { "EnduranceChargeOnPowerChargeExpiryUniqueAmulet14", }, + ["gain an endurance charge when you stop being fortified"] = { "GainEnduranceChargeOnLosingFortifyUber1", }, + ["gain an endurance charge when you take a critical strike"] = { "GainEnduranceChargeWhenCriticallyHit", }, + ["gain an endurance charge, frenzy charge, and power charge when you use a vaal skill"] = { "GainRandomChargeOnVaalSkillUseUnique__1_", }, + ["gain an endurance, frenzy or power charge every # seconds"] = { "GainRandomChargeEvery6SecondsImplicitE1", }, + ["gain an endurance, frenzy or power charge every 6 seconds"] = { "GainRandomChargeEvery6SecondsImplicitE1", }, + ["gain arcane surge after spending a total of # life"] = { "VillageArcaneSurgeOnLifeSpent", }, + ["gain arcane surge after spending a total of 200 life"] = { "VillageArcaneSurgeOnLifeSpent", }, + ["gain arcane surge on hit with spells while at maximum power charges"] = { "ChargeBonusArcaneSurgeOnHitPowerCharges", }, + ["gain arcane surge when you deal a critical strike"] = { "GainArcaneSurgeOnCritUnique__1", }, + ["gain arcane surge when you use a movement skill"] = { "ArcaneSurgeOnMovementSkillUnique", }, + ["gain brutal charges instead of endurance charges"] = { "GainBrutalChargesInsteadOfEnduranceUnique__1", }, + ["gain elusive on critical strike"] = { "ElusiveOnCriticalStrikeUnique__1", "VillageElusiveOnCriticalStrike", }, + ["gain elusive on reaching low life"] = { "ElusiveOnLowLifeUnique__1", }, + ["gain flaming, icy or crackling runesurge at random for # seconds every # seconds"] = { "VillageExplosionConflux", }, + ["gain flaming, icy or crackling runesurge at random for 4 seconds every 10 seconds"] = { "VillageExplosionConflux", }, + ["gain her blessing for # seconds when you ignite an enemy"] = { "GrantUniqueBuff__1", }, + ["gain her blessing for 3 seconds when you ignite an enemy"] = { "GrantUniqueBuff__1", }, + ["gain her embrace for # seconds when you ignite an enemy"] = { "GainHerEmbraceOnIgniteUnique__1", }, + ["gain her embrace for 3 seconds when you ignite an enemy"] = { "GainHerEmbraceOnIgniteUnique__1", }, + ["gain immunity to physical damage for # seconds on rampage"] = { "PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2", }, + ["gain immunity to physical damage for 1.5 seconds on rampage"] = { "PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2", }, + ["gain maddening presence for # seconds when you kill a rare or unique enemy"] = { "GainDebilitatingPresenceUnique__1", }, + ["gain maddening presence for 10 seconds when you kill a rare or unique enemy"] = { "GainDebilitatingPresenceUnique__1", }, + ["gain maximum life instead of maximum energy shield from equipped armour items"] = { "LifeFromEnergyShieldArmourUnique__1", }, + ["gain no armour from equipped body armour"] = { "GainNoArmourFromBodyArmourUnique__1", }, + ["gain onslaught after spending a total of # mana"] = { "VillageOnslaughtOnManaSpent", }, + ["gain onslaught after spending a total of 200 mana"] = { "VillageOnslaughtOnManaSpent", }, + ["gain onslaught for # seconds on hit while at maximum frenzy charges"] = { "ChargeBonusOnslaughtOnHitFrenzyCharges_", }, + ["gain onslaught for # seconds per frenzy charge consumed on use"] = { "LocalFlaskOnslaughtPerFrenzyChargeUnique__1", }, + ["gain onslaught for # seconds when you cast socketed golem skill"] = { "LocalGolemGrantOnslaughtOnSummonUnique__1", }, + ["gain onslaught for # seconds when you warcry"] = { "OnslaughtOnUsingWarcryUnique__1", }, + ["gain onslaught for 10 seconds when you cast socketed golem skill"] = { "LocalGolemGrantOnslaughtOnSummonUnique__1", }, + ["gain onslaught for 3 seconds per frenzy charge consumed on use"] = { "LocalFlaskOnslaughtPerFrenzyChargeUnique__1", }, + ["gain onslaught for 4 seconds on hit while at maximum frenzy charges"] = { "ChargeBonusOnslaughtOnHitFrenzyCharges_", }, + ["gain onslaught for 4 seconds when you warcry"] = { "OnslaughtOnUsingWarcryUnique__1", }, + ["gain rampage while at maximum endurance charges"] = { "RampageWhileAtMaxEnduranceChargesUnique__1", }, + ["gain sacrificial zeal when you use a skill, dealing you #% of the skill's mana cost as physical damage per second"] = { "SacrificialZealOnSkillUseUnique__1_", }, + ["gain sacrificial zeal when you use a skill, dealing you 150% of the skill's mana cost as physical damage per second"] = { "SacrificialZealOnSkillUseUnique__1_", }, + ["gain shaper's presence for # seconds when you kill a rare or unique enemy"] = { "GainShapersPresenceUnique__1", }, + ["gain shaper's presence for 10 seconds when you kill a rare or unique enemy"] = { "GainShapersPresenceUnique__1", }, + ["gain soul eater during any flask effect"] = { "BeltSoulEaterDuringFlaskEffect__1", }, + ["gain soul eater for # seconds when you use a vaal skill"] = { "GainSoulEaterOnVaalSkillUseUnique__1", }, + ["gain soul eater for 20 seconds when you use a vaal skill"] = { "GainSoulEaterOnVaalSkillUseUnique__1", }, + ["gain unholy might for # seconds on critical strike"] = { "UnholyMightOnCritUniqueSceptre10", "VillageUnholyMightOnCrit", }, + ["gain unholy might for # seconds on melee critical strike"] = { "UnholyMightOnMeleeCritUniqueSceptre10", }, + ["gain unholy might for # seconds on rampage"] = { "UnholyMightOnRampageUniqueGlovesDexInt6", }, + ["gain unholy might for 2 seconds on melee critical strike"] = { "UnholyMightOnMeleeCritUniqueSceptre10", }, + ["gain unholy might for 3 seconds on rampage"] = { "UnholyMightOnRampageUniqueGlovesDexInt6", }, + ["gain unholy might for 4 seconds on critical strike"] = { "UnholyMightOnCritUniqueSceptre10", "VillageUnholyMightOnCrit", }, + ["gain unholy might on block for # seconds"] = { "UnholyMightOnBlockChanceUnique__1", }, + ["gain unholy might on block for 10 seconds"] = { "UnholyMightOnBlockChanceUnique__1", }, + ["gain up to maximum endurance charges when you take a critical strike"] = { "GainMaximumEnduranceChargesWhenCritUnique__1", }, + ["gain up to maximum power charges when you use a vaal skill"] = { "GainMaximumPowerChargesOnVaalSkillUseUnique__1", }, + ["gain up to your maximum number of frenzy and endurance charges when you gain cat's agility"] = { "GainMaxFrenzyAndEnduranceOnCatsAgilityUnique__1", }, + ["gain up to your maximum number of frenzy and power charges when you gain cat's stealth"] = { "GainMaxFrenzyAndPowerOnCatsStealthUnique__1", }, + ["gain vaal souls equal to charges consumed when used"] = { "FlaskVaalGainSoulsAsChargesUnique__1_", }, + ["gain ward instead of #% of armour and evasion rating from equipped body armour"] = { "ConvertBodyArmourEvasionToWardUnique__1", }, + ["gain ward instead of 50% of armour and evasion rating from equipped body armour"] = { "ConvertBodyArmourEvasionToWardUnique__1", }, + ["gains no charges during effect of any overflowing chalice flask"] = { "CannotGainFlaskChargesDuringFlaskEffectUnique_1", }, + ["gains no charges during effect of any soul ripper flask"] = { "CannotGainFlaskChargesDuringEffectUnique__1", }, + ["gems can be socketed in this item ignoring socket colour"] = { "LocalCanSocketIgnoringColourUnique__1", }, + ["gems socketed in blue sockets gain #% increased experience"] = { "SocketedGemsInBlueSocketEffectUnique__1", }, + ["gems socketed in blue sockets gain 100% increased experience"] = { "SocketedGemsInBlueSocketEffectUnique__1", }, + ["gems socketed in green sockets have +#% to quality"] = { "SocketedGemsInGreenSocketEffectUnique__1", }, + ["gems socketed in green sockets have +30% to quality"] = { "SocketedGemsInGreenSocketEffectUnique__1", }, + ["gems socketed in red sockets have +# to level"] = { "SocketedGemsInRedSocketEffectUnique__1", }, + ["gems socketed in red sockets have +2 to level"] = { "SocketedGemsInRedSocketEffectUnique__1", }, + ["ghost dance"] = { "KeystoneGhostDanceUnique__1", }, + ["ghost reaver"] = { "KeystoneGhostReaverUnique__1", }, + ["glancing blows"] = { "KeystoneGlancingBlowsUnique__1___", }, + ["glows while in an area containing a unique fish"] = { "FishDetectionUnique__1_", }, + ["golden radiance"] = { "GoldenLightBeam", }, + ["golem skills have (#)% increased cooldown recovery rate"] = { "GolemSkillsCooldownRecoveryUnique__1", }, + ["golem skills have (20-30)% increased cooldown recovery rate"] = { "GolemSkillsCooldownRecoveryUnique__1", }, + ["golems deal (#)% less damage"] = { "LessGolemDamageUnique__1", }, + ["golems deal (25-35)% less damage"] = { "LessGolemDamageUnique__1", }, + ["golems have (#) to (#) added attack physical damage"] = { "GolemsAddedPhysicalDamageUnique__1", }, + ["golems have (#)% increased attack and cast speed"] = { "GolemAttackAndCastSpeedUnique__1", }, + ["golems have (#)% increased maximum life"] = { "GolemLifeUnique__1", }, + ["golems have (#)% increased movement speed"] = { "GolemMovementSpeedUnique__1", }, + ["golems have (#)% less life"] = { "LessGolemLifeUnique__1", }, + ["golems have (16-20)% increased attack and cast speed"] = { "GolemAttackAndCastSpeedUnique__1", }, + ["golems have (18-22)% increased maximum life"] = { "GolemLifeUnique__1", }, + ["golems have (25-35)% less life"] = { "LessGolemLifeUnique__1", }, + ["golems have (80-100)% increased movement speed"] = { "GolemMovementSpeedUnique__1", }, + ["golems have (96-120) to (132-160) added attack physical damage"] = { "GolemsAddedPhysicalDamageUnique__1", }, + ["golems have +(#) to armour"] = { "GolemArmourRatingUnique__1", }, + ["golems have +(800-1000) to armour"] = { "GolemArmourRatingUnique__1", }, + ["golems summoned in the past # seconds deal (#)% increased damage"] = { "IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1", "IncreasedGolemDamageIfGolemSummonedRecently__1_", }, + ["golems summoned in the past 8 seconds deal (100-125)% increased damage"] = { "IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1", }, + ["golems summoned in the past 8 seconds deal (35-45)% increased damage"] = { "IncreasedGolemDamageIfGolemSummonedRecently__1_", }, + ["gore footprints"] = { "ItemBloodFootstepsUniqueBodyStr3", "ItemBloodFootstepsUniqueBootsDex4", "ItemBloodFootstepsUnique__1", }, + ["grace has no reservation"] = { "GraceNoReservationUnique__1", }, + ["grants # life and mana per enemy hit"] = { "LifeAndManaOnHitImplicitMarakethClaw1", "LifeAndManaOnHitImplicitMarakethClaw2", "LifeAndManaOnHitImplicitMarakethClaw3", }, + ["grants # life per enemy hit"] = { "LifeAndManaOnHitSeparatedImplicitMarakethClaw1", "LifeAndManaOnHitSeparatedImplicitMarakethClaw2", "LifeAndManaOnHitSeparatedImplicitMarakethClaw3", "LifeGainPerTargetImplicit2Claw1", "LifeGainPerTargetImplicit2Claw10", "LifeGainPerTargetImplicit2Claw11_", "LifeGainPerTargetImplicit2Claw12", "LifeGainPerTargetImplicit2Claw13", "LifeGainPerTargetImplicit2Claw2", "LifeGainPerTargetImplicit2Claw3", "LifeGainPerTargetImplicit2Claw3_1", "LifeGainPerTargetImplicit2Claw4", "LifeGainPerTargetImplicit2Claw4_1", "LifeGainPerTargetImplicit2Claw5", "LifeGainPerTargetImplicit2Claw5_1", "LifeGainPerTargetImplicit2Claw6", "LifeGainPerTargetImplicit2Claw7", "LifeGainPerTargetImplicit2Claw8", "LifeGainPerTargetImplicit2Claw9_", "LifeGainPerTargetImplicitClaw1", "LifeGainPerTargetImplicitClaw2", "LifeGainPerTargetImplicitClaw3", "LifeGainPerTargetImplicitClaw4", "LifeGainPerTargetUniqueDagger2", "LifeGainPerTargetUniqueDescentClaw1", "LifeGainPerTargetUniqueOneHandSword1", "LifeGainPerTargetUniqueOneHandSword7", "LifeGainPerTargetUniqueRapier2", }, + ["grants # mana per enemy hit"] = { "ManaGainPerTargetUniqueTwoHandAxe9", "ManaGainPerTargetUnique__2", }, + ["grants (#) life per enemy hit"] = { "LifeGainPerTargetUniqueSceptre2", }, + ["grants (#) mana per enemy hit"] = { "ManaGainPerTargetUnique__1", }, + ["grants (2-3) mana per enemy hit"] = { "ManaGainPerTargetUnique__1", }, + ["grants (6-10) life per enemy hit"] = { "LifeGainPerTargetUniqueSceptre2", }, + ["grants 10 life and mana per enemy hit"] = { "LifeAndManaOnHitImplicitMarakethClaw2", }, + ["grants 10 life per enemy hit"] = { "LifeGainPerTargetUniqueDagger2", }, + ["grants 12 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw4", }, + ["grants 14 life and mana per enemy hit"] = { "LifeAndManaOnHitImplicitMarakethClaw3", }, + ["grants 15 life per enemy hit"] = { "LifeAndManaOnHitSeparatedImplicitMarakethClaw1", "LifeGainPerTargetImplicit2Claw5", "LifeGainPerTargetImplicitClaw3", }, + ["grants 19 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw4_1", }, + ["grants 2 life per enemy hit"] = { "LifeGainPerTargetUniqueOneHandSword1", "LifeGainPerTargetUniqueOneHandSword7", }, + ["grants 2 mana per enemy hit"] = { "ManaGainPerTargetUnique__2", }, + ["grants 20 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw5_1", }, + ["grants 22 life per enemy hit"] = { "LifeGainPerTargetImplicitClaw4", }, + ["grants 24 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw7", }, + ["grants 25 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw6", }, + ["grants 28 life per enemy hit"] = { "LifeAndManaOnHitSeparatedImplicitMarakethClaw2", }, + ["grants 3 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw1", "LifeGainPerTargetImplicitClaw1", "LifeGainPerTargetUniqueDescentClaw1", "LifeGainPerTargetUniqueRapier2", }, + ["grants 30 mana per enemy hit"] = { "ManaGainPerTargetUniqueTwoHandAxe9", }, + ["grants 38 life per enemy hit"] = { "LifeAndManaOnHitSeparatedImplicitMarakethClaw3", }, + ["grants 40 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw11_", "LifeGainPerTargetImplicit2Claw9_", }, + ["grants 44 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw8", }, + ["grants 46 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw10", "LifeGainPerTargetImplicit2Claw13", }, + ["grants 50 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw12", }, + ["grants 6 life and mana per enemy hit"] = { "LifeAndManaOnHitImplicitMarakethClaw1", }, + ["grants 6 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw2", }, + ["grants 7 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw3", }, + ["grants 8 life per enemy hit"] = { "LifeGainPerTargetImplicit2Claw3_1", "LifeGainPerTargetImplicitClaw2", }, + ["grants a random divination buff for # seconds when used"] = { "GainDivinationBuffOnFlaskUsedUniqueFlask__1", }, + ["grants a random divination buff for 20 seconds when used"] = { "GainDivinationBuffOnFlaskUsedUniqueFlask__1", }, + ["grants all bonuses of unallocated small passive skills in radius"] = { "GrantsStatsFromNonNotablesInRadiusUnique__1", }, + ["grants call of steel"] = { "GrantsCallOfSteelSkillUnique__1_", "GrantsCallOfSteelSkillUnique__2", }, + ["grants immunity to chill for # seconds if used while chilled"] = { "FlaskFreezeImmunityUnique__1", }, + ["grants immunity to chill for 4 seconds if used while chilled"] = { "FlaskFreezeImmunityUnique__1", }, + ["grants immunity to ignite for # seconds if used while ignited"] = { "FlaskDispellsBurningUnique__1", }, + ["grants immunity to ignite for 4 seconds if used while ignited"] = { "FlaskDispellsBurningUnique__1", }, + ["grants last breath when you use a skill during effect, for (#)% of mana cost"] = { "FlaskLifeGainOnSkillUseUnique__1", }, + ["grants last breath when you use a skill during effect, for (450-600)% of mana cost"] = { "FlaskLifeGainOnSkillUseUnique__1", }, + ["grants level # affliction"] = { "RitualRingAffliction", }, + ["grants level # approaching flames skill"] = { "GrantsTouchOfFireUnique__1", }, + ["grants level # aspect of the avian skill"] = { "GrantsBirdAspect1_", }, + ["grants level # aspect of the cat skill"] = { "GrantsCatAspect1", }, + ["grants level # aspect of the crab skill"] = { "GrantsCrabAspect1_", }, + ["grants level # aspect of the spider skill"] = { "GrantsSpiderAspect1", }, + ["grants level # battlemage's cry skill"] = { "DisplayGrantsVengeanceUnique__1", }, + ["grants level # bear trap skill"] = { "GrantsBearTrapUniqueShieldDexInt1", }, + ["grants level # blazing glare"] = { "SolartwineUniqueBelt55", }, + ["grants level # blight skill"] = { "BlightSkillUnique__1", }, + ["grants level # blood offering skill"] = { "DisplayGrantsBloodOfferingUnique__1_", }, + ["grants level # blood sacrament skill"] = { "UniqueWandGrantsBloodSacrament__1", }, + ["grants level # brandsurge skill"] = { "GrantsBrandDetonateUnique__1", }, + ["grants level # caustic retribution"] = { "BitingBraidUniqueBelt52", }, + ["grants level # crushing fist skill"] = { "GrantsLevel30ReckoningUnique__1", }, + ["grants level # dash skill"] = { "GrantsDashUnique__1_", }, + ["grants level # death wish skill"] = { "GrantsDeathWishUnique__1__", }, + ["grants level # despair curse aura during effect"] = { "VulnerabilityAuraDuringFlaskEffectUnique__1", }, + ["grants level # doryani's touch skill"] = { "GrantsTouchOfGodUnique__1", }, + ["grants level # embrace madness skill"] = { "GrantEmbraceMadnessSkillUnique1", }, + ["grants level # enduring cry skill"] = { "EnduringCrySkillUnique__1", }, + ["grants level # envy skill"] = { "GrantsEnvyUnique__1", "GrantsEnvyUnique__2", "VillageGrantsEnvy", }, + ["grants level # frostbite skill"] = { "GrantsFrostbiteUnique__1", }, + ["grants level # frostblink skill"] = { "GrantsFrostblinkSkillUnique__1", }, + ["grants level # gluttony of elements skill"] = { "GluttonyOfElementsUniqueAmulet23", }, + ["grants level # hatred skill"] = { "GrantsHatredUnique__1__", "HatredSkillUniqueDescentClaw1", }, + ["grants level # herald of the hive skill"] = { "HeraldOfTheBreachUnique_1", }, + ["grants level # icestorm skill"] = { "IcestormUniqueStaff12", }, + ["grants level # illusory warp skill"] = { "ItemGrantsIllusoryWarpUnique__1", }, + ["grants level # intimidating cry skill"] = { "GrantsIntimidatingCry1", }, + ["grants level # lightning warp skill"] = { "LightningWarpSkillUniqueOneHandAxe8", }, + ["grants level # pacify"] = { "RitualRingPacify", }, + ["grants level # penance mark"] = { "RitualRingPenanceMark", }, + ["grants level # petrification statue skill"] = { "PetrificationStatueUnique__1", }, + ["grants level # precision skill"] = { "GrantsAccuracyAuraSkillUnique__1", }, + ["grants level # purity of elements skill"] = { "PuritySkillUniqueAmulet22", }, + ["grants level # purity of fire skill"] = { "GrantsPurityOfFireUnique__1", }, + ["grants level # purity of ice skill"] = { "GrantsPurityOfIceUnique__1", }, + ["grants level # purity of lightning skill"] = { "GrantsPurityOfLightningUnique__1", }, + ["grants level # queen's demand skill"] = { "UniqueStaffGrantQueensDemand___", }, + ["grants level # ravenous skill"] = { "GrantsRavenousSkillUnique__1", }, + ["grants level # scorching ray skill"] = { "ScorchingRaySkillUnique__1", }, + ["grants level # smite skill"] = { "GrantsLevel30SmiteUnique__1", }, + ["grants level # snipe skill"] = { "GrantsHighLevelSnipeUnique__1", }, + ["grants level # summon bestial rhoa skill"] = { "GrantsSummonBeastRhoaUnique__1", }, + ["grants level # summon bestial snake skill"] = { "GrantsSummonBeastSnakeUnique__1", }, + ["grants level # summon bestial ursa skill"] = { "GrantsSummonBeastUrsaUnique__1", }, + ["grants level # summon doedre's effigy skill"] = { "GrantCursePillarSkillUnique", "GrantCursePillarSkillUnique__", }, + ["grants level # summon shaper memory"] = { "GrantShaperSkill_1", }, + ["grants level # summon stone golem skill"] = { "GrantsLevel12StoneGolem", }, + ["grants level # suspend in time"] = { "SandMirageSkillUnique__1", }, + ["grants level # thirst for blood skill"] = { "GrantsVampiricIconSkillUnique__1", }, + ["grants level # unhinge skill"] = { "GrantsUnhingeUnique__1", }, + ["grants level # vaal impurity of fire skill"] = { "GrantsVaalPurityOfFireUnique__1", }, + ["grants level # vaal impurity of ice skill"] = { "GrantsVaalPurityOfIceUnique__1", }, + ["grants level # vaal impurity of lightning skill"] = { "GrantsVaalPurityOfLightningUnique__1", }, + ["grants level # vulnerability curse aura during effect"] = { "VulnerabilityAuraDuringFlaskEffectUnique__1Alt", }, + ["grants level # will of the lords skill"] = { "GraspFromBeyondTrapUnique_1", }, + ["grants level # wintertide brand skill"] = { "GrantsWintertideBrandUnique__1", }, + ["grants level 1 blood sacrament skill"] = { "UniqueWandGrantsBloodSacrament__1", }, + ["grants level 1 embrace madness skill"] = { "GrantEmbraceMadnessSkillUnique1", }, + ["grants level 1 envy skill"] = { "VillageGrantsEnvy", }, + ["grants level 1 icestorm skill"] = { "IcestormUniqueStaff12", }, + ["grants level 1 lightning warp skill"] = { "LightningWarpSkillUniqueOneHandAxe8", }, + ["grants level 10 enduring cry skill"] = { "EnduringCrySkillUnique__1", }, + ["grants level 10 frostblink skill"] = { "GrantsFrostblinkSkillUnique__1", }, + ["grants level 10 gluttony of elements skill"] = { "GluttonyOfElementsUniqueAmulet23", }, + ["grants level 10 purity of elements skill"] = { "PuritySkillUniqueAmulet22", }, + ["grants level 12 summon stone golem skill"] = { "GrantsLevel12StoneGolem", }, + ["grants level 15 battlemage's cry skill"] = { "DisplayGrantsVengeanceUnique__1", }, + ["grants level 15 blood offering skill"] = { "DisplayGrantsBloodOfferingUnique__1_", }, + ["grants level 15 envy skill"] = { "GrantsEnvyUnique__2", }, + ["grants level 20 affliction"] = { "RitualRingAffliction", }, + ["grants level 20 approaching flames skill"] = { "GrantsTouchOfFireUnique__1", }, + ["grants level 20 aspect of the avian skill"] = { "GrantsBirdAspect1_", }, + ["grants level 20 aspect of the cat skill"] = { "GrantsCatAspect1", }, + ["grants level 20 aspect of the crab skill"] = { "GrantsCrabAspect1_", }, + ["grants level 20 aspect of the spider skill"] = { "GrantsSpiderAspect1", }, + ["grants level 20 blazing glare"] = { "SolartwineUniqueBelt55", }, + ["grants level 20 brandsurge skill"] = { "GrantsBrandDetonateUnique__1", }, + ["grants level 20 caustic retribution"] = { "BitingBraidUniqueBelt52", }, + ["grants level 20 death wish skill"] = { "GrantsDeathWishUnique__1__", }, + ["grants level 20 doryani's touch skill"] = { "GrantsTouchOfGodUnique__1", }, + ["grants level 20 hatred skill"] = { "HatredSkillUniqueDescentClaw1", }, + ["grants level 20 illusory warp skill"] = { "ItemGrantsIllusoryWarpUnique__1", }, + ["grants level 20 intimidating cry skill"] = { "GrantsIntimidatingCry1", }, + ["grants level 20 pacify"] = { "RitualRingPacify", }, + ["grants level 20 penance mark"] = { "RitualRingPenanceMark", }, + ["grants level 20 petrification statue skill"] = { "PetrificationStatueUnique__1", }, + ["grants level 20 queen's demand skill"] = { "UniqueStaffGrantQueensDemand___", }, + ["grants level 20 ravenous skill"] = { "GrantsRavenousSkillUnique__1", }, + ["grants level 20 summon bestial rhoa skill"] = { "GrantsSummonBeastRhoaUnique__1", }, + ["grants level 20 summon bestial snake skill"] = { "GrantsSummonBeastSnakeUnique__1", }, + ["grants level 20 summon bestial ursa skill"] = { "GrantsSummonBeastUrsaUnique__1", }, + ["grants level 20 summon doedre's effigy skill"] = { "GrantCursePillarSkillUnique", "GrantCursePillarSkillUnique__", }, + ["grants level 20 summon shaper memory"] = { "GrantShaperSkill_1", }, + ["grants level 20 suspend in time"] = { "SandMirageSkillUnique__1", }, + ["grants level 20 thirst for blood skill"] = { "GrantsVampiricIconSkillUnique__1", }, + ["grants level 20 unhinge skill"] = { "GrantsUnhingeUnique__1", }, + ["grants level 21 despair curse aura during effect"] = { "VulnerabilityAuraDuringFlaskEffectUnique__1", }, + ["grants level 21 vulnerability curse aura during effect"] = { "VulnerabilityAuraDuringFlaskEffectUnique__1Alt", }, + ["grants level 22 hatred skill"] = { "GrantsHatredUnique__1__", }, + ["grants level 25 bear trap skill"] = { "GrantsBearTrapUniqueShieldDexInt1", }, + ["grants level 25 blight skill"] = { "BlightSkillUnique__1", }, + ["grants level 25 envy skill"] = { "GrantsEnvyUnique__1", }, + ["grants level 25 purity of fire skill"] = { "GrantsPurityOfFireUnique__1", }, + ["grants level 25 purity of ice skill"] = { "GrantsPurityOfIceUnique__1", }, + ["grants level 25 purity of lightning skill"] = { "GrantsPurityOfLightningUnique__1", }, + ["grants level 25 scorching ray skill"] = { "ScorchingRaySkillUnique__1", }, + ["grants level 25 vaal impurity of fire skill"] = { "GrantsVaalPurityOfFireUnique__1", }, + ["grants level 25 vaal impurity of ice skill"] = { "GrantsVaalPurityOfIceUnique__1", }, + ["grants level 25 vaal impurity of lightning skill"] = { "GrantsVaalPurityOfLightningUnique__1", }, + ["grants level 25 wintertide brand skill"] = { "GrantsWintertideBrandUnique__1", }, + ["grants level 30 crushing fist skill"] = { "GrantsLevel30ReckoningUnique__1", }, + ["grants level 30 dash skill"] = { "GrantsDashUnique__1_", }, + ["grants level 30 herald of the hive skill"] = { "HeraldOfTheBreachUnique_1", }, + ["grants level 30 precision skill"] = { "GrantsAccuracyAuraSkillUnique__1", }, + ["grants level 30 smite skill"] = { "GrantsLevel30SmiteUnique__1", }, + ["grants level 30 snipe skill"] = { "GrantsHighLevelSnipeUnique__1", }, + ["grants level 30 will of the lords skill"] = { "GraspFromBeyondTrapUnique_1", }, + ["grants level 5 frostbite skill"] = { "GrantsFrostbiteUnique__1", }, + ["grants malachai's endurance, frenzy and power for # seconds each, in sequence"] = { "GainThaumaturgyBuffRotationUnique__1_", }, + ["grants malachai's endurance, frenzy and power for 6 seconds each, in sequence"] = { "GainThaumaturgyBuffRotationUnique__1_", }, + ["grants perfect agony during effect"] = { "FlaskGrantsPerfectAgonyUnique__1_", }, + ["grants summon greater harbinger of brutality skill"] = { "HarbingerSkillOnEquipUnique2_6", }, + ["grants summon greater harbinger of directions skill"] = { "HarbingerSkillOnEquipUnique2_4", }, + ["grants summon greater harbinger of focus skill"] = { "HarbingerSkillOnEquipUnique2__3", }, + ["grants summon greater harbinger of storms skill"] = { "HarbingerSkillOnEquipUnique2_5", }, + ["grants summon greater harbinger of the arcane skill"] = { "HarbingerSkillOnEquipUnique2_1", }, + ["grants summon greater harbinger of time skill"] = { "HarbingerSkillOnEquipUnique2_2", }, + ["grants summon harbinger of brutality skill"] = { "HarbingerSkillOnEquipUnique__6", }, + ["grants summon harbinger of directions skill"] = { "HarbingerSkillOnEquipUnique__4_", }, + ["grants summon harbinger of focus skill"] = { "HarbingerSkillOnEquipUnique__3", }, + ["grants summon harbinger of storms skill"] = { "HarbingerSkillOnEquipUnique__5", }, + ["grants summon harbinger of the arcane skill"] = { "HarbingerSkillOnEquipUnique__1", }, + ["grants summon harbinger of time skill"] = { "HarbingerSkillOnEquipUnique__2", }, + ["half of your strength is added to your minions"] = { "MinionsGainYourStrengthUnique__1", }, + ["has # abyssal socket"] = { "AbyssJewelSocketImplicit", "AbyssJewelSocketUnique__10", "AbyssJewelSocketUnique__12", "AbyssJewelSocketUnique__3", "AbyssJewelSocketUnique__5", "AbyssJewelSocketUnique__6_", "AbyssJewelSocketUnique__7", "AbyssJewelSocketUnique__8", }, + ["has # abyssal sockets"] = { "AbyssJewelSocketUnique__1", "AbyssJewelSocketUnique__11_", "AbyssJewelSocketUnique__13", "AbyssJewelSocketUnique__14", "AbyssJewelSocketUnique__15", "AbyssJewelSocketUnique__16", "AbyssJewelSocketUnique__17", "AbyssJewelSocketUnique__2", "AbyssJewelSocketUnique__4", "AbyssJewelSocketUnique__9", }, + ["has # socket"] = { "AmuletHasOneSocket", "BeltHasOneSocket", "HasOneSocketUnique__1", "HasOneSocketUnique__2", "HasOneSocketUnique__3", "QuiverHasOneSocket", "RingHasOneSocket", "TalismanHasOneSocket_", }, + ["has # sockets"] = { "HasSixSocketsUnique__1", "HasThreeSocketsUnique__1_", "HasTwoSocketsUnique__1", }, + ["has # white sockets"] = { "ArmourEnchantmentHeistWhiteSockets1__", "WeaponEnchantmentHeistWhiteSockets1_", }, + ["has 1 abyssal socket"] = { "AbyssJewelSocketImplicit", "AbyssJewelSocketUnique__10", "AbyssJewelSocketUnique__12", "AbyssJewelSocketUnique__3", "AbyssJewelSocketUnique__5", "AbyssJewelSocketUnique__6_", "AbyssJewelSocketUnique__7", "AbyssJewelSocketUnique__8", }, + ["has 1 socket"] = { "AmuletHasOneSocket", "BeltHasOneSocket", "HasOneSocketUnique__1", "HasOneSocketUnique__2", "HasOneSocketUnique__3", "QuiverHasOneSocket", "RingHasOneSocket", "TalismanHasOneSocket_", }, + ["has 2 abyssal sockets"] = { "AbyssJewelSocketUnique__1", "AbyssJewelSocketUnique__11_", "AbyssJewelSocketUnique__13", "AbyssJewelSocketUnique__15", "AbyssJewelSocketUnique__2", "AbyssJewelSocketUnique__4", "AbyssJewelSocketUnique__9", }, + ["has 2 sockets"] = { "HasTwoSocketsUnique__1", }, + ["has 2 white sockets"] = { "ArmourEnchantmentHeistWhiteSockets1__", "WeaponEnchantmentHeistWhiteSockets1_", }, + ["has 3 abyssal sockets"] = { "AbyssJewelSocketUnique__16", }, + ["has 3 sockets"] = { "HasThreeSocketsUnique__1_", }, + ["has 4 abyssal sockets"] = { "AbyssJewelSocketUnique__17", }, + ["has 6 abyssal sockets"] = { "AbyssJewelSocketUnique__14", }, + ["has 6 sockets"] = { "HasSixSocketsUnique__1", }, + ["has a crucible passive skill tree"] = { "ItemCanHaveShieldWeaponTreeUnique1", }, + ["has a crucible passive skill tree with only support passive skills"] = { "ItemCanHaveSupportGemsOnlyTreeUnique1", }, + ["has a two handed sword crucible passive skill tree"] = { "ItemCanHaveTwoHandedSwordWeaponTreeUnique1", }, + ["has an additional implicit mod"] = { "DisplayHasAdditionalModUnique__1", }, + ["has consumed # gem"] = { "HungryLoopSupportedByAddedChaosDamage", "HungryLoopSupportedByAddedColdDamage", "HungryLoopSupportedByAddedFireDamage", "HungryLoopSupportedByAddedLightningDamage", "HungryLoopSupportedByAdditionalAccuracy", "HungryLoopSupportedByAnnhilation", "HungryLoopSupportedByArcaneSurge", "HungryLoopSupportedByArchmage", "HungryLoopSupportedByArrowNova", "HungryLoopSupportedByAutomation", "HungryLoopSupportedByAwakenedAddedChaosDamage_", "HungryLoopSupportedByAwakenedAddedColdDamage", "HungryLoopSupportedByAwakenedAddedFireDamage", "HungryLoopSupportedByAwakenedAddedLightningDamage_", "HungryLoopSupportedByAwakenedAncestralCall", "HungryLoopSupportedByAwakenedArrowNova", "HungryLoopSupportedByAwakenedBlasphemy", "HungryLoopSupportedByAwakenedBrutality", "HungryLoopSupportedByAwakenedBurningDamage", "HungryLoopSupportedByAwakenedCastOnCrit", "HungryLoopSupportedByAwakenedCastWhileChannelling", "HungryLoopSupportedByAwakenedChain", "HungryLoopSupportedByAwakenedColdPenetration", "HungryLoopSupportedByAwakenedControlledDestruction", "HungryLoopSupportedByAwakenedCurseOnHit", "HungryLoopSupportedByAwakenedDeadlyAilments", "HungryLoopSupportedByAwakenedElementalFocus", "HungryLoopSupportedByAwakenedEmpower", "HungryLoopSupportedByAwakenedEnhance", "HungryLoopSupportedByAwakenedEnlighten", "HungryLoopSupportedByAwakenedFirePenetration", "HungryLoopSupportedByAwakenedFork", "HungryLoopSupportedByAwakenedGenerosity_", "HungryLoopSupportedByAwakenedGreaterMultipleProjectiles", "HungryLoopSupportedByAwakenedIncreasedAreaOfEffect_", "HungryLoopSupportedByAwakenedLightningPenetration", "HungryLoopSupportedByAwakenedMeleePhysicalDamage", "HungryLoopSupportedByAwakenedMeleeSplash", "HungryLoopSupportedByAwakenedMinionDamage", "HungryLoopSupportedByAwakenedMultistrike", "HungryLoopSupportedByAwakenedSpellCascade", "HungryLoopSupportedByAwakenedSpellEcho__", "HungryLoopSupportedByAwakenedSwiftAffliction", "HungryLoopSupportedByAwakenedUnboundAilments", "HungryLoopSupportedByAwakenedUnleash", "HungryLoopSupportedByAwakenedViciousProjectiles", "HungryLoopSupportedByAwakenedVoidManipulation", "HungryLoopSupportedByAwakenedWeaponElementalDamage_", "HungryLoopSupportedByBarrage_", "HungryLoopSupportedByBehead", "HungryLoopSupportedByBlasphemy", "HungryLoopSupportedByBlessedCalling", "HungryLoopSupportedByBlind", "HungryLoopSupportedByBloodMagic", "HungryLoopSupportedByBloodlust", "HungryLoopSupportedByBloodsoakedBanner", "HungryLoopSupportedByBloodthirst_", "HungryLoopSupportedByBonechill", "HungryLoopSupportedByBonespire", "HungryLoopSupportedByBrutality", "HungryLoopSupportedByCallToArms", "HungryLoopSupportedByCastOnCrit", "HungryLoopSupportedByCastOnDamageTaken", "HungryLoopSupportedByCastOnDeath", "HungryLoopSupportedByCastOnKill", "HungryLoopSupportedByCastOnWardBreak", "HungryLoopSupportedByCastWhenStunned", "HungryLoopSupportedByCastWhileChannelling", "HungryLoopSupportedByChain", "HungryLoopSupportedByChanceToBleed", "HungryLoopSupportedByChanceToIgnite", "HungryLoopSupportedByChaosAttacks", "HungryLoopSupportedByChargedMines", "HungryLoopSupportedByCloseCombat", "HungryLoopSupportedByClusterTrap_", "HungryLoopSupportedByColdPenetration_", "HungryLoopSupportedByColdToFire_", "HungryLoopSupportedByCompanionship", "HungryLoopSupportedByConcentratedEffect", "HungryLoopSupportedByCongregation", "HungryLoopSupportedByControlledBlaze", "HungryLoopSupportedByControlledDestruction", "HungryLoopSupportedByCooldownRecovery", "HungryLoopSupportedByCorruptingCry", "HungryLoopSupportedByCullTheWeak", "HungryLoopSupportedByCullingStrike", "HungryLoopSupportedByCurseOnHit", "HungryLoopSupportedByCursedGround", "HungryLoopSupportedByDeadlyAilments", "HungryLoopSupportedByDeathmark_", "HungryLoopSupportedByDecay", "HungryLoopSupportedByDevour", "HungryLoopSupportedByDivineBlessing", "HungryLoopSupportedByDivineSentinel", "HungryLoopSupportedByEarthbreaker", "HungryLoopSupportedByEclipse", "HungryLoopSupportedByEdify", "HungryLoopSupportedByEfficacy", "HungryLoopSupportedByEldritchBlasphemy", "HungryLoopSupportedByElementalFocus", "HungryLoopSupportedByElementalPenetration", "HungryLoopSupportedByElementalProliferation", "HungryLoopSupportedByEmpower", "HungryLoopSupportedByEnduranceChargeOnStun", "HungryLoopSupportedByEnergyLeech", "HungryLoopSupportedByEnhance", "HungryLoopSupportedByEnlighten", "HungryLoopSupportedByEternalBlessing", "HungryLoopSupportedByExcommunication", "HungryLoopSupportedByExemplar", "HungryLoopSupportedByExpertRetaliation", "HungryLoopSupportedByFasterAttacks", "HungryLoopSupportedByFasterCast", "HungryLoopSupportedByFasterProjectiles", "HungryLoopSupportedByFeedingFrenzy", "HungryLoopSupportedByFirePenetration", "HungryLoopSupportedByFissure", "HungryLoopSupportedByFistOfWar", "HungryLoopSupportedByFlamewood", "HungryLoopSupportedByFlee", "HungryLoopSupportedByFocusedChannelling", "HungryLoopSupportedByFocussedBallista_", "HungryLoopSupportedByFork", "HungryLoopSupportedByFortify_", "HungryLoopSupportedByFoulgrasp", "HungryLoopSupportedByFragility_", "HungryLoopSupportedByFrenzyPowerOnTrapTrigger", "HungryLoopSupportedByFreshMeat", "HungryLoopSupportedByFrigidBond", "HungryLoopSupportedByFrostmage", "HungryLoopSupportedByGenerosity_", "HungryLoopSupportedByGluttony", "HungryLoopSupportedByGreaterAncestralCall", "HungryLoopSupportedByGreaterChain", "HungryLoopSupportedByGreaterDevour", "HungryLoopSupportedByGreaterFork", "HungryLoopSupportedByGreaterKineticInstability", "HungryLoopSupportedByGreaterMultipleProjectiles", "HungryLoopSupportedByGreaterMultistrike", "HungryLoopSupportedByGreaterSpellCascade", "HungryLoopSupportedByGreaterSpellEcho", "HungryLoopSupportedByGreaterUnleash", "HungryLoopSupportedByGreaterVolley", "HungryLoopSupportedByGuardiansBlessing", "HungryLoopSupportedByHallow", "HungryLoopSupportedByHarrowingThrong", "HungryLoopSupportedByHexBloom", "HungryLoopSupportedByHexpass", "HungryLoopSupportedByHextoad", "HungryLoopSupportedByHiveborn", "HungryLoopSupportedByHypothermia", "HungryLoopSupportedByIceBite", "HungryLoopSupportedByIgniteProliferation__", "HungryLoopSupportedByImmolate", "HungryLoopSupportedByImpale", "HungryLoopSupportedByImpendingDoom", "HungryLoopSupportedByIncreasedArea", "HungryLoopSupportedByIncreasedBurningDamage", "HungryLoopSupportedByIncreasedCriticalDamage", "HungryLoopSupportedByIncreasedCriticalStrikes", "HungryLoopSupportedByIncreasedDuration", "HungryLoopSupportedByIncreasedMinionDamage_", "HungryLoopSupportedByIncreasedMinionLife", "HungryLoopSupportedByIncreasedMinionSpeed", "HungryLoopSupportedByInfernalLegion_", "HungryLoopSupportedByInnervate_", "HungryLoopSupportedByInvention", "HungryLoopSupportedByInvertTheRules", "HungryLoopSupportedByIronGrip", "HungryLoopSupportedByIronWill", "HungryLoopSupportedByItemQuantity", "HungryLoopSupportedByItemRarity", "HungryLoopSupportedByKineticInstability", "HungryLoopSupportedByKnockback", "HungryLoopSupportedByLesserMultipleProjectiles_", "HungryLoopSupportedByLesserPoison_", "HungryLoopSupportedByLethalDose", "HungryLoopSupportedByLifeGainOnHit", "HungryLoopSupportedByLifeLeech", "HungryLoopSupportedByLifetap", "HungryLoopSupportedByLightningPenetration", "HungryLoopSupportedByLivingLightning", "HungryLoopSupportedByLocusMine", "HungryLoopSupportedByMachinations", "HungryLoopSupportedByMagnetism", "HungryLoopSupportedByMaim", "HungryLoopSupportedByManaLeech", "HungryLoopSupportedByManaforgedArrows", "HungryLoopSupportedByMarkOnHit", "HungryLoopSupportedByMeatShield", "HungryLoopSupportedByMeleeDamageOnFullLife", "HungryLoopSupportedByMeleePhysicalDamage", "HungryLoopSupportedByMeleeSplash_", "HungryLoopSupportedByMinefield", "HungryLoopSupportedByMinionPact", "HungryLoopSupportedByMirageArcher_", "HungryLoopSupportedByMultiTotem", "HungryLoopSupportedByMultiTrap", "HungryLoopSupportedByMulticast", "HungryLoopSupportedByMultistrike", "HungryLoopSupportedByNightblade", "HungryLoopSupportedByOnslaught_", "HungryLoopSupportedByOvercharge", "HungryLoopSupportedByOverexertion", "HungryLoopSupportedByOverheat", "HungryLoopSupportedByOverloadedIntensity", "HungryLoopSupportedByPacifism", "HungryLoopSupportedByParallelProjectiles", "HungryLoopSupportedByPhysicalProjectileAttackDamage", "HungryLoopSupportedByPhysicalToLightning_", "HungryLoopSupportedByPierce_", "HungryLoopSupportedByPinpoint", "HungryLoopSupportedByPointBlank", "HungryLoopSupportedByPoison", "HungryLoopSupportedByPowerChargeOnCrit_", "HungryLoopSupportedByPrismaticBurst", "HungryLoopSupportedByPulverise", "HungryLoopSupportedByPyre", "HungryLoopSupportedByRage_", "HungryLoopSupportedByRangedAttackTotem", "HungryLoopSupportedByRapidDecay", "HungryLoopSupportedByReducedBlockChance", "HungryLoopSupportedByReducedDuration", "HungryLoopSupportedByReducedManaCost", "HungryLoopSupportedByRemoteMine", "HungryLoopSupportedByRemoteMine2_", "HungryLoopSupportedByReturningProjectiles", "HungryLoopSupportedByRupture", "HungryLoopSupportedByRuthless_", "HungryLoopSupportedBySacredWisps", "HungryLoopSupportedBySacrifice", "HungryLoopSupportedBySadism", "HungryLoopSupportedByScornfulHerald", "HungryLoopSupportedBySecondWind_", "HungryLoopSupportedByShockwave_", "HungryLoopSupportedBySlowerProjectiles", "HungryLoopSupportedBySpellCascade", "HungryLoopSupportedBySpellFocus", "HungryLoopSupportedBySpellTotem", "HungryLoopSupportedBySpellblade", "HungryLoopSupportedBySpiritStrike", "HungryLoopSupportedByStormBarrier", "HungryLoopSupportedByStun", "HungryLoopSupportedBySummonElementalResistance", "HungryLoopSupportedBySummonGhostOnKill", "HungryLoopSupportedBySwiftAssembly", "HungryLoopSupportedBySwiftBrand", "HungryLoopSupportedByTornados", "HungryLoopSupportedByTransfusion", "HungryLoopSupportedByTrap", "HungryLoopSupportedByTrapAndMineDamage", "HungryLoopSupportedByTrapCooldown", "HungryLoopSupportedByTrauma", "HungryLoopSupportedByTrinity", "HungryLoopSupportedByUnboundAilments", "HungryLoopSupportedByUnholyTrinity", "HungryLoopSupportedByUnleash", "HungryLoopSupportedByUrgentOrders", "HungryLoopSupportedByVaalSacrifice", "HungryLoopSupportedByVaalTemptation", "HungryLoopSupportedByVileToxins_", "HungryLoopSupportedByVoidManipulation", "HungryLoopSupportedByVoidShockwave", "HungryLoopSupportedByVoidstorm", "HungryLoopSupportedByVolatility", "HungryLoopSupportedByWard", "HungryLoopSupportedByWeaponElementalDamage", }, + ["has consumed 1 gem"] = { "HungryLoopSupportedByAddedChaosDamage", "HungryLoopSupportedByAddedColdDamage", "HungryLoopSupportedByAddedFireDamage", "HungryLoopSupportedByAddedLightningDamage", "HungryLoopSupportedByAdditionalAccuracy", "HungryLoopSupportedByAnnhilation", "HungryLoopSupportedByArcaneSurge", "HungryLoopSupportedByArchmage", "HungryLoopSupportedByArrowNova", "HungryLoopSupportedByAutomation", "HungryLoopSupportedByAwakenedAddedChaosDamage_", "HungryLoopSupportedByAwakenedAddedColdDamage", "HungryLoopSupportedByAwakenedAddedFireDamage", "HungryLoopSupportedByAwakenedAddedLightningDamage_", "HungryLoopSupportedByAwakenedAncestralCall", "HungryLoopSupportedByAwakenedArrowNova", "HungryLoopSupportedByAwakenedBlasphemy", "HungryLoopSupportedByAwakenedBrutality", "HungryLoopSupportedByAwakenedBurningDamage", "HungryLoopSupportedByAwakenedCastOnCrit", "HungryLoopSupportedByAwakenedCastWhileChannelling", "HungryLoopSupportedByAwakenedChain", "HungryLoopSupportedByAwakenedColdPenetration", "HungryLoopSupportedByAwakenedControlledDestruction", "HungryLoopSupportedByAwakenedCurseOnHit", "HungryLoopSupportedByAwakenedDeadlyAilments", "HungryLoopSupportedByAwakenedElementalFocus", "HungryLoopSupportedByAwakenedEmpower", "HungryLoopSupportedByAwakenedEnhance", "HungryLoopSupportedByAwakenedEnlighten", "HungryLoopSupportedByAwakenedFirePenetration", "HungryLoopSupportedByAwakenedFork", "HungryLoopSupportedByAwakenedGenerosity_", "HungryLoopSupportedByAwakenedGreaterMultipleProjectiles", "HungryLoopSupportedByAwakenedIncreasedAreaOfEffect_", "HungryLoopSupportedByAwakenedLightningPenetration", "HungryLoopSupportedByAwakenedMeleePhysicalDamage", "HungryLoopSupportedByAwakenedMeleeSplash", "HungryLoopSupportedByAwakenedMinionDamage", "HungryLoopSupportedByAwakenedMultistrike", "HungryLoopSupportedByAwakenedSpellCascade", "HungryLoopSupportedByAwakenedSpellEcho__", "HungryLoopSupportedByAwakenedSwiftAffliction", "HungryLoopSupportedByAwakenedUnboundAilments", "HungryLoopSupportedByAwakenedUnleash", "HungryLoopSupportedByAwakenedViciousProjectiles", "HungryLoopSupportedByAwakenedVoidManipulation", "HungryLoopSupportedByAwakenedWeaponElementalDamage_", "HungryLoopSupportedByBarrage_", "HungryLoopSupportedByBehead", "HungryLoopSupportedByBlasphemy", "HungryLoopSupportedByBlessedCalling", "HungryLoopSupportedByBlind", "HungryLoopSupportedByBloodMagic", "HungryLoopSupportedByBloodlust", "HungryLoopSupportedByBloodsoakedBanner", "HungryLoopSupportedByBloodthirst_", "HungryLoopSupportedByBonechill", "HungryLoopSupportedByBonespire", "HungryLoopSupportedByBrutality", "HungryLoopSupportedByCallToArms", "HungryLoopSupportedByCastOnCrit", "HungryLoopSupportedByCastOnDamageTaken", "HungryLoopSupportedByCastOnDeath", "HungryLoopSupportedByCastOnKill", "HungryLoopSupportedByCastOnWardBreak", "HungryLoopSupportedByCastWhenStunned", "HungryLoopSupportedByCastWhileChannelling", "HungryLoopSupportedByChain", "HungryLoopSupportedByChanceToBleed", "HungryLoopSupportedByChanceToIgnite", "HungryLoopSupportedByChaosAttacks", "HungryLoopSupportedByChargedMines", "HungryLoopSupportedByCloseCombat", "HungryLoopSupportedByClusterTrap_", "HungryLoopSupportedByColdPenetration_", "HungryLoopSupportedByColdToFire_", "HungryLoopSupportedByCompanionship", "HungryLoopSupportedByConcentratedEffect", "HungryLoopSupportedByCongregation", "HungryLoopSupportedByControlledBlaze", "HungryLoopSupportedByControlledDestruction", "HungryLoopSupportedByCooldownRecovery", "HungryLoopSupportedByCorruptingCry", "HungryLoopSupportedByCullTheWeak", "HungryLoopSupportedByCullingStrike", "HungryLoopSupportedByCurseOnHit", "HungryLoopSupportedByCursedGround", "HungryLoopSupportedByDeadlyAilments", "HungryLoopSupportedByDeathmark_", "HungryLoopSupportedByDecay", "HungryLoopSupportedByDevour", "HungryLoopSupportedByDivineBlessing", "HungryLoopSupportedByDivineSentinel", "HungryLoopSupportedByEarthbreaker", "HungryLoopSupportedByEclipse", "HungryLoopSupportedByEdify", "HungryLoopSupportedByEfficacy", "HungryLoopSupportedByEldritchBlasphemy", "HungryLoopSupportedByElementalFocus", "HungryLoopSupportedByElementalPenetration", "HungryLoopSupportedByElementalProliferation", "HungryLoopSupportedByEmpower", "HungryLoopSupportedByEnduranceChargeOnStun", "HungryLoopSupportedByEnergyLeech", "HungryLoopSupportedByEnhance", "HungryLoopSupportedByEnlighten", "HungryLoopSupportedByEternalBlessing", "HungryLoopSupportedByExcommunication", "HungryLoopSupportedByExemplar", "HungryLoopSupportedByExpertRetaliation", "HungryLoopSupportedByFasterAttacks", "HungryLoopSupportedByFasterCast", "HungryLoopSupportedByFasterProjectiles", "HungryLoopSupportedByFeedingFrenzy", "HungryLoopSupportedByFirePenetration", "HungryLoopSupportedByFissure", "HungryLoopSupportedByFistOfWar", "HungryLoopSupportedByFlamewood", "HungryLoopSupportedByFlee", "HungryLoopSupportedByFocusedChannelling", "HungryLoopSupportedByFocussedBallista_", "HungryLoopSupportedByFork", "HungryLoopSupportedByFortify_", "HungryLoopSupportedByFoulgrasp", "HungryLoopSupportedByFragility_", "HungryLoopSupportedByFrenzyPowerOnTrapTrigger", "HungryLoopSupportedByFreshMeat", "HungryLoopSupportedByFrigidBond", "HungryLoopSupportedByFrostmage", "HungryLoopSupportedByGenerosity_", "HungryLoopSupportedByGluttony", "HungryLoopSupportedByGreaterAncestralCall", "HungryLoopSupportedByGreaterChain", "HungryLoopSupportedByGreaterDevour", "HungryLoopSupportedByGreaterFork", "HungryLoopSupportedByGreaterKineticInstability", "HungryLoopSupportedByGreaterMultipleProjectiles", "HungryLoopSupportedByGreaterMultistrike", "HungryLoopSupportedByGreaterSpellCascade", "HungryLoopSupportedByGreaterSpellEcho", "HungryLoopSupportedByGreaterUnleash", "HungryLoopSupportedByGreaterVolley", "HungryLoopSupportedByGuardiansBlessing", "HungryLoopSupportedByHallow", "HungryLoopSupportedByHarrowingThrong", "HungryLoopSupportedByHexBloom", "HungryLoopSupportedByHexpass", "HungryLoopSupportedByHextoad", "HungryLoopSupportedByHiveborn", "HungryLoopSupportedByHypothermia", "HungryLoopSupportedByIceBite", "HungryLoopSupportedByIgniteProliferation__", "HungryLoopSupportedByImmolate", "HungryLoopSupportedByImpale", "HungryLoopSupportedByImpendingDoom", "HungryLoopSupportedByIncreasedArea", "HungryLoopSupportedByIncreasedBurningDamage", "HungryLoopSupportedByIncreasedCriticalDamage", "HungryLoopSupportedByIncreasedCriticalStrikes", "HungryLoopSupportedByIncreasedDuration", "HungryLoopSupportedByIncreasedMinionDamage_", "HungryLoopSupportedByIncreasedMinionLife", "HungryLoopSupportedByIncreasedMinionSpeed", "HungryLoopSupportedByInfernalLegion_", "HungryLoopSupportedByInnervate_", "HungryLoopSupportedByInvention", "HungryLoopSupportedByInvertTheRules", "HungryLoopSupportedByIronGrip", "HungryLoopSupportedByIronWill", "HungryLoopSupportedByItemQuantity", "HungryLoopSupportedByItemRarity", "HungryLoopSupportedByKineticInstability", "HungryLoopSupportedByKnockback", "HungryLoopSupportedByLesserMultipleProjectiles_", "HungryLoopSupportedByLesserPoison_", "HungryLoopSupportedByLethalDose", "HungryLoopSupportedByLifeGainOnHit", "HungryLoopSupportedByLifeLeech", "HungryLoopSupportedByLifetap", "HungryLoopSupportedByLightningPenetration", "HungryLoopSupportedByLivingLightning", "HungryLoopSupportedByLocusMine", "HungryLoopSupportedByMachinations", "HungryLoopSupportedByMagnetism", "HungryLoopSupportedByMaim", "HungryLoopSupportedByManaLeech", "HungryLoopSupportedByManaforgedArrows", "HungryLoopSupportedByMarkOnHit", "HungryLoopSupportedByMeatShield", "HungryLoopSupportedByMeleeDamageOnFullLife", "HungryLoopSupportedByMeleePhysicalDamage", "HungryLoopSupportedByMeleeSplash_", "HungryLoopSupportedByMinefield", "HungryLoopSupportedByMinionPact", "HungryLoopSupportedByMirageArcher_", "HungryLoopSupportedByMultiTotem", "HungryLoopSupportedByMultiTrap", "HungryLoopSupportedByMulticast", "HungryLoopSupportedByMultistrike", "HungryLoopSupportedByNightblade", "HungryLoopSupportedByOnslaught_", "HungryLoopSupportedByOvercharge", "HungryLoopSupportedByOverexertion", "HungryLoopSupportedByOverheat", "HungryLoopSupportedByOverloadedIntensity", "HungryLoopSupportedByPacifism", "HungryLoopSupportedByParallelProjectiles", "HungryLoopSupportedByPhysicalProjectileAttackDamage", "HungryLoopSupportedByPhysicalToLightning_", "HungryLoopSupportedByPierce_", "HungryLoopSupportedByPinpoint", "HungryLoopSupportedByPointBlank", "HungryLoopSupportedByPoison", "HungryLoopSupportedByPowerChargeOnCrit_", "HungryLoopSupportedByPrismaticBurst", "HungryLoopSupportedByPulverise", "HungryLoopSupportedByPyre", "HungryLoopSupportedByRage_", "HungryLoopSupportedByRangedAttackTotem", "HungryLoopSupportedByRapidDecay", "HungryLoopSupportedByReducedBlockChance", "HungryLoopSupportedByReducedDuration", "HungryLoopSupportedByReducedManaCost", "HungryLoopSupportedByRemoteMine", "HungryLoopSupportedByRemoteMine2_", "HungryLoopSupportedByReturningProjectiles", "HungryLoopSupportedByRupture", "HungryLoopSupportedByRuthless_", "HungryLoopSupportedBySacredWisps", "HungryLoopSupportedBySacrifice", "HungryLoopSupportedBySadism", "HungryLoopSupportedByScornfulHerald", "HungryLoopSupportedBySecondWind_", "HungryLoopSupportedByShockwave_", "HungryLoopSupportedBySlowerProjectiles", "HungryLoopSupportedBySpellCascade", "HungryLoopSupportedBySpellFocus", "HungryLoopSupportedBySpellTotem", "HungryLoopSupportedBySpellblade", "HungryLoopSupportedBySpiritStrike", "HungryLoopSupportedByStormBarrier", "HungryLoopSupportedByStun", "HungryLoopSupportedBySummonElementalResistance", "HungryLoopSupportedBySummonGhostOnKill", "HungryLoopSupportedBySwiftAssembly", "HungryLoopSupportedBySwiftBrand", "HungryLoopSupportedByTornados", "HungryLoopSupportedByTransfusion", "HungryLoopSupportedByTrap", "HungryLoopSupportedByTrapAndMineDamage", "HungryLoopSupportedByTrapCooldown", "HungryLoopSupportedByTrauma", "HungryLoopSupportedByTrinity", "HungryLoopSupportedByUnboundAilments", "HungryLoopSupportedByUnholyTrinity", "HungryLoopSupportedByUnleash", "HungryLoopSupportedByUrgentOrders", "HungryLoopSupportedByVaalSacrifice", "HungryLoopSupportedByVaalTemptation", "HungryLoopSupportedByVileToxins_", "HungryLoopSupportedByVoidManipulation", "HungryLoopSupportedByVoidShockwave", "HungryLoopSupportedByVoidstorm", "HungryLoopSupportedByVolatility", "HungryLoopSupportedByWard", "HungryLoopSupportedByWeaponElementalDamage", }, + ["has no attribute requirements"] = { "LocalNoAttributeRequirementsUnique__1", "LocalNoAttributeRequirementsUnique__2", }, + ["has no energy shield"] = { "NoEnergyShieldUnique__1", }, + ["has no sockets"] = { "HasNoSockets", }, + ["has one socket of each colour"] = { "OneSocketEachColourUnique", }, + ["haste has no reservation"] = { "HasteNoReservationUnique__1", }, + ["hatred has #% increased mana reservation efficiency"] = { "HatredManaReservationEfficiencyUnique__1__", "HyrrisTruthHatredManaReservationFinalUnique__1", }, + ["hatred has 100% increased mana reservation efficiency"] = { "HatredManaReservationEfficiencyUnique__1__", "HyrrisTruthHatredManaReservationFinalUnique__1", }, + ["hatred has no reservation"] = { "HatredNoReservationUnique__1_", }, + ["haunted by tormented spirits"] = { "VillageTormentHauntedItem", }, + ["having a placed banner does not prevent you gaining valour"] = { "Allow2ActiveBannersUnique__1", }, + ["heist chests have a #% chance to duplicate their contents"] = { "HeistContractChestRewardsDuplicated", }, + ["heist chests have a 100% chance to duplicate their contents"] = { "HeistContractChestRewardsDuplicated", }, + ["heist targets are always currency or scarabs"] = { "HeistBlueprintRewardAlwaysCurrencyScarab", }, + ["heist targets are always enchanted armaments"] = { "HeistBlueprintRewardAlwaysEnchanted", }, + ["heist targets are always experimented items"] = { "HeistBlueprintRewardAlwaysExperimented", }, + ["heist targets are always replica unique items"] = { "HeistBlueprintRewardAlwaysUnique", }, + ["heist targets are always thieves' trinkets"] = { "HeistBlueprintRewardAlwaysTrinket", }, + ["herald of agony has (#)% increased buff effect"] = { "HeraldBonusAgonyEffect", }, + ["herald of agony has (#)% increased mana reservation efficiency"] = { "HeraldBonusAgonyReservation", "HeraldBonusAgonyReservationEfficiency", }, + ["herald of agony has (30-40)% increased mana reservation efficiency"] = { "HeraldBonusAgonyReservation", "HeraldBonusAgonyReservationEfficiency", }, + ["herald of agony has (40-60)% increased buff effect"] = { "HeraldBonusAgonyEffect", }, + ["herald of ash has (#)% increased buff effect"] = { "HeraldBonusAshEffect", }, + ["herald of ash has (#)% increased mana reservation efficiency"] = { "HeraldBonusAshReservation", "HeraldBonusAshReservationEfficiency__", }, + ["herald of ash has (30-40)% increased mana reservation efficiency"] = { "HeraldBonusAshReservation", "HeraldBonusAshReservationEfficiency__", }, + ["herald of ash has (40-60)% increased buff effect"] = { "HeraldBonusAshEffect", }, + ["herald of ice has (#)% increased buff effect"] = { "HeraldBonusIceEffect_", }, + ["herald of ice has (#)% increased mana reservation efficiency"] = { "HeraldBonusIceReservationEfficiency__", "HeraldBonusIceReservation_", }, + ["herald of ice has (30-40)% increased mana reservation efficiency"] = { "HeraldBonusIceReservationEfficiency__", "HeraldBonusIceReservation_", }, + ["herald of ice has (40-60)% increased buff effect"] = { "HeraldBonusIceEffect_", }, + ["herald of purity has (#)% increased buff effect"] = { "HeraldBonusPurityEffect", }, + ["herald of purity has (#)% increased mana reservation efficiency"] = { "HeraldBonusPurityReservationEfficiency_", "HeraldBonusPurityReservation_", }, + ["herald of purity has (30-40)% increased mana reservation efficiency"] = { "HeraldBonusPurityReservationEfficiency_", "HeraldBonusPurityReservation_", }, + ["herald of purity has (40-60)% increased buff effect"] = { "HeraldBonusPurityEffect", }, + ["herald of thunder also creates a storm when you shock an enemy"] = { "ActivateHeraldOfThunderOnShockUnique__1", }, + ["herald of thunder has #% increased buff effect"] = { "HeraldOfThunderBuffEffectUnique__1", }, + ["herald of thunder has (#)% increased buff effect"] = { "HeraldBonusThunderEffect", }, + ["herald of thunder has (#)% increased mana reservation efficiency"] = { "HeraldBonusThunderReservation", "HeraldBonusThunderReservationEfficiency", }, + ["herald of thunder has (30-40)% increased mana reservation efficiency"] = { "HeraldBonusThunderReservation", "HeraldBonusThunderReservationEfficiency", }, + ["herald of thunder has (40-60)% increased buff effect"] = { "HeraldBonusThunderEffect", }, + ["herald of thunder has 50% increased buff effect"] = { "HeraldOfThunderBuffEffectUnique__1", }, + ["herald of thunder's storms hit enemies with (#)% increased frequency"] = { "HeraldOfThunderBoltFrequencyUnique__1", }, + ["herald of thunder's storms hit enemies with (30-50)% increased frequency"] = { "HeraldOfThunderBoltFrequencyUnique__1", }, + ["hex master"] = { "KeystoneDoomsdayUnique__1", }, + ["hex reflection"] = { "ReflectCurses", }, + ["hexes applied by socketed curse skills are reflected back to you"] = { "SocketedCursesAreReflectedUniqueGlovesStrInt1", }, + ["hexes transfer to all enemies within # metres when hexed enemy dies"] = { "CurseTransferOnKillUniqueQuiver5", }, + ["hexes transfer to all enemies within 3 metres when hexed enemy dies"] = { "CurseTransferOnKillUniqueQuiver5", }, + ["hits against nearby enemies have #% increased critical strike chance"] = { "NearbyEnemiesHaveIncreasedChanceToBeCritUnique__1", }, + ["hits against nearby enemies have 50% increased critical strike chance"] = { "NearbyEnemiesHaveIncreasedChanceToBeCritUnique__1", }, + ["hits can't be evaded"] = { "AlwaysHits", "AlwaysHitsUniqueTwoHandMace6", "AlwaysHitsUnique__1", }, + ["hits from socketed vaal skills ignore enemy monster resistances"] = { "LocalVaalIgnoreMonsterResistancesUnique__1", }, + ["hits from socketed vaal skills ignore enemy physical damage reduction"] = { "LocalVaalIgnoreMonsterPhysicalReductionUnique__1", }, + ["hits have #% increased critical strike chance against you"] = { "NearbyEnemiesHaveIncreasedChanceToBeCritUnique__2", }, + ["hits have (#)% chance to ignore enemy physical damage reduction while you have sacrificial zeal"] = { "ArmourPenetrationSacrificialZealUnique__1", }, + ["hits have (#)% increased critical strike chance against you"] = { "ChanceToBeCritJewelUnique__1", "ChanceToBeCritJewelUpdatedUnique__1", }, + ["hits have (140-200)% increased critical strike chance against you"] = { "ChanceToBeCritJewelUnique__1", "ChanceToBeCritJewelUpdatedUnique__1", }, + ["hits have (35-50)% chance to ignore enemy physical damage reduction while you have sacrificial zeal"] = { "ArmourPenetrationSacrificialZealUnique__1", }, + ["hits have 50% increased critical strike chance against you"] = { "NearbyEnemiesHaveIncreasedChanceToBeCritUnique__2", }, + ["hits ignore enemy monster chaos resistance if all equipped items are elder items"] = { "HitsIgnoreChaosResistanceAllElderItemsUnique__1", }, + ["hits ignore enemy monster chaos resistance if all equipped items are shaper items"] = { "HitsIgnoreChaosResistanceAllShaperItemsUnique__1", }, + ["hits ignore enemy monster fire resistance while you are ignited"] = { "IgnoreEnemyFireResistWhileIgnitedUnique__1", }, + ["hits with prismatic skills always inflict brittle"] = { "PrismaticSkillsInflictBrittleUnique_1", }, + ["hits with prismatic skills always sap"] = { "PrismaticSkillsInflictSapUnique_1", }, + ["hits with prismatic skills always scorch"] = { "PrismaticSkillsInflictScorchUnique_1", }, + ["hits with this weapon always ignite, freeze, and shock"] = { "LocalAlwaysInflictElementalAilmentsUnique__1", }, + ["hits with this weapon can't be evaded if you have blocked recently"] = { "HitsCantBeEvadedIfBlockedRecentlyUber1_", }, + ["hits with this weapon deal (#)% increased damage to frozen enemies"] = { "LocalElementalDamageAgainstFrozenEnemiesUnique__1", }, + ["hits with this weapon deal (#)% increased damage to ignited enemies"] = { "LocalElementalDamageAgainstIgnitedEnemiesUnique__1_", }, + ["hits with this weapon deal (#)% increased damage to shocked enemies"] = { "LocalElementalDamageAgainstShockedEnemiesUnique__1_", }, + ["hits with this weapon deal (30-60)% increased damage to frozen enemies"] = { "LocalElementalDamageAgainstFrozenEnemiesUnique__1", }, + ["hits with this weapon deal (30-60)% increased damage to ignited enemies"] = { "LocalElementalDamageAgainstIgnitedEnemiesUnique__1_", }, + ["hits with this weapon deal (30-60)% increased damage to shocked enemies"] = { "LocalElementalDamageAgainstShockedEnemiesUnique__1_", }, + ["hits with this weapon freeze enemies as though dealing (#)% more damage"] = { "LocalFreezeAsThoughDealingMoreDamageUnique__1", }, + ["hits with this weapon freeze enemies as though dealing (150-200)% more damage"] = { "LocalFreezeAsThoughDealingMoreDamageUnique__1", }, + ["hits with this weapon gain (#)% of physical damage as extra cold or lightning damage"] = { "WeaponPhysicalDamageAddedAsColdOrLightningUnique__1", }, + ["hits with this weapon gain (75-100)% of physical damage as extra cold or lightning damage"] = { "WeaponPhysicalDamageAddedAsColdOrLightningUnique__1", }, + ["hits with this weapon have #% chance to ignore enemy physical damage reduction"] = { "LocalIgnorePhysReductionImplicitE1", "LocalIgnorePhysReductionImplicitE2", }, + ["hits with this weapon have +#% to critical strike multiplier per enemy power"] = { "CriticalStrikeMultiplierMonsterPowerUnique__1", }, + ["hits with this weapon have +10% to critical strike multiplier per enemy power"] = { "CriticalStrikeMultiplierMonsterPowerUnique__1", }, + ["hits with this weapon have 30% chance to ignore enemy physical damage reduction"] = { "LocalIgnorePhysReductionImplicitE1", }, + ["hits with this weapon have 50% chance to ignore enemy physical damage reduction"] = { "LocalIgnorePhysReductionImplicitE2", }, + ["hits with this weapon have culling strike if you have dealt a critical strike recently"] = { "CullingStrikeIfCritRecentlyUber1", }, + ["hits with this weapon ignore enemy physical damage reduction"] = { "LocalIgnorePhysReductionImplicitE3", }, + ["hits with this weapon shock enemies as though dealing #% more damage"] = { "AttacksShockAsIfDealingMoreDamageUniqueBow10", "AttacksShockAsIfDealingMoreDamageUnique__2", }, + ["hits with this weapon shock enemies as though dealing (#)% more damage"] = { "LocalShockAsThoughDealingMoreDamageUnique__1", }, + ["hits with this weapon shock enemies as though dealing (150-200)% more damage"] = { "LocalShockAsThoughDealingMoreDamageUnique__1", }, + ["hits with this weapon shock enemies as though dealing 300% more damage"] = { "AttacksShockAsIfDealingMoreDamageUniqueBow10", "AttacksShockAsIfDealingMoreDamageUnique__2", }, + ["hollow palm technique"] = { "KeystoneHollowPalmTechniqueUnique__1", }, + ["if you consumed a corpse recently, you and nearby allies regenerate #% of life per second"] = { "LifeRegenerationIfCorpseConsumedRecentlyUnique__1", }, + ["if you consumed a corpse recently, you and nearby allies regenerate 5% of life per second"] = { "LifeRegenerationIfCorpseConsumedRecentlyUnique__1", }, + ["if you have blocked recently, you and nearby allies regenerate #% of life per second"] = { "LifeRegenerationIfBlockedRecentlyUnique__1", }, + ["if you have blocked recently, you and nearby allies regenerate 5% of life per second"] = { "LifeRegenerationIfBlockedRecentlyUnique__1", }, + ["if you've warcried recently, you and nearby allies have #% increased attack, cast and movement speed"] = { "AttackCastMoveOnWarcryRecentlyUnique____1", }, + ["if you've warcried recently, you and nearby allies have 20% increased attack, cast and movement speed"] = { "AttackCastMoveOnWarcryRecentlyUnique____1", }, + ["ignited enemies burn (#)% slower"] = { "EmberwakeLessBurningDamageUniqueRing38", }, + ["ignited enemies burn (50-65)% slower"] = { "EmberwakeLessBurningDamageUniqueRing38", }, + ["ignited enemies killed by your hits are destroyed"] = { "BurningArrowThresholdJewel_2", "IgnitedEnemiesTurnToAshUniqueRing15", }, + ["ignites inflicted with this weapon deal (#)% more damage"] = { "LocalWeaponMoreIgniteDamageUnique__1", }, + ["ignites inflicted with this weapon deal (50-75)% more damage"] = { "LocalWeaponMoreIgniteDamageUnique__1", }, + ["ignites you cause are reflected back to you"] = { "IgnitesReflectedToSelfUnique__1", }, + ["ignites you inflict deal damage #% faster"] = { "FasterBurnFromAttacksUniqueOneHandSword4", }, + ["ignites you inflict deal damage (#)% faster"] = { "FasterIgniteDamageUnique__1", }, + ["ignites you inflict deal damage (35-45)% faster"] = { "FasterIgniteDamageUnique__1", }, + ["ignites you inflict deal damage 50% faster"] = { "FasterBurnFromAttacksUniqueOneHandSword4", }, + ["ignites you inflict deal no damage"] = { "IgniteDealNoDamageUnique__1", }, + ["ignites you inflict spread to other enemies within # metres"] = { "GlobalIgniteProlifUnique__1", "GlobalIgniteProlifUnique__2", }, + ["ignites you inflict spread to other enemies within 1.5 metres"] = { "GlobalIgniteProlifUnique__1", }, + ["ignites you inflict spread to other enemies within 2.8 metres"] = { "GlobalIgniteProlifUnique__2", }, + ["ignites you inflict with attacks deal damage #% faster"] = { "FasterBurnFromAttacksEnemiesUniqueBelt14", }, + ["ignites you inflict with attacks deal damage 35% faster"] = { "FasterBurnFromAttacksEnemiesUniqueBelt14", }, + ["ignites you inflict with this weapon spread to other enemies within # metres"] = { "LocalIgniteProlifEmberglowUnique__1", }, + ["ignites you inflict with this weapon spread to other enemies within 2.8 metres"] = { "LocalIgniteProlifEmberglowUnique__1", }, + ["ignore stuns while casting"] = { "AvoidInterruptionWhileCastingUnique__1", }, + ["imbalanced guard"] = { "KeystoneSacredBastionUnique__1", }, + ["immortal ambition"] = { "KeystoneSoulTetherUnique__1", "KeystoneSoulTetherUnique__2", "NoEnergyShieldRegenerationUnique__1", }, + ["immune to burning ground, shocked ground and chilled ground"] = { "ImmuneToBurningShockedChilledGroundUnique__1", }, + ["immune to chill"] = { "ImmuneToChillUnique__1", "ImmuneToChillUnique__2__", }, + ["immune to curses if you've cast despair in the past # seconds"] = { "DespairImmuneToCursesUnique__1", }, + ["immune to curses if you've cast despair in the past 10 seconds"] = { "DespairImmuneToCursesUnique__1", }, + ["immune to curses while you have at least # rage"] = { "ImmuneToCursesWithRageUnique__1", }, + ["immune to curses while you have at least 25 rage"] = { "ImmuneToCursesWithRageUnique__1", }, + ["immune to elemental ailments while affected by glorious madness"] = { "ElementalAilmentImmunityGloriousMadnessUnique1", }, + ["immune to exposure if you've cast elemental weakness in the past # seconds"] = { "ElementalWeaknessImmuneToExposureUnique__1", }, + ["immune to exposure if you've cast elemental weakness in the past 10 seconds"] = { "ElementalWeaknessImmuneToExposureUnique__1", }, + ["immune to freeze and chill while ignited"] = { "ImmuneToFreezeAndChillWhileIgnitedUnique__1", }, + ["immune to reflected damage if you've cast punishment in the past # seconds"] = { "PunishmentImmuneToReflectedDamageUnique__1", }, + ["immune to reflected damage if you've cast punishment in the past 10 seconds"] = { "PunishmentImmuneToReflectedDamageUnique__1", }, + ["immunity to damage during effect"] = { "FlaskImmuneToDamage__1", }, + ["immunity to freeze, chill, curses and stuns during effect"] = { "FlaskImmuneToStunFreezeCursesUnique__1", }, + ["impale damage dealt to enemies impaled by you overwhelms #% physical damage reduction"] = { "ImpalePhysicalReductionPenaltyUnique__1", }, + ["impale damage dealt to enemies impaled by you overwhelms 10% physical damage reduction"] = { "ImpalePhysicalReductionPenaltyUnique__1", }, + ["impales you inflict last (#) additional hits"] = { "ImpalesInflictedLastAdditionalHitsUnique_1UNUSED", }, + ["impales you inflict last (3-6) additional hits"] = { "ImpalesInflictedLastAdditionalHitsUnique_1UNUSED", }, + ["implicit modifier magnitudes are doubled"] = { "LocalDoubleImplicitMods", }, + ["implicit modifier magnitudes are tripled"] = { "LocalTripleImplicitModsUnique__1__", }, + ["implicit modifiers cannot be changed"] = { "CanHaveEveryInfluenceTypeImplicitE1", }, + ["increases and reductions to cast speed also apply to trap throwing speed"] = { "CastSpeedAppliesToTrapSpeedUnique__1", }, + ["increases and reductions to cast speed apply to attack speed"] = { "CastSpeedAppliesToAttackSpeedUnique__1", }, + ["increases and reductions to chaos damage also apply to effect of"] = { "ChaosDamageModsApplyToChaosAuraEffectAtPercentUnique_1", }, + ["increases and reductions to cold damage also apply to effect of"] = { "ColdDamageModsApplyToColdAuraEffectAtPercentUnique_1", }, + ["increases and reductions to effect of flasks applied to you"] = { "FlaskEffectAlsoAffectsArcaneSurgeUnique__1", }, + ["increases and reductions to energy shield in radius are transformed to apply to armour at #% of their value"] = { "EnergyShieldInRadiusIncreasesArmourUniqueJewel50", }, + ["increases and reductions to energy shield in radius are transformed to apply to armour at 200% of their value"] = { "EnergyShieldInRadiusIncreasesArmourUniqueJewel50", }, + ["increases and reductions to fire damage also apply to effect of"] = { "FireDamageModsApplyToFireAuraEffectAtPercentUnique_1", }, + ["increases and reductions to life in radius are transformed to apply to energy shield"] = { "LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51", }, + ["increases and reductions to life in radius are transformed to apply to mana at #% of their value"] = { "LifePassivesBecomeManaPassivesInRadiusUniqueJewel54", }, + ["increases and reductions to life in radius are transformed to apply to mana at 200% of their value"] = { "LifePassivesBecomeManaPassivesInRadiusUniqueJewel54", }, + ["increases and reductions to light radius also apply to accuracy"] = { "LightRadiusAppliesToAccuracyUnique__1_", }, + ["increases and reductions to light radius also apply to area of effect at #% of their value"] = { "LightRadiusToAreaOfEffectUnique__1", }, + ["increases and reductions to light radius also apply to area of effect at 50% of their value"] = { "LightRadiusToAreaOfEffectUnique__1", }, + ["increases and reductions to light radius also apply to damage"] = { "LightRadiusToDamageUnique_1", }, + ["increases and reductions to lightning damage also apply to effect of"] = { "LightningDamageModsApplyToLightningAuraEffectAtPercentUnique_1", }, + ["increases and reductions to maximum energy shield instead apply to ward"] = { "EnergyShieldAdditiveModifiersInsteadApplyToWardUnique__", }, + ["increases and reductions to minion damage also affect you at #% of their value"] = { "MinionDamageAlsoAffectsYouUnique__1", "VillageMinionDamageAlsoAffectsYou", }, + ["increases and reductions to minion damage also affect you at 150% of their value"] = { "MinionDamageAlsoAffectsYouUnique__1", "VillageMinionDamageAlsoAffectsYou", }, + ["increases and reductions to minion maximum life also apply to you at #% of their value"] = { "MinionLifeAlsoAffectsYouUnique__1", }, + ["increases and reductions to minion maximum life also apply to you at 15% of their value"] = { "MinionLifeAlsoAffectsYouUnique__1", }, + ["increases and reductions to other damage types in radius are transformed to apply to fire damage"] = { "AllDamageInRadiusBecomesFireUniqueJewel49", }, + ["increases and reductions to physical damage also apply to effect of"] = { "PhysicalDamageModsApplyToPhysicalAuraEffectAtPercentUnique_1", }, + ["increases and reductions to physical damage in radius are transformed to apply to cold damage"] = { "ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_", }, + ["increases and reductions to spell damage also apply to attacks at #% of their value"] = { "SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7", }, + ["increases and reductions to spell damage also apply to attacks at 150% of their value"] = { "SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7", }, + ["increases to cast speed from arcane surge also applies to movement speed"] = { "ArcaneSurgeMovementSpeedUnique", }, + ["inflict (#) additional poisons on the same target"] = { "LocalApplyAdditionalPoisonUnique__1", }, + ["inflict (2-3) additional poisons on the same target"] = { "LocalApplyAdditionalPoisonUnique__1", }, + ["inflict brittle on enemies when you block their damage"] = { "ChanceToInflictBrittleOnEnemyOnBlockImplicitE1", }, + ["inflict decay on enemies you curse with hex skills, dealing # chaos damage per second for # seconds"] = { "ApplyDecayOnCurseUnique__1", }, + ["inflict decay on enemies you curse with hex skills, dealing 700 chaos damage per second for 8 seconds"] = { "ApplyDecayOnCurseUnique__1", }, + ["inflict fire exposure on hit against enemies with"] = { "FireExposureOnHitVsMaxResentmentStacksUnique__1", }, + ["inflict fire exposure on hit if you've cast flammability in the past # seconds"] = { "FlammabilityFireExposureOnHitUnique__1", }, + ["inflict fire exposure on hit if you've cast flammability in the past 10 seconds"] = { "FlammabilityFireExposureOnHitUnique__1", }, + ["inflict fire, cold and lightning exposure on nearby enemies when used"] = { "FlaskFireColdLightningExposureOnNearbyEnemiesUnique1", }, + ["inflict hallowing flame on hit while on consecrated ground"] = { "HallowOnHitVsConsecratedEnemyUnique__1", }, + ["inflict lightning exposure on hit if you've cast conductivity in the past # seconds"] = { "ConductivityLightningExposureOnHitUnique__1", }, + ["inflict lightning exposure on hit if you've cast conductivity in the past 10 seconds"] = { "ConductivityLightningExposureOnHitUnique__1", }, + ["inflict non-damaging ailments as though dealing (#)% more damage"] = { "ApplyAilmentsMoreDamageUnique__1", }, + ["inflict non-damaging ailments as though dealing (100-200)% more damage"] = { "ApplyAilmentsMoreDamageUnique__1", }, + ["inflict withered for # seconds on hit if you've cast despair in the past # seconds"] = { "DespairWitherOnHitUnique__1", }, + ["inflict withered for # seconds on hit with this weapon"] = { "LocalWitherOnHitChanceUnique__2", }, + ["inflict withered for 2 seconds on hit if you've cast despair in the past 10 seconds"] = { "DespairWitherOnHitUnique__1", }, + ["inflict withered for 2 seconds on hit with this weapon"] = { "LocalWitherOnHitChanceUnique__2", }, + ["inflicts a random hex on you when your totems die"] = { "RandomlyCursedWhenTotemsDieUniqueBodyInt7", }, + ["inner conviction"] = { "KeystoneInnerConvictionUnique__1", }, + ["insufficient life doesn't prevent your melee attacks"] = { "VillageMeleeAttacksUsableWithoutLife", }, + ["insufficient mana doesn't prevent your melee attacks"] = { "MeleeAttacksUsableWithoutManaUniqueOneHandAxe1", "MeleeAttacksUsableWithoutManaUnique__1", }, + ["intelligence from passives in radius is transformed to dexterity"] = { "JewelIntToDex", "JewelIntToDexUniqueJewel36", }, + ["intelligence from passives in radius is transformed to strength"] = { "JewelIntToStr", "JewelIntToStrUniqueJewel34", }, + ["intelligence provides no inherent bonus to maximum mana"] = { "NoMaximumManaPerIntelligenceUnique__1", }, + ["intimidate enemies for # seconds on hit with attacks while at maximum endurance charges"] = { "ChargeBonusIntimidateOnHitEnduranceCharges", }, + ["intimidate enemies for 4 seconds on hit with attacks while at maximum endurance charges"] = { "ChargeBonusIntimidateOnHitEnduranceCharges", }, + ["intimidate enemies on hit if you've cast punishment in the past # seconds"] = { "PunishmentIntimidateOnHitUnique__1", }, + ["intimidate enemies on hit if you've cast punishment in the past 10 seconds"] = { "PunishmentIntimidateOnHitUnique__1", }, + ["iron grip"] = { "KeystoneIronGripUnique__1", "VillageIronGrip", }, + ["iron reflexes"] = { "IronReflexes", "KeystoneIronReflexesUnique__1", }, + ["iron reflexes while stationary"] = { "GainIronReflexesWhileStationaryUnique__1", }, + ["iron will"] = { "IronWillUniqueGlovesStrInt4__", "KeystoneIronWillUnique_1", "VillageIronWill", }, + ["item drops on death"] = { "ItemDropsOnDeathUniqueAmulet12", }, + ["items and gems have #% increased attribute requirements"] = { "GlobalItemAttributeRequirementsUniqueAmulet19", "GlobalItemAttributeRequirementsUnique__2", }, + ["items and gems have #% reduced attribute requirements"] = { "GlobalItemAttributeRequirementsUniqueAmulet10", "GlobalItemAttributeRequirementsUnique__1_", }, + ["items and gems have (#)% reduced attribute requirements"] = { "GlobalItemAttributeRequirementsUnique__3", }, + ["items and gems have (5-10)% reduced attribute requirements"] = { "GlobalItemAttributeRequirementsUnique__3", }, + ["items and gems have 10% increased attribute requirements"] = { "GlobalItemAttributeRequirementsUniqueAmulet19", }, + ["items and gems have 100% reduced attribute requirements"] = { "GlobalItemAttributeRequirementsUnique__1_", }, + ["items and gems have 25% reduced attribute requirements"] = { "GlobalItemAttributeRequirementsUniqueAmulet10", }, + ["items and gems have 50% increased attribute requirements"] = { "GlobalItemAttributeRequirementsUnique__2", }, + ["kill enemies that have #% or lower life on hit if the searing exarch is dominant"] = { "KillEnemyInstantlyExarchDominantUnique__1", }, + ["kill enemies that have 15% or lower life on hit if the searing exarch is dominant"] = { "KillEnemyInstantlyExarchDominantUnique__1", }, + ["kills grant an additional vaal soul if you have rampaged recently"] = { "VaalSoulsOnRampageUniqueGlovesStrDex5", }, + ["knockback direction is reversed"] = { "EnemyKnockbackDirectionReversedUniqueGlovesStr5_", }, + ["knocks back enemies in an area when you use a flask"] = { "AoEKnockBackOnFlaskUseUniqueFlask9_", }, + ["leech energy shield instead of life"] = { "LeechEnergyShieldInsteadofLife", }, + ["left ring slot: #% increased mana regeneration rate"] = { "LeftRingSlotManaRegenUniqueRing13", }, + ["left ring slot: #% of cold damage from hits taken as fire damage"] = { "ReflectedFireColdDamageTakenConversionImplicitK5a", }, + ["left ring slot: #% of elemental hit damage from you and"] = { "LeftRingSlotElementalReflectDamageTakenUniqueRing10", }, + ["left ring slot: #% of fire damage from hits taken as lightning damage"] = { "ReflectedFireLightningDamageTakenConversionImplicitK5b", }, + ["left ring slot: #% of lightning damage from hits taken as cold damage"] = { "ReflectedColdLightningDamageTakenConversionImplicitK5c", }, + ["left ring slot: #% reduced duration of ailments on you"] = { "ReflectedAilmentDurationOnSelfImplicitK4", }, + ["left ring slot: #% reduced effect of curses on you"] = { "ReflectedCurseEffectOnSelfImplicitK2", }, + ["left ring slot: #% reduced skill effect duration"] = { "ReflectedDurationRingImplicitK1", }, + ["left ring slot: +# to maximum energy shield"] = { "LeftRingSlotMaximumEnergyShieldUnique__1", }, + ["left ring slot: +250 to maximum energy shield"] = { "LeftRingSlotMaximumEnergyShieldUnique__1", }, + ["left ring slot: 100% increased mana regeneration rate"] = { "LeftRingSlotManaRegenUniqueRing13", }, + ["left ring slot: 100% of elemental hit damage from you and"] = { "LeftRingSlotElementalReflectDamageTakenUniqueRing10", }, + ["left ring slot: 15% reduced skill effect duration"] = { "ReflectedDurationRingImplicitK1", }, + ["left ring slot: 25% of cold damage from hits taken as fire damage"] = { "ReflectedFireColdDamageTakenConversionImplicitK5a", }, + ["left ring slot: 25% of fire damage from hits taken as lightning damage"] = { "ReflectedFireLightningDamageTakenConversionImplicitK5b", }, + ["left ring slot: 25% of lightning damage from hits taken as cold damage"] = { "ReflectedColdLightningDamageTakenConversionImplicitK5c", }, + ["left ring slot: 30% reduced duration of ailments on you"] = { "ReflectedAilmentDurationOnSelfImplicitK4", }, + ["left ring slot: 30% reduced effect of curses on you"] = { "ReflectedCurseEffectOnSelfImplicitK2", }, + ["left ring slot: cover enemies in ash for # seconds when you ignite them"] = { "LeftRingCoveredInAshUnique__1_", }, + ["left ring slot: cover enemies in ash for 5 seconds when you ignite them"] = { "LeftRingCoveredInAshUnique__1_", }, + ["left ring slot: minions take #% reduced damage"] = { "ReflectedMinionDamageTakenImplicitK3", }, + ["left ring slot: minions take 15% reduced damage"] = { "ReflectedMinionDamageTakenImplicitK3", }, + ["left ring slot: projectiles from spells cannot chain"] = { "LeftRingSpellProjectilesCannotChainUnique__1", }, + ["left ring slot: projectiles from spells fork"] = { "LeftRingSpellProjectilesForkUnique__1_", }, + ["left ring slot: regenerate # mana per second"] = { "LeftRingSlotFlatManaRegenerationUnique__1", }, + ["left ring slot: regenerate 40 mana per second"] = { "LeftRingSlotFlatManaRegenerationUnique__1", }, + ["left ring slot: you cannot recharge or regenerate energy shield"] = { "LeftRingSlotNoEnergyShieldRegenUniqueRing13", }, + ["left ring slot: your chilling skitterbot's aura applies socketed hex curse instead"] = { "SupportSkitterBotAilmentAuraReplaceWithCurse____1", }, + ["leftmost (#) magic utility flasks constantly apply their flask effects to you"] = { "MagicUtilityFlasksAlwaysApplyUnique__1", }, + ["leftmost (2-4) magic utility flasks constantly apply their flask effects to you"] = { "MagicUtilityFlasksAlwaysApplyUnique__1", }, + ["lethe shade"] = { "KeystoneLetheShadeUnique_1", }, + ["life and mana leech are instant during effect"] = { "LeechInstantDuringFlaskEffect__1", }, + ["life and mana leech from critical strikes are instant"] = { "CriticalStrikesLeechInstantlyUniqueGlovesStr3", }, + ["life flasks gain # charge every # seconds"] = { "LifeFlaskPassiveChargeGainUnique__1_", }, + ["life flasks gain (#) charges every # seconds"] = { "LifeFlaskPassiveChargeGainUnique__2", }, + ["life flasks gain (0-3) charges every 3 seconds"] = { "LifeFlaskPassiveChargeGainUnique__2", }, + ["life flasks gain 1 charge every 3 seconds"] = { "LifeFlaskPassiveChargeGainUnique__1_", }, + ["life flasks used while on low life apply recovery instantly"] = { "LowLifeInstantLifeRecoveryUnique__1", }, + ["life leech effects are not removed when unreserved life is filled"] = { "LifeLeechNotRemovedOnFullLifeUnique__1", }, + ["life leech from exerted attacks is instant"] = { "LifeLeechInstantExertedAttacksUnique__1", }, + ["life leech from hits with this weapon is instant"] = { "LocalLifeLeechIsInstantUniqueClaw3", "VillageLocalLifeLeechIsInstant", }, + ["life recovery from flasks also applies to energy shield during effect"] = { "FlaskEldritchBatteryUnique__1", "FlaskZealotsOathUnique__1", }, + ["life recovery from regeneration is not applied"] = { "LifeRegenerationNotAppliedUnique__1", }, + ["life that would be lost by taking damage is instead reserved"] = { "LifeLossReservesLifeUnique__1", }, + ["light radius is based on energy shield instead of life"] = { "ArcaneVisionUniqueBodyStrInt5", }, + ["lightning damage of enemies hitting you is lucky"] = { "EnemyExtraDamageRollsWithLightningDamageUnique__1", }, + ["lightning damage with non-critical strikes is lucky"] = { "LightningNonCriticalStrikesLuckyUnique__1", }, + ["lightning resistance does not affect lightning damage taken"] = { "LightningResistNoReductionUnique__1_", }, + ["lightning resistance is #%"] = { "LightningResistanceOverrideUnique__1_", }, + ["lightning resistance is 75%"] = { "LightningResistanceOverrideUnique__1_", }, + ["lightning skills have #% chance to poison on hit"] = { "LightningSkillsChanceToPoisonUnique__1_", }, + ["lightning skills have 20% chance to poison on hit"] = { "LightningSkillsChanceToPoisonUnique__1_", }, + ["link skills can target damageable minions"] = { "LinksTargetDamageableMinionsUnique_1", }, + ["link skills have (#)% increased cast speed"] = { "LinkSkillCastSpeedUnique__1", }, + ["link skills have (#)% increased skill effect duration"] = { "LinkSkillEffectDurationUnique__1", }, + ["link skills have (10-15)% increased cast speed"] = { "LinkSkillCastSpeedUnique__1", }, + ["link skills have (10-15)% increased skill effect duration"] = { "LinkSkillEffectDurationUnique__1", }, + ["linked targets always count as in range of non-curse auras from your skills"] = { "AurasOnlyApplyToLinkedTargetUnique__1", }, + ["linked targets cannot die for # seconds after you die"] = { "LinkTargetCannotDieUnique__1", }, + ["linked targets cannot die for 2 seconds after you die"] = { "LinkTargetCannotDieUnique__1", }, + ["lose # life per second"] = { "LifeDegenerationGracePeriodUnique__1", }, + ["lose # mana when you use a skill"] = { "IncreaseGlobalFlatManaCostUnique__3_", }, + ["lose #% life per second per minion"] = { "LifeDegenPerActiveMinionUniqueHelmetInt_1UNUSED", }, + ["lose #% of energy shield on kill"] = { "EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14", }, + ["lose #% of life on kill"] = { "LifeLostOnKillPercentageUniqueCorruptedJewel14", }, + ["lose #% of life per second if you have been hit recently"] = { "LoseLifeIfHitRecentlyUnique__1", }, + ["lose #% of mana per second"] = { "LoseManaPercentPerSecondUnique__1", }, + ["lose #% of mana when you use an attack skill"] = { "LoseManaOnAttackSkillUnique__1", }, + ["lose #% of your energy shield when you block"] = { "LoseEnergyShieldOnBlockUniqueShieldStrInt6", }, + ["lose (#) life per enemy hit with attacks"] = { "LoseLifePerTargetUnique__1", }, + ["lose (#) life per enemy hit with spells"] = { "LoseLifeOnSpellHitUnique__1", }, + ["lose (#) life per enemy killed"] = { "LoseLifePerTargetUnique__2", }, + ["lose (#) mana per second"] = { "LoseManaPerSecondUnique__1", }, + ["lose (#) mana when you use a skill"] = { "IncreaseGlobalFlatManaCostUnique__2", }, + ["lose (#) rage per second"] = { "AdditionalRageLossPerMinute", }, + ["lose (#)% of energy shield when you deal a critical strike"] = { "LoseEnergyShieldPercentOnCritUnique__1", }, + ["lose (#)% of life when you block"] = { "RecoverLifePercentOnBlockUnique__1", }, + ["lose (#)% of life when you deal a critical strike"] = { "LoseLifePercentOnCritUnique__1", }, + ["lose (1-3) rage per second"] = { "AdditionalRageLossPerMinute", }, + ["lose (10-15) life per enemy hit with spells"] = { "LoseLifeOnSpellHitUnique__1", }, + ["lose (10-15)% of energy shield when you deal a critical strike"] = { "LoseEnergyShieldPercentOnCritUnique__1", }, + ["lose (10-15)% of life when you deal a critical strike"] = { "LoseLifePercentOnCritUnique__1", }, + ["lose (10-20) life per enemy killed"] = { "LoseLifePerTargetUnique__2", }, + ["lose (20-25) life per enemy hit with attacks"] = { "LoseLifePerTargetUnique__1", }, + ["lose (3-5)% of life when you block"] = { "RecoverLifePercentOnBlockUnique__1", }, + ["lose (30-40) mana per second"] = { "LoseManaPerSecondUnique__1", }, + ["lose (40-80) mana when you use a skill"] = { "IncreaseGlobalFlatManaCostUnique__2", }, + ["lose 0.3% life per second per minion"] = { "LifeDegenPerActiveMinionUniqueHelmetInt_1UNUSED", }, + ["lose 1% of energy shield on kill"] = { "EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14", }, + ["lose 1% of life on kill"] = { "LifeLostOnKillPercentageUniqueCorruptedJewel14", }, + ["lose 10% of your energy shield when you block"] = { "LoseEnergyShieldOnBlockUniqueShieldStrInt6", }, + ["lose 2% of life per second if you have been hit recently"] = { "LoseLifeIfHitRecentlyUnique__1", }, + ["lose 3% of mana when you use an attack skill"] = { "LoseManaOnAttackSkillUnique__1", }, + ["lose 40 mana when you use a skill"] = { "IncreaseGlobalFlatManaCostUnique__3_", }, + ["lose 500 life per second"] = { "LifeDegenerationGracePeriodUnique__1", }, + ["lose 7% of mana per second"] = { "LoseManaPercentPerSecondUnique__1", }, + ["lose a frenzy charge each second"] = { "GainFrenzyChargeEverySecondUnique__1", }, + ["lose a power charge each second"] = { "GainPowerChargeEverySecondUnique__1", }, + ["lose a power charge each second if you have not detonated mines recently"] = { "LosePowerChargeIfNotDetonatedRecentlyUnique__1", }, + ["lose a power charge when hit"] = { "LosePowerChargeWhenHitUnique__1", }, + ["lose adrenaline when you cease to be flame-touched"] = { "LoseAdrenalineFireTouchedLossUnique__1", }, + ["lose all eaten souls when you use a flask"] = { "BeltSoulsRemovedOnFlaskUse__1", }, + ["lose all endurance charges when rampage ends"] = { "LoseEnduranceChargesOnRampageEndUnique___1", }, + ["lose all frenzy charges on reaching maximum frenzy charges to make the next bow attack you perform fire that many additional arrows"] = { "BowAttacksFrenzyChargesArrowsUnique__1", }, + ["lose all power charges on critical strike"] = { "ConsumeAllPowerChargesOnCritUniqueRing17", }, + ["lose all power charges on reaching maximum power charges"] = { "LosePowerChargesOnMaxPowerChargesUnique__1", "LosePowerChargesOnMaxPowerChargesUnique__2", }, + ["lose all power charges when you block"] = { "LosePowerChargesOnBlockUnique__1", }, + ["lose an endurance charge each second"] = { "GainEnduranceChargeEverySecondUnique__1", }, + ["lose no experience when you die because a linked target died"] = { "LinkLoseNoExperienceUnique__1", }, + ["loses all charges when you enter a new area"] = { "FlaskLoseChargesOnNewAreaUnique__1", }, + ["magebane"] = { "KeystoneMagebaneUnique_1", }, + ["magic utility flask effects cannot be removed"] = { "MagicUtilityFlasksCannotRemoveUnique__1", }, + ["magic utility flasks cannot be used"] = { "MagicUtilityFlasksCannotUseUnique__1____", }, + ["malevolence has no reservation"] = { "MalevolenceNoReservationUnique__1", }, + ["mana flask effects are not removed when unreserved mana is filled"] = { "ManaFlaskEffectsAreNotRemovedAtFullManaUnique__1", }, + ["mana flasks gain (#) charges every # seconds"] = { "ManaFlaskPassiveChargeGainUnique__1", }, + ["mana flasks gain (0-3) charges every 3 seconds"] = { "ManaFlaskPassiveChargeGainUnique__1", }, + ["mana flasks used while on low mana apply recovery instantly"] = { "LowManaInstantManaRecoveryUnique__1", }, + ["mana leech from hits with this weapon is instant"] = { "VillageLocalManaLeechIsInstant", }, + ["mana reservation of herald skills is always #%"] = { "HeraldsAlwaysCost45Unique__1", }, + ["mana reservation of herald skills is always 45%"] = { "HeraldsAlwaysCost45Unique__1", }, + ["mark skills have (#)% increased cast speed"] = { "MarkCastSpeedUnique__1", }, + ["mark skills have (10-15)% increased cast speed"] = { "MarkCastSpeedUnique__1", }, + ["maximum # fragile regrowth"] = { "FragileRegrowthLifeRegenerationUnique__1", "FragileRegrowthLifeRegenerationUnique__2_", }, + ["maximum # remembrance"] = { "MaximumRemembranceUnique_1", }, + ["maximum (#) spectral totems"] = { "GhostTotemLimitUnique__1", }, + ["maximum (3-5) spectral totems"] = { "GhostTotemLimitUnique__1", }, + ["maximum 10 fragile regrowth"] = { "FragileRegrowthLifeRegenerationUnique__1", }, + ["maximum 10 remembrance"] = { "MaximumRemembranceUnique_1", }, + ["maximum 5 fragile regrowth"] = { "FragileRegrowthLifeRegenerationUnique__2_", }, + ["maximum absorption charges is equal to maximum power charges"] = { "MaximumAbsorptionChargesEqualsPowerUnique__1_", }, + ["maximum affliction charges is equal to maximum frenzy charges"] = { "MaximumAfflictionChargesEqualsFrenzyUnique__1", }, + ["maximum brutal charges is equal to maximum endurance charges"] = { "MaximumBrutalChargesEqualsEnduranceUnique__1__", }, + ["maximum critical strike chance is #%"] = { "MaximumCritChanceIs50Unique__1", }, + ["maximum critical strike chance is 50%"] = { "MaximumCritChanceIs50Unique__1", }, + ["maximum endurance, frenzy and power charges is #"] = { "MaximumEnduranceFrenzyPowerChargesIs0Unique__1", }, + ["maximum endurance, frenzy and power charges is 0"] = { "MaximumEnduranceFrenzyPowerChargesIs0Unique__1", }, + ["maximum number of animated weapons is doubled"] = { "DoubleMinionLimitsUnique_1", }, + ["maximum quality is #%"] = { "MaximumQualityOverrideUnique__1", }, + ["maximum quality is 200%"] = { "MaximumQualityOverrideUnique__1", }, + ["maximum rage is halved"] = { "MaximumRageHalvedUnique_1", }, + ["maximum recovery per energy shield leech is doubled"] = { "MaximumESLeechAmountDoubledUnique__1", }, + ["melee and melee weapon type modifiers in radius are transformed to bow modifiers"] = { "UniqueJewelMeleeToBow", }, + ["melee attacks have (#)% chance to cause bleeding"] = { "BleedOnMeleeHitChanceUnique__1", }, + ["melee attacks have (#)% chance to poison on hit"] = { "PoisonOnMeleeHitUnique__1", }, + ["melee attacks have (20-40)% chance to poison on hit"] = { "PoisonOnMeleeHitUnique__1", }, + ["melee attacks have (30-50)% chance to cause bleeding"] = { "BleedOnMeleeHitChanceUnique__1", }, + ["melee attacks have +(#)% to critical strike chance against excommunicated enemies"] = { "MeleeCritChanceAgainstExcommunicatedUnique__1", }, + ["melee attacks have +(0.8-1.6)% to critical strike chance against excommunicated enemies"] = { "MeleeCritChanceAgainstExcommunicatedUnique__1", }, + ["melee critical strikes poison the enemy"] = { "CausesPoisonOnCritUnique__1", }, + ["melee hits count as rampage kills"] = { "SimulatedRampageUnique__1", }, + ["melee hits fortify"] = { "VillageFortifyOnMeleeHit", }, + ["melee hits fortify if # warlord items are equipped"] = { "FortifyOnMeleeHit6WarlordItemsUnique__1", }, + ["melee hits fortify if 6 warlord items are equipped"] = { "FortifyOnMeleeHit6WarlordItemsUnique__1", }, + ["melee hits from strike skills fortify"] = { "StrikeSkillsFortifyOnHitUnique__1", }, + ["melee hits have #% chance to fortify"] = { "FortifyOnMeleeHitUniqueJewel22", }, + ["melee hits have 10% chance to fortify"] = { "FortifyOnMeleeHitUniqueJewel22", }, + ["melee hits which stun fortify"] = { "FortifyOnMeleeStunUnique__1", }, + ["melee hits with strike skills always knockback"] = { "StrikeSkillKnockbackUnique__1", }, + ["melee strike skills deal splash damage to surrounding targets"] = { "MeleeSplashUnique__1", "TinctureMeleeSplashOnWeaponHitUnique__1", "VillageMeleeSplash", }, + ["melee weapon attacks have culling strike"] = { "TinctureCullingStrikeUnique__1", }, + ["melee weapon damage penetrates #% elemental resistances per mana burn, up to a maximum of #%"] = { "TincturePenetrationPerToxicityUnique__1", }, + ["melee weapon damage penetrates 1% elemental resistances per mana burn, up to a maximum of 200%"] = { "TincturePenetrationPerToxicityUnique__1", }, + ["melee weapon hits inflict (#) withered debuffs for # seconds"] = { "TinctureApplyWitherStacksOnHitUnique__1", }, + ["melee weapon hits inflict (2-3) withered debuffs for 2 seconds"] = { "TinctureApplyWitherStacksOnHitUnique__1", }, + ["mercury footprints"] = { "ItemSilverFootstepsUniqueHelmetStrDex2", }, + ["mind over matter"] = { "KeystoneMindOverMatterUnique__1", "ManaShield", }, + ["mines can be detonated an additional time"] = { "MinesMultipleDetonationUniqueStaff11", }, + ["mines have (#)% increased detonation speed"] = { "RemoteMineArmingSpeedUnique__1", }, + ["mines have (40-50)% increased detonation speed"] = { "RemoteMineArmingSpeedUnique__1", }, + ["minion instability"] = { "KeystoneMinionInstabilityUnique__1", }, + ["minion life is increased by their overcapped fire resistance"] = { "MinionLifeIncreasedByOvercappedFireResistanceUnique__1", }, + ["minions are aggressive"] = { "MinionLargerAggroRadiusUnique__1", }, + ["minions can hear the whispers for # seconds after they deal a critical strike"] = { "MinionsCrazyOnCritUnique__1__", }, + ["minions can hear the whispers for 5 seconds after they deal a critical strike"] = { "MinionsCrazyOnCritUnique__1__", }, + ["minions cannot be blinded"] = { "MinionBlindImmunityUnique__1", }, + ["minions convert #% of physical damage to chaos damage per white socket"] = { "MinionPhysicalToChaosPerWhiteSocket", }, + ["minions convert #% of physical damage to cold damage"] = { "MinionPhysicalConvertToColdUnique__1", }, + ["minions convert #% of physical damage to cold damage per green socket"] = { "MinionPhysicalToColdPerGreenSocket_", }, + ["minions convert #% of physical damage to fire damage per red socket"] = { "MinionPhysicalToFirePerRedSocket", }, + ["minions convert #% of physical damage to lightning damage per blue socket"] = { "MinionPhysicalToLightningPerBlueSocket", }, + ["minions convert #% of their maximum life to maximum energy"] = { "MinionLifeConvertedToEnergyShieldUnique__1", }, + ["minions convert 2% of their maximum life to maximum energy"] = { "MinionLifeConvertedToEnergyShieldUnique__1", }, + ["minions convert 25% of physical damage to chaos damage per white socket"] = { "MinionPhysicalToChaosPerWhiteSocket", }, + ["minions convert 25% of physical damage to cold damage per green socket"] = { "MinionPhysicalToColdPerGreenSocket_", }, + ["minions convert 25% of physical damage to fire damage per red socket"] = { "MinionPhysicalToFirePerRedSocket", }, + ["minions convert 25% of physical damage to lightning damage per blue socket"] = { "MinionPhysicalToLightningPerBlueSocket", }, + ["minions convert 50% of physical damage to cold damage"] = { "MinionPhysicalConvertToColdUnique__1", }, + ["minions deal #% increased damage"] = { "MinionDamageUniqueBodyInt9", }, + ["minions deal #% increased damage if you've hit recently"] = { "IncreasedMinionDamageIfYouHitEnemyUnique__1", }, + ["minions deal #% increased damage per # dexterity"] = { "IncreasedMinionDamagePerDexterityUniqueBow12", }, + ["minions deal (#) to (#) additional attack physical damage"] = { "AddedPhysicalToMinionAttacksUnique__1", }, + ["minions deal (#) to (#) additional cold damage"] = { "MinionAddedColdDamageUnique__1", }, + ["minions deal (#) to (#) additional physical damage"] = { "MinionAddedPhysicalDamageUnique__1", }, + ["minions deal (#)% increased damage"] = { "MinionDamageImplicitHelmet1", "MinionDamageImplicitShield1", "MinionDamageImplicitWand1", "MinionDamageImplicitWand2", "MinionDamageImplicitWand3", "MinionDamageUnique4", "MinionDamageUniqueAmulet3", "MinionDamageUniqueJewel1", "MinionDamageUniqueQuiver_1", "MinionDamageUniqueTwoHandSword4", "MinionDamageUniqueWand2", "MinionDamageUnique__1", "MinionDamageUnique__2", "MinionDamageUnique__3_", "MinionDamageUnique__5", "MinionDamageUnique__6", "MinionDamageUnique__7", "MinionDamageUnique__8_", "MinionDamageUnique__9", "VillageMinionDamageOnTwoHandWeapon1", "VillageMinionDamageOnTwoHandWeapon2", "VillageMinionDamageOnTwoHandWeapon3", "VillageMinionDamageOnWeapon1", "VillageMinionDamageOnWeapon2", "VillageMinionDamageOnWeapon3", }, + ["minions deal (#)% increased damage if you've hit recently"] = { "VillageIncreasedMinionDamageIfYouHitEnemy", }, + ["minions deal (10-15)% increased damage"] = { "MinionDamageUnique4", "MinionDamageUniqueAmulet3", }, + ["minions deal (10-19)% increased damage"] = { "VillageMinionDamageOnWeapon1", }, + ["minions deal (113-157)% increased damage"] = { "MinionDamageUnique__9", }, + ["minions deal (12-16)% increased damage"] = { "MinionDamageImplicitWand3", }, + ["minions deal (15-20)% increased damage"] = { "MinionDamageImplicitHelmet1", }, + ["minions deal (15-29)% increased damage"] = { "VillageMinionDamageOnTwoHandWeapon1", }, + ["minions deal (20-24)% increased damage"] = { "MinionDamageImplicitWand2", }, + ["minions deal (20-29)% increased damage"] = { "VillageMinionDamageOnWeapon2", }, + ["minions deal (20-30)% increased damage"] = { "MinionDamageUnique__2", }, + ["minions deal (20-30)% increased damage if you've hit recently"] = { "VillageIncreasedMinionDamageIfYouHitEnemy", }, + ["minions deal (25-35) to (50-65) additional cold damage"] = { "MinionAddedColdDamageUnique__1", }, + ["minions deal (26-30)% increased damage"] = { "MinionDamageImplicitWand1", }, + ["minions deal (30-39)% increased damage"] = { "VillageMinionDamageOnWeapon3", }, + ["minions deal (30-40)% increased damage"] = { "MinionDamageUniqueTwoHandSword4", "MinionDamageUnique__5", }, + ["minions deal (30-44)% increased damage"] = { "VillageMinionDamageOnTwoHandWeapon2", }, + ["minions deal (30-50)% increased damage"] = { "MinionDamageUniqueQuiver_1", }, + ["minions deal (35-45)% increased damage"] = { "MinionDamageUnique__6", }, + ["minions deal (40-60)% increased damage"] = { "MinionDamageUnique__8_", }, + ["minions deal (45-59)% increased damage"] = { "VillageMinionDamageOnTwoHandWeapon3", }, + ["minions deal (5-10)% increased damage"] = { "MinionDamageImplicitShield1", }, + ["minions deal (5-8) to (12-16) additional attack physical damage"] = { "AddedPhysicalToMinionAttacksUnique__1", }, + ["minions deal (50-70)% increased damage"] = { "MinionDamageUniqueWand2", }, + ["minions deal (60-80)% increased damage"] = { "MinionDamageUnique__3_", "MinionDamageUnique__7", }, + ["minions deal (8-12)% increased damage"] = { "MinionDamageUniqueJewel1", "MinionDamageUnique__1", }, + ["minions deal (90-102) to (132-156) additional physical damage"] = { "MinionAddedPhysicalDamageUnique__1", }, + ["minions deal 15% increased damage"] = { "MinionDamageUniqueBodyInt9", }, + ["minions deal 2% increased damage per 5 dexterity"] = { "IncreasedMinionDamagePerDexterityUniqueBow12", }, + ["minions deal 70% increased damage if you've hit recently"] = { "IncreasedMinionDamageIfYouHitEnemyUnique__1", }, + ["minions deal no non-cold damage"] = { "MinionOnlyDealColdDamageUnique__1", }, + ["minions gain #% of physical damage as extra cold damage"] = { "MinionPhysicalDamageAddedAsColdUnique__1_", }, + ["minions gain #% of physical damage as extra fire damage"] = { "MinionPhysicalDamageAddedAsFireUnique__1", }, + ["minions gain (#)% of elemental damage as extra chaos damage"] = { "MinionElementalDamageAddedAsChaosUnique__1", }, + ["minions gain (#)% of physical damage as extra chaos damage"] = { "MinionPhysicalDamageAsChaosUnique__1", }, + ["minions gain (15-20)% of elemental damage as extra chaos damage"] = { "MinionElementalDamageAddedAsChaosUnique__1", }, + ["minions gain (59-83)% of physical damage as extra chaos damage"] = { "MinionPhysicalDamageAsChaosUnique__1", }, + ["minions gain 20% of physical damage as extra cold damage"] = { "MinionPhysicalDamageAddedAsColdUnique__1_", }, + ["minions gain 20% of physical damage as extra fire damage"] = { "MinionPhysicalDamageAddedAsFireUnique__1", }, + ["minions gain added resistances equal to #% of your resistances"] = { "MinionsGainPercentOfYourResistancesUnique_1", }, + ["minions gain added resistances equal to 50% of your resistances"] = { "MinionsGainPercentOfYourResistancesUnique_1", }, + ["minions gain unholy might for # seconds on kill"] = { "MinionUnholyMightOnKillUniqueBodyInt9", }, + ["minions gain unholy might for 10 seconds on kill"] = { "MinionUnholyMightOnKillUniqueBodyInt9", }, + ["minions have #% chance to blind enemies on hit"] = { "MinionChanceToBlindOnHitUnique__1", }, + ["minions have #% chance to deal double damage per fortification on you"] = { "MinionDoubleDamageChancePerFortificationUnique__1", }, + ["minions have #% chance to inflict withered on hit"] = { "MinionWitherOnHitUnique__1", }, + ["minions have #% chance to maim enemies on hit with attacks"] = { "MinionChanceToMaimOnHitUnique__1_", }, + ["minions have #% chance to poison enemies on hit"] = { "MinionsPoisonEnemiesOnHitUnique__1", "MinionsPoisonEnemiesOnHitUnique__2", }, + ["minions have #% chance to taunt on hit with attacks"] = { "MinionAttacksTauntOnHitChanceUnique__1", }, + ["minions have #% increased area of effect"] = { "MinonAreaOfEffectUniqueRing33", }, + ["minions have #% increased critical strike chance per maximum power charge you have"] = { "MinionCriticalStrikeChanceMaximumPowerChargeUnique__1", }, + ["minions have #% increased maximum life"] = { "MinionLifeUniqueRing33", }, + ["minions have #% reduced maximum life"] = { "MinionLifeUniqueBodyInt9", "MinionLifeUnique__4__", }, + ["minions have #% reduced movement speed"] = { "MinionRunSpeedUnique__1", }, + ["minions have (#)% chance to freeze, shock and ignite"] = { "MinionChanceToFreezeShockIgnite", }, + ["minions have (#)% faster start of energy shield recharge"] = { "MinionEnergyShieldRechargeDelayUnique__1", }, + ["minions have (#)% increased area of effect"] = { "MinionAreaOfEffectUnique__1", }, + ["minions have (#)% increased attack speed"] = { "IncreasedMinionAttackSpeedUnique__1_", "MinionAttackAndCastSpeedUnique__1", "MinionAttackSpeedUnique_1", }, + ["minions have (#)% increased flask effect duration"] = { "MinionFlaskDurationUnique__1", }, + ["minions have (#)% increased maximum life"] = { "JewelImplicitMinionLife___", "MinionLifeUniqueAmulet3", "MinionLifeUniqueJewel18", "MinionLifeUniqueTwoHandMace5", "MinionLifeUniqueTwoHandSword4", "MinionLifeUnique__1", "MinionLifeUnique__2", "MinionLifeUnique__3_", }, + ["minions have (#)% increased movement speed"] = { "MinionMovementSpeedUnique_1", "MinionRunSpeedUniqueAmulet3", "MinionRunSpeedUniqueJewel16", "MinionRunSpeedUniqueWand2", "MinionRunSpeedUnique__2", "MinionRunSpeedUnique__3", "MinionRunSpeedUnique__4", "MinionRunSpeedUnique__5", "MinionRunSpeedUnique__6", }, + ["minions have (#)% reduced flask charges used"] = { "MinionFlaskChargesUsedUnique__1", }, + ["minions have (#)% reduced maximum life"] = { "MinionLifeUnique__5_", }, + ["minions have (10-15)% increased attack speed"] = { "IncreasedMinionAttackSpeedUnique__1_", }, + ["minions have (10-15)% increased maximum life"] = { "MinionLifeUniqueAmulet3", }, + ["minions have (10-15)% increased movement speed"] = { "MinionRunSpeedUniqueAmulet3", }, + ["minions have (10-20)% increased maximum life"] = { "MinionLifeUnique__2", }, + ["minions have (10-20)% increased movement speed"] = { "MinionRunSpeedUnique__4", }, + ["minions have (12-16)% increased attack speed"] = { "MinionAttackAndCastSpeedUnique__1", }, + ["minions have (15-25)% increased movement speed"] = { "MinionRunSpeedUnique__6", }, + ["minions have (20-30)% increased maximum life"] = { "MinionLifeUnique__1", "MinionLifeUnique__3_", }, + ["minions have (20-30)% increased movement speed"] = { "MinionMovementSpeedUnique_1", "MinionRunSpeedUniqueWand2", }, + ["minions have (20-40)% increased maximum life"] = { "MinionLifeUniqueTwoHandMace5", }, + ["minions have (20-40)% reduced maximum life"] = { "MinionLifeUnique__5_", }, + ["minions have (25-40)% reduced flask charges used"] = { "MinionFlaskChargesUsedUnique__1", }, + ["minions have (25-45)% increased movement speed"] = { "MinionRunSpeedUnique__3", }, + ["minions have (3-5)% increased maximum life"] = { "JewelImplicitMinionLife___", }, + ["minions have (30-40)% increased maximum life"] = { "MinionLifeUniqueTwoHandSword4", }, + ["minions have (40-50)% increased movement speed"] = { "MinionRunSpeedUnique__5", }, + ["minions have (5-10)% chance to freeze, shock and ignite"] = { "MinionChanceToFreezeShockIgnite", }, + ["minions have (5-10)% increased movement speed"] = { "MinionRunSpeedUniqueJewel16", }, + ["minions have (5-15)% increased maximum life"] = { "MinionLifeUniqueJewel18", }, + ["minions have (50-100)% faster start of energy shield recharge"] = { "MinionEnergyShieldRechargeDelayUnique__1", }, + ["minions have (50-80)% increased flask effect duration"] = { "MinionFlaskDurationUnique__1", }, + ["minions have (6-12)% increased attack speed"] = { "MinionAttackSpeedUnique_1", }, + ["minions have (6-8)% increased area of effect"] = { "MinionAreaOfEffectUnique__1", }, + ["minions have (80-100)% increased movement speed"] = { "MinionRunSpeedUnique__2", }, + ["minions have +# to accuracy rating per # devotion"] = { "MinionAccuracyRatingPerDevotion_", }, + ["minions have +#% chance to block attack damage"] = { "MinionAttackBlockChanceUnique__2", "MinionBlockChanceUniqueHelmetStrDex5", }, + ["minions have +#% chance to block spell damage"] = { "MinionSpellBlockChanceUnique__2", }, + ["minions have +#% to chaos resistance"] = { "MinionChaosResistanceUnique__2__", "MinionChaosResistanceUnique___1", }, + ["minions have +#% to cold resistance"] = { "MinionColdResistUnique__1", }, + ["minions have +#% to critical strike multiplier per grand spectrum"] = { "MinionCriticalStrikeMultiplierPerStackableJewelUnique__1", }, + ["minions have +#% to critical strike multiplier per withered debuff on enemy"] = { "MinionCriticalStrikeMultiplierAgainstWitheredUnique__1", }, + ["minions have +#% to damage over time multiplier per"] = { "MinionDamageOverTimeMultiplierPerMinionAbyssJewelUnique__1", }, + ["minions have +#% to fire resistance"] = { "MinionFireResistUnique__1", }, + ["minions have +(#) to armour"] = { "MinionArmourUniqueHelmetStrDex5", }, + ["minions have +(#)% chance to block attack damage"] = { "MinionAttackBlockChanceUnique__1", }, + ["minions have +(#)% chance to block spell damage"] = { "MinionSpellBlockChanceUnique__1_", }, + ["minions have +(#)% chance to suppress spell damage"] = { "MinionAttackDodgeChanceUnique__1", "MinionDodgeChanceUniqueJewel16", "MinionDodgeChanceUnique__1", "MinionSpellDodgeChanceUnique__1_", "MinionSuppressSpellChanceUnique__1", }, + ["minions have +(#)% to all elemental resistances"] = { "MinionElementalResistanceImplicitRing1", "MinionElementalResistancesUnique__1", }, + ["minions have +(#)% to chaos resistance"] = { "MinionChaosResistanceUnique__3", }, + ["minions have +(-17-17)% to chaos resistance"] = { "MinionChaosResistanceUnique__3", }, + ["minions have +(10-12)% chance to block attack damage"] = { "MinionAttackBlockChanceUnique__1", }, + ["minions have +(10-12)% chance to block spell damage"] = { "MinionSpellBlockChanceUnique__1_", }, + ["minions have +(10-12)% chance to suppress spell damage"] = { "MinionAttackDodgeChanceUnique__1", "MinionSpellDodgeChanceUnique__1_", }, + ["minions have +(10-15)% to all elemental resistances"] = { "MinionElementalResistanceImplicitRing1", }, + ["minions have +(12-15)% chance to suppress spell damage"] = { "MinionDodgeChanceUnique__1", }, + ["minions have +(2-5)% chance to suppress spell damage"] = { "MinionDodgeChanceUniqueJewel16", }, + ["minions have +(20-24)% chance to suppress spell damage"] = { "MinionSuppressSpellChanceUnique__1", }, + ["minions have +(300-350) to armour"] = { "MinionArmourUniqueHelmetStrDex5", }, + ["minions have +(7-10)% to all elemental resistances"] = { "MinionElementalResistancesUnique__1", }, + ["minions have +10% chance to block attack damage"] = { "MinionBlockChanceUniqueHelmetStrDex5", }, + ["minions have +10% to critical strike multiplier per grand spectrum"] = { "MinionCriticalStrikeMultiplierPerStackableJewelUnique__1", }, + ["minions have +25% chance to block attack damage"] = { "MinionAttackBlockChanceUnique__2", }, + ["minions have +25% chance to block spell damage"] = { "MinionSpellBlockChanceUnique__2", }, + ["minions have +29% to chaos resistance"] = { "MinionChaosResistanceUnique__2__", "MinionChaosResistanceUnique___1", }, + ["minions have +40% to cold resistance"] = { "MinionColdResistUnique__1", }, + ["minions have +40% to fire resistance"] = { "MinionFireResistUnique__1", }, + ["minions have +5% to critical strike multiplier per withered debuff on enemy"] = { "MinionCriticalStrikeMultiplierAgainstWitheredUnique__1", }, + ["minions have +6% to damage over time multiplier per"] = { "MinionDamageOverTimeMultiplierPerMinionAbyssJewelUnique__1", }, + ["minions have +60 to accuracy rating per 10 devotion"] = { "MinionAccuracyRatingPerDevotion_", }, + ["minions have 1% chance to deal double damage per fortification on you"] = { "MinionDoubleDamageChancePerFortificationUnique__1", }, + ["minions have 10% increased area of effect"] = { "MinonAreaOfEffectUniqueRing33", }, + ["minions have 10% reduced maximum life"] = { "MinionLifeUnique__4__", }, + ["minions have 10% reduced movement speed"] = { "MinionRunSpeedUnique__1", }, + ["minions have 15% chance to blind enemies on hit"] = { "MinionChanceToBlindOnHitUnique__1", }, + ["minions have 15% increased maximum life"] = { "MinionLifeUniqueRing33", }, + ["minions have 20% reduced maximum life"] = { "MinionLifeUniqueBodyInt9", }, + ["minions have 5% chance to maim enemies on hit with attacks"] = { "MinionChanceToMaimOnHitUnique__1_", }, + ["minions have 5% chance to taunt on hit with attacks"] = { "MinionAttacksTauntOnHitChanceUnique__1", }, + ["minions have 50% increased critical strike chance per maximum power charge you have"] = { "MinionCriticalStrikeChanceMaximumPowerChargeUnique__1", }, + ["minions have 60% chance to inflict withered on hit"] = { "MinionWitherOnHitUnique__1", }, + ["minions have 60% chance to poison enemies on hit"] = { "MinionsPoisonEnemiesOnHitUnique__1", "MinionsPoisonEnemiesOnHitUnique__2", }, + ["minions have the same maximum number of endurance, frenzy and power charges as you"] = { "MinionsHaveChargesYouHaveUnique__1", }, + ["minions leech #% of damage as life against poisoned enemies"] = { "MinionLeechOnPoisonedEnemiesUnique__1", }, + ["minions leech 5% of damage as life against poisoned enemies"] = { "MinionLeechOnPoisonedEnemiesUnique__1", }, + ["minions recover #% of life on killing a poisoned enemy"] = { "MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_", }, + ["minions recover #% of their life when they block"] = { "MinionLifeRecoveryOnBlockUniqueJewel18", "MinionLifeRecoveryOnBlockUnique__1", }, + ["minions recover 10% of life on killing a poisoned enemy"] = { "MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_", }, + ["minions recover 10% of their life when they block"] = { "MinionLifeRecoveryOnBlockUnique__1", }, + ["minions recover 2% of their life when they block"] = { "MinionLifeRecoveryOnBlockUniqueJewel18", }, + ["minions regenerate #% of life per second"] = { "MinionLifeRegenerationUniqueHelmetStrDex5", "MinionLifeRegenerationUnique__1", }, + ["minions regenerate (#)% of life per second"] = { "MinionLifeRegenerationPerRagingSpirit__1", }, + ["minions regenerate (1.5-2.5)% of life per second"] = { "MinionLifeRegenerationPerRagingSpirit__1", }, + ["minions regenerate 1% of life per second"] = { "MinionLifeRegenerationUnique__1", }, + ["minions regenerate 2% of life per second"] = { "MinionLifeRegenerationUniqueHelmetStrDex5", }, + ["minions' base attack critical strike chance is equal to the critical"] = { "MinionsUseMainHandBaseCritUnique__1", }, + ["minions' hits can only kill ignited enemies"] = { "MinionHitsOnlyKillIgnitedEnemiesUnique__1", }, + ["misty footprints"] = { "MistyFootprintsUnique", }, + ["modifiers to attributes instead apply to omniscience"] = { "AttributeModifiersAscendanceUnique__1_", }, + ["modifiers to chance to avoid being shocked apply to all elemental ailments"] = { "ShockAvoidanceAllElementalAilmentsUnique__1", }, + ["modifiers to chance to suppress spell damage also apply to chance to avoid elemental ailments at #% of their value"] = { "ModifiersToSuppressionApplyToAilmentAvoidUnique__1", }, + ["modifiers to chance to suppress spell damage also apply to chance to avoid elemental ailments at 50% of their value"] = { "ModifiersToSuppressionApplyToAilmentAvoidUnique__1", }, + ["modifiers to claw attack speed also apply to unarmed attack speed with melee skills"] = { "ClawAttackSpeedModsAlsoAffectUnarmed__1", }, + ["modifiers to claw critical strike chance also apply to unarmed critical strike chance with melee skills"] = { "ClawCritModsAlsoAffectUnarmed__1", }, + ["modifiers to claw damage also apply to unarmed attack damage with melee skills"] = { "ClawDamageModsAlsoAffectUnarmedUnique__1", }, + ["modifiers to ignite duration on you apply to all elemental ailments"] = { "SelfIgniteDurationAllElementalAilmentsUnique__1", }, + ["modifiers to minimum endurance charges instead apply to minimum brutal charges"] = { "MinimumBrutalChargeModifiersEqualsEnduranceUnique__1", }, + ["modifiers to minimum frenzy charges instead apply to minimum affliction charges"] = { "MinimumAfflictionChargeModifiersEqualsFrenzyUnique__1", }, + ["modifiers to minimum power charges instead apply to minimum absorption charges"] = { "MinimumAbsorptionChargeModifiersEqualsPowerUnique__1", }, + ["modifiers to number of projectiles instead apply"] = { "ProjectileModifiersApplyToSplitsUnique__1", }, + ["monsters cannot block your attacks"] = { "UniqueYourAttacksCannotBeBlocked__1", }, + ["monsters cannot steal your power, frenzy or endurance charges on hit"] = { "UniqueYourChargesCannotBeStolen__1", }, + ["monsters cannot suppress your spells"] = { "UniqueYourSpellsCannotBeSuppressed__1", }, + ["movement attack skills have #% reduced attack speed"] = { "ReducedAttackSpeedOfMovementSkillsUnique__1", }, + ["movement attack skills have 40% reduced attack speed"] = { "ReducedAttackSpeedOfMovementSkillsUnique__1", }, + ["movement skills cost no mana"] = { "MovementSkillsCostNoManaUnique__1", }, + ["movement skills deal no physical damage"] = { "MovementSkillsDealNoPhysicalDamageUnique__1", }, + ["movement speed cannot be modified to below base value"] = { "MovementCannotBeSlowedBelowBaseUnique__1", }, + ["moving while bleeding doesn't cause you to take extra damage"] = { "NoExtraBleedDamageWhileMovingUniqueAmulet25", "NoExtraBleedDamageWhileMovingUnique__1", }, + ["nearby allies gain #% increased damage"] = { "UndyingBreathDamageAuraDisplayUniqueStaff5", }, + ["nearby allies gain #% increased mana regeneration rate"] = { "DisplayManaRegenerationAuaUniqueAmulet21", }, + ["nearby allies gain #% of life regenerated per second"] = { "DisplayLifeRegenerationAuraUniqueAmulet21", }, + ["nearby allies gain 18% increased damage"] = { "UndyingBreathDamageAuraDisplayUniqueStaff5", }, + ["nearby allies gain 4% of life regenerated per second"] = { "DisplayLifeRegenerationAuraUniqueAmulet21", }, + ["nearby allies gain 80% increased mana regeneration rate"] = { "DisplayManaRegenerationAuaUniqueAmulet21", }, + ["nearby allies have #% chance to block attack damage per # strength you have"] = { "BlockPer100StrengthAuraUnique__1___", }, + ["nearby allies have #% increased item rarity"] = { "DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9", }, + ["nearby allies have (#)% increased cast speed per # intelligence you have"] = { "CastSpeedPer100IntelligenceAuraUnique__1", }, + ["nearby allies have (#)% increased defences per # strength you have"] = { "DefencesPer100StrengthAuraUnique__1", }, + ["nearby allies have (2-4)% increased cast speed per 100 intelligence you have"] = { "CastSpeedPer100IntelligenceAuraUnique__1", }, + ["nearby allies have (4-6)% increased defences per 100 strength you have"] = { "DefencesPer100StrengthAuraUnique__1", }, + ["nearby allies have +# fortification"] = { "DisplayNearbyAlliesHaveFortifyTwoHandAxe9", }, + ["nearby allies have +#% to critical strike multiplier"] = { "DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9", }, + ["nearby allies have +(#)% to critical strike multiplier per # dexterity you have"] = { "CriticalMultiplierPer100DexterityAuraUnique__1", }, + ["nearby allies have +(6-8)% to critical strike multiplier per 100 dexterity you have"] = { "CriticalMultiplierPer100DexterityAuraUnique__1", }, + ["nearby allies have +10 fortification"] = { "DisplayNearbyAlliesHaveFortifyTwoHandAxe9", }, + ["nearby allies have +50% to critical strike multiplier"] = { "DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9", }, + ["nearby allies have 1% chance to block attack damage per 100 strength you have"] = { "BlockPer100StrengthAuraUnique__1___", }, + ["nearby allies have 30% increased item rarity"] = { "DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9", }, + ["nearby allies have culling strike"] = { "DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9", }, + ["nearby allies recover #% of your maximum life when you die"] = { "HealAlliesOnDeathUniqueShieldDexInt2", }, + ["nearby allies recover 1% of your maximum life when you die"] = { "HealAlliesOnDeathUniqueShieldDexInt2", }, + ["nearby allies' damage with hits is lucky"] = { "UniqueNearbyAlliesAreLuckyDisplay", }, + ["nearby corpses explode when you warcry, dealing (#)% of their life as physical damage"] = { "WarcryCorpseExplosionUnique__1", }, + ["nearby corpses explode when you warcry, dealing (5-10)% of their life as physical damage"] = { "WarcryCorpseExplosionUnique__1", }, + ["nearby enemies are blinded"] = { "DisplayBlindAuraUnique__1", "NearbyEnemiesAreBlindedUnique__1", "UniqueSpecialCorruptionNearbyEnemiesBlinded", }, + ["nearby enemies are blinded if # redeemer items are equipped"] = { "NearbyEnemiesAreBlinded2RedeemerItemsUnique__1", }, + ["nearby enemies are blinded if 2 redeemer items are equipped"] = { "NearbyEnemiesAreBlinded2RedeemerItemsUnique__1", }, + ["nearby enemies are blinded while physical aegis is not depleted"] = { "NearbyEnemiesAreBlindedPhysicalAegisUnique__1", }, + ["nearby enemies are chilled"] = { "NearbyEnemiesAreChilledUnique__1", }, + ["nearby enemies are covered in ash"] = { "NearbyEnemiesCoveredInAshUnique__1", }, + ["nearby enemies are crushed"] = { "UniqueSpecialCorruptionNearbyEnemiesCrushed", }, + ["nearby enemies are crushed while you have at least # rage"] = { "EnemiesCrushedWithRageUnique__1_", }, + ["nearby enemies are crushed while you have at least 25 rage"] = { "EnemiesCrushedWithRageUnique__1_", }, + ["nearby enemies are hindered, with #% reduced movement speed"] = { "DisplayNearbyEnemiesAreSlowedUnique__1", }, + ["nearby enemies are hindered, with 25% reduced movement speed"] = { "DisplayNearbyEnemiesAreSlowedUnique__1", }, + ["nearby enemies are intimidated"] = { "NearbyEnemiesAreIntimidatedUnique__1", }, + ["nearby enemies are intimidated if # warlord items are equipped"] = { "NearbyEnemiesAreIntimidated2WarlordItemsUnique__1", }, + ["nearby enemies are intimidated if 2 warlord items are equipped"] = { "NearbyEnemiesAreIntimidated2WarlordItemsUnique__1", }, + ["nearby enemies are scorched"] = { "NearbyEnemiesAreScorchedUnique__1", }, + ["nearby enemies are unnerved if # elder items are equipped"] = { "NearbyEnemiesAreUnnerved2ElderItemsUnique__1", }, + ["nearby enemies are unnerved if 2 elder items are equipped"] = { "NearbyEnemiesAreUnnerved2ElderItemsUnique__1", }, + ["nearby enemies convert #% of their physical damage to fire"] = { "NearbyEnemyPhysicalDamageConvertedToFire__1", }, + ["nearby enemies convert 25% of their physical damage to fire"] = { "NearbyEnemyPhysicalDamageConvertedToFire__1", }, + ["nearby enemies grant #% increased flask charges"] = { "NearbyEnemiesGrantIncreasedFlaskChargesUnique__1", }, + ["nearby enemies grant 25% increased flask charges"] = { "NearbyEnemiesGrantIncreasedFlaskChargesUnique__1", }, + ["nearby enemies have #% increased effect of curses on them"] = { "UndyingBreathCurseAuraDisplayUniqueStaff5", }, + ["nearby enemies have #% to all resistances"] = { "NearbyEnemiesHaveReducedAllResistancesUnique__1", }, + ["nearby enemies have -10% to all resistances"] = { "NearbyEnemiesHaveReducedAllResistancesUnique__1", }, + ["nearby enemies have 18% increased effect of curses on them"] = { "UndyingBreathCurseAuraDisplayUniqueStaff5", }, + ["nearby enemies have fire exposure while at maximum rage"] = { "NearbyEnemiesHaveFireExposureWhileAtMaxRageUnique_1", }, + ["nearby enemies have lightning resistance equal to yours"] = { "NearbyEnemyLightningResistanceEqualUnique__1", }, + ["nearby enemies have malediction"] = { "UniqueSpecialCorruptionNearbyEnemiesMalediction", }, + ["nearby enemies killed by anyone count as being killed by you instead"] = { "EnemiesKilledCountAsYoursUnique__1", }, + ["nearby enemies take # lightning damage per second"] = { "LightningDegenAuraUniqueDisplay__1", }, + ["nearby enemies take 50 lightning damage per second"] = { "LightningDegenAuraUniqueDisplay__1", }, + ["nearby enemies' chaos resistance is #"] = { "NearbyEnemyZeroChaosDamageResistanceUnique__1", }, + ["nearby enemies' chaos resistance is 0"] = { "NearbyEnemyZeroChaosDamageResistanceUnique__1", }, + ["nearby stationary enemies gain a grasping vine every # seconds"] = { "NearbyStationaryEnemiesGainVinesUnique__1", }, + ["nearby stationary enemies gain a grasping vine every 0.5 seconds"] = { "NearbyStationaryEnemiesGainVinesUnique__1", }, + ["necrotic footprints"] = { "ItemNecroticFootprintsUnique__1s", }, + ["never deal critical strikes"] = { "CannotCrit", "NearbyEnemiesCannotCritUnique__1", }, + ["no chance to block"] = { "LocalShieldHasNoBlockChanceUnique__1", }, + ["no physical damage"] = { "LocalReducedPhysicalDamagePercentUniqueBow8", "LocalReducedPhysicalDamagePercentUniqueOneHandSword7", "LocalReducedPhysicalDamagePercentUniqueTwoHandSword6", "LocalReducedPhysicalDamagePercentUniqueWand6", "LocalReducedPhysicalDamagePercentUnique__1", "LocalReducedPhysicalDamagePercentUnique__2", "VillageLocalElementalDamageNoPhysical", }, + ["non-aura curses you inflict are not removed from dying enemies"] = { "CursesRemainOnDeathUnique__1_", }, + ["non-aura hexes expire upon reaching #% of base effect"] = { "HexExpiresMaxDoomUnique__1", }, + ["non-aura hexes expire upon reaching 200% of base effect"] = { "HexExpiresMaxDoomUnique__1", }, + ["non-aura hexes gain #% increased effect per second"] = { "DoubleDoomEffectUnique__1", }, + ["non-aura hexes gain 20% increased effect per second"] = { "DoubleDoomEffectUnique__1", }, + ["non-aura vaal skills require #% reduced souls per use during effect"] = { "FlaskVaalSkillCostUnique__1", }, + ["non-aura vaal skills require 25% reduced souls per use during effect"] = { "FlaskVaalSkillCostUnique__1", }, + ["non-channelling skills have # to total mana cost"] = { "ManaCostTotalNonChannelledUnique__1__", }, + ["non-channelling skills have -9 to total mana cost"] = { "ManaCostTotalNonChannelledUnique__1__", }, + ["non-chilled enemies you inflict bleeding on are chilled"] = { "NonChilledEnemiesBleedAndChillUnique__1_", }, + ["non-chilled enemies you poison are chilled"] = { "NonChilledEnemiesPoisonAndChillUnique__1", }, + ["non-critical strikes deal #% less damage"] = { "NonCriticalStrikesLessDamageUnique__1", }, + ["non-critical strikes deal 80% less damage"] = { "NonCriticalStrikesLessDamageUnique__1", }, + ["non-critical strikes deal no damage"] = { "NonCriticalStrikesDealNoDamageUnique__1", "NonCriticalStrikesDealNoDamageUnique__2", }, + ["non-exerted attacks deal no damage"] = { "NonExertedAttacksNoDamageUnique__1", }, + ["non-instant mana recovery from flasks is also recovered as life"] = { "NonInstantManaRecoveryAlsoAffectsLifeUnique__1", }, + ["non-instant warcries ignore their cooldown when used"] = { "NoCooldownWarcriesUnique", }, + ["non-unique utility flasks you use apply to linked targets"] = { "LinkSkillFlaskEffectsUnique__1", }, + ["notable passive skills in radius are transformed to"] = { "NotablesGrantManaCostAndSpellDamageUnique1", "NotablesGrantMinionDamageTakenUnique__1_", "NotablesGrantMinionMovementSpeedUnique__1_", }, + ["nova spells cast at the targeted location instead of around you"] = { "NovaSkillsTargetLocationUnique__1__", }, + ["nova spells have #% less area of effect"] = { "NovaSpellsAreaOfEffectUnique__1", }, + ["nova spells have 20% less area of effect"] = { "NovaSpellsAreaOfEffectUnique__1", }, + ["offering skills have #% reduced duration"] = { "OfferingDurationUnique__1", }, + ["offering skills have 50% reduced duration"] = { "OfferingDurationUnique__1", }, + ["on killing a poisoned enemy, enemies within # metres are poisoned, and you and"] = { "PoisonSpreadAndHealOnPoisonedKillUniqueDagger8", }, + ["on killing a poisoned enemy, enemies within 3 metres are poisoned, and you and"] = { "PoisonSpreadAndHealOnPoisonedKillUniqueDagger8", }, + ["on killing a rare monster, a random linked minion gains its modifiers for # seconds"] = { "LinkedMinionsStealRareModsUnique_1", }, + ["on killing a rare monster, a random linked minion gains its modifiers for 60 seconds"] = { "LinkedMinionsStealRareModsUnique_1", }, + ["on non-channelling attack, set a life flask with greater than #% of maximum charges remaining to #%"] = { "ConsumeLifeFlaskChargesForDoTMultiOnAttackUnique__1", }, + ["on non-channelling attack, set a life flask with greater than 50% of maximum charges remaining to 50%"] = { "ConsumeLifeFlaskChargesForDoTMultiOnAttackUnique__1", }, + ["only affects passives in massive ring"] = { "JewelRingRadiusValuesUnique__2", }, + ["only affects passives in small ring"] = { "JewelRingRadiusValuesUnique__1", }, + ["onslaught"] = { "HasOnslaughtUnique__1", }, + ["pain attunement"] = { "KeystonePainAttunementUnique__1", "PainAttunement", }, + ["passive skills in radius also grant #% increased armour"] = { "UniqueJewelNodeArmourUnique__1", }, + ["passive skills in radius also grant #% increased chaos damage"] = { "UniqueJewelNodeChaosDamageUnique__1", }, + ["passive skills in radius also grant #% increased cold damage"] = { "UniqueJewelNodeColdDamageUnique__1", }, + ["passive skills in radius also grant #% increased energy shield"] = { "UniqueJewelNodeEnergyShieldUnique__1", }, + ["passive skills in radius also grant #% increased evasion rating"] = { "UniqueJewelNodeEvasionUnique__1", }, + ["passive skills in radius also grant #% increased fire damage"] = { "UniqueJewelNodeFireDamageUnique__1", }, + ["passive skills in radius also grant #% increased global critical strike chance"] = { "UniqueJewelNodeCriticalStrikeChanceUnique__1", }, + ["passive skills in radius also grant #% increased lightning damage"] = { "UniqueJewelNodeLightningDamageUnique__1", }, + ["passive skills in radius also grant #% increased physical damage"] = { "UniqueJewelNodePhysicalDamageUnique__1", }, + ["passive skills in radius also grant +# to all attributes"] = { "UniqueJewelNodeAllAttributesUnique__1", }, + ["passive skills in radius also grant +# to maximum life"] = { "UniqueJewelNodeIncreasedLifeUnique__1", }, + ["passive skills in radius also grant +# to maximum mana"] = { "UniqueJewelNodeIncreasedManaUnique__1", }, + ["passive skills in radius also grant +#% to chaos resistance"] = { "UniqueJewelNodeChaosResistUnique__1", }, + ["passive skills in radius also grant +2 to all attributes"] = { "UniqueJewelNodeAllAttributesUnique__1", }, + ["passive skills in radius also grant +4% to chaos resistance"] = { "UniqueJewelNodeChaosResistUnique__1", }, + ["passive skills in radius also grant +5 to maximum life"] = { "UniqueJewelNodeIncreasedLifeUnique__1", }, + ["passive skills in radius also grant +5 to maximum mana"] = { "UniqueJewelNodeIncreasedManaUnique__1", }, + ["passive skills in radius also grant 3% increased energy shield"] = { "UniqueJewelNodeEnergyShieldUnique__1", }, + ["passive skills in radius also grant 5% increased global critical strike chance"] = { "UniqueJewelNodeCriticalStrikeChanceUnique__1", }, + ["passive skills in radius also grant 6% increased chaos damage"] = { "UniqueJewelNodeChaosDamageUnique__1", }, + ["passive skills in radius also grant 6% increased cold damage"] = { "UniqueJewelNodeColdDamageUnique__1", }, + ["passive skills in radius also grant 6% increased fire damage"] = { "UniqueJewelNodeFireDamageUnique__1", }, + ["passive skills in radius also grant 6% increased lightning damage"] = { "UniqueJewelNodeLightningDamageUnique__1", }, + ["passive skills in radius also grant 6% increased physical damage"] = { "UniqueJewelNodePhysicalDamageUnique__1", }, + ["passive skills in radius also grant 7% increased armour"] = { "UniqueJewelNodeArmourUnique__1", }, + ["passive skills in radius also grant 7% increased evasion rating"] = { "UniqueJewelNodeEvasionUnique__1", }, + ["passive skills in radius also grant: #% increased unarmed attack speed with melee skills"] = { "PassivesGrantUnarmedAttackSpeedUnique__1_", }, + ["passive skills in radius also grant: 1% increased unarmed attack speed with melee skills"] = { "PassivesGrantUnarmedAttackSpeedUnique__1_", }, + ["passive skills in radius also grant: traps and mines deal (#) to (#) added physical damage"] = { "PassivesGrantTrapMineAddedPhysicalUnique__1_", }, + ["passive skills in radius also grant: traps and mines deal (2-3) to (4-6) added physical damage"] = { "PassivesGrantTrapMineAddedPhysicalUnique__1_", }, + ["passive skills in radius can be allocated without being connected to your tree"] = { "AllocateDisconnectedPassivesDonutUnique__1", "JewelUniqueAllocateDisconnectedPassives", }, + ["passives granting cold resistance or all elemental resistances in radius"] = { "ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1", "ColdResistConvertedToDodgeChanceScaledJewelUnique__1", }, + ["passives granting fire resistance or all elemental resistances in radius"] = { "FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1", "FireResistConvertedToBlockChanceScaledJewelUnique__1_", }, + ["passives granting lightning resistance or all elemental resistances in radius"] = { "LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1", "LightningResistConvertedToSpellBlockChanceScaledJewelUnique__1", }, + ["passives in radius apply to minions instead of you"] = { "PassivesApplyToMinionsUniqueJewel7", }, + ["penetrate #% elemental resistances per # omniscience"] = { "ElementalPenPerAscendanceUnique__1", }, + ["penetrate #% elemental resistances per abyss jewel affecting you"] = { "ElementalPenetrationPerAbyssalJewelUnique__1", }, + ["penetrate #% elemental resistances per frenzy charge"] = { "ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6", }, + ["penetrate 1% elemental resistances per 15 omniscience"] = { "ElementalPenPerAscendanceUnique__1", }, + ["penetrate 1% elemental resistances per frenzy charge"] = { "ElementalPenetrationPerFrenzyChargeUniqueGlovesStrDex6", }, + ["penetrate 4% elemental resistances per abyss jewel affecting you"] = { "ElementalPenetrationPerAbyssalJewelUnique__1", }, + ["perfect agony"] = { "KeystonePerfectAgonyUnique__1", }, + ["permanently intimidate enemies on block"] = { "EnemiesBlockedAreIntimidatedUnique__1", }, + ["petrified during effect"] = { "LocalFlaskPetrifiedUnique__1", }, + ["phasing"] = { "PhasingUniqueBootsStrDex4", }, + ["physical damage of enemies hitting you is unlucky"] = { "EnemyExtraDamagerollsWithPhysicalDamageUnique_1", }, + ["physical damage taken bypasses energy shield"] = { "PhysicalDamageBypassesEnergyShieldUnique__1", }, + ["point blank"] = { "KeystonePointBlankUnique__1", "KeystonePointBlankUnique__2", "VillagePointBlank", }, + ["poison cursed enemies on hit"] = { "PoisonCursedEnemiesOnHitUnique__1", }, + ["poison you inflict is reflected to you if you have fewer than # poisons on you"] = { "ReflectPoisonsToSelfUnique__1", }, + ["poison you inflict is reflected to you if you have fewer than 100 poisons on you"] = { "ReflectPoisonsToSelfUnique__1", }, + ["poison you inflict with travel skills is reflected to you if you"] = { "TravelSkillsReflectPoisonUnique__1", }, + ["poisoned enemies you kill with hits shatter"] = { "PoisonedEnemiesShatterOnKillUnique__1", }, + ["poisonous hit"] = { "LocalPoisonOnHit", }, + ["poisons on you expire #% slower"] = { "PoisonExpiresSlowerUnique__1", }, + ["poisons on you expire 50% slower"] = { "PoisonExpiresSlowerUnique__1", }, + ["poisons you inflict deal damage (#)% faster"] = { "FasterPoisonDamageUnique__1", }, + ["poisons you inflict deal damage (30-50)% faster"] = { "FasterPoisonDamageUnique__1", }, + ["precise technique"] = { "KeystonePreciseTechniqueUnique__1", }, + ["precision has #% increased mana reservation efficiency"] = { "PrecisionAuraBonusUnique__1", "PrecisionReservationEfficiencyUnique__1", }, + ["precision has 100% increased mana reservation efficiency"] = { "PrecisionAuraBonusUnique__1", "PrecisionReservationEfficiencyUnique__1", }, + ["prevent +(#)% of suppressed spell damage"] = { "SpellDamageSuppressedUnique__1", }, + ["prevent +(4-6)% of suppressed spell damage"] = { "SpellDamageSuppressedUnique__1", }, + ["pride has no reservation"] = { "PrideNoReservationUnique__1", }, + ["primordial"] = { "PrimordialJewelCountUnique__1", "PrimordialJewelCountUnique__2", "PrimordialJewelCountUnique__3", "PrimordialJewelCountUnique__4", }, + ["projectile attack skills have (#)% increased critical strike chance"] = { "ProjectileAttackCriticalStrikeChanceUnique__1", }, + ["projectile attack skills have (40-60)% increased critical strike chance"] = { "ProjectileAttackCriticalStrikeChanceUnique__1", }, + ["projectiles are fired in random directions"] = { "RandomProjectileDirectionUnique__1", }, + ["projectiles cannot collide with enemies in close range"] = { "NearbyEnemiesAvoidProjectilesUnique__1", }, + ["projectiles cannot continue after colliding with targets"] = { "ProjectilesExpireOnHitUniqueWand_1", }, + ["projectiles chain +# times while you have phasing"] = { "ProjectilesChainWhilePhasingUnique__1_", }, + ["projectiles chain +1 times while you have phasing"] = { "ProjectilesChainWhilePhasingUnique__1_", }, + ["projectiles from attacks can fork # additional time"] = { "AttackProjectilesForkExtraTimesUnique__1", }, + ["projectiles from attacks can fork 1 additional time"] = { "AttackProjectilesForkExtraTimesUnique__1", }, + ["projectiles from attacks fork"] = { "AttackProjectilesForkUnique__1", }, + ["projectiles from attacks inflict bleeding on hit while you have a bestial minion"] = { "ProjectileAttacksChanceToBleedBeastialMinionUnique__1_", }, + ["projectiles from attacks maim on hit while you have a bestial minion"] = { "ProjectileAttacksChanceToMaimBeastialMinionUnique__1", }, + ["projectiles from attacks poison on hit while you have a bestial minion"] = { "ProjectileAttacksChanceToPoisonBeastialMinionUnique__1", }, + ["projectiles from spells cannot pierce"] = { "SpellsCannotPierceUnique__1__", }, + ["projectiles gain (#)% of non-chaos damage as extra chaos damage per chain"] = { "ProjectilesGainPercentOfNonChaosAsChaosUnique__1", }, + ["projectiles gain (15-20)% of non-chaos damage as extra chaos damage per chain"] = { "ProjectilesGainPercentOfNonChaosAsChaosUnique__1", }, + ["projectiles have #% chance to be able to chain when colliding with terrain per"] = { "ChainOffTerrainChancePerRangedAbyssJewelUnique__1__", }, + ["projectiles have (#)% chance to freeze"] = { "ProjectileFreezeChanceUniqueDagger6", }, + ["projectiles have (#)% chance to ignite"] = { "ProjectileIgniteChanceUniqueDagger6", }, + ["projectiles have (#)% chance to shock"] = { "ProjectileShockChanceUniqueDagger6", }, + ["projectiles have (15-20)% chance to freeze"] = { "ProjectileFreezeChanceUniqueDagger6", }, + ["projectiles have (15-20)% chance to ignite"] = { "ProjectileIgniteChanceUniqueDagger6", }, + ["projectiles have (15-20)% chance to shock"] = { "ProjectileShockChanceUniqueDagger6", }, + ["projectiles have 4% chance to be able to chain when colliding with terrain per"] = { "ChainOffTerrainChancePerRangedAbyssJewelUnique__1__", }, + ["projectiles pierce # additional targets"] = { "TalismanAdditionalPierce", }, + ["projectiles pierce # additional targets if # hunter items are equipped"] = { "AdditionalPierce2HunterItemsUnique__1", }, + ["projectiles pierce # additional targets while you have phasing"] = { "AdditionalPierceWhilePhasingUnique__1", }, + ["projectiles pierce (#) additional targets"] = { "TalismanPierceChance", }, + ["projectiles pierce (25-35) additional targets"] = { "TalismanPierceChance", }, + ["projectiles pierce 2 additional targets"] = { "TalismanAdditionalPierce", }, + ["projectiles pierce 2 additional targets if 2 hunter items are equipped"] = { "AdditionalPierce2HunterItemsUnique__1", }, + ["projectiles pierce 5 additional targets while you have phasing"] = { "AdditionalPierceWhilePhasingUnique__1", }, + ["projectiles pierce all burning enemies"] = { "AlwaysPierceBurningEnemiesUnique__1", }, + ["projectiles pierce all targets while you have phasing"] = { "PrrojectilesPierceWhilePhasingUnique__1_", }, + ["projectiles pierce an additional target"] = { "AdditionalPierceUniqueJewel__1", "PierceChanceUniqueJewel41", }, + ["projectiles return to you"] = { "ReturningProjectilesUniqueDescentBow1", "ReturningProjectilesUnique__1", }, + ["projectiles that have chained gain (#)% of non-chaos damage as extra chaos damage"] = { "ProjectilesGainPercentOfNonChaosAsChaosUnique__2", }, + ["projectiles that have chained gain (20-35)% of non-chaos damage as extra chaos damage"] = { "ProjectilesGainPercentOfNonChaosAsChaosUnique__2", }, + ["properties are doubled while in a breach"] = { "ItemStatsDoubledInBreachImplicit", }, + ["punishment has no reservation if cast as an aura"] = { "PunishmentReservationCostUnique__1", }, + ["purity of elements has no reservation"] = { "PurityOfElementsNoReservationUnique__1_", }, + ["purity of fire has no reservation"] = { "PurityOfFireNoReservationUnique__1", }, + ["purity of ice has no reservation"] = { "PurityOfIceNoReservationUnique__1_", }, + ["purity of lightning has no reservation"] = { "PurityOfLightningNoReservationUnique__1", }, + ["quality does not increase defences"] = { "HarvestAlternateArmourQualityColdResistance", "HarvestAlternateArmourQualityDexterity", "HarvestAlternateArmourQualityFireResistance", "HarvestAlternateArmourQualityIncreasedLife", "HarvestAlternateArmourQualityIncreasedMana", "HarvestAlternateArmourQualityIntelligence_", "HarvestAlternateArmourQualityLightningResistance", "HarvestAlternateArmourQualityStrength", }, + ["quality does not increase physical damage"] = { "HarvestAlternateWeaponQualityAccuracyRatingIncrease_", "HarvestAlternateWeaponQualityAreaOfEffect_", "HarvestAlternateWeaponQualityElementalDamagePercent", "HarvestAlternateWeaponQualityLocalCriticalStrikeChance__", "HarvestAlternateWeaponQualityLocalIncreasedAttackSpeed", "HarvestAlternateWeaponQualityLocalMeleeWeaponRange_", }, + ["queen's demand can trigger level # flames of judgement"] = { "UniqueStaffTriggerAtziriStormFlameblast__1", }, + ["queen's demand can trigger level # storm of judgement"] = { "UniqueStaffTriggerAtziriStormCall__1____", }, + ["queen's demand can trigger level 20 flames of judgement"] = { "UniqueStaffTriggerAtziriStormFlameblast__1", }, + ["queen's demand can trigger level 20 storm of judgement"] = { "UniqueStaffTriggerAtziriStormCall__1____", }, + ["quicksilver flasks you use also apply to nearby allies"] = { "QuicksilverFlaskAppliesToAlliesUnique__1", }, + ["rage grants spell damage instead of attack damage"] = { "RageCasterStatsUnique__1", }, + ["raise zombie does not require a corpse"] = { "ZombiesNeedNoCorpsesUnique__1", }, + ["raised spectres have (#)% increased critical strike chance"] = { "SpectreCriticalStrikeChanceUnique__1", }, + ["raised spectres have (#)% increased maximum life"] = { "SpectreIncreasedLifeUnique__1", }, + ["raised spectres have (50-100)% increased maximum life"] = { "SpectreIncreasedLifeUnique__1", }, + ["raised spectres have (800-1000)% increased critical strike chance"] = { "SpectreCriticalStrikeChanceUnique__1", }, + ["raised spectres have a base duration of # seconds"] = { "SpectreHaveBaseDurationUnique__1", }, + ["raised spectres have a base duration of 20 seconds"] = { "SpectreHaveBaseDurationUnique__1", }, + ["raised zombies cover enemies in ash on hit"] = { "ZombiesCoverInAshOnHitUnique__1", }, + ["raised zombies deal (#)% more physical damage"] = { "ZombieDamageUniqueSceptre3", }, + ["raised zombies deal (100-125)% more physical damage"] = { "ZombieDamageUniqueSceptre3", }, + ["raised zombies have (#)% increased maximum life"] = { "ZombieIncreasedLifeUnique__1", }, + ["raised zombies have (80-100)% increased maximum life"] = { "ZombieIncreasedLifeUnique__1", }, + ["raised zombies have +# to maximum life"] = { "ZombieLifeUniqueSceptre3", }, + ["raised zombies have +(#)% to all resistances"] = { "ZombieChaosElementalResistsUniqueSceptre3", }, + ["raised zombies have +(25-30)% to all resistances"] = { "ZombieChaosElementalResistsUniqueSceptre3", }, + ["raised zombies have +5000 to maximum life"] = { "ZombieLifeUniqueSceptre3", }, + ["raised zombies have avatar of fire"] = { "ZombiesHaveAvatarOfFireUnique__1", }, + ["raised zombies take (#)% of their maximum life per second as fire damage"] = { "ZombiesTakeFireDamagePerSecondUnique__1_", }, + ["raised zombies take (15-30)% of their maximum life per second as fire damage"] = { "ZombiesTakeFireDamagePerSecondUnique__1_", }, + ["rampage"] = { "SimulatedRampageDexInt6", "SimulatedRampageStrDex5", "SimulatedRampageStrInt2", "SimulatedRampageUnique__2", "SimulatedRampageUnique__3_", }, + ["recharges # charge when you consume an ignited corpse"] = { "GainChargeOnConsumingIgnitedCorpseUnique__1__", }, + ["recharges # charges when you consume an ignited corpse"] = { "GainChargeOnConsumingIgnitedCorpseUnique__2", }, + ["recharges 1 charge when you consume an ignited corpse"] = { "GainChargeOnConsumingIgnitedCorpseUnique__1__", }, + ["recharges 5 charges when you consume an ignited corpse"] = { "GainChargeOnConsumingIgnitedCorpseUnique__2", }, + ["recover # energy shield when your trap is triggered by an enemy"] = { "GainEnergyShieldOnTrapTriggeredUnique__1_", }, + ["recover # life when your trap is triggered by an enemy"] = { "GainLifeOnTrapTriggeredUnique__1", }, + ["recover #% of energy shield on kill"] = { "MaximumEnergyShieldOnKillPercentUnique__2", }, + ["recover #% of life on kill"] = { "MaximumLifeOnKillPercentUnique__1", "MaximumLifeOnKillPercentUnique__4_", "RecoverPercentMaxLifeOnKillUnique__1", "RecoverPercentMaxLifeOnKillUnique__2", "RecoverPercentMaxLifeOnKillUnique__3", }, + ["recover #% of life on rampage"] = { "HealOnRampageUniqueGlovesStrDex5", }, + ["recover #% of life per endurance charge on use"] = { "FlaskLoseAllEnduranceChargesGainLifePerLostChargeUnique1", }, + ["recover #% of life when you consume a corpse"] = { "LifeOnCorpseRemovalUniqueJewel14", }, + ["recover #% of life when you ignite an enemy"] = { "RecoverLifePercentOnIgniteUnique__1", }, + ["recover #% of mana on kill"] = { "ManaGainedOnKillPercentageUniqueCorruptedJewel14", }, + ["recover #% of mana when you shock an enemy"] = { "PercentManaRecoveredWhenYouShockUnique__1", }, + ["recover (#) life when you block"] = { "GainLifeOnBlockUnique__1", }, + ["recover (#) life when you ignite an enemy"] = { "GainLifeOnIgnitingEnemyUnique__1", "GainLifeOnIgnitingEnemyUnique__2", }, + ["recover (#) life when you suppress spell damage"] = { "RecoverLifeOnSuppressUnique__1", }, + ["recover (#) life when your trap is triggered by an enemy"] = { "GainLifeOnTrapTriggeredUnique__2__", }, + ["recover (#)% of energy shield on kill"] = { "MaximumEnergyShieldOnKillPercentUnique__1", }, + ["recover (#)% of energy shield when you kill an enemy during effect"] = { "RecoverMaximumEnergyShieldOnKillFlaskEffectUnique__1", }, + ["recover (#)% of energy shield when you lose a spirit charge"] = { "GainESWhenSpiritChargeExpiresOrConsumedUnique__1", }, + ["recover (#)% of life on kill"] = { "MaximumLifeOnKillPercentUnique__2", "MaximumLifeOnKillPercentUnique__3__", "MaximumLifeOnKillPercentUnique__5", "MaximumLifeOnKillPercentUnique__6", "MaximumLifeOnKillPercentUnique__7", "VillageMaximumLifeOnKillPercent", }, + ["recover (#)% of life on use"] = { "LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6", }, + ["recover (#)% of life when you kill an enemy during effect"] = { "RecoverMaximumLifeOnKillFlaskEffectUnique__1", }, + ["recover (#)% of life when you lose a spirit charge"] = { "GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2", }, + ["recover (#)% of life when you use a mana flask"] = { "RecoverLifeInstantlyOnManaFlaskUnique__1", }, + ["recover (#)% of mana on kill"] = { "MaximumManaOnKillPercentUnique__1", "VillageMaximumManaOnKillPercent", }, + ["recover (#)% of mana when you kill an enemy during effect"] = { "RecoverMaximumManaOnKillFlaskEffectUnique__1", }, + ["recover (1-3)% of energy shield when you kill an enemy during effect"] = { "RecoverMaximumEnergyShieldOnKillFlaskEffectUnique__1", }, + ["recover (1-3)% of life on kill"] = { "MaximumLifeOnKillPercentUnique__2", "MaximumLifeOnKillPercentUnique__6", "VillageMaximumLifeOnKillPercent", }, + ["recover (1-3)% of life when you kill an enemy during effect"] = { "RecoverMaximumLifeOnKillFlaskEffectUnique__1", }, + ["recover (1-3)% of mana on kill"] = { "MaximumManaOnKillPercentUnique__1", "VillageMaximumManaOnKillPercent", }, + ["recover (1-3)% of mana when you kill an enemy during effect"] = { "RecoverMaximumManaOnKillFlaskEffectUnique__1", }, + ["recover (100-200) life when you suppress spell damage"] = { "RecoverLifeOnSuppressUnique__1", }, + ["recover (2-3)% of energy shield when you lose a spirit charge"] = { "GainESWhenSpiritChargeExpiresOrConsumedUnique__1", }, + ["recover (2-3)% of life when you lose a spirit charge"] = { "GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2", }, + ["recover (20-30) life when you ignite an enemy"] = { "GainLifeOnIgnitingEnemyUnique__2", }, + ["recover (20-30) life when your trap is triggered by an enemy"] = { "GainLifeOnTrapTriggeredUnique__2__", }, + ["recover (250-500) life when you block"] = { "GainLifeOnBlockUnique__1", }, + ["recover (3-5)% of energy shield on kill"] = { "MaximumEnergyShieldOnKillPercentUnique__1", }, + ["recover (3-5)% of life on kill"] = { "MaximumLifeOnKillPercentUnique__3__", "MaximumLifeOnKillPercentUnique__5", }, + ["recover (4-6)% of life on kill"] = { "MaximumLifeOnKillPercentUnique__7", }, + ["recover (40-60) life when you ignite an enemy"] = { "GainLifeOnIgnitingEnemyUnique__1", }, + ["recover (75-100)% of life on use"] = { "LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6", }, + ["recover (8-10)% of life when you use a mana flask"] = { "RecoverLifeInstantlyOnManaFlaskUnique__1", }, + ["recover 1% of energy shield on kill"] = { "MaximumEnergyShieldOnKillPercentUnique__2", }, + ["recover 1% of life on kill"] = { "MaximumLifeOnKillPercentUnique__1", "MaximumLifeOnKillPercentUnique__4_", "RecoverPercentMaxLifeOnKillUnique__3", }, + ["recover 1% of life when you ignite an enemy"] = { "RecoverLifePercentOnIgniteUnique__1", }, + ["recover 1% of mana on kill"] = { "ManaGainedOnKillPercentageUniqueCorruptedJewel14", }, + ["recover 100 life when your trap is triggered by an enemy"] = { "GainLifeOnTrapTriggeredUnique__1", }, + ["recover 2% of life when you consume a corpse"] = { "LifeOnCorpseRemovalUniqueJewel14", }, + ["recover 20% of life on rampage"] = { "HealOnRampageUniqueGlovesStrDex5", }, + ["recover 3% of mana when you shock an enemy"] = { "PercentManaRecoveredWhenYouShockUnique__1", }, + ["recover 4% of life per endurance charge on use"] = { "FlaskLoseAllEnduranceChargesGainLifePerLostChargeUnique1", }, + ["recover 5% of life on kill"] = { "RecoverPercentMaxLifeOnKillUnique__1", "RecoverPercentMaxLifeOnKillUnique__2", }, + ["recover 50 energy shield when your trap is triggered by an enemy"] = { "GainEnergyShieldOnTrapTriggeredUnique__1_", }, + ["recover energy shield equal to #% of armour when you block"] = { "EnergyShieldGainedOnBlockUniqueShieldStrInt4", }, + ["recover energy shield equal to 2% of armour when you block"] = { "EnergyShieldGainedOnBlockUniqueShieldStrInt4", }, + ["recover full life at the end of the effect"] = { "LocalFlaskLifeOnFlaskDurationEndUniqueFlask3", }, + ["reflect shocks applied to you to all nearby enemies"] = { "ReflectsShockToEnemiesInRadiusUnique__1", }, + ["reflects # chaos damage to melee attackers"] = { "AttackerTakesChaosDamageUniqueBodyStrInt4", }, + ["reflects # cold damage to melee attackers"] = { "AttackerTakesColdDamageGlovesDex1", "AttackerTakesColdDamageUnique__1", }, + ["reflects # fire damage to melee attackers"] = { "AttackerTakesFireDamageUniqueBodyInt2", "AttackerTakesFireDamageUnique__1", }, + ["reflects # lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUnique__1", }, + ["reflects # physical damage to melee attackers"] = { "AttackerTakesDamageUniqueHelmetDex3", "AttackerTakesDamageUniqueIntHelmet1", }, + ["reflects # to # lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUniqueBodyInt1", "AttackerTakesLightningDamageUnique___1", }, + ["reflects # to # physical damage to attackers on block"] = { "ReflectDamageToAttackersOnBlockUniqueAmulet16", "ReflectDamageToAttackersOnBlockUniqueDescentShield1", "ReflectDamageToAttackersOnBlockUniqueDescentStaff1", "ReflectDamageToAttackersOnBlockUniqueShieldDex5", }, + ["reflects # to # physical damage to melee attackers"] = { "AttackerTakesDamageUniqueHelmetDexInt6", }, + ["reflects # to (#) lightning damage to attackers on block"] = { "LightningDamageOnBlockUniqueHelmetStrInt4", }, + ["reflects (#) cold damage to melee attackers"] = { "MeleeAttackerTakesColdDamageUniqueShieldDex1", }, + ["reflects (#) fire damage to attackers on block"] = { "ReflectFireDamageOnBlockUnique__1___", }, + ["reflects (#) physical damage to attackers on block"] = { "ReflectDamageToAttackersOnBlockUniqueStaff9", }, + ["reflects (#) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit1", "AttackerTakesDamageShieldImplicit10", "AttackerTakesDamageShieldImplicit11", "AttackerTakesDamageShieldImplicit12", "AttackerTakesDamageShieldImplicit13", "AttackerTakesDamageShieldImplicit2", "AttackerTakesDamageShieldImplicit3", "AttackerTakesDamageShieldImplicit4", "AttackerTakesDamageShieldImplicit5", "AttackerTakesDamageShieldImplicit6", "AttackerTakesDamageShieldImplicit7", "AttackerTakesDamageShieldImplicit8", "AttackerTakesDamageShieldImplicit9", "AttackerTakesDamageUnique_1", "AttackerTakesDamageUnique__1", "AttackerTakesDamageUnique__2", }, + ["reflects (10-23) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit3", }, + ["reflects (100-150) physical damage to melee attackers"] = { "AttackerTakesDamageUnique__2", }, + ["reflects (121-150) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit9", }, + ["reflects (151-180) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit10", }, + ["reflects (181-220) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit11", }, + ["reflects (2-5) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit1", }, + ["reflects (200-300) physical damage to melee attackers"] = { "AttackerTakesDamageUnique_1", }, + ["reflects (22-44) fire damage to attackers on block"] = { "ReflectFireDamageOnBlockUnique__1___", }, + ["reflects (22-44) physical damage to attackers on block"] = { "ReflectDamageToAttackersOnBlockUniqueStaff9", }, + ["reflects (221-260) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit12", }, + ["reflects (24-35) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit4", }, + ["reflects (25-50) cold damage to melee attackers"] = { "MeleeAttackerTakesColdDamageUniqueShieldDex1", }, + ["reflects (261-300) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit13", }, + ["reflects (36-50) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit5", }, + ["reflects (5-12) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit2", }, + ["reflects (51-70) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit6", }, + ["reflects (71-90) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit7", "AttackerTakesDamageUnique__1", }, + ["reflects (91-120) physical damage to melee attackers"] = { "AttackerTakesDamageShieldImplicit8", }, + ["reflects 1 to (180-220) lightning damage to attackers on block"] = { "LightningDamageOnBlockUniqueHelmetStrInt4", }, + ["reflects 1 to 150 lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUnique___1", }, + ["reflects 1 to 250 lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUniqueBodyInt1", }, + ["reflects 100 cold damage to melee attackers"] = { "AttackerTakesColdDamageGlovesDex1", "AttackerTakesColdDamageUnique__1", }, + ["reflects 100 fire damage to melee attackers"] = { "AttackerTakesFireDamageUniqueBodyInt2", "AttackerTakesFireDamageUnique__1", }, + ["reflects 100 lightning damage to melee attackers"] = { "AttackerTakesLightningDamageUnique__1", }, + ["reflects 100 to 150 physical damage to melee attackers"] = { "AttackerTakesDamageUniqueHelmetDexInt6", }, + ["reflects 1000 to 10000 physical damage to attackers on block"] = { "ReflectDamageToAttackersOnBlockUniqueShieldDex5", }, + ["reflects 240 to 300 physical damage to attackers on block"] = { "ReflectDamageToAttackersOnBlockUniqueAmulet16", }, + ["reflects 30 chaos damage to melee attackers"] = { "AttackerTakesChaosDamageUniqueBodyStrInt4", }, + ["reflects 4 physical damage to melee attackers"] = { "AttackerTakesDamageUniqueHelmetDex3", }, + ["reflects 4 to 8 physical damage to attackers on block"] = { "ReflectDamageToAttackersOnBlockUniqueDescentShield1", }, + ["reflects 5 physical damage to melee attackers"] = { "AttackerTakesDamageUniqueIntHelmet1", }, + ["reflects 8 to 14 physical damage to attackers on block"] = { "ReflectDamageToAttackersOnBlockUniqueDescentStaff1", }, + ["reflects opposite ring"] = { "DuplicatesRingStats", }, + ["regenerate # energy shield per second if all equipped items are corrupted"] = { "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1", }, + ["regenerate # energy shield per second per poison on you, up to # per second"] = { "EnergyShieldRegenPerPoisonUnique__1", }, + ["regenerate # life per second"] = { "LifeRegenerationUniqueTwoHandAxe4", "LifeRegenerationUniqueWreath1", }, + ["regenerate # life per second for each uncorrupted item equipped"] = { "LifeRegenPerUncorruptedItemUnique__1", }, + ["regenerate # life per second if no equipped items are corrupted"] = { "LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1", }, + ["regenerate # life per second if you have at least # maximum energy shield"] = { "LifeRegenerationWith1000EnergyShieldUnique__1", "LifeRegenerationWith1500EnergyShieldUnique__1", "LifeRegenerationWith500EnergyShieldUnique__1", }, + ["regenerate # life per second per endurance charge"] = { "LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3", }, + ["regenerate # life per second per level"] = { "LifeRegenerationPerLevelUniqueTwoHandSword7", "LifeRegenerationPerLevelUnique__1", }, + ["regenerate # life per second while moving"] = { "LifeRegenerationWhileMovingUnique__1", }, + ["regenerate # life per second while on low life"] = { "LifeRegenerationFlatOnLowLifeUnique__1", }, + ["regenerate # life per second while you have avian's flight"] = { "AviansFlightLifeRegenerationUnique__1", }, + ["regenerate # mana per second"] = { "AddedManaRegenerationUniqueDescentWand1", "AddedManaRegenerationUniqueJewel10", }, + ["regenerate # mana per second if all equipped items are corrupted"] = { "BaseManaRegenerationWhileAllCorruptedItemsUnique__1", }, + ["regenerate # mana per second per # devotion"] = { "AddedManaRegenerationPerDevotion", }, + ["regenerate # mana per second per power charge"] = { "ManaRegeneratedPerSecondPerPowerChargeUnique__1", }, + ["regenerate # mana per second while you have avian's flight"] = { "AviansFlightManaRegenerationUnique__1_", }, + ["regenerate # rage per second for every # life recovery per second from regeneration"] = { "RageRegenerationPerLifeRegenerationUnique__1", }, + ["regenerate #% life over one second when hit while sane"] = { "RegenerateLifeNotUnhingedUnique__1", }, + ["regenerate #% of energy shield per second"] = { "EnergyShieldRegenerationUnique__1", "EnergyShieldRegenerationUnique__2", "EnergyShieldRegenerationUnique__3", }, + ["regenerate #% of energy shield per second for"] = { "EnergyShieldRegenPerAllocatedIntelligenceJewelUnique__1_", }, + ["regenerate #% of energy shield per second if you've dealt a critical strike with this weapon recently"] = { "LocalEnergyShieldRegenerationIfCritRecentlyUnique__1", }, + ["regenerate #% of energy shield per second while on low life"] = { "EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1", }, + ["regenerate #% of energy shield per second while shocked"] = { "EnergyShieldRegenerationWhileShockedUnique__1", }, + ["regenerate #% of life per second"] = { "JewelImplicitLifeRegeneration", "LifeRegenerationRatePercentUnique__1", "LifeRegenerationRatePercentUnique__2", "LifeRegenerationRatePercentUnique__3", "LifeRegenerationRatePercentUnique__4_", "LifeRegenerationRatePercentUnique__5", "LifeRegenerationRatePercentageUniqueAmulet21", "LifeRegenerationRatePercentageUniqueJewel24", "LifeRegenerationRatePercentageUniqueShieldStrInt3", "TalismanPercentLifeRegeneration", }, + ["regenerate #% of life per second for each different ailment affecting you"] = { "LifeRegenerationPercentPerAilmentUnique__1", }, + ["regenerate #% of life per second for each raised zombie"] = { "LifeRegenerationPerZombieUnique__1", }, + ["regenerate #% of life per second if you have been hit recently"] = { "LifeRegenerationIfHitRecentlyUnique__1", }, + ["regenerate #% of life per second if you've taken a savage hit in the past # second"] = { "LifeRegeneratedAfterSavageHitUnique_1", }, + ["regenerate #% of life per second on chilled ground"] = { "LifeRegenerationPercentOnChilledGroundUniqueBootsInt6", }, + ["regenerate #% of life per second per # maximum energy shield"] = { "LifeRegenerationPer500EnergyShieldUnique__1", }, + ["regenerate #% of life per second per endurance charge"] = { "ChargeBonusLifeRegenerationPerEnduranceCharge", "LifeRegenerationPercentPerEnduranceChargeUnique__1", }, + ["regenerate #% of life per second per frenzy charge"] = { "ChargeBonusLifeRegenerationPerFrenzyCharge", "LifeRegenerationPerFrenzyChargeUniqueBootsDex4", }, + ["regenerate #% of life per second per power charge"] = { "ChargeBonusLifeRegenerationPerPowerCharge", "LifeRegenerationPerPowerChargeUnique__1__", }, + ["regenerate #% of life per second while frozen"] = { "LifeRegenerationWhileFrozenUnique__1", }, + ["regenerate #% of life per second while on low life"] = { "LifeRegenerationOnLowLifeUniqueAmulet4", "LifeRegenerationOnLowLifeUniqueBodyStrInt2", "LifeRegenerationOnLowLifeUniqueShieldStrInt3_", }, + ["regenerate #% of life per second with at least # strength"] = { "LifeRegenerationAt400StrengthUnique__1", }, + ["regenerate #% of mana per second"] = { "BaseManaRegenerationUniqueBodyDexInt2", }, + ["regenerate #% of your armour as life over # second when you block"] = { "ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6", }, + ["regenerate (#) energy shield per second"] = { "FlatEnergyShieldRegenerationUnique__1", }, + ["regenerate (#) life over # second when you cast a spell"] = { "RegenerateLifeOnCastUniqueWand4", }, + ["regenerate (#) life per second"] = { "LifeRegenerationImplicitAmulet1", "LifeRegenerationUniqueAmulet25", "LifeRegenerationUniqueBelt8", "LifeRegenerationUniqueBootsDex5", "LifeRegenerationUniqueGlovesStrDex5", "LifeRegenerationUniqueRing1", "LifeRegenerationUniqueRing26", "LifeRegenerationUniqueRing33", "LifeRegenerationUniqueShieldDex2", "LifeRegenerationUniqueShieldStrInt5", "LifeRegenerationUnique__1", "LifeRegenerationUnique__2__", "LifeRegenerationUnique__3", "LifeRegenerationUnique__4", "LifeRegenerationUnique__5", }, + ["regenerate (#) life per second per buff on you"] = { "LifeRegenPerActiveBuffUniqueBodyInt12", }, + ["regenerate (#) life per second per endurance charge"] = { "LifeRegenPerMinutePerEnduranceChargeUnique__1", }, + ["regenerate (#) life per second while ignited"] = { "LifeRegeneratedPerMinuteWhileIgnitedUnique__1", }, + ["regenerate (#) life per second while in blood stance"] = { "LifeRegenerationBloodStanceUnique__1", }, + ["regenerate (#) mana per second"] = { "AddedManaRegenerationUniqueBelt8", "AddedManaRegenerationUnique__1", "AddedManaRegenerationUnique__2", "AddedManaRegenerationUnique__3", }, + ["regenerate (#)% of life per second"] = { "LifeRegenerationImplicitAmulet2", "LifeRegenerationRatePercentImplicitUnique__5", }, + ["regenerate (1-2)% of life per second"] = { "LifeRegenerationRatePercentImplicitUnique__5", }, + ["regenerate (1.2-1.6)% of life per second"] = { "LifeRegenerationImplicitAmulet2", }, + ["regenerate (1.7-2.7) life per second"] = { "LifeRegenerationUniqueBootsDex5", }, + ["regenerate (10-15) life per second"] = { "LifeRegenerationUniqueRing1", "LifeRegenerationUniqueRing33", }, + ["regenerate (100-140) life per second per endurance charge"] = { "LifeRegenPerMinutePerEnduranceChargeUnique__1", }, + ["regenerate (100-200) life per second"] = { "LifeRegenerationUniqueShieldStrInt5", }, + ["regenerate (12-20) life per second per buff on you"] = { "LifeRegenPerActiveBuffUniqueBodyInt12", }, + ["regenerate (13-17) life per second"] = { "LifeRegenerationUniqueRing26", }, + ["regenerate (150-200) life per second while in blood stance"] = { "LifeRegenerationBloodStanceUnique__1", }, + ["regenerate (16-24) life per second"] = { "LifeRegenerationUniqueAmulet25", }, + ["regenerate (2-4) life per second"] = { "LifeRegenerationImplicitAmulet1", }, + ["regenerate (200-250) life per second"] = { "LifeRegenerationUnique__4", }, + ["regenerate (200-350) life per second"] = { "LifeRegenerationUniqueBelt8", }, + ["regenerate (3-4) life per second"] = { "LifeRegenerationUniqueGlovesStrDex5", }, + ["regenerate (3-5) mana per second"] = { "AddedManaRegenerationUnique__3", }, + ["regenerate (3-6) mana per second"] = { "AddedManaRegenerationUnique__1", }, + ["regenerate (30-50) life per second"] = { "LifeRegenerationUnique__3", "LifeRegenerationUnique__5", }, + ["regenerate (5-7.5) life per second"] = { "LifeRegenerationUniqueShieldDex2", }, + ["regenerate (50-70) life per second"] = { "LifeRegenerationUnique__1", "LifeRegenerationUnique__2__", }, + ["regenerate (6-8) life over 1 second when you cast a spell"] = { "RegenerateLifeOnCastUniqueWand4", }, + ["regenerate (75-125) life per second while ignited"] = { "LifeRegeneratedPerMinuteWhileIgnitedUnique__1", }, + ["regenerate (8-10) mana per second"] = { "AddedManaRegenerationUniqueBelt8", "AddedManaRegenerationUnique__2", }, + ["regenerate (80-100) energy shield per second"] = { "FlatEnergyShieldRegenerationUnique__1", }, + ["regenerate 0.1% of life per second"] = { "JewelImplicitLifeRegeneration", }, + ["regenerate 0.2 life per second per level"] = { "LifeRegenerationPerLevelUniqueTwoHandSword7", }, + ["regenerate 0.2% of life per second per endurance charge"] = { "LifeRegenerationPercentPerEnduranceChargeUnique__1", }, + ["regenerate 0.3% of life per second per endurance charge"] = { "ChargeBonusLifeRegenerationPerEnduranceCharge", }, + ["regenerate 0.3% of life per second per frenzy charge"] = { "ChargeBonusLifeRegenerationPerFrenzyCharge", }, + ["regenerate 0.3% of life per second per power charge"] = { "ChargeBonusLifeRegenerationPerPowerCharge", }, + ["regenerate 0.4% of energy shield per second for"] = { "EnergyShieldRegenPerAllocatedIntelligenceJewelUnique__1_", }, + ["regenerate 0.5% of life per second per power charge"] = { "LifeRegenerationPerPowerChargeUnique__1__", }, + ["regenerate 0.6 mana per second per 10 devotion"] = { "AddedManaRegenerationPerDevotion", }, + ["regenerate 0.6% of life per second for each raised zombie"] = { "LifeRegenerationPerZombieUnique__1", }, + ["regenerate 0.8% of life per second per frenzy charge"] = { "LifeRegenerationPerFrenzyChargeUniqueBootsDex4", }, + ["regenerate 1 rage per second for every 200 life recovery per second from regeneration"] = { "RageRegenerationPerLifeRegenerationUnique__1", }, + ["regenerate 1% of energy shield per second"] = { "EnergyShieldRegenerationUnique__1", "EnergyShieldRegenerationUnique__2", }, + ["regenerate 1% of life per second"] = { "LifeRegenerationRatePercentUnique__3", "LifeRegenerationRatePercentUnique__4_", }, + ["regenerate 1% of life per second per 500 maximum energy shield"] = { "LifeRegenerationPer500EnergyShieldUnique__1", }, + ["regenerate 1% of life per second while on low life"] = { "LifeRegenerationOnLowLifeUniqueAmulet4", }, + ["regenerate 1% of mana per second"] = { "BaseManaRegenerationUniqueBodyDexInt2", }, + ["regenerate 10% life over one second when hit while sane"] = { "RegenerateLifeNotUnhingedUnique__1", }, + ["regenerate 10% of life per second"] = { "LifeRegenerationRatePercentUnique__2", }, + ["regenerate 10% of life per second if you've taken a savage hit in the past 1 second"] = { "LifeRegeneratedAfterSavageHitUnique_1", }, + ["regenerate 10% of life per second while frozen"] = { "LifeRegenerationWhileFrozenUnique__1", }, + ["regenerate 100 life per second if you have at least 1000 maximum energy shield"] = { "LifeRegenerationWith1000EnergyShieldUnique__1", }, + ["regenerate 100 life per second while moving"] = { "LifeRegenerationWhileMovingUnique__1", }, + ["regenerate 100 life per second while on low life"] = { "LifeRegenerationFlatOnLowLifeUnique__1", }, + ["regenerate 100 life per second while you have avian's flight"] = { "AviansFlightLifeRegenerationUnique__1", }, + ["regenerate 12 mana per second while you have avian's flight"] = { "AviansFlightManaRegenerationUnique__1_", }, + ["regenerate 15 life per second for each uncorrupted item equipped"] = { "LifeRegenPerUncorruptedItemUnique__1", }, + ["regenerate 150 life per second if you have at least 1500 maximum energy shield"] = { "LifeRegenerationWith1500EnergyShieldUnique__1", }, + ["regenerate 2 life per second"] = { "LifeRegenerationUniqueWreath1", }, + ["regenerate 2 mana per second"] = { "AddedManaRegenerationUniqueDescentWand1", }, + ["regenerate 2 mana per second per power charge"] = { "ManaRegeneratedPerSecondPerPowerChargeUnique__1", }, + ["regenerate 2% of energy shield per second"] = { "EnergyShieldRegenerationUnique__3", }, + ["regenerate 2% of energy shield per second while on low life"] = { "EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1", }, + ["regenerate 2% of life per second"] = { "LifeRegenerationRatePercentUnique__1", "LifeRegenerationRatePercentageUniqueJewel24", "TalismanPercentLifeRegeneration", }, + ["regenerate 2% of life per second for each different ailment affecting you"] = { "LifeRegenerationPercentPerAilmentUnique__1", }, + ["regenerate 2% of life per second if you have been hit recently"] = { "LifeRegenerationIfHitRecentlyUnique__1", }, + ["regenerate 2% of life per second on chilled ground"] = { "LifeRegenerationPercentOnChilledGroundUniqueBootsInt6", }, + ["regenerate 2% of life per second while on low life"] = { "LifeRegenerationOnLowLifeUniqueBodyStrInt2", }, + ["regenerate 2% of life per second with at least 400 strength"] = { "LifeRegenerationAt400StrengthUnique__1", }, + ["regenerate 2% of your armour as life over 1 second when you block"] = { "ArmourAsLifeRegnerationOnBlockUniqueShieldStrInt6", }, + ["regenerate 20 life per second"] = { "LifeRegenerationUniqueTwoHandAxe4", }, + ["regenerate 20% of energy shield per second if you've dealt a critical strike with this weapon recently"] = { "LocalEnergyShieldRegenerationIfCritRecentlyUnique__1", }, + ["regenerate 3 life per second per level"] = { "LifeRegenerationPerLevelUnique__1", }, + ["regenerate 3 mana per second"] = { "AddedManaRegenerationUniqueJewel10", }, + ["regenerate 3% of life per second"] = { "LifeRegenerationRatePercentUnique__5", "LifeRegenerationRatePercentageUniqueShieldStrInt3", }, + ["regenerate 3% of life per second while on low life"] = { "LifeRegenerationOnLowLifeUniqueShieldStrInt3_", }, + ["regenerate 35 mana per second if all equipped items are corrupted"] = { "BaseManaRegenerationWhileAllCorruptedItemsUnique__1", }, + ["regenerate 4% of life per second"] = { "LifeRegenerationRatePercentageUniqueAmulet21", }, + ["regenerate 400 energy shield per second if all equipped items are corrupted"] = { "EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1", }, + ["regenerate 400 life per second if no equipped items are corrupted"] = { "LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1", }, + ["regenerate 5% of energy shield per second while shocked"] = { "EnergyShieldRegenerationWhileShockedUnique__1", }, + ["regenerate 50 life per second if you have at least 500 maximum energy shield"] = { "LifeRegenerationWith500EnergyShieldUnique__1", }, + ["regenerate 75 life per second per endurance charge"] = { "LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3", }, + ["regenerate 80 energy shield per second per poison on you, up to 400 per second"] = { "EnergyShieldRegenPerPoisonUnique__1", }, + ["remembrancing (#) songworthy deeds by the line of vorana"] = { "UniqueJewelAlternateTreeInRadiusKalguur", }, + ["remembrancing (100-8000) songworthy deeds by the line of vorana"] = { "UniqueJewelAlternateTreeInRadiusKalguur", }, + ["remove an ailment when you use a flask if all equipped items are elder items"] = { "RemoveAilmentOnFlaskUseIfAllItemsAreElderUnique__1_", }, + ["removes #% of your maximum energy shield on use"] = { "FlaskRemovePercentageOfEnergyShieldUniqueFlask2", }, + ["removes (#)% of life when used"] = { "LocalFlaskRemovePercentOfLifeOnUseUnique_7", }, + ["removes (10-15)% of life when used"] = { "LocalFlaskRemovePercentOfLifeOnUseUnique_7", }, + ["removes 80% of your maximum energy shield on use"] = { "FlaskRemovePercentageOfEnergyShieldUniqueFlask2", }, + ["removes all but one life on use"] = { "RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUseUnique__1", }, + ["removes all energy shield"] = { "GlobalNoEnergyShieldUnique__1", "GlobalNoEnergyShieldUnique__2", }, + ["removes burning when you use a flask"] = { "UsingFlasksDispelsBurningUniqueHelmetInt5", }, + ["removes curses on use"] = { "FlaskCurseImmunityUnique___1", }, + ["removes elemental ailments on rampage"] = { "DispelStatusAilmentsOnRampageUniqueGlovesStrInt2", }, + ["reserves #% of life"] = { "NearbyEnemyReservesLifeUnique__1", }, + ["reserves 8% of life"] = { "NearbyEnemyReservesLifeUnique__1", }, + ["resolute technique"] = { "KeystoneResoluteTechniqueUnique__1", "ResoluteTechniqueUniqueTwoHandAxe9", }, + ["restores ward on use"] = { "UtilityFlaskWard", }, + ["retaliation skills become usable for (#)% longer"] = { "RetaliateSkillUseWindowDuration_1", }, + ["retaliation skills become usable for (50-100)% longer"] = { "RetaliateSkillUseWindowDuration_1", }, + ["retaliation skills deal (#)% increased damage"] = { "RetaliationSkillDamageUnique_1", }, + ["retaliation skills deal (50-100)% increased damage"] = { "RetaliationSkillDamageUnique_1", }, + ["retaliation skills have #% chance to knockback"] = { "KnockbackOnCounterattackChanceUnique__1", }, + ["retaliation skills have 100% chance to knockback"] = { "KnockbackOnCounterattackChanceUnique__1", }, + ["right ring slot: #% of physical hit damage from you and"] = { "RightRingSlotPhysicalReflectDamageTakenUniqueRing10", }, + ["right ring slot: +# to maximum mana"] = { "RightRingSlotMaximumManaUnique__1", }, + ["right ring slot: +250 to maximum mana"] = { "RightRingSlotMaximumManaUnique__1", }, + ["right ring slot: 100% of physical hit damage from you and"] = { "RightRingSlotPhysicalReflectDamageTakenUniqueRing10", }, + ["right ring slot: cover enemies in frost for # seconds when you freeze them"] = { "RightRingCoveredInFrostUnique__1", }, + ["right ring slot: cover enemies in frost for 5 seconds when you freeze them"] = { "RightRingCoveredInFrostUnique__1", }, + ["right ring slot: projectiles from spells cannot fork"] = { "RightRingSpellProjectilesCannotForkUnique__1", }, + ["right ring slot: projectiles from spells chain +# times"] = { "RightRingSpellProjectilesChainUnique__1", }, + ["right ring slot: projectiles from spells chain +1 times"] = { "RightRingSpellProjectilesChainUnique__1", }, + ["right ring slot: regenerate #% of energy shield per second"] = { "RightRingSlotEnergyShieldRegenUniqueRing13", }, + ["right ring slot: regenerate 6% of energy shield per second"] = { "RightRingSlotEnergyShieldRegenUniqueRing13", }, + ["right ring slot: you cannot regenerate mana"] = { "RightRingSlotNoManaRegenUniqueRing13", }, + ["rogue equipment cannot be found"] = { "HeistContractBetterTargetValue", }, + ["runebinder"] = { "KeystoneRunebinderUnique__1", }, + ["sacrifice #% of your life when you use or trigger a spell skill"] = { "SacrificeLifeOnSpellSkillUnique__1", }, + ["sacrifice (#)% of life to gain that much energy shield when you cast a spell"] = { "SacrificeLifeToGainESUnique__1", }, + ["sacrifice (5-25)% of life to gain that much energy shield when you cast a spell"] = { "SacrificeLifeToGainESUnique__1", }, + ["sacrifice 10% of your life when you use or trigger a spell skill"] = { "SacrificeLifeOnSpellSkillUnique__1", }, + ["sap enemies when you block their damage"] = { "ChanceToInflictSapOnEnemyOnBlockImplicitE1", }, + ["scorch enemies in close range when you block"] = { "ScorchOnEnemiesOnBlockUnique__1", }, + ["scorch enemies when you block their damage"] = { "ChanceToInflictScorchOnEnemyOnBlockImplicitE1", }, + ["secrets of suffering"] = { "SecretsOfSufferingKeystoneSceptreImplicit1", }, + ["sentinels of purity deal (#)% increased damage"] = { "HeraldBonusPurityMinionDamage", }, + ["sentinels of purity deal (70-100)% increased damage"] = { "HeraldBonusPurityMinionDamage", }, + ["share endurance charges with nearby party members"] = { "ShareEnduranceChargesWithParty", }, + ["shared suffering"] = { "SharedSufferingUnique__1", }, + ["shepherd of souls"] = { "KeystoneShepherdOfSoulsUnique__1", "VillageShepherdOfSouls", }, + ["shock attackers for # seconds on block"] = { "ChanceToShockAttackersOnBlockUnique__2", }, + ["shock attackers for 4 seconds on block"] = { "ChanceToShockAttackersOnBlockUnique__2", }, + ["shock reflection"] = { "ReflectsShocksUnique__1", }, + ["shocked enemies you kill explode, dealing #% of"] = { "ShockedEnemiesExplodeUnique__1_", }, + ["shocked enemies you kill explode, dealing 5% of"] = { "ShockedEnemiesExplodeUnique__1_", }, + ["shocks nearby enemies during effect, causing #% increased damage taken"] = { "ShockNearbyEnemiesDuringFlaskEffect___1", }, + ["shocks nearby enemies during effect, causing 10% increased damage taken"] = { "ShockNearbyEnemiesDuringFlaskEffect___1", }, + ["shocks you cause are reflected back to you"] = { "ShocksReflectToSelfUniqueBelt12", "ShocksReflectToSelfUnique__1", }, + ["shocks you inflict during effect spread to other enemies within # metres"] = { "ShockProliferationDuringFlaskEffectUnique__1", }, + ["shocks you inflict during effect spread to other enemies within 2 metres"] = { "ShockProliferationDuringFlaskEffectUnique__1", }, + ["shocks you inflict spread to other enemies within # metres"] = { "ShockProliferationUnique__1", "ShockProliferationUnique__2", }, + ["shocks you inflict spread to other enemies within 1.5 metres"] = { "ShockProliferationUnique__1", "ShockProliferationUnique__2", }, + ["shocks you when you reach maximum power charges"] = { "ShockOnMaxPowerChargesUnique__1", }, + ["shrapnel ballista has +# to maximum number of summoned totems per # strength"] = { "AdditionalShrapnelBallistaePerStrengthUnique__1", }, + ["shrapnel ballista has +1 to maximum number of summoned totems per 200 strength"] = { "AdditionalShrapnelBallistaePerStrengthUnique__1", }, + ["siege ballista has +# to maximum number of summoned totems per # dexterity"] = { "AdditionalSnipeTotemsPerDexterityUnique__1", }, + ["siege ballista has +1 to maximum number of summoned totems per 200 dexterity"] = { "AdditionalSnipeTotemsPerDexterityUnique__1", }, + ["siren worm bait"] = { "FishingLureTypeUniqueFishingRod1", }, + ["skeletons gain added chaos damage equal to (#)% of maximum energy shield on your equipped shield"] = { "SkeletonAddedChaosDamageShieldUnique__1", }, + ["skeletons gain added chaos damage equal to (20-30)% of maximum energy shield on your equipped shield"] = { "SkeletonAddedChaosDamageShieldUnique__1", }, + ["skills chain +# times"] = { "AdditionalChainUniqueOneHandMace3", "AdditionalChainUnique__1", "AdditionalChainUnique__2", }, + ["skills chain +1 times"] = { "AdditionalChainUniqueOneHandMace3", "AdditionalChainUnique__2", }, + ["skills chain +2 times"] = { "AdditionalChainUnique__1", }, + ["skills chain an additional time while at maximum frenzy charges"] = { "AdditionalChainWhileAtMaxFrenzyChargesUnique___1", }, + ["skills cost energy shield instead of mana or life"] = { "SkillsCostEnergyShieldInsteadOfManaLifeUnique__1", }, + ["skills cost no mana during effect"] = { "LocalFlaskNoManaCostWhileHealingUniqueFlask4", }, + ["skills deal (#)% more damage for each warcry exerting them"] = { "MoreDamagePerWarcryExertingUnique__1", }, + ["skills deal (10-15)% more damage for each warcry exerting them"] = { "MoreDamagePerWarcryExertingUnique__1", }, + ["skills fire # additional projectiles"] = { "AdditionalProjectilesUnique__1__", "VillageAdditionalProjectilesRandomDirection", }, + ["skills fire # additional projectiles during effect"] = { "FlaskAdditionalProjectilesDuringEffectUnique__1", }, + ["skills fire # additional projectiles for # seconds after"] = { "AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1", }, + ["skills fire # additional projectiles if you've been hit recently"] = { "NumberOfProjectilesIfHitRecentlyUnique__1", }, + ["skills fire # additional projectiles if you've used a movement skill recently"] = { "NumberOfProjectilesIfUsedAMovementSkillRecentlyUnique__1", }, + ["skills fire (#) additional projectiles"] = { "AdditionalProjectilesUniqueWand_1", }, + ["skills fire (2-3) additional projectiles"] = { "AdditionalProjectilesUniqueWand_1", }, + ["skills fire 2 additional projectiles"] = { "AdditionalProjectilesUnique__1__", "VillageAdditionalProjectilesRandomDirection", }, + ["skills fire 2 additional projectiles during effect"] = { "FlaskAdditionalProjectilesDuringEffectUnique__1", }, + ["skills fire 2 additional projectiles if you've been hit recently"] = { "NumberOfProjectilesIfHitRecentlyUnique__1", }, + ["skills fire 2 additional projectiles if you've used a movement skill recently"] = { "NumberOfProjectilesIfUsedAMovementSkillRecentlyUnique__1", }, + ["skills fire 3 additional projectiles for 4 seconds after"] = { "AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1", }, + ["skills fire an additional projectile"] = { "UniqueSpecialCorruptionAdditionalProjectile", "VillageAdditionalProjectiles", }, + ["skills fire an additional projectile if # hunter items are equipped"] = { "AdditionalProjectile6HunterItemsUnique__1", }, + ["skills fire an additional projectile if 6 hunter items are equipped"] = { "AdditionalProjectile6HunterItemsUnique__1", }, + ["skills gain a base energy shield cost equal to #% of base mana cost"] = { "EnergyShieldCostAsManaCostUnique__1", }, + ["skills gain a base energy shield cost equal to 200% of base mana cost"] = { "EnergyShieldCostAsManaCostUnique__1", }, + ["skills gain a base life cost equal to #% of base mana cost"] = { "LifeCostAsManaCostUnique__1", }, + ["skills gain a base life cost equal to 100% of base mana cost"] = { "LifeCostAsManaCostUnique__1", }, + ["skills supported by unleash have (#)% increased seal gain frequency"] = { "UnleashSealGainFrequencyUnique__1", }, + ["skills supported by unleash have (30-50)% increased seal gain frequency"] = { "UnleashSealGainFrequencyUnique__1", }, + ["skills used by spectral totems deal (#)% less damage"] = { "GhostTotemDamageUnique__1", }, + ["skills used by spectral totems deal (40-50)% less damage"] = { "GhostTotemDamageUnique__1", }, + ["skills used by traps have (#)% increased area of effect"] = { "TrapAreaOfEffectUnique__1", }, + ["skills used by traps have (10-20)% increased area of effect"] = { "TrapAreaOfEffectUnique__1", }, + ["skills which create brands create an additional brand"] = { "SummonAdditionalBrandUnique__1", }, + ["skills which exert an attack have (#)% chance to not count that attack"] = { "SkillsExertAttacksDoNotCountChanceUnique__1", }, + ["skills which exert an attack have (20-40)% chance to not count that attack"] = { "SkillsExertAttacksDoNotCountChanceUnique__1", }, + ["skills which throw mines throw up to # additional mine if you have at least # dexterity"] = { "PlaceAdditionalMineWith600DexterityUnique__1", }, + ["skills which throw mines throw up to # additional mine if you have at least # intelligence"] = { "PlaceAdditionalMineWith600IntelligenceUnique__1", }, + ["skills which throw mines throw up to 1 additional mine if you have at least 800 dexterity"] = { "PlaceAdditionalMineWith600DexterityUnique__1", }, + ["skills which throw mines throw up to 1 additional mine if you have at least 800 intelligence"] = { "PlaceAdditionalMineWith600IntelligenceUnique__1", }, + ["skills which throw traps cost life instead of mana"] = { "TrapSkillsHaveBloodMagicUnique__1", }, + ["skills which throw traps throw up to # additional traps"] = { "AdditionalTrapsThrownUnique__1", }, + ["skills which throw traps throw up to 2 additional traps"] = { "AdditionalTrapsThrownUnique__1", }, + ["socketed curse gems have #% increased reservation efficiency"] = { "ReducedReservationForSocketedCurseGemsUnique__1", "ReducedReservationForSocketedCurseGemsUnique__2", }, + ["socketed curse gems have 30% increased reservation efficiency"] = { "ReducedReservationForSocketedCurseGemsUnique__1", }, + ["socketed curse gems have 80% increased reservation efficiency"] = { "ReducedReservationForSocketedCurseGemsUnique__2", }, + ["socketed gems are supported by level # added chaos damage"] = { "SocketedGemsHaveAddedChaosDamageUniqueBodyInt3", "SocketedGemsHaveAddedChaosDamageUnique__1", "SocketedGemsHaveAddedChaosDamageUnique__2", "SocketedGemsHaveAddedChaosDamageUnique__3", }, + ["socketed gems are supported by level # added cold damage"] = { "DisplaySupportedByAddedColdDamageUnique__1", "DisplaySupportedByAddedColdDamageUnique__2", }, + ["socketed gems are supported by level # added fire damage"] = { "ItemActsAsFireDamageSupportUniqueSceptre2", "SupportedByAddedFireDamageUnique__1_", }, + ["socketed gems are supported by level # added lightning damage"] = { "DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3", "DisplaySocketedGemGetsAddedLightningDamageUnique__1", }, + ["socketed gems are supported by level # arcane surge"] = { "SupportedByArcaneSurgeUniqueWand8", }, + ["socketed gems are supported by level # arrow nova"] = { "SupportedByArrowNovaUnique__1", "SupportedByArrowNovaUnique__2", }, + ["socketed gems are supported by level # blasphemy"] = { "SocketedGemsSupportedByBlasphemyUnique__1", "SocketedGemsSupportedByBlasphemyUnique__2__", "SupportedByBlasphemyUnique", }, + ["socketed gems are supported by level # blastchain mine"] = { "SupportedByRemoteMineUniqueStaff11", }, + ["socketed gems are supported by level # blind"] = { "ItemActsAsSupportBlindUniqueHelmetStrDex4", "ItemActsAsSupportBlindUniqueHelmetStrDex4b", "ItemActsAsSupportBlindUniqueWand1", "ItemActsAsSupportBlindUnique__1", }, + ["socketed gems are supported by level # bonechill"] = { "DisplaySupportedByBonechillUnique__1", }, + ["socketed gems are supported by level # cast on death"] = { "SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5", }, + ["socketed gems are supported by level # cast when damage taken"] = { "SupportedByCastOnDamageTakenUnique__1", }, + ["socketed gems are supported by level # cast when stunned"] = { "SupportedByCastOnStunUnique___1", }, + ["socketed gems are supported by level # chance to bleed"] = { "SupportedByChanceToBleedUnique__1", }, + ["socketed gems are supported by level # chance to flee"] = { "DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3", "DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4", }, + ["socketed gems are supported by level # chance to poison"] = { "SupportedByLesserPoisonUnique__1", }, + ["socketed gems are supported by level # cluster trap"] = { "SupportedByClusterTrapUnique__1", }, + ["socketed gems are supported by level # cold penetration"] = { "DisplaySupportedByColdPenetrationUnique__1", }, + ["socketed gems are supported by level # cold to fire"] = { "ItemActsAsColdToFireSupportUniqueSceptre2", "ItemActsAsColdToFireSupportUniqueStaff13", "ItemActsAsColdToFireSupportUnique__1", }, + ["socketed gems are supported by level # concentrated effect"] = { "ItemActsAsConcentratedAOESupportUniqueDagger5", "ItemActsAsConcentratedAOESupportUniqueHelmetInt4", "ItemActsAsConcentratedAOESupportUniqueRing35", "ItemActsAsConcentratedAOESupportUnique__1", }, + ["socketed gems are supported by level # controlled destruction"] = { "ControlledDestructionSupportUniqueWand8", "ControlledDestructionSupportUnique__1", "ControlledDestructionSupportUnique__1New_", }, + ["socketed gems are supported by level # divine blessing"] = { "SupportedByBlessingSupportUnique__1", }, + ["socketed gems are supported by level # elemental penetration"] = { "DisplaySupportedByElementalPenetrationUnique__1", "DisplaySupportedByElementalPenetrationUnique__2", }, + ["socketed gems are supported by level # elemental proliferation"] = { "SocketedGemsGetElementalProliferationUniqueBodyInt5", "SocketedGemsGetElementalProliferationUniqueSceptre7", }, + ["socketed gems are supported by level # endurance charge on melee stun"] = { "SocketedGemsSupportedByEnduranceChargeOnStunUnique__1", }, + ["socketed gems are supported by level # faster attacks"] = { "DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4", "DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b", "DisplaySocketedGemGetsFasterAttackUniqueRing37", "DisplaySocketedGemsGetsFasterAttackUnique__1", }, + ["socketed gems are supported by level # faster casting"] = { "DisplaySocketedGemsGetFasterCastUniqueDagger5", "SupportedByFasterCastUnique__1", }, + ["socketed gems are supported by level # fire penetration"] = { "ItemActsAsFirePenetrationSupportUniqueSceptre2", }, + ["socketed gems are supported by level # fortify"] = { "SocketedGemsSupportedByFortifyUnique____1", }, + ["socketed gems are supported by level # generosity"] = { "SupportedByGenerosityUniqueBodyDexInt4_", }, + ["socketed gems are supported by level # greater spell echo"] = { "SupportedByEchoUniqueStaff6", }, + ["socketed gems are supported by level # greater volley"] = { "SupportedByGreaterVolleyUnique__1", }, + ["socketed gems are supported by level # hypothermia"] = { "DisplaySupportedByHypothermiaUnique__1", }, + ["socketed gems are supported by level # ice bite"] = { "DisplaySupportedByIceBiteUnique__1", "DisplaySupportedByIceBiteUnique__2", "SupportedByIceBiteUnique__1", }, + ["socketed gems are supported by level # ignite proliferation"] = { "SupportedByIgniteProliferationUnique1", }, + ["socketed gems are supported by level # immolate"] = { "DisplaySupportedByImmolateUnique__1", }, + ["socketed gems are supported by level # increased area of effect"] = { "SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1", "SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5", }, + ["socketed gems are supported by level # increased critical damage"] = { "DisplaySocketedGemsSupportedByIncreasedCriticalDamageUniqueRing37_", }, + ["socketed gems are supported by level # increased duration"] = { "DisplaySocketedGemGetsIncreasedDurationGlovesInt4_", }, + ["socketed gems are supported by level # infernal legion"] = { "SupportedByInfernalLegionUnique__1", }, + ["socketed gems are supported by level # innervate"] = { "SupportedByInnervateUnique__1", "SupportedByInnervateUnique__2", }, + ["socketed gems are supported by level # inspiration"] = { "DisplaySocketedGemGetsReducedManaCostUniqueDagger5", "DisplaySupportedByReducedManaUnique__1", "DisplaySupportedByReducedManaUnique__2", "SupportedByReducedManaUniqueBodyDexInt4", }, + ["socketed gems are supported by level # intensify"] = { "SocketedGemsGetIncreasedAreaOfEffectUnique__1", "SupportedByIntensifyUnique__1", }, + ["socketed gems are supported by level # iron will"] = { "DisplaySocketedGemsSupportedByIronWillUniqueSceptre6", }, + ["socketed gems are supported by level # knockback"] = { "DisplaySupportedByKnockbackUniqueGlovesStr5", }, + ["socketed gems are supported by level # life leech"] = { "SupportedByLifeLeechUniqueBodyStrInt5", "SupportedByLifeLeechUnique__1", }, + ["socketed gems are supported by level # lifetap"] = { "SocketedGemsGetBloodMagicUnique__1", "SocketedGemsSupportedByLifetapUnique__1", }, + ["socketed gems are supported by level # mana leech"] = { "DisplaySupportedByManaLeechUnique__1", }, + ["socketed gems are supported by level # meat shield"] = { "SupportedByMeatShieldUnique__1", }, + ["socketed gems are supported by level # melee physical damage"] = { "DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4", }, + ["socketed gems are supported by level # melee splash"] = { "SupportedByMeleeSplashUnique__1_", }, + ["socketed gems are supported by level # minion damage"] = { "DisplaySocketedGemsSupportedByIncreasedMinionDamageUniqueRing36", }, + ["socketed gems are supported by level # minion life"] = { "DisplaySocketedGemsSupportedByMinionLifeUniqueRing35", }, + ["socketed gems are supported by level # minion speed"] = { "DisplaySocketedGemsSupportedByMinionSpeedUniqueRing37", }, + ["socketed gems are supported by level # multiple projectiles"] = { "DisplaySocketedGemsSupportedByLesserMultipleProjectilesUniqueRing36", }, + ["socketed gems are supported by level # multiple totems"] = { "SupportedByMultiTotemUnique__1", }, + ["socketed gems are supported by level # multistrike"] = { "SupportedByMultistrikeUniqueOneHandSword13", }, + ["socketed gems are supported by level # pierce"] = { "SocketedGemsSupportedByPierceUniqueBodyStr6", }, + ["socketed gems are supported by level # pulverise"] = { "SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3", }, + ["socketed gems are supported by level # rage"] = { "SupportedByRageUnique__1__", }, + ["socketed gems are supported by level # spell echo"] = { "SupportedByEchoUniqueWand8", "SupportedByEchoUniqueWand8New_", }, + ["socketed gems are supported by level # spell totem"] = { "DisplaySocketedGemGetsSpellTotemBodyInt7", }, + ["socketed gems are supported by level # trap"] = { "DisplaySupportedByTrapUniqueBootsDex6", "DisplaySupportedByTrapUniqueStaff4", "DisplaySupportedByTrapUnique__1", }, + ["socketed gems are supported by level # trap and mine damage"] = { "SupportedByTrapAndMineDamageUnique__1", }, + ["socketed gems are supported by level # unbound ailments"] = { "DisplaySupportedByUnboundAilmentsUnique__1__", }, + ["socketed gems are supported by level # unleash"] = { "DisplaySupportedByUnleashUnique__1", }, + ["socketed gems are supported by level # vile toxins"] = { "SupportedByVileToxinsUnique__1", }, + ["socketed gems are supported by level (#) (#)"] = { "RandomSupportUnique__1", "RandomSupportUnique__2", "RandomSupportUnique__3", "RandomSupportUnique__4_", }, + ["socketed gems are supported by level (1-10) (1-172)"] = { "RandomSupportUnique__1", "RandomSupportUnique__3", }, + ["socketed gems are supported by level (25-35) (1-172)"] = { "RandomSupportUnique__2", "RandomSupportUnique__4_", }, + ["socketed gems are supported by level 1 arrow nova"] = { "SupportedByArrowNovaUnique__1", }, + ["socketed gems are supported by level 1 chance to bleed"] = { "SupportedByChanceToBleedUnique__1", }, + ["socketed gems are supported by level 1 greater spell echo"] = { "SupportedByEchoUniqueStaff6", }, + ["socketed gems are supported by level 1 lifetap"] = { "SocketedGemsGetBloodMagicUnique__1", "SocketedGemsSupportedByLifetapUnique__1", }, + ["socketed gems are supported by level 1 mana leech"] = { "DisplaySupportedByManaLeechUnique__1", }, + ["socketed gems are supported by level 1 meat shield"] = { "SupportedByMeatShieldUnique__1", }, + ["socketed gems are supported by level 1 multiple totems"] = { "SupportedByMultiTotemUnique__1", }, + ["socketed gems are supported by level 1 multistrike"] = { "SupportedByMultistrikeUniqueOneHandSword13", }, + ["socketed gems are supported by level 10 added chaos damage"] = { "SocketedGemsHaveAddedChaosDamageUnique__1", }, + ["socketed gems are supported by level 10 added fire damage"] = { "ItemActsAsFireDamageSupportUniqueSceptre2", "SupportedByAddedFireDamageUnique__1_", }, + ["socketed gems are supported by level 10 arcane surge"] = { "SupportedByArcaneSurgeUniqueWand8", }, + ["socketed gems are supported by level 10 blastchain mine"] = { "SupportedByRemoteMineUniqueStaff11", }, + ["socketed gems are supported by level 10 blind"] = { "ItemActsAsSupportBlindUnique__1", }, + ["socketed gems are supported by level 10 cast when stunned"] = { "SupportedByCastOnStunUnique___1", }, + ["socketed gems are supported by level 10 chance to flee"] = { "DisplaySocketedGemGetsChancetoFleeUniqueShieldDex4", }, + ["socketed gems are supported by level 10 chance to poison"] = { "SupportedByLesserPoisonUnique__1", }, + ["socketed gems are supported by level 10 cold to fire"] = { "ItemActsAsColdToFireSupportUniqueSceptre2", }, + ["socketed gems are supported by level 10 concentrated effect"] = { "ItemActsAsConcentratedAOESupportUniqueDagger5", }, + ["socketed gems are supported by level 10 controlled destruction"] = { "ControlledDestructionSupportUniqueWand8", "ControlledDestructionSupportUnique__1", "ControlledDestructionSupportUnique__1New_", }, + ["socketed gems are supported by level 10 faster casting"] = { "DisplaySocketedGemsGetFasterCastUniqueDagger5", }, + ["socketed gems are supported by level 10 fire penetration"] = { "ItemActsAsFirePenetrationSupportUniqueSceptre2", }, + ["socketed gems are supported by level 10 increased duration"] = { "DisplaySocketedGemGetsIncreasedDurationGlovesInt4_", }, + ["socketed gems are supported by level 10 inspiration"] = { "DisplaySocketedGemGetsReducedManaCostUniqueDagger5", }, + ["socketed gems are supported by level 10 intensify"] = { "SocketedGemsGetIncreasedAreaOfEffectUnique__1", "SupportedByIntensifyUnique__1", }, + ["socketed gems are supported by level 10 knockback"] = { "DisplaySupportedByKnockbackUniqueGlovesStr5", }, + ["socketed gems are supported by level 10 life leech"] = { "SupportedByLifeLeechUnique__1", }, + ["socketed gems are supported by level 10 spell echo"] = { "SupportedByEchoUniqueWand8", "SupportedByEchoUniqueWand8New_", }, + ["socketed gems are supported by level 12 cast when damage taken"] = { "SupportedByCastOnDamageTakenUnique__1", }, + ["socketed gems are supported by level 12 faster attacks"] = { "DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b", }, + ["socketed gems are supported by level 12 fortify"] = { "SocketedGemsSupportedByFortifyUnique____1", }, + ["socketed gems are supported by level 12 multiple projectiles"] = { "DisplaySocketedGemsSupportedByLesserMultipleProjectilesUniqueRing36", }, + ["socketed gems are supported by level 13 faster attacks"] = { "DisplaySocketedGemGetsFasterAttackUniqueRing37", }, + ["socketed gems are supported by level 15 added chaos damage"] = { "SocketedGemsHaveAddedChaosDamageUniqueBodyInt3", }, + ["socketed gems are supported by level 15 added cold damage"] = { "DisplaySupportedByAddedColdDamageUnique__1", }, + ["socketed gems are supported by level 15 bonechill"] = { "DisplaySupportedByBonechillUnique__1", }, + ["socketed gems are supported by level 15 cold penetration"] = { "DisplaySupportedByColdPenetrationUnique__1", }, + ["socketed gems are supported by level 15 concentrated effect"] = { "ItemActsAsConcentratedAOESupportUniqueRing35", }, + ["socketed gems are supported by level 15 elemental penetration"] = { "DisplaySupportedByElementalPenetrationUnique__2", }, + ["socketed gems are supported by level 15 faster attacks"] = { "DisplaySocketedGemsGetsFasterAttackUnique__1", }, + ["socketed gems are supported by level 15 hypothermia"] = { "DisplaySupportedByHypothermiaUnique__1", }, + ["socketed gems are supported by level 15 ice bite"] = { "DisplaySupportedByIceBiteUnique__1", "DisplaySupportedByIceBiteUnique__2", }, + ["socketed gems are supported by level 15 immolate"] = { "DisplaySupportedByImmolateUnique__1", }, + ["socketed gems are supported by level 15 innervate"] = { "SupportedByInnervateUnique__2", }, + ["socketed gems are supported by level 15 inspiration"] = { "DisplaySupportedByReducedManaUnique__1", "DisplaySupportedByReducedManaUnique__2", "SupportedByReducedManaUniqueBodyDexInt4", }, + ["socketed gems are supported by level 15 life leech"] = { "SupportedByLifeLeechUniqueBodyStrInt5", }, + ["socketed gems are supported by level 15 minion life"] = { "DisplaySocketedGemsSupportedByMinionLifeUniqueRing35", }, + ["socketed gems are supported by level 15 pierce"] = { "SocketedGemsSupportedByPierceUniqueBodyStr6", }, + ["socketed gems are supported by level 15 pulverise"] = { "SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3", }, + ["socketed gems are supported by level 15 trap"] = { "DisplaySupportedByTrapUniqueBootsDex6", }, + ["socketed gems are supported by level 15 unbound ailments"] = { "DisplaySupportedByUnboundAilmentsUnique__1__", }, + ["socketed gems are supported by level 16 cluster trap"] = { "SupportedByClusterTrapUnique__1", }, + ["socketed gems are supported by level 16 increased critical damage"] = { "DisplaySocketedGemsSupportedByIncreasedCriticalDamageUniqueRing37_", }, + ["socketed gems are supported by level 16 minion speed"] = { "DisplaySocketedGemsSupportedByMinionSpeedUniqueRing37", }, + ["socketed gems are supported by level 16 trap"] = { "DisplaySupportedByTrapUnique__1", }, + ["socketed gems are supported by level 16 trap and mine damage"] = { "SupportedByTrapAndMineDamageUnique__1", }, + ["socketed gems are supported by level 17 minion damage"] = { "DisplaySocketedGemsSupportedByIncreasedMinionDamageUniqueRing36", }, + ["socketed gems are supported by level 18 added lightning damage"] = { "DisplaySocketedGemGetsAddedLightningDamageGlovesDexInt3", }, + ["socketed gems are supported by level 18 faster casting"] = { "SupportedByFasterCastUnique__1", }, + ["socketed gems are supported by level 18 ice bite"] = { "SupportedByIceBiteUnique__1", }, + ["socketed gems are supported by level 18 innervate"] = { "SupportedByInnervateUnique__1", }, + ["socketed gems are supported by level 18 unleash"] = { "DisplaySupportedByUnleashUnique__1", }, + ["socketed gems are supported by level 2 chance to flee"] = { "DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3", }, + ["socketed gems are supported by level 20 arrow nova"] = { "SupportedByArrowNovaUnique__2", }, + ["socketed gems are supported by level 20 blasphemy"] = { "SocketedGemsSupportedByBlasphemyUnique__2__", "SupportedByBlasphemyUnique", }, + ["socketed gems are supported by level 20 blind"] = { "ItemActsAsSupportBlindUniqueWand1", }, + ["socketed gems are supported by level 20 cast on death"] = { "SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5", }, + ["socketed gems are supported by level 20 concentrated effect"] = { "ItemActsAsConcentratedAOESupportUniqueHelmetInt4", }, + ["socketed gems are supported by level 20 elemental proliferation"] = { "SocketedGemsGetElementalProliferationUniqueSceptre7", }, + ["socketed gems are supported by level 20 endurance charge on melee stun"] = { "SocketedGemsSupportedByEnduranceChargeOnStunUnique__1", }, + ["socketed gems are supported by level 20 greater volley"] = { "SupportedByGreaterVolleyUnique__1", }, + ["socketed gems are supported by level 20 ignite proliferation"] = { "SupportedByIgniteProliferationUnique1", }, + ["socketed gems are supported by level 20 increased area of effect"] = { "SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5", }, + ["socketed gems are supported by level 20 spell totem"] = { "DisplaySocketedGemGetsSpellTotemBodyInt7", }, + ["socketed gems are supported by level 20 vile toxins"] = { "SupportedByVileToxinsUnique__1", }, + ["socketed gems are supported by level 22 blasphemy"] = { "SocketedGemsSupportedByBlasphemyUnique__1", }, + ["socketed gems are supported by level 25 added chaos damage"] = { "SocketedGemsHaveAddedChaosDamageUnique__2", }, + ["socketed gems are supported by level 25 divine blessing"] = { "SupportedByBlessingSupportUnique__1", }, + ["socketed gems are supported by level 25 elemental penetration"] = { "DisplaySupportedByElementalPenetrationUnique__1", }, + ["socketed gems are supported by level 29 added chaos damage"] = { "SocketedGemsHaveAddedChaosDamageUnique__3", }, + ["socketed gems are supported by level 29 added cold damage"] = { "DisplaySupportedByAddedColdDamageUnique__2", }, + ["socketed gems are supported by level 30 added lightning damage"] = { "DisplaySocketedGemGetsAddedLightningDamageUnique__1", }, + ["socketed gems are supported by level 30 blind"] = { "ItemActsAsSupportBlindUniqueHelmetStrDex4", }, + ["socketed gems are supported by level 30 cold to fire"] = { "ItemActsAsColdToFireSupportUnique__1", }, + ["socketed gems are supported by level 30 faster attacks"] = { "DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4", }, + ["socketed gems are supported by level 30 generosity"] = { "SupportedByGenerosityUniqueBodyDexInt4_", }, + ["socketed gems are supported by level 30 infernal legion"] = { "SupportedByInfernalLegionUnique__1", }, + ["socketed gems are supported by level 30 iron will"] = { "DisplaySocketedGemsSupportedByIronWillUniqueSceptre6", }, + ["socketed gems are supported by level 30 melee physical damage"] = { "DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4", }, + ["socketed gems are supported by level 30 melee splash"] = { "SupportedByMeleeSplashUnique__1_", }, + ["socketed gems are supported by level 30 rage"] = { "SupportedByRageUnique__1__", }, + ["socketed gems are supported by level 5 cold to fire"] = { "ItemActsAsColdToFireSupportUniqueStaff13", }, + ["socketed gems are supported by level 5 concentrated effect"] = { "ItemActsAsConcentratedAOESupportUnique__1", }, + ["socketed gems are supported by level 5 elemental proliferation"] = { "SocketedGemsGetElementalProliferationUniqueBodyInt5", }, + ["socketed gems are supported by level 5 increased area of effect"] = { "SocketedGemsGetIncreasedAreaOfEffectUniqueDescentOneHandSword1", }, + ["socketed gems are supported by level 6 blind"] = { "ItemActsAsSupportBlindUniqueHelmetStrDex4b", }, + ["socketed gems are supported by level 8 trap"] = { "DisplaySupportedByTrapUniqueStaff4", }, + ["socketed gems chain # additional times"] = { "DisplaySocketedSkillsChainUniqueOneHandMace3", }, + ["socketed gems chain 1 additional times"] = { "DisplaySocketedSkillsChainUniqueOneHandMace3", }, + ["socketed gems cost and reserve life instead of mana"] = { "SocketedGemsHaveBloodMagicUniqueOneHandSword7", "SocketedGemsHaveBloodMagicUnique__1", "SocketedemsHaveBloodMagicUniqueShieldStrInt2", }, + ["socketed gems deal # to # added fire damage"] = { "SupportFlatAddedFireDamageUnique__1", }, + ["socketed gems deal 63 to 94 added fire damage"] = { "SupportFlatAddedFireDamageUnique__1", }, + ["socketed gems fire # additional projectiles"] = { "SocketedGemsAdditionalProjectilesUniqueStaff10_", }, + ["socketed gems fire 4 additional projectiles"] = { "SocketedGemsAdditionalProjectilesUniqueStaff10_", }, + ["socketed gems fire an additional projectile"] = { "SocketedGemsAdditionalProjectilesUniqueWand9", }, + ["socketed gems fire projectiles in a circle"] = { "SocketedGemsProjectilesNovaUniqueStaff10", }, + ["socketed gems have #% chance to cause enemies to flee on hit"] = { "SocketedItemsHaveChanceToFleeUniqueClaw6", }, + ["socketed gems have #% increased reservation efficiency"] = { "SocketedItemsHaveReducedReservationUniqueBodyDexInt4", "SocketedItemsHaveReducedReservationUniqueShieldStrInt2", "SocketedItemsHaveReducedReservationUnique__1", }, + ["socketed gems have #% reduced mana cost"] = { "SocketedGemsHaveReducedManaCostUniqueDescentClaw1", "SocketedGemsHaveReducedManaCostUniqueHelmetDexInt5", }, + ["socketed gems have #% reduced reservation efficiency"] = { "SocketedItemsHaveIncreasedReservationUnique__1", }, + ["socketed gems have #% reduced skill effect duration"] = { "SocketedGemsReducedDurationUniqueStaff10", }, + ["socketed gems have 10% chance to cause enemies to flee on hit"] = { "SocketedItemsHaveChanceToFleeUniqueClaw6", }, + ["socketed gems have 20% reduced reservation efficiency"] = { "SocketedItemsHaveIncreasedReservationUnique__1", }, + ["socketed gems have 25% increased reservation efficiency"] = { "SocketedItemsHaveReducedReservationUnique__1", }, + ["socketed gems have 30% increased reservation efficiency"] = { "SocketedItemsHaveReducedReservationUniqueShieldStrInt2", }, + ["socketed gems have 45% increased reservation efficiency"] = { "SocketedItemsHaveReducedReservationUniqueBodyDexInt4", }, + ["socketed gems have 50% reduced mana cost"] = { "SocketedGemsHaveReducedManaCostUniqueDescentClaw1", "SocketedGemsHaveReducedManaCostUniqueHelmetDexInt5", }, + ["socketed gems have 70% reduced skill effect duration"] = { "SocketedGemsReducedDurationUniqueStaff10", }, + ["socketed gems have elemental equilibrium"] = { "SocketedGemHasElementalEquilibriumUniqueRing25", }, + ["socketed gems have iron will"] = { "DisplaySocketedGemsSupportedByIronWillUniqueOneHandMace3", }, + ["socketed gems have no reservation"] = { "SocketedAurasReserveNoManaUnique__1", }, + ["socketed gems have secrets of suffering"] = { "SocketedGemHasSecretsOfSufferingUnique__1", }, + ["socketed golem skills gain #% of maximum life as extra maximum energy shield"] = { "LocalGolemLifeAddedAsESUnique__1", }, + ["socketed golem skills gain 20% of maximum life as extra maximum energy shield"] = { "LocalGolemLifeAddedAsESUnique__1", }, + ["socketed golem skills have #% chance to taunt on hit"] = { "LocalGolemTauntOnHitUnique__1_", }, + ["socketed golem skills have #% increased attack and cast speed"] = { "LocalGolemIncreasedAttackAndCastSpeedUnique__1", }, + ["socketed golem skills have 20% increased attack and cast speed"] = { "LocalGolemIncreasedAttackAndCastSpeedUnique__1", }, + ["socketed golem skills have 25% chance to taunt on hit"] = { "LocalGolemTauntOnHitUnique__1_", }, + ["socketed golem skills have minions regenerate #% of life per second"] = { "LocalGolemLifeRegenerationUnique__1", }, + ["socketed golem skills have minions regenerate 5% of life per second"] = { "LocalGolemLifeRegenerationUnique__1", }, + ["socketed melee gems have #% increased area of effect"] = { "SocketedMeleeGemsHaveIncreasedAoEUniqueTwoHandSword8", }, + ["socketed melee gems have 15% increased area of effect"] = { "SocketedMeleeGemsHaveIncreasedAoEUniqueTwoHandSword8", }, + ["socketed minion gems are supported by level # life leech"] = { "DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1", }, + ["socketed minion gems are supported by level 16 life leech"] = { "DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1", }, + ["socketed non-channelling bow skills are triggered by snipe"] = { "GrantsHighLevelSnipeSupportUnique__1", }, + ["socketed projectile spells deal #% more damage with hits"] = { "SocketedGemsMoreDamageForSpellsCastUnique__1", }, + ["socketed projectile spells deal 150% more damage with hits"] = { "SocketedGemsMoreDamageForSpellsCastUnique__1", }, + ["socketed projectile spells fire # additional projectiles"] = { "SocketedGemsAdditionalProjectilesUnique__1__", }, + ["socketed projectile spells fire 4 additional projectiles"] = { "SocketedGemsAdditionalProjectilesUnique__1__", }, + ["socketed projectile spells fire projectiles in a circle"] = { "SocketedGemsProjectilesNovaUnique__1", }, + ["socketed projectile spells have #% less skill effect duration"] = { "SocketedGemsLessDurationUnique__1", }, + ["socketed projectile spells have +# seconds to cooldown"] = { "SocketedGemsAddedCooldownUnique__1__", }, + ["socketed projectile spells have +4 seconds to cooldown"] = { "SocketedGemsAddedCooldownUnique__1__", }, + ["socketed projectile spells have 80% less skill effect duration"] = { "SocketedGemsLessDurationUnique__1", }, + ["socketed red gems get #% physical damage as extra fire damage"] = { "SocketedRedGemsHaveAddedFireDamageUniqueTwoHandSword8_", }, + ["socketed red gems get 10% physical damage as extra fire damage"] = { "SocketedRedGemsHaveAddedFireDamageUniqueTwoHandSword8_", }, + ["socketed skill gems get a #% cost & reservation multiplier"] = { "UniqueSpecialCorruptionSocketedGemsManaMultiplier_", }, + ["socketed skill gems get a 80% cost & reservation multiplier"] = { "UniqueSpecialCorruptionSocketedGemsManaMultiplier_", }, + ["socketed skills apply fire, cold and lightning exposure on hit"] = { "SocketedGemsApplyExposureReducedResistsImplicitR1", "SocketedGemsApplyExposureReducedResistsImplicitR2", "SocketedGemsApplyExposureReducedResistsImplicitR3___", }, + ["socketed skills deal double damage"] = { "SocketedSkillsDoubleDamageUnique__1_", }, + ["socketed skills summon your maximum number of totems in formation"] = { "SummonMaximumNumberOfSocketedTotemsUnique_1", }, + ["socketed slam gems are supported by level # earthbreaker"] = { "OneAncestorTotemBuffUnique__1", }, + ["socketed slam gems are supported by level 25 earthbreaker"] = { "OneAncestorTotemBuffUnique__1", }, + ["socketed support gems can also support skills from equipped body armour"] = { "SupportGemsSocketedInAmuletAlsoSupportBodySkills", }, + ["socketed support gems can also support skills from your main hand"] = { "SupportGemsSocketedInOffHandAlsoSupportMainHandSkills", }, + ["socketed travel skills deal #% more damage"] = { "TravelSkillMoreDamageUnique__1", }, + ["socketed travel skills deal 80% more damage"] = { "TravelSkillMoreDamageUnique__1", }, + ["socketed vaal skills deal #% more damage"] = { "LocalVaalDamageUnique__1_", }, + ["socketed vaal skills deal 150% more damage"] = { "LocalVaalDamageUnique__1_", }, + ["socketed vaal skills do not apply soul gain prevention"] = { "VillageLocalNoVaalSoulGainPrevention", }, + ["socketed vaal skills grant elusive when used"] = { "LocalVaalElusiveOnUseUnique__1_", }, + ["socketed vaal skills have #% chance to regain consumed souls when used"] = { "LocalVaalUsesToStoreUnique__1", }, + ["socketed vaal skills have #% increased area of effect"] = { "LocalVaalAreaOfEffectUnique__1", }, + ["socketed vaal skills have #% increased aura effect"] = { "LocalVaalAuraEffectUnique__1", }, + ["socketed vaal skills have #% increased projectile speed"] = { "LocalVaalProjectileSpeedUnique__1", }, + ["socketed vaal skills have #% increased skill effect duration"] = { "LocalVaalSkillEffectDurationUnique__1", }, + ["socketed vaal skills have #% reduced soul gain prevention duration"] = { "LocalVaalSoulGainPreventionUnique__1", }, + ["socketed vaal skills have 20% chance to regain consumed souls when used"] = { "LocalVaalUsesToStoreUnique__1", }, + ["socketed vaal skills have 30% reduced soul gain prevention duration"] = { "LocalVaalSoulGainPreventionUnique__1", }, + ["socketed vaal skills have 50% increased aura effect"] = { "LocalVaalAuraEffectUnique__1", }, + ["socketed vaal skills have 60% increased area of effect"] = { "LocalVaalAreaOfEffectUnique__1", }, + ["socketed vaal skills have 80% increased projectile speed"] = { "LocalVaalProjectileSpeedUnique__1", }, + ["socketed vaal skills have 80% increased skill effect duration"] = { "LocalVaalSkillEffectDurationUnique__1", }, + ["socketed vaal skills require #% less souls per use"] = { "LocalVaalSoulRequirementUnique__1", }, + ["socketed vaal skills require 30% less souls per use"] = { "LocalVaalSoulRequirementUnique__1", }, + ["socketed warcry skills have +# cooldown use"] = { "SocketedWarcryCooldownCountUnique__1", }, + ["socketed warcry skills have +1 cooldown use"] = { "SocketedWarcryCooldownCountUnique__1", }, + ["sockets cannot be modified"] = { "Roll6LinkedRandomColourSocketsUnique__1", }, + ["solipsism"] = { "KeystoneSolipsismUnique_1", }, + ["spell skills always deal critical strikes on final repeat"] = { "SpellsAlwaysCritFinalRepeatUnique__1_", }, + ["spell skills cannot deal critical strikes except on final repeat"] = { "SpellsNeverCritExceptFinalRepeatUnique__1", }, + ["spell skills deal no damage"] = { "CannotDealSpellDamageUnique__1", }, + ["spell skills have +(#)% to critical strike multiplier on final repeat"] = { "SpellsCriticalMultiplierFinalRepeatUnique__1", }, + ["spell skills have +(20-30)% to critical strike multiplier on final repeat"] = { "SpellsCriticalMultiplierFinalRepeatUnique__1", }, + ["spells cause you to gain energy shield equal to their upfront"] = { "GainSpellCostAsESUnique__1", }, + ["spells deal added chaos damage equal to #% of your maximum life"] = { "VillageSpellAddedChaosDamageMaximumLife", }, + ["spells deal added chaos damage equal to (#)% of your maximum life"] = { "SpellAddedChaosDamageMaximumLifeUnique__1", }, + ["spells deal added chaos damage equal to (15-20)% of your maximum life"] = { "SpellAddedChaosDamageMaximumLifeUnique__1", }, + ["spells deal added chaos damage equal to 4% of your maximum life"] = { "VillageSpellAddedChaosDamageMaximumLife", }, + ["spells fire an additional projectile"] = { "AdditionalSpellProjectilesUnique__1", }, + ["spells have #% reduced critical strike chance per intensity"] = { "CriticalStrikeChancePerIntensityUnique__1", }, + ["spells have (#)% increased critical strike chance per intensity"] = { "CriticalStrikeChancePerIntensityUnique__2", }, + ["spells have (30-50)% increased critical strike chance per intensity"] = { "CriticalStrikeChancePerIntensityUnique__2", }, + ["spells have 10% reduced critical strike chance per intensity"] = { "CriticalStrikeChancePerIntensityUnique__1", }, + ["spells have a #% chance to deal double damage"] = { "SpellsDoubleDamageChanceUnique__1", }, + ["spells have a 20% chance to deal double damage"] = { "SpellsDoubleDamageChanceUnique__1", }, + ["spells inflict intimidate on critical strike for # seconds"] = { "SpellCriticalStrikesIntimidateUnique__1", }, + ["spells inflict intimidate on critical strike for 4 seconds"] = { "SpellCriticalStrikesIntimidateUnique__1", }, + ["spells which have gained intensity recently gain # intensity every # seconds"] = { "SpellsGainIntensityUnique__1", }, + ["spells which have gained intensity recently gain 1 intensity every 0.5 seconds"] = { "SpellsGainIntensityUnique__1", }, + ["spells which have gained intensity recently lose # intensity every # seconds"] = { "SpellsLoseIntensityUnique__1", }, + ["spells which have gained intensity recently lose 1 intensity every 0.5 seconds"] = { "SpellsLoseIntensityUnique__1", }, + ["spend energy shield before mana for costs of socketed skills"] = { "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE1", "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE2", "EnergyShieldLocalDisplaySpendEnergyShieldForCostsBeforeManaForSocketedSkillsImplicitE3", }, + ["spreads tar when you block"] = { "GroundTarOnBlockUnique__1", }, + ["spreads tar when you take a critical strike"] = { "GroundTarOnCritTakenUniqueShieldInt2", }, + ["starts energy shield recharge when used"] = { "LocalFlaskStartEnergyShieldRechargeUnique_1", }, + ["steal power, frenzy, and endurance charges on hit"] = { "StealChargesOnHitPercentUnique__1", }, + ["strength from passives in radius is transformed to dexterity"] = { "JewelStrToDex", "JewelStrToDexUniqueJewel13", }, + ["strength from passives in radius is transformed to intelligence"] = { "JewelStrToInt", "JewelStrToIntUniqueJewel35", }, + ["strength provides no bonus to maximum life"] = { "NoMaximumLifePerStrengthUnique__1", "NoMaximumLifePerStrengthUnique__2", }, + ["strength's damage bonus instead grants #% increased melee"] = { "StrengthDamageBonus3Per10Unique__1", }, + ["strength's damage bonus instead grants 3% increased melee"] = { "StrengthDamageBonus3Per10Unique__1", }, + ["strike skills also target the previous location they were used"] = { "StrikeSkillMemoryUseUnique__1_______", }, + ["stun threshold is based on #% of your mana instead of life"] = { "StunThresholdBasedOnManaUnique__1", }, + ["stun threshold is based on 500% of your mana instead of life"] = { "StunThresholdBasedOnManaUnique__1", }, + ["stun threshold is based on energy shield instead of life"] = { "StunDurationBasedOnEnergyShieldUnique__1", }, + ["summon # additional skeletons with summon skeletons"] = { "SummonSkeletonsNumberOfSkeletonsToSummonUnique__1", }, + ["summon 4 additional skeletons with summon skeletons"] = { "SummonSkeletonsNumberOfSkeletonsToSummonUnique__1", }, + ["summon raging spirit has (#)% increased duration"] = { "RagingSpiritDurationUnique__1", }, + ["summon raging spirit has (20-30)% increased duration"] = { "RagingSpiritDurationUnique__1", }, + ["summon skitterbots also summons a scorching skitterbot"] = { "SummonFireSkitterbotUnique__1", }, + ["summoned arbalists convert #% of physical damage to cold damage"] = { "SummonArbalistPhysicalDamagePercentToConvertToCold_", }, + ["summoned arbalists convert #% of physical damage to fire damage"] = { "SummonArbalistPhysicalDamagePercentToConvertToFire", }, + ["summoned arbalists convert #% of physical damage to lightning damage"] = { "SummonArbalistPhysicalDamagePercentToConvertToLightning", }, + ["summoned arbalists convert 100% of physical damage to cold damage"] = { "SummonArbalistPhysicalDamagePercentToConvertToCold_", }, + ["summoned arbalists convert 100% of physical damage to fire damage"] = { "SummonArbalistPhysicalDamagePercentToConvertToFire", }, + ["summoned arbalists convert 100% of physical damage to lightning damage"] = { "SummonArbalistPhysicalDamagePercentToConvertToLightning", }, + ["summoned arbalists fire (#) additional projectiles"] = { "SummonArbalistNumberOfAdditionalProjectiles_", }, + ["summoned arbalists fire (2-4) additional projectiles"] = { "SummonArbalistNumberOfAdditionalProjectiles_", }, + ["summoned arbalists gain (#)% of physical damage as extra cold damage"] = { "SummonArbalistPhysicalDamagePercentToAddAsCold_", }, + ["summoned arbalists gain (#)% of physical damage as extra fire damage"] = { "SummonArbalistPhysicalDamagePercentToAddAsFire", }, + ["summoned arbalists gain (#)% of physical damage as extra lightning damage"] = { "SummonArbalistPhysicalDamagePercentToAddAsLightning", }, + ["summoned arbalists gain (30-40)% of physical damage as extra cold damage"] = { "SummonArbalistPhysicalDamagePercentToAddAsCold_", }, + ["summoned arbalists gain (30-40)% of physical damage as extra fire damage"] = { "SummonArbalistPhysicalDamagePercentToAddAsFire", }, + ["summoned arbalists gain (30-40)% of physical damage as extra lightning damage"] = { "SummonArbalistPhysicalDamagePercentToAddAsLightning", }, + ["summoned arbalists have (#)% chance to crush on hit"] = { "SummonArbalistChanceToCrushOnHit", }, + ["summoned arbalists have (#)% chance to deal double damage"] = { "SummonArbalistChanceToDealDoubleDamage___", }, + ["summoned arbalists have (#)% chance to freeze, shock, and ignite"] = { "SummonArbalistChanceToIgniteFreezeShockPercent", }, + ["summoned arbalists have (#)% chance to inflict cold exposure on hit"] = { "SummonArbalistChanceToInflictColdExposureonHit", }, + ["summoned arbalists have (#)% chance to inflict fire exposure on hit"] = { "SummonArbalistChanceToInflictFireExposureOnHit_", }, + ["summoned arbalists have (#)% chance to inflict lightning exposure on hit"] = { "SummonArbalistChanceToInflictLightningExposureOnHit_", }, + ["summoned arbalists have (#)% chance to intimidate for # seconds on hit"] = { "SummonArbalistChanceToIntimidateFor4SecondsOnHit", }, + ["summoned arbalists have (#)% chance to maim for # seconds on hit"] = { "SummonArbalistChanceToMaimfor4secondsOnHit_", }, + ["summoned arbalists have (#)% chance to poison"] = { "SummonArbalistChanceToPoisonPercent", }, + ["summoned arbalists have (#)% chance to unnerve for # seconds on hit"] = { "SummonArbalistChanceToUnnerveFor4SecondsOnHit_", }, + ["summoned arbalists have (#)% increased attack speed"] = { "SummonArbalistAttackSpeed_", }, + ["summoned arbalists have (10-20)% chance to crush on hit"] = { "SummonArbalistChanceToCrushOnHit", }, + ["summoned arbalists have (10-20)% chance to inflict cold exposure on hit"] = { "SummonArbalistChanceToInflictColdExposureonHit", }, + ["summoned arbalists have (10-20)% chance to inflict fire exposure on hit"] = { "SummonArbalistChanceToInflictFireExposureOnHit_", }, + ["summoned arbalists have (10-20)% chance to inflict lightning exposure on hit"] = { "SummonArbalistChanceToInflictLightningExposureOnHit_", }, + ["summoned arbalists have (15-25)% chance to freeze, shock, and ignite"] = { "SummonArbalistChanceToIgniteFreezeShockPercent", }, + ["summoned arbalists have (20-30)% chance to intimidate for 4 seconds on hit"] = { "SummonArbalistChanceToIntimidateFor4SecondsOnHit", }, + ["summoned arbalists have (20-30)% chance to maim for 4 seconds on hit"] = { "SummonArbalistChanceToMaimfor4secondsOnHit_", }, + ["summoned arbalists have (20-30)% chance to unnerve for 4 seconds on hit"] = { "SummonArbalistChanceToUnnerveFor4SecondsOnHit_", }, + ["summoned arbalists have (25-35)% chance to deal double damage"] = { "SummonArbalistChanceToDealDoubleDamage___", }, + ["summoned arbalists have (30-40)% increased attack speed"] = { "SummonArbalistAttackSpeed_", }, + ["summoned arbalists have (40-60)% chance to poison"] = { "SummonArbalistChanceToPoisonPercent", }, + ["summoned arbalists' attacks have (#)% chance to inflict bleeding"] = { "SummonArbalistChanceToBleedPercent_", }, + ["summoned arbalists' attacks have (40-60)% chance to inflict bleeding"] = { "SummonArbalistChanceToBleedPercent_", }, + ["summoned arbalists' projectiles chain +# times"] = { "SummonArbalistChains_", }, + ["summoned arbalists' projectiles chain +2 times"] = { "SummonArbalistChains_", }, + ["summoned arbalists' projectiles fork"] = { "SummonArbalistProjectilesFork", }, + ["summoned arbalists' projectiles pierce (#) additional targets"] = { "SummonArbalistTargetsToPierce", }, + ["summoned arbalists' projectiles pierce (2-4) additional targets"] = { "SummonArbalistTargetsToPierce", }, + ["summoned arbalists' projectiles split into #"] = { "SummonArbalistNumberOfSplits__", }, + ["summoned arbalists' projectiles split into 3"] = { "SummonArbalistNumberOfSplits__", }, + ["summoned golems are aggressive"] = { "GolemLargerAggroRadiusUnique__1", }, + ["summoned golems have (#)% increased cooldown recovery rate"] = { "GolemsSkillsCooldownRecoveryUnique__1_", }, + ["summoned golems have (30-45)% increased cooldown recovery rate"] = { "GolemsSkillsCooldownRecoveryUnique__1_", }, + ["summoned golems regenerate #% of their life per second"] = { "GolemLifeRegenerationUnique__1", }, + ["summoned golems regenerate 2% of their life per second"] = { "GolemLifeRegenerationUnique__1", }, + ["summoned holy relics have (#)% reduced cooldown recovery rate"] = { "HolyRelicCooldownRecoveryUnique__1", }, + ["summoned holy relics have (20-25)% reduced cooldown recovery rate"] = { "HolyRelicCooldownRecoveryUnique__1", }, + ["summoned phantasms have #% chance to refresh their duration when they hit a rare or unique enemy"] = { "SpiritMinionRefreshOnUniqueHitUnique__1", }, + ["summoned phantasms have 10% chance to refresh their duration when they hit a rare or unique enemy"] = { "SpiritMinionRefreshOnUniqueHitUnique__1", }, + ["summoned phantasms have no duration"] = { "PermanentPhantasmUnique__1", }, + ["summoned raging spirits deal (#)% increased damage"] = { "RagingSpiritDamageUnique__1_", "RagingSpiritDamageUnique__2", }, + ["summoned raging spirits deal (175-250)% increased damage"] = { "RagingSpiritDamageUnique__1_", }, + ["summoned raging spirits deal (25-40)% increased damage"] = { "RagingSpiritDamageUnique__2", }, + ["summoned raging spirits have (#)% increased maximum life"] = { "RagingSpiritLifeUnique__1", }, + ["summoned raging spirits have (25-40)% increased maximum life"] = { "RagingSpiritLifeUnique__1", }, + ["summoned raging spirits refresh their duration when they kill an ignited enemy"] = { "RagingSpiritDurationResetOnIgnitedEnemyUnique__1", }, + ["summoned raging spirits take #% of their maximum life per second as chaos damage"] = { "RagingSpiritChaosDamageTakenUnique__1", }, + ["summoned raging spirits take 20% of their maximum life per second as chaos damage"] = { "RagingSpiritChaosDamageTakenUnique__1", }, + ["summoned raging spirits' hits always ignite"] = { "RagingSpiritAlwaysIgniteUnique__1", }, + ["summoned raging spirits' melee strikes deal fire-only splash"] = { "RagingSpiritFireSplashDamageUnique__1", }, + ["summoned skeleton warriors and soldiers deal triple damage with this"] = { "SkeletonWarriorsTripleDamageUnique__1_", }, + ["summoned skeleton warriors and soldiers wield this weapon while in your main hand"] = { "SummonedSkeletonWarriorsGetWeaponStatsInMainHandUnique__1", }, + ["summoned skeleton warriors are permanent and follow you"] = { "SkeletonWarriorsPermanentMinionUnique__1", }, + ["summoned skeletons cover enemies in ash on hit"] = { "SkeletonsCoverEnemiesInAshUnique__1", }, + ["summoned skeletons have avatar of fire"] = { "SkeletonsHaveAvatarOfFireUnique__1_", }, + ["summoned skeletons take (#)% of their maximum life per second as fire damage"] = { "SkeletonsTakeFireDamagrPerSecondUnique__1", }, + ["summoned skeletons take (15-30)% of their maximum life per second as fire damage"] = { "SkeletonsTakeFireDamagrPerSecondUnique__1", }, + ["summoned skitterbots' auras affect you as well as enemies"] = { "SkitterbotAurasAlsoAffectYouUnique__1", }, + ["supreme decadence"] = { "KeystoneSupremeDecadenceUnique__1", }, + ["supreme ego"] = { "KeystoneSupremeEgoUnique__1_", }, + ["survival"] = { "ItemLimitUniqueJewel10", "ItemLimitUniqueJewel8", "ItemLimitUniqueJewel9", }, + ["take # chaos damage per second during effect"] = { "FlaskTakeChaosDamagePerSecondUnique__1", "FlaskTakeChaosDamagePerSecondUnique__2", }, + ["take # cold damage on reaching maximum power charges"] = { "TakeColdDamageOnMaximumPowerChargesUnique__1____", }, + ["take # fire damage per second while flame-touched"] = { "FireDamageTakenFireTouchedUnique__1", }, + ["take # fire damage when you ignite an enemy"] = { "TakeFireDamageOnIgniteUnique__1", }, + ["take # lightning damage when herald of thunder hits an enemy"] = { "TakeDamageWhenHeraldOfThunderHitsUnique__1__", }, + ["take # physical damage per second per siphoning charge if you've used a skill recently"] = { "DamageTakenPerSiphoningChargeOnSkillUseUnique__1", }, + ["take (#) fire damage when you use a skill"] = { "FireDamageOnSkillUseUnique__1", }, + ["take (#) physical damage when you use a movement skill"] = { "DamageOnMovementSkillUnique__1", }, + ["take (100-200) physical damage when you use a movement skill"] = { "DamageOnMovementSkillUnique__1", }, + ["take (300-500) fire damage when you use a skill"] = { "FireDamageOnSkillUseUnique__1", }, + ["take 100 fire damage when you ignite an enemy"] = { "TakeFireDamageOnIgniteUnique__1", }, + ["take 150 physical damage per second per siphoning charge if you've used a skill recently"] = { "DamageTakenPerSiphoningChargeOnSkillUseUnique__1", }, + ["take 250 chaos damage per second during effect"] = { "FlaskTakeChaosDamagePerSecondUnique__2", }, + ["take 250 lightning damage when herald of thunder hits an enemy"] = { "TakeDamageWhenHeraldOfThunderHitsUnique__1__", }, + ["take 30 chaos damage per second during effect"] = { "FlaskTakeChaosDamagePerSecondUnique__1", }, + ["take 500 cold damage on reaching maximum power charges"] = { "TakeColdDamageOnMaximumPowerChargesUnique__1____", }, + ["take 6000 fire damage per second while flame-touched"] = { "FireDamageTakenFireTouchedUnique__1", }, + ["take no burning damage if you've stopped taking burning damage recently"] = { "TakeNoBurningDamageIfStopBurningUnique__1", }, + ["take no extra damage from critical strikes"] = { "TakeNoExtraDamageFromCriticalStrikesUnique__1", }, + ["take no extra damage from critical strikes if you have a magic ring in left slot"] = { "LeftRingMagicNoCritDamageUnique__1", }, + ["take no extra damage from critical strikes if you've cast enfeeble in the past # seconds"] = { "EnfeebleNoExtraCritDamageUnique__1", }, + ["take no extra damage from critical strikes if you've cast enfeeble in the past 10 seconds"] = { "EnfeebleNoExtraCritDamageUnique__1", }, + ["taking chaos damage over time heals you instead while leeching life"] = { "ChaosDamageOverTimeHealsLeechLifeUnique__1", }, + ["targets are unaffected by your hexes"] = { "TargetsUnaffectedByYourHexesUnique__1", }, + ["taunts nearby enemies on use"] = { "UtilityFlaskTaunt_", }, + ["temporal chains has #% reduced effect on you"] = { "TemporalChainsEffectivenessOnSelfUniqueRing27", }, + ["temporal chains has 50% reduced effect on you"] = { "TemporalChainsEffectivenessOnSelfUniqueRing27", }, + ["temporal chains has no reservation if cast as an aura"] = { "TemporalChainsReservationCostUnique__1", "TemporalChainsReservationCostUnique__2", }, + ["temporal rift has no reservation"] = { "ChronomanceReservesNoMana", }, + ["thaumaturgical lure"] = { "FishingLureTypeUnique__1__", }, + ["the agnostic"] = { "KeystoneTheAgnosticUnique__1_", "KeystoneTheAgnosticUnique__2", }, + ["the effect of chill on you is reversed"] = { "EffectOfChillIsReversedUnique__1", }, + ["the impaler"] = { "KeystoneTheImpalerUnique__1_", }, + ["the stars are aligned if you have # influence types among other equipped items"] = { "FoolishlyDrawnAttentionUnique_1", }, + ["the stars are aligned if you have 6 influence types among other equipped items"] = { "FoolishlyDrawnAttentionUnique_1", }, + ["this jewel's socket has #% increased effect per allocated passive skill between"] = { "LocalIncreasedEffectPathToClassStartUnique__1", }, + ["this jewel's socket has 25% increased effect per allocated passive skill between"] = { "LocalIncreasedEffectPathToClassStartUnique__1", }, + ["this weapon's critical strike chance is #%"] = { "LocalAlwaysCrit", "LocalAttacksAlwaysCritUnique__1", }, + ["this weapon's critical strike chance is 100%"] = { "LocalAlwaysCrit", "LocalAttacksAlwaysCritUnique__1", }, + ["total recovery per second from life leech is doubled"] = { "TotalRecoveryLifeLeechDoubledUnique__1", }, + ["totems cannot be stunned"] = { "TotemsCannotBeStunnedUniqueJewel15", }, + ["totems fire # additional projectiles"] = { "AdditionalTotemProjectilesUniqueJewel26", }, + ["totems fire 2 additional projectiles"] = { "AdditionalTotemProjectilesUniqueJewel26", }, + ["totems gain #% to all elemental resistances per summoned totem"] = { "TotemElementalResistPerActiveTotemUnique_1", }, + ["totems gain -10% to all elemental resistances per summoned totem"] = { "TotemElementalResistPerActiveTotemUnique_1", }, + ["totems have #% increased attack speed per summoned totem"] = { "AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1", }, + ["totems have #% increased cast speed per summoned totem"] = { "SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1", }, + ["totems have 5% increased attack speed per summoned totem"] = { "AttacksByTotemsHaveReducedAttackSpeedPerTotemUnique_1", }, + ["totems have 5% increased cast speed per summoned totem"] = { "SpellsCastByTotemsHaveReducedCastSpeedPerTotemUnique_1", }, + ["totems reflect #% of their maximum life as fire damage to nearby enemies when hit"] = { "TotemReflectFireDamageUnique__1_", }, + ["totems reflect 100% of their maximum life as fire damage to nearby enemies when hit"] = { "TotemReflectFireDamageUnique__1_", }, + ["totems which would be killed by enemies become spectral totems for # seconds instead"] = { "GhostTotemDurationUnique__1", }, + ["totems which would be killed by enemies become spectral totems for 8 seconds instead"] = { "GhostTotemDurationUnique__1", }, + ["transfiguration of body"] = { "TransfigurationOfBodyUnique__1", }, + ["transfiguration of mind"] = { "TransfigurationOfMindUnique__1", }, + ["transfiguration of soul"] = { "TransfigurationOfSoulUnique__1_", }, + ["traps and mines deal (#) to (#) additional physical damage"] = { "TrapAndMineAddedPhysicalDamageUnique__1", }, + ["traps and mines deal (3-5) to (10-15) additional physical damage"] = { "TrapAndMineAddedPhysicalDamageUnique__1", }, + ["traps and mines have a #% chance to poison on hit"] = { "TrapPoisonChanceUnique__1", }, + ["traps and mines have a 25% chance to poison on hit"] = { "TrapPoisonChanceUnique__1", }, + ["traps cannot be triggered by enemies"] = { "TrapsCannotBeTriggeredByEnemiesUnique__1", }, + ["traps from skills are thrown randomly around targeted location"] = { "ThrowTrapsInCircleUnique__1", }, + ["traps from socketed skills create a smoke cloud when triggered"] = { "SocketedTrapSkillsCreateSmokeCloudWhenDetonated__1", }, + ["travel skills other than dash are disabled"] = { "DisableTravelSkillsExceptDashUnique__1", }, + ["treats enemy monster chaos resistance values as inverted"] = { "LocalTreatChaosResistanceAsInvertedUnique__1", }, + ["treats enemy monster elemental resistance values as inverted"] = { "LocalTreatElementalResistanceAsInvertedUnique__1", }, + ["trigger a socketed bow skill when you attack with a bow, with a # second cooldown"] = { "TriggerBowSkillsOnBowAttackUnique__1", }, + ["trigger a socketed bow skill when you attack with a bow, with a 1 second cooldown"] = { "TriggerBowSkillsOnBowAttackUnique__1", }, + ["trigger a socketed bow skill when you cast a spell while"] = { "TriggerBowSkillsOnCastUnique__1", }, + ["trigger a socketed cold spell on melee critical strike, with a # second cooldown"] = { "CastSocketedColdSkillsOnCriticalStrikeUnique__1", }, + ["trigger a socketed cold spell on melee critical strike, with a 0.25 second cooldown"] = { "CastSocketedColdSkillsOnCriticalStrikeUnique__1", }, + ["trigger a socketed elemental spell on block, with a # second cooldown"] = { "TriggerSocketedElementalSpellOnBlockUnique__1", }, + ["trigger a socketed elemental spell on block, with a 0.25 second cooldown"] = { "TriggerSocketedElementalSpellOnBlockUnique__1", }, + ["trigger a socketed fire spell on hit, with a # second cooldown"] = { "VillageTriggerSocketedFireSpellOnHit", }, + ["trigger a socketed fire spell on hit, with a 0.25 second cooldown"] = { "VillageTriggerSocketedFireSpellOnHit", }, + ["trigger a socketed lightning spell on hit, with a # second cooldown"] = { "CastSocketedLightningSpellsOnHit", }, + ["trigger a socketed lightning spell on hit, with a 0.25 second cooldown"] = { "CastSocketedLightningSpellsOnHit", }, + ["trigger a socketed spell on unarmed melee critical strike, with a # second cooldown"] = { "TriggerSocketedSpellOnUnarmedMeleeCriticalHitUnique__1", }, + ["trigger a socketed spell on unarmed melee critical strike, with a 0.25 second cooldown"] = { "TriggerSocketedSpellOnUnarmedMeleeCriticalHitUnique__1", }, + ["trigger a socketed spell when a hit from this"] = { "MainHandTriggerSocketedSpellOnFreezingHitUnique_1", }, + ["trigger a socketed spell when you attack with a bow, with a # second cooldown"] = { "TriggerSocketedSpellOnBowAttackUnique__1_", "TriggerSocketedSpellOnBowAttackUnique__2", }, + ["trigger a socketed spell when you attack with a bow, with a 0.3 second cooldown"] = { "TriggerSocketedSpellOnBowAttackUnique__1_", "TriggerSocketedSpellOnBowAttackUnique__2", }, + ["trigger a socketed spell when you attack with this weapon, with a # second cooldown"] = { "TriggerSocketedSpellOnAttackUnique__1", }, + ["trigger a socketed spell when you attack with this weapon, with a 0.25 second cooldown"] = { "TriggerSocketedSpellOnAttackUnique__1", }, + ["trigger a socketed spell when you block, with a # second cooldown"] = { "SupportVirulenceSpellsCastOnBlockUnique_1", }, + ["trigger a socketed spell when you block, with a 0.25 second cooldown"] = { "SupportVirulenceSpellsCastOnBlockUnique_1", }, + ["trigger a socketed warcry skill on losing endurance charges, with a # second cooldown"] = { "UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse", }, + ["trigger a socketed warcry skill on losing endurance charges, with a 0.25 second cooldown"] = { "UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse", }, + ["trigger commandment of inferno on critical strike"] = { "CommandmentOfInfernoOnCritUnique__1", }, + ["trigger level # animate guardian's weapon when animated guardian kills an enemy"] = { "AnimateGuardianWeaponOnGuardianKillUnique__1_", }, + ["trigger level # arcane wake after spending a total of # mana"] = { "TriggerArcaneWakeSkillUnique__1", }, + ["trigger level # assassin's mark when you hit a rare or unique enemy and have no mark"] = { "CurseOnHitCriticalWeaknessUniqueNewUnique__1", "CurseOnHitCriticalWeaknessUnique__1", }, + ["trigger level # bone nova when you hit a bleeding enemy"] = { "GrantsLevel20BoneNovaTriggerUnique__1", }, + ["trigger level # bone offering, flesh offering, spirit offering every # seconds in sequence"] = { "TriggerRandomOfferingSkillUnique__1", }, + ["trigger level # ceaseless flesh once every second"] = { "CeaselessFleshGrantedSkillUnique__1", }, + ["trigger level # cinders when equipped"] = { "ResentmentFireDegenSkillUnique__1", }, + ["trigger level # consecrate when you deal a critical strike"] = { "TriggeredConsecrateUnique__1", }, + ["trigger level # contaminate when you kill an enemy"] = { "TriggerFungalGroundOnKillUnique__1_", }, + ["trigger level # create lesser shrine when you kill an enemy"] = { "TriggeredSummonLesserShrineUnique__1", }, + ["trigger level # darktongue's kiss when you cast a curse spell"] = { "GrantsDarktongueKissUnique__1", }, + ["trigger level # death aura when equipped"] = { "ChaosDegenAuraUnique__1", }, + ["trigger level # elemental warding on melee hit while cursed"] = { "OnHitWhileCursedTriggeredCurseNovaUnique__1", }, + ["trigger level # feast of flesh every # seconds"] = { "TriggerFeastOfFleshSkillUnique__1_", }, + ["trigger level # fiery impact on melee hit with this weapon"] = { "TriggeredFieryImpactOnHitWithWeaponImplicitE1", "TriggeredFieryImpactOnHitWithWeaponImplicitE2_", "TriggeredFieryImpactOnHitWithWeaponImplicitE3", }, + ["trigger level # fire burst on kill"] = { "FireDamageToNearbyEnemiesOnKillUnique", }, + ["trigger level # flame dash when you use a socketed skill"] = { "TriggerFlameDashOnSocketedSkillUseImplicitE1", "TriggerFlameDashOnSocketedSkillUseImplicitE2", "TriggerFlameDashOnSocketedSkillUseImplicitE3_", }, + ["trigger level # fog of war when your trap is triggered"] = { "CreateSmokeCloudWhenTrapTriggeredUnique__1", }, + ["trigger level # glimpse of eternity when hit"] = { "GlimpseOfEternityWhenHitUnique__1", }, + ["trigger level # gore shockwave on melee hit if you have at least # strength"] = { "TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__1_", "TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__2", }, + ["trigger level # icicle burst when you hit a frozen enemy"] = { "GrantsLevel20IcicleNovaTriggerUnique__1", "VillageGrantsIcicleNovaTrigger", }, + ["trigger level # ignition blast when an enemy dies while ignited by you"] = { "TriggerIgnitionBlastOnIgnitedEnemyDeathUnique__1", }, + ["trigger level # intimidating cry on hit"] = { "TriggeredAbyssalCryUnique__1", }, + ["trigger level # intimidating cry when you lose cat's stealth"] = { "CatsStealthTriggeredIntimidatingCry", }, + ["trigger level # lightning bolt when you deal a critical strike"] = { "LightningStrikesOnCritUnique__1", "LightningStrikesOnCritUnique__2", "VillageLightningStrikesOnCrit", }, + ["trigger level # lightning warp on hit with this weapon"] = { "TriggeredLightningWarpUnique__1__", }, + ["trigger level # poacher's mark when you hit a rare or unique enemy and have no mark"] = { "PoachersMarkCurseOnHitHexproofUnique__1", }, + ["trigger level # rain of arrows when you attack with a bow"] = { "TriggerRainOfArrowsOnBowAttackUnique__1", }, + ["trigger level # shade form when hit"] = { "TriggerShadeFormWhenHitUnique__1", }, + ["trigger level # shield shatter when you block"] = { "StrUniqueShieldTriggerShieldShatterOnBlock", }, + ["trigger level # shock ground on hit"] = { "VillageShockedGroundOnHit", }, + ["trigger level # shock ground when hit"] = { "ShockedGroundWhenHitUnique__1", }, + ["trigger level # spirit burst when you use a skill while you have a spirit charge"] = { "LocalDisplayGrantLevelXSpiritBurstUnique__1", }, + ["trigger level # stalking pustule on kill"] = { "StalkingPustuleOnKillUnique__1", "VillageStalkingPustuleOnKill", }, + ["trigger level # starfall on melee critical strike"] = { "StarfellOnMeleeCriticalHitUnique__1", }, + ["trigger level # storm cascade when you attack"] = { "LocalGrantsStormCascadeOnAttackUnique__1", }, + ["trigger level # summon phantasm skill when you consume a corpse"] = { "TriggerSummonPhantasmOnCorpseConsumeUnique__1", "VillageSummonPhantasmOnCorpseConsume", }, + ["trigger level # summon spectral wolf on kill"] = { "SummonWolfOnKillUnique__1", "SummonWolfOnKillUnique__1New", "SummonWolfOnKillUnique__2_", "VillageSummonWolfOnKillOld", }, + ["trigger level # summon taunting contraption when you use a flask"] = { "SummonTauntingContraptionOnFlaskUseImplicitE1", }, + ["trigger level # summon void spawn every # seconds"] = { "GrantsSummonVoidSpawnUnique__1", }, + ["trigger level # suspend in time on casting a spell"] = { "SandMirageOnCastUnique__1", }, + ["trigger level # tawhoa's chosen when you attack with"] = { "GrantsTawhoasChosenUnique__1", }, + ["trigger level # tears of rot when equipped"] = { "AnimosityPhysDegenSkillUnique__1", }, + ["trigger level # toxic rain when you attack with a bow"] = { "TriggerToxicRainOnBowAttackUnique__1", }, + ["trigger level # twister when you gain avian's might or avian's flight"] = { "GrantsAvianTornadoUnique__1__", }, + ["trigger level # unseen strike every # seconds while phasing"] = { "UniqueSecretBladeGrantHiddenBlade", }, + ["trigger level # void gaze when you use a skill"] = { "GrantsVoidGazeUnique__1", }, + ["trigger level 1 create lesser shrine when you kill an enemy"] = { "TriggeredSummonLesserShrineUnique__1", }, + ["trigger level 1 fire burst on kill"] = { "FireDamageToNearbyEnemiesOnKillUnique", }, + ["trigger level 1 gore shockwave on melee hit if you have at least 150 strength"] = { "TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__1_", }, + ["trigger level 1 intimidating cry on hit"] = { "TriggeredAbyssalCryUnique__1", }, + ["trigger level 1 stalking pustule on kill"] = { "StalkingPustuleOnKillUnique__1", "VillageStalkingPustuleOnKill", }, + ["trigger level 10 assassin's mark when you hit a rare or unique enemy and have no mark"] = { "CurseOnHitCriticalWeaknessUniqueNewUnique__1", "CurseOnHitCriticalWeaknessUnique__1", }, + ["trigger level 10 consecrate when you deal a critical strike"] = { "TriggeredConsecrateUnique__1", }, + ["trigger level 10 contaminate when you kill an enemy"] = { "TriggerFungalGroundOnKillUnique__1_", }, + ["trigger level 10 fiery impact on melee hit with this weapon"] = { "TriggeredFieryImpactOnHitWithWeaponImplicitE1", }, + ["trigger level 10 flame dash when you use a socketed skill"] = { "TriggerFlameDashOnSocketedSkillUseImplicitE1", }, + ["trigger level 10 icicle burst when you hit a frozen enemy"] = { "VillageGrantsIcicleNovaTrigger", }, + ["trigger level 10 shock ground on hit"] = { "VillageShockedGroundOnHit", }, + ["trigger level 10 shock ground when hit"] = { "ShockedGroundWhenHitUnique__1", }, + ["trigger level 10 summon spectral wolf on kill"] = { "SummonWolfOnKillUnique__1", "SummonWolfOnKillUnique__1New", "SummonWolfOnKillUnique__2_", "VillageSummonWolfOnKillOld", }, + ["trigger level 10 void gaze when you use a skill"] = { "GrantsVoidGazeUnique__1", }, + ["trigger level 12 lightning bolt when you deal a critical strike"] = { "LightningStrikesOnCritUnique__1", }, + ["trigger level 15 feast of flesh every 5 seconds"] = { "TriggerFeastOfFleshSkillUnique__1_", }, + ["trigger level 15 fiery impact on melee hit with this weapon"] = { "TriggeredFieryImpactOnHitWithWeaponImplicitE2_", }, + ["trigger level 15 lightning warp on hit with this weapon"] = { "TriggeredLightningWarpUnique__1__", }, + ["trigger level 20 animate guardian's weapon when animated guardian kills an enemy"] = { "AnimateGuardianWeaponOnGuardianKillUnique__1_", }, + ["trigger level 20 arcane wake after spending a total of 200 mana"] = { "TriggerArcaneWakeSkillUnique__1", }, + ["trigger level 20 bone nova when you hit a bleeding enemy"] = { "GrantsLevel20BoneNovaTriggerUnique__1", }, + ["trigger level 20 bone offering, flesh offering, spirit offering every 5 seconds in sequence"] = { "TriggerRandomOfferingSkillUnique__1", }, + ["trigger level 20 cinders when equipped"] = { "ResentmentFireDegenSkillUnique__1", }, + ["trigger level 20 darktongue's kiss when you cast a curse spell"] = { "GrantsDarktongueKissUnique__1", }, + ["trigger level 20 death aura when equipped"] = { "ChaosDegenAuraUnique__1", }, + ["trigger level 20 elemental warding on melee hit while cursed"] = { "OnHitWhileCursedTriggeredCurseNovaUnique__1", }, + ["trigger level 20 fiery impact on melee hit with this weapon"] = { "TriggeredFieryImpactOnHitWithWeaponImplicitE3", }, + ["trigger level 20 flame dash when you use a socketed skill"] = { "TriggerFlameDashOnSocketedSkillUseImplicitE2", }, + ["trigger level 20 fog of war when your trap is triggered"] = { "CreateSmokeCloudWhenTrapTriggeredUnique__1", }, + ["trigger level 20 glimpse of eternity when hit"] = { "GlimpseOfEternityWhenHitUnique__1", }, + ["trigger level 20 icicle burst when you hit a frozen enemy"] = { "GrantsLevel20IcicleNovaTriggerUnique__1", }, + ["trigger level 20 intimidating cry when you lose cat's stealth"] = { "CatsStealthTriggeredIntimidatingCry", }, + ["trigger level 20 shade form when hit"] = { "TriggerShadeFormWhenHitUnique__1", }, + ["trigger level 20 shield shatter when you block"] = { "StrUniqueShieldTriggerShieldShatterOnBlock", }, + ["trigger level 20 spirit burst when you use a skill while you have a spirit charge"] = { "LocalDisplayGrantLevelXSpiritBurstUnique__1", }, + ["trigger level 20 starfall on melee critical strike"] = { "StarfellOnMeleeCriticalHitUnique__1", }, + ["trigger level 20 storm cascade when you attack"] = { "LocalGrantsStormCascadeOnAttackUnique__1", }, + ["trigger level 20 summon phantasm skill when you consume a corpse"] = { "VillageSummonPhantasmOnCorpseConsume", }, + ["trigger level 20 summon taunting contraption when you use a flask"] = { "SummonTauntingContraptionOnFlaskUseImplicitE1", }, + ["trigger level 20 summon void spawn every 4 seconds"] = { "GrantsSummonVoidSpawnUnique__1", }, + ["trigger level 20 suspend in time on casting a spell"] = { "SandMirageOnCastUnique__1", }, + ["trigger level 20 tawhoa's chosen when you attack with"] = { "GrantsTawhoasChosenUnique__1", }, + ["trigger level 20 tears of rot when equipped"] = { "AnimosityPhysDegenSkillUnique__1", }, + ["trigger level 20 twister when you gain avian's might or avian's flight"] = { "GrantsAvianTornadoUnique__1__", }, + ["trigger level 20 unseen strike every 0.5 seconds while phasing"] = { "UniqueSecretBladeGrantHiddenBlade", }, + ["trigger level 25 ceaseless flesh once every second"] = { "CeaselessFleshGrantedSkillUnique__1", }, + ["trigger level 25 summon phantasm skill when you consume a corpse"] = { "TriggerSummonPhantasmOnCorpseConsumeUnique__1", }, + ["trigger level 30 flame dash when you use a socketed skill"] = { "TriggerFlameDashOnSocketedSkillUseImplicitE3_", }, + ["trigger level 30 lightning bolt when you deal a critical strike"] = { "LightningStrikesOnCritUnique__2", }, + ["trigger level 30 poacher's mark when you hit a rare or unique enemy and have no mark"] = { "PoachersMarkCurseOnHitHexproofUnique__1", }, + ["trigger level 5 gore shockwave on melee hit if you have at least 150 strength"] = { "TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__2", }, + ["trigger level 5 ignition blast when an enemy dies while ignited by you"] = { "TriggerIgnitionBlastOnIgnitedEnemyDeathUnique__1", }, + ["trigger level 5 lightning bolt when you deal a critical strike"] = { "VillageLightningStrikesOnCrit", }, + ["trigger level 5 rain of arrows when you attack with a bow"] = { "TriggerRainOfArrowsOnBowAttackUnique__1", }, + ["trigger level 5 toxic rain when you attack with a bow"] = { "TriggerToxicRainOnBowAttackUnique__1", }, + ["trigger socketed curse spell when you cast a curse spell, with a # second cooldown"] = { "TriggerSocketedCurseSkillsOnCurseUnique__1_", }, + ["trigger socketed curse spell when you cast a curse spell, with a 0.25 second cooldown"] = { "TriggerSocketedCurseSkillsOnCurseUnique__1_", }, + ["trigger socketed minion spells on kill with this weapon"] = { "CastSocketedMinionSpellsOnKillUniqueBow12", }, + ["triggered spells poison on hit"] = { "TriggeredSpellsPoisonOnHitUnique_1", }, + ["triggers level # abberath's fury when equipped"] = { "RepeatingShockwave", }, + ["triggers level # blinding aura when equipped"] = { "BlindingAuraSkillUnique__1", }, + ["triggers level # cold aegis when equipped"] = { "TriggeredColdAegisSkillUnique__1", }, + ["triggers level # corpse walk when equipped"] = { "CorpseWalk", }, + ["triggers level # death walk when equipped"] = { "DeathWalk", }, + ["triggers level # elemental aegis when equipped"] = { "TriggeredElementalAegisSkillUnique__1_", }, + ["triggers level # fire aegis when equipped"] = { "TriggeredFireAegisSkillUnique__1_", }, + ["triggers level # lightning aegis when equipped"] = { "TriggeredLightningAegisSkillUnique__1", }, + ["triggers level # manifest dancing dervishes on rampage"] = { "DisplayManifestWeaponUnique__1", }, + ["triggers level # physical aegis when equipped"] = { "TriggeredPhysicalAegisSkillUnique__1", }, + ["triggers level # reflection when equipped"] = { "SummonDoubleOnCritUnique__1", }, + ["triggers level # summon arbalists when equipped"] = { "GrantsSummonArbalistsSkillUnique__1_", }, + ["triggers level 15 manifest dancing dervishes on rampage"] = { "DisplayManifestWeaponUnique__1", }, + ["triggers level 20 blinding aura when equipped"] = { "BlindingAuraSkillUnique__1", }, + ["triggers level 20 cold aegis when equipped"] = { "TriggeredColdAegisSkillUnique__1", }, + ["triggers level 20 corpse walk when equipped"] = { "CorpseWalk", }, + ["triggers level 20 death walk when equipped"] = { "DeathWalk", }, + ["triggers level 20 elemental aegis when equipped"] = { "TriggeredElementalAegisSkillUnique__1_", }, + ["triggers level 20 fire aegis when equipped"] = { "TriggeredFireAegisSkillUnique__1_", }, + ["triggers level 20 lightning aegis when equipped"] = { "TriggeredLightningAegisSkillUnique__1", }, + ["triggers level 20 physical aegis when equipped"] = { "TriggeredPhysicalAegisSkillUnique__1", }, + ["triggers level 20 reflection when equipped"] = { "SummonDoubleOnCritUnique__1", }, + ["triggers level 20 summon arbalists when equipped"] = { "GrantsSummonArbalistsSkillUnique__1_", }, + ["triggers level 7 abberath's fury when equipped"] = { "RepeatingShockwave", }, + ["unaffected by blind"] = { "BlindDoesNotAffectHitChanceUnique__1", }, + ["unaffected by burning ground"] = { "ImmuneToBurningGroundUniqueBootsStr3", "UniqueUnaffectedByBurningGround__1", }, + ["unaffected by chill if # redeemer items are equipped"] = { "UnaffectedByChill2RedeemerItemsUnique__1", }, + ["unaffected by chill if 2 redeemer items are equipped"] = { "UnaffectedByChill2RedeemerItemsUnique__1", }, + ["unaffected by chill while leeching mana"] = { "UnaffectedByChillLeechingManaUnique__1", }, + ["unaffected by chilled ground"] = { "ImmuneToChilledGroundUniqueBootsStrDex5", "UniqueUnaffectedByChilledGround__1", }, + ["unaffected by curses"] = { "UnaffectedByCursesUnique__1", }, + ["unaffected by damaging ailments"] = { "UnaffectedByDamagingAilmentsUnique__1", }, + ["unaffected by desecrated ground"] = { "ImmuneToDesecratedGroundUniqueBootsInt6", "UniqueUnaffectedByDesecratedGround__1", }, + ["unaffected by ignite"] = { "UnaffectedByIgniteUnique__1", }, + ["unaffected by ignite if # warlord items are equipped"] = { "UnaffectedByIgnite2WarlordItemsUnique__1", }, + ["unaffected by ignite if 2 warlord items are equipped"] = { "UnaffectedByIgnite2WarlordItemsUnique__1", }, + ["unaffected by ignite or shock if maximum life and maximum mana are within #"] = { "ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1", }, + ["unaffected by ignite or shock if maximum life and maximum mana are within 500"] = { "ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1", }, + ["unaffected by poison"] = { "UnaffectedByPoisonUnique__1_", }, + ["unaffected by poison if # hunter items are equipped"] = { "UnaffectedByPoison2HunterItemsUnique__1", }, + ["unaffected by poison if 2 hunter items are equipped"] = { "UnaffectedByPoison2HunterItemsUnique__1", }, + ["unaffected by shock"] = { "UnaffectedByShockUnique__1", "UnaffectedByShockUnique__2", }, + ["unaffected by shock if # crusader items are equipped"] = { "UnaffectedByShock2CrusaderItemsUnique__1", }, + ["unaffected by shock if 2 crusader items are equipped"] = { "UnaffectedByShock2CrusaderItemsUnique__1", }, + ["unaffected by shock while leeching energy shield"] = { "UnaffectedByShockLeechingESUnique__1", }, + ["unaffected by shocked ground"] = { "ImmuneToShockedGroundUniqueBootsDexInt4", "ImmuneToShockedGroundUnique__1", "UniqueUnaffectedByShockedGround__1", }, + ["unaffected by temporal chains"] = { "TemporalChainsEffectivenessOnSelfUnique__1", }, + ["unholy might"] = { "GrantsUnholyMightUnique__1", }, + ["unholy might during effect"] = { "LocalFlaskUnholyMightUnique__1", }, + ["unwavering stance"] = { "KeystoneUnwaveringStanceUnique__1", "UnwaveringStance", "UnwaveringStanceUnique_2", }, + ["uses both hand slots"] = { "DisableOffHandSlotUnique__1", "DisableOffhandSlot", }, + ["utility flasks gain (#) charges every # seconds"] = { "UtilityFlaskPassiveChargeGainUnique__1", }, + ["utility flasks gain (0-3) charges every 3 seconds"] = { "UtilityFlaskPassiveChargeGainUnique__1", }, + ["vaal attack skills you use yourself cost rage instead of requiring souls"] = { "VaalAttacksUseRageInsteadOfSoulsUnique__1_", }, + ["vaal pact"] = { "KeystoneVaalPactUnique__1", "KeystoneVaalPactUnique__2", }, + ["vaal skills deal (#)% more damage during effect"] = { "FlaskVaalSkillDamageUnique__2", }, + ["vaal skills deal (30-40)% more damage during effect"] = { "FlaskVaalSkillDamageUnique__2", }, + ["vaal skills have (#)% chance to regain consumed souls when used"] = { "VaalSkillRefundChanceUniqueCorruptedJewel5", }, + ["vaal skills have (#)% increased skill effect duration"] = { "VaalSkillDurationUniqueCorruptedJewel5", }, + ["vaal skills have (15-20)% chance to regain consumed souls when used"] = { "VaalSkillRefundChanceUniqueCorruptedJewel5", }, + ["vaal skills have (15-20)% increased skill effect duration"] = { "VaalSkillDurationUniqueCorruptedJewel5", }, + ["vaal skills used during effect do not apply soul gain prevention"] = { "FlaskVaalNoSoulPreventionUnique__1", }, + ["vaal skills used during effect have #% reduced soul gain prevention duration"] = { "FlaskVaalSoulPreventionDurationUnique__1_", }, + ["vaal skills used during effect have 10% reduced soul gain prevention duration"] = { "FlaskVaalSoulPreventionDurationUnique__1_", }, + ["versatile combatant"] = { "KeystoneVersatileCombatantUnique___1", }, + ["vitality has no reservation"] = { "VitalityNoReservationUnique__1", }, + ["vulnerability has no reservation if cast as an aura"] = { "VulnerabilityReservationCostUnique__1_", }, + ["warcries cost +#% of life"] = { "WarcryLifeCostUnique", }, + ["warcries cost +15% of life"] = { "WarcryLifeCostUnique", }, + ["warcries exert # additional attack"] = { "WarcriesExertAnAdditionalAttackImplicitE1_", }, + ["warcries exert # additional attacks"] = { "WarcriesExertAnAdditionalAttackImplicitE2", }, + ["warcries exert 1 additional attack"] = { "WarcriesExertAnAdditionalAttackImplicitE1_", }, + ["warcries exert 2 additional attacks"] = { "WarcriesExertAnAdditionalAttackImplicitE2", }, + ["warcries grant arcane surge to you and allies, with #% increased effect per # power, up to #%"] = { "WarcryGrantsArcaneSurgeUnique__1", }, + ["warcries grant arcane surge to you and allies, with 10% increased effect per 5 power, up to 50%"] = { "WarcryGrantsArcaneSurgeUnique__1", }, + ["warcries have infinite power"] = { "WarcryInfiniteEnemyPowerUnique__1__", }, + ["warcries knock back and interrupt enemies in a smaller area"] = { "WarcryKnockbackUnique__1", }, + ["warcry skills have (#)% increased area of effect"] = { "WarcryAreaOfEffectUnique__1", "WarcryAreaOfEffectUnique__2", }, + ["warcry skills have (15-25)% increased area of effect"] = { "WarcryAreaOfEffectUnique__2", }, + ["warcry skills have (25-35)% increased area of effect"] = { "WarcryAreaOfEffectUnique__1", }, + ["warcry skills' cooldown time is # seconds"] = { "WarcryCooldownIs2SecondsUnique__1", }, + ["warcry skills' cooldown time is 4 seconds"] = { "WarcryCooldownIs2SecondsUnique__1", }, + ["ward does not break during effect"] = { "FlaskWardUnbreakableDuringEffectUnique__1", }, + ["weapons you animate create an additional copy"] = { "NumberOfAdditionalAnimateWeaponCopiesUniqueTwoHandMace8", }, + ["when #% of your hex's duration expires on an enemy, eat # soul per enemy power"] = { "EatSoulAfterHexPercentCurseExpireUnique__1", }, + ["when 90% of your hex's duration expires on an enemy, eat 1 soul per enemy power"] = { "EatSoulAfterHexPercentCurseExpireUnique__1", }, + ["when a nearby minion dies, gain rotten bulwark equal to (#)% of its maximum life"] = { "FleshShieldOnMinionDeathUnique__1", }, + ["when a nearby minion dies, gain rotten bulwark equal to (7-9)% of its maximum life"] = { "FleshShieldOnMinionDeathUnique__1", }, + ["when an enemy hit deals elemental damage to you, their resistance to those elements becomes zero for # seconds"] = { "EnemyElementalResistanceZeroWhenHitUnique__1", }, + ["when an enemy hit deals elemental damage to you, their resistance to those elements becomes zero for 4 seconds"] = { "EnemyElementalResistanceZeroWhenHitUnique__1", }, + ["when hit during effect, #% of life loss from damage taken occurs over # seconds instead"] = { "LifeLossToPreventDuringFlaskEffectToLoseOverTimeUnique__1", }, + ["when hit during effect, 25% of life loss from damage taken occurs over 4 seconds instead"] = { "LifeLossToPreventDuringFlaskEffectToLoseOverTimeUnique__1", }, + ["when hit, gain a random movement speed modifier from #% reduced to #% increased, until hit again"] = { "RandomMovementVelocityWhenHitUnique__1", }, + ["when hit, gain a random movement speed modifier from 40% reduced to 100% increased, until hit again"] = { "RandomMovementVelocityWhenHitUnique__1", }, + ["when used in the synthesiser, the new item will have an additional herald modifier"] = { "HeraldBonusExtraMod1", "HeraldBonusExtraMod2_", "HeraldBonusExtraMod3_", "HeraldBonusExtraMod4", "HeraldBonusExtraMod5", }, + ["when you attack, take (#)% of life as physical damage for"] = { "TakePhysicalDamagePerWarcryExertingUnique__1", }, + ["when you attack, take (15-20)% of life as physical damage for"] = { "TakePhysicalDamagePerWarcryExertingUnique__1", }, + ["when you cast a spell, sacrifice all mana to gain added maximum lightning damage"] = { "DrainAllManaLightningDamageUnique__1", }, + ["when you kill a rare monster, you gain its modifiers for # seconds"] = { "GainRareMonsterModsOnKillUniqueBelt7_", }, + ["when you kill a rare monster, you gain its modifiers for 60 seconds"] = { "GainRareMonsterModsOnKillUniqueBelt7_", }, + ["when you kill a shocked enemy, inflict an equivalent shock on each nearby enemy"] = { "ShockNearbyEnemyOnShockedKillUniqueDescentTwoHandSword1_", "ShockNearbyEnemyOnShockedKillUniqueRing20", "VillageShockNearbyEnemyOnShockedKill", }, + ["when you kill an enemy cursed with a non-aura hex, become immune to"] = { "ImmuneToCursesRemainingDurationUnique__1", }, + ["when you kill an ignited enemy, inflict an equivalent ignite on each nearby enemy"] = { "IgniteNearbyEnemyOnIgnitedKillUniqueRing20", "IgniteNearbyEnemyOnIgnitedKillUnique__1", "VillageIgniteNearbyEnemyOnIgnitedKill", }, + ["when you lose temporal chains you gain maximum rage"] = { "GainRageOnLosingTemporalChainsUnique__1__", }, + ["while at maximum frenzy charges, attacks poison enemies"] = { "AtMaximumFrenzyChargesPoisonUniqueGlovesDexInt5", }, + ["while in her embrace, take #% of your total maximum life and energy shield as fire damage per second per level"] = { "TakeDamagePerLevelWhileHerEmbraceUnique__1_", }, + ["while in her embrace, take 0.5% of your total maximum life and energy shield as fire damage per second per level"] = { "TakeDamagePerLevelWhileHerEmbraceUnique__1_", }, + ["while minions have energy shield, their hits ignore monster elemental resistances"] = { "MinionHitsIgnoreResistanceWithESUnique__1_", }, + ["while on low life, life flasks gain (#) charges every # seconds"] = { "LifeFlaskPassiveChargeGainOnLowLifeUnique__1", }, + ["while on low life, life flasks gain (3-6) charges every 3 seconds"] = { "LifeFlaskPassiveChargeGainOnLowLifeUnique__1", }, + ["while your passive skill tree connects to the duelist's starting location, you gain:"] = { "StarterPassiveJewelUnique__9_", "StarterPassiveTreeJewelUnique__1_", }, + ["while your passive skill tree connects to the marauder's starting location, you gain:"] = { "StarterPassiveJewelUnique__8", "StarterPassiveTreeJewelUnique__7", }, + ["while your passive skill tree connects to the ranger's starting location, you gain:"] = { "StarterPassiveJewelUnique__10__", "StarterPassiveTreeJewelUnique__2", }, + ["while your passive skill tree connects to the scion's starting location, you gain:"] = { "StarterPassiveJewelUnique__14_", "StarterPassiveTreeJewelUnique__6", }, + ["while your passive skill tree connects to the shadow's starting location, you gain:"] = { "StarterPassiveJewelUnique__11__", "StarterPassiveTreeJewelUnique__3", }, + ["while your passive skill tree connects to the templar's starting location, you gain:"] = { "StarterPassiveJewelUnique__13", "StarterPassiveTreeJewelUnique__5", }, + ["while your passive skill tree connects to the witch's starting location, you gain:"] = { "StarterPassiveJewelUnique__12__", "StarterPassiveTreeJewelUnique__4", }, + ["wicked ward"] = { "KeystoneWickedWardUnique__1", }, + ["wind dancer"] = { "KeystoneWindDancerUnique__1_", }, + ["wintertide brand has (#)% increased chill effect"] = { "WintertideBrandChillEffectUnique__1_", }, + ["wintertide brand has (20-30)% increased chill effect"] = { "WintertideBrandChillEffectUnique__1_", }, + ["with # corrupted items equipped: #% of chaos damage taken does not bypass energy shield, and #% of physical damage taken bypasses energy shield"] = { "CorruptThresholdPhysBypassesESUniqueCorruptedJewel12", }, + ["with # corrupted items equipped: gain soul eater for # seconds on vaal skill use"] = { "CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11", }, + ["with # corrupted items equipped: life leech recovers based on your chaos damage instead"] = { "CorruptThresholdLifeLeechUsesChaosDamageUniqueCorruptedJewel10", }, + ["with # intelligence in radius, glacial cascade has an additional burst"] = { "GlacialCascadeThresholdJewel1", }, + ["with # notables allocated in radius, when you kill a rare monster, you gain # of its modifiers for # seconds"] = { "StealRareModUniqueJewel3", }, + ["with # total dexterity and strength in radius, prismatic skills deal #% less lightning damage"] = { "ElementalHitDisableLightningUniqueJewel_1", }, + ["with # total intelligence and dexterity in radius, prismatic skills deal #% less fire damage"] = { "ElementalHitDisableFireUniqueJewel_1", }, + ["with # total strength and intelligence in radius, prismatic skills deal #% less cold damage"] = { "ElementalHitDisableColdUniqueJewel_1", }, + ["with 4 notables allocated in radius, when you kill a rare monster, you gain 1 of its modifiers for 20 seconds"] = { "StealRareModUniqueJewel3", }, + ["with 40 intelligence in radius, glacial cascade has an additional burst"] = { "GlacialCascadeThresholdJewel1", }, + ["with 40 total dexterity and strength in radius, prismatic skills deal 50% less lightning damage"] = { "ElementalHitDisableLightningUniqueJewel_1", }, + ["with 40 total intelligence and dexterity in radius, prismatic skills deal 50% less fire damage"] = { "ElementalHitDisableFireUniqueJewel_1", }, + ["with 40 total strength and intelligence in radius, prismatic skills deal 50% less cold damage"] = { "ElementalHitDisableColdUniqueJewel_1", }, + ["with 5 corrupted items equipped: 50% of chaos damage taken does not bypass energy shield, and 50% of physical damage taken bypasses energy shield"] = { "CorruptThresholdPhysBypassesESUniqueCorruptedJewel12", }, + ["with 5 corrupted items equipped: gain soul eater for 10 seconds on vaal skill use"] = { "CorruptThresholdSoulEaterOnVaalSkillUseUniqueCorruptedJewel11", }, + ["with 5 corrupted items equipped: life leech recovers based on your chaos damage instead"] = { "CorruptThresholdLifeLeechUsesChaosDamageUniqueCorruptedJewel10", }, + ["with a ghastly eye jewel socketed, minions have #% chance to"] = { "MinionUnholyMightWithMinionAbyssJewelUnique__1", }, + ["with a ghastly eye jewel socketed, minions have +# to accuracy rating"] = { "MinionAccuracyWithMinionAbyssJewelUnique__1", }, + ["with a ghastly eye jewel socketed, minions have +1000 to accuracy rating"] = { "MinionAccuracyWithMinionAbyssJewelUnique__1", }, + ["with a ghastly eye jewel socketed, minions have 25% chance to"] = { "MinionUnholyMightWithMinionAbyssJewelUnique__1", }, + ["with a hypnotic eye jewel socketed, gain arcane surge on hit with spells"] = { "ArcaneSurgeOnHitWithSpellAbyssJewelUnique__1", }, + ["with a murderous eye jewel socketed, intimidate enemies for # seconds on hit with attacks"] = { "IntimidateOnHitWithMeleeAbyssJewelUnique__1", }, + ["with a murderous eye jewel socketed, intimidate enemies for 4 seconds on hit with attacks"] = { "IntimidateOnHitWithMeleeAbyssJewelUnique__1", }, + ["with a murderous eye jewel socketed, melee attacks grant # rage on hit"] = { "RageOnHitWithMeleeAbyssJewelUnique__1", }, + ["with a murderous eye jewel socketed, melee attacks grant 1 rage on hit"] = { "RageOnHitWithMeleeAbyssJewelUnique__1", }, + ["with a murderous eye jewel socketed, melee hits have #% chance to fortify"] = { "FortifyOnHitWithMeleeAbyssJewelUnique__1", }, + ["with a murderous eye jewel socketed, melee hits have 25% chance to fortify"] = { "FortifyOnHitWithMeleeAbyssJewelUnique__1", }, + ["with a searching eye jewel socketed, attacks have #% chance to grant onslaught on kill"] = { "OnslaughtOnKillWithRangedAbyssJewelUnique__1", }, + ["with a searching eye jewel socketed, attacks have 25% chance to grant onslaught on kill"] = { "OnslaughtOnKillWithRangedAbyssJewelUnique__1", }, + ["with a searching eye jewel socketed, blind enemies for # seconds on hit with attacks"] = { "BlindOnHitWithRangedAbyssJewelUnique__1", }, + ["with a searching eye jewel socketed, blind enemies for 4 seconds on hit with attacks"] = { "BlindOnHitWithRangedAbyssJewelUnique__1", }, + ["with a searching eye jewel socketed, maim enemies for # seconds on hit with attacks"] = { "MaimOnHitWithRangedAbyssJewelUnique__1", }, + ["with a searching eye jewel socketed, maim enemies for 4 seconds on hit with attacks"] = { "MaimOnHitWithRangedAbyssJewelUnique__1", }, + ["with at least # dexterity in radius, animate weapon can animate up to # ranged weapons"] = { "AnimateBowsAndWandsUnique____70", }, + ["with at least # dexterity in radius, barrage fires an additional # projectiles simultaneously on the first and final attacks"] = { "BarrageThresholdUnique__1", }, + ["with at least # dexterity in radius, caustic arrow deals #% increased damage over time"] = { "CausticArrowThresholdJewel2", }, + ["with at least # dexterity in radius, caustic arrow deals #% reduced damage with hits"] = { "CausticArrowThresholdJewel1", }, + ["with at least # dexterity in radius, caustic arrow has a #% chance on hit to poison enemies on caustic ground"] = { "CausticArrowThresholdJewel3", }, + ["with at least # dexterity in radius, dual strike deals splash damage"] = { "DualStrikeThresholdJewelMace", }, + ["with at least # dexterity in radius, dual strike has (#)% increased"] = { "DualStrikeThresholdJewelSword_", }, + ["with at least # dexterity in radius, dual strike has (#)% increased attack"] = { "DualStrikeThresholdJewelClaw", }, + ["with at least # dexterity in radius, dual strike has +(#)% to critical strike"] = { "DualStrikeThresholdJewelDagger", }, + ["with at least # dexterity in radius, dual strike has a #% chance"] = { "DualStrikeThresholdJewel_1", }, + ["with at least # dexterity in radius, dual strike hits intimidate enemies for"] = { "DualStrikeThresholdJewelAxe", }, + ["with at least # dexterity in radius, each spectral throw projectile gains #% increased damage each time it hits"] = { "SpectralThrowThresholdJewel__1", }, + ["with at least # dexterity in radius, ethereal knives fires projectiles in a circle"] = { "EtherealKnivesThresholdJewel_1", }, + ["with at least # dexterity in radius, fire trap throws up to # additional trap"] = { "FireTrapThresholdJewel1", }, + ["with at least # dexterity in radius, galvanic arrow has #% increased area of effect"] = { "ShrapnelShotThresholdJewel_1", }, + ["with at least # dexterity in radius, ice shot has #% increased area of effect"] = { "IceShotThresholdJewel__2", }, + ["with at least # dexterity in radius, ice shot pierces # additional targets"] = { "IceShotThresholdJewel__1", }, + ["with at least # dexterity in radius, melee damage"] = { "FrostBladesThresholdJewel_1", }, + ["with at least # dexterity in radius, split arrow fires projectiles in parallel"] = { "SplitArrowThresholdJewel1", }, + ["with at least # dexterity in radius, viper strike deals #% increased damage with hits and poison for each poison on the enemy"] = { "ViperStrikeThresholdJewel__1", }, + ["with at least # dexterity in radius, viper strike has a #% chance per poison on enemy to grant unholy might for # seconds on hit"] = { "ViperStrikeThresholdJewel__2", }, + ["with at least # intelligence in radius, # additional spark projectiles"] = { "SparkThresholdJewel1", }, + ["with at least # intelligence in radius, #% of damage taken recouped as mana if you've warcried recently"] = { "RallyingCryThresholdJewel__1", }, + ["with at least # intelligence in radius, blight has #% increased area of effect after # second of channelling"] = { "BlightThresholdJewel_1", }, + ["with at least # intelligence in radius, blight inflicts withered for # seconds"] = { "BlightThresholdJewel_2", "BlightThresholdJewel_3", "BlightThresholdJewel_4", }, + ["with at least # intelligence in radius, cold snap grants power charges instead of frenzy charges when enemies die in its area"] = { "ColdsnapThresholdJewel__1", }, + ["with at least # intelligence in radius, discharge has #% less area of effect"] = { "DischargeThresholdJewel__1", }, + ["with at least # intelligence in radius, each lightning tendrils repeat has #% increased area of effect per enemy hit"] = { "LightningTendrilsThresholdJewel_1", }, + ["with at least # intelligence in radius, fireball cannot ignite"] = { "FireballThresholdJewel__3", }, + ["with at least # intelligence in radius, fireball projectiles gain area as they travel farther, up to #% increased area of effect"] = { "FireballThresholdJewel__1", }, + ["with at least # intelligence in radius, freezing pulse fires # additional projectiles"] = { "FreezingPulseThresholdJewel_1", }, + ["with at least # intelligence in radius, frostbolt fires # additional projectiles"] = { "FrostboltThresholdJewel_1", }, + ["with at least # intelligence in radius, projectiles gain radius as they travel farther, up to a maximum of +# metres to radius"] = { "FireballThresholdJewel__2_", }, + ["with at least # intelligence in radius, raised"] = { "RaiseZombieThresholdJewel1", }, + ["with at least # intelligence in radius, raised spectres have a #% chance to gain soul eater for # seconds on kill"] = { "ChanceForSpectersToGainSoulEaterOnKillUnique__1", }, + ["with at least # intelligence in radius, rolling magma deals #% less damage"] = { "MagmaOrbThresholdJewel_2", }, + ["with at least # intelligence in radius, rolling magma fires an additional projectile"] = { "MagmaOrbThresholdJewel_1", }, + ["with at least # intelligence in radius, spark fires projectiles in a circle"] = { "SparkThresholdJewel_2", }, + ["with at least # intelligence in radius, summon skeletons can summon up to # skeleton mages"] = { "SummonSkeletonsThresholdUnique__1", }, + ["with at least # strength in radius, #% increased"] = { "GlacialHammerThresholdJewel__1", }, + ["with at least # strength in radius, combust is disabled"] = { "InfernalCryThresholdJewel", }, + ["with at least # strength in radius, glacial hammer deals"] = { "GlacialHammerThresholdJewel_2", }, + ["with at least # strength in radius, ground slam"] = { "GroundSlamThresholdUnique__1", }, + ["with at least # strength in radius, ground slam has a #% chance"] = { "GroundSlamThresholdUnique__2", }, + ["with at least # strength in radius, heavy strike has a "] = { "HeavyStrikeThresholdJewel___1", }, + ["with at least # strength in radius, hits with cleave fortify"] = { "CleaveThresholdJewel_1", }, + ["with at least # strength in radius, hits with vigilant strike fortify you and nearby allies for # seconds"] = { "VigilantStrikeThresholdJewel__1", }, + ["with at least # strength in radius, molten strike fires # additional projectiles"] = { "MoltenStrikeThresholdJewel_1", }, + ["with at least # strength in radius, molten strike projectiles chain on impacting ground"] = { "MoltenStrikeThresholdJewel__2", }, + ["with at least # strength, (#)% of damage dealt by your raised zombies is leeched to you as life"] = { "ZombiesLeechLifeToYouAt1000StrengthUnique__1", }, + ["with at least 1000 strength, (1.5-2)% of damage dealt by your raised zombies is leeched to you as life"] = { "ZombiesLeechLifeToYouAt1000StrengthUnique__1", }, + ["with at least 40 dexterity in radius, animate weapon can animate up to 20 ranged weapons"] = { "AnimateBowsAndWandsUnique____70", }, + ["with at least 40 dexterity in radius, barrage fires an additional 6 projectiles simultaneously on the first and final attacks"] = { "BarrageThresholdUnique__1", }, + ["with at least 40 dexterity in radius, caustic arrow deals 30% reduced damage with hits"] = { "CausticArrowThresholdJewel1", }, + ["with at least 40 dexterity in radius, caustic arrow deals 40% increased damage over time"] = { "CausticArrowThresholdJewel2", }, + ["with at least 40 dexterity in radius, caustic arrow has a 50% chance on hit to poison enemies on caustic ground"] = { "CausticArrowThresholdJewel3", }, + ["with at least 40 dexterity in radius, dual strike deals splash damage"] = { "DualStrikeThresholdJewelMace", }, + ["with at least 40 dexterity in radius, dual strike has (10-15)% increased attack"] = { "DualStrikeThresholdJewelClaw", }, + ["with at least 40 dexterity in radius, dual strike has (20-30)% increased"] = { "DualStrikeThresholdJewelSword_", }, + ["with at least 40 dexterity in radius, dual strike has +(20-30)% to critical strike"] = { "DualStrikeThresholdJewelDagger", }, + ["with at least 40 dexterity in radius, dual strike has a 20% chance"] = { "DualStrikeThresholdJewel_1", }, + ["with at least 40 dexterity in radius, dual strike hits intimidate enemies for"] = { "DualStrikeThresholdJewelAxe", }, + ["with at least 40 dexterity in radius, each spectral throw projectile gains 5% increased damage each time it hits"] = { "SpectralThrowThresholdJewel__1", }, + ["with at least 40 dexterity in radius, ethereal knives fires projectiles in a circle"] = { "EtherealKnivesThresholdJewel_1", }, + ["with at least 40 dexterity in radius, fire trap throws up to 1 additional trap"] = { "FireTrapThresholdJewel1", }, + ["with at least 40 dexterity in radius, galvanic arrow has 25% increased area of effect"] = { "ShrapnelShotThresholdJewel_1", }, + ["with at least 40 dexterity in radius, ice shot has 25% increased area of effect"] = { "IceShotThresholdJewel__2", }, + ["with at least 40 dexterity in radius, ice shot pierces 50 additional targets"] = { "IceShotThresholdJewel__1", }, + ["with at least 40 dexterity in radius, melee damage"] = { "FrostBladesThresholdJewel_1", }, + ["with at least 40 dexterity in radius, split arrow fires projectiles in parallel"] = { "SplitArrowThresholdJewel1", }, + ["with at least 40 dexterity in radius, viper strike deals 2% increased damage with hits and poison for each poison on the enemy"] = { "ViperStrikeThresholdJewel__1", }, + ["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"] = { "ViperStrikeThresholdJewel__2", }, + ["with at least 40 intelligence in radius, 10% of damage taken recouped as mana if you've warcried recently"] = { "RallyingCryThresholdJewel__1", }, + ["with at least 40 intelligence in radius, 2 additional spark projectiles"] = { "SparkThresholdJewel1", }, + ["with at least 40 intelligence in radius, blight has 25% increased area of effect after 1 second of channelling"] = { "BlightThresholdJewel_1", }, + ["with at least 40 intelligence in radius, blight inflicts withered for 2 seconds"] = { "BlightThresholdJewel_2", "BlightThresholdJewel_3", "BlightThresholdJewel_4", }, + ["with at least 40 intelligence in radius, cold snap grants power charges instead of frenzy charges when enemies die in its area"] = { "ColdsnapThresholdJewel__1", }, + ["with at least 40 intelligence in radius, discharge has 60% less area of effect"] = { "DischargeThresholdJewel__1", }, + ["with at least 40 intelligence in radius, each lightning tendrils repeat has 4% increased area of effect per enemy hit"] = { "LightningTendrilsThresholdJewel_1", }, + ["with at least 40 intelligence in radius, fireball cannot ignite"] = { "FireballThresholdJewel__3", }, + ["with at least 40 intelligence in radius, fireball projectiles gain area as they travel farther, up to 50% increased area of effect"] = { "FireballThresholdJewel__1", }, + ["with at least 40 intelligence in radius, freezing pulse fires 2 additional projectiles"] = { "FreezingPulseThresholdJewel_1", }, + ["with at least 40 intelligence in radius, frostbolt fires 2 additional projectiles"] = { "FrostboltThresholdJewel_1", }, + ["with at least 40 intelligence in radius, projectiles gain radius as they travel farther, up to a maximum of +0.4 metres to radius"] = { "FireballThresholdJewel__2_", }, + ["with at least 40 intelligence in radius, raised"] = { "RaiseZombieThresholdJewel1", }, + ["with at least 40 intelligence in radius, raised spectres have a 50% chance to gain soul eater for 20 seconds on kill"] = { "ChanceForSpectersToGainSoulEaterOnKillUnique__1", }, + ["with at least 40 intelligence in radius, rolling magma deals 50% less damage"] = { "MagmaOrbThresholdJewel_2", }, + ["with at least 40 intelligence in radius, rolling magma fires an additional projectile"] = { "MagmaOrbThresholdJewel_1", }, + ["with at least 40 intelligence in radius, spark fires projectiles in a circle"] = { "SparkThresholdJewel_2", }, + ["with at least 40 intelligence in radius, summon skeletons can summon up to 15 skeleton mages"] = { "SummonSkeletonsThresholdUnique__1", }, + ["with at least 40 strength in radius, 20% increased"] = { "GlacialHammerThresholdJewel__1", }, + ["with at least 40 strength in radius, combust is disabled"] = { "InfernalCryThresholdJewel", }, + ["with at least 40 strength in radius, glacial hammer deals"] = { "GlacialHammerThresholdJewel_2", }, + ["with at least 40 strength in radius, ground slam"] = { "GroundSlamThresholdUnique__1", }, + ["with at least 40 strength in radius, ground slam has a 35% chance"] = { "GroundSlamThresholdUnique__2", }, + ["with at least 40 strength in radius, heavy strike has a "] = { "HeavyStrikeThresholdJewel___1", }, + ["with at least 40 strength in radius, hits with cleave fortify"] = { "CleaveThresholdJewel_1", }, + ["with at least 40 strength in radius, hits with vigilant strike fortify you and nearby allies for 8 seconds"] = { "VigilantStrikeThresholdJewel__1", }, + ["with at least 40 strength in radius, molten strike fires 2 additional projectiles"] = { "MoltenStrikeThresholdJewel_1", }, + ["with at least 40 strength in radius, molten strike projectiles chain on impacting ground"] = { "MoltenStrikeThresholdJewel__2", }, + ["wither on hit with this weapon against enemies with at least # poisons on them"] = { "WitherOnHitEnemiesWithNumPoisonsUnique__1", }, + ["wither on hit with this weapon against enemies with at least 12 poisons on them"] = { "WitherOnHitEnemiesWithNumPoisonsUnique__1", }, + ["withered does not expire on enemies ignited by you"] = { "EnemiesIgniteWitherNeverExpiresUnique__1", }, + ["wrath has no reservation"] = { "WrathNoReservationUnique__1", }, + ["you always ignite while burning"] = { "AlwaysIgniteWhileBurningUnique__1", }, + ["you and enemies in your presence count as moving while affected by elemental ailments"] = { "EnemiesCountAsMovingElementalAilmentsUnique__1", }, + ["you and nearby allies gain #% increased damage"] = { "DisplayDamageAuraUniqueHelmetDexInt2", }, + ["you and nearby allies gain 50% increased damage"] = { "DisplayDamageAuraUniqueHelmetDexInt2", }, + ["you and nearby allies have # to # added chaos damage per white socket"] = { "AuraAddedChaosDamagePerWhiteSocketUnique__1", }, + ["you and nearby allies have # to # added cold damage per green socket"] = { "AuraAddedColdDamagePerGreenSocketUnique__1", }, + ["you and nearby allies have # to # added fire damage per red socket"] = { "AuraAddedFireDamagePerRedSocketUnique__1", }, + ["you and nearby allies have # to # added lightning damage per blue socket"] = { "AuraAddedLightningDamagePerBlueSocketUnique__1", }, + ["you and nearby allies have # to (#) added lightning damage per blue socket"] = { "VillageAuraAddedLightningDamagePerBlueSocket", }, + ["you and nearby allies have 1 to (8-12) added lightning damage per blue socket"] = { "VillageAuraAddedLightningDamagePerBlueSocket", }, + ["you and nearby allies have 16 to 144 added lightning damage per blue socket"] = { "AuraAddedLightningDamagePerBlueSocketUnique__1", }, + ["you and nearby allies have 47 to 61 added chaos damage per white socket"] = { "AuraAddedChaosDamagePerWhiteSocketUnique__1", }, + ["you and nearby allies have 56 to 88 added cold damage per green socket"] = { "AuraAddedColdDamagePerGreenSocketUnique__1", }, + ["you and nearby allies have 64 to 96 added fire damage per red socket"] = { "AuraAddedFireDamagePerRedSocketUnique__1", }, + ["you and your totems regenerate #% of life per second for each summoned totem"] = { "LifeRegenerationRatePercentUniqueShieldStr5", }, + ["you and your totems regenerate 0.5% of life per second for each summoned totem"] = { "LifeRegenerationRatePercentUniqueShieldStr5", }, + ["you are at maximum chance to block attack damage if you have not blocked recently"] = { "MaximumBlockChanceIfNotBlockedRecentlyUnique__1", }, + ["you are at maximum chance to block spell damage if you have not blocked recently"] = { "SpellBlockIfNotBlockedRecentlyUnique__1", }, + ["you are chilled when you are poisoned"] = { "ChilledWhilePoisonedUnique__1", }, + ["you are chilled while you are bleeding"] = { "ChilledWhileBleedingUnique__1_", }, + ["you are cursed with vulnerability"] = { "UniqueSelfCurseVulnerabilityLevel10", "UniqueSelfCurseVulnerabilityLevel20", }, + ["you are hexproof if you have a magic ring in right slot"] = { "RightRingMagicHexproofUnique__1", }, + ["you are shocked during effect, causing #% increased damage taken"] = { "ShockSelfDuringFlaskEffect__1", }, + ["you are shocked during effect, causing 50% increased damage taken"] = { "ShockSelfDuringFlaskEffect__1", }, + ["you are unaffected by bleeding if you've cast vulnerability in the past # seconds"] = { "VulnerabilityUnaffectedByBleedUnique__1", }, + ["you are unaffected by bleeding if you've cast vulnerability in the past 10 seconds"] = { "VulnerabilityUnaffectedByBleedUnique__1", }, + ["you are unaffected by freeze if you've cast frostbite in the past # seconds"] = { "FrostbiteUnaffectedByFreezeUnique__1", }, + ["you are unaffected by freeze if you've cast frostbite in the past 10 seconds"] = { "FrostbiteUnaffectedByFreezeUnique__1", }, + ["you are unaffected by ignite if you've cast flammability in the past # seconds"] = { "FlammabilityUnaffectedByIgniteUnique__1", }, + ["you are unaffected by ignite if you've cast flammability in the past 10 seconds"] = { "FlammabilityUnaffectedByIgniteUnique__1", }, + ["you are unaffected by shock if you've cast conductivity in the past # seconds"] = { "ConductivityUnaffectedByShockUnique__1", }, + ["you are unaffected by shock if you've cast conductivity in the past 10 seconds"] = { "ConductivityUnaffectedByShockUnique__1", }, + ["you can apply an additional curse"] = { "AdditionalCurseOnEnemiesUnique__1", "AdditionalCurseOnEnemiesUnique__2", "VillageAdditionalCurseOnEnemies", }, + ["you can apply an additional curse if # hunter items are equipped"] = { "AdditionalCurseOnEnemies6HunterItemsUnique__1", }, + ["you can apply an additional curse if 6 hunter items are equipped"] = { "AdditionalCurseOnEnemies6HunterItemsUnique__1", }, + ["you can apply an additional curse while at maximum power charges"] = { "ChargeBonusAdditionalCursePowerCharges", }, + ["you can apply one fewer curse"] = { "AdditionalCurseOnEnemiesUnique__3", }, + ["you can be touched by tormented spirits"] = { "TouchedByTormentedSpiritsUnique__1", }, + ["you can cast an additional brand"] = { "AdditionalBrandUnique__1", }, + ["you can catch exotic fish"] = { "FishingExoticFishUniqueFishingRod1", }, + ["you can have an additional tincture active"] = { "AdditionalTinctureUnique__1", }, + ["you can have an offering of each type"] = { "MultipleOfferingsAllowedUnique__1_", }, + ["you can inflict an additional ignite on each enemy"] = { "CanInflictMultipleIgnitesUniqueRing38", }, + ["you can only deal damage with this weapon or ignite"] = { "CanOnlyDealDamageWithThisWeapon", }, + ["you can only socket corrupted gems in this item"] = { "OnlySocketCorruptedGemsUnique__1", }, + ["you cannot be chilled for # seconds after being chilled"] = { "ChillImmunityWhenChilledUniqueGlovesStrInt1", }, + ["you cannot be chilled for 3 seconds after being chilled"] = { "ChillImmunityWhenChilledUniqueGlovesStrInt1", }, + ["you cannot be cursed with silence"] = { "SilenceImmunityUnique__1", }, + ["you cannot be frozen for # seconds after being frozen"] = { "FreezeImmunityWhenFrozenUniqueGlovesStrInt1", }, + ["you cannot be frozen for 3 seconds after being frozen"] = { "FreezeImmunityWhenFrozenUniqueGlovesStrInt1", }, + ["you cannot be hindered"] = { "YouCannotBeHinderedUnique__1", "YouCannotBeHinderedUnique__2", }, + ["you cannot be ignited for # seconds after being ignited"] = { "IgniteImmunityWhenIgnitedUniqueGlovesStrInt1", }, + ["you cannot be ignited for 3 seconds after being ignited"] = { "IgniteImmunityWhenIgnitedUniqueGlovesStrInt1", }, + ["you cannot be killed by reflected elemental damage"] = { "CannotDieToElementalReflect", }, + ["you cannot be maimed"] = { "AvoidMaimChanceUnique__1", }, + ["you cannot be shocked for # seconds after being shocked"] = { "ShockImmunityWhenShockedUniqueGlovesStrInt1", }, + ["you cannot be shocked for 3 seconds after being shocked"] = { "ShockImmunityWhenShockedUniqueGlovesStrInt1", }, + ["you cannot be shocked while at maximum endurance charges"] = { "CannotBeShockedWhileMaximumEnduranceChargesUnique_1", }, + ["you cannot be shocked while frozen"] = { "CannotBeShockedWhileFrozenUniqueStaff14", }, + ["you cannot be stunned while at maximum endurance charges"] = { "ChargeBonusCannotBeStunnedEnduranceCharges__", }, + ["you cannot cast socketed hex curse skills"] = { "TrapsApplySocketedCurseSkillsWhenTriggeredUnique_1", }, + ["you cannot deal critical strikes against non-shocked enemies"] = { "CannotCritNonShockedEnemiesUnique___1", }, + ["you cannot gain rage during soul gain prevention"] = { "CannotGainRageDuringSoulGainPreventionUnique__1__", }, + ["you cannot have more than # summoned totems of the same type"] = { "Maximum2OfSameTotemUnique__1", }, + ["you cannot have more than 2 summoned totems of the same type"] = { "Maximum2OfSameTotemUnique__1", }, + ["you cannot have non-animated, non-manifested minions"] = { "CannnotHaveNonAnimatedMinionsUnique__1", }, + ["you cannot have non-golem minions"] = { "CannotHaveNonGolemMinionsUnique__1_", }, + ["you cannot have non-spectre minions"] = { "CannotHaveNonSpectreMinionsUnique__1", }, + ["you cannot increase the quantity of items found"] = { "NoItemQuantity", }, + ["you cannot increase the rarity of items found"] = { "NoItemRarity", }, + ["you count as on full life while you are cursed with vulnerability"] = { "CountOnFullLifeWhileAffectedByVulnerabilityUnique__1", }, + ["you count as on low life while not on full life"] = { "CountAsLowLifeWhenNotOnFullLifeUnique__1", }, + ["you count as on low life while you are cursed with vulnerability"] = { "CountAsLowLifeWhileAffectedByVulnerabilityUnique__1", }, + ["you do not inherently take less damage for having fortification"] = { "AlternateFortifyUnique__1_", }, + ["you gain # grasping vines when you take a critical strike"] = { "GainVinesOnCriticalStrikeUnique__1", }, + ["you gain 3 grasping vines when you take a critical strike"] = { "GainVinesOnCriticalStrikeUnique__1", }, + ["you gain an endurance charge on kill"] = { "EnduranceChargeOnKillUniqueBodyStrDex3", }, + ["you gain divinity for # seconds on reaching maximum divine charges"] = { "GainDivinityOnMaxDivineChargeUnique__1", }, + ["you gain divinity for 10 seconds on reaching maximum divine charges"] = { "GainDivinityOnMaxDivineChargeUnique__1", }, + ["you gain onslaught for # seconds on critical strike"] = { "UndyingRageOnCritUniqueTwoHandMace6", }, + ["you gain onslaught for # seconds on culling strike"] = { "GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6", }, + ["you gain onslaught for # seconds on kill"] = { "OnslaughtBuffOnKillUniqueDagger12", "OnslaughtBuffOnKillUniqueRing12", }, + ["you gain onslaught for # seconds on killing taunted enemies"] = { "OnslaughtOnKillingTauntedEnemyUniqueShieldDex7", "OnslaughtOnKillingTauntedEnemyUnique__1", }, + ["you gain onslaught for # seconds on using a vaal skill"] = { "OnslaughtOnVaalSkillUseUniqueGlovesStrDex4", }, + ["you gain onslaught for # seconds per endurance charge when hit"] = { "GainOnslaughtWhenHitUniqueBodyStrDex3", }, + ["you gain onslaught for 1 seconds on killing taunted enemies"] = { "OnslaughtOnKillingTauntedEnemyUnique__1", }, + ["you gain onslaught for 2 seconds on killing taunted enemies"] = { "OnslaughtOnKillingTauntedEnemyUniqueShieldDex7", }, + ["you gain onslaught for 20 seconds on using a vaal skill"] = { "OnslaughtOnVaalSkillUseUniqueGlovesStrDex4", }, + ["you gain onslaught for 3 seconds on culling strike"] = { "GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6", }, + ["you gain onslaught for 3 seconds on kill"] = { "OnslaughtBuffOnKillUniqueDagger12", }, + ["you gain onslaught for 4 seconds on critical strike"] = { "UndyingRageOnCritUniqueTwoHandMace6", }, + ["you gain onslaught for 4 seconds on kill"] = { "OnslaughtBuffOnKillUniqueRing12", }, + ["you gain onslaught for 5 seconds per endurance charge when hit"] = { "GainOnslaughtWhenHitUniqueBodyStrDex3", }, + ["you gain phasing for # seconds on using a vaal skill"] = { "GainPhasingOnVaalSkillUseUnique__1", }, + ["you gain phasing for 10 seconds on using a vaal skill"] = { "GainPhasingOnVaalSkillUseUnique__1", }, + ["you grant (#) frenzy charges to allies on death"] = { "GrantFrenzyChargesToAlliesOnDeathUniqueGlovesStrInt1", }, + ["you grant (4-6) frenzy charges to allies on death"] = { "GrantFrenzyChargesToAlliesOnDeathUniqueGlovesStrInt1", }, + ["you have acceleration shrine buff while affected by no flasks"] = { "SoulcordAccelerationShrineUnique__1", }, + ["you have arcane surge during effect of any mana flask"] = { "ArcaneSurgeDuringManaFlaskEffectUnique__1", }, + ["you have brutal shrine buff while affected by no flasks"] = { "SoulcordBrutalShrineUnique_1", }, + ["you have consecrated ground around you while"] = { "ConsecratedGroundStationarySTRHighestUnique__1", }, + ["you have crimson dance if you have dealt a critical strike recently"] = { "CrimsonDanceIfCritRecentlyUnique__1", }, + ["you have crimson dance while you have cat's stealth"] = { "GainCrimsonDanceWithCatsStealthUnique__1", }, + ["you have culling strike against cursed enemies"] = { "CullingStrikeCursedEnemyUnique__1_", }, + ["you have diamond shrine buff while affected by no flasks"] = { "SoulcordDiamondShrineUnique_1", }, + ["you have echoing shrine buff while affected by no flasks"] = { "SoulcordEchoingShrineUnique__1", }, + ["you have elemental conflux if the stars are aligned"] = { "InfluenceElementalConfluxUnique__1", }, + ["you have far shot while you do not have iron reflexes"] = { "FarShotWhileYouDoNotHaveIronReflexesUnique__1_", }, + ["you have fungal ground around you while stationary"] = { "FungalAroundWhenStationaryUnique__1_", }, + ["you have gloom shrine buff while affected by no flasks"] = { "SoulcordGloomShrineUnique__1", }, + ["you have greater freezing shrine buff while affected by no flasks"] = { "SoulcordChillingShrineUnique_1", }, + ["you have greater shocking shrine buff while affected by no flasks"] = { "SoulcordShockingShrineUnique_1", }, + ["you have greater skeletal shrine buff while affected by no flasks"] = { "SoulcordSkeletonShrineUnique_1", }, + ["you have igniting, chilling and shocking conflux while affected by glorious madness"] = { "ElementalConfluxesGloriousMadnessUnique1", }, + ["you have impenetrable shrine buff while affected by no flasks"] = { "SoulcordImpenetrableShrineUnique_1", }, + ["you have iron reflexes while at maximum frenzy charges"] = { "ChargeBonusIronReflexesFrenzyCharges", }, + ["you have lesser brutal shrine buff"] = { "HasBrutalShrineBuffUnique__1", }, + ["you have lesser massive shrine buff"] = { "HasMassiveShrineBuffUnique__1", }, + ["you have massive shrine buff while affected by no flasks"] = { "SoulcordMassiveShrineUnique_1", }, + ["you have mind over matter while at maximum power charges"] = { "ChargeBonusMindOverMatterPowerCharges", }, + ["you have no armour or maximum energy shield"] = { "NoArmourOrEnergyShieldUnique__1_", }, + ["you have no intelligence"] = { "NoIntelligenceUnique__1_", }, + ["you have no life regeneration"] = { "NoLifeRegenerationUnique___1", }, + ["you have no mana regeneration"] = { "NoManaRegenerationUniqueHelmetInt_1", }, + ["you have onslaught while at maximum endurance charges"] = { "OnslaughtWithMaxEnduranceChargesUnique__1", }, + ["you have onslaught while fortified"] = { "OnslaughtWhileFortifiedUnique__1", }, + ["you have onslaught while not on low mana"] = { "OnslaughtWhileNotOnLowManaUnique__1_", }, + ["you have onslaught while on low life"] = { "OnslaughtOnLowLifeUnique__1", }, + ["you have onslaught while you have cat's agility"] = { "GainOnslaughtWhileCatsAgilityUnique__1_", }, + ["you have perfect agony if you've dealt a critical strike recently"] = { "PerfectAgonyIfCritRecentlyUnique__1", }, + ["you have phasing if energy shield recharge has started recently"] = { "PhasingOnBeginESRechargeUnique___1", }, + ["you have phasing if you have blocked recently"] = { "PhasingIfBlockedRecentlyUnique__1", }, + ["you have phasing if you've killed recently"] = { "GainPhasingIfKilledRecentlyUnique__1", }, + ["you have phasing while on low life"] = { "PhasingOnLowLifeUnique__1", }, + ["you have phasing while you have cat's stealth"] = { "GainPhasingWhileCatsStealthUnique__1", }, + ["you have replenishing shrine buff while affected by no flasks"] = { "SoulcordReplenishingShrineUnique_1", }, + ["you have resistance shrine buff while affected by no flasks"] = { "SoulcordResistanceShrineUnique_1", }, + ["you have resolute technique while you do not have elemental overload"] = { "GainResoluteTechniqueWithoutElementalOverloadUnique__1", }, + ["you have resonating shrine buff while affected by no flasks"] = { "SoulcordResonatingShrineUnique_1", }, + ["you have scorching conflux, brittle conflux and sapping conflux while your two highest attributes are equal"] = { "ScorchingBrittleSappingConfluxUnique__1", }, + ["you have tailwind if you've used a socketed vaal skill recently"] = { "LocalVaalTailwindIfUsedRecentlyUnique__1", }, + ["you have unholy might while you have no energy shield"] = { "UnholyMightOnZeroEnergyShieldUnique__1", }, + ["you have vaal pact if you've dealt a critical strike recently"] = { "VaalPactIfCritRecentlyUnique__1", }, + ["you have vaal pact while all socketed gems are red"] = { "VaalPactIfAllSocketedGemsAreRedUniqueTwoHandSword8", }, + ["you have vaal pact while at maximum endurance charges"] = { "ChargeBonusVaalPactEnduranceCharges", }, + ["you have zealot's oath if you haven't been hit recently"] = { "ZealotsOathIfHaventBeenHitRecentlyUnique__1", }, + ["you lose all endurance charges on reaching maximum endurance charges"] = { "LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_", }, + ["you lose all endurance charges when hit"] = { "LoseEnduranceChargesWhenHitUniqueBodyStrDex3", }, + ["you lose all spirit charges when taking a savage hit"] = { "LoseSpiritChargesOnSavageHitUnique__1_", }, + ["you only lose (#) crab barriers when you take physical damage from a hit"] = { "CrabBarriersLostWhenHitUnique__1_", }, + ["you only lose (5-7) crab barriers when you take physical damage from a hit"] = { "CrabBarriersLostWhenHitUnique__1_", }, + ["you take # chaos damage per second for # seconds on kill"] = { "ChaosDegenerationOnKillUniqueBodyStr3", }, + ["you take #% of damage from blocked hits"] = { "BaseBlockDamageTakenUnique__1___", }, + ["you take #% of elemental damage from blocked hits"] = { "ElementalDamageFromBlockedHitsUnique__1", }, + ["you take #% of your maximum life as chaos damage on use"] = { "FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2", }, + ["you take #% reduced extra damage from critical strikes"] = { "EnemyCriticalStrikeMultiplierUniqueRing8", "ReducedCriticalStrikeDamageTakenUniqueBelt13", }, + ["you take #% reduced extra damage from critical strikes while you have no power charges"] = { "ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1", }, + ["you take (#)% reduced extra damage from critical strikes"] = { "UniqueReducedExtraDamageFromCrits__1", }, + ["you take (#)% reduced extra damage from critical strikes by poisoned enemies"] = { "ReducedCriticalDamageTakenPoisonUnique__1", }, + ["you take (150-200)% reduced extra damage from critical strikes"] = { "UniqueReducedExtraDamageFromCrits__1", }, + ["you take (30-50)% reduced extra damage from critical strikes by poisoned enemies"] = { "ReducedCriticalDamageTakenPoisonUnique__1", }, + ["you take 100% of elemental damage from blocked hits"] = { "ElementalDamageFromBlockedHitsUnique__1", }, + ["you take 20% of damage from blocked hits"] = { "BaseBlockDamageTakenUnique__1___", }, + ["you take 30% reduced extra damage from critical strikes"] = { "ReducedCriticalStrikeDamageTakenUniqueBelt13", }, + ["you take 450 chaos damage per second for 3 seconds on kill"] = { "ChaosDegenerationOnKillUniqueBodyStr3", }, + ["you take 50% of your maximum life as chaos damage on use"] = { "FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2", }, + ["you take 50% reduced extra damage from critical strikes"] = { "EnemyCriticalStrikeMultiplierUniqueRing8", }, + ["you take 50% reduced extra damage from critical strikes while you have no power charges"] = { "ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1", }, + ["you take chaos damage instead of physical damage from bleeding"] = { "BleedOnSelfDealChaosDamageUnique__1", }, + ["your attacks deal # physical damage"] = { "AddedPhysicalDamageUniqueBodyDex2", }, + ["your attacks deal -3 physical damage"] = { "AddedPhysicalDamageUniqueBodyDex2", }, + ["your attacks do not cost mana"] = { "AttacksCostNoManaUniqueTwoHandAxe9", }, + ["your aura buffs do not affect allies"] = { "AurasCannotBuffAlliesUniqueOneHandSword11", }, + ["your chaos damage can chill"] = { "ChaosDamageCanChill", }, + ["your chaos damage can freeze"] = { "ChaosDamageCanFreezeUnique_1", }, + ["your chaos damage can ignite"] = { "ChaosDamageCanIgniteUnique__1", }, + ["your chaos damage can shock"] = { "ChaosDamageCanShockUniqueBow10", "ChaosDamageCanShockUnique__1", }, + ["your chaos damage has #% chance to poison enemies"] = { "ChaosDamageChanceToPoisonUnique__1", }, + ["your chaos damage has 60% chance to poison enemies"] = { "ChaosDamageChanceToPoisonUnique__1", }, + ["your chaos damage poisons enemies"] = { "ChaosDamagePoisonsUniqueDagger10", }, + ["your cold damage can ignite"] = { "ColdDamageIgnitesUnique__1", }, + ["your cold damage can ignite but not freeze or chill"] = { "ColdIgnitesUniqueHelmetDexInt4_", }, + ["your cold damage can poison"] = { "ColdDamageCanPoisonUnique__1_", }, + ["your cold damage cannot freeze"] = { "ColdDamageCannotFreeze", }, + ["your critical strike chance is lucky while on low life"] = { "LuckyCriticalsOnLowLifeUnique__1___", }, + ["your critical strike multiplier is #%"] = { "CriticalStrikeMultiplierIs250Unique__1", }, + ["your critical strike multiplier is 300%"] = { "CriticalStrikeMultiplierIs250Unique__1", }, + ["your critical strikes do not deal extra damage"] = { "CriticalMultiplierUniqueAmulet18", "NoBonusesFromCriticalStrikes", }, + ["your critical strikes do not deal extra damage during effect"] = { "FlaskHitsHaveNoCritMultiUnique__1", }, + ["your curse limit is equal to your maximum power charges"] = { "CurseLimitMaximumPowerChargesUnique__1", }, + ["your curses have #% increased effect if #% of curse duration expired"] = { "Curse50PercentCurseEffectUnique__1", }, + ["your curses have 25% increased effect if 50% of curse duration expired"] = { "Curse50PercentCurseEffectUnique__1", }, + ["your elemental damage can shock"] = { "ElementalDamageCanShockUnique__1__", }, + ["your energy shield starts at zero"] = { "EnergyShieldStartsAtZero", }, + ["your fire damage can poison"] = { "FireDamageCanPoisonUnique__1", }, + ["your fire damage can shock but not ignite"] = { "FireShocksUniqueHelmetDexInt4", }, + ["your hexes can affect hexproof enemies"] = { "IgnoreHexproofUnique___1", }, + ["your hits against marked enemy cannot be blocked or suppressed"] = { "VillageMarkedEnemyNoBlockSuppress", }, + ["your hits can only kill frozen enemies"] = { "CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3", }, + ["your hits can't be evaded"] = { "AlwaysHitsUniqueGlovesDexInt4", "AlwaysHitsUnique__2", }, + ["your hits can't be evaded by blinded enemies"] = { "HitsCannotBeEvadedAgainstBlindedEnemiesUnique__1", }, + ["your hits cannot inflict more than # impale"] = { "HitsCannotInflictMoreThanOneImpale_1UNUSED", }, + ["your hits cannot inflict more than 1 impale"] = { "HitsCannotInflictMoreThanOneImpale_1UNUSED", }, + ["your hits cannot penetrate or ignore elemental resistances"] = { "CannotPenetrateResistancesUnique__1", }, + ["your increases and reductions to quantity of items found also apply to damage"] = { "PercentDamagePerItemQuantityUnique__1", }, + ["your lightning damage can freeze but not shock"] = { "LightningFreezesUniqueHelmetDexInt4", }, + ["your lightning damage can ignite"] = { "LightningDamageCanIgniteUnique__1", }, + ["your lightning damage can poison"] = { "LightningDamageCanPoisonUnique__1", }, + ["your linked minions take (#)% less damage"] = { "LinksGrantMinionsLessDamageTakenUnique_1", }, + ["your linked minions take (65-75)% less damage"] = { "LinksGrantMinionsLessDamageTakenUnique_1", }, + ["your lucky or unlucky effects use the best or"] = { "ExtremelyLuckyUnique", }, + ["your mark transfers to another enemy when marked enemy dies"] = { "TransferMarkOnDeathUnique__1", }, + ["your maximum endurance charges is equal to your maximum frenzy charges"] = { "MaximumEnduranceChargesEqualToMaximumFrenzyChargesUnique__1", }, + ["your maximum frenzy charges is equal to your maximum power charges"] = { "MaximumFrenzyChargesEqualToMaximumPowerChargesUnique__1", }, + ["your maximum resistances are (#)%"] = { "MaximumResistancesOverrideUnique__1", "MaximumResistancesOverrideUnique__2", }, + ["your maximum resistances are (70-72)%"] = { "MaximumResistancesOverrideUnique__2", }, + ["your maximum resistances are (76-78)%"] = { "MaximumResistancesOverrideUnique__1", }, + ["your minions spread burning ground on death, dealing #% of their maximum life as fire damage per second"] = { "MinionBurningCloudOnDeathUnique__1", "VillageMinionBurningCloudOnDeath", }, + ["your minions spread burning ground on death, dealing 10% of their maximum life as fire damage per second"] = { "VillageMinionBurningCloudOnDeath", }, + ["your minions spread burning ground on death, dealing 20% of their maximum life as fire damage per second"] = { "MinionBurningCloudOnDeathUnique__1", }, + ["your minions spread caustic ground on death, dealing #% of their maximum life as chaos damage per second"] = { "MinionCausticCloudOnDeathUnique__1_", }, + ["your minions spread caustic ground on death, dealing 20% of their maximum life as chaos damage per second"] = { "MinionCausticCloudOnDeathUnique__1_", }, + ["your minions use your flasks when summoned"] = { "MinionsUseFlaskOnSummonUnique__1__", }, + ["your movement speed is #% of its base value"] = { "MovementVelocityOverrideUnique__1", }, + ["your movement speed is 150% of its base value"] = { "MovementVelocityOverrideUnique__1", }, + ["your nearby party members maximum endurance charges is equal to yours"] = { "ShareMaximumEnduranceChargesPartyUnique__1", }, + ["your physical damage can chill"] = { "PhysicalDamageCanChillUniqueDescentOneHandAxe1", "PhysicalDamageCanChillUniqueOneHandAxe1", }, + ["your physical damage can freeze"] = { "PhysicalDamageCanFreezeUnique__1_", }, + ["your physical damage can shock"] = { "PhysicalDamageCanShockUnique__1", }, + ["your raised spectres also gain arcane surge when you do"] = { "SpectresGainArcaneSurgeWhenYouDoUnique__1_", }, + ["your raised zombies count as corpses"] = { "ZombiesCountAsCorpsesUnique__1", }, + ["your skills deal you #% of mana spent on upfront skill mana costs as physical damage"] = { "PhysicalDamageOnSkillUseUniqueHelmetInt8", }, + ["your skills deal you 400% of mana spent on upfront skill mana costs as physical damage"] = { "PhysicalDamageOnSkillUseUniqueHelmetInt8", }, + ["your spells are disabled"] = { "SpellsAreDisabledUnique__1", }, + ["your spells have #% chance to shock against frozen enemies"] = { "SpellChanceToShockFrozenEnemiesUniqueRing34", }, + ["your spells have 100% chance to shock against frozen enemies"] = { "SpellChanceToShockFrozenEnemiesUniqueRing34", }, + ["your spells have culling strike"] = { "SpellsHaveCullingStrikeUniqueDagger4", }, + ["zealot's oath"] = { "KeystoneZealotsOathUnique__1_", "ZealotsOathUnique__1", }, + ["zealotry has no reservation"] = { "ZealotryNoReservationUnique__1", }, + +} \ No newline at end of file diff --git a/src/Export/Uniques/amulet.lua b/src/Export/Uniques/amulet.lua new file mode 100644 index 0000000000..9f83bee5af --- /dev/null +++ b/src/Export/Uniques/amulet.lua @@ -0,0 +1,1374 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Amulet +[[ +The Anvil +Amber Amulet +Variant: Pre 1.3.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 45 +Implicits: 1 +StrengthImplicitAmulet1 +{variant:1}AdditionalBlockUnique__2[10,10] +{variant:2,3}AdditionalBlockUnique__2[8,8] +{variant:4}BlockPercentUniqueAmulet16 +ReducedAttackSpeedUniqueAmulet16 +IncreasedCastSpeedUniqueAmulet16 +IncreasedPhysicalDamageReductionRatingUniqueAmulet16 +{variant:1}GainLifeOnBlockUniqueAmulet16[30,40] +{variant:2,3,4}GainLifeOnBlockUniqueAmulet16 +{variant:1}GainManaOnBlockUniqueAmulet16[10,20] +{variant:2,3,4}GainManaOnBlockUniqueAmulet16 +{variant:1}ReducedMovementVelocityUnique__2[-20,-20] +{variant:2}ReducedMovementVelocityUnique__2 +MaximumBlockChanceUniqueAmulet16 +{variant:1}ReflectDamageToAttackersOnBlockUniqueAmulet16[200,200][250,250] +{variant:2,3,4}ReflectDamageToAttackersOnBlockUniqueAmulet16 +]],[[ +Bloodsoaked Medallion +Amber Amulet +LevelReq: 49 +Implicits: 1 +StrengthImplicitAmulet1 +TalismanIncreasedCriticalChance +IncreasedLifeUnique__119 +ChaosResistUniqueAmulet23 +RecoverLifeAlteratingUnique__1 +]],[[ +Araku Tiki +Coral Amulet +Variant: Pre 3.19.0 +Variant: Current +Implicits: 1 +LifeRegenerationImplicitAmulet1 +{variant:1}EvasionOnLowLifeUniqueAmulet4[100,100] +{variant:2}EvasionOnLowLifeUniqueAmulet4 +IncreasedLifeUniqueAmulet18 +FireResistImplicitAmulet1 +{variant:1}LifeRegenerationOnLowLifeUniqueAmulet4 +{variant:2}ElusiveOnLowLifeUnique__1 +{variant:2}PhasingOnLowLifeUnique__1 +]],[[ +Ngamahu Tiki +Coral Amulet +Source: No longer obtainable +Requires Level 36 +Implicits: 1 +LifeRegenerationImplicitAmulet1 +FireDamagePercentUnique__6 +EvasionOnLowLifeUniqueAmulet4[100,100] +IncreasedLifeUniqueAmulet18 +FireResistImplicitAmulet1 +LifeRegenerationOnLowLifeUniqueAmulet4 +]],[[ +The Ascetic +Gold Amulet +Source: No longer obtainable +Requires Level 8 +Implicits: 1 +ItemFoundRarityIncreaseImplicitAmulet1 +ItemRarityWhileWearingANormalItemUnique__1 +ItemQuantityWhileWearingAMagicItemUnique__1 +]],[[ +Ashes of the Stars +Onyx Amulet +Variant: Pre 3.23.0 +Variant: Current +Source: Drops from unique{The Eater of Worlds} (Uber) +Requires Level 60 +Implicits: 1 +AllAttributesImplicitAmulet1 +GlobalGemExperienceGainUnique__1 +{variant:1}ReservationEfficiencyUnique__5[10,20] +GlobalSkillGemLevelUnique__1 +GlobalSkillGemQualityUnique__1 +]],[[ +Astramentis +Onyx Amulet +Requires Level 20 +Implicits: 1 +AllAttributesImplicitAmulet1 +AllAttributesUniqueAmulet8 +PhysicalAttackDamageReducedUniqueAmulet8 +]],[[ +Atziri's Foible +Paua Amulet +Variant: Pre 2.6.0 +Variant: Current +Requires Level 16 +Implicits: 1 +ManaRegenerationImplicitAmulet1 +{variant:1}IncreasedManaUniqueAmulet10[50,50] +{variant:2}IncreasedManaUniqueAmulet10 +{variant:1}MaximumManaUniqueAmulet10[8,12] +{variant:2}MaximumManaUniqueAmulet10 +{variant:1}ManaRegenerationUniqueAmulet10[40,60] +{variant:2}ManaRegenerationUniqueAmulet10 +GlobalItemAttributeRequirementsUniqueAmulet10 +]],[[ +Replica Atziri's Foible +Paua Amulet +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 16 +Implicits: 1 +LifeRegenerationRatePercentImplicitUnique__5 +IncreasedLifeUnique__104_ +LifeRecoveryRateUnique__1 +GlobalItemAttributeRequirementsUniqueAmulet10 +]],[[ +Aul's Uprising +Onyx Amulet +League: Delve +Source: Drops from unique{Aul, the Crystal King} +Variant: Strength: Anger +Variant: Strength: Determination +Variant: Strength: Pride +Variant: Strength: Purity of Fire +Variant: Strength: Vitality +Variant: Dexterity: Grace +Variant: Dexterity: Haste +Variant: Dexterity: Hatred +Variant: Dexterity: Purity of Ice +Variant: Intelligence: Clarity +Variant: Intelligence: Discipline +Variant: Intelligence: Malevolence +Variant: Intelligence: Purity of Elements +Variant: Intelligence: Purity of Lightning +Variant: Intelligence: Wrath +Variant: Intelligence: Zealotry +Variant: Envy +Requires Level 55 +Implicits: 1 +AllAttributesImplicitAmulet1 +{variant:1,2,3,4,5}StrengthImplicitAmulet1 +{variant:6,7,8,9}DexterityImplicitAmulet1 +{variant:10,11,12,13,14,15,16}IntelligenceImplicitAmulet1 +{variant:17}GrantsEnvyUnique__2 +{variant:1,2,3,4,5}GlobalPhysicalDamageReductionRatingPercentUnique__1 +{variant:6,7,8,9}GlobalEvasionRatingPercentUnique__1 +{variant:10,11,12,13,14,15,16}GlobalEnergyShieldPercentUnique__1 +{variant:17}AllAttributesUnique__10_ +IncreasedLifeUnique__114 +{variant:1,2,3,4,5}NearbyEnemiesReducedStunRecoveryUnique__1 +{variant:6,7,8,9}NearbyEnemiesGrantIncreasedFlaskChargesUnique__1 +{variant:1,2,3,4,5}NearbyEnemiesReducedStunRecoveryUnique__1 +{variant:10,11,12,13,14,15,16}NearbyEnemiesHaveIncreasedChanceToBeCritUnique__1 +{variant:17}AllDefencesUnique__4 +{variant:1}AngerNoReservationUnique__1 +{variant:2}DeterminationNoReservationUnique__1 +{variant:3}PrideNoReservationUnique__1 +{variant:4}PurityOfFireNoReservationUnique__1 +{variant:5}VitalityNoReservationUnique__1 +{variant:6}GraceNoReservationUnique__1 +{variant:7}HasteNoReservationUnique__1 +{variant:8}HatredNoReservationUnique__1_ +{variant:9}PurityOfIceNoReservationUnique__1_ +{variant:10}ClarityNoReservationUnique__1 +{variant:11}DisciplineNoReservationUnique__1 +{variant:12}MalevolenceNoReservationUnique__1 +{variant:13}PurityOfElementsNoReservationUnique__1_ +{variant:14}PurityOfLightningNoReservationUnique__1 +{variant:15}WrathNoReservationUnique__1 +{variant:16}ZealotryNoReservationUnique__1 +{variant:17}EnvyNoReservationUnique__1 +]],[[ +The Aylardex +Agate Amulet +Variant: Pre 2.5.0 +Variant: Current +Requires Level 32 +Implicits: 1 +HybridStrInt +IncreasedLifeUniqueAmulet4 +IncreasedManaUnique__22__ +ChargeBonusMaximumPowerCharges +IncreasedManaRegenerationPerPowerChargeUnique__1 +{variant:2}IncreasedPowerChargeDurationUnique__1 +DamageTakeFromManaBeforeLifePerPowerChargeUnique__1 +CriticalStrikeChancePerPowerChargeUnique__1 +]],[[ +Eternal Damnation +Agate Amulet +Variant: Pre 3.25.0 +Variant: Current +League: Sanctum +Source: Drops from unique{Lycia, Herald of the Scourge} in normal{The Beyond} +LevelReq: 52 +Implicits: 1 +HybridStrInt +IncreasedManaUniqueAmulet1 +ChaosResistUnique__27 +IncreasedMaximumResistsUnique__2 +ElementalDamageReductionChaosResistUnique__1 +{variant:2}MaximumEnduranceFrenzyPowerChargesIs0Unique__1 +]],[[ +Badge of the Brotherhood +Turquoise Amulet +Requires Level: 20 +Implicits: 1 +League: Blight +HybridDexInt +TravelSkillCooldownRecoveryPerFrenzyChargeUnique__1 +ElusiveBuffEffectPerPowerChargeUnique__1 +LoseFrenzyChargeOnTravelSkillUnique__1 +LosePowerChargeOnElusiveGainUnique__1_ +MaximumFrenzyChargesEqualToMaximumPowerChargesUnique__1 +]], +[[ +Replica Badge of the Brotherhood +Turquoise Amulet +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level: 60 +Implicits: 1 +HybridDexInt +MaximumEnduranceChargesEqualToMaximumFrenzyChargesUnique__1 +LoseFrenzyChargeOnTravelSkillUnique__1 +TravelSkillCooldownRecoveryPerFrenzyChargeUnique__1 +MaximumFortificationPerEnduranceChargeUnique__1 +LoseEnduranceChargeOnFortifyGainUnique__1 +]],[[ +Bisco's Collar +Gold Amulet +Variant: Pre 3.0.0 +Variant: Pre 3.2.0 +Variant: Current +Source: No longer obtainable +Requires Level 30 +Implicits: 1 +ItemFoundRarityIncreaseImplicitAmulet1 +{variant:1}MagicMonsterItemRarityUnique__1[150,150] +{variant:2,3}MagicMonsterItemRarityUnique__1 +{variant:1}NormalMonsterItemQuantityUnique__1[100,100] +{variant:2}NormalMonsterItemQuantityUnique__1[50,100] +{variant:3}NormalMonsterItemQuantityUnique__1 +]],[[ +Blightwell +Clutching Talisman +Variant: Pre 3.16.0 +Variant: Current +League: Talisman Hardcore +Talisman Tier: 2 +Requires Level 28 +Implicits: 1 +TalismanGlobalDefensesPercent +IncreasedEnergyShieldUniqueAmulet14 +FireResistUnique__2 +LightningResistUnique__1 +{variant:1}EnergyShieldDelayDuringFlaskEffect__1[-30,-30] +{variant:2}EnergyShieldDelayDuringFlaskEffect__1 +{variant:1}ESRechargeRateDuringFlaskEffect__1[400,400] +{variant:2}ESRechargeRateDuringFlaskEffect__1 +Corrupted +]],[[ +Blood of Corruption +Amber Amulet +Source: Use currency{Vaal Orb} on unique{Tear of Purity} +Requires Level 5 +Implicits: 1 +StrengthImplicitAmulet1 +GluttonyOfElementsUniqueAmulet23 +AddedChaosDamageUniqueAmulet23 +AllResistancesUniqueAmulet23 +ChaosResistUniqueAmulet23 +Corrupted +]],[[ +Bloodgrip +{variant:1}Coral Amulet +{variant:2,3}Marble Amulet +Variant: Pre 3.0.0 +Variant: Pre 3.12.0 +Variant: Current +Requires Level 74 +Implicits: 2 +{variant:1}LifeRegenerationUniqueAmulet25[120,240] +{variant:2,3}LifeRegenerationImplicitAmulet2 +AddedPhysicalDamageUniqueAmulet25 +IncreasedLifeUniqueAmulet25 +{variant:1,2}LifeRegenerationUniqueAmulet25[480,720] +{variant:3}LifeRegenerationUniqueAmulet25 +FlaskLifeRecoveryUniqueAmulet25 +NoExtraBleedDamageWhileMovingUniqueAmulet25 +]],[[ +Carnage Heart +Onyx Amulet +Variant: Pre 2.6.0 +Variant: Current +Requires Level 20 +Implicits: 1 +AllAttributesImplicitAmulet1 +AllAttributesUniqueAmulet9 +{variant:1}MaximumLifeUniqueRing16 +{variant:1}ReducedEnergyShieldPercentUniqueRing16 +AllResistancesUniqueAmulet9 +LifeLeechPermyriadUniqueAmulet9 +{variant:2}IncreasedDamageWhileLeechingUnique__1 +{variant:2}IncreasedLifeLeechRateUnique__1 +ExtraGore +]],[[ +Crystallised Omniscience +Onyx Amulet +Source: Drops from unique{The Searing Exarch} (Uber) +Requires Level 61 +Implicits: 1 +AllAttributesImplicitAmulet1 +AttributeModifiersAscendanceUnique__1_ +ElementalResistPerAscendanceUnique__1__ +ElementalPenPerAscendanceUnique__1 +AttributeRequirementsAscendanceUnique__1 +]],[[ +Daresso's Salute +Citrine Amulet +League: Anarchy +Requires Level 16 +Implicits: 1 +HybridStrDex +ReducedEnergyShieldPercentUniqueAmulet13 +FireResistUniqueAmulet13 +ColdResistUniqueAmulet13 +MovementVelocityOnFullLifeUniqueAmulet13 +IncreasedMeleeWeaponAndUnarmedRangeUniqueAmulet13 +MeleeDamageOnFullLifeUniqueAmulet13 +]],[[ +Defiance of Destiny +Paua Amulet +Variant: Pre 3.25.0 +Variant: Current +LevelReq: 49 +Implicits: 1 +ManaRegenerationImplicitAmulet1 +IncreasedLifeUnique__105 +FireResistUnique__34 +ColdResistUnique__39 +LightningResistUnique__29 +{variant:1}GainMissingLifeOnHitUnique__1[25,35] +{variant:2}GainMissingLifeOnHitUnique__1 +]],[[ +The Ephemeral Bond +Lapis Amulet +League: Heist +Requires Level 68 +Implicits: 1 +IntelligenceImplicitAmulet1 +ManaRegenerationUnique__13 +AllResistancesUnique__19 +CriticalStrikeMultiplierIfGainedPowerChargeUnique__1_ +GlobalAddedLightningDamagePerPowerChargeUnique__1 +PowerChargeDurationFinalUnique__1__ +]],[[ +The Untouched Soul +Gold Amulet +League: Affliction +Requires Level 48 +Implicits: 1 +ItemFoundRarityIncreaseImplicitAmulet1 +IncreasedLifeEmptyRedSocketUnique__1 +IncreasedAccuracyEmptyGreenSocketUnique__1 +IncreasedManaEmptyBlueSocketUnique__1 +AllResistEmptyWhiteSocketUnique__1 +]],[[ +Doedre's Tongue +Lapis Amulet +LevelReq: 24 +Implicits: 1 +IntelligenceImplicitAmulet1 +AllResistancesUnique__26 +ChanceToFreezeShockIgniteUnique__2 +CursedEnemiesCannotInflictElementalAilmentsUnique__1 +]],[[ +Extractor Mentis +Agate Amulet +Variant: Pre 3.5.0 +Variant: Current +Requires Level 16 +Implicits: 1 +HybridStrInt +StrengthUnique__26 +GrantEnemiesUnholyMightOnKillUnique__1 +GrantEnemiesOnslaughtOnKillUnique__1 +{variant:1}UnholyMightOnKillPercentChanceUnique__1[5,5][10,10] +{variant:2}UnholyMightOnKillPercentChanceUnique__1 +{variant:1}OnslaugtOnKillPercentChanceUnique__1[5,5][10,10] +{variant:2}OnslaugtOnKillPercentChanceUnique__1 +MaximumLifeOnKillPercentUnique__1 +]],[[ +Eye of Chayula +Onyx Amulet +Upgrade: Upgrades to unique{Presence of Chayula} using currency{Blessing of Chayula} +Requires Level 20 +Implicits: 1 +AllAttributesImplicitAmulet1 +MaximumLifeUniqueAmulet6 +ItemFoundRarityIncreaseUniqueAmulet6 +CannotBeStunnedUnique__1_ +]],[[ +Presence of Chayula +Onyx Amulet +League: Breach +Source: Upgraded from unique{Eye of Chayula} using currency{Blessing of Chayula} +Requires Level 60 +Implicits: 1 +AllAttributesImplicitAmulet1 +ItemFoundRarityIncreaseUniqueAmulet6 +ChaosResistUnique__5 +CannotBeStunned +MaximumLifeConvertedToEnergyShieldUnique__1 +]],[[ +Eye of Innocence +Citrine Amulet +Requires Level 68 +Implicits: 1 +HybridStrDex +ChanceToIgniteUnique__2 +DamageWhileIgnitedUnique__1 +TakeFireDamageOnIgniteUnique__1 +FireDamageLeechedAsLifeWhileIgnitedUnique__1 +]],[[ +Eyes of the Greatwolf +Greatwolf Talisman +Requires Level 52 +Has Alt Variant: true +Variant: Attributes +Variant: Global Defences +Variant: Chaos Damage +Variant: Attack Damage +Variant: Cold Damage +Variant: Fire Damage +Variant: Lightning Damage +Variant: Spell Damage +Variant: Global Physical Damage +Variant: Mana +Variant: Damage +Variant: Physical Damage Reduction +Variant: Chance to Freeze, Shock and Ignite +Variant: Crit Chance +Variant: Area of Effect +Variant: Attack/Cast Speed +Variant: Item Quantity (Pre 3.25.0) +Variant: Life +Variant: Crit Multiplier +Variant: Maximum number of Raised Zombies +Variant: Frenzy Charge on Kill +Variant: Power Charge on Kill +Variant: Endurance Charge on Kill +Variant: Life Regen +Variant: Cold taken as Fire +Variant: Cold taken as Lightning +Variant: Fire taken as Cold +Variant: Fire taken as Lightning +Variant: Lightning taken as Cold +Variant: Lightning taken as Fire +Variant: Gain Physical as random Element +Variant: Extra Pierces +Variant: Damage over Time Multiplier +Implicits: 32 +{variant:1}TalismanIncreasedAllAttributes[24,32] +{variant:2}TalismanGlobalDefensesPercent[30,50] +{variant:3}TalismanIncreasedChaosDamage[38,62] +{variant:4}TalismanAttackDamage[40,60] +{variant:5}TalismanIncreasedColdDamage[40,60] +{variant:6}TalismanIncreasedFireDamage[40,60] +{variant:7}TalismanIncreasedLightningDamage[40,60] +{variant:8}TalismanSpellDamage[40,60] +{variant:9}TalismanIncreasedPhysicalDamage[40,60] +{variant:10}TalismanIncreasedMana[40,60] +{variant:11}TalismanIncreasedDamage[50,70] +{variant:12}TalismanReducedPhysicalDamageTaken_[8,12] +{variant:13}TalismanChanceToFreezeShockIgnite_[8,12] +{variant:14}TalismanIncreasedCriticalChance[80,100] +{variant:15}TalismanIncreasedAreaOfEffect[10,16] +{variant:16}TalismanAttackAndCastSpeed[12,20] +{variant:17}TalismanIncreasedItemQuantity[12,20] +{variant:18}TalismanIncreasedLife[16,24] +{variant:19}TalismanIncreasedCriticalStrikeMultiplier_[48,72] +{variant:20}TalismanAdditionalZombie[2,2] +{variant:21}TalismanFrenzyChargeOnKill[20,20] +{variant:22}TalismanPowerChargeOnKill[20,20] +{variant:23}TalismanEnduranceChargeOnKill_[20,20] +{variant:24}TalismanPercentLifeRegeneration[240,240] +{variant:25}TalismanColdTakenAsFire[100,100] +{variant:26}TalismanColdTakenAsLightning[100,100] +{variant:27}TalismanFireTakenAsCold[100,100] +{variant:28}TalismanFireTakenAsLightning[100,100] +{variant:29}TalismanLightningTakenAsCold[100,100] +{variant:30}TalismanLightningTakenAsFire[100,100] +{variant:31}TalismanDamageDealtAddedAsRandomElement[12,24] +{variant:32}TalismanAdditionalPierce[4,4] +{variant:33}TalismanGlobalDamageOverTimeMultiplier[24,36] +LocalDoubleImplicitMods +]],[[ +The Felbog Fang +Citrine Amulet +League: Harvest +Source: Drops from unique{Namharim, Born of Night} in normal{The Sacred Grove} +Variant: Pre 3.20.0 +Variant: Current +Requires Level 61 +Implicits: 1 +HybridStrDex +IntelligenceUnique__19 +IncreasedCastSpeedUnique__20 +AreaOfEffectUnique__6 +{variant:1,2}Curse25PercentHinderEnemyUnique__1 +Curse50PercentCurseEffectUnique__1 +{variant:1}Curse75PercentEnemyDamageTakenUnique__1__[25,25][75,75] +{variant:2}Curse75PercentEnemyDamageTakenUnique__1__ +]],[[ +Fury Valve +Turquoise Amulet +Requires Level 40 +Implicits: 1 +HybridDexInt +IncreasedEvasionRatingPercentUnique__2 +AllResistancesUniqueAmulet14 +AdditionalProjectilesUnique__1__ +ProjectileSpeedUnique__10 +ProjectileModifiersApplyToSplitsUnique__1 +]],[[ +Gloomfang +Blue Pearl Amulet +Variant: Pre 3.11.0 +Variant: Current +Requires Level 77 +Implicits: 1 +ManaRegenerationImplicitAmulet2 +ChaosDamageLifeLeechPermyriadUnique__2 +LoseLifeOnSpellHitUnique__1 +LoseLifePerTargetUnique__1 +AdditionalChainUnique__2 +{variant:2}ProjectileSpeedUnique__7 +{variant:1}ProjectilesGainPercentOfNonChaosAsChaosUnique__1 +{variant:2}ProjectilesGainPercentOfNonChaosAsChaosUnique__2 +]],[[ +The Halcyon +Jade Amulet +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Drops in Tul Breach or from unique{Tul, Creeping Avalanche} +Upgrade: Upgrades to unique{The Pandemonius} using currency{Blessing of Tul} +Requires Level 35 +Implicits: 1 +DexterityImplicitAmulet1 +{variant:1}ColdDamagePercentUnique___10 +ColdResistUnique__11 +FreezeDurationUnique__1 +ChanceToFreezeUnique__3 +{variant:2}FreezeProliferationUnique__1 +IncreasedDamageIfFrozenRecentlyUnique__1 +]],[[ +The Pandemonius +Jade Amulet +League: Breach +Source: Upgraded from unique{The Halcyon} using currency{Blessing of Tul} +Requires Level 64 +Implicits: 1 +DexterityImplicitAmulet1 +ColdDamagePercentUnique__7 +ColdResistUnique__11 +ChillEnemiesWhenHitUnique__1 +OnHitBlindChilledEnemiesUnique__1_ +ColdPenetrationAgainstChilledEnemiesUnique__1 +]],[[ +Hinekora's Sight +Onyx Amulet +Requires Level 20 +Variant: Pre 3.16.0 +Variant: Pre 3.37.0 +Variant: Current +Implicits: 1 +AllAttributesImplicitAmulet1 +{variant:2}SpellDamageSuppressedUnique__1[3,3] +{variant:3}SpellDamageSuppressedUnique__1 +{variant:1}IncreasedAccuracyUniqueAmulet5[1000,1000] +{variant:2,3}IncreasedAccuracyUnique__3 +{variant:2,3}IncreasedEvasionRatingUnique__6_ +{variant:1}ChanceToDodgeUnique__1 +{variant:1}ChanceToDodgeSpellsUnique__1 +BlindImmunityUnique__1 +]],[[ +Replica Hinekora's Sight +Onyx Amulet +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +AllAttributesImplicitAmulet1 +IncreasedAccuracyUnique__3 +IncreasedPhysicalDamageReductionRatingUnique__10 +MaximumElementalResistanceUnique__3 +AvoidMaimChanceUnique__1 +]],[[ +Hyrri's Truth +Jade Amulet +League: Synthesis +Requires Level 64 +Variant: Pre 3.16.0 +Variant: Pre 3.19.0 +Variant: Current +LevelReq: 64 +Implicits: 1 +DexterityImplicitAmulet1 +{variant:1,2}GrantsAccuracyAuraSkillUnique__1[22,22] +{variant:3}GrantsAccuracyAuraSkillUnique__1 +{variant:1,2}DexterityUnique__15[25,35] +{variant:3}DexterityUnique__15 +{variant:1,2}AddedPhysicalDamageUnique__13[12,15][24,28] +{variant:1,2}AddedColdDamageUnique__6[11,15][23,28] +{variant:1,2}CriticalMultiplierUnique__3__[23,28] +{variant:3}CriticalMultiplierUnique__3__ +{variant:3}BowAttacksCullingStrikeUnique__1 +{variant:1,2}LifeLeechPermyriadUniqueAmulet9[80,100] +{variant:1,2,3}PrecisionAuraBonusUnique__1 +]],[[ +Replica Hyrri's Truth +Jade Amulet +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Variant: Pre 3.16.0 +Variant: Pre 3.19.0 +Variant: Current +LevelReq: 64 +Implicits: 1 +DexterityImplicitAmulet1 +GrantsHatredUnique__1__ +{variant:1,2}DexterityUnique__24[25,35] +{variant:3}DexterityUnique__24 +{variant:1,2}AddedPhysicalDamageUnique__12[12,15][24,28] +{variant:1,2}AddedColdDamageUnique__5[11,15][23,28] +{variant:1,2}CriticalMultiplierUnique__5[23,28] +{variant:3}CriticalMultiplierUnique__5 +{variant:3}BowAttacksCullingStrikeUnique__1 +{variant:1,2}ColdDamageLifeLeechPermyriadUniqueBelt9bNew[80,100] +{variant:1,2,3}HatredManaReservationEfficiencyUnique__1__ +]],[[ +The Ignomon +Gold Amulet +Variant: Pre 3.19.0 +Variant: Current +Requires Level 8 +Implicits: 1 +ItemFoundRarityIncreaseImplicitAmulet1 +{variant:1}DexterityUniqueAmulet7 +{variant:1}AddedFireDamageUniqueBootsStrDex1 +{variant:2}AddedFireDamageUniqueAmulet7 +IncreasedAccuracyUniqueAmulet7 +IncreasedEvasionRatingUniqueAmulet7 +FireResistUniqueAmulet7 +{variant:2}LightRadiusUnique__3 +{variant:2}DisplayBlindAuraUnique__1 +]],[[ +The Effigon +Gold Amulet +Source: No longer obtainable +Requires Level 57 +Implicits: 1 +ItemFoundRarityIncreaseImplicitAmulet1 +DexterityUniqueAmulet7 +AddedFireDamageUniqueBootsStrDex1 +IncreasedAccuracyUniqueAmulet7 +IncreasedEvasionRatingUniqueAmulet7 +FireResistUniqueAmulet7 +HitsCannotBeEvadedAgainstBlindedEnemiesUnique__1 +FirePenetrationAgainstBlindedEnemiesUnique__1 +]],[[ +Ikiaho's Promise +Coral Amulet +LevelReq: 30 +Implicits: 1 +LifeRegenerationImplicitAmulet1 +AddedManaRegenerationUnique__3 +BeltFlaskLifeRecoveryUnique__1 +FlaskManaRecoveryUnique__1 +LowLifeInstantLifeRecoveryUnique__1 +LowManaInstantManaRecoveryUnique__1 +]],[[ +Impresence +Onyx Amulet +Elder Item +Source: Drops from unique{The Elder} +Variant: Physical +Variant: Fire +Variant: Cold +Variant: Lightning +Variant: Chaos +Requires Level 64 +Implicits: 1 +AllAttributesImplicitAmulet1 +{variant:1}GlobalAddedPhysicalDamageUnique__1_ +{variant:2}GlobalAddedFireDamageUnique__1 +{variant:3}GlobalAddedColdDamageUnique__1 +{variant:4}GlobalAddedLightningDamageUnique__1_ +{variant:5}GlobalAddedChaosDamageUnique__1 +IncreasedLifeUnique__113 +{variant:1}IncreasedPhysicalDamageReductionRatingUniqueAmulet16 +{variant:2}LifeRegenerationRatePercentUnique__4_ +{variant:3}ManaRegenerationUnique__7 +{variant:4}EnergyShieldRegenerationUnique__2 +{variant:5}DegenerationDamageUnique__3 +{variant:1}StunRecoveryUnique__2 +{variant:2}FireResistUnique__14 +{variant:3}ColdResistUnique__20 +{variant:4}LightningResistUnique__11 +{variant:5}ChaosResistUnique__14 +{variant:1}VulnerabilityReservationCostUnique__1_ +{variant:2}FlammabilityReservationCostUnique__1 +{variant:3}FrostbiteReservationCostUnique__1 +{variant:4}ConductivityReservationCostUnique__1 +{variant:5}DespairReservationCostUnique__1 +GainDebilitatingPresenceUnique__1 +]],[[ +Karui Ward +Jade Amulet +Variant: Pre 2.6.0 +Variant: Current +Requires Level 5 +Implicits: 1 +DexterityImplicitAmulet1 +StrengthImplicitAmulet1 +IncreasedAccuracyUniqueAmulet5 +{variant:2}IncreasedProjectileDamageUnique__6 +ProjectileSpeedUniqueAmulet5 +MovementVelocityUniqueAmulet5 +]],[[ +Replica Karui Ward +Jade Amulet +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 5 +Implicits: 1 +DexterityImplicitAmulet1 +IntelligenceImplicitAmulet1 +IncreasedAccuracyUniqueAmulet5 +MovementVelocityUniqueAmulet5 +AreaOfEffectUnique__7_ +AreaDamageUnique__1 +]],[[ +Karui Charge +Jade Amulet +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +Requires Level 24 +Implicits: 1 +DexterityImplicitAmulet1 +StrengthImplicitAmulet1 +{variant:1}IncreasedAttackSpeedTransformedUnique__1[15,20] +{variant:2}IncreasedAttackSpeedTransformedUnique__1 +IncreasedAccuracyUniqueAmulet5 +{variant:2}IncreasedProjectileDamageUnique__6 +ProjectileSpeedUniqueAmulet5 +MovementVelocityUniqueAmulet5 +]],[[ +Leadership's Price +Onyx Amulet +League: Heist +Source: Drops from unique{Vic Vox} and unique{Vinny Vox} in normal{Contract: The Twins} +Requires Level 68 +Implicits: 1 +AllAttributesImplicitAmulet1 +MaximumFireResistUnique__1 +MaximumColdResistUnique__1_ +MaximumLightningResistUnique__1 +ScorchingBrittleSappingConfluxUnique__1 +CannotIgniteChillFreezeShockUnique__1 +Corrupted +]],[[ +Maligaro's Cruelty +Turquoise Amulet +Requires Level 20 +Implicits: 1 +HybridDexInt +MaximumLifeUnique__4_ +GainFrenzyChargeOnKillVsEnemiesWith5PoisonsUnique__1 +GainPowerChargeOnKillVsEnemiesWithLessThan5PoisonsUnique__1 +PoisonDamagePerFrenzyChargeUnique__1 +PoisonDurationPerPowerChargeUnique__1 +]],[[ +The Jinxed Juju +Citrine Amulet +Variant: Pre 3.16.0 +Variant: Pre 3.20.0 +Variant: Current +Requires Level 48 +Implicits: 1 +HybridStrDex +IntelligenceUnique__15_ +ChaosResistUnique__15 +{variant:1}CurseEffectivenessUnique__3_[10,15] +{variant:2}CurseEffectivenessUnique__3_ +{variant:1,3}AuraEffectGlobalUnique__1[10,15] +{variant:2}AuraEffectGlobalUnique__1[5,10] +DamageRemovedFromSpectresUnique__1 +]],[[ +Marylene's Fallacy +Lapis Amulet +Variant: Pre 1.3.0 +Variant: Pre 2.0.0 +Variant: Pre 2.2.0 +Variant: Pre 2.6.0 +Variant: Current +Requires Level 40 +Implicits: 1 +IntelligenceImplicitAmulet1 +IncreasedAccuracyUniqueAmulet17_ +{variant:1,2,3}CriticalMultiplierUniqueAmulet17[140,160] +{variant:4,5}CriticalMultiplierUniqueAmulet17 +IncreasedEvasionRatingUniqueAmulet17 +LightRadiusUniqueAmulet17 +{variant:1}LessCriticalStrikeChanceAmulet17[-60,-60] +{variant:2}LessCriticalStrikeChanceAmulet17[-50,-50] +{variant:3,4,5}LessCriticalStrikeChanceAmulet17[-40,-40] +CullingCriticalStrikes +]],[[ +Natural Hierarchy +Rotfeather Talisman +League: Talisman Standard, Talisman Hardcore +Talisman Tier: 3 +Requires Level 44 +Implicits: 1 +TalismanIncreasedDamage +IncreasedPhysicalDamagePercentUnique__3 +FireDamagePercentUnique__4 +ColdDamagePercentUnique__6 +LightningDamagePercentUnique__2 +IncreasedChaosDamageUnique__1 +Corrupted +]],[[ +Night's Hold +Black Maw Talisman +League: Talisman Standard, Talisman Hardcore +Talisman Tier: 1 +Requires Level 12 +Implicits: 1 +AmuletHasOneSocket +LocalIncreaseSocketedGemLevelUnique__8 +SocketedGemsHaveAddedChaosDamageUnique__1 +ItemActsAsSupportBlindUnique__1 +SupportedByCastOnStunUnique___1 +Corrupted +]],[[ +Perquil's Toe +Gold Amulet +Requires Level 29 +Implicits: 1 +ItemFoundRarityIncreaseImplicitAmulet1 +DexterityUnique__11 +MovementVelocityUnique__36_ +EnemyExtraDamageRollsWithLightningDamageUnique__1 +UniqueNearbyAlliesAreLuckyDisplay +]],[[ +The Primordial Chain +Coral Amulet +League: Delve +Requires Level 34 +Variant: Pre 3.26.0 +Variant: Current +Implicits: 1 +LifeRegenerationImplicitAmulet1 +MaximumGolemsUnique__3 +CannotHaveNonGolemMinionsUnique__1_ +GolemSizeUnique__1 +{variant:1}LessGolemDamageUnique__1[-35,-45] +{variant:2}LessGolemDamageUnique__1 +{variant:1}LessGolemLifeUnique__1[-35,-45] +{variant:2}LessGolemLifeUnique__1 +GolemMovementSpeedUnique__1 +PrimordialJewelCountUnique__1 +]],[[ +Rashkaldor's Patience +Jade Amulet +Variant: Pre 3.19.0 +Variant: Current +Requires Level 48 +Implicits: 1 +DexterityImplicitAmulet1 +IncreasedLifeUniqueAmulet19 +IncreasedManaUniqueAmulet19 +{variant:1}ElementalStatusAilmentDurationDescentUniqueQuiver1[20,20] +{variant:2}ElementalStatusAilmentDurationUniqueAmulet19 +{variant:1}GlobalItemAttributeRequirementsUniqueAmulet10[-10,-10] +{variant:2}GlobalItemAttributeRequirementsUniqueAmulet19 +{variant:1}ChanceToFreezeShockIgniteUniqueHelmetDexInt4 +{variant:2}ChanceToFreezeShockIgniteUniqueAmulet19 +{variant:1}MaxPowerChargesIsZeroUniqueAmulet19 +]],[[ +Retaliation Charm +Citrine Amulet +Variant: Pre 3.19.0 +Variant: Current +Requires Level 30 +Implicits: 1 +HybridStrDex +{variant:2}AttacksBlindOnHitChanceUnique__2 +{variant:1}IncreaseDamageOnBlindedEnemiesUnique__1 +{variant:1}CriticalChanceAgainstBlindedEnemiesUnique__2__ +{variant:1}ChanceToBlindOnCriticalStrikesUnique__2_ +BlindDoesNotAffectLightRadiusUnique__1 +BlindReflectedToSelfUnique__1 +{variant:2}FrenzyChargeOnHitBlindedUnique__1 +]],[[ +Rigwald's Curse +Wereclaw Talisman +League: Talisman Standard +Variant: Pre 2.2.0 +Variant: Current +Talisman Tier: 2 +Requires Level 28 +Implicits: 2 +{variant:1}TalismanIncreasedCriticalStrikeMultiplier_[16,24] +{variant:2}TalismanIncreasedCriticalStrikeMultiplier_ +BaseUnarmedCriticalStrikeChanceUnique__1 +ClawDamageModsAlsoAffectUnarmedUnique__1 +ClawAttackSpeedModsAlsoAffectUnarmed__1 +ClawCritModsAlsoAffectUnarmed__1 +Corrupted +]],[[ +Sacrificial Heart +Paua Amulet +Variant: Pre 3.14.0 +Variant: Current +League: Incursion +Source: Drops from unique{The Vaal Omnitect} +Upgrade: Upgrades to unique{Zerphi's Heart} via currency{Vial of Sacrifice} +Requires Level 32 +Implicits: 1 +ManaRegenerationImplicitAmulet1 +GlobalAddedFireDamageUnique__2 +GlobalAddedColdDamageUnique__2_ +GlobalAddedLightningDamageUnique__2_ +{variant:1}GainPowerChargeOnUsingVaalSkillUnique__1 +LifeGainOnHitIfVaalSkillUsedRecentlyUnique__1 +MovementVelocityIfVaalSkillUsedRecentlyUnique__1_ +{variant:2}GainMaximumPowerChargesOnVaalSkillUseUnique__1 +]],[[ +Zerphi's Heart +Paua Amulet +League: Incursion +Source: Upgraded from unique{Sacrificial Heart} via currency{Vial of Sacrifice} +Variant: Pre 3.10.0 +Variant: Current +Requires Level 70 +Implicits: 1 +ManaRegenerationImplicitAmulet1 +GlobalAddedChaosDamageUnique__4__ +GlobalItemAttributeRequirementsUnique__2 +ChaosDamageCanIgniteChillAndShockUnique__1 +{variant:1}GainSoulEaterOnVaalSkillUseUnique__1[10000,10000] +{variant:2}GainSoulEaterOnVaalSkillUseUnique__1 +]],[[ +Shaper's Seed +Agate Amulet +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 16 +Implicits: 1 +HybridStrInt +{variant:1,2}ManaRegenerationUniqueAmulet21[30,50] +{variant:3}ManaRegenerationUniqueAmulet21 +{variant:1,2}LifeRegenerationRatePercentageUniqueAmulet21[120,120] +{variant:3}LifeRegenerationRatePercentageUniqueAmulet21 +{variant:1}DisplayLifeRegenerationAuraUniqueAmulet21[60,60] +{variant:2}DisplayLifeRegenerationAuraUniqueAmulet21[120,120] +{variant:3}DisplayLifeRegenerationAuraUniqueAmulet21 +{variant:1,2}DisplayManaRegenerationAuaUniqueAmulet21[40,40] +{variant:3}DisplayManaRegenerationAuaUniqueAmulet21 +]],[[ +Sidhebreath +Paua Amulet +Variant: Pre 3.0.0 +Variant: Pre 3.8.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 1 +ManaRegenerationImplicitAmulet1 +ColdResistUniqueAmulet3 +{variant:1,2}ManaLeechPermyriadUniqueAmulet3 +MinionLifeUniqueAmulet3 +{variant:1,2,3}MinionRunSpeedUniqueAmulet3 +{variant:4}MinionPhysicalConvertToColdUnique__1 +{variant:3}MinionAddedColdDamageUnique__1[5,9][11,15] +{variant:4}MinionAddedColdDamageUnique__1[25,35][60,65] +{variant:1,2}MinionDamageUniqueAmulet3 +{variant:2,3}MinionSkillManaCostUnique__1_ +{variant:4}MinionOnlyDealColdDamageUnique__1 +]],[[ +Solstice Vigil +Onyx Amulet +Shaper Item +Source: Drops from unique{The Shaper} +Variant: Pre 3.10.0 +Variant: Current +Requires Level 64 +Implicits: 1 +AllAttributesImplicitAmulet1 +{variant:1}AllDamageUnique__4[20,25] +{variant:2}AllDamageUnique__4 +IncreasedLifeUnique__110 +{variant:1}AddedManaRegenerationUnique__2[120,180] +{variant:2}AddedManaRegenerationUnique__2 +TemporalChainsReservationCostUnique__1 +GainShapersPresenceUnique__1 +]],[[ +Star of Wraeclast +Ruby Amulet +Source: Vendor Recipe +Variant: Pre 2.6.0 +Variant: Pre 3.8.0 +Variant: Current +Requires Level 28 +Implicits: 1 +FireResistImplicitAmulet1 +{variant:3}GrantsFrostblinkSkillUnique__1 +ColdDamagePercentUnique__3 +AllResistancesUnique__2 +{variant:1}CurseAreaOfEffectUnique__2_[30,30] +{variant:2,3}CurseAreaOfEffectUnique__2_ +SilenceImmunityUnique__1 +{variant:1,2}ItemGrantsIllusoryWarpUnique__1 +{variant:3}FrostblinkDurationUnique__1_ +Corrupted +]],[[ +Stone of Lazhwar +Lapis Amulet +Variant: Pre 3.4.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 5 +Implicits: 1 +IntelligenceImplicitAmulet1 +{variant:1}BlockingBlocksSpellsUniqueAmulet1 +{variant:2,3}SpellBlockPercentageUniqueAmulet1 +{variant:1,2}IncreasedCastSpeedUniqueAmulet1[10,15] +{variant:3}IncreasedCastSpeedUniqueAmulet1 +{variant:1,2}IncreasedManaUniqueAmulet1[30,50] +{variant:3}IncreasedManaUniqueAmulet1 +]],[[ +Stranglegasp +Onyx Amulet +Source: Drops in Blight-ravaged Maps +Requires Level 52 +Implicits: 1 +AllAttributesImplicitAmulet1 +MultipleEnchantmentsAllowedUnique__2 +]],[[ +Tavukai +Coral Amulet +League: Legion +Variant: Pre 3.19.0 +Variant: Current +Requires Level 54 +Implicits: 1 +LifeRegenerationImplicitAmulet1 +IntelligenceUnique__10 +MinionChaosResistanceUnique__3 +RagingSpiritDurationUnique__1 +{variant:1}RagingSpiritDamageUnique__2[60,80] +{variant:2}RagingSpiritDamageUnique__2 +{variant:1}RagingSpiritLifeUnique__1[80,100] +{variant:2}RagingSpiritLifeUnique__1 +RagingSpiritChaosDamageTakenUnique__1 +]],[[ +Tainted Pact +Coral Amulet +Implicits: 1 +LifeRegenerationImplicitAmulet1 +StrengthImplicitAmulet1 +LifeLeechPermyriadUnique__9 +ManaLeechPermyriadUnique__3 +ChaosDamageOverTimeHealsLeechLifeUnique__1 +]],[[ +Tear of Purity +Lapis Amulet +Variant: Pre 3.16.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 5 +Implicits: 1 +IntelligenceImplicitAmulet1 +PuritySkillUniqueAmulet22 +{variant:1,2}AllAttributesUniqueAmulet22[5,10] +{variant:3}AllAttributesUniqueAmulet22 +IncreasedLifeUniqueAmulet22 +{variant:1}AvoidElementalAilmentsUnique__1_[5,5] +{variant:2}AllResistancesUniqueAmulet2[5,5] +{variant:3}ChanceToAvoidElementalStatusAilmentsUniqueAmulet22 +]],[[ +Ungil's Harmony +Turquoise Amulet +Variant: Pre 3.11.0 +Variant: Current +Requires Level 23 +Implicits: 1 +HybridDexInt +{variant:1}CriticalStrikeChanceUniqueBodyInt4 +{variant:2}CriticalStrikeChanceUniqueAmulet18 +IncreasedLifeUniqueAmulet18 +IncreasedManaUniqueAmulet18 +StunRecoveryUniqueAmulet18 +CriticalMultiplierUniqueAmulet18 +]],[[ +The Utmost +Gold Amulet +Source: Created from unique{Primordial Fragments} obtained from Uber bosses +Requires Level 8 +Implicits: 1 +ItemFoundRarityIncreaseImplicitAmulet1 +ChanceToSuppressSpellsUnique__3 +MaximumElementalResistanceUnique__4 +AttackAndCastSpeedUnique__9 +ElementalPenetrationUnique__1 +Corrupted +]],[[ +Uul-Netol's Vow +Unset Amulet +Source: Drops from unique{Breachlord} in a normal{Flawless Breachstone} +Requires Level 72 +Implicits: 1 +AmuletHasOneSocket +SupportGemsSocketedInAmuletAlsoSupportBodySkills +FireResistUnique__28_ +ColdResistUnique__35 +LightningResistUnique__25 +ChaosResistUnique__24 +]],[[ +Victario's Acuity +Turquoise Amulet +League: Onslaught +Requires Level 16 +Implicits: 1 +HybridDexInt +LightningResistUniqueAmulet15 +ChaosResistUniqueAmulet15_ +FrenzyChargeOnKillChanceUniqueAmulet15 +PowerChargeOnKillChanceUniqueAmulet15 +ProjectileSpeedPerFrenzyChargeUniqueAmulet15 +ProjectileDamagePerPowerChargeUniqueAmulet15 +]],[[ +Voice of the Storm +Lapis Amulet +League: Breach +Source: Drops in Esh Breach or from unique{Esh, Forked Thought} +Upgrade: Upgrades to unique{Choir of the Storm} using currency{Blessing of Esh} +Variant: Pre 3.16.0 +Variant: Pre 3.21.0 +Variant: Current +Requires Level 69 +Implicits: 1 +IntelligenceImplicitAmulet1 +{variant:1,2}LightningStrikesOnCritUnique__1 +AllAttributesUnique__2 +{variant:3}CriticalStrikesDealIncreasedLightningDamageUnique__1 +MaximumManaUnique__3 +{variant:1,2}CriticalChanceIncreasedByUncappedLightningResistanceUnique__1 +{variant:3}LightningNonCriticalStrikesLuckyUnique__1 +]],[[ +Choir of the Storm +Lapis Amulet +League: Breach +Source: Upgraded from unique{Voice of the Storm} using currency{Blessing of Esh} +Variant: Pre 3.0.0 +Variant: Pre 3.16.0 +Variant: Pre 3.21.0 +Variant: Current +Requires Level 69 +Implicits: 1 +IntelligenceImplicitAmulet1 +{variant:1,2,3}LightningStrikesOnCritUnique__2[20,20] +{variant:4}LightningStrikesOnCritUnique__2 +{variant:1,2,3}CriticalStrikesDealIncreasedLightningDamageUnique__1 +MaximumManaUnique__3 +{variant:1,3,4}LightningResistUnique__9 +CriticalChanceIncreasedByUncappedLightningResistanceUnique__1 +]],[[ +Voll's Devotion +Agate Amulet +League: Anarchy, Onslaught +Requires Level 32 +Implicits: 1 +HybridStrInt +IncreasedLifeUniqueAmulet14 +IncreasedEnergyShieldUniqueAmulet14 +AllResistancesUniqueAmulet14 +EnduranceChargeDurationUniqueAmulet14 +PowerChargeDurationUniqueAmulet14 +EnduranceChargeOnPowerChargeExpiryUniqueAmulet14 +]],[[ +Warped Timepiece +Turquoise Amulet +Variant: Pre 3.11.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 50 +Implicits: 1 +HybridDexInt +{variant:1}IncreasedAttackSpeedUniqueAmulet20[8,12] +{variant:2}IncreasedAttackSpeedUniqueAmulet20[10,15] +{variant:3}IncreasedAttackSpeedUniqueAmulet20 +{variant:1}IncreasedCastSpeedUniqueAmulet20[8,12] +{variant:2}IncreasedCastSpeedUniqueAmulet20[10,15] +{variant:3}IncreasedCastSpeedUniqueAmulet20 +{variant:1}MovementVelocityUniqueAmulet5[12,12] +{variant:2,3}MovementVelocityUniqueAmulet20 +{variant:1}ReducedSkillEffectDurationUniqueAmulet20[8,12] +{variant:2}ReducedSkillEffectDurationUniqueAmulet20[10,15] +{variant:3}ReducedSkillEffectDurationUniqueAmulet20 +{variant:1,2}IncreasedLifeLeechRateUniqueAmulet20 +{variant:3}DebuffTimePassedUnique__3 +]],[[ +Willowgift +Jade Amulet +Requires Level 52 +Implicits: 1 +DexterityImplicitAmulet1 +PercentageStrengthUnique__4_ +PercentageDexterityUnique__5 +FireResistUnique__22_ +ColdResistUniqueAmulet13 +AlternateFortifyUnique__1_ +AttackAndCastSpeedFortifyUnique__1 +]],[[ +Winterheart +Gold Amulet +Variant: Pre 3.15.0 +Variant: Current +Requires Level 42 +Implicits: 1 +ItemFoundRarityIncreaseImplicitAmulet1 +DexterityImplicitAmulet1 +IncreasedLifeUnique__102 +ColdResistUnique__5 +CannotBeChilledUnique__1 +{variant:1}LifeRegenerationWhileFrozenUnique__1[1200,1200] +{variant:2}LifeRegenerationWhileFrozenUnique__1 +]],[[ +Replica Winterheart +Gold Amulet +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 42 +Implicits: 1 +ItemFoundRarityIncreaseImplicitAmulet1 +DexterityImplicitAmulet1 +IncreasedEnergyShieldUnique__9 +LightningResistUnique__23_ +EnergyShieldRegenerationWhileShockedUnique__1 +UnaffectedByShockUnique__2 +]],[[ +Xoph's Heart +Amber Amulet +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Drops in Xoph Breach or from unique{Xoph, Dark Embers} +Upgrade: Upgrades to unique{Xoph's Blood} using currency{Blessing of Xoph} +Requires Level 35 +Implicits: 1 +StrengthImplicitAmulet1 +StrengthImplicitAmulet1 +FireDamagePercentUnique___7 +IncreasedLifeUnique__25 +FireResistUnique__29 +{variant:1}CoverInAshWhenHitUnique__1 +{variant:2}NearbyEnemiesCoveredInAshUnique__1 +]],[[ +Xoph's Blood +Amber Amulet +League: Breach +Source: Upgraded from unique{Xoph's Heart} using currency{Blessing of Xoph} +Requires Level 64 +Implicits: 1 +StrengthImplicitAmulet1 +MaximumLifeUnique__3 +FireResistUnique__25 +PercentageStrengthUnique__3 +FirePenetrationUnique__1 +CoverInAshWhenHitUnique__1 +KeystoneAvatarOfFireUnique__1 +]],[[ +Yoke of Suffering +Onyx Amulet +Variant: Pre 3.24.0 +Variant: Current +Requires Level 70 +Implicits: 1 +AllAttributesImplicitAmulet1 +FireResistUnique__15 +ColdResistUnique__21 +LightningResistUnique__3 +IncreasedAilmentDurationUnique__2 +ChanceToShockUnique__3 +{variant:1}EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1[5,5] +{variant:2}EnemiesTakeIncreasedDamagePerAilmentTypeUnique__1 +ElementalDamageCanShockUnique__1__ +]],[[ +The Eternal Struggle +Onyx Amulet +Searing Exarch Item +Eater of Worlds Item +Source: Drops from unique{The Black Star} or unique{The Infinite Hunger} +Requires Level 61 +Implicits: 2 +9% increased Mana Reservation Efficiency of Skills +MovementVelocityImplicitShield2 +StrengthUnique__22 +DexterityUnique__23 +IntelligenceUnique__29 +AllDefencesUnique__5 +MalignantMadnessCritEaterDominantUnique__1 +KillEnemyInstantlyExarchDominantUnique__1 +]],[[ +Venarius' Astrolabe +Astrolabe Amulet +Source: Drops from unique{Incarnation of Neglect} in normal{Moment of Loneliness} +Requires Level 69 +Implicits: 1 +CanHaveEveryInfluenceTypeImplicitE1 +FoolishlyDrawnAttentionUnique_1 +InfluenceElementalConfluxUnique__1 +InfluenceElementalSkillGemLevelUnique__1 +InfluenceElementalSupportGemLevelUnique__1 +]],[[ +Whispers of Infinity +Seaglass Amulet +Variant: Pre 3.27.0 +Variant: Current +Source: Drops from unique{Incarnation of Dread} in normal{Moment of Reverence} +Requires Level 74 +Implicits: 1 +ReducedEnergyShieldDelayImplicit1_ +AttacksGainMinMaxAddedChaosDamageBasedOnManaUnique__1 +{variant:1}AddedEnergyShieldFlatUnique_1[200,400] +{variant:2}AddedEnergyShieldFlatUnique_1 +PercentReducedMaximumManaUnique_1 +SkillsCostEnergyShieldInsteadOfManaLifeUnique__1 +]],[[ +Bonemeld +Marble Amulet +Source: Drops from unique{Incarnation of Dread} in normal{Moment of Reverence} +Requires Level 74 +Implicits: 1 +LifeRegenerationImplicitAmulet2 +AllAttributesUniqueAmulet22 +GlobalIncreaseMinionSpellSkillGemLevelUnique__5 +AllResistancesReducedPerActiveNonVaalSkillMinionUnique_1 +GlobalDefensesIncreasedPerActiveNonVaalSkillMinionUnique_1 +MinionsGainPercentOfYourResistancesUnique_1 +]],[[ +Haunting Memories +Turquoise Amulet +Source: Drops from unique{Uber Incarnation of Neglect} in normal{Moment of Loneliness} +Requires Level 64 +Implicits: 1 +HybridDexInt +ChanceToDodgeSpellsUnique__1 +SuppressedDamageBypassEnergyShieldUnique_1 +SuppressedDamageRecoupedAsEnergyShield_1 +DexterityAndIntelligenceUnique_2 +IncreasedEnergyShieldUnique__13 +IncreasedLifeUnique__71 +]], +} diff --git a/src/Export/Uniques/axe.lua b/src/Export/Uniques/axe.lua new file mode 100644 index 0000000000..efa5d34c23 --- /dev/null +++ b/src/Export/Uniques/axe.lua @@ -0,0 +1,485 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Weapon: One Handed Axe +[[ +Actum +Butcher Axe +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 0 +Variant: Pre 3.26.0 +Variant: Current +HasNoSockets +LocalIncreasedPhysicalDamagePercentUnique__40 +NoIntelligenceUnique__1_ +{variant:1}WeaponCritChanceOverrideUnique__1__[20,30] +{variant:2}WeaponCritChanceOverrideUnique__1__ +]],[[ +Dreadarc +Cleaver +Implicits: 0 +LocalAddedPhysicalDamageUniqueOneHandAxe7 +LocalAddedFireDamageUniqueOneHandAxe7 +LocalIncreasedAttackSpeedUniqueOneHandAxe7 +FireResistUniqueOneHandAxe7_ +MovementVelocityUniqueOneHandAxe7 +FlammabilityOnHitUniqueOneHandAxe7 +]],[[ +Dreadsurge +Cleaver +Source: No longer obtainable +LevelReq: 60 +Implicits: 0 +LocalAddedPhysicalDamageUniqueOneHandAxe7 +LocalAddedFireDamageUnique__4 +LocalIncreasedAttackSpeedUniqueOneHandAxe7 +FireResistUniqueOneHandAxe7_ +MovementVelocityUniqueOneHandAxe7 +IgnoreEnemyFireResistWhileIgnitedUnique__1 +]],[[ +Dyadus +Infernal Axe +Variant: Pre 2.6.0 +Variant: Current +Implicits: 0 +{variant:1}MainHandAddedFireDamageUniqueOneHandAxe2[170,190][200,220] +{variant:2}MainHandAddedFireDamageUniqueOneHandAxe2 +{variant:1}OffHandAddedColdDamageUniqueOneHandAxe2[170,190][200,220] +{variant:2}OffHandAddedColdDamageUniqueOneHandAxe2 +LocalIncreasedAttackSpeedUniqueOneHandAxe2 +MainHandChanceToIgniteUniqueOneHandAxe2 +{variant:1}OffHandChillDurationUniqueOneHandAxe2 +{variant:1}BurningDamageToChilledEnemiesUniqueOneHandAxe2[40,40] +{variant:2}BurningDamageToChilledEnemiesUniqueOneHandAxe2 +{variant:2}ChillEnemiesOnHitWithWeaponUnique__1 +]],[[ +The Screaming Eagle +Jade Hatchet +Variant: Pre 2.0.0 +Variant: Current +Implicits: 0 +DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3 +{variant:1}LocalAddedPhysicalDamageUniqueOneHandAxe3[8,12][18,22] +{variant:2}LocalAddedPhysicalDamageUniqueOneHandAxe3 +IncreasedLifeUniqueOneHandAxe3 +LifeGainedFromEnemyDeathUniqueOneHandAxe3 +MovementVelocityUniqueOneHandAxe3 +]],[[ +The Gryphon +Jade Hatchet +Source: No longer obtainable +Variant: Pre 2.0.0 +Variant: Current +LevelReq: 32 +Implicits: 0 +DisplaySocketedGemGetsChanceToFleeUniqueOneHandAxe3 +LocalIncreasedPhysicalDamagePercentUnique__9 +{variant:1}LocalAddedPhysicalDamageUniqueOneHandAxe3[8,12][18,22] +{variant:2}LocalAddedPhysicalDamageUniqueOneHandAxe3 +IncreasedLifeUniqueOneHandAxe3 +LifeGainedFromEnemyDeathUniqueOneHandAxe3 +MovementVelocityUniqueOneHandAxe3 +MovementSpeedIfKilledRecentlyUnique___1 +]],[[ +Jack, the Axe +Vaal Hatchet +Variant: Pre 3.13.0 +Variant: Current +Implicits: 0 +{variant:2}GrantsVampiricIconSkillUnique__1 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe5[90,110] +{variant:2}LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe5 +LocalAddedPhysicalDamageUniqueOneHandAxe5 +{variant:1}LocalIncreasedAttackSpeedUniqueOneHandAxe2 +{variant:1}LifeLeechPermyriadUniqueOneHandAxe6 +{variant:1}50% reduced total Recovery per second from Life Leech +CausesBleedingUniqueOneHandAxe5 +{variant:2}LocalBleedDamageOverTimeMultiplierUnique__1 +]],[[ +Moonbender's Wing +Tomahawk +Variant: Pre 3.11.0 +Variant: Current +Implicits: 0 +{variant:1}LightningWarpSkillUniqueOneHandAxe8 +{variant:2}TriggeredLightningWarpUnique__1__ +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe8[70,90] +{variant:2}LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe8 +{variant:1}LocalAddedPhysicalDamageUniqueOneHandAxe8 +LocalCriticalStrikeChanceUniqueOneHandAxe8_ +{variant:1}ConvertPhysicalToColdUniqueOneHandAxe8 +{variant:1}ConvertPhysicalToLightningUniqueOneHandAxe8 +{variant:2}WeaponPhysicalDamageAddedAsColdOrLightningUnique__1 +]],[[ +Relentless Fury +Decorative Axe +Variant: Pre 2.6.0 +Variant: Current +Implicits: 0 +LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6 +LocalAddedPhysicalDamageUniqueOneHandAxe6 +{variant:1}LifeLeechPermyriadUniqueOneHandAxe6[60,60] +{variant:2}LifeLeechPermyriadUniqueOneHandAxe6 +NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9 +GainOnslaughtWhenCullingEnemyUniqueOneHandAxe6 +CannotBeChilledWhenOnslaughtUniqueOneHandAxe6 +]],[[ +Rigwald's Savagery +Royal Axe +League: Talisman Standard, Talisman Hardcore +Source: Drops from unique{Rigwald, the Wolven King} (Level 75+) +Variant: Pre 3.11.0 +Variant: Pre 3.25.0 +Variant: Current +Implicits: 0 +LocalAddedPhysicalDamageUnique__7 +DualWieldingPhysicalDamageUnique__1 +LocalIncreasedAttackSpeedUniqueOneHandAxe2 +{variant:1}SwordPhysicalAttackSpeedUnique__1 +{variant:1}CausesBleedingUniqueOneHandAxe5 +{variant:2}MaxRagePerEquippedSwordUnique__1____[25,25] +{variant:3}MaxRagePerEquippedSwordUnique__1____ +]],[[ +Soul Taker +Siege Axe +Variant: Pre 1.0.0 +Variant: Pre 3.20.0 +Variant: Pre 3.26.0 +Variant: Pre 3.28.0 +Variant: Current +Implicits: 0 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe1[160,200] +{variant:2}LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe1[100,140] +{variant:3,4,5}LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe1 +{variant:1,2}LocalAddedPhysicalDamageOneHandAxe1[10,10][20,20] +{variant:3,4,5}LocalAddedPhysicalDamageOneHandAxe1 +{variant:1,2,3}LocalIncreasedAttackSpeedUniqueOneHandAxe1[20,25] +{variant:4,5}LocalIncreasedAttackSpeedUniqueOneHandAxe1 +ColdResistUniqueOneHandAxe1_ +MeleeAttacksUsableWithoutManaUniqueOneHandAxe1 +PhysicalDamageCanChillUniqueDescentOneHandAxe1 +{variant:5}GainSoulEaterStackOnRareOrUniqueKillWithWeaponUnique__1 +]],[[ +Replica Soul Taker +Siege Axe +League: Heist +Source: No longer obtainable +Implicits: 0 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe1 +LocalAddedPhysicalDamageOneHandAxe1[10,10][20,20] +LocalCriticalStrikeChanceUnique__18 +ColdResistUniqueOneHandAxe1_ +PhysicalDamageCanFreezeUnique__1_ +KeystoneEldritchBatteryUnique__1 +]],[[ +Starcaller +Abyssal Axe +Source: Drops from unique{Incarnation of Fear} in normal{Moment of Trauma} +Requires Level 55, 128 Str, 60 Dex +StarfellOnMeleeCriticalHitUnique__1 +AllAttributesUnique__17_ +LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe10 +LocalCriticalStrikeChanceUniqueTwoHandAxe_1 +AreaOfEffectUnique_9 +WeaponPhysicalDamageAddedAsRandomElementUnique__2 +]], +[[ +The Grey Wind +Spectral Axe +Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} +Requires Level 33, 85 Str, 37 Dex +FireDamagePercentUnique__14 +LocalFireDamageFromLifePercentUnique_1 +FireDoTMultiPerRageUnique_1 +NearbyEnemiesHaveFireExposureWhileAtMaxRageUnique_1 +MaximumRageUnique__3 +]], +-- Weapon: Two Handed Axe +[[ +Atziri's Disfavour +Vaal Axe +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Alluring Abyss} +Variant: Pre 3.11.0 +Variant: Pre 3.20.0 +Variant: Current +LevelReq: 75 +Implicits: 1 +{variant:2,3}LocalMaimOnHit2HImplicit_1 +{variant:1,2}LocalIncreaseSocketedSupportGemLevelUniqueTwoHandAxe7 +{variant:3}IncreaseSocketedSupportGemQualityUnique__2 +{variant:1}LocalAddedPhysicalDamageUniqueTwoHandAxe7[220,235][270,290] +{variant:2}LocalAddedPhysicalDamageUniqueTwoHandAxe7[205,220][250,270] +{variant:3}LocalAddedPhysicalDamageUniqueTwoHandAxe7 +LocalIncreasedAttackSpeedUniqueTwoHandAxe7 +CausesBleedingUniqueOneHandAxe5Updated_ +{variant:1,2}LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_[2,2] +{variant:3}LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe7_ +]],[[ +The Blood Reaper +Headsman Axe +Variant: Pre 3.0.0 +Variant: Pre 3.12.0 +Variant: Current +Implicits: 0 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe4[100,120] +{variant:2,3}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe4 +IncreasedLifeUniqueTwoHandAxe4 +{variant:1,2}LifeRegenerationUniqueTwoHandAxe4[600,600] +{variant:3}LifeRegenerationUniqueTwoHandAxe4 +LifeLeechPermyriadUniqueTwoHandAxe4 +ManaCostIncreaseUniqueTwoHandAxe4 +CausesBleedingUniqueTwoHandAxe4 +]],[[ +Debeon's Dirge +Despot Axe +Implicits: 0 +LocalAddedColdDamageUnique__6_ +MovementSpeedIfUsedWarcryRecentlyUnique__2 +IncreasedElementalDamageIfUsedWarcryRecentlyUnique__1 +WarcryKnockbackUnique__1 +]],[[ +The Harvest +Jasper Chopper +League: Beyond +Implicits: 0 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe8 +LifeLeechOnCritPermyriadUniqueTwoHandAxe8 +CriticalStrikeChancePerLevelUniqueTwoHandAxe8 +FlaskChargesOnCritUniqueTwoHandAxe8 +]],[[ +Replica Harvest +Jasper Chopper +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 0 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe8 +LifeLeechOnCritPermyriadUniqueTwoHandAxe8 +CriticalStrikeChancePerLevelUniqueTwoHandAxe8 +ElusiveOnCriticalStrikeUnique__1 +]],[[ +Hezmana's Bloodlust +Vaal Axe +Variant: Pre 3.11.0 +Variant: Current +Implicits: 1 +{variant:2}LocalMaimOnHit2HImplicit_1 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe2[150,170] +{variant:2}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe2 +LocalAddedPhysicalDamage__1 +LifeLeechPermyriadUniqueTwoHandAxe4 +{variant:2}AttackSpeedAfterSavageHitTakenUnique__1 +AttacksHaveBloodMagic__1 +]],[[ +Kaom's Primacy +Karui Chopper +League: Legion +Variant: Pre 1.0.0 +Variant: Pre 3.7.0 +Variant: Pre 3.11.0 +Variant: Pre 3.25.0 +Variant: Current +Implicits: 0 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe1[120,150] +{variant:2,3}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe1[160,220] +{variant:4,5}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe1 +{variant:1,2}LocalAddedFireDamageUniqueTwoHandAxe1 +LifeGainedFromEnemyDeathUniqueTwoHandAxe1 +IncreasedAccuracyUniqueTwoHandAxe1 +NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9 +{variant:5}RageOnMeleeHitE3 +{variant:3,4}RageOnAttackCritUnique__1 +{variant:3,4,5}PhysicalAddedAsFirePerRageUnique__1 +]],[[ +Kingmaker +Despot Axe +Source: Vendor Recipe +Variant: Pre 2.6.0 +Variant: Pre 3.6.0 +Variant: Pre 3.11.0 +Variant: Pre 3.16.0 +Variant: Pre 3.20.0 +Variant: Current +Implicits: 0 +{variant:1,2}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9[200,250] +{variant:3}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9[250,285] +{variant:4}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9[170,200] +{variant:5}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9[190,240] +{variant:6}LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe9 +LocalIncreasedAttackSpeedUniqueTwoHandAxe9 +{variant:2,3,4,5,6}CriticalStrikeChanceUniqueBow9 +{variant:1}IncreasedManaUniqueTwoHandAxe9 +DisplayNearbyAlliesHaveIncreasedItemRarityUniqueTwoHandAxe9 +DisplayNearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9 +{variant:2,3,4,5,6}MeleeAttacksUsableWithoutManaUniqueOneHandAxe1 +{variant:3,4,5,6}DisplayNearbyAlliesHaveCriticalStrikeMultiplierTwoHandAxe9 +{variant:3,4}DisplayNearbyAlliesHaveFortifyTwoHandAxe9[1,1] +{variant:5,6}DisplayNearbyAlliesHaveFortifyTwoHandAxe9 +]],[[ +Kitava's Feast +Void Axe +Variant: Pre 3.5.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 0 +SupportedByMeleeSplashUnique__1_ +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__23[250,300] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__23[265,330] +{variant:3}LocalIncreasedPhysicalDamagePercentUnique__23 +LifeLeechPermyriadUniqueTwoHandAxe4 +ManaLeechPermyriadUnique__2 +RecoverPercentMaxLifeOnKillUnique__1 +EnemiesDestroyedOnKillUnique__1 +]],[[ +Limbsplit +Woodsplitter +Variant: Pre 3.11.0 +Variant: Current +Implicits: 0 +LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3 +{variant:2}TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__1_ +StrengthUniqueTwoHandAxe3 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe3 +LocalAddedPhysicalDamageUniqueTwoHandAxe3 +NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9 +]],[[ +The Cauteriser +Woodsplitter +Source: No longer obtainable +Variant: Pre 3.11.0 +Variant: Current +LevelReq: 40 +Implicits: 0 +LocalIncreaseSocketedStrengthGemLevelUniqueTwoHandAxe3 +{variant:2}TriggerGoreShockwaveOnMeleeHitWith150StrengthUnique__2 +StrengthUniqueTwoHandAxe3 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe3 +LocalAddedPhysicalDamageUniqueTwoHandAxe3[35,45][80,90] +PhysicalAddedAsFireUnique__2 +NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9 +]],[[ +Ngamahu's Flame +Abyssal Axe +Variant: Pre 3.11.0 +Variant: Current +Implicits: 0 +MoltenBurstOnMeleeHitUnique__1 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__17_[190,230] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__17_ +LocalIncreasedAttackSpeedUnique__2 +{variant:1}DamageConversionFireUnique__1[50,50] +{variant:2}DamageConversionFireUnique__1 +PenetrateEnemyFireResistUnique__1 +]],[[ +Reaper's Pursuit +Shadow Axe +Implicits: 0 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe2 +ItemFoundRarityIncreaseUniqueTwoHandAxe2 +LifeGainedFromEnemyDeathUniqueTwoHandAxe2 +MovementVelocityOnFullLifeUniqueTwoHandAxe2 +NearbyAlliesHaveCullingStrikeUniqueTwoHandAxe9 +AlwaysHits +]],[[ +Sinvicta's Mettle +Ezomyte Axe +Variant: Pre 3.11.0 +Variant: Current +Implicits: 0 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__33[200,212] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__33 +IncreasedAttackSpeedUnique__5 +AreaOfEffectPer25RampageStacksUnique__1_ +FrenzyChargePer50RampageStacksUnique__1 +SimulatedRampageDexInt6 +]],[[ +Uul-Netol's Kiss +{variant:1}Labrys +{variant:2}Vaal Axe +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Drops in Uul-Netol Breach or from unique{Uul-Netol, Unburdened Flesh} +Upgrade: Upgrades to unique{Uul-Netol's Embrace} using currency{Blessing of Uul-Netol} +Implicits: 1 +{variant:2}LocalMaimOnHit2HImplicit_1 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__22[140,170] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__22 +LocalReducedAttackSpeedUnique__2 +CurseLevel10VulnerabilityOnHitUnique__1 +{variant:1}AttacksCauseBleedingOnCursedEnemyHitUnique__1 +{variant:2}ExertedAttackDamageUnique__1 +{variant:2}ExertedAttackKnockbackChanceUnique__1 +]],[[ +Uul-Netol's Embrace +Vaal Axe +League: Breach +Source: Upgraded from unique{Uul-Netol's Kiss} using currency{Blessing of Uul-Netol} +Variant: Pre 3.11.0 +Variant: Pre 3.21.0 +Variant: Current +Implicits: 1 +{variant:2,3}LocalMaimOnHit2HImplicit_1 +GrantsLevel20BoneNovaTriggerUnique__1 +LocalIncreasedPhysicalDamagePercentUnique__24 +LocalReducedAttackSpeedUnique__3 +{variant:1,2}AttacksCauseBleedingOnCursedEnemyHitUnique__1 +{variant:3}CausesBleedingUniqueTwoHandAxe7Updated +]],[[ +Wideswing +Poleaxe +Variant: Pre 3.7.0 +Variant: Current +Implicits: 0 +SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandAxe5 +StrengthUniqueTwoHandAxe5 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe5 +ManaGainedFromEnemyDeathUniqueTwoHandAxe5 +{variant:1}IncreasedAccuracyUniqueTwoHandAxe5[50,80] +{variant:2}IncreasedAccuracyUniqueTwoHandAxe5 +LocalIncreasedMeleeWeaponRangeUniqueTwoHandAxe5 +]],[[ +Replica Wings of Entropy +Ezomyte Axe +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Variant: Pre 3.26.0 +Variant: Current +Implicits: 0 +SpellBlockPercentageUniqueTwoHandAxe6 +BlockWhileDualWieldingUniqueTwoHandAxe6 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandAxe6 +UniqueWingsOfEntropyCountsAsDualWielding +{variant:1}OffHandBaseCriticalStrikeChanceUnique__1[800,1000] +{variant:2}OffHandBaseCriticalStrikeChanceUnique__1 +{variant:1}WingsOfEntropyMainHandAttackSpeedFinalUnique__1_[50,70] +{variant:2}WingsOfEntropyMainHandAttackSpeedFinalUnique__1_ +]],[[ +Wings of Entropy +{variant:1,2,3,4}Sundering Axe +{variant:5}Ezomyte Axe +Variant: Pre 1.3.0 +Variant: Pre 2.0.0 +Variant: Pre 3.4.0 +Variant: Pre 3.11.0 +Variant: Pre 3.26.0 +Variant: Current +Implicits: 0 +{variant:1,2,3}SpellBlockUniqueTwoHandAxe6 +{variant:4}SpellBlockPercentageUniqueTwoHandAxe6[6,7] +{variant:5,6}SpellBlockPercentageUniqueTwoHandAxe6 +{variant:1}BlockWhileDualWieldingUnique__1 +{variant:2,3,4}BlockWhileDualWieldingUniqueOneHandSword5 +{variant:5,6}BlockWhileDualWieldingUniqueTwoHandAxe6 +{variant:1,2}LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6[80,120] +{variant:3,4}LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6[100,120] +{variant:5,6}LocalIncreasedPhysicalDamagePercentUniqueOneHandAxe6 +{variant:1,2,3,4}MainHandAddedFireDamageUniqueTwoHandAxe6[55,65][100,120] +{variant:5}MainHandAddedFireDamageUniqueTwoHandAxe6[75,100][165,200] +{variant:6}MainHandAddedFireDamageUniqueTwoHandAxe6 +{variant:1,2,3,4}OffHandAddedChaosDamageUniqueTwoHandAxe6[55,65][100,120] +{variant:5}OffHandAddedChaosDamageUniqueTwoHandAxe6[75,100][165,200] +{variant:6}OffHandAddedChaosDamageUniqueTwoHandAxe6 +UniqueWingsOfEntropyCountsAsDualWielding +]], +} diff --git a/src/Export/Uniques/belt.lua b/src/Export/Uniques/belt.lua new file mode 100644 index 0000000000..64b02fb5eb --- /dev/null +++ b/src/Export/Uniques/belt.lua @@ -0,0 +1,964 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Belt +[[ +Arn's Anguish +Cloth Belt +Variant: Pre 3.17.0 +Variant: Current +League: Ritual +Source: Drops from unique{The Maven} +LevelReq: 68 +Implicits: 1 +StunRecoveryImplicitBelt1 +IncreasedPhysicalDamageReductionRatingUnique__7 +MaximumLifeUnique__22 +FireResistUnique__26 +{variant:2}ChargeBonusMaximumEnduranceCharges +MinimumBrutalChargeModifiersEqualsEnduranceUnique__1 +MaximumBrutalChargesEqualsEnduranceUnique__1__ +GainBrutalChargesInsteadOfEnduranceUnique__1 +]],[[ +Ascent From Flesh +Chain Belt +Variant: Pre 2.6.0 +Variant: Pre 3.16.0 +Variant: Current +LevelReq: 44 +Implicits: 1 +IncreasedEnergyShieldImplicitBelt1 +IncreasedEvasionRatingUnique__2 +{variant:1}IncreasedEnergyShieldUnique__4[35,45] +{variant:2,3}IncreasedEnergyShieldUnique__4 +AllResistancesUniqueBelt13 +PhasingOnBeginESRechargeUnique___1 +{variant:1,2}ChanceToDodgeAttacksWhilePhasingUnique___1[6,6] +{variant:3}ChanceToDodgeAttacksWhilePhasingUnique___1 +MovementSpeedWhilePhasedUnique__2 +]],[[ +Auxium +{variant:1,2}Chain Belt +{variant:3,4}Crystal Belt +Variant: Pre 1.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.5.0 +Variant: Current +{variant:1,2}LevelReq: 70 +Implicits: 2 +{variant:1,2}IncreasedEnergyShieldUniqueBelt5[9,20] +{variant:3,4}IncreasedEnergyShieldUniqueBelt5[60,80] +IncreasedEnergyShieldUniqueBelt5 +IncreasedManaUniqueBelt5 +{variant:1}{tags:attack,mana}0.2% of Physical Attack Damage Leeched as Mana per Power Charge +{variant:2,3}ChillAndFreezeBasedOffEnergyShieldBelt5Unique[65,65] +{variant:4}ChillAndFreezeBasedOffEnergyShieldBelt5Unique +{variant:1}WeaponElementalDamageUniqueBelt5[20,30] +{variant:2,3}WeaponElementalDamageUniqueBelt5 +{variant:4}IncreasedWeaponElementalDamagePercentPerPowerChargeUnique__1 +{variant:2,3,4}ManaLeechPermyriadPerPowerChargeUniqueBelt5_ +]],[[ +The Burden of Truth +Crystal Belt +Source: Drops from unique{Sirus, Awakener of Worlds} +LevelReq: 79 +Implicits: 1 +IncreasedEnergyShieldImplicitBelt2 +BeltFlaskLifeRecoveryUnique__1 +ChaosDamageDoesNotBypassEnergyShieldPercentUnique__1 +NonChaosDamageBypassEnergyShieldPercentUnique__1 +MaximumEnergyShieldAsPercentageOfLifeUnique__2 +KeystoneSupremeDecadenceUnique__1 +]],[[ +Bated Breath +Chain Belt +Variant: Pre 2.6.0 +Variant: Current +LevelReq: 22 +Implicits: 1 +IncreasedEnergyShieldImplicitBelt1 +IntelligenceUniqueBelt11 +AllDamageUniqueBelt11 +IncreasedEnergyShieldUniqueBelt11 +{variant:2}IncreasedEnergyShieldPercentUnique__1 +ReducedEnergyShieldDelayUniqueBelt11 +]],[[ +Replica Bated Breath +Chain Belt +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +LevelReq: 22 +Implicits: 1 +IncreasedEnergyShieldImplicitBelt1 +IntelligenceUniqueBelt11 +AllDamageUniqueBelt11 +FishingPoolConsumptionUnique__1__ +FishingCastDistanceUnique__1__ +FishingRarityUnique__2_ +]],[[ +Bear's Girdle +Leather Belt +Variant: Pre 3.25.0 +Variant: Current +League: Harvest +Source: Drops from unique{Ersi, Mother of Thorns} in normal{The Sacred Grove} +LevelReq: 68 +Implicits: 1 +IncreasedLifeImplicitBelt1 +AddedPhysicalDamageUnique__9_ +StunDurationImplicitBelt1 +EnemiesCrushedWithRageUnique__1_ +{variant:1}MaximumRageImplicitE1[20,20] +{variant:2}MaximumRageImplicitE1 +]],[[ +Belt of the Deceiver +Heavy Belt +Variant: Pre 2.6.0 +Variant: Current +LevelReq: 20 +Implicits: 1 +StrengthImplicitBelt1 +{variant:1}ReducedChanceToBlockUnique__1[-10,-10] +IncreasedPhysicalDamagePercentUniqueBelt13 +ReducedCriticalStrikeDamageTakenUniqueBelt13 +IncreasedLifeUniqueBelt13 +{variant:1}AllResistancesUniqueBelt13[6,10] +{variant:2}AllResistancesUniqueBelt13 +{variant:2}NearbyEnemiesAreIntimidatedUnique__1 +]],[[ +Bisco's Leash +Heavy Belt +Variant: Pre 3.25.0 +Variant: Current +LevelReq: 30 +Implicits: 1 +StrengthImplicitBelt1 +{variant:1}ItemFoundQuantityIncreasedUnique__1 +{variant:2}AllAttributesUnique__2 +ColdResistUniqueBelt14 +IncreasedRarityPerRampageStacksUnique__1 +SimulatedRampageDexInt6 +]],[[ +Bound Fate +Cloth Belt +LevelReq: 16 +Implicits: 1 +StunRecoveryImplicitBelt1 +DexterityUnique__1 +IntelligenceUniqueBelt1 +IncreasedLifeUnique__3 +HinekoraButterflyEffectUnique__1 +]],[[ +Chains of Emancipation +Chain Belt +League: Heist +Source: Drops from unique{Friedrich Tarollo, Slave Merchant} in normal{Contract: The Slaver King} +LevelReq: 61 +Implicits: 1 +IncreasedEnergyShieldImplicitBelt1 +IncreasedLifeUnique__124 +ChaosResistUnique__10 +EnemyTemporalChainsOnHitUnique__1 +GainRageOnLosingTemporalChainsUnique__1__ +ImmuneToCursesWithRageUnique__1 +]],[[ +Coward's Chains +Chain Belt +Variant: Pre 3.14.0 +Variant: Current +League: Incursion +Source: Opening normal{Experimental Chest} in normal{Hybridisation Chamber} +Upgrade: Upgrades to unique{Coward's Legacy} via currency{Vial of Consequence} +LevelReq: 22 +Implicits: 1 +IncreasedEnergyShieldImplicitBelt1 +{variant:1}AllDamageUnique__2 +{variant:1}AllAttributesUnique__20[10,15] +{variant:2}AllAttributesUnique__20 +MovementVelocityUnique__44 +EnemiesExtraDamageRollsWhileAffectedByVulnerabilityUnique__1_ +{variant:2}CountOnFullLifeWhileAffectedByVulnerabilityUnique__1 +UniqueSelfCurseVulnerabilityLevel20 +]],[[ +Coward's Legacy +Chain Belt +League: Incursion +Source: Upgraded from unique{Coward's Chains} via currency{Vial of Consequence} +LevelReq: 52 +Implicits: 1 +IncreasedEnergyShieldImplicitBelt1 +AllAttributesUnique__12 +MovementVelocityUnique__33_ +IncreasedCurseEffectUnique__1 +CountAsLowLifeWhileAffectedByVulnerabilityUnique__1 +UniqueSelfCurseVulnerabilityLevel10 +]],[[ +Cyclopean Coil +Leather Belt +Elder Item +Source: Drops from unique{The Elder} +LevelReq: 68 +Implicits: 1 +IncreasedLifeImplicitBelt1 +IncreasedLifeUnique__121 +AllAttributesPercentUnique__2 +CannotBeFrozenWithDexHigherThanIntUnique__1 +CannotBeIgnitedWithStrHigherThanDexUnique__1 +CannotBeShockedWithIntHigherThanStrUnique__1 +IncreasedDamagePerLowestAttributeUnique__1 +]],[[ +Darkness Enthroned +Stygian Vise +League: Abyss +Source: Drops from unique{Amanamu, Liege of the Lightless} or unique{Ulaman, Sovereign of the Well} +Variant: Pre 3.11.0 +Variant: Pre 3.21.0 +Variant: Current +Implicits: 1 +AbyssJewelSocketImplicit +AbyssJewelSocketUnique__3 +{variant:1}AbyssJewelEffectUnique__1[50,50] +{variant:2}AbyssJewelEffectUnique__1[75,75] +{variant:3}AbyssJewelEffectUnique__1 +]],[[ +Doryani's Invitation +Heavy Belt +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Apex of Sacrifice} +Variant: Pre 3.11.0 (Physical) +Variant: Pre 3.11.0 (Fire) +Variant: Pre 3.11.0 (Cold) +Variant: Pre 3.11.0 (Lightning) +Variant: Current (Physical) +Variant: Current (Fire) +Variant: Current (Cold) +Variant: Current (Lightning) +LevelReq: 68 +Implicits: 1 +StrengthImplicitBelt1 +{variant:1,5}IncreasedPhysicalDamagePercentUniqueBelt9d +{variant:2,6}FireDamagePercentUniqueBelt9a +{variant:3,7}ColdDamagePercentUniqueBelt9b +{variant:4,8}LightningDamagePercentUniqueBelt9c +{variant:2,3,4,6,7,8}IncreasedPhysicalDamageReductionRatingUniqueBelt9 +{variant:1,3,4,5,7,8}FireResistUniqueBelt9 +{variant:1,2,4,5,6,8}ColdResistUniqueBelt9 +{variant:1,2,3,5,6,7}LightningResistUniqueBelt9 +{variant:1}PhysicalDamageLifeLeechPermyriadUniqueBelt9dNew[0.2,0.2] +{variant:5}PhysicalDamageLifeLeechPermyriadUniqueBelt9dNew +{variant:2}FireDamageLifeLeechPermyriadUniqueBelt9aNew[0.2,0.2] +{variant:6}FireDamageLifeLeechPermyriadUniqueBelt9aNew +{variant:3}ColdDamageLifeLeechPermyriadUniqueBelt9bNew[0.2,0.2] +{variant:7}ColdDamageLifeLeechPermyriadUniqueBelt9bNew +{variant:4}LightningDamageLifeLeechPermyriadUniqueBelt9cNew[0.2,0.2] +{variant:8}LightningDamageLifeLeechPermyriadUniqueBelt9cNew +{variant:1,5}ReducedStunThresholdWhileUsingFlaskUniqueBelt9d +{variant:2}IgniteChanceWhileUsingFlaskUniqueBelt9a[10,10] +{variant:6}IgniteChanceWhileUsingFlaskUniqueBelt9a +{variant:3}FreezeChanceWhileUsingFlaskUniqueBelt9b[10,10] +{variant:7}FreezeChanceWhileUsingFlaskUniqueBelt9b +{variant:4}ShockChanceWhileUsingFlaskUniqueBelt9c[10,10] +{variant:8}ShockChanceWhileUsingFlaskUniqueBelt9c +]],[[ +The Druggery +Cloth Belt +League: Heist +LevelReq: 48 +Implicits: 1 +StunRecoveryImplicitBelt1 +AllAttributesUniqueBelt3 +BeltIncreasedFlaskChargesGainedUnique__1_ +BeltIncreasedFlaskChargedUsedUnique__1 +BeltIncreasedFlaskDurationUnique__3___ +LifeFlaskPassiveChargeGainUnique__1_ +FlaskLifeRecoveryAlliesUnique__1_ +]],[[ +Dyadian Dawn +Heavy Belt +Variant: Pre 2.6.0 +Variant: Current +LevelReq: 52 +Implicits: 1 +StrengthImplicitBelt1 +IncreasedLifeFireResistUniqueBelt14 +FireResistUniqueBelt14 +ColdResistUniqueBelt14 +{variant:1}LifeLeechPermyriadFromAttacksAgainstChilledEnemiesUniqueBelt14[60,60] +{variant:2}LifeLeechPermyriadFromAttacksAgainstChilledEnemiesUniqueBelt14 +{variant:1}FasterBurnFromAttacksEnemiesUniqueBelt14[20,20] +{variant:2}FasterBurnFromAttacksEnemiesUniqueBelt14 +DealNoPhysicalDamageUniqueBelt14 +]],[[ +Faminebind +Rustic Sash +League: Talisman Standard, Talisman Hardcore +LevelReq: 18 +Implicits: 1 +IncreasedPhysicalDamagePercentImplicitBelt1 +ColdResistUniqueBelt1 +IncreasedProjectileDamageUnique__5 +BeltReducedFlaskChargesGainedUnique__1 +BeltIncreasedFlaskDurationUnique__2 +DisplayChaosDegenerationAuraUnique__1 +]],[[ +Feastbind +Rustic Sash +League: Talisman Standard, Talisman Hardcore +LevelReq: 11 +Implicits: 1 +IncreasedPhysicalDamagePercentImplicitBelt1 +AddedPhysicalDamageUnique___1 +IncreasedLifeUnique__5 +LifeLeechPermyriadUnique__2 +FlaskChargeRecoveryDuringFlaskEffectUnique__1 +ManaRegenerationDuringFlaskEffectUnique__1 +]],[[ +The Flow Untethered +Cloth Belt +Variant: Pre 3.16.0 +Variant: Current +League: Harbinger +Source: No longer obtainable +LevelReq: 60 +Implicits: 1 +StunRecoveryImplicitBelt1 +HarbingerSkillOnEquipUnique__2 +{variant:1}LifeAndEnergyShieldRecoveryRateUnique_1[15,20][15,20] +{variant:2}LifeAndEnergyShieldRecoveryRateUnique_1 +AttackAndCastSpeedUnique__1 +GlobalCooldownRecoveryUnique__1 +DebuffTimePassedUnique__1 +]],[[ +The Torrent's Reclamation +Cloth Belt +Variant: Pre 3.16.0 +Variant: Current +LevelReq: 60 +Implicits: 1 +StunRecoveryImplicitBelt1 +HarbingerSkillOnEquipUnique2_2 +{variant:1}LifeAndEnergyShieldRecoveryRateUnique_1[15,20][15,20] +{variant:2}LifeAndEnergyShieldRecoveryRateUnique_1 +AttackAndCastSpeedUnique__1 +GlobalCooldownRecoveryUnique__1 +DebuffTimePassedUnique__1 +]],[[ +Gluttony +Leather Belt +Variant: Pre 3.12.0 +Variant: Current +LevelReq: 48 +Implicits: 1 +IncreasedLifeImplicitBelt1 +{variant:1}PoachersMarkCurseOnHitHexproofUnique__1 +IncreasedLifeUnique__120 +{variant:1}CullingStrikePoachersMarkUnique__1 +{variant:2}CullingStrikeCursedEnemyUnique__1_ +{variant:2}LifeGainOnHitCursedEnemyUnique__1 +{variant:2}ManaGainOnHitCursedEnemyUnique__1 +DamageOnMovementSkillUnique__1 +NoArmourOrEnergyShieldUnique__1_ +]],[[ +Graven's Secret +Cloth Belt +Variant: Pre 3.17.0 +Variant: Current +League: Ritual +Source: Drops from unique{The Maven} +LevelReq: 68 +Implicits: 1 +StunRecoveryImplicitBelt1 +IncreasedEnergyShieldUniqueBelt5 +MaximumManaUnique__8 +LightningResistUnique__24 +{variant:2}ChargeBonusMaximumPowerCharges +MinimumAbsorptionChargeModifiersEqualsPowerUnique__1 +MaximumAbsorptionChargesEqualsPowerUnique__1_ +GainAbsorptionChargesInsteadOfPowerUnique__1 +]],[[ +Headhunter +Leather Belt +League: Nemesis +LevelReq: 40 +Implicits: 1 +IncreasedLifeImplicitBelt1 +StrengthUniqueBelt7 +DexterityUniqueBelt7 +IncreasedLifeUniqueBelt7 +DamageOnRareMonstersUniqueBelt7 +GainRareMonsterModsOnKillUniqueBelt7_ +]],[[ +Replica Headhunter +Leather Belt +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +LevelReq: 40 +Implicits: 1 +IncreasedLifeImplicitBelt1 +StrengthUniqueBelt7 +DexterityUniqueBelt7 +IncreasedLifeUniqueBelt7 +DamageOnMagicMonstersUnique__1_ +GainMagicMonsterModsOnKillUnique__1_ +]],[[ +Hyperboreus +Leather Belt +League: Betrayal +Source: Drops from unique{Transportation Leaders} in normal{Safehouses} +Variant: Pre 3.11.0 (Life Regen) +Variant: Pre 3.11.0 (Fire and Chaos Resistances) +Variant: Pre 3.11.0 (Cold and Chaos Resistances) +Variant: Pre 3.11.0 (Light and Chaos Resistances) +Variant: Pre 3.11.0 (Strength and Dexterity) +Variant: Pre 3.11.0 (Dexterity and Intelligence) +Variant: Pre 3.11.0 (Strength and Intelligence) +Variant: Pre 3.11.0 (Trap Throwing Speed) +Variant: Pre 3.11.0 (Energy Shield Regen) +Variant: Pre 3.11.0 (Lucky Crit Chance while Focused) +Variant: Fire and Chaos Resistances (Current) +Variant: Cold and Chaos Resistances (Current) +Variant: Lightning and Chaos Resistances (Current) +Variant: Strength and Dexterity (Current) +Variant: Dexterity and Intelligence (Current) +Variant: Strength and Intelligence (Current) +Variant: Trap Throwing Speed (Current) +Variant: Energy Shield Regen (Current) +Variant: Lucky Crit Chance while Focused (Current) +LevelReq: 60 +Implicits: 1 +IncreasedLifeImplicitBelt1 +ColdResistUnique__16 +ChillNearbyEnemiesOnFocusUnique__1_ +{variant:1,2,3,4,5,6,7,8,9,10}FocusCooldownRecoveryUnique__1_[15,25] +{variant:11,12,13,14,15,16,17,18,19}FocusCooldownRecoveryUnique__1_ +DamageWithHitsAndAilmentsAgainstChilledEnemyUnique__1 +{variant:1}{crafted}{tags:life}Regenerate 2% of Life per second during any Flask Effect +{variant:2}{crafted}{tags:resistance}+(8-15)% to Fire and Chaos Resistances +{variant:3}{crafted}{tags:resistance}+(8-15)% to Cold and Chaos Resistances +{variant:4}{crafted}{tags:resistance}+(8-15)% to Lightning and Chaos Resistances +{variant:5}{crafted}{tags:attribute}+(6-17) to Strength and Dexterity +{variant:6}{crafted}{tags:attribute}+(6-17) to Dexterity and Intelligence +{variant:7}{crafted}{tags:attribute}+(6-17) to Strength and Intelligence +{variant:8}{crafted}{tags:speed}(7-12)% increased Trap Throwing Speed +{variant:9}{crafted}{tags:defences}Regenerate 120 Energy Shield per second while a Rare or Unique Enemy is Nearby +{variant:10,19}{crafted}Your Critical Strike Chance is Lucky while Focused +{variant:11}{crafted}{tags:resistance}+(16-20)% to Fire and Chaos Resistances +{variant:12}{crafted}{tags:resistance}+(16-20)% to Cold and Chaos Resistances +{variant:13}{crafted}{tags:resistance}+(16-20)% to Lightning and Chaos Resistances +{variant:14}{crafted}{tags:attribute}+(31-35) to Strength and Dexterity +{variant:15}{crafted}{tags:attribute}+(31-35) to Dexterity and Intelligence +{variant:16}{crafted}{tags:attribute}+(31-35) to Strength and Intelligence +{variant:17}{crafted}{tags:speed}(14-16)% increased Trap Throwing Speed +{variant:18}{crafted}{tags:defences}Regenerate 200 Energy Shield per second while a Rare or Unique Enemy is Nearby +{variant:19}{crafted}Focus has (5-8)% increased Cooldown Recovery Rate +]],[[ +Immortal Flesh +Leather Belt +Variant: Pre 1.3.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +LevelReq: 50 +Implicits: 1 +IncreasedLifeImplicitBelt1 +IncreasedLifeUniqueBelt8 +{variant:1,2,3}LifeRegenerationUniqueBelt8[4002,4500] +{variant:4}LifeRegenerationUniqueBelt8 +AddedManaRegenerationUniqueBelt8 +{variant:1}AllResistancesUniqueBelt8[-40,-40] +{variant:3,4}AllResistancesUniqueBelt8 +{variant:1}IncreasedMaximumResistsUnique__2[-10,-10] +{variant:2}IncreasedMaximumResistsUnique__2 +PhysicalAttackDamageReducedUniqueBelt8 +ArmourWhileNotIgnitedFrozenShockedBelt8 +]],[[ +Kaom's Binding +Heavy Belt +LevelReq: 56 +Implicits: 1 +StrengthImplicitBelt1 +StrengthUnique__11 +IncreasedPhysicalDamageReductionRatingUnique__8 +TakeNoBurningDamageIfStopBurningUnique__1 +NearbyEnemyPhysicalDamageConvertedToFire__1 +]],[[ +Leash of Oblation +Leather Belt +LevelReq: 49 +Implicits: 1 +IncreasedLifeImplicitBelt1 +AllAttributesUnique__10_ +IncreasedLifeUnique__110 +MultipleOfferingsAllowedUnique__1_ +OfferingDurationUnique__1 +]],[[ +The Magnate +Studded Belt +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +LevelReq: 16 +Implicits: 1 +StunDurationImplicitBelt1 +StrengthUniqueBelt2 +{variant:1,2}IncreasedPhysicalDamagePercentUniqueBelt2 +{variant:3}AllResistancesUnique__26 +BeltIncreasedFlaskChargesGainedUniqueBelt2 +{variant:2}AllResistanceAt200StrengthUnique__1 +{variant:3}DoubleDamageWith200StrengthUnique__1 +{variant:3}TripleDamageWith400StrengthUnique__1 +]],[[ +The Nomad +Studded Belt +Source: No longer obtainable +LevelReq: 48 +Implicits: 1 +StunDurationImplicitBelt1 +StrengthUniqueBelt2 +DexterityUnique__11 +IncreasedPhysicalDamagePercentUniqueBelt2 +BeltIncreasedFlaskChargesGainedUniqueBelt2 +AllResistanceAt200StrengthUnique__1 +ProjectileAttackDamageAt200DexterityUnique__1 +]],[[ +The Tactician +Studded Belt +Source: No longer obtainable +LevelReq: 48 +Implicits: 1 +StunDurationImplicitBelt1 +StrengthUniqueBelt2 +IntelligenceUnique__11 +IncreasedPhysicalDamagePercentUniqueBelt2 +BeltIncreasedFlaskChargesGainedUniqueBelt2 +AllResistanceAt200StrengthUnique__1 +CriticalStrikeChanceAt200IntelligenceUnique__1 +]],[[ +Mageblood +Heavy Belt +LevelReq: 44 +Implicits: 1 +StrengthImplicitBelt1 +DexterityUnique__22 +FireResistUnique__27_ +ColdResistUnique__19 +MagicUtilityFlasksCannotUseUnique__1____ +MagicUtilityFlasksAlwaysApplyUnique__1 +MagicUtilityFlasksCannotRemoveUnique__1 +]],[[ +Maligaro's Restraint +Chain Belt +LevelReq: 44 +Implicits: 1 +IncreasedEnergyShieldImplicitBelt1 +AddedLightningDamageUniqueBelt12 +SelfShockDurationUniqueBelt12_ +ShocksReflectToSelfUniqueBelt12 +DamageIncreaseWhileShockedUniqueBelt12 +MovementVelocityWhileShockedUniqueBelt12 +]],[[ +Meginord's Girdle +Heavy Belt +Variant: Pre 2.0.0 +Variant: Current +Implicits: 1 +StrengthImplicitBelt1 +StrengthUniqueBelt4 +{variant:1}AddedPhysicalDamageUniqueBelt4[5,5][15,15] +{variant:2}AddedPhysicalDamageUniqueBelt4 +MaximumLifeUniqueBelt4 +ColdResistUniqueBelt13 +BeltFlaskLifeRecoveryRateUniqueBelt4 +]],[[ +Mother's Embrace +Heavy Belt +LevelReq: 40 +Implicits: 1 +StrengthImplicitBelt1 +IncreasedLifeUnique__102 +ColdResistUniqueBelt1 +MinionsUseFlaskOnSummonUnique__1__ +MinionFlaskChargesUsedUnique__1 +MinionFlaskDurationUnique__1 +]],[[ +Nevalius Inheritance +Cloth Belt +League: Necropolis +Requires Level 16 +Implicits: 1 +StunRecoveryImplicitBelt1 +DexterityUnique__1 +BeltIncreasedFlaskDurationUnique__4 +BeltIncreasedFlaskEffectUnique__2 +FlaskDurationPerLevelUnique__1 +FlaskEffectPerLevelUnique__1 +]],[[ +Olesya's Delight +Cloth Belt +Variant: Pre 3.17.0 +Variant: Current +League: Ritual +Source: Drops from unique{The Maven} +LevelReq: 68 +Implicits: 1 +StunRecoveryImplicitBelt1 +IncreasedEvasionRatingUnique__5_ +ColdResistUnique__33 +MovementVelocityUnique__46 +{variant:2}ChargeBonusMaximumFrenzyCharges +MinimumAfflictionChargeModifiersEqualsFrenzyUnique__1 +MaximumAfflictionChargesEqualsFrenzyUnique__1 +GainAfflictionChargesInsteadOfFrenzyUnique__1 +]],[[ +Perandus Blazon +Cloth Belt +Variant: Pre 1.1.0 +Variant: Pre 3.25.0 +Variant: Current +Implicits: 1 +StunRecoveryImplicitBelt1 +AllAttributesUniqueBelt3 +{variant:1}ItemFoundQuantityIncreaseUniqueBelt3[8,12] +{variant:2}ItemFoundQuantityIncreaseUniqueBelt3 +{variant:3}ItemFoundRarityIncreaseUnique__4_ +FireResistUniqueBelt3 +BeltIncreasedFlaskDurationUniqueBelt3 +PhysicalAttackDamageReducedUniqueBelt3 +]],[[ +Ceinture of Benevolence +Cloth Belt +LevelReq: 40 +Implicits: 1 +StunRecoveryImplicitBelt1 +DexterityUnique__18 +IncreasedManaUnique__14 +BeltIncreasedFlaskChargedUsedUnique__2 +LinkSkillFlaskEffectsUnique__1 +]],[[ +Chain of Endurance +Chain Belt +LevelReq: 14 +IncreasedEnergyShieldImplicitBelt1 +IncreasedLifeUnique__118 +StunRecoveryUnique__6 +AttackerTakesDamageUnique__2 +LifeRegenerationPercentPerAilmentUnique__1 +]],[[ +Perseverance +Vanguard Belt +Variant: Pre 3.16.0 +Variant: Current +Implicits: 1 +ArmourAndEvasionImplicitBelt1 +MaximumLifeUnique__4_ +ColdResistUniqueBelt14 +AttackDamagePerLowestArmourOrEvasionUnique__1 +{variant:1}FortifyOnMeleeStunUnique__1[14,20] +{variant:2}FortifyOnMeleeStunUnique__1 +OnslaughtWhileFortifiedUnique__1 +]],[[ +Prismweave +Rustic Sash +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +LevelReq: 25 +Implicits: 1 +IncreasedPhysicalDamagePercentImplicitBelt1 +{variant:1}AddedFireDamageUniqueBelt10[3,4][7,8] +{variant:2}AddedFireDamageUniqueBelt10[7,8][15,16] +{variant:3}AddedFireDamageUniqueBelt10 +{variant:1}AddedColdDamageUniqueBelt10[2,3][5,7] +{variant:2}AddedColdDamageUniqueBelt10[5,6][12,14] +{variant:3}AddedColdDamageUniqueBelt10 +{variant:1}AddedLightningDamageUniqueBelt10[1,1][13,17] +{variant:2}AddedLightningDamageUniqueBelt10[1,1][30,34] +{variant:3}AddedLightningDamageUniqueBelt10 +{variant:1,2}AllResistancesUniqueBelt10[6,8] +{variant:3}AllResistancesUniqueBelt10 +IncreasedWeaponElementalDamageDuringFlaskUniqueBelt10 +{variant:1,2}WeaponElementalDamageUniqueBelt10 +]],[[ +Replica Prismweave +Rustic Sash +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Variant: Pre 3.19.0 +Variant: Current +LevelReq: 25 +Implicits: 1 +IncreasedPhysicalDamagePercentImplicitBelt1 +{variant:1}SpellAddedFireDamageUnique__6_[7,8][15,16] +{variant:2}SpellAddedFireDamageUnique__6_ +{variant:1}SpellAddedColdDamageUnique__6__[5,6][12,14] +{variant:2}SpellAddedColdDamageUnique__6__ +{variant:1}SpellAddedLightningDamageUnique__7[1,1][30,34] +{variant:2}SpellAddedLightningDamageUnique__7 +{variant:1}AllResistancesUniqueBelt10[6,8] +{variant:2}AllResistancesUniqueBelt10 +{variant:1}ElementalDamageUniqueDescentBelt1 +ElementalDamageDuringFlaskEffectUnique__1 +]],[[ +Pyroshock Clasp +Leather Belt +League: Heist +LevelReq: 43 +Implicits: 1 +IncreasedLifeImplicitBelt1 +DexterityImplicitQuiver1 +IncreasedEvasionRatingUnique__4 +ElementalStatusAilmentDurationUnique__1_ +EnemyIgnitedConvertedToFireUnique__1 +EnemyShockedConvertedToLightningUnique__1 +]],[[ +The Retch +Rustic Sash +League: Talisman Standard, Talisman Hardcore +Source: Vendor Recipe +LevelReq: 44 +Implicits: 1 +IncreasedPhysicalDamagePercentImplicitBelt1 +IncreasedLifeUnique__105 +ColdResistUniqueRing24 +LifeLeechPermyriadUnique__3 +BeltIncreasedFlaskDurationUnique__1 +FlaskChargeRecoveryDuringFlaskEffectUnique__2 +EnemiesLoseLifePlayerLeechesUnique__1 +MovementSpeedDuringFlaskEffectUnique__1 +]],[[ +Ryslatha's Coil +Studded Belt +Variant: Pre 3.5.0 +Variant: Current +LevelReq: 20 +Implicits: 1 +StunDurationImplicitBelt1 +StrengthUnique__19_ +{variant:1}RyuslathaMinimumDamageModifierUnique__1[-20,-20] +{variant:2}RyuslathaMinimumDamageModifierUnique__1 +{variant:1}RyuslathaMaximumDamageModifierUnique__1_[20,20] +{variant:2}RyuslathaMaximumDamageModifierUnique__1_ +AddedPhysicalDamageUnique__4 +{variant:2}IncreasedLifeUnique__108 +LifeGainedOnStunUnique__1_ +]],[[ +Siegebreaker +Heavy Belt +LevelReq: 44 +Implicits: 1 +StrengthImplicitBelt1 +IncreasedEnergyShieldPercentUnique__5 +MaximumLifeUnique__16 +ChaosResistImplicitRing1 +MinionAttacksTauntOnHitChanceUnique__1 +MinionCausticCloudOnDeathUnique__1_ +]],[[ +Replica Siegebreaker +Heavy Belt +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +LevelReq: 44 +Implicits: 1 +StrengthImplicitBelt1 +IncreasedEnergyShieldPercentUnique__3 +MaximumLifeUnique__11 +FireResistUnique__24 +MinionBurningCloudOnDeathUnique__1 +MinionChanceToMaimOnHitUnique__1_ +]],[[ +Soul Tether +Cloth Belt +LevelReq: 48 +Implicits: 1 +StunRecoveryImplicitBelt1 +IntelligenceUnique__25 +MaximumEnergyShieldAsPercentageOfLifeUnique__1 +KeystoneSoulTetherUnique__1 +]],[[ +Replica Soul Tether +Cloth Belt +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +LevelReq: 48 +Implicits: 1 +StunRecoveryImplicitBelt1 +StrengthUnique__10 +MaximumEnergyShieldAsPercentageOfLifeUnique__1 +KeystoneCorruptedSoulUnique_1 +]],[[ +Soulthirst +Cloth Belt +LevelReq: 45 +Implicits: 1 +StunRecoveryImplicitBelt1 +IncreasedLifeUnique__103 +AllResistancesUnique__1 +BeltFlaskManaRecoveryUnique__1 +IncreasedFlaskDurationUnique__1 +BeltSoulEaterDuringFlaskEffect__1 +BeltSoulsRemovedOnFlaskUse__1 +]],[[ +String of Servitude +Heavy Belt +League: Incursion +Source: Drops from unique{The Vaal Omnitect} +Variant: Area of Effect +Variant: Crit Multi during Flask Effect +Variant: Attack Speed during Flask Effect +Variant: Cast Speed during Flask Effect +Variant: Crit Chance during Flask Effect +Variant: Effect Duration +Variant: Energy Shield +Variant: Life +Variant: Movement Speed during Flask Effect +Variant: Item Rarity +Variant: Item Quantity +Variant: Wrath Aura Effect +Variant: Anger Aura Effect +Variant: Hatred Aura Effect +Variant: Determination Aura Effect +Variant: Discipline Aura Effect +Variant: Grace Aura Effect +Variant: Malevolence Aura Effect +Variant: Intelligence/Dexterity +Variant: Dexterity/Strength +Variant: Strength/Intelligence +Variant: Elemental Resistances +Implicits: 24 +{variant:1}AreaOfEffectUnique_9[24,30] +{variant:2}{tags:critical}+(60-75)% to Critical Strike Multiplier during any Flask Effect +{variant:3}{tags:speed}(24-36)% increased Attack Speed during any Flask Effect +{variant:4}{tags:speed}(24-36)% increased Cast Speed during any Flask Effect +{variant:5}{tags:critical}(105-120)% increased Critical Strike Chance during any Flask Effect +{variant:6}SkillEffectDurationUnique__1[36,45] +{variant:7}GlobalEnergyShieldPercentUnique__1[24,30] +{variant:8}MaximumLifeUnique__10_[18,24] +{variant:9}{tags:speed}(24-36)% increased Movement Speed during any Flask Effect +{variant:10}ItemFoundRarityIncreaseImplicitDemigodsBelt1[60,90] +{variant:11}ItemFoundQuantityIncreaseUniqueBelt3[9,15] +{variant:12}Wrath has (45-60)% increased Aura Effect +{variant:13}Anger has (45-60)% increased Aura Effect +{variant:14}Hatred has (45-60)% increased Aura Effect +{variant:15}Determination has (45-60)% increased Aura Effect +{variant:16}Discipline has (45-60)% increased Aura Effect +{variant:17}Grace has (45-60)% increased Aura Effect +{variant:18}Malevolence has (45-60)% increased Aura Effect +{variant:19}MutatedUniqueGlovesStrInt4PercentageIntelligence[12,18] +{variant:19}PercentageDexterityUnique__2[12,18] +{variant:20}PercentageDexterityUnique__2[12,18] +{variant:20}MutatedUniqueBelt4PercentageStrength[12,18] +{variant:21}MutatedUniqueBelt4PercentageStrength[12,18] +{variant:21}MutatedUniqueGlovesStrInt4PercentageIntelligence[12,18] +{variant:22}AllResistancesUniqueBelt10[42,48] +LocalTripleImplicitModsUnique__1__ +Corrupted +]],[[ +Sunblast +Cloth Belt +Variant: Pre 3.19.0 +Variant: Current +LevelReq: 37 +Implicits: 1 +StunRecoveryImplicitBelt1 +{variant:1}TrapDamageUniqueBelt6 +{variant:1}ManaRegenerationUniqueBelt6 +FireResistUniqueBelt6 +{variant:1}TrapDurationUniqueBelt6[-80,-80] +{variant:2}TrapDurationUniqueBelt6 +LightRadiusUniqueBelt6 +{variant:2}AdditionalTrapsThrownUnique__1 +{variant:2}TrapsCannotBeTriggeredByEnemiesUnique__1 +{variant:2}ThrowTrapsInCircleUnique__1 +]],[[ +Survivor's Guilt +Heavy Belt +League: Ritual +Source: Purchase from Ritual Reward +LevelReq: 52 +Implicits: 1 +StrengthImplicitBelt1 +IncreasedPhysicalDamageReductionRatingUnique__6_ +LifeRegenerationUnique__1 +IncreasedStunThresholdUnique__1_ +ArmourPerStrengthUnique__1_ +KeystoneSacredBastionUnique__1 +]],[[ +The Tides of Time +Vanguard Belt +Shaper Item +Source: Drops from unique{The Shaper} (Uber) +Requires Level 78 +Implicits: 1 +ArmourAndEvasionImplicitBelt1 +BeltFlaskLifeRecoveryUnique__2 +BeltFlaskManaRecoveryUnique__2 +BeltIncreasedFlaskEffectUnique__1 +LifeFlaskPassiveChargeGainUnique__2 +ManaFlaskPassiveChargeGainUnique__1 +UtilityFlaskPassiveChargeGainUnique__1 +]],[[ +Umbilicus Immortalis +Leather Belt +League: Perandus +LevelReq: 30 +Implicits: 1 +IncreasedLifeImplicitBelt1 +MaximumLifeUnique__1 +LifeRegenerationRatePercentageUniqueJewel24 +CannotBeAffectedByFlasksUnique__1 +FlasksApplyToMinionsUnique__1 +]],[[ +Wurm's Molt +Leather Belt +Variant: Pre 3.19.0 +Variant: Current +LevelReq: 41 +Implicits: 1 +IncreasedLifeImplicitBelt1 +StrengthUniqueBelt1 +IntelligenceUniqueBelt1 +{variant:1}ColdResistUniqueBelt1[10,20] +{variant:2}ColdResistUniqueBelt1 +{variant:1}LifeLeechPermyriadUniqueBelt1[40,40] +{variant:2}LifeLeechPermyriadUniqueBelt1 +{variant:1}ManaLeechPermyriadUniqueBelt1[40,40] +{variant:2}ManaLeechPermyriadUniqueBelt1 +{variant:2}IncreasedLifeLeechRateUnique__2 +{variant:2}IncreasedManaLeechRateUnique__1 +]],[[ +Ynda's Stand +Studded Belt +League: Settlers of Kalguur +Requires Level 52 +Implicits: 1 +StunDurationImplicitBelt1 +LifeRegenerationUnique__3 +FireResistUniqueBelt6 +ColdResistUniqueBelt1 +ConvertBodyArmourEvasionToWardUnique__1 +]],[[ +Binds of Bloody Vengeance +Vanguard Belt +Source: Drops from unique{Mercenary} after winning a duel +League: Mercenaries of Trarthus +Requires Level 78 +Implicits: 1 +ArmourAndEvasionImplicitBelt1 +IncreasedPhysicalDamageReductionRatingUnique__11 +IncreasedLifeUnique__100 +AttackDamageIfHitRecentlyUnique +AttackCritAfterBeingCritUnique +]],[[ +The Arkhon's Tools +Cloth Belt +Source: Drops from unique{Incarnation of Neglect} in normal{Moment of Loneliness} +Requires Level 16 +Implicits: 1 +StunRecoveryImplicitBelt1 +DexterityAndIntelligenceUnique_2 +ManaReservationEfficiencyUnique__3 +SummonFireSkitterbotUnique__1 +SkitterbotAurasAlsoAffectYouUnique__1 +SkitterbotIncreasedAilmentEffectUnique__1 +TrapAndMineThrowSpeedUnique_1 +]], +} diff --git a/src/Export/Uniques/body.lua b/src/Export/Uniques/body.lua new file mode 100644 index 0000000000..1346a212d3 --- /dev/null +++ b/src/Export/Uniques/body.lua @@ -0,0 +1,1467 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Body: Armour +[[ +Blunderbore +Astral Plate +League: Heist +Implicits: 1 +AllResistancesImplicitArmour1 +StrengthRequirementsUnique__3_ +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22 +ShrineBuffEffectUnique__1 +HasBrutalShrineBuffUnique__1 +HasMassiveShrineBuffUnique__1 +]],[[ +Bramblejack +Plate Vest +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +{variant:1}AddedPhysicalDamageUniqueBodyStr2 +{variant:1}IncreasedLifeUniqueBodyStr2[12,20] +{variant:2}IncreasedLifeUniqueBodyStr2 +{variant:1}PhysicalAttackDamageReducedUniqueBodyStr2[-2,-2] +{variant:2}PhysicalAttackDamageReducedUniqueBodyStr2 +{variant:1}PhysicalDamageTakenPercentToReflectUniqueBodyStr2[40,40] +{variant:2}PhysicalDamageTakenPercentToReflectUniqueBodyStr2 +]],[[ +Wall of Brambles +Plate Vest +Source: No longer obtainable +LevelReq: 30 +Implicits: 0 +AddedPhysicalDamageUniqueBodyStr2 +LocalIncreasedPhysicalDamageReductionRatingTransformedUnique__1 +IncreasedLifeUniqueBodyStr2[12,20] +PhysicalAttackDamageReducedUniqueBodyStr2[-2,-2] +PhysicalDamageTakenPercentToReflectUniqueBodyStr2[40,40] +]],[[ +The Brass Dome +Gladiator Plate +Variant: Pre 3.16.0 +Variant: Current +Implicits: 0 +{variant:1}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__3[600,650] +{variant:2}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__3 +{variant:1}ReducedChanceToBlockUnique__1 +{variant:1}ReducedMovementVelocityUnique__1 +{variant:1}SelfShockDurationUnique__2 +TakeNoExtraDamageFromCriticalStrikesUnique__1 +{variant:2}MaximumElementalResistanceUnique__1__ +{variant:2}NoMaximumLifePerStrengthUnique__1 +]],[[ +Craiceann's Carapace +Golden Plate +Variant: Pre 3.16.0 +Variant: Current +League: Bestiary +Source: Drops from unique{Craiceann, First of the Deep} +Implicits: 0 +GrantsCrabAspect1_ +{variant:1}LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStr6[300,350] +{variant:2}LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStr6 +IncreasedLifeUnique__72_ +FireAndColdResistUnique__3 +BleedingImmunityUnique__1 +MaximumCrabBarriersUnique__1 +]],[[ +Death's Oath +Astral Plate +Variant: Pre 2.0.0 +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +AllResistancesImplicitArmour1 +{variant:3}ChaosDegenAuraUnique__1 +AllAttributesUniqueBodyStr3 +IncreasedAttackSpeedUniqueBodyStr3 +LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr3 +{variant:3}IncreasedLifeUniqueBodyDex6 +LifeLeechPermyriadUniqueBodyStr3 +{variant:1,2}DisplayChaosDegenerationAuraUniqueBodyStr3 +{variant:1}ChaosDegenerationOnKillUniqueBodyStr3[27000,27000][600,600] +{variant:2,3}ChaosDegenerationOnKillUniqueBodyStr3 +ItemBloodFootstepsUniqueBodyStr3 +]],[[ +Doppelgänger Guise +Sadist Garb +Variant: Pre 3.17.0 +Variant: Current +League: Ritual +Source: Drops from unique{The Maven} +Implicits: 0 +GrantsUnhingeUnique__1 +CriticalStrikeChanceFinalUnhingedUnique__1 +EnemiesExplodeOnKillUnhingedUnique__1_ +{variant:1}PhysicalChaosDamageTakenNotUnhingedUnique__1_[15,25] +{variant:2}PhysicalChaosDamageTakenNotUnhingedUnique__1_ +RegenerateLifeNotUnhingedUnique__1 +]],[[ +Greed's Embrace +Golden Plate +Variant: Pre 3.25.0 +Variant: Current +Implicits: 0 +ReducedStrengthRequirementUniqueBodyStr5 +{variant:1}ItemFoundQuantityIncreaseUniqueBodyStr5 +{variant:1}ItemFoundRarityIncreaseUniqueBodyStr5[30,50] +{variant:2}ItemFoundRarityIncreaseUniqueBodyStr5 +FireResistUniqueBodyStr5 +ColdResistUniqueBodyStr5 +{variant:1}LightningResistUniqueBodyStr5[-20,-20] +{variant:2}LightningResistUniqueBodyStr5 +MovementVelocityUniqueBodyStr5 +]],[[ +Kaom's Heart +Glorious Plate +Variant: Pre 1.0.0 +Variant: Pre 3.25.0 +Variant: Current +Implicits: 0 +HasNoSockets +{variant:2}FireDamagePercentUniqueBodyInt4[20,40] +{variant:1,3}IncreasedLifeUniqueBodyStr1[1000,1000] +{variant:2}IncreasedLifeUniqueBodyStr1[500,500] +]],[[ +Replica Kaom's Heart +Glorious Plate +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 0 +HasNoSockets +LightningDamagePercentUnique__8 +IncreasedManaUnique__19 +]],[[ +Lioneye's Vision +Crusader Plate +Variant: Pre 3.5.0 +Variant: Current +Implicits: 0 +SocketedGemsSupportedByPierceUniqueBodyStr6 +LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStr6 +IncreasedLifeUniqueBodyStr6 +ManaLeechPermyriadUniqueBodyStr6 +{variant:2}DexterityRequirementsUnique__1 +ChanceToBePiercedUniqueBodyStr6 +]],[[ +Iron Heart +Crusader Plate +Source: No longer obtainable +Implicits: 0 +BlockPercentUnique__1 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__15 +ReducedMovementVelocityUnique__2 +CannotBlockSpellsUnique__1 +StrengthDamageBonus3Per10Unique__1 +]],[[ +The Iron Fortress +Crusader Plate +Implicits: 0 +BlockChancePer50StrengthUnique__1 +ExtraRollsSpellBlockUnique__1 +StrengthUnique__13_ +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12 +ReducedMovementVelocityUnique__1 +StrengthDamageBonus3Per10Unique__1 +]],[[ +Perfidy +Glorious Plate +League: Delirium +Variant: Pre 3.25.0 +Variant: Current +Implicits: 0 +MeleeDamageUnique__2 +IncreasedLifeUniqueBodyStrDex3_ +Allow2ActiveBannersUnique__1 +{variant:2}BannerResourceGainedUnique__1 +]],[[ +Pragmatism +Colosseum Plate +League: Affliction +Requires Level 49, 134 Str +LocalIncreaseSocketedActiveSkillGemLevelUnique__1 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19 +IncreasedManaUnique__28 +LocalIncreaseSocketedGemLevelPerFilledSocketUnique__1 +]],[[ +Solaris Lorica +Copper Plate +Variant: Pre 2.6.0 +Variant: Current +Implicits: 0 +StrengthUniqueBodyStr4 +LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStr4 +{variant:2}ChaosDamageOverTimeUnique__1 +LightRadiusUniqueBodyStr4 +ChaosTakenOnES +{variant:1}ChaosDamageTakenUniqueBodyStr4[-10,-10] +{variant:2}ChaosDamageTakenUniqueBodyStr4[-30,-40] +]],[[ +Utula's Hunger +Majestic Plate +Requires Level 53, 145 Str +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__27 +MaximumLifeOnKillPercentUnique__2 +StunRecoveryUnique__2 +IncreasedLifeNoLifeModifiersUnique__1 +]], +-- Body: Evasion +[[ +Ashrend +Buckskin Tunic +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +{variant:2}ItemActsAsFireDamageSupportUniqueSceptre2 +LocalIncreasedEvasionRatingPercentUniqueBodyDex3 +{variant:2}IncreasedLifeUnique__107 +FireResistUniqueBodyDex3 +AvoidIgniteUniqueBodyDex3 +{variant:1,2}RangedWeaponPhysicalDamagePlusPercentUnique__1[10,15] +{variant:3}RangedWeaponPhysicalDamagePlusPercentUnique__1 +{variant:1,2}PhysicalAttackDamageReducedUniqueBodyDex3[-5,-7] +{variant:3}PhysicalAttackDamageReducedUniqueBodyDex3[-30,-60] +]],[[ +Briskwrap +{variant:1,2,3}Strapped Leather +{variant:4}Sun Leather +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +{variant:1}PercentageDexterityUniqueBodyDex7[5,5] +{variant:2,3,4}PercentageDexterityUniqueBodyDex7 +{variant:1,2}IncreasedAttackSpeedUniqueBodyDex5[5,5] +{variant:3}IncreasedAttackSpeedUniqueBodyDex5 +LocalIncreasedEvasionRatingUniqueBodyDex7 +ColdResistUniqueBodyDex7 +{variant:1,2,3}MovementVelocityUniqueBodyDex7 +{variant:1,2,3}FlaskManaRecoveryUniqueBodyDex7[20,25] +{variant:4}FlaskManaRecoveryUniqueBodyDex7 +{variant:4}DamagePer15DexterityUnique__2 +]],[[ +Wildwrap +Strapped Leather +Source: No longer obtainable +LevelReq: 57 +Implicits: 0 +IncreasedAttackSpeedUniqueBodyDex7 +IncreasedEvasionRatingUnique__5_ +ColdResistUniqueBodyDex7 +MovementVelocityUniqueBodyDex7 +FlaskManaRecoveryUniqueBodyDex7[20,25] +PercentageDexterityUniqueBodyDex7 +DamagePer15DexterityUnique__1 +]],[[ +Bronn's Lithe +Cutthroat's Garb +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +{variant:1,2,3}LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5[2,2] +{variant:4}LocalIncreaseSocketedMovementGemLevelUniqueBodyDex5 +IncreasedAttackSpeedUniqueBodyDex5 +{variant:2,3}DamageWithMovementSkillsUniqueBodyDex5[35,50] +{variant:4}DamageWithMovementSkillsUniqueBodyDex5 +LocalIncreasedEvasionRatingPercentUniqueBodyDex5 +MovementVelocityUniqueBodyDex5 +{variant:3}AttackAndCastSpeedOnUsingMovementSkillUnique__1 +]],[[ +Cospri's Will +Assassin's Garb +Variant: Pre 3.0.0 +Variant: Pre 3.20.0 +Variant: Current +Implicits: 1 +MovementVelocityImplicitArmour1 +{variant:1,2}LocalIncreasedEvasionRatingPercentUnique__2[120,160] +{variant:3}LocalIncreasedEvasionRatingPercentUnique__2 +{variant:1,2}ChaosResistUnique__3[17,29] +{variant:3}ChaosResistUnique__3 +AdditionalCurseOnEnemiesUnique__1 +IgnoreHexproofUnique___1 +{variant:1,3}ChanceToPoisonCursedEnemiesOnHitUnique__1 +{variant:2}ChanceToPoisonCursedEnemiesOnHitUnique__1[60,60] +]],[[ +Foxshade +Wild Leather +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +DexterityUniqueBodyDex4 +{variant:1,2}AddedPhysicalDamageUniqueBodyDex4 +{variant:1}EvasionOnFullLifeUniqueBodyDex4[150,150] +{variant:2}EvasionOnFullLifeUniqueBodyDex4[500,500] +{variant:3}EvasionOnFullLifeUniqueBodyDex4 +LocalIncreasedEvasionRatingPercentUniqueBodyDex4 +{variant:1,2}MovementVelocityUniqueBodyDex4 +{variant:3}MovementVelocityOnFullLifeUnique__1 +{variant:3}EnemyExtraDamageRollsOnFullLifeUnique__1 +]],[[ +Fox's Fortune +Wild Leather +Source: No longer obtainable +Implicits: 0 +DexterityUniqueBodyDex4 +AddedPhysicalDamageUniqueBodyDex4 +EvasionOnFullLifeUnique__1_ +IncreasedEvasionRatingUniqueOneHandSword4 +LocalIncreasedEvasionRatingPercentUnique__14 +MovementVelocityUniqueBodyDex4 +EnemyExtraDamageRollsOnFullLifeUnique__1 +]],[[ +Hyrri's Ire +Zodiac Leather +Variant: Pre 1.0.0 +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.5.0 +Variant: Pre 3.9.0 +Variant: Current +Implicits: 0 +{variant:1,2,3}DexterityUniqueBodyDex1[20,30] +{variant:4,5,6}DexterityUniqueBodyDex1 +{variant:1}LocalIncreasedEvasionRatingPercentUniqueBodyDex1[80,120] +{variant:2,3,4,5,6}LocalIncreasedEvasionRatingPercentUniqueBodyDex1 +IncreasedChillDurationUniqueBodyDex1 +{variant:1,2,3}AddedColdDamageUniqueBodyDex1[13,13][24,24] +{variant:4}AddedColdDamageUniqueBodyDex1[50,60][70,80] +{variant:5}AddedColdDamageUniqueBodyDex1[173,188][240,262] +{variant:6}AddedColdDamageUniqueBodyDex1 +{variant:1,2}KeystoneAcrobaticsUnique__1 +{variant:3,4,5,6}ChanceToSuppressSpellsUniqueBodyDex1 +]],[[ +Replica Hyrri's Ire +Zodiac Leather +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +ChanceToSuppressSpellsUniqueBodyDex1 +IntelligenceUnique__11 +LocalIncreasedEvasionRatingPercentUniqueBodyDex1 +ShockDurationUnique__3 +AddedLightningDamageUnique__4 +]],[[ +Kintsugi +Exquisite Leather +Variant: Pre 3.19.0 +Variant: Pre 3.26.0 +Variant: Current +Implicits: 0 +{variant:1}LocalIncreasedEvasionRatingPercentUnique__1[100,120] +{variant:2}LocalIncreasedEvasionRatingPercentUnique__1[120,160] +{variant:3}LocalIncreasedEvasionRatingPercentUnique__1 +{variant:1}IncreasedLifeUnique__3 +FireResistUnique__6 +{variant:1}ReducedDamageIfNotHitRecentlyUnique__1[-20,-20] +{variant:2,3}ReducedDamageIfNotHitRecentlyUnique__1 +{variant:1}IncreasedEvasionIfHitRecentlyUnique___1[50,50] +{variant:2,3}IncreasedEvasionIfHitRecentlyUnique___1 +]],[[ +Queen of the Forest +Destiny Leather +Variant: Pre 3.1.0 +Variant: Current +Implicits: 0 +{variant:1}LocalIncreasedEvasionRatingPercentUniqueBodyDex6[240,380] +{variant:2}LocalIncreasedEvasionRatingPercentUniqueBodyDex6 +IncreasedLifeUniqueBodyDex6 +FireResistanceBodyDex6 +ColdResistanceBodyDex6 +LightningResistanceBodyDex6 +MovementVeolcityUniqueBodyDex6 +MovementVelicityPerEvasionUniqueBodyDex6 +PhysicalDamageFromBeastsUniqueBodyDex6 +]],[[ +The Rat Cage +Sharkskin Tunic +League: Torment +Variant: Pre 2.6.0 +Variant: 3.19.0 +Variant: Current +Implicits: 0 +LocalIncreasedEvasionRatingPercentUniqueBodyStrDex5 +{variant:1,2}IncreasedLifeUniqueBodyStrDex5[160,200] +{variant:3}IncreasedLifeUniqueBodyStrDex5 +{variant:1}MaximumFireResistUnique__1[-5,-5] +{variant:2}FireResistUnique__11 +MovementVelocityUniqueBodyStrDex5_ +{variant:1,2}IncreasedFireDamageTakenUniqueBodyStrDex5 +{variant:1,2}FireDamageTakenConvertedToPhysicalUnique__1[10,10] +{variant:3}FireDamageTakenConvertedToPhysicalUnique__1 +]],[[ +The Snowblind Grace +{variant:1,2}Coronal Leather +{variant:3}Zodiac Leather +League: Breach +Source: Drops in Tul Breach or from unique{Tul, Creeping Avalanche} +Upgrade: Upgrades to unique{The Perfect Form} using currency{Blessing of Tul} +Variant: Pre 3.16.0 +Variant: Pre 3.21.0 +Variant: Current +Implicits: 0 +{variant:1}ChanceToDodgeSpellsUnique__2[10,10] +{variant:2}ChanceToDodgeSpellsUnique__2 +{variant:1,2}DexterityUnique__10_ +{variant:3}PercentageDexterityUnique__4 +{variant:1}LocalIncreasedEvasionRatingPercentUniqueBodyDex3[30,50] +{variant:2,3}LocalIncreasedEvasionRatingPercentUniqueBodyDex3 +IncreasedLifeUnique__26 +{variant:1,2}ArcticArmourBuffEffectUnique__1_[25,25] +{variant:3}ArcticArmourBuffEffectUnique__1_ +{variant:3}ArcticArmourReservationCostUnique__1 +{variant:1,2}EvasionIncreasedByUncappedColdResistanceUnique__1 +]],[[ +The Perfect Form +Zodiac Leather +League: Breach +Source: Upgraded from unique{The Snowblind Grace} using currency{Blessing of Tul} +Variant: Pre 3.16.0 +Variant: Pre 3.21.0 +Variant: Current +Implicits: 0 +{variant:3}ChanceToSuppressSpellsUnique__1 +{variant:1}PercentageDexterityUnique__4[5,10] +{variant:2}PercentageDexterityUnique__4 +{variant:1}LocalIncreasedEvasionRatingPercentUnique__4[30,50] +{variant:2}LocalIncreasedEvasionRatingPercentUnique__4[80,100] +{variant:3}LocalIncreasedEvasionRatingPercentUnique__4 +{variant:1}IncreasedLifeUniqueBodyStrDex4[50,80] +{variant:2}IncreasedLifeUniqueBodyStrDex4 +ColdResistUnique__14 +{variant:1,2}ArcticArmourReservationCostUnique__1 +EvasionIncreasedByUncappedColdResistanceUnique__1 +Acrobatics +]],[[ +Replica Perfect Form +Zodiac Leather +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Variant: Pre 3.16.0 +Variant: Pre 3.21.0 +Variant: Pre 3.23.0 +Variant: Current +Implicits: 0 +{variant:1}PercentageDexterityUnique__4[5,10] +{variant:2,3}PercentageDexterityUnique__4 +{variant:1}LocalIncreasedEvasionRatingPercentUnique__2[30,50] +{variant:2}LocalIncreasedEvasionRatingPercentUnique__2[80,100] +{variant:3,4}LocalIncreasedEvasionRatingPercentUnique__2 +{variant:1}IncreasedLifeUniqueBodyStrDex4[50,80] +{variant:2,3}IncreasedLifeUniqueBodyStrDex4 +ColdResistUnique__14 +{variant:4}AdditionalBlockUniqueBodyDex2[20,20] +{variant:1,2,3,4}EvasionIncreasedByUncappedColdResistanceUnique__1 +{variant:3}FleshAndStoneManaReservationUnique__1_ +{variant:3}KeystoneHollowPalmTechniqueUnique__1 +{variant:4}KeystoneVersatileCombatantUnique___1 +]],[[ +Yriel's Fostering +Exquisite Leather +Variant: Rhoa Pre 3.26 +Variant: Snake Pre 3.26 +Variant: Ursa Pre 3.26 +Variant: Rhoa Current +Variant: Snake Current +Variant: Ursa Current +Implicits: 0 +{variant:1,4}GrantsSummonBeastRhoaUnique__1 +{variant:2,5}GrantsSummonBeastSnakeUnique__1 +{variant:3,6}GrantsSummonBeastUrsaUnique__1 +IncreasedAccuracyUnique__1 +LocalIncreasedEvasionRatingPercentUnique__9 +IncreasedLifeUniqueBodyStrDexInt1 +ProjectileAttackCriticalStrikeChanceUnique__1 +{variant:1}Projectiles from Attacks have 20% chance to Maim on Hit while you have a Bestial Minion +{variant:4}Projectiles from Attacks have 100% chance to Maim on Hit while you have a Bestial Minion +{variant:2}Projectiles from Attacks have 20% chance to Poison on Hit while you have a Bestial Minion +{variant:5}Projectiles from Attacks have 100% chance to Poison on Hit while you have a Bestial Minion +{variant:3}Projectiles from Attacks have 20% chance to inflict Bleeding on Hit while you have a Bestial Minion +{variant:6}Projectiles from Attacks have 100% chance to inflict Bleeding on Hit while you have a Bestial Minion +{variant:1}AttackAndMovementSpeedBeastialMinionUnique__1[10,15] +{variant:4}AttackAndMovementSpeedBeastialMinionUnique__1 +{variant:2}AddedChaosDamageToAttacksBeastialMinionUnique__1[13,19][23,29] +{variant:5}AddedChaosDamageToAttacksBeastialMinionUnique__1 +{variant:3}AddedPhysicalDamageToAttacksBeastialMinionUnique__1[11,16][21,25] +{variant:6}AddedPhysicalDamageToAttacksBeastialMinionUnique__1 +]], +-- Body: Energy Shield +[[ +The Apostate +Cabalist Regalia +Requires Level 35 +Source: Drops from unique{Synthete Nightmare} in normal{The Cortex} (Uber) +StrengthUnique__18 +AllResistancesUnique__31 +LifeFromEnergyShieldArmourUnique__1 +]],[[ +The Beast Fur Shawl +Vaal Regalia +Variant: Pre 3.0.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +SpellDamageUnique__3 +{variant:1}IncreasedEnergyShieldImplicitRing1[55,65] +{variant:2}IncreasedEnergyShieldImplicitRing1 +{variant:1,2}LocalIncreasedEnergyShieldUniqueBodyInt4[110,130] +{variant:3}LocalIncreasedEnergyShieldUniqueBodyInt4 +{variant:1,2}EnergyShieldRecoveryRateUnique__1[30,40] +{variant:3}EnergyShieldRecoveryRateUnique__1 +AreaOfEffectUnique__1 +{variant:1,2}IncreasedDamageTakenUnique__1[5,5] +{variant:3}IncreasedDamageTakenUnique__1 +]],[[ +Cloak of Flame +Scholar's Robe +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +{variant:1}FireResistUniqueBodyInt2[30,50] +{variant:2}FireResistUniqueBodyInt2 +{variant:1}BurnDurationUniqueBodyInt2[30,50] +{variant:2}BurnDurationUniqueBodyInt2 +{variant:1}ChanceToIgniteUniqueBodyInt2 +{variant:1}AttackerTakesFireDamageUniqueBodyInt2[15,15] +{variant:2}AttackerTakesFireDamageUniqueBodyInt2 +{variant:1}PhysicalDamageTakenAsFirePercentUniqueBodyInt2 +{variant:2}PhysicalHitAndDoTDamageTakenAsFireUnique__2 +]],[[ +Cloak of Tawm'r Isley +Savant's Robe +Source: Drops from unique{Elreon, Light's Judge} during Betrayal encounters +Variant: Pre 3.0.0 +Variant: Current +Implicits: 0 +DisplaySocketedMinionGemsSupportedByLifeLeechUnique__1 +{variant:1}LocalIncreasedEnergyShieldPercentUniqueBody_1[250,300] +{variant:2}LocalIncreasedEnergyShieldPercentUniqueBody_1 +MinionBlindImmunityUnique__1 +MinionChanceToBlindOnHitUnique__1 +MagicItemsDropIdentifiedUnique__1 +]],[[ +The Coming Calamity +Destroyer Regalia +Implicits: 0 +LocalIncreaseSocketedHeraldLevelUnique__1_ +LocalIncreasedEnergyShieldPercentUnique__6 +StunAvoidancePerHeraldUnique__1 +HeraldsAlwaysCost45Unique__1 +]],[[ +The Covenant +Spidersilk Robe +Variant: Pre 1.0.0 +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +{variant:1,2,3,4,5}SocketedGemsHaveAddedChaosDamageUnique__3[15,15] +{variant:6}SocketedGemsHaveAddedChaosDamageUnique__3 +{variant:4,5}SocketedGemsHaveBloodMagicUnique__1 +IntelligenceUniqueBodyInt3 +{variant:1}LocalIncreasedEnergyShieldUniqueBodyInt3[125,150] +{variant:2}LocalIncreasedEnergyShieldUniqueBodyInt3[180,220] +{variant:3,4}LocalIncreasedEnergyShieldUniqueBodyInt3[280,320] +{variant:5,6}LocalIncreasedEnergyShieldUniqueBodyInt3 +{variant:1,2,3}MaximumLifeUniqueAmulet6 +{variant:4,5,6}MaximumLifeUniqueBodyInt3 +{variant:1,2,3}BloodMagic +{variant:6}LifeCostAsManaCostUnique__1 +]],[[ +Replica Covenant +Spidersilk Robe +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +DisplaySupportedByAddedColdDamageUnique__2 +IntelligenceUniqueBodyInt3 +LocalIncreasedEnergyShieldUniqueBodyInt3 +MaximumLifeUniqueBodyInt3 +EnergyShieldCostAsManaCostUnique__1 +]],[[ +Dialla's Malefaction +Sage's Robe +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +LocalCanSocketIgnoringColourUnique__1 +{variant:1}SocketedGemsInRedSocketEffectUnique__1[1,1] +{variant:2}SocketedGemsInRedSocketEffectUnique__1 +{variant:1}SocketedGemsInGreenSocketEffectUnique__1[10,10] +{variant:2}SocketedGemsInGreenSocketEffectUnique__1 +{variant:1}SocketedGemsInBlueSocketEffectUnique__1[25,25] +{variant:2}SocketedGemsInBlueSocketEffectUnique__1 +LocalNoAttributeRequirementsUnique__1 +]],[[ +Doedre's Skin +Widowsilk Robe +Variant: Pre 3.5.0 +Variant: Pre 3.16.0 +Variant: Current +Implicits: 0 +SocketedGemsSupportedByBlasphemyUnique__2__ +GrantCursePillarSkillUnique +{variant:3}DoedresSkinLessCurseEffectUnique__1 +IntelligenceUniqueBodyStrInt3 +LocalIncreasedEnergyShieldPercentUnique__14 +{variant:1}CurseEffectivenessUnique__2_[-33,-25] +]],[[ +Fenumus' Shroud +Widowsilk Robe +League: Bestiary +Source: Drops from unique{Fenumus, First of the Night} +Implicits: 0 +IntelligenceUniqueBodyStrInt3 +LocalIncreasedEnergyShieldPercentUnique__17 +FlatEnergyShieldRegenerationUnique__1 +DamageDealtByWebbedEnemiesUnique__1 +ResistancesOfWebbedEnemiesUnique__1 +AreaOfEffectAspectOfSpiderUnique__1 +]],[[ +Fleshcrafter +Necromancer Silks +League: Harvest +Implicits: 0 +LocalIncreasedEnergyShieldUniqueBodyInt1 +Minions Convert 2% of their Maximum Life to Maximum Energy Shield per 1% Chaos Resistance they have +MinionChaosDamageDoesNotBypassESUnique__1 +MinionEnergyShieldRechargeDelayUnique__1 +MinionHitsIgnoreResistanceWithESUnique__1_ +]],[[ +Garb of the Ephemeral +Savant's Robe +League: Synthesis +Source: Drops from unique{Synthete Nightmare} in normal{The Cortex} +Implicits: 0 +{fractured}LocalIncreasedEnergyShieldPercentUnique__24 +StrengthIntelligenceRequirementsUnique__1 +DivineChargeOnHitUnique__1_ +GainDivinityOnMaxDivineChargeUnique__1 +NearbyAlliesCannotBeSlowedUnique__1 +NearbyEnemiesCannotCritUnique__1 +]],[[ +Infernal Mantle +{variant:1}Occultist's Vestment +{variant:2,3,4,5}Widowsilk Robe +Variant: Pre 2.0.0 +Variant: Pre 3.0.0 +Variant: Pre 3.14.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 1 +{variant:1}SpellDamageImplicitArmour1 +{variant:1,2,3,4}LocalIncreaseSocketedFireGemLevelUniqueBodyInt4[1,1] +{variant:5}LocalIncreaseSocketedFireGemLevelUniqueBodyInt4 +{variant:1,2,3,4}FireDamagePercentUniqueBodyInt4 +CriticalStrikeChanceUniqueBodyInt4 +{variant:1,2}LocalIncreasedEnergyShieldUniqueBodyInt4[190,230] +{variant:3,4,5}LocalIncreasedEnergyShieldUniqueBodyInt4 +ConvertFireToChaosUniqueBodyInt4 +{variant:1,2,5}SpellDamageTakenOnLowManaUniqueBodyInt4[100,100] +{variant:3}SpellDamageTakenOnLowManaUniqueBodyInt4[25,25] +{variant:4}SpellDamageTakenOnLowManaUniqueBodyInt4[15,15] +]],[[ +Shavronne's Wrappings +Occultist's Vestment +Variant: Pre 1.0.0 +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +SpellDamageImplicitArmour1 +{variant:1}LocalIncreasedEnergyShieldUniqueBodyInt1[200,250] +{variant:2}LocalIncreasedEnergyShieldUniqueBodyInt1[140,200] +{variant:3}LocalIncreasedEnergyShieldUniqueBodyInt1 +ReducedEnergyShieldDelayUniqueBodyInt1 +LightningResistUniqueBodyInt1 +AttackerTakesLightningDamageUniqueBodyInt1 +ChaosTakenOnES +]],[[ +Skin of the Loyal +Simple Robe +League: Breach +Source: Drops in Chayula Breach or from unique{Chayula, Who Dreamt} +Upgrade: Upgrades to unique{Skin of the Lords} using currency{Blessing of Chayula} +Implicits: 0 +Roll6LinkedRandomColourSocketsUnique__1 +LocalIncreaseSocketedGemLevelUnique__2 +AllDefencesUnique__2 +]],[[ +Soul Mantle +Spidersilk Robe +Variant: Pre 1.2.0 +Variant: Pre 2.6.0 +Variant: Pre 3.16.0 +Variant: Pre 3.17.0 +Variant: Current +Implicits: 0 +{variant:1,2}DisplaySocketedGemGetsSpellTotemBodyInt7[14,14] +{variant:3,4,5}DisplaySocketedGemGetsSpellTotemBodyInt7 +SpellDamageUniqueBodyInt7 +LocalIncreasedEnergyShieldUniqueBodyInt7 +{variant:1}TotemLifeUniqueBodyInt7[25,25] +{variant:2,3}TotemLifeUniqueBodyInt7[50,50] +{variant:4,5}TotemLifeUniqueBodyInt7 +{variant:1,2,3,4}AdditionalTotemsUnique__1 +RandomlyCursedWhenTotemsDieUniqueBodyInt7 +]],[[ +Tabula Rasa +Simple Robe +Sockets: W-W-W-W-W-W +]],[[ +Thousand Ribbons +Simple Robe +Variant: Pre 3.0.0 +Variant: Pre 3.19.0 +Variant: Current +SocketedGemsGetElementalProliferationUniqueBodyInt5 +{variant:1,2}AddedFireDamageUniqueBodyInt5[2,2][3,3] +{variant:3}AddedFireDamageUniqueBodyInt5 +{variant:1,2}AddedColdDamageUniqueBodyInt5[2,2][3,3] +{variant:3}AddedColdDamageUniqueBodyInt5 +{variant:1,2}AddedLightningDamageUniqueBodyInt5_[1,1][4,4] +{variant:3}AddedLightningDamageUniqueBodyInt5_ +{variant:1}IncreasedCastSpeedUniqueAmulet16 +{variant:1,2}LocalIncreasedEvasionRatingUniqueBodyInt5[10,20] +{variant:3}LocalIncreasedEvasionRatingUniqueBodyInt5 +{variant:1,2}LocalIncreasedEnergyShieldUniqueBodyInt5[10,20] +{variant:3}LocalIncreasedEnergyShieldUniqueBodyInt5 +{variant:1,2}IncreasedLifeUniqueBodyInt5[6,6] +{variant:3}IncreasedLifeUniqueBodyInt5 +{variant:1,2}IncreasedManaUniqueBodyInt5[6,6] +{variant:3}IncreasedManaUniqueBodyInt5 +{variant:1,2}FireResistUniqueBodyInt5[5,10] +{variant:3}FireResistUniqueBodyInt5 +{variant:1,2}ColdResistUniqueBodyInt5[5,10] +{variant:3}ColdResistUniqueBodyInt5 +{variant:1,2}LightningResistUniqueBodyInt5[5,10] +{variant:3}LightningResistUniqueBodyInt5 +]],[[ +Vis Mortis +Necromancer Silks +Variant: Pre 2.6.0 +Variant: Pre 3.8.0 +Variant: Current +Implicits: 0 +{variant:1}LocalIncreasedEnergyShieldUniqueBodyInt9[100,120] +{variant:2,3}LocalIncreasedEnergyShieldUniqueBodyInt9 +IncreasedManaUniqueBodyInt9 +MinionLifeUniqueBodyInt9 +MinionDamageUniqueBodyInt9 +{variant:1,2}MaximumMinionCountUniqueBodyInt9 +{variant:1}MinionUnholyMightOnKillUniqueBodyInt9[5000,5000] +{variant:2}MinionUnholyMightOnKillUniqueBodyInt9 +{variant:3}MinionElementalDamageAddedAsChaosUnique__1 +]],[[ +Zahndethus' Cassock +Sage's Robe +Variant: Pre 1.0.0 +Variant: Pre 1.3.0 +Variant: Pre 2.6.0 +Variant: Current +Implicits: 0 +{variant:1}LocalAddedLightningDamageUnique__1[1,1][25,25] +{variant:2,3,4}AddedLightningDamageUniqueBodyInt8 +{variant:1,2,3}LocalIncreasedEnergyShieldPercentUniqueBodyInt8[75,100] +{variant:4}LocalIncreasedEnergyShieldPercentUniqueBodyInt8 +{variant:1}ChaosResistUniqueBodyInt8[20,25] +{variant:2,3,4}ChaosResistUniqueBodyInt8 +LightRadiusUniqueBodyInt8 +{variant:1}ConsecratedGroundOnBlockUniqueBodyInt8[25,25] +{variant:2}ConsecratedGroundOnBlockUniqueBodyInt8[50,50] +{variant:3,4}ConsecratedGroundOnBlockUniqueBodyInt8 +]],[[ +Ghostwrithe +Silken Vest +LocalIncreasedEnergyShieldUnique__33 +IncreasedLifeUnique__115 +ChaosResistUnique__26 +MaximumLifeConvertedToEnergyShieldUnique__2 +]], +-- Body: Armour/Evasion +[[ +Belly of the Beast +Full Wyrmscale +Implicits: 0 +LocalIncreasedPhysicalDamageReductionRatingUniqueBodyStrDex1 +MaximumLifeUniqueBodyStrDex1 +AllResistancesUniqueBodyStrDex1 +FlaskLifeRecoveryRateUniqueBodyStrDex1 +ExtraGore +]],[[ +Cherrubim's Maleficence +Triumphant Lamellar +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Current +Implicits: 0 +{variant:1,2}IncreasedChaosDamageUniqueBodyStrDex4[10,20] +{variant:3}IncreasedChaosDamageUniqueBodyStrDex4 +LocalIncreasedArmourAndEvasionUniqueBodyStrDex4 +IncreasedLifeUniqueBodyStrDex4 +{variant:1}IncreasedLifeLeechRateUniqueBodyStrDex4[30,30] +{variant:2,3}IncreasedLifeLeechRateUniqueBodyStrDex4 +]],[[ +Daresso's Defiance +Full Dragonscale +Variant: Pre 2.6.0 +Variant: Pre 3.5.0 +Variant: Pre 3.16.0 +Variant: Pre 3.19.0 +Variant: Pre 3.26.0 +Variant: Current +Implicits: 0 +{variant:1,2,3}LocalIncreasedArmourAndEvasionRatingUniqueBodyStrDex3[160,200] +{variant:4,5,6}LocalIncreasedArmourAndEvasionRatingUniqueBodyStrDex3 +{variant:1,2}IncreasedLifeUniqueBodyStrDex3_[40,60] +{variant:3,4,5,6}IncreasedLifeUniqueBodyStrDex3_ +{variant:1,2,3,4}(0.4-0.6)% of Physical Attack Damage Leeched as Life +{variant:5}LifeLeechPermyriadUniqueBodyStrDex3[200,200] +{variant:6}LifeLeechPermyriadUniqueBodyStrDex3 +LoseEnduranceChargesWhenHitUniqueBodyStrDex3 +EnduranceChargeOnKillUniqueBodyStrDex3 +{variant:1}GainOnslaughtWhenHitUniqueBodyStrDex3[1000,1000] +{variant:2}GainOnslaughtWhenHitUniqueBodyStrDex3[2000,2000] +{variant:3,4,5,6}GainOnslaughtWhenHitUniqueBodyStrDex3 +{variant:3,4}OnslaughtEffectUnique__1[60,100] +{variant:5,6}OnslaughtEffectUnique__1 +]],[[ +Farrul's Fur +Triumphant Lamellar +League: Bestiary +Source: Drops from unique{Farrul, First of the Plains} +Implicits: 0 +LocalIncreasedArmourAndEvasionUnique__14 +IncreasedLifeUniqueBodyStrInt7 +CatAspectReservesNoManaUnique__1___ +CatsStealthDurationUnique__1_ +GainMaxFrenzyAndPowerOnCatsStealthUnique__1 +GainPhasingWhileCatsStealthUnique__1 +]],[[ +Replica Farrul's Fur +Triumphant Lamellar +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 0 +LocalIncreasedArmourAndEvasionUnique__12 +IncreasedLifeUniqueBodyStrInt7 +CatsStealthDurationUnique__1_ +CatAspectReservesNoManaUnique__1___ +GainMaxFrenzyAndEnduranceOnCatsAgilityUnique__1 +GainOnslaughtWhileCatsAgilityUnique__1_ +]],[[ +Gruthkul's Pelt +Wyrmscale Doublet +Variant: Pre 3.5.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +{variant:1}IncreasedPhysicalDamagePercentImplicitBelt1[60,100] +{variant:2,3}IncreasedPhysicalDamagePercentUnique__4 +{variant:3}LocalIncreasedArmourAndEvasionRatingUnique__1 +{variant:1}IncreasedLifeUnique__34[130,160] +{variant:2}IncreasedLifeUnique__34[200,240] +{variant:3}IncreasedLifeUnique__34 +{variant:1,2}ColdResistUnique__12 +{variant:1}LifeRegenerationRatePercentUnique__2[120,120] +{variant:2}LifeRegenerationRatePercentUnique__2[300,300] +{variant:3}LifeRegenerationRatePercentUnique__2 +ActorSizeUnique__2 +CannotDealSpellDamageUnique__1 +SpellsAreDisabledUnique__1 +]],[[ +Lightning Coil +Desert Brigandine +Variant: Pre 1.3.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +AddedLightningDamageUniqueBodyStrDex2 +LocalIncreasedArmourAndEvasionUniqueBodyStrDex2 +IncreasedLifeUniqueBodyDexInt3 +LightningResistUniqueBodyStrDex2 +{variant:1}PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2[40,40] +{variant:2}PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2[30,30] +{variant:3}PhysicalDamageTakenAsLightningPercentUniqueBodyStrDex2 +]],[[ +Viper's Scales +Full Scale Armour +Source: No longer obtainable +Implicits: 0 +LocalIncreasedArmourAndEvasionUnique__10_ +IncreasedLifeUnique__10 +ColdResistUnique__19 +MovementVelocityUniqueBodyDex7 +ChanceToPoisonWithAttacksUnique___1 +CannotBePoisonedUnique__1 +]],[[ +Rigwald's Hunt +General's Brigandine +Requires Level 66, 103 Str, 103 Dex +LocalIncreasedArmourAndEvasionUniqueBodyStrDex4 +MinionMovementSpeedUnique_1 +MinionDoubleDamageChancePerFortificationUnique__1 +FortifyDurationUnique_1 +MinionAttackSpeedUnique_1 +MinionLifeAlsoAffectsYouUnique__1 +]], +-- Body: Armour/Energy Shield +[[ +Ambu's Charge +Crusader Chainmail +Variant: Pre 1.0.0 +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +{variant:1}LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2[80,100] +{variant:2}LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2[140,180] +{variant:3,4,5}LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2 +{variant:4,5}IncreasedLifeUniqueBodyDexInt3 +{variant:1,2}AllResistancesUniqueBodyStrInt2[10,10] +{variant:3,4,5}AllResistancesUniqueBodyStrInt2 +{variant:1,2,3,4}GainEnduranceChargeWhenCriticallyHit +{variant:1,2,3}LifeRegenerationOnLowLifeUniqueBodyStrInt2 +{variant:1,2,3,4}ShareEnduranceChargesWithParty +{variant:5}GainMaximumEnduranceChargesWhenCritUnique__1 +{variant:4}LifeRegenerationIfHitRecentlyUnique__1 +{variant:5}ShareMaximumEnduranceChargesPartyUnique__1 +]],[[ +Replica Ambu's Charge +Crusader Chainmail +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 0 +LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt2 +IncreasedLifeUniqueBodyDexInt3 +AllResistancesUniqueBodyStrInt2 +ShareEnduranceChargesWithParty +GainEnduranceChargesWhenHitUnique__1_ +LoseLifeIfHitRecentlyUnique__1 +]],[[ +Chains of Command +Saintly Chainmail +Implicits: 0 +AnimateGuardianWeaponOnGuardianKillUnique__1_ +AnimateGuardianWeaponOnAnimatedWeaponKillUnique__1 +LocalIncreasedArmourAndEnergyShieldUnique__11 +IncreasedLifeUniqueBodyStrDex3_ +AnimatedGuardianDamagePerAnimatedWeaponUnique__1__ +AnimatedMinionsHaveMeleeSplashUnique__1 +IncreasedAnimatedMinionSplashDamageUnique__1 +CannnotHaveNonAnimatedMinionsUnique__1 +]],[[ +Doryani's Prototype +Saint's Hauberk +League: Harvest +Implicits: 0 +LocalIncreasedArmourAndEnergyShieldUnique__13_ +IncreasedLifeUniqueBodyStrDex3_ +DealNoNonLightningDamageUnique__1_ +ArmourAppliesToLightningDamageUnique__1_ +LightningResistNoReductionUnique__1_ +NearbyEnemyLightningResistanceEqualUnique__1 +]],[[ +The Fourth Vow +Devout Chainmail +LocalIncreasedArmourAndEnergyShieldUnique__26 +ChaosResistUnique__25 +LifeRegenerationRatePercentUnique__5 +ArmourAppliesToChaosDamageUnique__1 +PhysicalDamageBypassesEnergyShieldUnique__1 +]],[[ +Geofri's Sanctuary +Elegant Ringmail +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Implicits: 0 +LocalIncreasedArmourAndEnergyShieldUnique__2 +{variant:1,2}IncreasedEnergyShieldUnique__5[70,80] +{variant:3}IncreasedEnergyShieldUnique__5 +IncreasedLifeUniqueBodyDexInt1 +AllResistancesUnique__3 +{variant:1}EnergyShieldPer5StrengthUnique__1[1,1][5,5] +{variant:2,3}EnergyShieldPer5StrengthUnique__1 +KeystoneZealotsOathUnique__1_ +]],[[ +Icetomb +Latticed Ringmail +Variant: Pre 2.0.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +{variant:1}StrengthUniqueBodyStrInt3[15,15] +{variant:2,3}StrengthUniqueBodyStrInt3 +{variant:1}IntelligenceUniqueBootsDex3 +{variant:2,3}IntelligenceUniqueBodyStrInt3 +LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt3 +ColdResistUniqueBodyStrInt3 +CannotBeChilledUniqueBodyStrInt3 +{variant:1,2}IncreasedChillDurationUniqueBodyStrInt3 +{variant:3}FreezeEnemiesWhenHitChanceUnique__1 +]],[[ +Crystal Vault +Latticed Ringmail +Source: No longer obtainable +LevelReq: 49 +Implicits: 0 +StrengthUniqueBodyStrInt3 +IntelligenceUniqueBodyStrInt3 +LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt3 +ColdResistUniqueBodyStrInt3 +CannotBeChilledUniqueBodyStrInt3 +PhysicalDamageTakenAsColdUnique__1 +FireDamageTakenAsColdUnique___2_ +ChillEffectUnique__1 +]],[[ +Incandescent Heart +Saintly Chainmail +Variant: Pre 2.6.0 +Variant: Current +Implicits: 0 +{variant:1}IncreasedPhysicalDamageReductionRatingUnique__1[60,80] +{variant:1}LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt5[120,140] +{variant:2}LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt5 +IncreasedLifeUniqueBodyStrInt5 +{variant:1,2}LifeLeechPermyriadUniqueBodyStrInt5 +{variant:2}ElementalDamagePercentAddedAsChaosUnique__1 +ElementalDamageTakenAsChaosUniqueBodyStrInt5 +LightRadiusUniqueBodyStrInt5 +ArcaneVisionUniqueBodyStrInt5 +]],[[ +The Ivory Tower +Saint's Hauberk +Implicits: 0 +IntelligenceUnique__17 +MaximumEnergyShieldPerReservedLifeUnique__1 +IncreasedManaUnique__17 +EnergyShieldRegenerationUnique__3 +ChaosDamageRemovedFromManaBeforeLifeUnique__1___ +]],[[ +Kingsguard +Conquest Chainmail +Implicits: 0 +LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt6 +IncreasedLifeUniqueBodyStrInt6 +IncreasedManaUniqueBodyStrInt6 +EnduranceChargeDurationUniqueBodyStrInt4 +LifeGainOnEndurangeChargeConsumptionUniqueBodyStrInt6 +]],[[ +Lightbane Raiment +Ornate Ringmail +Variant: Pre 1.0.0 +Variant: Pre 1.3.0 +Variant: Pre 2.0.0 +Variant: Current +Implicits: 0 +{variant:1}LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt4[80,100] +{variant:2,3,4}LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt4 +{variant:1,2,3}PhysicalDamageConvertToChaosBodyStrInt4[10,10] +{variant:4}PhysicalDamageConvertToChaosBodyStrInt4 +{variant:1}AttackerTakesChaosDamageUniqueBodyStrInt4[10,20] +{variant:2,3,4}AttackerTakesChaosDamageUniqueBodyStrInt4 +LightRadiusUniqueBodyStrInt4 +{variant:1}DesecratedGroundOnBlockUniqueBodyStrInt4[25,25] +{variant:2}DesecratedGroundOnBlockUniqueBodyStrInt4[50,50] +{variant:3,4}DesecratedGroundOnBlockUniqueBodyStrInt4 +]],[[ +Loreweave +Elegant Ringmail +Source: Vendor Recipe +Variant: Pre 3.6.0 +Variant: Current +Implicits: 0 +HasSixSocketsUnique__1 +AllAttributesUnique__6 +AddedPhysicalDamageUnique__6_ +CriticalStrikeChanceUnique__2 +LocalIncreasedEnergyShieldUnique__20 +IncreasedLifeUnique__80_ +IncreasedManaUnique__12 +ItemFoundRarityIncreaseUnique__3 +ElementalDamagePercentUnique__1 +{variant:1}MaximumResistancesOverrideUnique__1[76,80] +{variant:2}MaximumResistancesOverrideUnique__1 +]],[[ +Replica Loreweave +Elegant Ringmail +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 0 +HasSixSocketsUnique__1 +AllAttributesUnique__6 +AddedPhysicalDamageUnique__6_ +CriticalStrikeChanceUnique__4_ +LocalIncreasedEnergyShieldUnique__30__ +IncreasedLifeUnique__106_ +IncreasedManaUnique__20_ +ItemFoundRarityIncreaseUnique__3 +ElementalDamagePercentUnique__1 +MaximumResistancesOverrideUnique__2 +]],[[ +Rotting Legion +Loricated Ringmail +Source: No longer obtainable +League: Blight +Implicits: 0 +SupportedByMeatShieldUnique__1 +LocalIncreasedArmourAndEnergyShieldUnique__17_ +IncreasedLifeUnique__23 +DamagePerZombieUnique__1 +ElementalDamageTakenPerZombieUnique__1 +]],[[ +Sporeguard +Saint's Hauberk +League: Blight +Source: Drops in Blighted Maps +Variant: Pre 3.26.0 +Variant: Current +Implicits: 0 +TriggerFungalGroundOnKillUnique__1_ +LocalIncreasedArmourAndEnergyShieldUnique__18_ +MaximumLifeUnique__18 +{variant:1}ChaosResistUnique__16[17,23] +{variant:2}ChaosResistUnique__16 +EnemiesOnFungalGroundExplodeUnique__1 +FungalAroundWhenStationaryUnique__1_ +This item can be anointed by Cassia +]],[[ +Voll's Protector +Holy Chainmail +League: Legion +Variant: Pre 3.7.0 +Variant: Current +Implicits: 0 +{variant:1}LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt1[60,60] +{variant:2}LocalIncreasedArmourAndEnergyShieldUniqueBodyStrInt1 +MaximumManaUniqueBodyStrInt1 +AddPowerChargeOnCrit1__ +{variant:2}KeystoneInnerConvictionUnique__1 +]], +-- Body: Evasion/Energy Shield +[[ +Bloodbond +Bone Armour +Variant: Pre 3.16.0 +Variant: Current +Implicits: 0 +DisplayGrantsBloodOfferingUnique__1_ +LocalIncreasedEvasionAndEnergyShieldUnique__6_ +MaximumLifeUnique__5 +MinionLifeUnique__1 +LifeRegenerationRatePercentUnique__3 +{variant:1}MinionDodgeChanceUnique__1[6,10] +{variant:2}MinionDodgeChanceUnique__1 +]],[[ +Carcass Jack +Varnished Coat +Variant: Pre 3.0.0 +Variant: Pre 3.5.0 +Variant: Current +Implicits: 0 +LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt4 +IncreasedLifeUniqueBodyDexInt1 +AllResistancesUniqueBodyDexInt1 +{variant:1,2}AreaOfEffectImplicitMarakethTwoHandMace2 +{variant:3}AreaOfEffectUniqueBodyDexInt1 +{variant:1}AreaDamageUnique__1[12,12] +{variant:2,3}AreaDamageUniqueBodyDexInt1 +ExtraGore +]],[[ +Cloak of Defiance +Lacquered Garb +Variant: Pre 1.3.0 +Variant: Pre 3.0.0 +Variant: Pre 3.5.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +{variant:1,2,3}LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2[110,150] +{variant:4,5}LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt2 +{variant:1,2}IncreasedManaUniqueBodyDexInt2[90,110] +{variant:3,4,5}IncreasedManaUniqueBodyDexInt2 +{variant:1,2}ManaRegenerationUniqueBodyDexInt2 +{variant:3,4,5}BaseManaRegenerationUniqueBodyDexInt2 +{variant:1,3,4}DamageRemovedFromManaBeforeLifeTestMod[10,10] +KeystoneMindOverMatterUnique__1 +]],[[ +Dendrobate +Sentinel Jacket +Implicits: 0 +SupportedByLesserPoisonUnique__1 +LocalIncreasedEvasionAndEnergyShieldUnique__7 +LocalIncreasedEnergyShieldUnique__13_ +AllResistancesDemigodsImplicit +PoisonDamageWithOver300DexterityUnique__1 +PoisonDurationWithOver150IntelligenceUnique__1 +]],[[ +The Eternity Shroud +Blood Raiment +Shaper Item +Elder Item +Source: Drops from unique{The Elder} (Uber) +Implicits: 0 +GlimpseOfEternityWhenHitUnique__1 +LocalIncreasedEvasionAndEnergyShieldUnique__24 +IncreasedLifeUniqueBodyStrDex4 +ChaosResistUnique__11 +ElementalDamagePercentAddedAsChaosPerShaperItemUnique__1 +HitsIgnoreChaosResistanceAllShaperItemsUnique__1 +]],[[ +Replica Eternity Shroud +Blood Raiment +Shaper Item +Elder Item +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 0 +TriggerShadeFormWhenHitUnique__1 +LocalIncreasedEvasionAndEnergyShieldUnique__21_ +IncreasedLifeUniqueBodyStrDex4 +ChaosResistUnique__10 +PhysicalDamagePercentAddedAsChaosPerElderItemUnique__1 +HitsIgnoreChaosResistanceAllElderItemsUnique__1 +]],[[ +Expedition's End +Sentinel Jacket +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 0 +LocalIncreasedEvasionAndEnergyShieldUnique__18 +MaximumLifeUnique__21 +AllDamageCanFreezeUnique__1 +FreezeChilledEnemiesMoreDamageUnique__1_ +NearbyEnemiesAreChilledUnique__1 +]],[[ +Inpulsa's Broken Heart +Sadist Garb +Variant: Pre 3.5.0 +Variant: Pre 3.7.0 +Variant: Current +Implicits: 0 +IncreasedLifeUniqueBodyDexInt3 +IncreasedDamageIfShockedRecentlyUnique__1 +{variant:1,2}ShockEffectUnique__1[25,40] +{variant:3}ShockEffectUnique__1 +{variant:1}ShockedEnemiesExplodeUnique__1_[5,10] +{variant:2,3}ShockedEnemiesExplodeUnique__1_ +UnaffectedByShockUnique__1 +]],[[ +The Restless Ward +Carnal Armour +Variant: Pre 2.6.0 +Variant: Pre.3.19.0 +Variant: Current +Implicits: 1 +IncreasedManaImplicitArmour1 +{variant:1}LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3[120,150] +{variant:2,3}LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3 +{variant:1}IncreasedLifeUniqueBodyStrDex2[40,60] +{variant:2,3}IncreasedLifeUniqueBodyStrDex2 +{variant:1,2}MovementVelocityPerFrenzyChargeUniqueBodyDexInt3[1,1] +{variant:3}MovementVelocityPerFrenzyChargeUniqueBodyDexInt3 +{variant:1}LifeRegenPerMinutePerEnduranceChargeUnique__1[900,1200] +{variant:2}LifeRegenPerMinutePerEnduranceChargeUnique__1[1200,1800] +{variant:3}LifeRegenPerMinutePerEnduranceChargeUniqueBodyDexInt3 +{variant:1,2}ChargeDurationUniqueBodyDexInt3[100,100] +{variant:3}ChargeDurationUniqueBodyDexInt3 +]],[[ +Replica Restless Ward +Carnal Armour +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +IncreasedManaImplicitArmour1 +LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt3 +IncreasedLifeUniqueBodyDexInt3 +MovementVelocityPerFrenzyChargeUnique__2 +ReducedMaximumEnduranceChargeUnique__2 +ReducedMaximumFrenzyChargesUnique__2_ +LifeRegenPerMinutePerEnduranceChargeUnique__1 +]],[[ +Saqawal's Nest +Blood Raiment +League: Bestiary +Source: Drops from unique{Saqawal, First of the Sky} +Implicits: 0 +AllAttributesUnique__5 +LightningResistUniqueBodyInt1 +ManaReservationEfficiencyUnique__2 +AvianAspectBuffEffectUnique__1 +GrantAviansAspectToAlliesUnique__1 +LocalFlatIncreasedEvasionAndEnergyShieldUnique__2_ +]],[[ +Shroud of the Lightless +Carnal Armour +League: Abyss +Source: Drops from unique{Amanamu, Liege of the Lightless} or unique{Ulaman, Sovereign of the Well} +Variant: Two Abyssal Sockets (Pre 3.12.0) +Variant: One Abyssal Socket (Pre 3.12.0) +Variant: Two Abyssal Sockets (Pre 3.21.0) +Variant: One Abyssal Socket (Pre 3.21.0) +Variant: Three Abyssal Sockets (Current) +Variant: Two Abyssal Sockets (Current) +Variant: One Abyssal Socket (Current) +Implicits: 1 +IncreasedManaImplicitArmour1 +{variant:5}AbyssJewelSocketUnique__1[3,3] +{variant:1,3,6}AbyssJewelSocketUnique__1 +{variant:2,4,7}AbyssJewelSocketImplicit +{variant:1,2}DisplaySupportedByElementalPenetrationUnique__1[20,20] +{variant:3,4}DisplaySupportedByElementalPenetrationUnique__1 +LocalDisplayGrantLevelXShadeFormUnique__1 +LocalIncreasedEvasionAndEnergyShieldUnique__11_ +{variant:1,2,3,4}MaximumLifeUnique__10_ +{variant:1,2,3,4}MaximumManaUnique__5 +{variant:1,2,3,4}IncreasedLifePerAbyssalJewelUnique__2[1,1] +{variant:5,6,7}IncreasedLifePerAbyssalJewelUnique__2 +{variant:1,2,3,4}IncreasedManaPerAbyssalJewelUnique__2[1,1] +{variant:5,6,7}IncreasedManaPerAbyssalJewelUnique__2 +{variant:5,6,7}ElementalPenetrationPerAbyssalJewelUnique__1 +]],[[ +Replica Shroud of the Lightless +Carnal Armour +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +IncreasedManaUnique__29 +AbyssJewelSocketUnique__14 +]],[[ +Stasis Prison +Carnal Armour +Source: Drops in Unrelenting Domain of Timeless Conflict +Implicits: 1 +IncreasedManaImplicitArmour1 +LocalIncreasedEvasionAndEnergyShieldUnique__33 +IncreasedLifeUniqueBodyStrInt7 +ChronomanceReservesNoMana +DamageTakenGainedAsLifeUnique__2 +DebuffTimePassedUnique__2 +]],[[ +Tinkerskin +Sadist Garb +Implicits: 0 +LocalIncreasedEvasionAndEnergyShieldUnique__4 +IncreasedLifeUniqueBodyStrDex3_ +TrapCooldownRecoveryUnique__1 +GainFrenzyChargeOnTrapTriggeredUnique__1 +PhasingOnTrapTriggeredUnique__1 +GainLifeOnTrapTriggeredUnique__1 +GainEnergyShieldOnTrapTriggeredUnique__1_ +]],[[ +Victario's Influence +Lacquered Garb +Variant: Pre 2.6.0 +Variant: Current +Implicits: 0 +LocalIncreaseSocketedAuraGemLevelUniqueBodyDexInt4 +{variant:1}SupportedByGenerosityUniqueBodyDexInt4_[1,1] +{variant:2}SupportedByGenerosityUniqueBodyDexInt4_ +SocketedItemsHaveReducedReservationUniqueBodyDexInt4 +LocalIncreasedEvasionAndEnergyShieldUniqueBodyDexInt1 +{variant:1}IncreasedAuraRadiusUniqueBodyDexInt4[10,20] +{variant:2}IncreasedAuraRadiusUniqueBodyDexInt4 +IncreasedAuraEffectUniqueBodyDexInt4 +]],[[ +Servant of Decay +Torturer Garb +Source: Drops from unique{Incarnation of Fear} in normal{Moment of Trauma} +Requires Level 78, 151 Dex, 151 Int +GrantsSummonVoidSpawnUnique__1 +LocalIncreasedEnergyShieldPercentUniqueBody_1 +ChaosResistUniqueBody_1 +DamageRemovedFromVoidSpawnsUnique__1 +ExtraChaosDamagePerVoidSpawnUnique__1 +]],[[ +Seven Teachings +Waxed Garb +Source: Drops from unique{Incarnation of Dread} in normal{Moment of Reverence} +Requires Level 77, 48 Dex, 48 Int +TriggerSocketedSpellOnUnarmedMeleeCriticalHitUnique__1 +UnarmedMoreMeleeAttackSpeedUnique__1 +LocalIncreasedEvasionAndEnergyShieldUnique__38 +MovementVelocityUnique__55 +UnarmedStrikeRangeUnique__1 +BaseUnarmedCriticalStrikeChanceUnique__2 +UnarmedMeleeAttackCriticalStrikeMultiplierUnique__1 +]], +-- Body: Armour/Evasion/Energy Shield +[[ +The Admiral +Varnished Coat +League: Heist +Source: Drops from unique{Admiral Darnaw} in normal{Contract: Death to Darnaw} +Variant: Pre 3.26.0 +Variant: Current +Implicits: 0 +IntelligenceUniqueBodyStrInt3 +{variant:1}LocalIncreasedEvasionAndEnergyShieldUnique__31[100,140] +{variant:2}LocalIncreasedEvasionAndEnergyShieldUnique__31 +AllResistancesUnique__20 +{variant:1}ChanceToFreezeShockIgniteUnique__1[5,10] +{variant:2}ChanceToFreezeShockIgniteUnique__1 +ElementalDamageLowestResistUnique__1 +]],[[ +Atziri's Splendour +Sacrificial Garb +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Alluring Abyss} +Variant: Pre 3.0.0 (Armour) +Variant: Pre 3.0.0 (Armour/Evasion) +Variant: Pre 3.0.0 (Evasion) +Variant: Pre 3.0.0 (Evasion/ES + Life) +Variant: Pre 3.0.0 (Evasion/ES + ES) +Variant: Pre 3.0.0 (Energy Shield) +Variant: Pre 3.0.0 (Armour/ES + Life) +Variant: Pre 3.0.0 (Armour/ES + ES) +Variant: Pre 3.0.0 (Armour/Evasion/ES) +Variant: Current (Armour) +Variant: Current (Armour/Evasion) +Variant: Current (Evasion) +Variant: Current (Evasion/ES + Life) +Variant: Current (Evasion/ES + ES) +Variant: Current (Energy Shield) +Variant: Current (Armour/ES + Life) +Variant: Current (Armour/ES + ES) +Variant: Current (Armour/Evasion/ES) +Implicits: 1 +GlobalVaalGemsLevelImplicit1_ +{variant:1,10}LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBodyStrDexInt1a +{variant:2,11}GlobalEvasionRatingAndArmourPercentUnique__1_[200,220] +{variant:3,12}LocalIncreasedEvasionRatingPercentUniqueBodyStrDexInt1c +{variant:4,5,13,14}LocalIncreasedEvasionAndEnergyShieldUniqueBodyStrDexInt1d +{variant:6,15}LocalIncreasedEnergyShieldUniqueBodyStrDexInt1g +{variant:7,8,16,17}LocalIncreasedArmourAndEnergyShieldUniqueBodyStrDexInt1e +{variant:9,18}LocalArmourAndEvasionAndEnergyShieldUniqueBodyStrDexInt1i +{variant:1,2,3,4,7,10,11,12,13,16}IncreasedLifeUniqueBodyStrDexInt1 +{variant:5,6,8}IncreasedEnergyShieldUniqueBodyStrDexInt1[90,100] +{variant:14,15,17}IncreasedEnergyShieldUniqueBodyStrDexInt1 +AllResistancesUniqueBodyStrDexInt1 +LifeGainedFromEnemyDeathUniqueBodyStrDexInt1 +ManaGainedFromEnemyDeathUniqueBodyStrDexInt1 +]],[[ +Shadowstitch +Sacrificial Garb +League: Incursion +Source: Double Corrupting Sacrificial Garb +Variant: Pre 3.10.0 +Variant: Current +Implicits: 0 +DisplayHasAdditionalModUnique__1 +AllAttributesUnique__11 +{variant:2}LocalIncreasedArmourEvasionEnergyShieldUnique__1_ +MaximumLifeOnKillPercentUnique__3__ +MaximumEnergyShieldOnKillPercentUnique__1 +AllResistancesPerCorruptedItemUnique__1 +MaximumEnergyShieldPercentPerCorruptedItemUnique__1_ +MaximumLifePercentPerCorruptedItemUnique__1_ +Corrupted +]], +} diff --git a/src/Export/Uniques/boots.lua b/src/Export/Uniques/boots.lua new file mode 100644 index 0000000000..0dd1f7d9f8 --- /dev/null +++ b/src/Export/Uniques/boots.lua @@ -0,0 +1,1125 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Boots: Armour +[[ +Craiceann's Tracks +Goliath Greaves +League: Bestiary +Source: Drops from unique{Craiceann, First of the Deep} +Requires Level 54, 95 Str +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__18 +IncreasedLifeUniqueBootsStr3_ +ColdResistUnique__23 +MovementVelocityUniqueBootsStr3 +CannotBeStunned10CrabBarriersUnique__1 +CrabBarriersLostWhenHitUnique__1_ +]],[[ +Doryani's Delusion +Titan Greaves +League: Delve +Source: Drops from unique{The Apex Assembly} in unique{Doryani's Machinarium} +Variant: Purity of Fire: Fire +Variant: Purity of Fire: Cold +Variant: Purity of Fire: Lightning +Variant: Purity of Ice: Fire +Variant: Purity of Ice: Cold +Variant: Purity of Ice: Lightning +Variant: Purity of Lightning: Fire +Variant: Purity of Lightning: Cold +Variant: Purity of Lightning: Lightning +Requires Level 68, 120 Str +{variant:1,2,3}GrantsPurityOfFireUnique__1 +{variant:4,5,6}GrantsPurityOfIceUnique__1 +{variant:7,8,9}GrantsPurityOfLightningUnique__1 +{variant:1,4,7}AddedFireDamageUnique__3 +{variant:2,5,8}AddedColdDamageUnique__4 +{variant:3,6,9}AddedLightningDamageUnique__2_ +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__10 +IncreasedLifeUnique__60 +MovementVelocityUniqueBootsA1 +]],[[ +The Infinite Pursuit +{variant:1}Goliath Greaves +{variant:2}Titan Greaves +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Drops in Uul-Netol Breach or from unique{Uul-Netol, Unburdened Flesh} +Upgrade: Upgrades to unique{The Red Trail} using currency{Blessing of Uul-Netol} +Requires Level 54, 95 Str +{variant:1}IncreasedLifeUnique__27 +MovementVelocityUniqueBootsDex8 +NoExtraBleedDamageWhileMovingUnique__1 +{variant:2}BleedingExpiresSlowerWhileMovingUnique__1 +{variant:2}CannotBePoisonedWhileBleedingUnique__1 +{variant:2}CannotBeStunnedWhileBleedingUnique__1 +{variant:1}MovementVelocityWhileBleedingUnique__1[15,15] +{variant:2}MovementVelocityWhileBleedingUnique__1 +ReceiveBleedingWhenHitUnique__1_ +]],[[ +The Red Trail +Titan Greaves +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Upgraded from unique{The Infinite Pursuit} using currency{Blessing of Uul-Netol} +Requires Level 68, 120 Str +{variant:1}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__7[60,80] +{variant:2}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__7 +{variant:1}IncreasedLifeUnique__33[50,70] +{variant:2}IncreasedLifeUnique__33 +{variant:1}MovementVelocityUniqueBootsA1[25,25] +{variant:2}MovementVelocityUniqueBootsA1 +PhysicalDamageReductionWhileNotMovingUnique__1 +FrenzyChargeOnHitWhileBleedingUnique__1 +{variant:1}MovementVelocityWhileBleedingUnique__1[15,15] +ReceiveBleedingWhenHitUnique__1_ +ItemBloodFootstepsUniqueBootsDex4 +]],[[ +Replica Red Trail +Titan Greaves +Variant: Pre 3.21.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 68, 120 Str +{variant:1}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__27[60,80] +{variant:2}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__27 +{variant:1}IncreasedLifeUnique__32[50,70] +{variant:2}IncreasedLifeUnique__32 +{variant:1}MovementVelocityUniqueBootsA1[25,25] +{variant:2}MovementVelocityUniqueBootsA1 +PowerChargeOnHitWhilePoisonedUnique__1 +ChaosResistanceWhileStationaryUnique__1 +{variant:1}15% increased Movement Speed while Poisoned +ItemNecroticFootprintsUnique__1s +ChanceToBePoisonedBySpellsUnique__1_ +]],[[ +Kahuturoa's Certainty +Ancient Greaves +Requires Level 46, 82 Str +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__28 +MovementVelocityUnique__52 +StunRecoveryUnique__8 +UnaffectedByDamagingAilmentsUnique__1 +]],[[ +Kaom's Roots +Titan Greaves +Variant: Pre 2.6.0 +Variant: Current +Requires Level 68, 120 Str +HasNoSockets +CannotBeKnockedBack +{variant:1}IncreasedLifeUniqueBootsStr2[120,150] +{variant:2}IncreasedLifeUniqueBootsStr2 +KeystoneUnwaveringStanceUnique__1 +{variant:2}CannotBeSlowedBelowBaseUnique__1 +]],[[ +Redblade Tramplers +Ancient Greaves +League: Warbands +Variant: Pre 2.6.0 +Variant: Current +Requires Level 46, 82 Str +AddedPhysicalDamageUniqueBootsStr3 +StunThresholdReductionUniqueBootsStr3 +LocalIncreasedPhysicalDamageReductionRatingPercentUniqueBootsStr3 +{variant:2}IncreasedLifeUniqueBootsDex9__ +FireResistUniqueBootsStr3_ +{variant:1}MovementVelocityUniqueBootsDexInt4[20,20] +{variant:2}MovementVelocityUniqueBootsDexInt4 +ImmuneToBurningGroundUniqueBootsStr3 +]],[[ +Stormcharger +Plated Greaves +Variant: Pre 3.19.0 +Variant: Current +LightningResistUnique__13 +{variant:1}MovementVelocityUniqueBootsDex8 +{variant:2}MovementVelocityUnique__21 +{variant:1}ConvertPhysicaltoLightningUnique__2 +{variant:1}ShockDurationUnique__2[50,50] +{variant:2}ShockDurationUnique__2 +{variant:1}ShockEffectUnique__2[15,25] +{variant:2}ShockEffectUnique__2 +{variant:2}ImmuneToShockedGroundUniqueBootsDexInt4 +]],[[ +The Tempest Rising +Goliath Greaves +Source: Drops from unique{Sirus, Awakener of Worlds} (Uber) +Requires Level 54, 95 Str +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__26 +MovementVelocityUniqueBootsA1 +IncreasedAilmentDurationUnique__4 +FasterAilmentDamageUnique__1 +EnemiesCountAsMovingElementalAilmentsUnique__1 +]],[[ +Torchoak Step +Antique Greaves +Variant: Pre 3.16.0 +Variant: Current +Requires Level 37, 67 Str +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22 +{variant:1}TotemLifeUnique__1[30,50] +{variant:2}TotemLifeUnique__2_ +MovementVelocityUniqueBootsDexInt4 +SummonTotemCastSpeedUnique__2 +{variant:1}TotemReflectFireDamageUnique__1_[25,25] +{variant:2}TotemReflectFireDamageUnique__1_ +]],[[ +Windscream +Reinforced Greaves +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStr1 +AllResistancesUniqueBootsStr1 +{variant:1}MovementVelocityUniqueBootsDex8[10,10] +{variant:2}MovementVelocityUniqueBootsDex8[15,15] +{variant:3}MovementVelocityUniqueBootsDex8 +{variant:1}ElementalDamageUniqueBootsStr1[10,10] +{variant:2}ElementalDamageUniqueBootsStr1 +AdditionalCurseOnEnemiesUnique__1 +{variant:3}CurseAreaOfEffectUnique__3 +]],[[ +Windshriek +Reinforced Greaves +Source: No longer obtainable +LevelReq: 60 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__16 +AllResistancesUniqueBootsStr1 +MovementVelocityUniqueBootsDexInt4 +ElementalDamageUniqueBootsStr1 +AdditionalCurseOnEnemiesUnique__2 +CurseAreaOfEffectUnique__1 +]],[[ +Dawnstrider +Vaal Greaves +Variant: Pre 3.25.0 +Variant: Current +Source: Drops from unique{The Searing Exarch} +{variant:2}OneAncestorTotemBuffUnique__1 +IncreasedLifeUnique__112 +MovementVelocityUniqueBootsA1 +AncestorTotemBuffLingersUnique__1 +{variant:2}DamageTakenFromTotemLifeBeforePlayerUnique__1 +]], +-- Boots: Evasion +[[ +Abberath's Hooves +Goathide Boots +Requires Level 12, 26 Dex +RepeatingShockwave +StrengthUniqueBootsDexInt2 +MovementVelocityUniqueBootsDexInt2 +ChanceToIgniteUnique__4 +IgniteNearbyEnemyOnIgnitedKillUnique__1 +FireDamagePerStrengthUnique__1 +GoatHoofFootprintsUnique__1 +]],[[ +Atziri's Step +Slink Boots +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Apex of Sacrifice} +Variant: Pre 3.16.0 +Variant: Current +Requires Level 69, 120 Dex +LocalIncreasedEvasionRatingPercentUniqueBootsDex7 +IncreasedLifeUniqueBootsDex7 +MovementVelocityUniqueBootsDex1 +{variant:1}SpellDodgeUniqueBootsDex7_ +{variant:2}SpellDodgeUniqueBootsDex7New +]],[[ +The Blood Dance +Sharkskin Boots +Variant: Pre 1.0.0 +Variant: Pre 2.1.0 +Variant: Pre 3.11.0 +Variant: Current +Requires Level 44, 79 Dex +DexterityUniqueBootsDex4_ +MovementVelocityUniqueBootsDex8 +MovementVelocityPerFrenzyChargeUniqueBootsDex4 +{variant:1,2,3}AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4[-3,-3] +{variant:4}AttackAndCastSpeedPerFrenzyChargeUniqueBootsDex4 +{variant:1,2}LifeRegenerationPerFrenzyChargeUniqueBootsDex4[60,60] +{variant:3}LifeRegenerationPerFrenzyChargeUniqueBootsDex4[30,30] +{variant:4}LifeRegenerationPerFrenzyChargeUniqueBootsDex4 +FrenzyChargeOnKillChanceUniqueBootsDex4 +{variant:1}EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4[3,3] +{variant:2,3}EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4[6,6] +{variant:4}EnemiesOnLowLifeTakeMoreDamagePerFrenzyChargeUniqueBootsDex4 +ItemBloodFootstepsUniqueBootsDex4 +]],[[ +Deerstalker +Deerskin Boots +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 22, 42 Dex +{variant:1,2}DisplaySupportedByTrapUniqueBootsDex6[11,11] +{variant:3}DisplaySupportedByTrapUniqueBootsDex6 +LocalIncreasedEvasionRatingPercentUniqueBootsDex6 +{variant:1,2}IncreasedLifeUniqueBootsDex6 +{variant:2,3}MovementVelocityUniqueBootsDexInt2 +TrapThrowSpeedUniqueBootsDex6 +{variant:1}MovementSpeedOnTrapThrowUnique__1[9000,9000][30,30] +{variant:2,3}MovementSpeedOnTrapThrowUnique__1 +]],[[ +Orbala's Stand +Eelskin Boots +LocalIncreasedEvasionRatingPercentUniqueBootsDex3 +MovementVelocityUnique__53 +CannotBeStunnedSuppressedDamageUnique__1 +DebilitateEnemiesSuppressedDamageUnique__1 +]],[[ +Doryani's Delusion +Slink Boots +League: Delve +Source: Drops from unique{The Apex Assembly} in unique{Doryani's Machinarium} +Variant: Purity of Fire: Fire +Variant: Purity of Fire: Cold +Variant: Purity of Fire: Lightning +Variant: Purity of Ice: Fire +Variant: Purity of Ice: Cold +Variant: Purity of Ice: Lightning +Variant: Purity of Lightning: Fire +Variant: Purity of Lightning: Cold +Variant: Purity of Lightning: Lightning +Requires Level 69, 120 Dex +{variant:1,2,3}GrantsPurityOfFireUnique__1 +{variant:4,5,6}GrantsPurityOfIceUnique__1 +{variant:7,8,9}GrantsPurityOfLightningUnique__1 +{variant:1,4,7}AddedFireDamageUnique__3 +{variant:2,5,8}AddedColdDamageUnique__4 +{variant:3,6,9}AddedLightningDamageUnique__2_ +LocalIncreasedEvasionRatingPercentUnique__10 +IncreasedLifeUnique__57 +MovementVelocityUniqueBootsA1 +]],[[ +Farrul's Chase +Slink Boots +League: Bestiary +Source: Drops from unique{Farrul, First of the Plains} +Requires Level 69, 120 Dex +CatsStealthTriggeredIntimidatingCry +LocalIncreasedEvasionRatingPercentUnique__13 +IncreasedLifeUniqueBootsDex9__ +MovementVelocityUniqueBootsDex8 +MovementSpeedWithCatsStealthUnique__1 +ChanceToAvoidBleedingUnique__1 +]],[[ +Goldwyrm +Nubuck Boots +Variant: Pre 1.1.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 34, 62 Dex +ManaRegenerationUniqueBootsDex2 +FireResistUniqueBootsDex2 +MovementVelocityUniqueBootsDex2 +{variant:1}ItemFoundQuantityIncreaseUniqueBootsDex2[20,30] +{variant:2}ItemFoundQuantityIncreaseUniqueBootsDex2[14,20] +{variant:3}ItemFoundRarityIncreaseUnique__10 +]],[[ +Garukhan's Flight +Stealth Boots +Variant: Pre 3.5.0 +Variant: Pre 3.16.0 +Variant: Current +Requires Level 62, 117 Dex +DexterityUniqueBootsDex4_ +{variant:1}LocalIncreasedEvasionRatingPercentUnique__6[80,120] +{variant:2}LocalIncreasedEvasionRatingPercentUnique__6[320,380] +{variant:3}LocalIncreasedEvasionRatingPercentUnique__6 +MovementVelocityUniqueBootsA1 +ImmuneToBurningShockedChilledGroundUnique__1 +LifeRegenerationWhileMovingUnique__1 +{variant:1}MaximumLifePer10DexterityUnique__1[1,1][10,10] +{variant:2,3}MaximumLifePer10DexterityUnique__1 +]],[[ +Seven-League Step +Rawhide Boots +League: Perandus +MovementVelocityUnique___6 +]],[[ +Sin Trek +Stealth Boots +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.5.0 +Variant: Current +Requires Level 62, 117 Dex +DexterityUniqueBootsDex8 +IntelligenceUniqueBootsDex1 +LocalIncreasedEvasionRatingPercentUniqueBootsDex1 +{variant:1}LocalIncreasedEnergyShieldUniqueBootsDex1[50,70] +{variant:2}LocalIncreasedEnergyShieldUniqueBootsDex1[70,100] +{variant:3}LocalIncreasedEnergyShieldUniqueBootsDex1[100,160] +{variant:4}LocalIncreasedEnergyShieldUniqueBootsDex1 +MovementVelocityUniqueBootsA1 +EnemiesCantLifeLeech +]],[[ +Temptation Step +Shagreen Boots +League: Ultimatum +Source: Drops from unique{The Trialmaster} +Requires Level 55, 97 Dex +LocalIncreasedEvasionRatingPercentUnique__18 +ChaosResistUnique__23 +DamagePerPoisonOnSelfUnique__1_ +MovementSpeedPerPoisonOnSelfUnique__1_ +TravelSkillsReflectPoisonUnique__1 +]],[[ +Three-step Assault +Shagreen Boots +Variant: Pre 2.6.0 +Variant: Pre 3.16.0 +Variant: Current +Requires Level 55, 97 Dex +DexterityUniqueBootsDex9 +LocalIncreasedEvationRatingPercentUniqueBootsDex9 +{variant:1}IncreasedEvasionWithOnslaughtUnique_1[40,40] +{variant:2,3}IncreasedEvasionWithOnslaughtUnique_1 +{variant:1}IncreasedLifeUniqueBootsDex9__[30,60] +{variant:2,3}IncreasedLifeUniqueBootsDex9__ +{variant:1}MovementVelocityUniqueBootsDexInt4[20,20] +{variant:2,3}MovementVelocityUniqueBootsDexInt4 +{variant:1,2}ChanceToDodgeSpellsWhilePhasing_Unique_1[10,10] +{variant:3}ChanceToDodgeSpellsWhilePhasing_Unique_1 +]],[[ +Replica Three-step Assault +Shagreen Boots +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 55, 97 Dex +DexterityUniqueBootsDex9 +LocalIncreasedEvationRatingPercentUniqueBootsDex9 +IncreasedLifeUniqueBootsDex9__ +MovementVelocityUniqueBootsDexInt4 +ElusiveEffectUnique__1 +MovementSpeedIfHitRecentlyUnique__1_ +]],[[ +Victario's Flight +Goathide Boots +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +DexterityUniqueBootsDex3 +IntelligenceUniqueBootsDex3 +LocalIncreasedEvasionRatingPercentUniqueBootsStrDex5 +{variant:2}MovementVelocityUniqueBootsDexInt2 +{variant:3}MovementVelocityUniqueBootsInt4[10,20] +{variant:1}MovementVelocityOnLowLifeUniqueBootsDex3 +{variant:3}MovementVelocityOnLowLifeUnique__1 +{variant:1,2}PercentDamageGoesToManaUniqueBootsDex3 +{variant:3}QuicksilverFlaskAppliesToAlliesUnique__1 +{variant:2}10% increased Movement Speed for you and nearby Allies +]], +-- Boots: Energy Shield +[[ +Bones of Ullr +Silk Slippers +Requires Level 22, 42 Int +LocalIncreasedEnergyShieldUniqueBootsInt4 +IncreasedLifeUniqueBootsInt4 +IncreasedManaUniqueBootsInt4 +MovementVelocityUniqueBootsInt4 +MaximumMinionCountUniqueBootsInt4 +]],[[ +Replica Bones of Ullr +Silk Slippers +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 22, 42 Int +LocalIncreasedEnergyShieldUniqueBootsInt4 +IncreasedLifeUniqueBootsInt4 +IncreasedManaUniqueBootsInt4 +MovementVelocityUniqueBootsInt4 +SpiritMinionRefreshOnUniqueHitUnique__1 +]],[[ +Doryani's Delusion +Sorcerer Boots +League: Delve +Source: Drops from unique{The Apex Assembly} in unique{Doryani's Machinarium} +Variant: Purity of Fire: Fire Pre 3.16.0 +Variant: Purity of Fire: Cold Pre 3.16.0 +Variant: Purity of Fire: Lightning Pre 3.16.0 +Variant: Purity of Ice: Fire Pre 3.16.0 +Variant: Purity of Ice: Cold Pre 3.16.0 +Variant: Purity of Ice: Lightning Pre 3.16.0 +Variant: Purity of Lightning: Fire Pre 3.16.0 +Variant: Purity of Lightning: Cold Pre 3.16.0 +Variant: Purity of Lightning: Lightning Pre 3.16.0 +Variant: Purity of Fire: Fire +Variant: Purity of Fire: Cold +Variant: Purity of Fire: Lightning +Variant: Purity of Ice: Fire +Variant: Purity of Ice: Cold +Variant: Purity of Ice: Lightning +Variant: Purity of Lightning: Fire +Variant: Purity of Lightning: Cold +Variant: Purity of Lightning: Lightning +Requires Level 67, 120 Int +{variant:1,2,3,10,11,12}GrantsPurityOfFireUnique__1 +{variant:4,5,6,13,14,15}GrantsPurityOfIceUnique__1 +{variant:7,8,9,16,17,18}GrantsPurityOfLightningUnique__1 +{variant:1,4,7,10,13,16}AddedFireDamageUnique__3 +{variant:2,5,8,11,14,17}AddedColdDamageUnique__4 +{variant:3,6,9,12,15,18}AddedLightningDamageUnique__2_ +{variant:1,2,3,4,5,6,7,8,9}LocalIncreasedEnergyShieldPercentUnique__10[180,220] +{variant:10,11,12,13,14,15,16,17,18}LocalIncreasedEnergyShieldPercentUnique__10 +IncreasedLifeUnique__55 +MovementVelocityUniqueBootsA1 +]],[[ +Inya's Epiphany +Arcanist Slippers +Requires Level 61, 119 Int +PercentageIntelligenceUnique__4 +IncreasedLifeUniqueBootsStr3_ +MovementVelocityUniqueBootsDexInt4 +IncreasedDamagePerPowerChargeUnique__1 +ChanceToGainMaximumPowerChargesUnique__1_ +]],[[ +Replica Inya's Epiphany +Arcanist Slippers +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 61, 119 Int +PercentageIntelligenceUnique__4 +IncreasedLifeUniqueBootsDex9__ +ChargeBonusDamagePerPowerCharge +LifeRegenerationPerPowerChargeUnique__1__ +MovementVelocityPerPowerChargeUnique__1__ +]],[[ +Rainbowstride +Conjurer Boots +Variant: Pre 1.0.0 +Variant: Pre 1.1.0 +Variant: Pre 2.6.0 +Variant: Pre 3.4.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 53, 94 Int +{variant:1,2,3,4}SpellBlockPercentageUniqueBootsInt5[6,7] +{variant:5}SpellBlockPercentageUniqueBootsInt5[4,6] +{variant:6}SpellBlockPercentageUniqueBootsInt5 +{variant:1,2}LocalIncreasedEnergyShieldPercentUniqueBootsInt5[150,200] +{variant:3,4,5}LocalIncreasedEnergyShieldPercentUniqueBootsInt5 +{variant:1,2}IncreasedManaUniqueBootsInt5[80,100] +{variant:3,4,5,6}IncreasedManaUniqueBootsInt5 +{variant:1,3,4,5,6}AllResistancesUniqueBootsInt5 +{variant:2}AllResistancesUniqueBootsInt5[8,8] +{variant:1,2,3,6}MovementVelocityUniqueBootsInt2 +{variant:4,5}MovementVelocityUniqueBootsInt2[25,25] +]],[[ +Shavronne's Pace +Scholar Boots +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 32, 54 Int +{variant:1,2,3}DexterityUniqueBootsInt3 +{variant:1}IntelligenceUniqueBootsInt3[10,10] +{variant:2,3,4}IntelligenceUniqueBootsInt3 +{variant:1}LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3[50,70][10,15] +{variant:2,3}LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3[100,140][10,15] +{variant:4}LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3 +{variant:3,4}MovementVelocityUniqueBootsStrDex4 +{variant:1,2}MovementVelocityOnFullLifeUniqueBootsInt3[35,35] +{variant:3,4}MovementVelocityOnFullLifeUniqueBootsInt3 +]],[[ +Shavronne's Gambit +Scholar Boots +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 32, 54 Int +DexterityUniqueBootsInt3 +IntelligenceUniqueBootsInt3 +{variant:1,2}LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3[100,140][10,15] +{variant:3}LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueBootsInt3 +{variant:2,3}MovementVelocityUniqueBootsDexInt2 +{variant:1}MovementVelocityOnFullLifeUniqueBootsInt3[35,35] +{variant:2,3}MovementVelocityOnFullLifeUniqueBootsInt3 +{variant:1}EnergyShieldRegenerationperMinuteWhileOnLowLifeTransformedUnique__1 +{variant:2,3}EnergyShieldRegenerationUnique__1 +]],[[ +Skyforth +Sorcerer Boots +Energy Shield: 64 +Requires Level 67, 123 Int +IncreasedManaUnique__1 +MovementVelocityUniqueBootsA1 +PowerChargeOnCriticalStrikeChanceUnique__1 +ReducedManaReservationCostUnique__1 +NoLifeRegenerationUnique___1 +StunThresholdBasedOnManaUnique__1 +]],[[ +Steppan Eard +Sorcerer Boots +League: Warbands +Variant: Pre 3.0.0 +Variant: Current +Requires Level 67, 123 Int +LocalIncreasedEnergyShiledUniqueBootsInt6 +{variant:1}LocalIncreasedEnergyShieldPercentUniqueBootsInt6[110,140] +{variant:2}LocalIncreasedEnergyShieldPercentUniqueBootsInt6 +MovementVelocityUniqueBootsA1 +MovementVelocityOnShockedGroundUniqueBootsInt6_ +IncreasedDamageOnBurningGroundUniqueBootsInt6 +LifeRegenerationPercentOnChilledGroundUniqueBootsInt6 +ImmuneToDesecratedGroundUniqueBootsInt6 +]],[[ +Wanderlust +Wool Shoes +DexterityUniqueBootsInt2 +LocalIncreasedEnergyShieldUniqueBootsInt2 +ManaRegenerationUniqueBootsInt2 +MovementVelocityUniqueBootsInt2 +CannotBeFrozenUnique__1 +]],[[ +Wondertrap +Velvet Slippers +Variant: Pre 1.0.0 +Variant: Pre 3.19.0 +Variant: Current +{variant:1,2}StrengthUniqueBootsInt1[5,10] +{variant:3}StrengthUniqueBootsInt1 +{variant:1,2}DexterityUniqueBootsInt1[5,10] +{variant:3}DexterityUniqueBootsInt1 +{variant:1,2}IntelligenceUniqueBootsInt1[5,10] +{variant:3}IntelligenceUniqueBootsInt1 +{variant:1,2}LocalIncreasedEnergyShieldPercentUniqueBootsInt1[10,16] +{variant:3}LocalIncreasedEnergyShieldPercentUniqueBootsInt1 +ItemRarityOnLowLifeUniqueBootsInt1 +{variant:1}MovementVelocityUniqueBootsInt1[15,15] +{variant:2}MovementVelocityUniqueBootsInt1[10,10] +{variant:3}MovementVelocityUniqueBootsInt1 +]],[[ +Greedtrap +Velvet Slippers +Source: No longer obtainable +LevelReq: 52 ++(5-10) to Strength +DexterityUnique__26 +IntelligenceUnique__21 +LocalIncreasedEnergyShieldUnique__16 +ItemQuantityOnLowLifeUnique__1 +MovementVeolcityUniqueBootsDex4 +]],[[ +Scornflux +Satin Slippers +Source: Drops from unique{Mercenary} after winning a duel +League: Mercenaries of Trarthus +Requires Level 54, 69 Int +IntelligenceUnique__31 +AllResistancesUnique__34 +ArcaneSurgeOnMovementSkillUnique +IncreasedManaUnique__21 +ArcaneSurgeMovementSpeedUnique +]], +-- Boots: Armour/Evasion +[[ +Beacon of Madness +{variant:1}Two-Toned Boots (Armour/Evasion) +{variant:2}Two-Toned Boots (Armour/Energy Shield) +{variant:3}Two-Toned Boots (Evasion/Energy Shield) +Variant: Two-Toned Boots (Armour/Evasion) +Variant: Two-Toned Boots (Armour/Energy Shield) +Variant: Two-Toned Boots (Evasion/Energy Shield) +League: Delirium +Implicits: 3 +{variant:1}FireAndColdResistImplicitBoots1_ +{variant:2}FireAndLightningResistImplicitBoots1 +{variant:3}ColdAndLightningResistImplicitBoots1 +GrantEmbraceMadnessSkillUnique1 +{variant:3}IncreasedChaosDamageUnique__5 +{variant:1}LocalIncreasedArmourAndEvasionUnique__13 +MovementVelocityUniqueBootsA1 +{variant:2}IncreasedAilmentEffectOnEnemiesUnique_2 +{variant:3}AllDamageCanPoisonGloriousMadnessUnique___1 +{variant:1}DoubleDamageChanceGloriousMadnessUnique_1 +{variant:3}EnemiesExplodeOnDeathChaosGloriousMadnessUnique1 +{variant:2}ElementalConfluxesGloriousMadnessUnique1 +{variant:2}ElementalAilmentImmunityGloriousMadnessUnique1 +{variant:1}FortifyEffectSelfGloriousMadnessUnique1[15,15] +]],[[ +Darkray Vectors +Dragonscale Boots +Variant: Pre 2.6.0 +Variant: Pre 3.16.0 +Variant: Current +Requires Level 65, 62 Str, 62 Dex +{variant:2,3}LocalIncreasedArmourAndEvasionUnique__3_ +{variant:3}EvasionRatingPerFrenzyChargeUniqueBootsStrDex2 +LightningResistUniqueBootsStrDex2 +MovementVelocityPerFrenzyChargeUniqueBootsStrDex2 +MaximumFrenzyChargesUniqueBootsStrDex2_ +{variant:1}FrenzyChargeDurationUniqueBootsStrDex2[-50,-50] +{variant:2,3}FrenzyChargeDurationUniqueBootsStrDex2 +LightRadiusUniqueBootsStrDex2 +{variant:1,2}ChanceToDodgePerFrenzyChargeUniqueBootsStrDex2 +]],[[ +Dusktoe +{variant:1}Leatherscale Boots +{variant:2,3,4}Ironscale Boots +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +{variant:1,2,3}LocalIncreasedArmourAndEvasionUniqueBootsStrDex3[40,60] +{variant:4}LocalIncreasedArmourAndEvasionUniqueBootsStrDex3 +{variant:1,2}IncreasedLifeUniqueBootsStrDex3[10,20] +{variant:3}IncreasedLifeUniqueBootsStrDex3 +{variant:1,2}IncreasedManaUniqueBootsStrDex3 +{variant:1,2,3}MovementVelocityUniqueBootsStrDex3[15,15] +{variant:4}MovementVelocityUniqueBootsStrDex3 +{variant:1,2,3}StunRecoveryUniqueBootsStrDex3 +LightRadiusUniqueBootsStrDex3 +ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3 +{variant:3}AddedChaosDamageWhileUsingAFlaskUnique__2[15,20][25,30] +{variant:4}AddedChaosDamageWhileUsingAFlaskUnique__2 +]],[[ +Duskblight +Ironscale Boots +Source: No longer obtainable +Variant: Pre 3.11.0 +Variant: Current +Requires Level 40, 19 Str, 19 Dex +{variant:1}SocketedGemsHaveAddedChaosDamageUniqueBodyInt3 +{variant:2}StalkingPustuleOnKillUnique__1 +LocalIncreasedArmourAndEvasionUnique__15_ +IncreasedLifeUnique__68_ +MovementVelocityUniqueBootsStrDex3 +StunRecoveryUniqueBootsStrDex3 +LightRadiusUniqueBootsStrDex3 +ChaosResistanceWhileUsingFlaskUniqueBootsStrDex3 +{variant:2}AddedChaosDamageWhileUsingAFlaskUnique__1_ +]],[[ +Legacy of Fury +Wyrmscale Boots +Source: Drops from unique{The Maven} +Variant: Pre 3.17.0 +Variant: Current +League: Ritual +Requires Level 69, 48 Str, 48 Dex +LocalIncreasedArmourAndEvasionUnique__18 +{variant:1}AllResistancesUnique_1[-15,10] +MovementVelocityUniqueBootsA1 +{variant:2}NearbyEnemiesAreScorchedUnique__1 +{variant:1}ScorchedGroundWhileMovingUnique__1 +ScorchEffectUnique__1 +ScorchedEnemiesDegenExplodeUnique__1_ +]],[[ +Annihilation's Approach +Dragonscale Boots +Variant: Pre 3.23.0 +Variant: Current +Source: Drops from unique{The Searing Exarch} (Uber) +GrantsTouchOfFireUnique__1 +LocalIncreasedArmourAndEvasionUniqueBootsStrDex3 +MovementVelocityUniqueBootsA1 +CannotBeChilledUnique__1 +CannotBeFrozen +{variant:1}FireDamageTakenFireTouchedUnique__1[10000,10000] +{variant:2}FireDamageTakenFireTouchedUnique__1 +GainAdrenalineFireTouchedGainUnique__1 +LoseAdrenalineFireTouchedLossUnique__1 +]],[[ +Gamblesprint +Hydrascale Boots +League: Affliction +Requires Level 59, 56 Str, 56 Dex +DexterityUniqueBootsDex4_ +LocalIncreasedArmourAndEvasionUnique__24 +LightningResistUniqueBootsStrDex2 +RandomMovementVelocityWhenHitUnique__1 +]],[[ +Lioneye's Paws +Bronzescale Boots +League: Legion +Variant: Pre 3.7.0 +Variant: Current +Requires Level 30, 30 Str, 30 Dex +{variant:2}TriggerRainOfArrowsOnBowAttackUnique__1 +StrengthUniqueBootsStrDex1 +DexterityUniqueBootsStrDex1 +AddedFireDamageUniqueBootsStrDex1 +MovementVelocityUniqueBootsStrDex1 +MovementVelocityOnLowLifeUniqueBootsStrDex1 +{variant:1}StunRecoveryUniqueBootsStrDex1 +{variant:1}CannotBeStunnedOnLowLife +]],[[ +Replica Lioneye's Paws +Bronzescale Boots +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 30, 30 Str, 30 Dex +TriggerToxicRainOnBowAttackUnique__1 +StrengthUniqueBootsStrDex1 +DexterityUniqueBootsStrDex1 +AddedChaosDamageUnique__1 +MovementVelocityUniqueBootsStrDex1 +MovementVelocityOnLowLifeUniqueBootsStrDex1 +]],[[ +Mutewind Whispersteps +Serpentscale Boots +League: Warbands +Variant: Pre 2.6.0 +Variant: Current +Requires Level 42, 40 Str, 40 Dex +{variant:1}SpellAddedColdDamageUniqueBootsStrDex5[15,19][28,35] +{variant:2}SpellAddedColdDamageUniqueBootsStrDex5 +{variant:1}SpellCriticalStrikeChanceUniqueBootsStrDex5[20,40] +{variant:2}SpellCriticalStrikeChanceUniqueBootsStrDex5 +LocalIncreasedEvasionRatingPercentUniqueBootsStrDex5 +ColdResistUniqueBootsStrDex5 +{variant:1}MovementVelocityUniqueBootsStrDex5[20,20] +{variant:2}MovementVelocityUniqueBootsStrDex5 +ImmuneToChilledGroundUniqueBootsStrDex5 +]],[[ +Saqawal's Talons +Hydrascale Boots +League: Bestiary +Source: Drops from unique{Saqawal, First of the Sky} +Requires Level 59, 56 Str, 56 Dex +GrantsBirdAspect1_ +LocalIncreasedArmourAndEvasionUnique__22 +MovementVelocityUnique__51 +AviansFlightDurationUnique__1 +AviansFlightLifeRegenerationUnique__1 +AviansFlightManaRegenerationUnique__1_ +]], +-- Boots: Armour/Energy Shield +[[ +Alberon's Warpath +Soldier Boots +Variant: Pre 3.19.0 +Variant: Current +PercentageStrengthUniqueBootsStrInt2 +AddedChaosDamageUniqueBootsStrInt2 +LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStrInt2 +{variant:1}ChaosResistUniqueBootsStrInt2[9,12] +{variant:2}ChaosResistUniqueBootsStrInt2 +{variant:1}MovementVelocityUniqueBootsDexInt4[20,20] +{variant:2}MovementVelocityUniqueBootsDexInt4 +{variant:1}MaximumMinionCountUniqueBootsStrInt2 +{variant:2}SkeletonWarriorsPermanentMinionUnique__1 +]],[[ +Replica Alberon's Warpath +Soldier Boots +Variant: Pre 3.19.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +PercentageStrengthUniqueBootsStrInt2 +LocalIncreasedPhysicalDamageReductionRatingUniqueBootsStrInt2 +{variant:1}ChaosResistUniqueBootsStrInt2[9,12] +{variant:2}ChaosResistUniqueBootsStrInt2 +{variant:1}MovementVelocityUniqueBootsDexInt4[20,20] +{variant:2}MovementVelocityUniqueBootsDexInt4 +CannotDealNonChaosDamageUnique__1_ +AddedChaosDamageToAttacksPer50StrengthUnique__1 +]],[[ +Death's Door +Crusader Boots +Source: Drops in The Eternal Labyrinth +Requires Level 64, 62 Str, 62 Int +StrengthUnique__10 +LocalIncreasedArmourAndEnergyShieldUnique__4 +AllResistancesUniqueBootsStr1 +MovementVelocityUniqueBootsStrInt2_ +ChargeBonusMaximumEnduranceCharges +BleedingImmunityUnique__1 +SelfStatusAilmentDurationUnique__1 +]],[[ +Gang's Momentum +Legion Boots +Variant: Pre 2.6.0 +Variant: Current +Requires Level 58, 54 Str, 54 Int +LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt3 +FireResistUniqueBootsStrInt3 +MovementVelocityUniqueBootsStrInt3 +{variant:1}ChanceToIgniteUniqueBootsStrInt3[5,7] +{variant:2}ChanceToIgniteUniqueBootsStrInt3 +{variant:1}IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3[15,15] +{variant:2}IncreasedDamageToIgnitedTargetsUniqueBootsStrInt3 +]],[[ +March of the Legion +Legion Boots +Variant: Pre 3.17.0 +Variant: Current +League: Synthesis +Requires Level 58, 54 Str, 54 Int +{variant:1}LocalIncreaseSocketedAuraGemLevelUnique___1 +{variant:2}LocalIncreaseSocketedAuraGemLevelUnique___3 +SupportedByBlessingSupportUnique__1 +LocalIncreasedArmourAndEnergyShieldUnique__14 +AllResistancesUnique__15 +MovementVelocityUnique__39_ +]],[[ +Ralakesh's Impatience +Riveted Boots +Variant: Pre 3.19.0 +Variant: Pre 3.26.0 +Variant: Endurance Current +Variant: Frenzy Current +Variant: Power Current +Requires Level 36, 35 Str, 35 Int +ColdResistUnique__19 +ChaosResistUnique__7 +{variant:3,4,5}MovementVelocityUnique__57 +{variant:3,4,5}CorruptedBloodImmunityUnique_1 +{variant:1,2,3}CountAsHavingMaxEnduranceChargesUnique__1 +{variant:1,2,4}CountAsHavingMaxFrenzyChargesUnique__1 +{variant:1,2,5}CountAsHavingMaxPowerChargesUnique__1 +{variant:1}GainARandomChargePerSecondWhileStationaryUnique__1 +{variant:1}Lose all Frenzy, Endurance, and Power Charges when you Move +]],[[ +Wake of Destruction +Mesh Boots +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Current +Requires Level 28, 28 Str, 28 Int +AddedLightningDamageUniqueBootsStrInt1 +LocalIncreasedArmourAndEnergyShieldUniqueBootsStrInt1 +LifeGainedFromEnemyDeathUniqueBootsStrInt1 +{variant:2,3}MovementVelocityUniqueBootsStrInt2_[15,15] +{variant:1,2}HitsCauseMonsterFleeUniqueBootsStrInt1 +{variant:3}ShockedGroundWhileMovingUnique__1_ +]], +-- Boots: Evasion/Energy Shield +[[ +Brinerot Whalers +Trapper Boots +League: Warbands +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Requires Level 41, 40 Dex, 40 Int +IncreasedPhysicalDamagePercentUniqueBootsDexInt4 +{variant:1}LocalIncreasedEnergyShieldUniqueBootsDexInt4[60,80] +{variant:2}LocalIncreasedEnergyShieldUniqueBootsDexInt4[120,150] +{variant:3}LocalIncreasedEnergyShieldUniqueBootsDexInt4 +LightningResistUniqueBootsDexInt4 +{variant:1}MovementVelocityUniqueBootsDexInt4[20,20] +{variant:2,3}MovementVelocityUniqueBootsDexInt4 +IncreasedProjectileDamageUniqueBootsDexInt4 +ImmuneToShockedGroundUniqueBootsDexInt4 +]],[[ +Bubonic Trail +Murder Boots +League: Abyss +Source: Drops from unique{Amanamu, Liege of the Lightless} or unique{Ulaman, Sovereign of the Well} +Variant: One Abyssal Socket (Pre 3.21.0) +Variant: Two Abyssal Sockets (Pre 3.21.0) +Variant: One Abyssal Socket (Current) +Variant: Two Abyssal Sockets (Current) +Requires Level 69, 82 Dex, 42 Int +{variant:1,3}AbyssJewelSocketUnique__12 +{variant:2,4}AbyssJewelSocketUnique__13 +DeathWalk +{variant:1,2}MaximumLifeUnique__9 +{variant:1,2}MovementVelocityUniqueBootsA1 +{variant:3,4}ElementalAilmentDurationWithRareAbyssJewelUnique__1 +{variant:3,4}MovementVelocityWithMagicAbyssJewelUnique__1 +{variant:1,2}DamagePerAbyssJewelTypeUnique__1_ +{variant:3,4}ReservationEfficiencyWithUniqueAbyssJewelUnique__1 +]],[[ +Corpsewalker +Carnal Boots +Variant: Pre 3.19.0 +Variant: Current +League: Heist +Requires Level 55, 52 Dex, 52 Int +Implicits: 0 +CorpseWalk +LocalIncreasedEvasionAndEnergyShieldUnique__37 +MovementVelocityUniqueBootsDexInt4 +{variant:1}DamageIfConsumedCorpseUnique__1__ +{variant:2}FlatLifeRegenerationPerNearbyCorpseUnique__1[480,480] +{variant:1}LifeRegenerationPerNearbyCorpseUnique__1 +{variant:2}MovementVelocityPerNearbyCorpseUnique__1 +]],[[ +Dance of the Offered +{variant:1}Shackled Boots +{variant:2}Carnal Boots +Variant: Pre 3.14.0 +Variant: Current +League: Incursion +Source: Opening normal{Thunder Coffer} in normal{Conduit of Lightning} +Upgrade: Upgrades to unique{Omeyocan} via currency{Vial of the Ritual} +{variant:1}Requires Level 34, 34 Dex, 34 Int +{variant:2}Requires Level 55, 52 Dex, 52 Int +IncreasedManaUnique__13 +{variant:1}LightningResistUnique__18[15,20] +{variant:2}LightningResistUnique__18 +MovementVelocityUniqueBootsStr3 +OnslaughtWhileNotOnLowManaUnique__1_ +{variant:1}LoseManaPerSecondUnique__1 +{variant:2}KeystoneTheAgnosticUnique__1_ +]],[[ +Omeyocan +Carnal Boots +Variant: Pre 3.16.0 +Variant: Pre 3.26.0 +Variant: Current +League: Incursion +Source: Upgraded from unique{Dance of the Offered} via currency{Vial of the Ritual} +Requires Level 55, 52 Dex, 52 Int +MaximumManaUnique__7 +LightningResistUnique__17_ +MovementVelocityUniqueBootsInt6 +{variant:1}DodgeAndSpellDodgePerMaximumManaUnique__1[2,2] +{variant:2}DodgeAndSpellDodgePerMaximumManaUnique__1[10,10] +{variant:3}DodgeAndSpellDodgePerMaximumManaUnique__1 +OnslaughtWhileNotOnLowManaUnique__1_ +LoseManaPercentPerSecondUnique__1 +]],[[ +Fenumus' Spinnerets +Assassin's Boots +League: Bestiary +Source: Drops from unique{Fenumus, First of the Night} +Requires Level 63, 62 Dex, 62 Int +LocalIncreasedEvasionAndEnergyShieldUnique__14 +LightningResistUniqueBootsDexInt4 +ChaosResistUnique__10 +MovementVelocityUniqueBootsDexInt4 +IncreasedSpiderWebCountUnique__1 +ESOnHitWebbedEnemiesUnique__1 +AspectOfSpiderDurationUnique__1 +]],[[ +Inextricable Fate +Fugitive Boots +Source: Drops from unique{The Eater of Worlds} +Requires Level 70, 56 Dex, 76 Int +Implicits: 1 +ChaosResistImplicitBoots1 +IncreasedLifeUnique__108 +MovementVelocityUniqueBootsDex7 +GainVinesOnCriticalStrikeUnique__1 +NearbyStationaryEnemiesGainVinesUnique__1 +AllDamagePoisonsGraspingVinesUnique__1 +ReducedCriticalDamageTakenPoisonUnique__1 +]],[[ +Nomic's Storm +Strapped Boots +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Current +Requires Level 16, 18 Dex, 18 Int +DexterityUniqueBootsDex1 +LocalIncreasedEvasionRatingUniqueBootsDex8 +LocalIncreasedEnergyShieldUniqueBootsDex8 +ColdResistUniqueBootsDex8 +MovementVelocityUniqueBootsInt5 +{variant:1}IncreasedPhysicalDamageTakenUniqueBootsDex8[30,30] +{variant:2}IncreasedPhysicalDamageTakenUniqueBootsDex8 +{variant:3}DamageTakenOnFullESUnique__1 +MovementVelocityWhileOnFullEnergyShieldUniqueBootsDex8 +]],[[ +The Stampede +Assassin's Boots +Requires Level 63, 62 Dex, 62 Int +League: Blight +Source: Drops in Blighted Maps +LocalIncreasedEvasionAndEnergyShieldUnique__27 +StunRecoveryUnique__3 +ManaRegenerationRateWhileMovingUnique__1 +MovementVelocityOverrideUnique__1 +TravelSkillCooldownRecoveryUnique__1_ +This item can be anointed by Cassia +]],[[ +Replica Stampede +Assassin's Boots +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 63, 62 Dex, 62 Int +TravelSkillMoreDamageUnique__1 +LocalIncreasedEvasionAndEnergyShieldUnique__26 +StunRecoveryUnique__2 +ManaRegenerationRateWhileMovingUnique__1 +MovementVelocityOverrideUnique__1 +This item can be anointed by Cassia +]],[[ +Sundance +Clasped Boots +Variant: Pre 2.6.0 +Variant: Current +Requires Level 27, 27 Dex, 27 Int +IncreasedAttackSpeedUniqueBootsDexInt1 +LocalIncreasedEvasionRatingPercentUniqueBootsDexInt1 +ItemFoundRarityIncreaseUniqueBootsDexInt1 +FireResistUniqueBootsDexInt1 +{variant:1}MovementVelocityUniqueBootsInt2[10,10] +{variant:2}MovementVelocityUniqueBootsInt2 +]],[[ +Sunspite +Clasped Boots +Source: No longer obtainable +Requires Level 59, 27 Dex, 27 Int +IncreasedAttackSpeedUniqueBootsDexInt1 +LocalIncreasedEvasionAndEnergyShieldUnique__15 +ItemFoundRarityIncreaseUniqueBootsDemigods1 +FireResistUniqueBootsDexInt1 +MovementVelocityUniqueBootsDexInt1 +MovementVelocityWhileIgnitedUnique__2 +IncreasedChanceToBeIgnitedUnique__1 +LifeRegeneratedPerMinuteWhileIgnitedUnique__1 +]],[[ +Veruso's Ambition +Shackled Boots +League: Necropolis +Requires Level 34, 34 Dex, 34 Int +GrantsRavenousSkillUnique__1 +LocalIncreasedEvasionAndEnergyShieldUnique__28 +ChaosResistUnique__30 +MovementVelocityUnique__28 +]],[[ +Voidwalker +Murder Boots +Shaper Item +Source: Drops from unique{The Shaper} +Variant: Pre 3.0.0 +Variant: Current +Requires Level 69, 82 Dex, 42 Int +DexterityUnique__25 +LocalIncreasedEvasionAndEnergyShieldUnique__5 +MovementVelocityUniqueBootsDex1 +ChanceToAvoidProjectilesWhilePhasingUnique__1 +GainPhasingIfKilledRecentlyUnique__1 +{variant:1}PrrojectilesPierceWhilePhasingUnique__1_ +{variant:2}AdditionalPierceWhilePhasingUnique__1 +CelestialFootprintsUnique__1_ +]],[[ +Replica Voidwalker +Murder Boots +Shaper Item +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 69, 82 Dex, 42 Int +DexterityUnique__22 +LocalIncreasedEvasionAndEnergyShieldUnique__22 +MovementVelocityUniqueBootsA1 +DamageTakenWhilePhasingUnique__1 +GainPhasingIfKilledRecentlyUnique__1 +ProjectilesChainWhilePhasingUnique__1_ +CelestialFootprintsUnique__1_ +]], +-- Boots: Ward +[[ +Olroth's Charge +Runic Sollerets +League: Expedition +Requires Level 48, 37 Str, 37 Dex, 37 Int +LocalIncreasedWardPercentUnique__4_ +WardDelayRecoveryUnique__2 +MovementVelocityUniqueBootsDex8 +AdrenalineOnWardBreakUnique__1 +]], +} diff --git a/src/Export/Uniques/bow.lua b/src/Export/Uniques/bow.lua new file mode 100644 index 0000000000..26fd54d0f9 --- /dev/null +++ b/src/Export/Uniques/bow.lua @@ -0,0 +1,650 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Weapon: Bow +[[ +Arborix +Assassin Bow +Variant: Pre 3.5.0 +Variant: Pre 3.9.0 +Variant: Pre 3.11.0 +Variant: Pre 3.17.0 +Variant: Current +Requires Level 62, 212 Dex +Source: Vendor Recipe +Implicits: 1 +{variant:3}CriticalMultiplierImplicitBow1 +{variant:4,5}GrantsDashUnique__1_ +{variant:1}LocalAddedPhysicalDamageUnique__29___[60,70][180,210] +{variant:2,3,4}LocalAddedPhysicalDamageUnique__29___[95,115][240,265] +{variant:5}LocalAddedPhysicalDamageUnique__29___ +{variant:1,2,3}LocalIncreasedEvasionRatingPercentUnique__5 +{variant:1,2,3}AdditionalArrowsUniqueBow3 +{variant:4,5}ArrowsIfHaventUsedDashRecentlyUnique__1 +{variant:4,5}AttackSpeedIfHaventUsedDashRecentlyUnique__1 +{variant:4,5}EvasionRatingIfUsedDashRecentlyUnique__1 +{variant:4,5}MovementSpeedIfUsedDashRecentlyUnique__1 +{variant:4,5}DisableTravelSkillsExceptDashUnique__1 +{variant:4,5}IronReflexes +{variant:1,2,3}DisplayIronReflexesFor8SecondsUnique__1 +{variant:1,2,3}ArborixMoreDamageAtCloseRangeUnique__1 +{variant:1,2,3}AttackCastMovementSpeedWhileYouDoNotHaveIronReflexesUnique__1 +{variant:1,2,3}FarShotWhileYouDoNotHaveIronReflexesUnique__1_ +]],[[ +Chin Sol +Assassin Bow +Variant: Pre 1.0.0 +Variant: Pre 1.2.0 +Variant: Pre 2.0.0 +Variant: Pre 3.5.0 +Variant: Pre 3.9.0 +Variant: Pre 3.17.0 +Variant: Current +Requires Level 62, 212 Dex +Implicits: 2 +{variant:6,7}CriticalMultiplierImplicitBow1 +{variant:2,3}WeaponElementalDamageImplicitBow3[6,12] +DexterityUniqueBow4 +{variant:1,2}LocalIncreasedPhysicalDamagePercentUniqueBow6[75,100] +{variant:3,4}LocalIncreasedPhysicalDamagePercentUniqueBow6[150,180] +{variant:5,6}LocalIncreasedPhysicalDamagePercentUniqueBow6[200,260] +{variant:7}LocalIncreasedPhysicalDamagePercentUniqueBow6 +LocalAddedFireDamageUniqueBow6 +{variant:1,2}IncreasedAttackSpeedUniqueGlovesDex2 +{variant:3,4,5,6,7}LocalIncreasedAttackSpeedUniqueBow11 +{variant:1,2,3,4}PhysicalBowDamageCloseRangeUniqueBow6[100,100] +{variant:5,6,7}PhysicalBowDamageCloseRangeUniqueBow6 +KnockbackCloseRangeUniqueBow6 +]],[[ +The Crimson Storm +Steelwood Bow +League: Betrayal +Source: Drops from unique{Fortification Leaders} in normal{Safehouses} +Variant: Crit Multi while Rare/Unique Nearby (Pre 3.17.0) +Variant: Attack Speed while Rare/Unique Nearby (Pre 3.17.0) +Variant: Damage per Power Charge (Pre 3.17.0) +Variant: Damage per Frenzy Charge (Pre 3.17.0) +Variant: Damage per Endurance Charge (Pre 3.17.0) +Variant: Accuracy and Quality (Pre 3.17.0) +Variant: Attack Speed and Quality (Pre 3.17.0) +Variant: Attack Speed/Trigger Blood Rage on Kill (Pre 3.17.0) +Variant: Cast Speed/Trigger Arcane Surge on Kill (Pre 3.17.0) +Variant: Minion Attack and Cast Speed (Pre 3.17.0) +Variant: Double Damage (Pre 3.17.0) +Variant: Double Damage while Focused (Pre 3.17.0) +Variant: Socketed Spell Trigger (Pre 3.17.0) +Variant: Pre 3.17.0 +Variant: Crit Multi while Rare/Unique Nearby (Current) +Variant: Attack Speed while Rare/Unique Nearby (Current) +Variant: Damage per Power Charge (Current) +Variant: Damage per Frenzy Charge (Current) +Variant: Damage per Endurance Charge (Current) +Variant: Accuracy and Str/Dex (Current) +Variant: Attack Speed and Dex/Int (Current) +Variant: Critical Strike Chance and Str/Int (Current) +Variant: Cast Speed/Trigger Arcane Surge on Kill (Current) +Variant: Minion Attack and Cast Speed (Current) +Variant: Double Damage (Current) +Variant: Double Damage while Focused (Current) +Variant: Socketed Spell Trigger (Current) +Variant: Fire Damage over Time (Current) +Variant: Physical Damage over Time (Current) +Variant: Chaos Damage over Time (Current) +Variant: Current +Requires Level 57, 190 Dex +Implicits: 1 +{variant:1,2,3,4,5,6,7,8,9,10,11,12,13,14}(4-6)% increased Movement Speed +{variant:15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31}MovementVelocityMarakethBowImplicit1 +{variant:1,2,3,4,5,6,7,8,9,10,11,12,13,14}LocalIncreasedPhysicalDamagePercentUniqueBow5[140,170] +{variant:15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31}LocalIncreasedPhysicalDamagePercentUniqueBow5 +LocalCriticalStrikeChanceUnique__15 +BleedOnCritUnique__1_ +EnemiesYouBleedGrantIncreasedFlaskChargesUnique__1_ +AddedPhysicalDamageVsBleedingEnemiesUnique__1 +MaimOnCritUnique__1 +{variant:1}{crafted}+(18-45)% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby +{variant:2}{crafted}(11-22)% increased Attack Speed while a Rare or Unique Enemy is Nearby +{variant:3}{crafted}(5-6)% increased Damage per Power Charge +{variant:4}{crafted}(5-6)% increased Damage per Frenzy Charge +{variant:5}{crafted}(5-6)% increased Damage per Endurance Charge +{variant:6}{crafted}+(30-250) to Accuracy Rating +{variant:7}IncreasedAttackSpeedUnique__8[8,16] +{variant:6,7}{crafted}+(7-18)% to Quality +{variant:8}IncreasedAttackSpeedUnique__8 +{variant:8}{crafted}10% chance to Trigger Level 1 Blood Rage when you Kill an Enemy +{variant:9}IncreasedCastSpeedUniqueWand11 +{variant:9}{crafted}10% chance to gain Arcane Surge when you Kill an Enemy +{variant:10}{crafted}Minions have (16-28)% increased Attack Speed +{variant:10}{crafted}Minions have (16-28)% increased Cast Speed +{variant:11}{crafted}(4-12)% chance to deal Double Damage +{variant:12}{crafted}(13-36)% chance to deal Double Damage while Focused +{variant:13}{crafted}Trigger a Socketed Spell when you Use a Skill, with a 8 second Cooldown +{variant:15}{crafted}+(54-60)% Critical Strike Multiplier while there is a Rare or Unique Enemy Nearby +{variant:16}{crafted}(27-30)% increased Attack Speed while a Rare or Unique Enemy is Nearby +{variant:17}{crafted}(7-8)% increased Damage per Power Charge +{variant:18}{crafted}(7-8)% increased Damage per Frenzy Charge +{variant:19}{crafted}(7-8)% increased Damage per Endurance Charge +{variant:20}{crafted}+(311-350) to Accuracy Rating +{variant:20}{crafted}+(25-28) to Strength and Dexterity +{variant:21}{crafted}(18-22)% increased Attack Speed +{variant:21}{crafted}+(25-28) to Dexterity and Intelligence +{variant:22}{crafted}(28-32)% increased Critical Strike Chance +{variant:22}{crafted}+(25-28) to Strength and Intelligence +{variant:23}{crafted}(26-31)% increased Cast Speed +{variant:23}{crafted}15% chance to gain Arcane Surge when you Kill an Enemy +{variant:24}{crafted}Minions have (34-38)% increased Attack Speed +{variant:24}{crafted}Minions have (34-38)% increased Cast Speed +{variant:25}{crafted}(12-14)% chance to deal Double Damage +{variant:26}{crafted}(36-40)% chance to deal Double Damage while Focused +{variant:27}{crafted}Trigger a Socketed Spell when you Use a Skill, with a 4 second Cooldown +{variant:27}{crafted}Spells Triggered this way have 150% more Cost +{variant:28}{crafted}+(24-28)% to Fire Damage over Time Multiplier +{variant:29}{crafted}+(24-28)% to Physical Damage over Time Multiplier +{variant:30}{crafted}+(24-28)% to Chaos Damage over Time Multiplier +]],[[ +Darkscorn +Assassin Bow +League: Legion +Variant: Pre 1.2.0 +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Pre 3.9.0 +Variant: Pre 3.17.0 +Variant: Current +Requires Level 62, 212 Dex +Implicits: 2 +{variant:6,7}CriticalMultiplierImplicitBow1 +{variant:1,2}WeaponElementalDamageImplicitBow2[6,12] +{variant:1,2,3}LocalIncreasedPhysicalDamagePercentUniqueBow5[100,125] +{variant:4,5,6}LocalIncreasedPhysicalDamagePercentUniqueBow5[130,150] +{variant:7}LocalIncreasedPhysicalDamagePercentUniqueBow5 +{variant:2}LocalAddedPhysicalDamageUniqueBow5[6,10][10,14] +{variant:3,4}LocalAddedPhysicalDamageUniqueBow5[10,15][15,20] +{variant:5,6,7}LocalAddedPhysicalDamageUniqueBow5 +{variant:1,2,3,4}LocalIncreasedAttackSpeedUniqueBow5[10,10] +{variant:5,6,7}LocalIncreasedAttackSpeedUniqueBow5 +AccuracyPercentUniqueBow5 +PhysicalDamageConvertToChaosUniqueBow5 +PhysicalDamagePercentTakesAsChaosDamageUniqueBow5 +{variant:5,6,7}LocalChanceForPoisonDamage300FinalInflictedWithThisWeaponUnique__1_ +]],[[ +Death's Harp +Death Bow +Variant: Pre 1.2.0 +Variant: Pre 2.2.0 +Variant: Pre 3.0.0 +Variant: Pre 3.10.0 +Variant: Pre 3.17.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 32, 107 Dex +Implicits: 1 +{variant:2,3,4,5,6,7}LocalCriticalStrikeChanceImplicitBow1 +{variant:1,2,3,4,5}LocalIncreasedPhysicalDamagePercentUniqueBow3[100,125] +{variant:6,7}LocalIncreasedPhysicalDamagePercentUniqueBow3 +LocalIncreasedAttackSpeedUniqueBow2 +{variant:1,2,4}LocalCriticalMultiplierUniqueBow3[100,100] +{variant:3}LocalCriticalMultiplierUniqueBow3[150,150] +{variant:5,6,7}LocalCriticalMultiplierUniqueBow3 +{variant:1,2,3,4,5,6}AdditionalArrowsUniqueBow3[1,1] +{variant:7}AdditionalArrowsUniqueBow3 +]],[[ +Death's Opus +Death Bow +Source: No longer obtainable +Variant: Pre 1.2.0 +Variant: Pre 2.2.0 +Variant: Pre 3.0.0 +Variant: Pre 3.10.0 +Variant: Pre 3.17.0 +Variant: Current +Requires Level 44, 107 Dex +Implicits: 1 +{variant:2,3,4,5,6}LocalCriticalStrikeChanceImplicitBow1 +{variant:1,2,3,4,5}LocalIncreasedPhysicalDamagePercentUniqueBow3[100,125] +{variant:6}LocalIncreasedPhysicalDamagePercentUniqueBow3 +LocalAddedPhysicalDamageUnique__17_[10,20][30,35] +LocalIncreasedAttackSpeedUniqueBow2 +{variant:1,2,4}LocalCriticalMultiplierUniqueBow3[100,100] +{variant:3}LocalCriticalMultiplierUniqueBow3[150,150] +{variant:5,6}LocalCriticalMultiplierUniqueBow3 +AdditionalArrowsUniqueBow3 +]],[[ +Doomfletch +Royal Bow +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.1.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 28, 95 Dex +Implicits: 2 +{variant:2}WeaponElementalDamageImplicitBow1[6,12] +{variant:3,4,5}WeaponElementalDamageImplicitBow1 +{variant:2,3}LocalAddedPhysicalDamageUniqueBow11[8,12][16,20] +{variant:4,5}LocalAddedPhysicalDamageUniqueBow11 +LocalIncreasedAttackSpeedUniqueBow6 +{variant:1,2,3}CriticalStrikeChanceUniqueBow9 +ManaRegenerationUniqueBow11 +{variant:1,2,3}WeaponPhysicalDamageAddedAsRandomElementUniqueBow11[110,110] +{variant:4}WeaponPhysicalDamageAddedAsRandomElementUniqueBow11 +{variant:5}LocalPhysicalDamageAddedAsEachElementTransformed2 +]],[[ +Doomfletch's Prism +Royal Bow +Source: No longer obtainable +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.1.0 +Variant: Current +Requires Level 40, 95 Dex +Implicits: 2 +{variant:2}WeaponElementalDamageImplicitBow1[6,12] +{variant:3,4}WeaponElementalDamageImplicitBow1 +{variant:2,3}LocalAddedPhysicalDamageUniqueBow11[8,12][16,20] +{variant:4}LocalAddedPhysicalDamageUniqueBow11 +LocalIncreasedAttackSpeedUniqueBow11 +{variant:1,2,3}CriticalStrikeChanceUniqueBow9 +ManaRegenerationUniqueBow11 +{variant:1,2,3}LocalPhysicalDamageAddedAsEachElementTransformed[110,110] +{variant:4}LocalPhysicalDamageAddedAsEachElementTransformed +]],[[ +The Gluttonous Tide +Citadel Bow +Source: Drops from unique{The Eater of Worlds} +Requires Level 58, 185 Dex +LocalIncreasedPhysicalDamagePercentUnique13 +LocalIncreasedAttackSpeedUnique__37___ +BowAttacksFrenzyChargesArrowsUnique__1 +CriticalStrikeMultiplierFrenzyChargesUnique__1 +FrenzyChargePerEnemyCritUnique__1 +]],[[ +Hopeshredder +Ranger Bow +Elder Item +Source: Drops from unique{The Elder} +Variant: Pre 3.4.0 +Variant: Current +Requires Level 60, 212 Dex +LocalAddedColdDamageUnique__8 +{variant:2}LocalIncreasedAccuracyUnique__2 +{variant:1}AccuracyAgainstBleedingEnemiesUnique__1[400,500] +MovementVelocityPerFrenzyChargeUnique__1 +AvoidElementalDamagePerFrenzyChargeUnique__1 +AddedColdDamagePerFrenzyChargeUnique__1 +AttackDamageLeechPerFrenzyChargeUnique__1 +{variant:1}DamageTakenPerFrenzyChargeMovingUnique__1[24000,24000] +{variant:2}DamageTakenPerFrenzyChargeMovingUnique__1 +]],[[ +Infractem +Decimation Bow +Variant: Pre 1.2.0 +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Pre 3.17.0 +Variant: Current +Requires Level 53, 170 Dex +Implicits: 1 +LocalCriticalStrikeChanceImplicitBow1 +DexterityUniqueBow7 +{variant:1,2}LocalIncreasedPhysicalDamagePercentUniqueBow7[90,100] +{variant:3,4}LocalIncreasedPhysicalDamagePercentUniqueBow7[110,125] +{variant:5}LocalIncreasedPhysicalDamagePercentUniqueBow7 +{variant:2,3,4,5}LocalAddedPhysicalDamageUniqueBow7 +MovementVelocityUniqueBow7 +{variant:1,2,3}IncreasedAccuracyUniqueBow7[200,250] +{variant:4,5}IncreasedAccuracyUniqueBow7 +{variant:1,2}CannotLeech +{variant:3,4,5}CannotLeechLifeUnique__1 +ArrowPierceUniqueBow7 +]],[[ +Replica Infractem +Decimation Bow +Variant: Pre 3.17.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 53, 170 Dex +Implicits: 1 +LocalCriticalStrikeChanceImplicitBow1 +DexterityUniqueBow7 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueBow7[110,125] +{variant:2}LocalIncreasedPhysicalDamagePercentUniqueBow7 +LocalAddedPhysicalDamageUniqueBow7 +MovementVelocityMarakethBowImplicit2 +IncreasedAccuracyUniqueBow7 +CannotLeechMana +AttackProjectilesForkUnique__1 +AttackProjectilesForkExtraTimesUnique__1 +]],[[ +Iron Commander +Death Bow +Requires Level 32, 107 Dex +Implicits: 1 +LocalCriticalStrikeChanceImplicitBow1 +LocalAddedPhysicalDamageUnique__5 +LocalIncreasedAttackSpeedUnique__6 +TotemLifeUnique__1 +SummonTotemCastSpeedUnique__1 +AdditionalSnipeTotemsPerDexterityUnique__1 +AddedDamagePerDexterityUnique__1 +]],[[ +Replica Iron Commander +Death Bow +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 32, 107 Dex +Implicits: 1 +LocalCriticalStrikeChanceImplicitBow1 +LocalAddedPhysicalDamageUnique__5 +LocalIncreasedAttackSpeedUnique__6 +TotemLifeUnique__1 +SummonTotemCastSpeedUnique__1 +AdditionalShrapnelBallistaePerStrengthUnique__1 +AddedDamagePerStrengthUnique__1 +]],[[ +Lioneye's Glare +Imperial Bow +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.17.0 +Variant: Pre 3.20.0 +Variant: Pre 3.28.0 +Variant: Current +Requires Level 66, 212 Dex +Implicits: 3 +{variant:2}WeaponElementalDamageImplicitBow1[6,12] +{variant:3,4,5,6}WeaponElementalDamageImplicitBow1 +{variant:7}IncreasedPhysicalDamagePercentUniqueBowImplicit1 +{variant:1,2,3,4}LocalIncreasedPhysicalDamagePercentUniqueBow1[150,175] +{variant:5}LocalIncreasedPhysicalDamagePercentUniqueBow1[90,105] +{variant:6,7}LocalIncreasedPhysicalDamagePercentUniqueBow1 +{variant:1,2,3,4,5}LocalAddedPhysicalDamageUniqueBow1[6,12][20,32] +{variant:6,7}LocalAddedPhysicalDamageUniqueBow1 +{variant:1,2,3,4,5,6}LocalIncreasedAttackSpeedUniqueBow1 +IncreasedManaUniqueBow1 +AlwaysHitsUnique__1 +{variant:7}AttacksYouUseYourselfRepeatCountUnique__1 +{variant:7}AttacksYouUseYourselfAttackSpeedFinalUnique__1 +{variant:4,5,6,7}PlayerFarShotUnique__1 +]],[[ +Null's Inclination +Ranger Bow +Variant: Pre 3.14.0 +Variant: Pre 3.26.0 +Variant: Current +Requires Level 60, 212 Dex, 212 Int +CastSocketedMinionSpellsOnKillUniqueBow12 +IntelligenceRequirementsUniqueBow12 +AddedChaosDamageUniqueBow12 +LocalIncreasedAttackSpeedUniqueBow12 +ChaosResistUniqueBow12 +{variant:1}Minions deal 1% increased Damage per 10 Dexterity +{variant:2}IncreasedMinionDamagePerDexterityUniqueBow12[1,1] +{variant:3}IncreasedMinionDamagePerDexterityUniqueBow12 +]],[[ +Nuro's Harp +Harbinger Bow +Variant: Pre 2.5.0 +Variant: Pre 3.26.0 +Variant: Current +Requires Level 68, 212 Dex +Implicits: 1 +LocalCriticalStrikeChanceImplicitBow1 +LocalReducedPhysicalDamagePercentUniqueBow8 +{variant:1,2}LocalAddedColdDamageUnique__4[120,140][180,210] +{variant:3}LocalAddedColdDamageUnique__4 +LocalIncreasedAttackSpeedUniqueBow10 +LightRadiusUnique__2 +SpreadChilledGroundOnFreezeUnique__1 +SpreadConsecratedGroundOnShatterUnique__1 +{variant:2}ChilledGroundEffectUnique__1[40,40] +{variant:3}ChilledGroundEffectUnique__1 +{variant:3}ConsecratedGroundEffectUnique__1 +]],[[ +Quill Rain +Short Bow +Variant: Pre 2.6.0 +Variant: Pre 3.9.0 +Variant: Current +Requires Level 5, 26 Dex +DexterityUniqueBow6 +{variant:2,3}LocalIncreasedPhysicalDamagePercentUniqueDescentBow1 +LocalIncreasedAttackSpeedUniqueBow4 +{variant:2,3}ManaGainPerTargetUnique__2 +ProjectileSpeedUniqueBow4_ +IncreasedAccuracyUniqueBow4 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueBow4[-50,-50] +{variant:2}LocalIncreasedPhysicalDamagePercentUniqueBow4[-40,-40] +{variant:3}LocalIncreasedPhysicalDamagePercentUniqueBow4 +]],[[ +Replica Quill Rain +Short Bow +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 5, 26 Dex +SupportedByArrowNovaUnique__1 +DexterityUniqueBow4 +LocalIncreasedPhysicalDamagePercentUniqueDescentBow1 +LocalIncreasedAttackSpeedUnique__35 +ManaGainPerTargetUnique__2 +ProjectileSpeedUniqueBow4_ +IncreasedAccuracyUniqueBow4 +]],[[ +Reach of the Council +Spine Bow +Variant: Pre 2.4.0 +Variant: Pre 2.6.0 +Variant: Pre 3.5.0 +Variant: Pre 3.11.0 +Variant: Pre 3.17.0 +Variant: Current +{variant:4,5,6}SupportedByGreaterVolleyUnique__1 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__15[50,70] +{variant:2,3}LocalIncreasedPhysicalDamagePercentUnique__15[40,50] +{variant:4,5,6}LocalIncreasedPhysicalDamagePercentUnique__15 +{variant:1}LocalAddedPhysicalDamageUnique__16_[25,40][100,115] +{variant:2,3,4,5}LocalAddedPhysicalDamageUnique__16_[15,30][70,95] +{variant:6}LocalAddedPhysicalDamageUnique__16_ +LocalIncreasedAttackSpeedUnique__9 +ProjectileSpeedUnique__3 +{variant:5,6}VolleyFirstPointPierceUnique__1_ +{variant:5,6}VolleySecondPointForkUnique__1 +{variant:5,6}VolleyThirdPointReturnUnique__1__ +{variant:5,6}VolleyFourthPointChainUnique__1 +{variant:1,2}AdditionalArrowsUnique__1[4,4] +{variant:3}AdditionalArrowsUnique__1 +]],[[ +Roth's Reach +Recurve Bow +Variant: Pre 3.9.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 18, 71 Dex +Implicits: 1 +{variant:2,3}CriticalMultiplierImplicitBow1 +LocalIncreasedPhysicalDamagePercentUniqueBow5 +{variant:1,2}LocalIncreasedAttackSpeedUnique__1 +{variant:1,2}AdditionalChainUnique__1[1,1] +{variant:3}AdditionalChainUnique__1 +ProjectileSpeedUnique__2 +{variant:1,2}WeaponElementalDamageUnique__2[20,40] +{variant:3}WeaponElementalDamageUnique__2 +]],[[ +Silverbranch +Crude Bow +Variant: Pre 2.0.0 +Variant: Current +Requires Level 2 +LocalIncreaseSocketedBowGemLevelUniqueBow2 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueBow2[50,80] +{variant:2}LocalIncreasedPhysicalDamagePercentUniqueBow2 +LocalIncreasedAttackSpeedUniqueBow2 +ManaGainedFromEnemyDeathUniqueBow2 +IncreasedAccuracyUniqueBow2 +]],[[ +Silverbough +Crude Bow +Source: No longer obtainable +Requires Level 36 +LocalIncreaseSocketedGemLevelUnique__2 +LocalIncreaseSocketedBowGemLevelUniqueBow2 +LocalIncreasedPhysicalDamagePercentUniqueBow2 +LocalAddedPhysicalDamageUnique__19 +LocalIncreasedAttackSpeedUniqueBow2 +ManaGainedFromEnemyDeathUniqueBow2 +IncreasedAccuracyUniqueBow2 +]],[[ +Widowhail +Crude Bow +QuiverModifierEffectUnique__1 +]],[[ +Slivertongue +Harbinger Bow +Variant: Pre 3.5.0 +Variant: Pre 3.17.0 +Variant: Current +Requires Level 68, 212 Dex +Implicits: 1 +LocalCriticalStrikeChanceImplicitBow1 +{variant:1}LocalAddedPhysicalDamageUnique__22[60,75][170,220] +{variant:2}LocalAddedPhysicalDamageUnique__22[110,125][245,265] +{variant:3}LocalAddedPhysicalDamageUnique__22 +{variant:1}CriticalStrikeChanceForForkingArrowsUnique__1[100,100] +{variant:2,3}CriticalStrikeChanceForForkingArrowsUnique__1 +{variant:1}ArrowsThatPierceCauseBleedingUnique__1 +{variant:1}ArrowsAlwaysCritAfterPiercingUnique___1 +{variant:2,3}ArrowsAlwaysPierceAfterForkingUnique__1__ +{variant:2,3}ArrowsThatPierceHaveCritMultiUnique__1 +]],[[ +Storm Cloud +Long Bow +Variant: Pre 2.0.0 +Variant: Current +Requires Level 9, 38 Dex +LocalReducedPhysicalDamagePercentUniqueBow8 +{variant:1}AddedLightningDamageUniqueBow8[1,1][75,75] +{variant:2}AddedLightningDamageUniqueBow8 +LocalIncreasedAttackSpeedUniqueBow8 +]],[[ +The Tempest +Long Bow +Source: No longer obtainable +Requires Level 32, 38 Dex +LocalReducedPhysicalDamagePercentUniqueBow8 +LightningDamagePercentUnique__4 +AddedLightningDamageUniqueBow8 +LocalIncreasedAttackSpeedUniqueBow8 +]],[[ +Voltaxic Rift +Spine Bow +Variant: Pre 3.9.0 +Variant: Pre 3.20.0 +Variant: Pre 3.28.0 +Variant: Current +{variant:1,2}LocalAddedLightningDamageUniqueBow10[1,1][275,325] +{variant:3,4}LocalAddedLightningDamageUniqueBow10 +LocalIncreasedAttackSpeedUniqueBow10 +{variant:1,2}ConvertLightningDamageToChaosUniqueBow10[60,60] +{variant:3,4}ConvertLightningDamageToChaosUniqueBow10 +{variant:1,2}ChanceToShockUniqueBow10 +ChaosDamageCanShockUniqueBow10 +{variant:2,3}AttacksShockAsIfDealingMoreDamageUniqueBow10 +{variant:4}LocalTreatChaosResistanceAsInvertedUnique__1 +{variant:2,3,4}MaximumShockOverrideUniqueBow10 +]],[[ +Windripper +Imperial Bow +Variant: Pre 1.1.2 +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.5.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 66, 212 Dex +Implicits: 2 +{variant:3}WeaponElementalDamageImplicitBow1[6,12] +{variant:4,5,6}WeaponElementalDamageImplicitBow1 +{variant:1}AddedColdDamageUniqueBow9[40,40][60,60] +{variant:2,3,4}AddedColdDamageUniqueBow9[32,40][48,60] +{variant:5,6}AddedColdDamageUniqueBow9 +{variant:1}AddedLightningDamageUniqueBow9[1,1][100,100] +{variant:2,3,4}AddedLightningDamageUniqueBow9[1,1][80,100] +{variant:5,6}AddedLightningDamageUniqueBow9 +LocalIncreasedAttackSpeedUniqueBow9 +{variant:1,2}CriticalStrikeChanceUniqueBow9[80,100] +{variant:3,4}CriticalStrikeChanceUniqueBow9[60,80] +{variant:5,6}CriticalStrikeChanceUniqueBow9 +{variant:1,2}ItemQuantityWhenFrozenUniqueBow9[25,25] +{variant:3,4,5}ItemQuantityWhenFrozenUniqueBow9 +{variant:1,2}ItemRarityWhenShockedUniqueBow9[50,50] +{variant:3,4,5,6}ItemRarityWhenShockedUniqueBow9 +{variant:6}IncreasedRarityWhenSlayingFrozenUnique__1 +]],[[ +Replica Windripper +Imperial Bow +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 66, 212 Dex +Implicits: 1 +WeaponElementalDamageImplicitBow1 +AddedColdDamageUniqueBow9 +AddedLightningDamageUniqueBow9 +LocalIncreasedAttackSpeedUniqueBow10 +LocalCriticalStrikeChanceUniqueBow11 +FrozenMonstersTakeIncreasedDamage +GainEnergyShieldOnKillShockedEnemyUnique__1_ +]],[[ +Xoph's Inception +{variant:1}Bone Bow +{variant:2}Citadel Bow +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Drops in Xoph Breach or from unique{Xoph, Dark Embers} +Upgrade: Upgrades to unique{Xoph's Nurture} using currency{Blessing of Xoph} +Requires Level 23, 80 Dex +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__21[70,90] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__21 +{variant:1}LifeGainedOnKillingIgnitedEnemiesUnique__1[20,30] +{variant:2}LifeGainedOnKillingIgnitedEnemiesUnique__1 +PhysicalAddedAsFireUnique__3 +ChanceToIgniteUnique__3 +{variant:2}AlwaysPierceBurningEnemiesUnique__1 +{variant:2}ArrowAddedFireDamagePerEnemyPiercedUnique__1 +]],[[ +Xoph's Nurture +Citadel Bow +League: Breach +Source: Upgraded from unique{Xoph's Inception} using currency{Blessing of Xoph} +Variant: Pre 3.3.0 +Variant: Pre 3.9.0 +Variant: Pre 3.17.0 +Variant: Current +Requires Level 64, 185 Dex +{variant:3,4}SupportedByIgniteProliferationUnique1 +{variant:1,2,3}LocalIncreasedPhysicalDamagePercentUnique__38[250,300] +{variant:4}LocalIncreasedPhysicalDamagePercentUnique__38 +ConvertPhysicalToFireUnique__1 +ChanceToIgniteUnique__2 +{variant:1}GlobalIgniteProlifUnique__1[12,12] +{variant:2}GlobalIgniteProlifUnique__1 +GainLifeOnIgnitingEnemyUnique__1 +]], +[[ +Wing of the Wyvern +Imperial Bow +Source: Drops from unique{Uber Incarnation of Fear} in normal{Moment of Trauma} +Requires Level 66, 212 Dex +Implicits: 1 +WeaponElementalDamageImplicitBow1 +MainHandTriggerSocketedSpellOnFreezingHitUnique_1 +LocalAddedColdDamageUnique__11 +LocalAddedChaosDamageUnique__4 +LocalIncreasedAttackSpeedUnique__30 +ChaosDamageCanFreezeUnique_1 +BattlemageKeystoneUnique__1 +]], +} diff --git a/src/Export/Uniques/claw.lua b/src/Export/Uniques/claw.lua new file mode 100644 index 0000000000..b5a6e9bb18 --- /dev/null +++ b/src/Export/Uniques/claw.lua @@ -0,0 +1,382 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Weapon: Claw +[[ +Advancing Fortress +Gut Ripper +Variant: Pre 2.6.0 +Variant: Current +Requires Level 46, 80 Dex, 80 Int +Implicits: 2 +{variant:1}LifeGainPerTargetImplicit2Claw8[21,21] +{variant:2}LifeGainPerTargetImplicit2Claw8 +SocketedGemsSupportedByFortifyUnique____1 +AdditionalBlockUnique__2 +LocalIncreasedPhysicalDamagePercentUniqueClaw6 +IncreasedEvasionRatingUnique___1 +IncreasedEnergyShieldUnique__2 +IncreasedLifeUnique__11 +AttackerTakesDamageShieldImplicit7 +]],[[ +Replica Advancing Fortress +Gut Ripper +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 46, 80 Dex, 80 Int +Implicits: 1 +LifeGainPerTargetImplicit2Claw8 +SupportedByCastOnDamageTakenUnique__1 +AdditionalBlockUnique__2 +LocalIncreasedPhysicalDamagePercentUniqueClaw6 +IncreasedLifeUnique__107 +ShieldArmourIncreaseUnique__1 +AddedFireDamageIfBlockedRecentlyUnique__1 +]],[[ +Allure +Vaal Claw +Variant: Pre 3.0.0 +Variant: Current +Requires Level 66, 131 Dex, 95 Int +Implicits: 1 +LifeLeechPermyriadImplicitClaw2 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__1[80,100] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__1 +LocalAddedPhysicalDamageUnique__1 +LocalIncreasedAttackSpeedUnique__16 +MovementSpeedWhilePhasedUnique__1 +{variant:1}GainPhasingOnVaalSkillUseUnique__1[3000,3000] +{variant:2}GainPhasingOnVaalSkillUseUnique__1 +]],[[ +Replica Allure +Vaal Claw +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 66, 95 Dex, 131 Int +Implicits: 1 +LifeLeechPermyriadImplicitClaw2 +LocalIncreasedPhysicalDamagePercentUnique__1 +LocalAddedPhysicalDamageUnique__1 +LocalIncreasedAttackSpeedUnique__16 +LifeGainedOnTauntingEnemyUnique__1 +OnslaughtOnKillingTauntedEnemyUnique__1 +TauntedEnemiesTakeIncreasedDamage_ +]],[[ +Al Dhih +Timeworn Claw +League: Legion +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.7.0 +Variant: Pre 3.11.0 +Variant: Current +Requires Level 26, 39 Dex, 56 Int +Implicits: 3 +{variant:2}LifeLeechPermyriadUniqueClaw6[200,200] +{variant:1}LifeGainPerTargetImplicit2Claw4_1[8,8] +{variant:3,4,5,6}LifeGainPerTargetImplicit2Claw4_1 +{variant:1,2,3,4}SocketedItemsHaveChanceToFleeUniqueClaw6 +{variant:4,5}TriggeredAbyssalCryUnique__1 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueClaw6[60,80] +{variant:2,3,4,5,6}LocalIncreasedPhysicalDamagePercentUniqueClaw6 +LifeLeechPermyriadUniqueClaw6 +{variant:1,2,3,4}StunThresholdReductionUniqueClaw6 +{variant:6}WarcryTauntChaosExplosionUnique__1_ +{variant:5}WarcryEffectUnique__1[50,50] +{variant:6}WarcryEffectUnique__1 +{variant:5,6}WarcryCooldownIs2SecondsUnique__1 +]],[[ +Bloodseeker +Hellion's Paw +Variant: Pre 3.0.0 +Variant: Pre 3.20.0 +Variant: Pre 3.28.0 +Variant: Current +Requires Level 62, 131 Dex, 95 Int +Implicits: 1 +LifeLeechPermyriadImplicitClaw1 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueClaw3[100,120] +{variant:2}LocalIncreasedPhysicalDamagePercentUniqueClaw3[150,170] +{variant:3}LocalIncreasedPhysicalDamagePercentUniqueClaw3[200,220] +{variant:4}LocalIncreasedPhysicalDamagePercentUniqueClaw3 +{variant:1,2}LocalAddedPhysicalDamageUniqueClaw3[10,10][12,12] +{variant:3,4}LocalAddedPhysicalDamageUniqueClaw3 +{variant:4}LIfeReservationEfficiencyUnique__1 +{variant:1,2,3}LocalIncreasedAttackSpeedUniqueClaw3 +LifeLeechPermyriadUniqueClaw3 +{variant:1,2,3}MovementVelocityUniqueClaw3 +{variant:4}MaximumLifeLeechAmountPerLifeReservedUnique__1 +LocalLifeLeechIsInstantUniqueClaw3 +]],[[ +Cybil's Paw +Thresher Claw +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 37, 53 Dex, 77 Int +Implicits: 3 +{variant:1}LifeGainPerTargetImplicit2Claw6[15,15] +{variant:2}LifeGainPerTargetImplicit2Claw6[21,21] +{variant:3,4}LifeGainPerTargetImplicit2Claw6 +{variant:1,2,3}IncreasedCastSpeedUniqueClaw7[8,12] +{variant:4}IncreasedCastSpeedUniqueClaw7 +IncreasedManaUniqueClaw7 +{variant:1,2,3}LifeGainedOnSpellHitUniqueClaw7[5,8] +{variant:4}LifeGainedOnSpellHitUniqueClaw7 +{variant:1}IncreasedSpellDamagePerBlockChanceUniqueClaw7[6,6] +{variant:2,3,4}IncreasedSpellDamagePerBlockChanceUniqueClaw7 +]],[[ +Essentia Sanguis +{variant:1,2,3}Eye Gouger +{variant:4,5,6}Vaal Claw +Variant: Pre 1.3.0 +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Pre 3.20.0 +Variant: Pre 3.28.0 +Variant: Current +Implicits: 4 +{variant:1,2}LifeLeechPermyriadImplicitClaw2[60,60] +{variant:4,5,6}LifeLeechPermyriadImplicitClaw2 +{variant:3}LifeGainPerTargetImplicit2Claw12[31,31] +{variant:7}LifeLeechAllAttackDamagePermyriadImplicitClaw2 +{variant:1}BlockWhileDualWieldingClawsUniqueClaw1[10,10] +{variant:2,3,4,5,6}BlockWhileDualWieldingClawsUniqueClaw1 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueClaw1[80,120] +{variant:2,3,4,5}LocalIncreasedPhysicalDamagePercentUniqueClaw1 +{variant:1}LocalAddedLightningDamageUnique__1[1,1][50,50] +{variant:2,3}LocalAddedLightningDamageUnique__1[1,1][80,80] +{variant:4,5}LocalAddedLightningDamageUnique__1[1,1][200,200] +{variant:6}AddedLocalLightningDamageUniqueClaw1[1,1][600,700] +{variant:7}AddedLocalLightningDamageUniqueClaw1 +LocalIncreasedAttackSpeedUniqueClaw1 +{variant:1,2,3,4,5,6}IncreasedEnergyShieldUniqueClaw1[30,40] +{variant:7}IncreasedEnergyShieldUniqueClaw1 +{variant:5}MaximumESLeechAmountUnique__1_ +{variant:5,6,7}ESLeechFromAttacksNotRemovedOnFullESUnique__1 +{variant:1,2,3,4}LeechEnergyShieldInsteadofLife +{variant:7}MaximumESLeechAmountDoubledUnique__1 +{variant:5,6,7}KeystoneGhostReaverUnique__1 +]],[[ +Hand of Thought and Motion +{variant:1,2,3}Blinder +{variant:4}Imperial Claw +League: Breach +Source: Drops in Esh Breach or from unique{Esh, Forked Thought} +Upgrade: Upgrades to unique{Hand of Wisdom and Action} using currency{Blessing of Esh} +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.21.0 +Variant: Pre 3.26.0 +Variant: Current +Implicits: 3 +{variant:1}LifeGainPerTargetImplicit2Claw10[10,10] +{variant:2,3}LifeGainPerTargetImplicit2Claw10[12,12] +{variant:4,5}LifeGainPerTargetImplicit2Claw10 +{variant:4,5}PercentageDexterityUnique__3 +{variant:4,5}PercentageIntelligenceUnique__3 +{variant:1,2,3}LocalAddedLightningDamageUnique__4 +{variant:1,2,3}LocalIncreasedAttackSpeedUniqueClaw8 +{variant:4,5}MaximumLifeOnKillPercentUnique__1 +{variant:4}AddedLightningDamagePerDexterityUnique__1[1,1][10,10] +{variant:5}AddedLightningDamagePerDexterityUnique__1 +{variant:1,2}AddedLightningDamagePerIntelligenceUnique__2[1,1][3,3] +{variant:3}AddedLightningDamagePerIntelligenceUnique__2 +{variant:4,5}CriticalStrikeChancePerIntelligenceUnique__1 +{variant:1,2,3}WeaponElementalDamageUnique__4 +]],[[ +Hand of Wisdom and Action +Imperial Claw +League: Breach +Source: Upgraded from unique{Hand of Thought and Motion} using currency{Blessing of Esh} +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.21.0 +Variant: Pre 3.26.0 +Variant: Current +Requires Level 68, 131 Dex, 95 Int +Implicits: 2 +{variant:1}LifeGainPerTargetImplicit2Claw10[25,25] +{variant:2,3,4,5}LifeGainPerTargetImplicit2Claw10 +PercentageDexterityUnique__3 +PercentageIntelligenceUnique__3 +{variant:4,5}LifeLeechFromAttacksPermyriadUnique__1 +{variant:1,2}AddedLightningDamagePerIntelligenceUnique__1[1,1][6,6][10,10] +{variant:3,4}AddedLightningDamagePerIntelligenceUnique__1[1,1][10,10] +{variant:5}AddedLightningDamagePerIntelligenceUnique__1 +IncreasedAttackSpeedPerDexterityUnique__1 +{variant:1,2,3}WeaponElementalDamageUnique__4 +]],[[ +Izaro's Dilemma +Imperial Claw +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Current +Requires Level 68, 131 Dex, 95 Int +Implicits: 2 +{variant:1}LifeGainPerTargetImplicit2Claw13[25,25] +{variant:2,3}LifeGainPerTargetImplicit2Claw13 +LocalIncreasedPhysicalDamagePercentUnique__6 +LocalAddedPhysicalDamageUnique__3 +LocalIncreasedAttackSpeedUniqueClaw8 +{variant:1,2}IncreasedAccuracyUnique__1[250,350] +{variant:3}IncreasedAccuracyUnique__1 +PhysicalDamageWhileFrozenUnique___1 +]],[[ +Last Resort +Nailed Fist +Implicits: 1 +LifeGainPerTargetImplicitClaw1 +IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4 +LocalIncreasedPhysicalDamagePercentUniqueClaw5 +LocalAddedPhysicalDamagePercentUniqueClaw4 +IncreasedClawDamageOnLowLifeUniqueClaw4 +IncreasedAccuracyWhenOnLowLifeUniqueClaw4 +]],[[ +Replica Last Resort +Nailed Fist +Variant: Pre 3.14.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +LifeGainPerTargetImplicit2Claw1 +{variant:1}IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4[50,50] +{variant:2}IncreasedAttackSpeedWhenOnLowLifeUniqueClaw4 +LocalIncreasedPhysicalDamagePercentUniqueClaw4 +IncreasedAccuracyWhenOnLowLifeUniqueClaw4 +IncreasedClawDamageOnLowLifeUnique__1__ +DealNoDamageWhenNotOnLowLifeUnique__1 +]],[[ +Law of the Wilds +Hellion's Paw +Variant: Pre 3.14.0 +Variant: Current +League: Harvest +Source: Drops from unique{Oshabi, Avatar of the Grove} +Requires Level 62, 131 Dex, 95 Int +Implicits: 1 +LifeLeechPermyriadImplicitClaw1 +{variant:1}20% chance to Trigger Level 20 Summon Spectral Wolf on Critical Strike with this Weapon +{variant:2}SummonWolfOnCritUnique__1 +LocalIncreasedAttackSpeedUnique__25 +LocalCriticalStrikeChanceUnique__17_ +CriticalMultiplierUnique__4____ +]],[[ +Mortem Morsu +Fright Claw +Variant: Pre 2.2.0 +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Requires Level 34, 61 Dex, 61 Int +Implicits: 2 +{variant:1,2}LifeLeechPermyriadImplicitClaw2 +{variant:3,4}LifeGainPerTargetImplicit2Claw5_1 +LocalIncreasedPhysicalDamagePercentUniqueClaw2 +LocalIncreasedAttackSpeedUniqueClaw2 +LocalCriticalStrikeChanceUniqueClaw2 +{variant:1}LocalCriticalMultiplierUniqueClaw2[25,25] +{variant:2,3,4}LocalCriticalMultiplierUniqueClaw2 +PhysicalDamageConvertToChaosUniqueClaw2 +{variant:1,2,3}LocalPoisonOnHit +StunThresholdReductionUniqueClaw2_ +{variant:4}LocalChanceToPoisonOnHitUnique__2 +]],[[ +Ornament of the East +Gut Ripper +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.21.0 +Variant: Current +Requires Level 46, 80 Dex, 80 Int +Implicits: 2 +{variant:1}LifeGainPerTargetImplicit2Claw8[21,21] +{variant:2,3,4}LifeGainPerTargetImplicit2Claw8 +LocalIncreaseSocketedDexterityGemLevelUniqueClaw8 +{variant:3}DisplaySocketedGemsGetsFasterAttackUnique__1[10,10] +{variant:4}DisplaySocketedGemsGetsFasterAttackUnique__1 +{variant:1,2}LocalIncreasedPhysicalDamageUniqueClaw8[100,120] +{variant:3,4}LocalIncreasedPhysicalDamageUniqueClaw8 +LocalIncreasedAttackSpeedUniqueClaw8 +StunRecoveryUniqueClaw8 +AlwaysHits +]],[[ +Rive +Terror Claw +Requires Level 70, 113 Dex, 113 Int +Implicits: 1 +LifeLeechPermyriadImplicitClaw2 +LocalIncreasedPhyiscalDamagePercentUnique__3 +LocalAddedPhysicalDamageUnique__13 +CausesBleedingUnique__1 +IncreasePhysicalDegenDamagePerDexterityUnique__1 +IncreaseBleedDurationPerIntelligenceUnique__1 +BleedingEnemiesFleeOnHitUnique__1 +]],[[ +The Scourge +Terror Claw +Variant: Pre 3.11.0 +Variant: Current +Requires Level 70, 113 Dex, 113 Int +Implicits: 1 +LifeLeechPermyriadImplicitClaw2 +{variant:1}SummonWolfOnKillUnique__1 +LocalAddedPhysicalDamageUnique__23_ +LocalIncreasedAttackSpeedUniqueClaw9 +IncreasedMinionAttackSpeedUnique__1_ +MinionDamageAlsoAffectsYouUnique__1 +IncreasedMinionDamageIfYouHitEnemyUnique__1 +]],[[ +Touch of Anguish +Imperial Claw +Variant: Pre 2.6.0 +Variant: Current +Requires Level 68, 131 Dex, 95 Int +Implicits: 2 +{variant:1}LifeGainPerTargetImplicit2Claw10[25,25] +{variant:2}LifeGainPerTargetImplicit2Claw10 +LocalAddedPhysicalDamageUnique__14 +ColdDamagePercentUnique__8 +LocalCriticalStrikeChanceUnique__10 +ChanceToGainFrenzyChargeOnKillingFrozenEnemyUnique__1 +AdditionalChainWhileAtMaxFrenzyChargesUnique___1 +ChanceToFreezeUnique__3 +CriticalStrikesDoNotFreezeUnique___1 +]],[[ +The Wasp Nest +Throat Stabber +Variant: Pre 3.7.0 +Variant: Current +Requires Level 60, 113 Dex, 113 Int +Implicits: 1 +LifeGainPerTargetImplicit2Claw11_ +LocalIncreasedPhysicalDamagePercentUnique__28__ +LocalIncreasedAttackSpeedUnique__21 +LocalCriticalStrikeChanceUnique__11 +{variant:1}LocalIncreasedAccuracyUnique__1[180,200] +{variant:2}LocalIncreasedAccuracyUnique__1 +LocalChanceToPoisonOnHitUnique__3 +AddedChaosDamageVsEnemiesWith5PoisonsUnique__1 +]],[[ +Wildslash +Awl +Variant: Pre 2.6.0 +Variant: Current +Requires Level 12, 25 Dex, 25 Int +Implicits: 2 +{variant:1}LifeGainPerTargetImplicit2Claw3[5,5] +{variant:2}LifeGainPerTargetImplicit2Claw3 +StrengthUniqueClaw9 +DexterityUniqueClaw9 +LocalAddedPhysicalDamageUniqueClaw9 +LocalIncreasedAttackSpeedUniqueClaw8 +DamageWithMovementSkillsUniqueClaw9 +AttackSpeedWithMovementSkillsUniqueClaw9 +AccuracyPercentUniqueClaw9 +]], +} diff --git a/src/Export/Uniques/dagger.lua b/src/Export/Uniques/dagger.lua new file mode 100644 index 0000000000..84e66154ae --- /dev/null +++ b/src/Export/Uniques/dagger.lua @@ -0,0 +1,353 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Weapon: Dagger +[[ +Arakaali's Fang +Fiend Dagger +Requires Level 53, 58 Dex, 123 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger2 +SummonSpidersOnKillUnique__1 +LocalIncreasedPhysicalDamagePercentUnique__25 +LocalAddedPhysicalDamageUnique__25 +LocalAddedChaosDamageUnique___1 +LocalChanceToPoisonOnHitUnique__1 +]],[[ +Bino's Kitchen Knife +Slaughter Knife +Variant: Pre 2.2.0 +Variant: Pre 3.20.0 +Variant: Pre 3.28.0 +Variant: Current +Requires Level 65, 81 Dex, 117 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +{variant:1,2}DegenerationDamageUniqueDagger8 +{variant:1,2}LocalAddedPhysicalDamageUniqueDagger8[50,60][120,140] +{variant:3,4}LocalAddedPhysicalDamageUniqueDagger8 +LocalCriticalStrikeChanceUniqueDagger8 +{variant:1}CriticalMultiplierUniqueDagger8[10,15] +{variant:2,3,4}CriticalMultiplierUniqueDagger8 +{variant:3}ChaosResistUniqueDagger8[8,12] +{variant:4}ChaosResistUniqueDagger8[17,27] +{variant:1,2,3,4}On Killing a Poisoned Enemy, Enemies within 3 metres are Poisoned +{variant:3,4}and nearby Allies Regenerate 400 Life per second +]],[[ +Bloodplay +Stiletto +Variant: Pre 2.6.0 +Variant: Current +Requires Level 15, 30 Dex, 30 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +DexterityUniqueDagger12 +LocalIncreasedPhysicalDamagePercentUniqueDagger12 +LocalAddedPhysicalDamageUniqueDagger12 +LocalIncreasedAttackSpeedUniqueDagger12 +ExtraGore +{variant:1}LocalChanceToBleedUniqueDagger12[10,10] +{variant:2}LocalChanceToBleedUniqueDagger12 +]],[[ +Replica Bloodplay +Stiletto +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 15, 30 Dex, 30 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +StrengthUnique__15 +LocalIncreasedPhysicalDamagePercentUniqueDagger12 +LocalAddedPhysicalDamageUniqueDagger12 +LocalChanceToBleedUniqueDagger12 +CriticalStrikeChanceAgainstBleedingEnemiesUnique__1 +ExtraGore +]],[[ +Cold Iron Point +Ezomyte Dagger +Requires Level 62, 95 Dex, 131 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +GlobalPhysicalSpellGemsLevelUnique__1 +DealNoElementalDamageUnique__1 +]],[[ +Replica Cold Iron Point +Ezomyte Dagger +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 62, 95 Dex, 131 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +GlobalColdSpellGemsLevelUnique__1 +DealNoColdDamageUnique__1 +]],[[ +The Consuming Dark +Fiend Dagger +Variant: Pre 2.2.0 +Variant: Pre 3.0.0 +Variant: Current +Requires Level 53, 58 Dex, 123 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger2 +IntelligenceUniqueDagger10_ +SpellDamageUniqueDagger10 +LocalIncreaseSocketedFireGemLevelUniqueDagger10 +{variant:1}ConvertFireToChaosUniqueDagger10Updated[45,45] +{variant:2,3}ConvertFireToChaosUniqueDagger10Updated +{variant:1,2}ChaosDamagePoisonsUniqueDagger10 +{variant:3}ChaosDamageChanceToPoisonUnique__1 +]],[[ +Divinarius +Imperial Skean +League: Legion +Variant: Pre 3.7.0 +Variant: Pre 3.20.0 +Variant: Current +Requires Level 66, 95 Dex, 131 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +{variant:1,2}SpellDamageOnWeaponUniqueDagger1[50,70] +{variant:3}SpellDamageOnWeaponUniqueDagger1 +{variant:1}LifeGainedFromEnemyDeathUniqueDagger11[10,10] +{variant:2}LifeGainedFromEnemyDeathUniqueDagger11[30,30] +{variant:3}LifeGainedFromEnemyDeathUniqueDagger1 +{variant:1}ManaGainedFromEnemyDeathUniqueBow2[5,5] +{variant:2}ManaGainedFromEnemyDeathUniqueBow2 +{variant:3}ManaGainedFromEnemyDeathUniqueDagger1 +{variant:1,2}AreaOfEffectUniqueDagger1[10,10] +{variant:3}AreaOfEffectUniqueDagger1 +{variant:2}SpellCriticalStrikeChanceIfKilledRecentlyUnique__1[125,175] +{variant:3}SpellCriticalStrikeChanceIfKilledRecentlyUnique__1 +{variant:2}SpellCriticalStrikeMultiplierIfNotKilledRecentlyUnique__1[40,60] +{variant:3}SpellCriticalStrikeMultiplierIfNotKilledRecentlyUnique__1 +]],[[ +Goredrill +Skinning Knife +Requires Level 5, 16 Dex +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +DexterityUniqueDagger11 +LocalIncreasedPhysicalDamagePercentUniqueDagger11 +LocalAddedPhysicalDamageUniqueDagger11 +LocalCriticalStrikeChanceUniqueDagger11 +AttackDamageAgainstBleedingUniqueDagger11 +CausesBleedingOnCritUniqueDagger11 +]],[[ +Sanguine Gambol +Skinning Knife +Source: No longer obtainable +Requires Level 59 +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +DexterityUniqueDagger11 +LocalIncreasedPhysicalDamagePercentUniqueDagger11 +LocalAddedPhysicalDamageUnique__36 +LocalCriticalStrikeChanceUniqueDagger11 +AttackDamageAgainstBleedingUniqueDagger11 +CauseseBleedingOnCritUniqueDagger9 +CrimsonDanceIfCritRecentlyUnique__1 +]],[[ +Goblinedge +Ambusher +League: Ritual +Requires Level 60, 113 Dex, 113 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +LocalIncreasedPhysicalDamagePercentUnique__43 +AttackSpeedFrenzyChargeNotGainedUnique__1 +CriticalStrikeChancePowerChargeNotGainedUnique__1 +ExtendFrenzyPowerChargeDurationCullUnique__1 +LifeGainOnCullUnique__1 +ManaGainOnCullUnique__1_ +]],[[ +Heartbreaker +Royal Skean +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 50, 71 Dex, 102 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +{variant:1}SpellDamageOnWeaponUniqueDagger4[40,50] +{variant:2,3}SpellDamageOnWeaponUniqueDagger4 +{variant:1,2}IncreasedEnergyShieldUniqueDagger4 +{variant:1,2}ReducedEnergyShieldDelayUniqueBodyInt1 +{variant:3}ReducedEnergyShieldDelayUniqueDagger4 +{variant:1,2}IncreasedManaUniqueDagger4[40,50] +{variant:3}IncreasedManaUniqueDagger4 +SpellsHaveCullingStrikeUniqueDagger4 +]],[[ +Replica Heartbreaker +Royal Skean +Variant: Pre 3.19.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 50, 71 Dex, 102 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +SpellDamageOnWeaponUniqueDagger4 +{variant:1}IncreasedEnergyShieldUniqueDagger4 +{variant:1}ReducedEnergyShieldDelayUniqueBodyInt1 +{variant:2}ReducedEnergyShieldDelayUniqueDagger4 +{variant:1}IncreasedLifeUnique__123[40,50] +{variant:2}IncreasedLifeUnique__123 +ImpaleEffectUnique__1 +ChanceToImpaleWithSpellsUnique__1 +]],[[ +The Hidden Blade +Ambusher +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 60, 113 Dex, 113 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +UniqueSecretBladeGrantHiddenBlade +DexterityUnique__18 +LocalIncreasedPhysicalDamagePercentUnique__42 +ReducedAttackSpeedWhilePhasingUnique__1 +]],[[ +Mark of the Doubting Knight +Platinum Kris +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.26.0 +Variant: Current +Requires Level 64, 76 Dex, 149 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger3 +BlockWhileDualWieldingUniqueDagger9 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueDagger9[180,210] +{variant:2}LocalIncreasedPhysicalDamagePercentUniqueDagger9[210,240] +{variant:3,4}LocalIncreasedPhysicalDamagePercentUniqueDagger9 +{variant:1,2,3}LocalReducedAttackSpeedUniqueDagger9[10,10] +{variant:4}LocalReducedAttackSpeedUniqueDagger9 +{variant:4}LocalCriticalStrikeChanceUnique__23 +{variant:4}LocalCriticalMultiplierUniqueDagger4 +{variant:1,2,3}AllResistancesUniqueDagger9 +{variant:3,4}CauseseBleedingOnCritUniqueDagger9 +{variant:3,4}CausesPoisonOnCritUniqueDagger9 +{variant:1,2}Melee Critical Strikes have 25% chance to cause Bleeding +{variant:1,2}Melee Critical Strikes have 25% chance to Poison the Enemy +]],[[ +Mightflay +Flaying Knife +Requires Level 35, 73 Dex, 51 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +StrengthUniqueDagger2 +LocalIncreasedPhysicalDamagePercentUniqueDagger3 +LocalAddedPhysicalDamageUniqueDagger2 +LifeGainPerTargetUniqueDagger2 +]],[[ +Taproot +Ambusher +Requires Level 60, 113 Dex, 113 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +LocalIncreasedPhysicalDamagePercentUnique__20 +LocalIncreasedAttackSpeedUnique__17 +PoisonDurationUnique__1_ +AttackDamageManaLeechAgainstPoisonedEnemiesUnique_2 +LifeLeechFromAttackDamageAgainstMaimedEnemiesUnique__1 +LocalMaimOnHitChanceUnique__1 +LocalChanceToPoisonOnHitUnique__4 +]],[[ +Ungil's Gauche +Boot Knife +Variant: Pre 1.1.0 +Variant: Pre 1.3.0 +Variant: Current +Requires Level 20, 31 Dex, 45 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +{variant:2}BlockWhileDualWieldingUniqueDagger3[20,20] +{variant:1,3}BlockWhileDualWieldingUniqueDagger3 +DexterityUniqueDagger3 +LocalIncreasedPhysicalDamagePercentUniqueDagger2 +AddedLightningDamageUniqueDagger3 +LocalIncreasedAttackSpeedUniqueDagger3 +CriticalStrikeChanceImplicitDaggerNew3 +]],[[ +Replica Ungil's Gauche +Boot Knife +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 20, 31 Dex, 45 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +BlockWhileDualWieldingUnique__2_ +DexterityUniqueDagger3 +LocalIncreasedAttackSpeedUniqueDagger12 +CriticalStrikeChanceImplicitDagger3 +ChanceToChillAttackersOnBlockUnique__2__ +ChanceToShockAttackersOnBlockUnique__2 +]],[[ +Vulconus +Demon Dagger +Variant: Pre 3.5.0 +Variant: Current +Requires Level 68, 76 Dex, 149 Int +Implicits: 1 +CriticalStrikeChanceImplicitDaggerNew2 +LocalAddedPhyiscalDamageUnique__39 +LocalAddedFireDamageUnique__5__ +{variant:2}LocalChanceToBleedUnique__1__ +{variant:1}AddedFireDamageVersusBleedingEnemiesUnique__1 +{variant:1}AddedPhysicalDamageVersusIgnitedEnemiesUnique__1 +{variant:1}ChanceToBleedIgnitedEnemiesUnique__1 +{variant:2}FireDamageVersusBleedingEnemiesUnique__1 +{variant:2}PhysicalDamageVersusIgnitedEnemiesUnique__1 +GainAvatarOfFireEvery8SecondsUnique__1 +{variant:1}IncreasedCriticalStrikeChanceWithAvatarOfFireUnique__1[80,120] +{variant:2}IncreasedCriticalStrikeChanceWithAvatarOfFireUnique__1 +ConvertPhysicalToFireWithAvatarOfFireUnique__1 +{variant:1}ArmourWithoutAvatarOfFireUnique__1[1000,1000] +{variant:2}ArmourWithoutAvatarOfFireUnique__1 +]],[[ +White Wind +Imperial Skean +Variant: Pre 3.11.0 +Variant: Pre 3.16.0 +Variant: Current +Requires Level 66, 95 Dex, 131 Int +Implicits: 1 +CriticalStrikeChanceImplicitDaggerNew1 +LocalAddedColdDamageUnique__7 +LocalIncreasedAttackSpeedUnique__13 +{variant:1}IncreasedEvasionRatingUnique__3[300,400] +{variant:2,3}IncreasedEvasionRatingUnique__3 +{variant:1}IncreasedColdDamageWhileOffhandIsEmpty_[100,100] +{variant:2,3}IncreasedColdDamageWhileOffhandIsEmpty_ +{variant:1,2}ChanceToDodgeWhileOffhandIsEmpty[15,25] +{variant:3}ChanceToDodgeWhileOffhandIsEmpty +]],[[ +Widowmaker +Boot Blade +Variant: Pre 3.0.0 +Variant: Current +Requires Level 44, 63 Dex, 90 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger1 +{variant:1}LocalAddedPhysicalDamageUnique__8[15,25][35,45] +{variant:2}LocalAddedPhysicalDamageUnique__8 +LocalCriticalStrikeChanceUnique__2 +LocalCriticalMultiplierUniqueDagger4 +CriticalChanceAgainstEnemiesOnFullLifeUnique__1 +CriticalStrikeAttackLifeLeechUnique__1 +]], +[[ +Festering Resentment +Demon Dagger +Source: Drops from unique{Uber Incarnation of Neglect} in normal{Moment of Loneliness} +Requires Level 68, 76 Dex, 149 Int +Implicits: 1 +CriticalStrikeChanceImplicitDagger2 +SupportVirulenceSpellsCastOnBlockUnique_1 +SpellBlockWhileInOffHandUnique_1 +SpellDamageUnique__17 +PoisonDamageUnique__2 +TriggeredSpellsPoisonOnHitUnique_1 +AllDamageFromTriggeredSpellsCanPoisonUnique_1 +]], +} diff --git a/src/Export/Uniques/fishing.lua b/src/Export/Uniques/fishing.lua new file mode 100644 index 0000000000..a7cfa9b1e6 --- /dev/null +++ b/src/Export/Uniques/fishing.lua @@ -0,0 +1,26 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Weapon: Fishing Rod +[[ +Reefbane +Fishing Rod +Variant: Pre 2.6.0 +Variant: Current +Requires 8 Str, 8 Dex +IncreasedCastSpeedUnique__3 +FishingLureTypeUnique__1__ +{variant:1}FishingQuantityUnique__1[30,40] +{variant:2}FishingQuantityUnique__1 +FishDetectionUnique__1_ +]],[[ +Song of the Sirens +Fishing Rod +Requires 8 Str, 8 Dex +Implicits: 0 +FishingLureTypeUniqueFishingRod1 +FishingRarityUniqueFishingRod1 +FishingExoticFishUniqueFishingRod1 +(50-40)% reduced Quantity of Fish Caught +]] +} diff --git a/src/Export/Uniques/flask.lua b/src/Export/Uniques/flask.lua new file mode 100644 index 0000000000..579b6f8ea2 --- /dev/null +++ b/src/Export/Uniques/flask.lua @@ -0,0 +1,555 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Flask: Life +[[ +Blood of the Karui +Sanctified Life Flask +League: Domination, Nemesis +Variant: Pre 1.3.0 +Variant: Pre 2.6.0 +Variant: Pre 3.15.0 +Variant: Pre 3.16.0 +Variant: Current +{variant:3}FlaskExtraLifeUnique__1[100,100] +{variant:4,5}FlaskExtraLifeUnique__1 +{variant:1}FlaskIncreasedRecoverySpeedUniqueFlask3[-30,-20] +{variant:2,3,4}FlaskIncreasedRecoverySpeedUnique___1[5,20] +{variant:5}FlaskIncreasedRecoverySpeedUniqueFlask3 +LocalFlaskLifeOnFlaskDurationEndUniqueFlask3 +{variant:1,2}Cannot gain Life during effect +]], +-- Flask: Mana +[[ +Doedre's Elixir +Greater Mana Flask +Variant: Pre 2.0.0 +Variant: Pre 3.15.0 +Variant: Current +Implicits: 0 +{variant:1}LocalFlaskChargesUsedUniqueFlask2[100,50] +{variant:2}LocalFlaskChargesUsedUniqueFlask2[150,120] +{variant:3}LocalFlaskChargesUsedUniqueFlask2 +{variant:1,2}FlaskRemovePercentageOfEnergyShieldUniqueFlask2[20,20] +{variant:3}FlaskRemovePercentageOfEnergyShieldUniqueFlask2 +{variant:1,2}FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2[10,10] +{variant:3}FlaskTakeChaosDamagePercentageOfLifeUniqueFlask2 +{variant:1,2}FlaskGainEnduranceChargeUniqueFlask2[1,1] +{variant:1,2}FlaskGainFrenzyChargeUniqueFlask2[1,1] +{variant:1,2}FlaskGainPowerChargeUniqueFlask2[1,1] +{variant:3}FlaskGainEnduranceChargeUniqueFlask2 +{variant:3}FlaskGainFrenzyChargeUniqueFlask2 +{variant:3}FlaskGainPowerChargeUniqueFlask2 +]],[[ +Lavianga's Spirit +Sanctified Mana Flask +League: Domination, Nemesis +FlaskIncreasedRecoveryAmountUniqueFlask4 +LocalFlaskNoManaCostWhileHealingUniqueFlask4 +]],[[ +Replica Lavianga's Spirit +Sanctified Mana Flask +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +FlaskIncreasedRecoveryAmountUnique__1 +LocalFlaskAttackAndCastSpeedWhileHealingUnique__1 +FlaskBuffReducedManaCostWhileHealingUnique__1 +]],[[ +Zerphi's Last Breath +Grand Mana Flask +Variant: Pre 3.2.0 +Variant: Current +League: Perandus +FlaskChargesUsedUnique__3 +{variant:1}FlaskLifeGainOnSkillUseUnique__1[800,800] +{variant:2}FlaskLifeGainOnSkillUseUnique__1 +]],[[ +Wellwater Phylactery +Colossal Mana Flask +Source: Drops from unique{Uber Incarnation of Dread} in normal{Moment of Reverence} +Requires Level 64 +LocalFlaskChargesUsedUniqueFlask36 +FlaskIncreasedRecoveryAmountUnique__2 +FlaskLessDurationUnique2 +LocalFlaskRemovePercentOfLifeOnUseUnique_7 +LocalFlaskStartEnergyShieldRechargeUnique_1 +LocalFlaskEnergyShieldRechargeNotDelayedByDamageDuringEffectUnique_1 +]], +-- Flask: Hybrid +[[ +Divination Distillate +Large Hybrid Flask +Variant: Pre 1.1.0 +Variant: Pre 2.2.0 +Variant: Pre 3.5.0 +Variant: Pre 3.15.0 +Variant: Pre 3.25.0 +Variant: Current +{variant:1,2}FlaskMaximumElementalResistancesUniqueFlask1[6,6] +{variant:3}FlaskMaximumElementalResistancesUniqueFlask1 +{variant:1}FlaskItemQuantityUniqueFlask1[20,25] +{variant:2,3,4}FlaskItemQuantityUniqueFlask1[12,18] +{variant:1,2,3,4}FlaskItemRarityUniqueFlask1[40,60] +{variant:5}FlaskItemRarityUniqueFlask1[20,30] +{variant:5}FlaskItemQuantityUniqueFlask1 +{variant:6}FlaskItemRarityUniqueFlask1 +FlaskLightRadiusUniqueFlask1 +{variant:4,5}FlaskElementalResistancesUniqueFlask1_[50,50] +{variant:6}FlaskElementalResistancesUniqueFlask1_ +]],[[ +The Writhing Jar +Hallowed Hybrid Flask +FlaskChargesUsedUnique__11 +FlaskFullInstantRecoveryUnique__1 +SummonsWormsOnUse +]], +-- Flask: Utility +[[ +Atziri's Promise +Amethyst Flask +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Apex of Sacrifice} +Variant: Pre 3.0.0 +Variant: Pre 3.15.0 +Variant: Current +LevelReq: 68 +{variant:1}AddedChaosDamageAsPercentOfElementalWhileUsingFlaskUniqueFlask5[13,15] +{variant:2}AddedChaosDamageAsPercentOfElementalWhileUsingFlaskUniqueFlask5[10,15] +{variant:3}AddedChaosDamageAsPercentOfElementalWhileUsingFlaskUniqueFlask5 +ChaosDamageLifeLeechPermyriadWhileUsingFlaskUniqueFlask5New +{variant:1}AddedChaosDamageAsPercentOfPhysicalWhileUsingFlaskUniqueFlask5[22,25] +{variant:2}AddedChaosDamageAsPercentOfPhysicalWhileUsingFlaskUniqueFlask5[15,20] +{variant:3}AddedChaosDamageAsPercentOfPhysicalWhileUsingFlaskUniqueFlask5 +]],[[ +Progenesis +Amethyst Flask +LevelReq: 60 +Source: Drops from unique{The Maven} (Uber) +FlaskChargesUsedUnique__11 +FlaskIncreasedDurationUnique__3 +LifeLossToPreventDuringFlaskEffectToLoseOverTimeUnique__1 +]],[[ +Bottled Faith +Sulphur Flask +League: Synthesis +Source: Drops from unique{Synthete Nightmare} in normal{The Cortex} +Variant: Pre 3.15.0 +Variant: Pre 3.16.0 +Variant: Current +Implicits: 1 +UtilityFlaskConsecrate +{variant:1}FlaskConsecratedGroundDurationUnique__1[30,50] +{variant:2}FlaskConsecratedGroundDurationUnique__1[20,40] +{variant:3}FlaskConsecratedGroundDurationUnique__1 +FlaskConsecratedGroundAreaOfEffectUnique__1_ +{variant:1}FlaskConsecratedGroundEffectUnique__1_ +FlaskConsecratedGroundDamageTakenUnique__1 +{variant:2,3}FlaskConsecratedGroundEffectCriticalStrikeUnique__1 +]],[[ +Coralito's Signature +Diamond Flask +Variant: Pre 3.15.0 +Variant: Current +{variant:1}FlaskTakeChaosDamagePerSecondUnique__1 +{variant:2}FlaskTakeChaosDamagePerSecondUnique__2 +FlaskChanceToPoisonUnique__1 +FlaskHitsHaveNoCritMultiUnique__1 +{variant:1}FlaskPoisonDurationUnique__1 +{variant:1}FlaskGrantsPerfectAgonyUnique__1_ +{variant:2}FlaskCriticalStrikeDoTMultiplierUnique__1 +]],[[ +Coruscating Elixir +Ruby Flask +Variant: Pre 2.6.0 +Variant: Pre 3.16.0 +Variant: Current +Implicits: 0 +{variant:2}FlaskEffectDurationUnique__4[100,100] +{variant:3}FlaskEffectDurationUnique__4 +ChaosDamageDoesNotBypassESDuringFlaskEffectUnique__1 +RemoveLifeAndAddThatMuchEnergyShieldOnFlaskUseUnique__1 +]],[[ +Cinderswallow Urn +Silver Flask +League: Betrayal +Source: Drops from unique{Catarina, Master of Undeath} +Has Alt Variant: true +Selected Variant: 16 +Selected Alt Variant: 6 +Variant: Pre 3.26 Crit Chance +Variant: Damage Taken is Leeched as Life +Variant: Item Rarity +Variant: Pre 3.26 Movement Speed/Stun Avoidance +Variant: Stun Avoidance +Variant: Life Regen +Variant: Reduced Reflected Damage Taken +Variant: Physical Damage can Ignite +Variant: Ignited enemies have Malediction +Variant: Additional Curse +Variant: Ignite Spread +Variant: Ignite Leech +Variant: Pre 3.15.0 +Variant: Pre 3.16.0 Crit Chance +Variant: Pre 3.26 +Variant: Life on Kill +Variant: Mana on Kill +Variant: ES on Kill +LevelReq: 48 +Implicits: 0 +{variant:15}FlaskExtraChargesUnique__1[90,90] +{variant:16,17,18}FlaskExtraChargesUnique__3 +{variant:13}GainChargeOnConsumingIgnitedCorpseUnique__1__ +{variant:15,16,17,18}GainChargeOnConsumingIgnitedCorpseUnique__2 +{variant:13}EnemiesIgnitedTakeIncreasedDamageUnique__1[10,10] +{variant:14,15,16,17,18}EnemiesIgnitedTakeIncreasedDamageUnique__1 +{variant:13,15,16}RecoverMaximumLifeOnKillFlaskEffectUnique__1 +{variant:13,15,17}RecoverMaximumManaOnKillFlaskEffectUnique__1 +{variant:13,15,18}RecoverMaximumEnergyShieldOnKillFlaskEffectUnique__1 +{variant:14}FlaskChargesUsedUnique__8 +{variant:14}{crafted}(60-80)% increased Critical Strike Chance during Effect +{variant:1}{crafted}(45-55)% increased Critical Strike Chance during Effect +{variant:2}{crafted}15% of Damage Taken from Hits is Leeched as Life during Effect +{variant:3}{crafted}(20-30)% increased Rarity of Items found during Effect +{variant:4}{crafted}(8-12)% increased Movement Speed during Effect +{variant:4,5}{crafted}50% Chance to avoid being Stunned during Effect +{variant:6}{crafted}Regenerate 3% of Life per second during Effect +{variant:7}{crafted}(60-80)% reduced Reflected Damage taken during Effect +{variant:8}{crafted}Your Physical Damage can Ignite during Effect +{variant:9}{crafted}Enemies Ignited by you during Effect have Malediction +{variant:10}{crafted}You can apply an additional Curse during Effect +{variant:11}{crafted}Ignites you inflict during Effect spread to other Enemies within 1.5 metres +{variant:12}{crafted}Leech 1.5% of Expected Ignite Damage as Life when you Ignite an Enemy during Effect +]],[[ +Dying Sun +Ruby Flask +Source: Drops from unique{The Shaper} +Variant: Pre 3.0.0 +Variant: Pre 3.15.0 +Variant: Pre 3.16.0 +Variant: Current +LevelReq: 68 +{variant:2}FlaskChargesUsedUnique__4 +{variant:3,4}FlaskChargesUsedUnique___2 +{variant:3}FlaskEffectDurationUnique__2[-60,-40] +{variant:4}FlaskLessDurationUnique1 +{variant:1}FlaskIncreasedAreaOfEffectDuringEffectUnique__1_[30,30] +{variant:2}FlaskIncreasedAreaOfEffectDuringEffectUnique__1_[15,25] +{variant:3,4}FlaskIncreasedAreaOfEffectDuringEffectUnique__1_ +FlaskAdditionalProjectilesDuringEffectUnique__1 +]],[[ +Forbidden Taste +Quartz Flask +Variant: Pre 1.2.3 +Variant: Pre 2.6.0 +Variant: Pre 3.15.0 +Variant: Current +{variant:1,2}FlaskChargesUsedUnique__3 +{variant:1}LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6[50,50] +{variant:2}LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6[75,75] +{variant:3,4}LocalFlaskInstantRecoverPercentOfLifeUniqueFlask6 +{variant:1}LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6[900,900] +{variant:2,3}LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6[480,480] +{variant:4}LocalFlaskChaosDamageOfLifeTakenPerMinuteWhileHealingUniqueFlask6 +]],[[ +Kiara's Determination +Silver Flask +Variant: Pre 3.0.0 +Variant: Pre 3.15.0 +Variant: Current +Implicits: 0 +FlaskImmuneToStunFreezeCursesUnique__1 +{variant:1}FlaskEffectDurationUnique__2[-50,-50] +{variant:2}FlaskEffectDurationUnique__2[-60,-60] +{variant:3}FlaskEffectDurationUnique__2 +]],[[ +Lion's Roar +Granite Flask +Variant: Pre 2.2.0 +Variant: Pre 3.0.0 +Variant: Pre 3.15.0 +Variant: Current +{variant:1}LocalFlaskChargesUsedUniqueFlask9 +AoEKnockBackOnFlaskUseUniqueFlask9_ +MonstersFleeOnFlaskUseUniqueFlask9 +KnockbackOnFlaskUseUniqueFlask9 +{variant:1}PhysicalDamageOnFlaskUseUniqueFlask9[30,30] +{variant:2}PhysicalDamageOnFlaskUseUniqueFlask9[30,35] +{variant:3}PhysicalDamageOnFlaskUseUniqueFlask9[20,25] +{variant:4}PhysicalDamageOnFlaskUseUniqueFlask9 +]],[[ +Rotgut +Quicksilver Flask +Variant: Pre 2.2.0 +Variant: Pre 2.6.0 +Variant: Pre 3.15.0 +Variant: Current +LevelReq: 40 +{variant:1,2}FlaskChanceRechargeOnCritUnique__1[15,15] +{variant:3,4}FlaskChanceRechargeOnCritUnique__1 +{variant:1}FlaskChargesUsedUnique__8[150,100] +{variant:2,3}FlaskChargesUsedUnique__8[100,50] +{variant:3}FlaskEffectDurationUnique__4[50,50] +{variant:4}FlaskEffectDurationUnique__3 +FlaskConsumesFrenzyChargesUnique__1 +{variant:1,2}LocalFlaskOnslaughtPerFrenzyChargeUnique__1[1,1] +{variant:3}LocalFlaskOnslaughtPerFrenzyChargeUnique__1[2,2] +{variant:4}LocalFlaskOnslaughtPerFrenzyChargeUnique__1 +{variant:1,2,3}(10-30)% increased Movement Speed during Effect +]],[[ +Rumi's Concoction +Granite Flask +Variant: Pre 1.3.0 +Variant: Pre 2.5.0 +Variant: Pre 3.15.0 +Variant: Current +LevelReq: 68 +{variant:1}BlockIncreasedDuringFlaskEffectUniqueFlask7[30,40] +{variant:2}BlockIncreasedDuringFlaskEffectUniqueFlask7[20,30] +{variant:3}BlockIncreasedDuringFlaskEffectUniqueFlask7[14,20] +{variant:4}BlockIncreasedDuringFlaskEffectUniqueFlask7 +{variant:1}SpellBlockIncreasedDuringFlaskEffectUniqueFlask7[15,20] +{variant:2}SpellBlockIncreasedDuringFlaskEffectUniqueFlask7[10,15] +{variant:3}SpellBlockIncreasedDuringFlaskEffectUniqueFlask7[6,10] +{variant:4}SpellBlockIncreasedDuringFlaskEffectUniqueFlask7 +]],[[ +Replica Rumi's Concoction +Granite Flask +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +LevelReq: 68 +FlaskIncreasedDurationUnique__2 +FlaskGainEnduranceChargeUnique__1_ +LocalFlaskPetrifiedUnique__1 +BlockIncreasedDuringFlaskEffectUnique__1 +SpellBlockIncreasedDuringFlaskEffectUnique__1_ +]],[[ +Sin's Rebirth +Stibnite Flask +Implicits: 1 +UtilityFlaskSmokeCloud +FlaskDispellsBurningUnique__1 +LocalFlaskUnholyMightUnique__1 +]],[[ +The Sorrow of the Divine +Sulphur Flask +Variant: Pre 3.7.0 +Variant: Current +League: Legion +Implicits: 1 +UtilityFlaskConsecrate +{variant:2}FlaskZealotsOathUnique__1 +FlaskEffectDurationUnique__1 +{variant:1}Zealot's Oath during Effect +]],[[ +Replica Sorrow of the Divine +Sulphur Flask +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +UtilityFlaskConsecrate +FlaskEldritchBatteryUnique__1 +FlaskEffectDurationUnique__1 +]],[[ +Soul Catcher +Quartz Flask +League: Incursion +Source: Drops from unique{The Vaal Omnitect} +Upgrade: Upgrades to unique{Soul Ripper} via currency{Vial of the Ghost} +Variant: Pre 3.10.0 +Variant: Pre 3.15.0 +Variant: Current +NoManaRecoveryDuringFlaskEffectUnique__1_ +{variant:2}FlaskVaalSkillCriticalStrikeChanceUnique__1[80,120] +{variant:3}FlaskVaalSkillCriticalStrikeChanceUnique__1 +{variant:1}FlaskVaalSkillDamageUnique__1[60,100] +{variant:2}FlaskVaalSkillDamageUnique__1[80,120] +{variant:3}FlaskVaalSkillDamageUnique__1 +{variant:1}FlaskVaalSkillCostUnique__1 +{variant:2}FlaskVaalSoulPreventionDurationUnique__1_[-40,-20] +{variant:3}FlaskVaalSoulPreventionDurationUnique__1_ +]],[[ +Soul Ripper +Quartz Flask +League: Incursion +Source: Upgraded from unique{Soul Catcher} via currency{Vial of the Ghost} +Variant: Pre 3.10.0 +Variant: Current +{variant:1}FlaskChargesUsedUnique__7 +{variant:1}FlaskVaalSkillDamageUnique__2 +{variant:1}FlaskVaalNoSoulPreventionUnique__1 +{variant:1}CannotGainFlaskChargesDuringEffectUnique__1 +{variant:2}FlaskExtraChargesUnique__2_ +{variant:2}FlaskLoseChargesOnNewAreaUnique__1 +{variant:2}FlaskVaalConsumeMaximumChargesUnique__1 +{variant:2}FlaskVaalGainSoulsAsChargesUnique__1_ +]],[[ +Taste of Hate +Sapphire Flask +Variant: Pre 2.2.0 +Variant: Pre 3.0.0 +Variant: Pre 3.15.0 +Variant: Pre 3.25.0 +Variant: Current +{variant:1}PhysicalTakenAsColdUniqueFlask8[30,30] +{variant:2,3}PhysicalTakenAsColdUniqueFlask8[20,20] +{variant:4}PhysicalTakenAsColdUniqueFlask8 +{variant:5}FireLightningTakenSsColdUniquFlask8 +{variant:1,2}PhysicalAddedAsColdUniqueFlask8[20,30] +{variant:3}PhysicalAddedAsColdUniqueFlask8[15,20] +{variant:4,5}PhysicalAddedAsColdUniqueFlask8 +AvoidChillUniqueFlask8 +AvoidFreezeUniqueFlask8 +]],[[ +The Overflowing Chalice +Sulphur Flask +Variant: Pre 3.15.0 +Variant: Current +Implicits: 1 +UtilityFlaskConsecrate +{variant:1}FlaskChargesAddedIncreasePercentUnique_1[100,100] +{variant:2}FlaskChargesAddedIncreasePercentUnique_1 +{variant:1}FlaskEffectDurationUnique__1[10,20] +{variant:1}IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1[100,100] +{variant:2}IncreasedFlaskChargesForOtherFlasksDuringEffectUnique_1 +CannotGainFlaskChargesDuringFlaskEffectUnique_1 +]],[[ +Vessel of Vinktar +Topaz Flask +Source: Drops from unique{Avatar of Thunder} in unique{The Vinktar Square} +Variant: Pre 2.2.0 (Penetration) +Variant: Pre 2.2.0 (Spells) +Variant: Pre 2.2.0 (Attacks) +Variant: Pre 2.2.0 (Conversion) +Variant: Pre 3.0.0 (Penetration) +Variant: Pre 3.0.0 (Spells) +Variant: Pre 3.0.0 (Attacks) +Variant: Pre 3.0.0 (Conversion) +Variant: Pre 3.14.0 (Spells) +Variant: Pre 3.14.0 (Conversion) +Variant: Pre 3.15.0 (Penetration) +Variant: Pre 3.15.0 (Spells) +Variant: Pre 3.15.0 (Attacks) +Variant: Current (Conversion) +Variant: Current (Proliferation) +Variant: Current (Penetration) +Variant: Current (Spells) +Variant: Current (Attacks) +LevelReq: 68 +{variant:5,6,7,8,9,10,11,12,13}FlaskChargesUsedUnique__6_ +{variant:14,15,16,17,18}FlaskChargesUsedUnique__5 +ShockNearbyEnemiesDuringFlaskEffect___1 +ShockSelfDuringFlaskEffect__1 +{variant:1,5,11}LightningPenetrationDuringFlaskEffect__1[10,10] +{variant:16}LightningPenetrationDuringFlaskEffect__1 +{variant:2,6,9}AddedSpellLightningDamageDuringFlaskEffect__1[15,25][70,90] +{variant:12}AddedSpellLightningDamageDuringFlaskEffect__1[25,35][110,130] +{variant:17}AddedSpellLightningDamageDuringFlaskEffect__1 +{variant:3,7,13}AddedLightningDamageDuringFlaskEffect__1[25,35][110,130] +{variant:18}AddedLightningDamageDuringFlaskEffect__1 +{variant:4,8,10}PhysicalToLightningDuringFlaskEffect__1[20,20] +{variant:14}PhysicalToLightningDuringFlaskEffect__1 +{variant:15}ShockEffectDuringFlaskEffectUnique__1__ +{variant:15}ShockProliferationDuringFlaskEffectUnique__1 +{variant:1,2,3,4}LightningLifeLeechDuringFlaskEffect__1[3000,3000] +{variant:5,6,7,8,9,10,11,12,13,14,15,16,17,18}LightningLifeLeechDuringFlaskEffect__1 +{variant:1,2,3,4}LightningManaLeechDuringFlaskEffect__1[3000,3000] +{variant:5,6,7,8}LightningManaLeechDuringFlaskEffect__1 +{variant:1,2,3,4}LeechInstantDuringFlaskEffect__1 +]],[[ +The Wise Oak +Bismuth Flask +Variant: Pre 3.0.0 +Variant: Pre 3.15.0 +Variant: Current +{variant:1,2}FlaskElementalDamageTakenOfLowestResistUnique__1[-10,-10] +{variant:3}FlaskElementalDamageTakenOfLowestResistUnique__1 +{variant:1}FlaskElementalPenetrationOfHighestResistUnique__1[20,20] +{variant:2}FlaskElementalPenetrationOfHighestResistUnique__1[10,15] +{variant:3}FlaskElementalPenetrationOfHighestResistUnique__1 +]],[[ +Oriath's End +Bismuth Flask +LevelReq: 56 +Source: Drops from unique{Sirus, Awakener of Worlds} (Uber) +FlaskChargesAddedIncreasePercentUnique__3 +EnemyExplosionRandomElementFlaskEffectUnique__1 +]],[[ +Witchfire Brew +Stibnite Flask +Variant: Pre 3.0.0 +Variant: Pre 3.15.0 +Variant: Current +LevelReq: 48 +Implicits: 1 +UtilityFlaskSmokeCloud +{variant:1,2}FlaskChargesUsedUnique__3 +{variant:3}FlaskChargesUsedUnique__4 +{variant:1}(50-70)% increased Damage Over Time during Effect +{variant:2}(25-40)% increased Damage Over Time during Effect +VulnerabilityAuraDuringFlaskEffectUnique__1 +]],[[ +Replica Witchfire Brew +Stibnite Flask +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +UtilityFlaskSmokeCloud +FlaskChargesUsedUnique__10 +VulnerabilityAuraDuringFlaskEffectUnique__1Alt +]],[[ +Wine of the Prophet +Gold Flask +Source: Drops from unique{Incarnation of Dread} in normal{Moment of Reverence} +Requires Level 27 +FlaskExtraChargesUnique__4 +FlaskChargesUsedUnique___12 +GainDivinationBuffOnFlaskUsedUniqueFlask__1 +]], +-- Flask: Ward +[[ +Elixir of the Unbroken Circle +Iron Flask +Variant: Pre 3.25.0 +Variant: Current +League: Expedition +Source: Drops from unique{Medved, Feller of Heroes} in normal{Expedition Logbook} +Implicits: 1 +UtilityFlaskWard +{variant:1}FlaskEffectDurationUnique__7[20,40] +{variant:2}FlaskEffectDurationUnique__7 +FlaskLoseAllEnduranceChargesGainLifePerLostChargeUnique1 +FlaskEnduranceChargePerSecondUnique1 +]],[[ +Olroth's Resolve +Iron Flask +Variant: Pre 3.25.0 +Variant: Current +League: Expedition +Source: Drops from unique{Olroth, Origin of the Fall} in normal{Expedition Logbook} +Implicits: 1 +UtilityFlaskWard +(50-40)% increased Charges per use +FlaskWardUnbreakableDuringEffectUnique__1 +{variant:1}FlaskMoreWardUnique1[-70,-70] +{variant:2}FlaskMoreWardUnique1 +]],[[ +Starlight Chalice +Iron Flask +League: Expedition +Source: Drops from unique{Uhtred, Covetous Traitor} in normal{Expedition Logbook} +Implicits: 1 +UtilityFlaskWard +FlaskChargesAddedIncreasePercentUnique__2 +FlaskFireColdLightningExposureOnNearbyEnemiesUnique1 +FlaskNonDamagingAilmentIncreasedEffectUnique__1 +]],[[ +Vorana's Preparation +Iron Flask +League: Expedition +Source: Drops from unique{Vorana, Last to Fall} in normal{Expedition Logbook} +Implicits: 1 +UtilityFlaskWard +FlaskChargesUsedUnique__10 +FlaskDebilitateNearbyEnemiesWhenEffectEndsUnique_1 +FlaskRemoveEffectWhenWardBreaksUnique1 +FlaskCullingStrikeUnique1 +]], +} diff --git a/src/Export/Uniques/gloves.lua b/src/Export/Uniques/gloves.lua new file mode 100644 index 0000000000..4daa7a5ec5 --- /dev/null +++ b/src/Export/Uniques/gloves.lua @@ -0,0 +1,1142 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Gloves: Armour +[[ +Admiral's Arrogance +Antique Gauntlets +League: Settlers of Kalguur +Requires Level 39, 58 Str +IncreasedAttackSpeedUnique__7 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__1 +ChanceToGainMaximumRageUnique__1 +GlobalIncreaseMeleeSkillGemLevelUnique__1 +]],[[ +Atziri's Acuity +Vaal Gauntlets +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Alluring Abyss} +Variant: Pre 3.1.0 +Variant: Pre 3.16.0 +Variant: Current +Requires Level 75, 100 Str +IntelligenceUniqueGlovesStr3 +IncreasedLifeUniqueGlovesStr3 +LocalIncreasedPhysicalDamageReductionRatingPercentUniqueGlovesStr3 +{variant:2}CriticalStrikeChanceUniqueGlovesStr3[25,35] +{variant:3}CriticalStrikeChanceUniqueGlovesStr3 +{variant:1}CriticalStrikesLeechInstantlyUniqueGlovesStr3 +{variant:2,3}VaalPactIfCritRecentlyUnique__1 +]],[[ +Replica Atziri's Acuity +Vaal Gauntlets +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 63, 100 Str +IntelligenceUniqueGlovesStr3 +CriticalStrikeChanceUniqueGlovesStr3[25,35] +LocalIncreasedPhysicalDamageReductionRatingPercentUniqueGlovesStr3 +IncreasedLifeUniqueGlovesStr3 +PerfectAgonyIfCritRecentlyUnique__1 +]],[[ +Ceaseless Feast +Spiked Gloves +Source: Drops from unique{The Infinite Hunger} +Requires Level 70, 95 Str +Implicits: 1 +MeleeDamageImplicitGloves1 +AddedPhysicalDamageUnique__11__ +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__24 +AttackCorrosionOnHitChanceUnique__1 +EnduranceChargeNoArmourUnique__1_ +FrenzyChargeNoEvasionRatingUnique__1 +]],[[ +The Celestial Brace +Goliath Gauntlets +Source: Drops from unique{The Searing Exarch} (Uber) +Requires Level: 53, 77 Str +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19 +AttackSpeedPerFortificationUnique__1 +MaximumFortificationUnique__1 +StrikeSkillsFortifyOnHitUnique__1 +]],[[ +Craiceann's Pincers +Titan Gauntlets +League: Bestiary +Source: Drops from unique{Craiceann, First of the Deep} +Requires Level 69, 98 Str +LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr2 +LifeRegenerationUnique__1 +FireResistUnique__16 +DamagePerCrabBarrierUnique__1 +ChanceToGainMaximumCrabBarriersUnique__1_ +]],[[ +Kaom's Spirit +Titan Gauntlets +Variant: Pre 3.23.0 +Variant: Pre 3.26.0 +Variant: Current +IncreasedLifeUnique__114 +FireResistUnique__1 +LifeLeechPermyriadUnique__7 +LifeRegenerationNotAppliedUnique__1 +{variant:1}RageRegenerationPerLifeRegenerationUnique__1[100,100] +{variant:2}RageRegenerationPerLifeRegenerationUnique__1[300,300] +{variant:3}RageRegenerationPerLifeRegenerationUnique__1 +]],[[ +Doryani's Fist +Vaal Gauntlets +Variant: Pre 3.0.0 +Variant: Pre 3.5.0 +Variant: Pre 3.10.0 +Variant: Current +Requires Level 63, 100 Str +{variant:2,3,4}GrantsTouchOfGodUnique__1 +{variant:1,2,3}IncreasedEnergyShieldUniqueGlovesInt6[30,30] +{variant:4}LocalIncreasedEnergyShieldUniqueGlovesStr4 +{variant:1,2,3}ChanceToShockUniqueGlovesStr4[10,10] +{variant:4}ChanceToShockUniqueGlovesStr4 +{variant:1,2}AddedLightningDamageWhileUnarmedUniqueGlovesStr4_[225,335][785,900] +{variant:3,4}AddedLightningDamageWhileUnarmedUniqueGlovesStr4_ +{variant:1,2}AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4[60,90][210,240] +{variant:3,4}AddedLightningDamagetoSpellsWhileUnarmedUniqueGlovesStr4 +{variant:1,2,3}GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4[30,30] +{variant:4}GainEnergyShieldOnKillShockedEnemyUniqueGlovesStr4 +{variant:4}ShockEffectUnique__3 +]],[[ +Hateforge +Ancient Gauntlets +League: Ultimatum +Source: Drops from unique{The Trialmaster} +Requires Level 47, 68 Str +SupportedByRageUnique__1__ +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__23 +ReducedRageCostUnique__1 +VaalAttacksUseRageInsteadOfSoulsUnique__1_ +CannotGainRageDuringSoulGainPreventionUnique__1__ +]],[[ +Empire's Grasp +Goliath Gauntlets +Requires Level 53, 76 Str +LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr5 +EnemyKnockbackDirectionReversedUniqueGlovesStr5_ +DisplaySupportedByKnockbackUniqueGlovesStr5 +]],[[ +Giantsbane +Bronze Gauntlets +Variant: Pre 3.19.0 +Variant: Current +Requires Level: 23, 36 Str +StrengthUnique__11 +{variant:1}AddedPhysicalDamageUnique__5[3,6][10,12] +{variant:2}AddedPhysicalDamageUnique__5 +{variant:2}ReducedAttackSpeedUnique__2 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12 +{variant:2}AdditionalPierceUnique__1 +KeystoneIronGripUnique__1 +]],[[ +Lochtonial Caress +Iron Gauntlets +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +IncreasedAttackSpeedUniqueGlovesStr1 +{variant:1}LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr1 +{variant:2}IncreasedLifeImplicitGlovesDemigods1 +IncreasedCastSpeedUniqueGlovesStr1 +IncreasedManaUniqueGlovesStr1 +{variant:2}PowerFrenzyOrEnduranceChargeOnKillUnique__1[10,10] +{variant:3}PowerFrenzyOrEnduranceChargeOnKillUnique__1 +Conduit +]],[[ +Meginord's Vise +Steel Gauntlets +Variant: Pre 1.1.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 35, 52 Str +{variant:4}MeleeSplashUnique__1 +{variant:1,2,3}IncreasedPhysicalDamagePercentUniqueGlovesStr2 +{variant:1,2,3}StrengthUniqueGlovesStr2[100,100] +{variant:4}StrengthUniqueGlovesStr2 +{variant:1}IncreasedAttackSpeedUniqueGlovesStr2 +{variant:1,2,3}LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr2[40,60] +{variant:4}LocalIncreasedPhysicalDamageReductionRatingUniqueGlovesStr2 +{variant:3}LifeRegenerationAt400StrengthUnique__1 +{variant:4}KnockbackDistanceUnique__1 +{variant:4}StrikeSkillKnockbackUnique__1 +]],[[ +Veruso's Battering Rams +Titan Gauntlets +Requires Level 69, 98 Str +IncreasedAttackSpeedUnique_1 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique7 +ChanceToDodgeUniqueRing37 +IncreasedStunDurationOnSelfUnique_1 +IncreasedDamagePerEnduranceChargeUnique_1 +CannotBeShockedWhileMaximumEnduranceChargesUnique_1 +]],[[ +Vixen's Entrapment +Embroidered Gloves +Requires Level 36, 54 Int +Implicits: 0 +TriggerSocketedCurseSkillsOnCurseUnique__1_ +LocalIncreasedEnergyShieldUnique__27_ +EnergyShieldLeechPerCurseUnique__1_ +AdditionalCurseOnEnemiesUnique__1 +CurseCastSpeedUnique__1 +]],[[ +Winds of Change +Ancient Gauntlets +Source: Drops in The Lord's Labyrinth +Variant: Pre 2.6.0 +Variant: Current +Requires Level 47, 68 Str +IncreasedLifeUnique__16 +ProjectileSpeedUnique__2 +{variant:1}MovementVelocityUnique__2[-10,-10] +{variant:2}MovementVelocityUnique__2 +KnockbackChanceUnique__1 +IncreasedProjectileDamageUnique___12 +]],[[ +The Caged Mammoth +Antique Gauntlets +Source: Drops from unique{Uber Incarnation of Fear} in normal{Moment of Trauma} +Requires Level 64, 58 Str +AddedPhysicalDamageUnique__13 +IncreasedAttackSpeedUnique__8 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__37 +AdditionalRageLossPerMinute +DamageTakenPer5RageCappedAt50PercentUnique_1 +MaximumRageHalvedUnique_1 +]], +-- Gloves: Evasion +[[ +Great Old One's Tentacles +Eelskin Gloves +Requires Level 38, 56 Dex +AddedPhysicalDamageUnique__8 +IncreasedLifeUniqueGlovesStrDex4 +AttackImpaleChanceUnique__1 +EnemiesKilledApplyImpaleDamageUnique__1 +]],[[ +Hrimsorrow +Goathide Gloves +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 9, 17 Dex +StrengthUniqueGlovesDex1 +{variant:1}LocalIncreasedEvasionRatingPercentUniqueGlovesDex1[50,50] +{variant:2,3}LocalIncreasedEvasionRatingPercentUniqueGlovesDex1 +{variant:1}ColdResistUniqueGlovesDex1[10,20] +{variant:2,3}ColdResistUniqueGlovesDex1 +{variant:2}AddedColdDamageToSpellsAndAttacksUnique__2 +{variant:1}ConvertPhysicalToColdUniqueGlovesDex1[25,25] +{variant:2}ConvertPhysicalToColdUniqueGlovesDex1[50,50] +{variant:3}ConvertPhysicalToColdUniqueGlovesDex1 +{variant:1,2}AttackerTakesColdDamageGlovesDex1[10,10] +{variant:3}AttackerTakesColdDamageGlovesDex1 +]],[[ +Hrimburn +Goathide Gloves +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +Requires Level 24, 17 Dex +StrengthUniqueGlovesDex1 +{variant:1}LocalIncreasedEvasionRatingPercentUniqueGlovesDex1[50,50] +{variant:2}LocalIncreasedEvasionRatingPercentUniqueGlovesDex1 +{variant:1}ColdResistUniqueGlovesDex1[10,20] +{variant:2}ColdResistUniqueGlovesDex1 +{variant:2}AddedColdDamageToSpellsAndAttacksUnique__2 +{variant:1}ConvertPhysicalToColdUnique__2[25,25] +{variant:2}ConvertPhysicalToColdUnique__2 +AttackerTakesColdDamageGlovesDex1[10,10] +ColdDamageIgnitesUnique__1 +]],[[ +Maligaro's Virtuosity +Deerskin Gloves +League: Legion +Variant: Pre 1.1.0 +Variant: Pre 3.0.0 +Variant: Pre 3.7.0 +Variant: Current +Requires Level 21, 33 Dex +DexterityUniqueGlovesDex2 +IncreasedAttackSpeedUniqueGlovesDex2 +CriticalStrikeChanceUniqueGlovesDex2 +{variant:1}CriticalMultiplierUniqueGlovesDexInt6_[40,50] +{variant:2}CriticalMultiplierUniqueGlovesDexInt6_[28,36] +{variant:3}CriticalMultiplierUniqueGlovesDexInt6_ +{variant:4}CriticalStrikeMultiplierIs250Unique__1 +LocalIncreasedEvasionRatingPercentUniqueGlovesDex2 +]],[[ +Mercenary's Lot +Slink Gloves +League: Heist +Variant: Pre 3.26.0 +Variant: Current +Requires Level 70, 95 Dex +LocalIncreasedEvasionRatingUnique__5 +AttackAndCastSpeedUnique__7 +MarkCastSpeedUnique__1 +DamageAgainstMarkedEnemiesUnique__1 +TransferMarkOnDeathUnique__1 +{variant:2}DamageTakenFromMarkedTargetUnique__1 +]],[[ +Oskarm +Nubuck Gloves +Variant: Pre 3.16.0 +Variant: Current +Requires Level 52, 50 Dex +CurseOnHitCriticalWeaknessUnique__1 +IncreasedAccuracyPercentUnique__1 +IncreasedLifeUnique__41 +ChaosResistUnique__8 +{variant:1}ChanceToDodgeSpellsUnique__3_[7,8] +{variant:2}ChanceToDodgeSpellsUnique__3_ +IncreasedCriticalStrikeChancePerAccuracyRatingUnique__1 +]],[[ +Painseeker +Shagreen Gloves +Requires Level 54, 78 Dex +GlobalAddedFireDamageUnique__4 +GlobalAddedColdDamageUnique__4 +GlobalAddedLightningDamageUnique__4 +LocalIncreasedEvasionRatingPercentUnique__16 +CriticalStrikesNotAlwaysApplyAilmentsUnique__1 +ApplyAilmentsMoreDamageUnique__1 +]],[[ +Hand of the Lords +Carnal Mitts +Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} +Requires Level 68, 195 Dex, 195 Int +TrapsApplySocketedCurseSkillsWhenTriggeredUnique_1 +GraspFromBeyondTrapUnique_1 +IncreasedLocalAttributeRequirementsUniqueGlovesDexInt1 +LocalIncreasedEvasionAndEnergyShieldUnique__39 +TrapThrowingSpeedUnique_1 +NumberOfAdditionalTrapsUnique_1 +]], +-- Gloves: Energy Shield +[[ +Allelopathy +{variant:1}Sorcerer Gloves +{variant:2}Satin Gloves +Variant: Pre 3.19.0 +Variant: Pre 3.26.0 +Variant: Current +{variant:1,2}BlightSkillUnique__1[22,22] +{variant:3}BlightSkillUnique__1 +{variant:1}DegenerationDamageUnique__2 +LocalIncreasedEnergyShieldUniqueGlovesInt5 +AreaOfEffectUnique__3 +BlightSecondarySkillEffectDurationUnique__1 +YouCannotBeHinderedUnique__1 +]],[[ +Replica Allelopathy +{variant:1}Sorcerer Gloves +{variant:2}Satin Gloves +Variant: Pre 3.19.0 +Variant: Pre 3.26.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +{variant:1,2}GrantsWintertideBrandUnique__1[22,22] +{variant:3}GrantsWintertideBrandUnique__1 +{variant:1}DegenerationDamageUnique__5 +LocalIncreasedEnergyShieldUniqueGlovesInt5 +AreaOfEffectUnique__3 +ImmuneToChillUnique__1 +WintertideBrandChillEffectUnique__1_ +]],[[ +Asenath's Gentle Touch +Silk Gloves +League: Legion +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Current +Requires Level 25, 39 Int +IntelligenceUniqueGlovesInt3 +{variant:1,2}IncreasedLifeUniqueGlovesInt3[20,30] +{variant:3}IncreasedLifeUniqueGlovesInt3 +{variant:1,2}IncreasedManaUniqueGlovesInt3[20,30] +{variant:3}IncreasedManaUniqueGlovesInt3 +{variant:1,2,3}TemporalChainsOnHitUniqueGlovesInt3 +{variant:3}CursesRemainOnDeathUnique__1_ +{variant:3}EnemiesNearCursesBlindAndExplodeUnique__1 +]],[[ +Black Zenith +Fingerless Silk Gloves +Source: Drops from unique{The Infinite Hunger} +Requires Level 70, 95 Int +Implicits: 1 +SpellDamageImplicitGloves1 +SocketedGemsMoreDamageForSpellsCastUnique__1 +SocketedGemsAddedCooldownUnique__1__ +SocketedGemsAdditionalProjectilesUnique__1__ +SocketedGemsProjectilesNovaUnique__1 +SocketedGemsLessDurationUnique__1 +LocalIncreasedEnergyShieldPercentUnique__31____ +]],[[ +Demon Stitcher +Satin Gloves +Variant: Pre 3.19.0 +Variant: Current +League: Delve +Requires Level 41, 60 Int +IncreasedCastSpeedUnique__11__ +{variant:1}LocalIncreasedEnergyShieldUnique__25[50,70] +{variant:2}LocalIncreasedEnergyShieldUnique__25 +{variant:1}IncreasedLifeUnique__72_[50,70] +{variant:2}IncreasedLifeUnique__72_ +{variant:1}SacrificeLifeToGainESUnique__1[5,5] +{variant:2}SacrificeLifeToGainESUnique__1 +]],[[ +Doedre's Tenure +Velvet Gloves +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 12, 21 Int +{variant:1}IntelligenceUnique__13[10,10] +{variant:2}IntelligenceUnique__13 +{variant:3}IntelligenceUniqueGlovesInt2 +{variant:1}SpellDamageUniqueStaff2[40,50] +{variant:2}SpellDamageUniqueStaff2 +{variant:3}SpellDamageUniqueGlovesInt2 +{variant:1}IncreasedCastSpeedUniqueGlovesInt2[-20,-20] +{variant:2}IncreasedCastSpeedUniqueGlovesInt2[-15,-15] +{variant:3}IncreasedCastSpeedUniqueGlovesInt2 +{variant:1}LocalIncreasedEnergyShieldUniqueGlovesInt2[16,16] +{variant:2}LocalIncreasedEnergyShieldUniqueGlovesInt2 +]],[[ +Doedre's Malevolence +Velvet Gloves +Source: No longer obtainable +Variant: Pre 3.11.0 +Variant: Current +Requires Level 64, 21 Int +SpellDamageUniqueStaff2 +IntelligenceUnique__13 +SpellAddedChaosDamageUnique__1 +ReducedCastSpeedUniqueHelmetInt8 +LocalIncreasedEnergyShieldUnique__18_ +{variant:1}IncreaseGlobalFlatManaCostUnique__1 +{variant:2}UnleashSealGainFrequencyUnique__1 +]],[[ +Grip of the Council +Arcanist Gloves +Requires Level 60, 95 Int +StrengthUnique__4 +IncreasedLifeUnique__11 +ColdResistUnique__12 +MinionRunSpeedUnique__1 +MinionColdResistUnique__1 +MinionPhysicalDamageAddedAsColdUnique__1_ +]],[[ +Replica Grip of the Council +Arcanist Gloves +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 60, 95 Int +StrengthUnique__1 +IncreasedLifeUnique__107 +FireResistUnique__23_ +MinionLifeUnique__4__ +MinionFireResistUnique__1 +MinionPhysicalDamageAddedAsFireUnique__1 +]],[[ +Kalisa's Grace +Samite Gloves +Requires Level 55, 68 Int +SupportedByFasterCastUnique__1 +IntelligenceUniqueGlovesInt5 +LocalIncreasedEnergyShieldUnique__14 +IncreasedLifeUniqueGlovesStrDex4 +GainCriticalStrikeChanceOnManaSpentUnique__1 +]],[[ +Replica Kalisa's Grace +Samite Gloves +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 55, 68 Int +DisplaySupportedByUnleashUnique__1 +IntelligenceUniqueGlovesInt3 +LocalIncreasedEnergyShieldUnique__14 +IncreasedLifeUniqueGlovesStrDex4 +GainAreaOfEffectPluspercentOnManaSpentUnique__1 +]],[[ +Sadima's Touch +Wool Gloves +Variant: Pre 1.1.0 +Variant: Pre 3.5.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 11 +AddedFireDamageUniqueGlovesInt1 +AddedLightningDamageUniqueGlovesInt1 +LocalIncreasedEnergyShieldUniqueGlovesInt1 +{variant:1}ItemFoundQuantityIncreaseUniqueGlovesInt1[18,24] +{variant:2}ItemFoundQuantityIncreaseUniqueGlovesInt1[12,16] +{variant:3}ItemFoundQuantityIncreaseUniqueGlovesInt1 +{variant:4}ItemFoundRarityIncreaseUniqueGlovesStrDex2[10,15] +]],[[ +Voidbringer +Conjurer Gloves +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.11.0 +Variant: Current +Requires Level 55, 79 Int +LocalIncreaseSocketedElementalGemUniqueGlovesInt6 +SpellCriticalStrikeChanceUniqueGlovesInt6 +{variant:1,2}LocalIncreasedEnergyShieldUniqueGlovesInt6[280,350] +{variant:3,4}LocalIncreasedEnergyShieldUniqueGlovesInt6 +{variant:1}ManaCostIncreaseUniqueGlovesInt6[-80,-80] +{variant:2,3}ManaCostIncreaseUniqueGlovesInt6 +{variant:4}IncreaseGlobalFlatManaCostUnique__2 +EnergyShieldGainedFromEnemyDeathUniqueGlovesInt6 +]], +-- Gloves: Armour/Evasion +[[ +Aurseize +Steelscale Gauntlets +Requires Level 36, 29 Str, 29 Dex +LocalIncreasedArmourAndEvasionUniqueGlovesStrDex2 +AllResistancesUniqueGlovesStrDex2 +ItemFoundRarityIncreaseUniqueGlovesStrDex2 +MovementVelocityUniqueGlovesStrDex2 +]],[[ +Breathstealer +Hydrascale Gauntlets +Requires Level 59, 45 Str, 45 Dex +League: Blight +Source: Drops in Blighted Maps +LocalIncreasedArmourAndEvasionUnique__19_ +IncreasedManaUnique__16 +AllResistancesUnique__16 +AttackAndCastSpeedUnique__2 +ReviveEnemiesOnKillUnique__1 +This item can be anointed by Cassia +]],[[ +Farrul's Pounce +Hydrascale Gauntlets +League: Bestiary +Source: Drops from unique{Farrul, First of the Plains} +Requires Level 59, 45 Str, 45 Dex +LocalIncreasedArmourAndEvasionUnique__8_ +IncreasedLifeUniqueGlovesStrDex4 +AccuracyAgainstBleedingEnemiesUnique__1 +AttacksBleedOnHitWithCatsStealthUnique__1_ +DamageAgainstBleedingEnemiesUnique__1 +GainCrimsonDanceWithCatsStealthUnique__1 +]],[[ +Flesh and Spirit +Ironscale Gauntlets +League: Rampage +Requires Level 15 +IncreasedAttackSpeedUniqueGlovesStrDex5 +LocalIncreasedArmourAndEvasionUniqueGlovesStrDex5 +LifeRegenerationUniqueGlovesStrDex5 +HealOnRampageUniqueGlovesStrDex5 +VaalSoulsOnRampageUniqueGlovesStrDex5 +SimulatedRampageStrInt2 +]],[[ +Gravebind +Hydrascale Gauntlets +Requires Level 59, 45 Str, 45 Dex +Implicits: 0 +LocalIncreasedArmourAndEvasionUnique__14 +ChaosResistUnique__21 +LifeGainedFromEnemyDeathUnique__3 +EnemiesKilledCountAsYoursUnique__1 +]],[[ +Haemophilia +Serpentscale Gauntlets +Requires Level 43, 34 Str, 34 Dex +StrengthUniqueGlovesStrInt2 +DegenerationDamageUnique__1 +ChanceToBleedUnique__1_ +AttackDamageAgainstBleedingUnique__1__ +BleedingEnemiesExplodeUnique__1 +ReducedBleedDurationUnique__1_ +]],[[ +Slitherpinch +Bronzescale Gauntlets +Variant: Pre 2.6.0 +Variant: Current +Requires Level 27, 22 Str, 22 Dex +DexterityUniqueGlovesStrDex1 +{variant:1}IncreasedAttackSpeedUniqueGlovesDex2 +{variant:2}IncreasedAttackSpeedUniqueGlovesStrDex1 +LocalIncreasedEvasionRatingPercentUniqueGlovesStrDex1 +LifeLeechPermyriadUniqueGlovesStrDex1 +ManaLeechPermyriadUniqueGlovesStrDex1 +]],[[ +Surgebinders +Dragonscale Gauntlets +Variant: Pre 2.6.0 +Variant: Current +Requires Level 67, 51 Str, 51 Dex +LocalIncreasedArmourAndEvasionUniqueGlovesStrDex6 +IncreasedElementalDamagePerFrenzyChargeUniqueGlovesStrDex6 +IncreasedPhysicalDamagePerEnduranceChargeUniqueGlovesStrDex6 +IncreasedSpellDamagePerPowerChargeUniqueGlovesStrDex6 +StealChargesOnHitPercentUniqueGlovesStrDex6 +{variant:1}(10-30)% reduced Endurance, Frenzy and Power Charge Duration +]],[[ +Tombfist +Steelscale Gauntlets +League: Abyss +Source: Drops from unique{Amanamu, Liege of the Lightless} or unique{Ulaman, Sovereign of the Well} +Has Alt Variant: true +Has Alt Variant Two: true +Has Alt Variant Three: true +Selected Variant: 3 +Selected Alt Variant: 5 +Selected Alt Variant Two: 6 +Selected Alt Variant Three: 9 +Variant: Pre 3.6.0 +Variant: Pre 3.21.0 +Variant: Current +Variant: One Abyssal Socket +Variant: Two Abyssal Socket +Variant: Murderous: Intimidate +Variant: Murderous: Fortify +Variant: Murderous: Rage +Variant: Searching: Maim +Variant: Searching: Blind +Variant: Searching: Onslaught +{variant:4}AbyssJewelSocketUnique__10 +{variant:5}AbyssJewelSocketUnique__11_ +{variant:1,2}IncreasedAttackSpeedUniqueGlovesStrDex1[6,10] +{variant:3}IncreasedAttackSpeedUniqueGlovesStrDex1 +{variant:1,2}MaximumLifeUnique__7 +{variant:6}IntimidateOnHitWithMeleeAbyssJewelUnique__1 +{variant:7}FortifyOnHitWithMeleeAbyssJewelUnique__1 +{variant:8}RageOnHitWithMeleeAbyssJewelUnique__1 +{variant:9}MaimOnHitWithRangedAbyssJewelUnique__1 +{variant:10}BlindOnHitWithRangedAbyssJewelUnique__1 +{variant:11}OnslaughtOnKillWithRangedAbyssJewelUnique__1 +]],[[ +Vaal Caress +Bronzescale Gauntlets +League: Ambush, Invasion +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +{variant:1,2}LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4[2,2] +{variant:3}LocalIncreaseSocketedVaalGemLevelUniqueGlovesStrDex4 +{variant:3}LocalIncreaseSocketedNonVaalGemLevelUnique__1 +LocalIncreasedArmourAndEvasionUniqueGlovesStrDex4 +{variant:1}IncreasedLifeUniqueGlovesStrDex4[30,40] +{variant:2,3}IncreasedLifeUniqueGlovesStrDex4 +{variant:1}ColdResistUniqueGlovesStrDex4[30,30] +{variant:2,3}ColdResistUniqueGlovesStrDex4 +{variant:1,2}OnslaughtOnVaalSkillUseUniqueGlovesStrDex4[5000,5000] +{variant:3}OnslaughtOnVaalSkillUseUniqueGlovesStrDex4 +]],[[ +Worldcarver +Dragonscale Gauntlets +Source: No longer obtainable +Requires Level 67, 51 Str, 51 Dex +TriggerArcaneWakeSkillUnique__1 +IncreasedAccuracyUnique__7_ +LocalIncreasedArmourAndEvasionUnique__11 +IncreasedLifeUniqueGlovesInt3 +6% increased Attack Damage for each Map Item Modifier affecting the Area +3% increased Attack Speed for each Map Item Modifier affecting the Area +]],[[ +Wyrmsign +Wyrmscale Gauntlets +Requires Level 49, 38 Str, 38 Dex +ItemActsAsConcentratedAOESupportUnique__1 +LocalIncreasedArmourAndEvasionUnique__1 +IncreasedLifeUniqueGlovesStrDex4 +ReduceManaCostPerEnduranceChargeUnique__1 +RampageWhileAtMaxEnduranceChargesUnique__1 +LoseEnduranceChargesOnRampageEndUnique___1 +]],[[ +Tanu Ahi +Wyrmscale Gauntlets +IncreasedAttackSpeedUniqueGlovesDexInt_1 +LocalIncreasedArmourAndEvasionUnique__12 +LifeLeechPermyriadUnique__8 +AdrenalineOnFillingLifeLeechUnique__1 +OnslaughtOnFillingLifeLeechUnique__1 +]], +-- Gloves: Armour/Energy Shield +[[ +Command of the Pit +Riveted Gloves +League: Delve +Source: Drops from unique{Kurgal, the Blackblooded} +Variant: Pre 3.27.0 One Abyssal Socket +Variant: Pre 3.27.0 Two Abyssal Sockets +Variant: One Abyssal Socket +Variant: Two Abyssal Sockets +Requires Level 37, 29 Str, 29 Int +{variant:1,3}AbyssJewelSocketImplicit +{variant:2,4}AbyssJewelSocketUnique__1 +IncreasedCastSpeedUniqueGlovesDemigods1 +MaximumLifeUnique__13 +{variant:1,2}MinionAccuracyWithMinionAbyssJewelUnique__1 +{variant:3,4}With a Ghastly Eye Jewel Socketed, Minions have 25% chance to gain Unholy Might on Hit with Spells +ArcaneSurgeOnHitWithSpellAbyssJewelUnique__1 +]],[[ +The Hand of Phrecia +Mesh Gloves +League: Necropolis +Requires Level 32, 26 Str, 26 Int +LocalIncreasedArmourAndEnergyShieldUnique__28 +AllResistancesUnique__10 +AuraEffectWhileLinkedUnique__1 +AurasOnlyApplyToLinkedTargetUnique__1 +]],[[ +Hand of the Fervent +Zealot Gloves +Variant: Pre 3.25.0 +Variant: Current +League: Ritual +Source: Purchase from Ritual Reward +Requires Level 43, 34 Str, 34 Int +LocalIncreasedArmourAndEnergyShieldUnique__23_ +IncreasedLifeUniqueGlovesStrDex4 +SacrificialZealOnSkillUseUnique__1_ +{variant:1}ArmourPenetrationSacrificialZealUnique__1[10,15] +{variant:2}ArmourPenetrationSacrificialZealUnique__1 +]],[[ +Hands of the High Templar +Crusader Gloves +Source: Drops from unique{Sirus, Awakener of Worlds} +CorruptUntilFiveImplicits +LocalIncreasedArmourAndEnergyShieldUnique__15 +MaximumLifeUnique__19 +FireAndLightningResistUnique__1 +]],[[ +Null and Void +Legion Gloves +League: Rampage +Requires Level 57, 44 Str, 44 Int +StrengthUniqueGlovesStrInt2 +LocalIncreasedArmourAndEnergySheildUniqueGlovesStrInt2 +IncreasedLifeUniqueGlovesStrInt2 +ManaRegenerationUniqueGlovesStrInt2 +DispelStatusAilmentsOnRampageUniqueGlovesStrInt2 +PhysicalDamageImmunityOnRampageUniqueGlovesStrInt2 +SimulatedRampageStrDex5 +]],[[ +Offering to the Serpent +Legion Gloves +League: Synthesis +Source: Drops from unique{Synthete Nightmare} in normal{The Cortex} +Requires Level 57, 44 Str, 44 Int +AllAttributesUnique__14 +LocalIncreasedArmourAndEnergyShieldUnique__13_ +MaximumLifeLeechAmountUnique__1 +AttackAndCastSpeedUnique__4 +IncreasedDamageWhileLeechingUnique__2__ +LifeLeechNotRemovedOnFullLifeUnique__1 +]],[[ +Repentance +Crusader Gloves +Variant: Pre 3.19.0 +Variant: Current +Requires Level 66, 306 Str, 306 Int +IncreasedLocalAttributeRequirementsUniqueGlovesStrInt4 +{variant:2}PercentageStrengthUnique__5 +{variant:1}(0-30)% reduced Spell Damage +{variant:1}LocalIncreasedArmourAndEnergyShieldUnique__1[120,180] +{variant:2}LocalIncreasedArmourAndEnergyShieldUnique__1 +{variant:1}LocalIncreasedEnergyShieldUniqueGlovesStr4[8,16] +IronWillUniqueGlovesStrInt4__ +]],[[ +Saqawal's Winds +Soldier Gloves +League: Bestiary +Source: Drops from unique{Saqawal, First of the Sky} +Requires Level 51, 40 Str, 40 Int +LocalIncreasedArmourAndEnergyShieldUnique__10_ +IncreasedLifeUnique__1 +ColdAndLightningResistUnique__1 +AviansMightDurationUnique__1 +AviansMightColdDamageUnique__1 +AviansMightLightningDamageUnique__1_ +]],[[ +Shackles of the Wretched +Chain Gloves +Variant: Pre 1.2.0 +Variant: Current +Requires Level 7, 17 Dex +StunRecoveryUniqueGlovesStrInt1 +SocketedCursesAreReflectedUniqueGlovesStrInt1 +ChillImmunityWhenChilledUniqueGlovesStrInt1 +FreezeImmunityWhenFrozenUniqueGlovesStrInt1 +IgniteImmunityWhenIgnitedUniqueGlovesStrInt1 +{variant:1}ShockImmunityWhenShockedUniqueGlovesStrInt1[1000,1000] +{variant:2}ShockImmunityWhenShockedUniqueGlovesStrInt1 +GrantFrenzyChargesToAlliesOnDeathUniqueGlovesStrInt1 +]],[[ +Shaper's Touch +Crusader Gloves +Shaper Item +Source: Drops from unique{The Shaper} +Variant: Pre 2.6.0 +Variant: Pre 3.10.0 +Variant: Pre 3.28.0 +Variant: Current +Requires Level 66, 51 Str, 51 Int +LocalIncreasedArmourAndEnergyShieldUnique__5 +{variant:1,4}AccuracyPerIntelligenceUnique__1[2,2][2,2] +{variant:2,3}AccuracyPerIntelligenceUnique__1[4,4][2,2] +LifePerDexterityUnique__1 +{variant:1,3,4}ManaPerStrengthUnique__1__[1,1][4,4] +{variant:2}ManaPerStrengthUnique__1__[2,2][4,4] +{variant:1,3,4}EnergyShieldPerStrengthUnique__1[1,1][10,10] +{variant:2}EnergyShieldPerStrengthUnique__1[2,2][10,10] +{variant:1}EvasionRatingPerIntelligenceUnique__1[1,1][10,10] +{variant:2,3,4}EvasionRatingPerIntelligenceUnique__1 +{variant:1}MeleePhysicalDamagePerDexterityUnique__1_[1,1][10,10] +{variant:2,3,4}MeleePhysicalDamagePerDexterityUnique__1_ +]],[[ +Southbound +Soldier Gloves +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 51, 40 Str, 40 Int +{variant:1,2}AddedColdDamageUniqueGlovesStrInt3_[30,36][44,50] +{variant:3}AddedColdDamageUniqueGlovesStrInt3_ +MaximumLifeUniqueGlovesStrInt3 +ColdResistUniqueGlovesStrInt3 +{variant:2}HeraldOfIceDamageUnique__1_ +{variant:1,2}FreezeDurationUniqueGlovesStrInt3[25,25] +{variant:3}FreezeDurationUniqueGlovesStrInt3 +CanOnlyKillFrozenEnemiesUniqueGlovesStrInt3 +]],[[ +Triad Grip +Mesh Gloves +Requires Level 32, 26 Str, 26 Int +LocalIncreasedArmourAndEnergyShieldUnique__16 +MinionPhysicalToFirePerRedSocket +MinionPhysicalToColdPerGreenSocket_ +MinionPhysicalToLightningPerBlueSocket +MinionPhysicalToChaosPerWhiteSocket +MinionChanceToFreezeShockIgnite +]],[[ +Volkuur's Guidance +Zealot Gloves +Variant: Fire +Variant: Cold +Variant: Lightning +Requires Level 43, 34 Str, 34 Int +{variant:1}AddedFireDamageUnique__1_ +{variant:2}AddedColdDamageUnique__2 +{variant:3}AddedLightningDamageUnique__1 +IncreasedLifeUniqueGlovesStrDex4 +{variant:1}FireResistUnique__12 +{variant:2}ColdResistUnique__16 +{variant:3}LightningResistUnique__10 +VolkuurLessPoisonDurationUnique__1 +{variant:1}FireDamageCanPoisonUnique__1 +{variant:2}ColdDamageCanPoisonUnique__1_ +{variant:3}LightningDamageCanPoisonUnique__1 +{variant:1}FireSkillsChanceToPoisonUnique__1 +{variant:2}ColdSkillsChanceToPoisonUnique__1 +{variant:3}LightningSkillsChanceToPoisonUnique__1_ +]],[[ +Replica Volkuur's Guidance +Zealot Gloves +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 43, 34 Str, 34 Int +GlobalAddedChaosDamageUnique__6_ +IncreasedLifeUniqueGlovesStrInt2 +ChaosResistUnique__19 +ChaosDamageCanIgniteUnique__1 +ChanceToIgniteWithChaosSkillsUnique__1 +UniqueVolkuursGuidanceIgniteDurationFinal +]],[[ +Hand of Heresy +Martyr Gloves +League: Mercenaries of Trarthus +Variant: Pre 3.28.0 +Variant: Current +Requires Level 77, 70 Str, 70 Int +LocalIncreasedArmourAndEnergyShieldUnique__30 +LifeRegenerationUnique__6 +AuraIncreasedIncreasedAreaOfEffectUnique_1 +ExcommunicateOnMeleeHitUnique +{variant:2}MeleeCritChanceAgainstExcommunicatedUnique__1 +]], +-- Gloves: Evasion/Energy Shield +[[ +Abhorrent Interrogation +Ambush Mitts +League: Harvest +Source: Drops from unique{Oshabi, Avatar of the Grove} +Requires Level 45, 35 Dex, 35 Int +LocalIncreasedEvasionAndEnergyShieldUnique__24 +AttackAndCastSpeedUnique__6 +WitherOnHitChanceUnique__1 +WitherGrantsElementalDamageTakenUnique__1__ +CannotPenetrateResistancesUnique__1 +]],[[ +Stormseeker +Ambush Mitts +IncreasedEnergyShieldUnique__12 +IncreasedManaUnique__14 +ChillEffectLeechingManaUnique__1 +ShockEffectLeechingESUnique__1 +UnaffectedByChillLeechingManaUnique__1 +UnaffectedByShockLeechingESUnique__1 +]],[[ +Algor Mortis +Carnal Mitts +League: Delirium +Source: Drops from the Simulacrum Encounter +Requires Level 50, 39 Dex, 39 Int +IncreasedEnergyShieldUnique__9 +ColdAndLightningResistUnique__2 +ChanceToSapVsEnemiesInChillingAreasUnique__1 +ChillingAreasAlsoGrantLightningDamageTakenUnique__1 +IncreasedAilmentEffectOnEnemiesUnique__1 +]],[[ +Aukuna's Will +Clasped Mitts +League: Legion +Requires Level 31, 25 Dex 25 Int +DexterityUnique__19 +IncreasedCastSpeedUnique__18_ +LocalIncreasedEvasionAndEnergyShieldUnique__21_ +ZombieIncreasedLifeUnique__1 +ZombiesNeedNoCorpsesUnique__1 +ZombiesCountAsCorpsesUnique__1 +]],[[ +Architect's Hand +{variant:1}Strapped Mitts +{variant:2}Ambush Mitts +Variant: Pre 3.14.0 +Variant: Current +League: Incursion +Source: Opening normal{Fortified Casket} in normal{Defense Research Lab} +Upgrade: Upgrades to unique{Slavedriver's Hand} via currency{Vial of Dominance} +{variant:1}Requires Level 16 +{variant:2}Requires Level 45, 35 Dex, 35 Int +DexterityUnique__16 +{variant:1}LocalIncreasedEvasionAndEnergyShieldUnique__23[100,125] +{variant:2}LocalIncreasedEvasionAndEnergyShieldUnique__23 +TrapThrowSpeedUnique__1_ +{variant:1}TrapAreaOfEffectUnique__1 +{variant:2}ChanceToThrowFourAdditionalTrapsUnique__1 +CastSpeedAppliesToTrapSpeedUnique__1 +]],[[ +Slavedriver's Hand +Ambush Mitts +League: Incursion +Source: Upgraded from unique{Architect's Hand} via currency{Vial of Dominance} +Requires Level 45, 35 Dex, 35 Int +DexterityUnique__10_ +LocalIncreasedEvasionAndEnergyShieldUnique__17 +TrapThrowSpeedUnique__1_ +TrapSkillsHaveBloodMagicUnique__1 +TrapAreaOfEffectUnique__1 +CastSpeedAppliesToTrapSpeedUnique__1 +RandomChargeOnTrapTriggerUnique__1 +]],[[ +Blasphemer's Grasp +Assassin's Mitts +Elder Item +Source: Drops from unique{The Elder} +Requires Level 58, 45 Dex, 45 Int +DexterityUniqueGlovesDexInt4 +LocalIncreasedEvasionAndEnergyShieldUnique__35 +IncreasedLifeUnique__67_ +IncreasedLifePerElderItemUnique__1 +AilmentDamageOverTimeMultiplierPerElderItemUnique__1 +AilmentEffectPerElderItemUnique__1 +RemoveAilmentOnFlaskUseIfAllItemsAreElderUnique__1_ +]],[[ +The Embalmer +Carnal Mitts +Requires Level 50, 39 Dex, 39 Int +SupportedByVileToxinsUnique__1 +AddedChaosDamageToAttacksAndSpellsUnique__2 +IncreasedLifeUniqueGlovesStrDex4 +ChaosResistUnique__28 +PoisonDurationUnique__2 +]],[[ +Facebreaker +Strapped Mitts +Variant: Pre 1.0.0 +Variant: Pre 2.2.0 +Variant: Pre 2.5.0 +Variant: Pre 3.0.0 +Variant: Pre 3.26.0 +Variant: Current +Requires Level 16, 14 Dex, 14 Int +{variant:1,2}CriticalMultiplierUniqueGlovesDexInt2[60,60] +{variant:3}CriticalMultiplierUniqueGlovesDexInt2[90,90] +{variant:4}CriticalMultiplierUniqueGlovesDexInt2[45,45] +{variant:5,6}CriticalMultiplierUniqueGlovesDexInt2 +StunThresholdReductionUniqueGlovesDexInt2 +{variant:1}FacebreakerUnarmedMoreDamage[800,1000] +{variant:2,3,4,5}FacebreakerUnarmedMoreDamage[600,800] +{variant:6}FacebreakerUnarmedMoreDamage +ExtraGore +]],[[ +Fenumus' Weave +Carnal Mitts +League: Bestiary +Source: Drops from unique{Fenumus, First of the Night} +Requires Level 50, 39 Dex, 39 Int +GrantsSpiderAspect1 +LocalIncreasedEvasionAndEnergyShieldUnique__13 +IncreasedLifeUnique__118 +AttackAndCastSpeedUnique__3 +DamageAgainstEnemiesWith3WebsUnique__1_ +ChaosDamagePerWebOnEnemyUnique__1 +]],[[ +Soul Ascension +Carnal Mitts +Variant: Pre 3.24.0 +Variant: Current +Elder Item +Source: Drops from unique{The Elder} (Uber Uber) +LocalIncreasedEvasionAndEnergyShieldUnique__34 +ChaosResistUnique__25 +{variant:1}GainSoulEaterStackOnHitUnique__1[1,1] +{variant:2}GainSoulEaterStackOnHitUnique__1 +SoulEaterStackCountUnique__1 +]],[[ +Machina Mitts +Murder Mitts +Requires Level: 67 +League: Blight +LocalIncreasedEvasionAndEnergyShieldUnique__16 +MineDamageLeechedToYouUnique__1 +LifeEnergyShieldRecoveryRateUnique__1 +LifeAndEnergyShieldRecoveryRatePerPowerChargeUnique__1 +LosePowerChargeIfNotDetonatedRecentlyUnique__1 +]],[[ +Ondar's Clasp +Wrapped Mitts +Variant: Pre 1.1.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 5 +{variant:1}AttackSpeedOnFullLifeUniqueGlovesStr1[20,20] +{variant:2,3}AttackSpeedOnFullLifeUniqueGlovesStr1 +{variant:1,2}AddedLightningDamageUniqueGlovesInt1 +{variant:3}AddedLightningDamageUniqueGlovesDexInt1 +{variant:1,2}IncreasedAccuracyUniqueGlovesDexInt1[50,80] +{variant:3}IncreasedAccuracyUniqueGlovesDexInt1 +{variant:1}MovementVelocityOnLowLifeUniqueGlovesDexInt1[10,15] +{variant:2,3}MovementVelocityOnLowLifeUniqueGlovesDexInt1 +]],[[ +Malachai's Mark +Murder Mitts +Requires Level 67, 51 Dex, 51 Int +LocalIncreasedEvasionAndEnergyShieldUnique__8 +IncreasedLifeUniqueGlovesInt3 +LifeGainedFromEnemyDeathUnique__1 +EnergyShieldGainedFromEnemyDeathUnique__1 +GainThaumaturgyBuffRotationUnique__1_ +]],[[ +Shadows and Dust +Clasped Mitts +League: Rampage +Variant: Pre 2.2.0 +Variant: Pre 3.0.0 +Variant: Current +Requires Level 31, 25 Dex, 25 Int +CriticalStrikeChanceUniqueGlovesDexInt6 +{variant:1}CriticalMultiplierUniqueGlovesDexInt6_[15,30] +{variant:2}CriticalMultiplierUniqueGlovesDexInt6_[25,45] +{variant:3}CriticalMultiplierUniqueGlovesDexInt6_ +LocalIncreasedEvasionAndEnergyShieldUniqueGlovesDexInt6 +ManaLeechPermyriadUnique__1 +GroundSmokeOnRampageUniqueGlovesDexInt6 +UnholyMightOnRampageUniqueGlovesDexInt6 +SimulatedRampageDexInt6 +]],[[ +Snakebite +Assassin's Mitts +Variant: Pre 3.0.0 +Variant: Pre 3.9.0 +Variant: Current +Requires Level 58, 45 Dex, 45 Int +LocalIncreasedEvasionRatingPercentUniqueGlovesDexInt5 +IncreasedLifeUniqueGlovesDexInt5 +AttackSpeedPerFrenzyChargeUniqueGlovesDexInt5 +AccuracyRatingPerFrenzyChargeUniqueGlovesDexInt5 +FrenzyChargeDurationPerFrenzyChargeUniqueGlovesDexInt5 +{variant:1}AtMaximumFrenzyChargesPoisonUniqueGlovesDexInt5 +{variant:2,3}AtMaximumFrenzyChargesChanceToPoisonUnique_1_ +{variant:3}PoisonDotMultiplierPerFrenzyChargeUniqueGlovesDexInt5 +]],[[ +Storm's Gift +Assassin's Mitts +League: Synthesis +Requires Level 58, 45 Dex, 45 Int +DegenerationDamageUnique__2 +LocalIncreasedEvasionAndEnergyShieldUnique__19___ +LightningResistImplicitRing1 +ShockOnKillUnique__1 +ShockProliferationUnique__1 +]],[[ +Thunderfist +Murder Mitts +Variant: Pre 1.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 67, 51 Dex, 51 Int +{variant:1,2,3}DisplaySocketedGemGetsAddedLightningDamageUnique__1[18,18] +{variant:4}DisplaySocketedGemGetsAddedLightningDamageUnique__1 +{variant:1,3}AddedLightningDamageUniqueGlovesDexInt3 +{variant:2}AddedLightningDamageUniqueGlovesDexInt3[1,1][40,40] +IncreasedAttackSpeedUniqueGlovesDexInt3 +{variant:1,2,3}LocalIncreasedEnergyShieldUniqueGlovesDexInt3 +{variant:4}LocalIncreasedEvasionAndEnergyShieldUnique__10 +{variant:1,2,3}StunDurationUniqueGlovesDexInt3 +{variant:1,2,3}ShockDurationUniqueGlovesDexInt3 +{variant:4}LightningAilmentEffectUnique__1 +]],[[ +Entropic Devastation +Assassin's Mitts +Source: Drops from unique{The Shaper} (Uber) +Shaper Item +GrantsCallOfSteelSkillUnique__1_ +LocalIncreasedEvasionAndEnergyShieldUnique__18 +SpellImpaleEffectUnique__1 +SpellImpaleOnCritChanceUnique__1 +]], +-- Gloves: Ward +[[ +Medved's Challenge +Runic Gauntlets +Requires Level 69, 38 Str, 38 Dex, 38 Int +League: Expedition +IncreasedLocalAttributeRequirementsUnique__1 +LocalIncreasedWardPercentUnique__3 +AllResistancesUnique__23__ +FlaskChargesFromKillsFinalUnique__1_ +FlaskChargePerSecondUniqueEnemyUnique__1___ +]],[[ +Nightgrip +Runic Gages +Variant: Pre 3.16.0 +Variant: Pre 3.25.0 +Variant: Current +League: Expedition +Requires Level 48, 31 Str, 31 Dex, 31 Int +LocalIncreasedWardPercentUnique__1_ +ChaosResistUnique__10 +{variant:1}GlobalAddedChaosDamageWardUnique__[25,25] +{variant:2}GlobalAddedChaosDamageWardUnique__[20,20] +{variant:3}GlobalAddedChaosDamageWardUnique__ +DamageBypassesWardPercentUnique__1 +]],} diff --git a/src/Export/Uniques/helmet.lua b/src/Export/Uniques/helmet.lua new file mode 100644 index 0000000000..660ac6a6e2 --- /dev/null +++ b/src/Export/Uniques/helmet.lua @@ -0,0 +1,1664 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Helmet: Armour +[[ +Abyssus +Ezomyte Burgonet +Variant: Pre 2.2.0 +Variant: Pre 3.0.0 +Variant: Current +Requires Level 60, 138 Str +AllAttributesUniqueHelmetStr3 +AddedPhysicalDamageUniqueHelmetStr3 +{variant:1}MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3[100,150] +{variant:2}MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3[150,225] +{variant:3}MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3 +LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3 +IncreasedPhysicalDamageTakenUniqueHelmetStr3 +]],[[ +Replica Abyssus +Ezomyte Burgonet +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 60, 138 Str +AllAttributesUniqueHelmetStr3 +AddedFireDamageUnique__4 +AddedColdDamageUnique__9 +AddedLightningDamageUnique__3 +MeleeWeaponCriticalStrikeMultiplierUniqueHelmetStr3 +LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr3 +ElementalDamageTakenUnique__1 +]],[[ +The Baron +Close Helmet +Variant: Pre 3.10.0 +Variant: Current +Requires Level 26, 58 Str +LocalIncreaseSocketedMinionGemLevelUnique__4 +{variant:1}StrengthUnique__10 +{variant:1}MinionLifeUniqueRing33[20,20] +{variant:2}MinionLifeUnique__2 +MinionsGainYourStrengthUnique__1 +{variant:1}AdditionalZombiesPerXStrengthUnique__1[300,300] +{variant:2}AdditionalZombiesPerXStrengthUnique__1 +{variant:1}ZombiesLeechLifeToYouAt1000StrengthUnique__1[2000,2000] +{variant:2}ZombiesLeechLifeToYouAt1000StrengthUnique__1 +]],[[ +Ezomyte Peak +Iron Hat +Variant: Pre 3.19.0 +Variant: Current +{variant:1}IncreasedPhysicalDamagePercentUniqueHelmetStr1 +{variant:1}LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1[15,25] +{variant:2}LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1 +IncreasedLifeUniqueHelmetStr1 +{variant:2}AreaOfEffectUnique__8 +{variant:1}CannotEvade +{variant:2}KeystoneUnwaveringStanceUnique__1 +]],[[ +Ezomyte Hold +Iron Hat +Source: No longer obtainable +IncreasedPhysicalDamagePercentUniqueHelmetStr1 +LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStr1[15,25] +IncreasedLifeUniqueHelmetStr1 +CannotEvade +CannotBeStunnedUnique__1_ +]],[[ +The Formless Flame +{variant:1,2}Siege Helmet +{variant:3}Royal Burgonet +League: Breach +Source: Drops in Xoph Breach or from unique{Xoph, Dark Embers} +Upgrade: Upgrades to unique{The Formless Inferno} using currency{Blessing of Xoph} +Variant: Pre 3.16.0 +Variant: Pre 3.21.0 +Variant: Current +Requires Level 48, 101 Str +{variant:1,2}LocalIncreasedPhysicalDamageReductionRatingUnique__1 +{variant:3}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__26 +{variant:1,2}IncreasedLifeUnique__118 +{variant:3}FireResistUniqueHelmetInt7 +{variant:1,2}ReducedFireDamageTakenUnique__1[-20,-20] +{variant:3}ReducedFireDamageTakenUnique__1 +{variant:1,2,3}ArmourIncreasedByUncappedFireResistanceUnique__1 +]],[[ +The Formless Inferno +Royal Burgonet +League: Breach +Source: Upgraded from unique{The Formless Flame} using currency{Blessing of Xoph} +Variant: Pre 3.16.0 +Variant: Pre 3.21.0 +Variant: Current +Requires Level 65, 148 Str +{variant:3}SupportedByInfernalLegionUnique__1 +{variant:1,2}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__22 +{variant:1,2}IncreasedLifeUniqueHelmetDexInt2[40,50] +{variant:3}IncreasedLifeUniqueHelmetDexInt2 +FireResistUniqueHelmetInt7 +{variant:1,2}PhysicalDamageTakenAsFirePercentUnique__1 +{variant:1,2}ArmourIncreasedByUncappedFireResistanceUnique__1 +{variant:3}MinionLifeIncreasedByOvercappedFireResistanceUnique__1 +]],[[ +Echoes of Creation +Shaper Item +Royal Burgonet +Source: Drops from unique{The Shaper} (Uber) +Requires Level 65, 148 Str +SocketedWarcryCooldownCountUnique__1 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__19 +IncreasedLifeUniqueHelmetStrDex5 +TakePhysicalDamagePerWarcryExertingUnique__1 +MoreDamagePerWarcryExertingUnique__1 +]],[[ +Hrimnor's Resolve +Samnite Helmet +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Current +Requires Level 55, 114 Str +{variant:1}FireDamagePercentUniqueStrHelmet2[10,30] +{variant:2,3}FireDamagePercentUniqueStrHelmet2 +{variant:1}LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2[40,60] +{variant:2,3}LocalIncreasedPhysicalDamageReductionRatingPercentAndStunRecoveryUniqueStrHelmet2 +{variant:3}IncreasedLifeUniqueHelmetStrDex5 +ColdResistUniqueStrHelmet2 +{variant:1,2}ChanceToAvoidChilledUnique__1 +{variant:1,2}JewelImplicitChanceToAvoidFreeze[50,50] +{variant:3}AvoidFreezeAndChillIfFireSkillUsedRecentlyUnique__1 +]],[[ +Kaom's Command +Siege Helmet +League: Settlers of Kalguur +Requires Level 48, 101 Str +IncreasedLifeUnique__3 +WarcrySpeedUnique__2 +WarcryCorpseExplosionUnique__1 +WarcryAreaOfEffectUnique__1 +]],[[ +Usurper's Penance +Eternal Burgonet +League: Expedition +Requires Level 69, 138 Str +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__21 +ChanceToBleedUnique__3_ +LightRadiusUnique__6 +BleedDotMultiplierPerFrenzyChargeUnique__1_ +FasterBleedPerFrenzyChargeUnique__1 +FrenzyChargeOnCritCloseRangeUnique__1 +]],[[ +Thrillsteel +Barbute Helmet +HasOnslaughtUnique__1 +]],[[ +Blood Price +Reaver Helmet +MaximumLifeUnique__23 +LifeRegenerationUnique__4 +StunRecoveryUnique__5 +NearbyEnemyReservesLifeUnique__1 +]],[[ +Howlcrack +Ezomyte Burgonet +Source: Drops from unique{Mercenary} after winning a duel +League: Mercenaries of Trarthus +Requires Level 60, 138 Str +StrengthUnique__28 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__33 +NoCooldownWarcriesUnique +WarcryLifeCostUnique +WarcryAreaOfEffectUnique__2 +]], +[[ +Refuge in Isolation +Paladin Crown +Source: Drops from unique{Uber Incarnation of Neglect} in normal{Moment of Loneliness} +Requires Level 78, 116 Str, 116 Int +LocalIncreasedArmourUniqueHelmetStrInt_2 +AllResistancesUnique__36 +ChaosResistUnique__34 +ElementalDamageTakenAsPhysicalUnique__2 +EnemyExtraDamagerollsWithPhysicalDamageUnique_1 +]], +[[ +The Hallowed Monarch +Faithful Helmet +Source: Drops from unique{Uber Incarnation of Dread} in normal{Moment of Reverence} +Requires Level 73, 101 Str, 101 Int +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__35 +AllResistancesUnique__35 +LightRadiusUniqueSceptre2 +LinksTargetDamageableMinionsUnique_1 +LinksGrantMinionsLessDamageTakenUnique_1 +LinkedMinionsStealRareModsUnique_1 +]], +-- Helmet: Evasion +[[ +Alpha's Howl +Sinner Tricorne +Requires Level 64, 138 Dex +LocalIncreaseSocketedAuraGemLevelUniqueHelmetDex5 +LocalIncreasedEvasionRatingPercentUniqueDexHelmet2 +ColdResistDexHelmet2 +CannotBeFrozen +ChanceToAvoidFreezeAndChillUniqueDexHelmet5 +ReducedManaReservationsCostUniqueHelmetDex5 +]],[[ +Replica Alpha's Howl +Sinner Tricorne +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 64, 138 Dex +LocalIncreaseSocketedHeraldLevelUnique__2 +LocalIncreasedEvasionRatingPercentUniqueDexHelmet2 +ChaosResistUniqueHelmetStrInt2 +ChanceToAvoidPoisonUnique__1 +ManaReservationEfficiencyUniqueHelmetDex5_ +YouCannotBeHinderedUnique__1 +]],[[ +Assailum +Sinner Tricorne +Variant: Pre 3.21.0 +Variant: Current +Requires Level 64, 138 Dex +Implicits: 0 +{variant:1}GrantsHighLevelSnipeUnique__1[20,20] +{variant:2}GrantsHighLevelSnipeUnique__1 +GrantsHighLevelSnipeSupportUnique__1 +IncreasedAccuracyUnique__8 +LocalIncreasedEvasionRatingUnique__4 +{variant:2}AdditionalMaxStackSnipeUnique +ChanceToSuppressSpellsWhileChannellingUnique__1____ +]],[[ +Fairgraves' Tricorne +Tricorne +Variant: Pre 3.19.0 +Variant: Current +Requires Level 12, 27 Dex +{variant:1}AddedColdDamageUniqueDexHelmet1[6,6][12,12] +{variant:2}AddedColdDamageUniqueDexHelmet1 +LocalIncreasedEvasionPercentAndStunRecoveryUniqueDexHelmet1 +{variant:1}IncreasedManaUniqueDexHelmet1 +LightningResistUniqueDexHelmet1 +CannotBeShocked +{variant:1}StunRecoveryUniqueHelmetInt6[15,15] +{variant:2}TouchedByTormentedSpiritsUnique__1 +]],[[ +Goldrim +Leather Cap +LocalIncreasedEvasionRatingPercentUniqueHelmetDex3 +ItemFoundRarityIncreaseUniqueHelmetDex3 +AllResistancesUniqueHelmetDex3 +AttackerTakesDamageUniqueHelmetDex3 +]],[[ +Heatshiver +Leather Hood +Variant: Pre 3.0.0 +Variant: Pre 3.19.0 +Variant: Pre 3.23.0 +Variant: Current +Requires Level 20, 46 Dex +{variant:1}LocalIncreaseSocketedFireGemLevelUniqueDexHelmet2 +{variant:1}LocalIncreaseSocketedColdGemLevelUniqueDexHelmet2 +LocalIncreasedEvasionRatingPercentUniqueHelmetDex5 +ManaRegenerationUniqueDexHelmet2 +{variant:1}FireResistUniqueDexHelmet2[-20,-10] +{variant:2,3,4}FireResistUniqueDexHelmet2 +{variant:1}ColdResistDexHelmet2[-20,-10] +{variant:2,3,4}ColdResistDexHelmet2 +{variant:3,4}ColdAddedAsFireChilledEnemyUnique__1 +{variant:3}ColdAddedAsFireFrozenEnemyUnique__1[100,100] +{variant:4}ColdAddedAsFireFrozenEnemyUnique__1 +{variant:2}IncreasedColdDamageIfUsedFireSkillRecentlyUnique__1 +{variant:2}IncreasedFireDamageIfUsedColdSkillRecentlyUnique__1 +]],[[ +Replica Heatshiver +Leather Hood +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +LocalIncreasedEvasionRatingPercentUniqueDexHelmet2 +ManaRegenerationUniqueDexHelmet2 +ColdResistUniqueHelmetDex5 +LightningResistUniqueDexHelmet1 +LightningAddedAsColdShockedEnemyUnique__1 +]],[[ +Frostferno +Leather Hood +Source: No longer obtainable +Requires Level 60, 46 Dex +LocalIncreaseSocketedFireGemLevelUnique__1_ +LocalIncreaseSocketedColdGemLevelUnique__1 +ItemActsAsColdToFireSupportUnique__1 +LocalIncreasedEvasionRatingPercentUnique__11 +ManaRegenerationUniqueDexHelmet2 +FireAndColdResistUnique__2 +]],[[ +Obscurantis +Lion Pelt +Variant: Pre 3.5.0 +Variant: Current +Requires Level 70, 150 Dex +{variant:1}IncreasedAccuracyUnique__4[300,500] +{variant:2}IncreasedAccuracyUnique__4 +LocalIncreasedEvasionRatingPercentUnique__10 +IncreasedLifeUnique__23 +IncreaseProjectileAttackDamagePerAccuracyUnique__1 +]],[[ +Elevore +Wolf Pelt +ChanceToSuppressSpellsUnique__2 +IncreasedEvasionRatingPercentUnique__1_ +AvoidElementalAilmentsUnique__2 +RecoverLifeOnSuppressUnique__1 +]],[[ +Rat's Nest +Ursine Pelt +Requires Level 55, 114 Dex +IncreasedAttackSpeedUniqueHelmetDex6 +CriticalStrikeChanceUniqueHelmetDex6 +LocalIncreasedEvasionRatingPercentUniqueHelmetDex6 +ItemFoundRarityIncreaseUniqueHelmetDex6 +MovementVelocityUniqueHelmetInt6 +ActorSizeUniqueHelmetDex6 +]],[[ +Saqawal's Flock +Silken Hood +League: Bestiary +Source: Drops from unique{Saqawal, First of the Sky} +Requires Level 60, 138 Dex +GrantsAvianTornadoUnique__1__ +LocalIncreasedEvasionRatingPercentUnique__15_ +IncreasedLifeUnique__26 +LightningResistUnique__14 +MovementVelocityUnique__32 +]],[[ +Starkonja's Head +Silken Hood +Variant: Pre 2.6.0 +Variant: Current +Requires Level 60, 138 Dex +{variant:1}DexterityUniqueHelmetDex4[30,50] +{variant:2}DexterityUniqueHelmetDex4 +ReducedPhysicalDamagePercentOnLowLifeUniqueHelmetDex4 +IncreasedAttackSpeedUniqueHelmetDex4 +CriticalStrikeChanceUniqueHelmetDex4 +{variant:2}LocalIncreasedEvasionRatingPercentUnique__7 +IncreasedLifeUniqueHelmetDex4 +{variant:1}EvasionRatingPercentOnLowLifeUniqueHelmetDex4[50,50] +{variant:2}EvasionRatingPercentOnLowLifeUniqueHelmetDex4 +]], +-- Helmet: Energy Shield +[[ +Asenath's Mark +Iron Circlet +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 8, 23 Int +{variant:3}TriggerSocketedSpellOnBowAttackUnique__2 +{variant:3}SpellDamageUnique__14 +IncreasedAttackSpeedUniqueIntHelmet2 +{variant:1,2}IncreasedCastSpeedUniqueIntHelmet2 +{variant:2,3}LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueHelmetInt2 +{variant:1}LocalIncreasedEnergyShieldUniqueHelmetInt4 +ManaRegenerationUniqueIntHelmet2 +{variant:1,2}MovementVelocityUniqueIntHelmet2 +]],[[ +Asenath's Chant +Iron Circlet +Source: No longer obtainable +Variant: Pre 3.9.0 +Variant: Current +Requires Level 45, 23 Int +{variant:1}TriggerSocketedSpellOnBowAttackUnique__1_[25,25] +{variant:2}TriggerSocketedSpellOnBowAttackUnique__1_ +IncreasedAttackSpeedUniqueIntHelmet2 +IncreasedCastSpeedUniqueIntHelmet2 +LocalIncreasedEnergyShieldUnique__25 +ManaRegenerationUniqueIntHelmet2 +MovementVelocityUniqueIntHelmet2 +StunRecoveryUnique__2 +]],[[ +Cowl of the Ceraunophile +Solaris Circlet +Requires Level 59, 122 Int +League: Blight +Source: Drops in Blighted Maps +MultipleEnchantmentsAllowedUnique__1 +AllAttributesUnique__8_ +LocalIncreasedEnergyShieldPercentUnique__26 +ReducedFireResistanceUnique__1 +ReducedColdResistanceUnique__1 +LightningResistanceOverrideUnique__1_ +This item can be anointed by Cassia +]],[[ +Cowl of the Cryophile +Silken Hood +Requires Level 60, 138 Dex +League: Blight +Source: Drops in Blighted Maps +MultipleEnchantmentsAllowedUnique__1 +AllAttributesUnique__22_ +LocalIncreasedEvasionRatingPercentUnique__12 +ReducedFireResistanceUnique__1 +ColdResistanceOverrideUnique__1 +ReducedLightningResistanceUnique__1 +This item can be anointed by Cassia +]],[[ +Cowl of the Thermophile +Ezomyte Burgonet +Requires Level 60, 138 Str +League: Blight +Source: Drops in Blighted Maps +MultipleEnchantmentsAllowedUnique__1 +AllAttributesUnique__19 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__20 +FireResistanceOverrideUnique__1__ +ReducedColdResistanceUnique__1 +ReducedLightningResistanceUnique__1 +This item can be anointed by Cassia +]],[[ +Chitus' Apex +Necromancer Circlet +Requires Level 54, 112 Int +StrengthUniqueIntHelmet3 +IncreasedManaUniqueIntHelmet3 +IncreasedExperienceUniqueIntHelmet3 +AllResistancesUniqueIntHelmet3 +ElementalDamageUniqueIntHelmet3 +]],[[ +Crown of Eyes +Hubris Circlet +Variant: Pre 3.7.0 +Variant: Current +Requires Level 69, 154 Int +{variant:1}IncreasedAccuracyUniqueHelmetInt7[200,250] +{variant:2}IncreasedAccuracyUniqueHelmetInt7 +LocalIncreasedEnergyShieldUniqueHelmetInt7 +FireResistUniqueHelmetInt7 +LifeLeechPermyriadUniqueHelmetInt7 +ManaLeechPermyriadUniqueHelmetInt7 +SpellDamageModifiersApplyToAttackDamageUniqueHelmetInt7 +]],[[ +Crown of Thorns +Vine Circlet +Variant: Pre 1.2.0 +Variant: Pre 3.19.0 +Variant: Current +{variant:1}LocalIncreasedEnergyShieldPercentUniqueIntHelmet1[12,24] +{variant:2}LocalIncreasedEnergyShieldPercentUniqueIntHelmet1[60,80] +{variant:3}LocalIncreasedEnergyShieldPercentUniqueIntHelmet1 +AttackerTakesDamageUniqueIntHelmet1 +{variant:1,2}TakesDamageWhenAttackedUniqueIntHelmet1[5,5] +{variant:3}TakesDamageWhenAttackedUniqueIntHelmet1 +PainAttunement +]],[[ +Martyr's Crown +Vine Circlet +Source: No longer obtainable +Variant: Pre 3.0.0 +Variant: Current +Requires Level 52 +{variant:1}LocalIncreasedEnergyShieldPercentUniqueIntHelmet1[260,300] +{variant:2}LocalIncreasedEnergyShieldPercentUniqueIntHelmet1[170,210] +AttackerTakesDamageUniqueIntHelmet1 +TakesDamageWhenAttackedUniqueIntHelmet1[5,5] +KeystonePainAttunementUnique__1 +]],[[ +The Devouring Diadem +Necromancer Circlet +League: Betrayal +Source: Drops from unique{Catarina, Master of Undeath} +Requires Level 54, 112 Int +Variant: Strength and Quality Pre 3.16.0 +Variant: Dexterity and Quality Pre 3.16.0 +Variant: Intelligence and Quality Pre 3.16.0 +Variant: Fire and Chaos Resistances Pre 3.16.0 +Variant: Cold and Chaos Resistances Pre 3.16.0 +Variant: Lightning and Chaos Resistances Pre 3.16.0 +Variant: Strength and Dexterity Pre 3.16.0 +Variant: Dexterity and Intelligence Pre 3.16.0 +Variant: Strength and Intelligence Pre 3.16.0 +Variant: Mine Laying Speed Pre 3.16.0 +Variant: Focus Spell Trigger Pre 3.16.0 +Variant: Focus Ailment Duration Pre 3.16.0 +Variant: Avoid Elemental Damage Pre 3.16.0 +Variant: Focus Ailment Duration Pre 3.19.0 +Variant: Focus Ailment Duration Pre 3.22.0 +Variant: Fire and Chaos Resistances Pre 3.26.0 +Variant: Cold and Chaos Resistances Pre 3.26.0 +Variant: Lightning and Chaos Resistances Pre 3.26.0 +Variant: Strength and Dexterity Pre 3.26.0 +Variant: Dexterity and Intelligence Pre 3.26.0 +Variant: Strength and Intelligence Pre 3.26.0 +Variant: Mine Laying Speed Pre 3.26.0 +Variant: Focus Spell Trigger Pre 3.26.0 +Variant: Focus Ailment Duration Pre 3.26.0 +Variant: Avoid Elemental Damage Pre 3.26.0 +Variant: Additional Minions + Minion Life +Variant: +2 AoE Gems + inc AoE +Variant: +2 Proj Gems + Pierce +Variant: +2 Melee Gems + Strike Range +Variant: Life + Mana Regen +Variant: Mana + Life Regen +Variant: Inc Evasion while Focused +Variant: Physical Damage Reduction while Focused +Variant: +2 Gems +Variant: Inc Corpse Life +Variant: Attack/Cast Speed if consumed corpse +Variant: Take no Crit Damage if Recharge +Variant: Damage if consumed corpse +{variant:1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25}LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5 +{variant:1,2,3,4,5,6,7,8,9,10,11,12,13}SocketedItemsHaveReducedReservationUnique__1[40,40] +{variant:14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38}SocketedItemsHaveReducedReservationUnique__1 +TriggerFeastOfFleshSkillUnique__1_ +LocalIncreasedEnergyShieldPercentUnique__19 +StartEnergyShieldRechargeOnSkillUnique__1 +KeystoneEldritchBatteryUnique__1 +{variant:1}StrengthUniqueHelmetStrDex3[10,25] +{variant:2}DexterityUniqueHelmetDex4[10,25] +{variant:3}IntelligenceUniqueHelmetInt5[10,25] +{variant:1,2,3}{crafted}+(7-18)% to Quality +{variant:4}FireAndChaosDamageResistanceUnique__1__[8,15] +{variant:5}{crafted}+(8-15)% to Cold and Chaos Resistances +{variant:6}{crafted}+(8-15)% to Lightning and Chaos Resistances +{variant:7}HybridStrDex[6,17] +{variant:8}DexterityAndIntelligenceUnique_2[6,17] +{variant:9}HybridStrInt[6,17] +{variant:10}{crafted}(7-12)% increased Mine Laying Speed +{variant:11}{crafted}Trigger Socketed Spells when you Focus +{variant:12}{crafted}(81-140)% increased Duration of Ailments you inflict while Focused +{variant:13}{crafted}(6-9)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention +{variant:14}(161-180)% increased Duration of Ailments you inflict while Focused +{variant:15}(81-90)% increased Duration of Ailments you inflict while Focused +{variant:16}FireAndChaosDamageResistanceUnique__1__[16,20] +{variant:17}+(16-20)% to Cold and Chaos Resistances +{variant:18}+(16-20)% to Lightning and Chaos Resistances +{variant:19}HybridStrDex[31,35] +{variant:20}DexterityAndIntelligenceUnique_2[31,35] +{variant:21}HybridStrInt[31,35] +{variant:22}(14-16)% increased Mine Laying Speed +{variant:23}Trigger Socketed Spells when you Focus, with a 0.25 second Cooldown +{variant:23}FocusCooldownRecoveryUnique__1_[5,8] +{variant:24}(36-40)% increased Duration of Ailments you inflict while Focused +{variant:25}(10-12)% chance to Avoid Elemental Damage from Hits during Soul Gain Prevention +{variant:26}MaximumMinionCountUniqueWand2Updated +{variant:26}MaximumMinionCountUniqueBootsStrInt2 +{variant:26}MinionLifeUnique__2[8,10] +{variant:27}AreaOfEffectUnique_9[8,10] +{variant:27}+2 to Level of Socketed AoE Gems +{variant:28}AdditionalPierceUniqueJewel__1 +{variant:28}+2 to Level of Socketed Projectile Gems +{variant:29}IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42 +{variant:29}VillageLocalIncreaseSocketedMeleeGemLevel +{variant:30}IncreasedLifeUniqueHelmetDex5[55,60] +{variant:30}Regenerate 5.3 Mana per second +{variant:31}IncreasedManaUniqueDexHelmet1[55,60] +{variant:31}LifeRegenerationUniqueTwoHandAxe4[1998,1998] +{variant:32}(30-32)% increased Evasion Rating while Focused +{variant:33}(13-15)% additional Physical Damage Reduction while Focused +{variant:34}LocalIncreaseSocketedGemLevelUnique__6 +{variant:35}Corpses you Spawn have 20% increased Maximum Life +{variant:36}20% increased Attack and Cast Speed if you've Consumed a Corpse Recently +{variant:37}Take no Extra Damage from Critical Strikes if Energy Shield Recharge started Recently +{variant:38}20% increased Damage if you have Consumed a corpse Recently +]],[[ +Wilma's Requital +Solaris Circlet +IncreasedAccuracyUnique__10 +LocalIncreasedEnergyShieldPercentUnique__33 +CastSpeedAppliesToAttackSpeedUnique__1 +WeaponElementalDamageUnique__6 +KeystoneAncestralBondUnique__1 +]],[[ +Doedre's Scorn +Lunaris Circlet +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 39, 83 Int +{variant:1}IncreaseSocketedCurseGemLevelUniqueHelmetInt9[1,1] +{variant:2,3}IncreaseSocketedCurseGemLevelUniqueHelmetInt9 +{variant:2,3}LocalIncreasedEnergyShieldUnique__25 +IntelligenceUniqueHelmetWard1 +{variant:1,2}ElementalDamageUniqueHelmetInt9 +{variant:1,2}IncreasedDamagePerCurseUniqueHelmetInt9 +IncreasedCurseDurationUniqueHelmetInt9 +{variant:3}AddedChaosDamagePerCurseUnique__1 +]],[[ +Eber's Unification +Hubris Circlet +Requires Level 69, 154 Int +Implicits: 0 +GrantsVoidGazeUnique__1 +LocalIncreasedEnergyShieldUniqueHelmetInt7 +IncreasedManaUnique__9 +StunRecoveryUniqueHelmetInt6 +ElementalDamagePercentAddedAsChaosUnique__4 +]],[[ +Fenumus' Toxins +Necromancer Circlet +League: Bestiary +Source: Drops from unique{Fenumus, First of the Night} +Requires Level 65, 112 Int +SpellAddedChaosDamageUnique__2 +LocalIncreasedEnergyShieldPercentUnique__18 +PowerChargeOnHitWebbedEnemyUnique__1 +PoisonChancePerPowerChargeUnique__1 +PoisonDamagePerPowerChargeUnique__1 +AspectOfSpiderWebIntervalUnique__1 +]],[[ +Sandstorm Visage +Necromancer Circlet +League: Sanctum +Source: Drops from unique{Lycia, Herald of the Scourge} in normal{The Beyond} +IncreasedCastSpeedUnique__24 +LocalIncreasedEnergyShieldPercentUnique__32 +AvoidInterruptionWhileCastingUnique__1 +SpellCritChanceEqualsWeaponCritChanceUnique__1 +AttacksCannotCritUnique__1 +]],[[ +Flamesight +Solaris Circlet +Variant: Pre 3.19.0 +Variant: Current +Requires Level 59, 122 Int +LocalIncreasedEnergyShieldPercentUnique__23 +FireResistUnique__12 +ElementalDamageUnique__3 +{variant:1}AlternateFireAilmentUnique__1[25,25][1,1] +{variant:2}AlternateFireAilmentUnique__1 +{variant:1}10% increased Elemental Damage per Sextant affecting the area +]],[[ +Galesight +Solaris Circlet +Variant: Pre 3.19.0 +Variant: Current +Requires Level 59, 122 Int +LocalIncreasedEnergyShieldPercentUnique__23 +ColdResistUnique__17 +ElementalDamageUnique__3 +{variant:1}AlternateColdAilmentUnique__1[25,25][1,1] +{variant:2}AlternateColdAilmentUnique__1 +{variant:1}10% increased Elemental Damage per Sextant affecting the area +]],[[ +Hale Negator +Mind Cage +League: Delve +Source: Drops from unique{Kurgal, the Blackblooded} +Variant: One Abyssal Socket +Variant: Two Abyssal Sockets +Requires Level 65, 138 Int +{variant:1}AbyssJewelSocketUnique__10 +{variant:2}AbyssJewelSocketUnique__11_ +MaximumLifeUnique__15 +MaximumSpiritChargesPerAbyssJewelEquippedUnique__2 +GainSpiritChargeEverySecondUnique__1 +LoseSpiritChargesOnSavageHitUnique__1_ +GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2 +GainESWhenSpiritChargeExpiresOrConsumedUnique__1 +]],[[ +Indigon +Hubris Circlet +Shaper Item +Elder Item +Source: Drops from unique{The Elder} (Uber) +Variant: Pre 3.5.0 +Variant: Current +Requires Level 69, 154 Int +LocalIncreasedEnergyShieldPercentUnique__10 +MaximumManaUnique__6 +NonInstantManaRecoveryAlsoAffectsLifeUnique__1 +ManaCostPer200ManaSpentRecentlyUnique__1 +{variant:1}SpellDamagePer200ManaSpentRecentlyUnique__1__[50,60][200,200][2000,2000] +{variant:2}SpellDamagePer200ManaSpentRecentlyUnique__1__ +RecoverLifeInstantlyOnManaFlaskUnique__1 +]],[[ +Mark of the Red Covenant +Tribal Circlet +Variant: Pre 3.11.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 26, 58 Int +LocalIncreasedEnergyShieldPercentAndStunRecoveryUniqueHelmetInt2 +{variant:1}MinionRunSpeedUnique__3[10,15] +{variant:2}MinionRunSpeedUnique__3 +{variant:2}RagingSpiritDamageUnique__1_[130,150] +{variant:3}RagingSpiritDamageUnique__1_ +ReducedRagingSpiritsAllowedUnique__1 +RagingSpiritAlwaysIgniteUnique__1 +{variant:1}RagingSpiritDurationResetOnIgnitedEnemyUnique__1 +{variant:2,3}RagingSpiritFireSplashDamageUnique__1 +]],[[ +Maw of Conquest +Steel Circlet +League: Legion +Requires Level 48, 101 Int +(60-80)% increased Critical Strike Chance for Spells +LocalIncreasedEnergyShieldPercentUnique__25_ +IncreasedLifeUniqueHelmetStrDex5 +UnaffectedByPoisonUnique__1_ +DamageTakenGainedAsLifeUnique__1_ +]],[[ +Plume of Pursuit +Bone Circlet +League: Harvest +Source: Drops from unique{Janaar, the Omen} in normal{The Sacred Grove} +Requires Level 64, 73 Int +(30-20)% reduced Cast Speed +LocalIncreasedEnergyShieldPercentUnique__29 +NonCriticalStrikesLessDamageUnique__1 +SpellsAlwaysCritFinalRepeatUnique__1_ +SpellsNeverCritExceptFinalRepeatUnique__1 +]],[[ +Rime Gaze +Mind Cage +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.5.0 +Variant: Pre 3.16.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 65, 138 Int +{variant:1,2}ItemActsAsConcentratedAOESupportUniqueHelmetInt4[15,15] +{variant:3,4,5,6}ItemActsAsConcentratedAOESupportUniqueHelmetInt4 +{variant:4,5}ColdDamageOverTimeMultiplierUnique__1[16,22] +{variant:6}ColdDamageOverTimeMultiplierUnique__2 +{variant:1}ColdDamagePercentUnique__8[10,10] +{variant:2,3,4,5}ColdDamagePercentUnique__8 +{variant:1,2}LocalIncreasedEnergyShieldUniqueHelmetInt10[100,120] +{variant:3,4}LocalIncreasedEnergyShieldUniqueHelmetInt10[180,200] +{variant:5}LocalIncreasedEnergyShieldUniqueHelmetInt10[140,160] +{variant:6}LocalIncreasedEnergyShieldUniqueHelmetInt4 +IncreasedEnergyShieldDelayUniqueHelmetInt4 +{variant:1,2,3,4,5}IncreasedManaUniqueHelmetInt4[40,60] +{variant:6}IncreasedManaUniqueHelmetInt4 +]],[[ +Scold's Bridle +Mind Cage +League: Torment +Requires Level 65, 138 Int +SpellDamageUniqueHelmetInt8 +ReducedCastSpeedUniqueHelmetStrInt6 +IncreasedManaUniqueHelmetInt8 +PhysicalDamageOnSkillUseUniqueHelmetInt8 +]],[[ +Sudden Dawn +Steel Circlet +Source: Drops from unique{The Black Star} +Requires Level 48, 101 Int +LocalIncreasedEnergyShieldPercentUnique__30___ +IncreasedManaUniqueHelmetStrDex5_ +EnergyShieldRechargeOnKillUnique__1__ +LessRechargeRateSoullessEleganceUnique__1 +]],[[ +Thundersight +Solaris Circlet +Variant: Pre 3.19.0 +Variant: Current +Requires Level 59, 122 Int +LocalIncreasedEnergyShieldPercentUnique__23 +LightningResistUnique__10 +ElementalDamageUnique__3 +{variant:1}AlternateLightningAilmentUnique__1__[25,25][1,1] +{variant:2}AlternateLightningAilmentUnique__1__ +{variant:1}10% increased Elemental Damage per Sextant affecting the area +]],[[ +Wraithlord +Bone Circlet +Variant: Pre 3.19.0 +Variant: Pre 3.24.0 +Variant: Current +Requires Level: 34, 73 Int +{variant:3}AbyssJewelSocketUnique__17 +{variant:1,2}LocalIncreaseSocketedMinionGemLevelUnique__3 +LocalIncreasedEnergyShieldUniqueHelmetInt7 +{variant:3}GlobalIncreaseMinionSpellSkillGemLevelUnique__2 +{variant:2}MaximumMinionCountUnique__1__ +{variant:1}MinionLifeRegenerationUnique__1 +{variant:3}MaximumSpectrePerGhastlyEyeUnique__1 +{variant:1}SpectreLifeUnique__1___ +{variant:2,3}CannotHaveNonSpectreMinionsUnique__1 +]],[[ +Wreath of Phrecia +Iron Circlet +League: Legion +Requires Level 8 +LocalNoAttributeRequirementsUnique__1 +LightRadiusToAreaOfEffectUnique__1 +LightRadiusToDamageUnique_1 +LightRadiusUnique__7_ +DealNoChaosDamageUnique_1 +]],[[ +Ylfeban's Trickery +Hubris Circlet +League: Tempest +Variant: Pre 2.6.0 +Variant: Pre 3.20.0 +Variant: Current +Requires Level 69, 154 Int +{variant:2,3}ShockedGroundWhenHitUnique__1 +AddedLightningDamageToSpellsAndAttacksUniqueHelmetInt10 +LocalIncreasedEnergyShieldUniqueHelmetInt10 +LightningResistUniqueHelmetInt10 +{variant:1}ShockedGroundWhenHitUniqueHelmetInt10[5,5] +{variant:1}RandomCurseOnHitChanceUniqueHelmetInt10[10,10] +{variant:2}RandomCurseOnHitChanceUniqueHelmetInt10 +{variant:3}RandomCurseWhenHitChanceUnique__1 +]],[[ +The Dark Monarch +Lich's Circlet +Variant: Animated Weapons +Variant: Summoned Golems +Variant: Summoned Raging Spirits +Variant: Raised Spectres +Variant: Raised Spiders +Variant: Raised Zombies +Variant: Summoned Reapers +Variant: Sentinels of Absolution +Variant: Sentinels of Dominance +Variant: Sentinels of Purity +Variant: Summoned Holy Relics +Variant: Summoned Phantasms +Variant: Summoned Skeletons +Variant: Summoned Spectral Wolves +Variant: Living Lightning +Variant: Holy Armaments +Source: Drops from unique{Incarnation of Dread} in normal{Moment of Reverence} +Requires Level 80, 224 Int +LocalIncreasedEnergyShieldUniqueHelmetInt_1 +GlobalIncreaseMinionSpellSkillGemLevelUnique__4 +ChaosResistUniqueHelmetInt__1 +LightRadiusUnique__10 +{variant:1}DoubleMinionLimitsUnique_1[1,1] +{variant:2}DoubleMinionLimitsUnique_1[2,2] +{variant:3}DoubleMinionLimitsUnique_1[3,3] +{variant:4}DoubleMinionLimitsUnique_1[4,4] +{variant:5}DoubleMinionLimitsUnique_1[5,5] +{variant:6}DoubleMinionLimitsUnique_1[6,6] +{variant:7}DoubleMinionLimitsUnique_1[7,7] +{variant:8}DoubleMinionLimitsUnique_1[8,8] +{variant:9}DoubleMinionLimitsUnique_1[9,9] +{variant:10}DoubleMinionLimitsUnique_1[10,10] +{variant:11}DoubleMinionLimitsUnique_1[11,11] +{variant:12}DoubleMinionLimitsUnique_1[12,12] +{variant:13}DoubleMinionLimitsUnique_1[13,13] +{variant:14}DoubleMinionLimitsUnique_1[14,14] +{variant:15}DoubleMinionLimitsUnique_1[15,15] +{variant:15}DoubleMinionLimitsUnique_1[16,16] +]], +-- Helmet: Armour/Evasion +[[ +Black Sun Crest +Lacquered Helmet +Requires Level 51, 57 Str, 57 Dex +LocalIncreaseSocketedGemLevelUniqueHelmetStrDex6 +PercentageStrengthUniqueHelmetStrDex6 +PercentageDexterityUniqueHelmetStrDex6 +PercentageIntelligenceUniqueHelmetStrDex6 +LocalIncreasedPhysicalDamageReductionRatingPercentUniqueHelmetStrDex6 +LightRadiusUniqueHelmetStrDex6 +]],[[ +The Bringer of Rain +Nightmare Bascinet +Variant: Pre 1.1.0 +Variant: Pre 1.3.0 +Variant: Pre 3.5.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 67, 62 Str, 85 Dex +{variant:1,2,3,4}DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4[18,18] +{variant:5}DisplaySocketedGemGetsMeleePhysicalDamageUniqueHelmetStrDex4 +{variant:1,4}DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b[18,18] +{variant:5}DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b[30,30] +{variant:2,3}DisplaySocketedGemGetsFasterAttackUniqueHelmetStrDex4b +{variant:1,4}ItemActsAsSupportBlindUniqueHelmetStrDex4b[18,18] +{variant:5}ItemActsAsSupportBlindUniqueHelmetStrDex4 +{variant:2,3}ItemActsAsSupportBlindUniqueHelmetStrDex4b +{variant:1,2}BlockPercentUniqueHelmetStrDex4[15,15] +{variant:3,4,5}BlockPercentUniqueHelmetStrDex4 +AddedPhysicalDamageUniqueHelmetStrDex4 +LocalIncreasedArmourAndEvasionUniqueHelmetStrDex4 +{variant:1,4}IncreasedLifeUnique__106_[200,220] +{variant:5}IncreasedLifeUnique__106_[200,300] +{variant:2,3}IncreasedLifeUnique__106_ +{variant:1,2}ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4[10,10] +{variant:3,4,5}ChanceToGainEnduranceChargeOnBlockUniqueHelmetStrDex4 +DisableChestSlot +ExtraGore +]],[[ +Crest of Desire +Fluted Bascinet +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 58, 64 Str, 64 Dex +HasOneSocketUnique__2 +LocalIncreaseSocketedGemLevelUnique__9 +SocketedGemQualityUnique__1 +SocketedSkillsDoubleDamageUnique__1_ +LocalIncreasedArmourAndEvasionUnique__12 +]],[[ +Deidbell +Gilded Sallet +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 33, 38 Str, 38 Dex +StrengthUniqueHelmetStrDex3 +DexterityUniqueHelmetStrDex3 +{variant:1,2}MeleeDamageIncreaseUniqueHelmetStrDex3 +{variant:2}AddedPhysicalDamageUnique__3 +LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStrDex3 +CannotLeechOnLowLife +{variant:3}SkillsExertAttacksDoNotCountChanceUnique__1 +]],[[ +Deidbellow +Gilded Sallet +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +Requires Level 33, 38 Str, 38 Dex +StrengthUniqueIntHelmet3 +DexterityUniqueHelmetStrDex3 +MeleeDamageIncreaseUniqueHelmetStrDex3 +{variant:2}AddedPhysicalDamageUnique__3 +LocalIncreasedPhysicalDamageReductionRatingUniqueHelmetStrDex3 +CannotLeechOnLowLife +AttackCastMoveOnWarcryRecentlyUnique____1 +]],[[ +Devoto's Devotion +Nightmare Bascinet +Requires Level 67, 62 Str, 85 Dex +DexterityUniqueHelmetStrDex2 +IncreasedPhysicalDamagePercentUniqueHelmetStrDex2 +IncreasedAttackSpeedUniqueHelmetStrDex2 +LocalIncreasedArmourAndEvasionUniqueHelmetStrDex2 +ChaosResistHelmetStrDex2 +MovementVelocityUniqueHelmetStrDex2 +ItemSilverFootstepsUniqueHelmetStrDex2 +]],[[ +The Devourer of Minds +Pig-Faced Bascinet +Source: Drops from unique{The Elder} (Uber Uber) +Requires Level 63, 85 Str, 62 Dex +IntelligenceUnique__19 +LocalIncreasedArmourAndEvasionUnique__27 +GlobalIncreaseMinionSpellSkillGemLevelUnique__3 +LightRadiusUnique__9 +MinionsHaveChargesYouHaveUnique__1 +]],[[ +The Fledgling +Lacquered Helmet +League: Heist +Source: Drops from unique{Nashta, The Usurper} in normal{Contract: Heart of Glory} +Requires Level 51, 57 Str, 57 Dex +LocalIncreasedArmourAndEvasionUniqueHelmetStrDex2 +ProjectileSpeedUnique__8 +IncreasedProjectileDamageUnique___10_ +NearbyEnemiesAvoidProjectilesUnique__1 +PlayerFarShotUnique__3 +]],[[ +The Peregrine +Visored Sallet +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Current +Requires Level 23, 28 Str, 28 Dex +{variant:1}IncreasedAccuracyUniqueStrDexHelmet1[100,100] +{variant:2}IncreasedAccuracyUniqueStrDexHelmet1[300,300] +{variant:3}IncreasedAccuracyUniqueStrDexHelmet1 +LocalIncreasedArmourAndEvasionUniqueStrDexHelmet1 +ItemFoundRarityIncreaseUniqueHelmetWreath1 +LightningResistUniqueStrDexHelmet1 +{variant:1}ManaLeechPermyriadUnique__1 +{variant:2,3}ManaLeechPermyriadStrDexHelmet1 +MovementVelocityUniqueHelmetDex6 +]],[[ +Skullhead +Secutor Helm +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 36, 42 Str, 42 Dex +LocalIncreasedArmourAndEvasionUniqueHelmetStrDex5 +{variant:1,2}IncreasedLifeUniqueHelmetStrDex5 +{variant:1,2}IncreasedManaUniqueHelmetStrDex5_ +{variant:2,3}AllResistancesUnique__7 +{variant:1,2}MinionBlockChanceUniqueHelmetStrDex5 +{variant:3}MinionAttackBlockChanceUnique__2 +{variant:3}MinionSpellBlockChanceUnique__2 +{variant:1,2}MinionArmourUniqueHelmetStrDex5 +{variant:1,2}MinionLifeRegenerationUniqueHelmetStrDex5 +{variant:3}MinionLifeRecoveryOnBlockUnique__1 +]],[[ +El'Abin's Visage +Fencer Helm +League: Crucible +StrengthUnique__23 +DexterityUnique__28 +LocalIncreasedArmourAndEvasionUnique__23 +ItemFoundRarityIncreaseUnique__6 +ItemCanHaveShieldWeaponTreeUnique1 +]],[[ +The Trickster's Smile +Visored Sallet +League: Affliction +Requires Level 23, 28 Str, 28 Dex +LocalIncreasedArmourAndEvasionUnique__21 +AttackerTakesColdDamageUnique__1 +AttackerTakesFireDamageUnique__1 +AttackerTakesLightningDamageUnique__1 +EnemyElementalResistanceZeroWhenHitUnique__1 +]], +-- Helmet: Armour/Energy Shield +[[ +Ahn's Contempt +Praetor Crown +Requires Level 68, 62 Str, 91 Int +AllAttributesUnique__10_ +LocalIncreasedArmourAndEnergyShieldUnique__7 +IncreasedLifeUnique__55 +ReducedMaximumPowerChargesUnique__1 +PhysAddedAsChaosWithMaxPowerChargesUnique__1 +ReducedExtraDamageFromCritsWithNoPowerChargesUnique__1 +]],[[ +Ancient Skull +Bone Helmet +League: Ritual +Requires Level 73, 76 Str, 76 Int +Implicits: 1 +MinionDamageImplicitHelmet1 +LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt_1 +MinionLifeUnique__5_ +MinionRunSpeedUnique__6 +MinionCriticalStrikeChanceMaximumPowerChargeUnique__1 +MinionsCrazyOnCritUnique__1__ +]],[[ +The Brine Crown +Prophet Crown +Variant: Pre 3.5.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 63, 85 Str, 62 Int +{variant:1}LocalIncreasedArmourAndEnergyShieldUnique__6[100,120] +{variant:2,3}LocalIncreasedArmourAndEnergyShieldUnique__6 +{variant:1}IncreasedLifeUniqueHelmetDex4[50,70] +{variant:2,3}IncreasedLifeUniqueHelmetDex4 +{variant:3}MaximumColdResistUnique__2 +{variant:1,2}ColdResistUnique__10 +CannotBeFrozenUnique__1 +{variant:2}ColdDamageTakenUnique__1 +{variant:1}AddedArmourWhileStationaryUnique__1[800,800] +{variant:2,3}AddedArmourWhileStationaryUnique__1 +{variant:1,2}IncreasedManaRegenerationWhileStationaryUnique__1 +SpreadChilledGroundWhenHitByAttackUnique__1 +]],[[ +The Broken Crown +Prophet Crown +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Requires Level 63, 85 Str, 62 Int +SocketedGemsSupportedByCastOnDeathUniqueHelmetStrInt5 +AllAttributesUniqueHelmetStrInt5 +DamageOnLowLifeUniqueHelmetStrInt5 +LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt5 +{variant:1}LocalIncreasedEnergyShieldUniqueHelmetStrInt5_[20,30] +{variant:2}LocalIncreasedEnergyShieldUniqueHelmetStrInt5_[70,90] +{variant:3}LocalIncreasedEnergyShieldUniqueHelmetStrInt5_ +ManaRegenerationUniqueHelmetStrInt5 +ChaosResistUniqueHelmetStrInt5 +]],[[ +Craiceann's Chitin +Magistrate Crown +Variant: Pre 3.4.0 +Variant: Current +League: Bestiary +Source: Drops from unique{Craiceann, First of the Deep} +Requires Level 58, 64 Str, 64 Int +{variant:1}SpellBlockPercentageUnique__1[7,9] +{variant:2}SpellBlockPercentageUnique__1[4,6] +LocalIncreasedArmourAndEnergyShieldUnique__10_ +MaximumLifeUnique__12 +CannotLoseCrabBarriersIfLostRecentlyUnique__1 +AdditionalBlockChance5CrabBarriersUnique__1 +AdditionalBlockChance10CrabBarriersUnique__1 +]],[[ +Crown of the Inward Eye +Prophet Crown +Source: Drops from unique{Sirus, Awakener of Worlds} +Requires Level 63, 85 Str, 62 Int +LocalIncreasedArmourAndEnergyShieldUnique__19 +MaximumLifeManaEnergyShieldUnique__1 +TransfigurationOfSoulUnique__1_ +TransfigurationOfBodyUnique__1 +TransfigurationOfMindUnique__1 +]],[[ +Crown of the Tyrant +Magistrate Crown +League: Delve +Source: Drops from unique{Aul, the Crystal King} +Variant: Pre 3.11.0 +Variant: Current +Requires Level 58, 64 Str, 64 Int +HasOneSocketUnique__1 +{variant:1}IncreasedLifeUnique__88[50,100] +{variant:2}IncreasedLifeUnique__88 +NearbyEnemiesHaveReducedAllResistancesUnique__1 +AuraAddedFireDamagePerRedSocketUnique__1 +AuraAddedColdDamagePerGreenSocketUnique__1 +AuraAddedLightningDamagePerBlueSocketUnique__1 +AuraAddedChaosDamagePerWhiteSocketUnique__1 +]],[[ +Geofri's Crest +Great Crown +Variant: Pre 3.17.0 +Variant: Pre 3.19.0 +Variant: Current +{variant:1,2}LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2 +{variant:2}LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt2[60,80] +{variant:3}LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt2 +{variant:1,2}FireResistUniqueHelmetStrInt2[15,20] +{variant:3}FireResistUniqueHelmetStrInt2 +{variant:1,2}ColdResistUniqueHelmetStrInt2[15,20] +{variant:3}ColdResistUniqueHelmetStrInt2 +{variant:1,2}LightningResistUniqueHelmetStrInt2[15,20] +{variant:3}LightningResistUniqueHelmetStrInt2 +ChaosResistUniqueHelmetStrInt2 +{variant:2,3}AdditionalHolyRelicUnique__1 +{variant:2}HolyRelicCooldownRecoveryUnique__1 +]],[[ +Geofri's Legacy +Great Crown +Source: No longer obtainable +LocalIncreaseSocketedGemLevelUniqueHelmetStrInt2 +(60-80)% increased Armour and Energy Shield +FireResistUniqueHelmetStrInt2[15,20] +ColdResistUniqueHelmetStrInt2[15,20] +LightningResistUniqueHelmetStrInt2[15,20] +ChaosResistUniqueHelmetStrInt2 +AdditionalHolyRelicUnique__1 +HolyRelicCooldownRecoveryUnique__1 +]],[[ +Honourhome +Soldier Helmet +League: Legion +Variant: Pre 3.7.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 12, 16 Str, 16 Int +{variant:2}LocalIncreaseSocketedGemLevelUnique__10 +{variant:3}LocalIncreaseSocketedGemLevelUnique__11_ +{variant:1,2}AddedLightningDamageUniqueHelmetStrInt1[1,1][13,13] +{variant:3}AddedLightningDamageUniqueHelmetStrInt1 +{variant:1}LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt1[40,50] +{variant:2,3}LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt1 +{variant:2,3}ItemFoundRarityIncreaseUnique__4_ +{variant:1}AllResistancesUniqueHelmetStrInt1 +{variant:1}ElementalResistsOnLowLifeUniqueHelmetStrInt1 +{variant:2,3}ManaCostReductionUnique__2_ +{variant:1}ReducedManaCostOnLowLifeUniqueHelmetStrInt1 +]],[[ +Kitava's Thirst +Zealot Helmet +Variant: Pre 3.11.0 +Variant: Current +Requires Level 44, 50 Str, 50 Int +{variant:1}ChanceToCastOnManaSpentUnique__1[100,100][30,30] +{variant:2}ChanceToCastOnManaSpentUnique__1 +ReducedCastSpeedUniqueHelmetInt8 +LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt6 +IncreasedManaUnique__16 +]],[[ +Lightpoacher +Great Crown +League: Abyss +Source: Drops from unique{Amanamu, Liege of the Lightless} or unique{Ulaman, Sovereign of the Well} +Variant: One Abyssal Socket (Pre 3.21.0) +Variant: Two Abyssal Sockets (Pre 3.21.0) +Variant: One Abyssal Socket (Current) +Variant: Two Abyssal Sockets (Current) +{variant:1,3}AbyssJewelSocketImplicit +{variant:2,4}AbyssJewelSocketUnique__1 +LocalDisplayGrantLevelXSpiritBurstUnique__1 +AllResistancesUnique__14 +MaximumSpiritChargesPerAbyssJewelEquippedUnique__1 +{variant:1,2}GainSpiritChargeOnKillChanceUnique__1[15,20] +{variant:3,4}GainSpiritChargeOnKillChanceUnique__1 +{variant:3,4}PhysAddedAsEachElementPerSpiritChargeUnique__1 +{variant:1,2}GainLifeWhenSpiritChargeExpiresOrConsumedUnique__2[4,5] +]],[[ +Malachai's Vision +Praetor Crown +Source: Use currency{Vaal Orb} on unique{Voll's Vision} +Variant: Pre 3.0.0 +Variant: Pre 3.11.0 +Variant: Pre 3.19.0 +Variant: Current +AddedChaosDamageToAttacksAndSpellsUnique__1 +{variant:1}LocalIncreasedEnergyShieldUnique__30__[200,250] +{variant:2,3,4}LocalIncreasedEnergyShieldUnique__30__ +ColdResistUnique__7 +LightningResistUnique__6 +{variant:1,2}EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1[6000,6000] +{variant:3}EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1[15000,15000] +{variant:4}EnergyShieldRegenerationPerMinuteWhileAllCorruptedItemsUnique__1 +BaseManaRegenerationWhileAllCorruptedItemsUnique__1 +Corrupted +]],[[ +Mask of the Spirit Drinker +{variant:1}Crusader Helmet +{variant:2}Magistrate Crown +Variant: Pre 3.14.0 +Variant: Current +League: Incursion +Source: Opening normal{Pools Coffer} in normal{Sanctum of Immortality} +Upgrade: Upgrades to unique{Mask of the Stitched Demon} via currency{Vial of Summoning} +{variant:1}LocalIncreasedArmourAndEnergyShieldUnique__12[60,80] +{variant:2}LocalIncreasedArmourAndEnergyShieldUnique__12 +{variant:2}LocalIncreasedEnergyShieldUnique__31 +{variant:1}IncreasedLifeUniqueHelmetDex4[30,50] +{variant:2}IncreasedLifeUniqueHelmetDex4 +CannotGainEnergyShieldUnique__1 +LifeRegenerationWith500EnergyShieldUnique__1 +LifeRegenerationWith1000EnergyShieldUnique__1 +LifeRegenerationWith1500EnergyShieldUnique__1 +EnergyShieldStartsAtZero +]],[[ +Mask of the Stitched Demon +Magistrate Crown +League: Incursion +Source: Upgraded from unique{Mask of the Spirit Drinker} via currency{Vial of Summoning} +Requires Level 58, 64 Str, 64 Int +IntelligenceUniqueHelmetInt6 +LocalIncreasedEnergyShieldUnique__24_ +NoMaximumLifePerStrengthUnique__1 +NoMaximumManaPerIntelligenceUnique__1 +IncreasedLifePerIntelligenceUnique__1 +CannotGainEnergyShieldUnique__1 +LifeRegenerationPer500EnergyShieldUnique__1 +EnergyShieldStartsAtZero +]],[[ +Mask of the Tribunal +Magistrate Crown +League: Synthesis +Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} +Variant: Pre 3.16.0 +Variant: Current +Requires Level 58, 64 Str, 64 Int +AllAttributesUnique__15 +LocalIncreasedArmourAndEnergyShieldUniqueHelmetStrInt_1 +{variant:2}BlockPer100StrengthAuraUnique__1___ +{variant:1}DefencesPer100StrengthAuraUnique__1 +CriticalMultiplierPer100DexterityAuraUnique__1 +CastSpeedPer100IntelligenceAuraUnique__1 +ManaReservationEfficiencyPerAttributeUnique__1 +]],[[ +Maw of Mischief +Bone Helmet +League: Heist +Source: Obtained from divination card normal{Cursed Words} +Requires Level 73, 76 Str, 76 Int +Implicits: 1 +MinionDamageImplicitHelmet1 +GrantsDeathWishUnique__1__ +IncreasedLifeUnique__109_ +MinionSkillManaCostUnique__2 +MinionLargerAggroRadiusUnique__1 +]],[[ +Memory Vault +Praetor Crown +Requires Level 68, 62 Str, 91 Int +LocalIncreasedEnergyShieldUnique__15 +IncreasedManaUnique__26 +ManaRegenerationUnique__6 +FireResistUniqueDexHelmet2 +IncreasedManaReservationsCostUnique__2 +GainArmourEqualToManaReservedUnique__1 +]],[[ +Mindspiral +Aventail Helmet +Variant: Pre 3.0.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 37, 42 Str, 42 Int +{variant:1,2}ColdDamagePercentUniqueHelmetStrInt3 +{variant:1,2}LightningDamagePercentUniqueHelmetStrInt3 +{variant:1}IncreasedManaUniqueHelmetStrInt3[100,150] +{variant:2,3}IncreasedManaUniqueHelmetStrInt3 +{variant:2}GainManaAsExtraEnergyShieldUnique__1[5,10] +{variant:3}GainManaAsExtraEnergyShieldUnique__1 +EnemiesCannotLeechMana +{variant:1,2}PercentDamageGoesToManaUniqueHelmetStrInt3[5,10] +{variant:3}PercentDamageGoesToManaUniqueHelmetStrInt3 +CannotLeechManaUnique__1_ +]],[[ +Ravenous Passion +Zealot Helmet +Variant: Pre 3.25.0 +Variant: Current +Source: Drops from unique{The Eater of Worlds} (Uber) +Requires Level: 44, 50 Str, 50 Int +StrengthUnique__18 +LocalIncreasedArmourAndEnergyShieldUnique__16 +{variant:1}GainRageOnManaSpentUnique__1[10,15][200,200] +{variant:2}GainRageOnManaSpentUnique__1 +RageCasterStatsUnique__1 +]],[[ +Speaker's Wreath +Prophet Crown +Requires Level 63, 85 Str, 62 Int +DexterityUnique__20__ +SkillEffectDurationUnique__1 +MinionAttackSpeedPerXDexUnique__1 +MinionMovementSpeedPerXDexUnique__1 +MinionHitsOnlyKillIgnitedEnemiesUnique__1 +]],[[ +Veil of the Night +Great Helmet +Requires Level 22, 27 Str, 27 Int +StunRecoveryUniqueHelmetStrInt4 +LightRadiusUniqueHelmetStrInt4 +LightningDamageOnBlockUniqueHelmetStrInt4 +AllDefencesUniqueHelmetStrInt4_ +SetElementalResistancesUniqueHelmetStrInt4 +]],[[ +Replica Veil of the Night +Great Helmet +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 22, 27 Str, 27 Int +StunRecoveryUniqueHelmetStrInt4 +LightRadiusUniqueHelmetStrInt4 +LightningDamageOnBlockUniqueHelmetStrInt4 +DefencesAreZeroUnique__1_ +IncreasedElementalResistancesUnique__1 +]],[[ +Voll's Vision +Praetor Crown +Variant: Pre 3.19.0 +Variant: Current +IncreasedPhysicalDamageReductionRatingUnique__2 +FireResistUnique__7_ +ChaosResistUnique__2 +LightRadiusUnique__8 +IncreasedLifeWhileNoCorruptedItemsUnique__1 +{variant:1}LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1[6000,6000] +{variant:2}LifeRegenerationPerMinuteWhileNoCorruptedItemsUnique__1 +]], +-- Helmet: Evasion/Energy Shield +[[ +Akoya's Gaze +Regicide Mask +Requires Level 52, 58 Dex, 58 Int +StrengthRequirementsUnique__4 +WarcrySpeedUnique__1 +LifeLeechInstantExertedAttacksUnique__1 +NonExertedAttacksNoDamageUnique__1 +]],[[ +Crown of the Pale King +Regicide Mask +League: Tempest +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 52, 58 Dex, 58 Int +LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt6 +{variant:2,3}IncreasedLifeUnique__124 +LifeLeechPermyriadUniqueHelmetDexInt6 +AttackerTakesDamageUniqueHelmetDexInt6 +{variant:1,2}DamageYouReflectGainedAsLifeUniqueHelmetDexInt6[30,30] +{variant:3}DamageYouReflectGainedAsLifeUniqueHelmetDexInt6 +]],[[ +Curtain Call +Plague Mask +Requires Level 20 +IncreasedLifeUnique__87 +RemoteMineLayingSpeedUnique__1 +RemoteMineArmingSpeedUnique__1 +PlaceAdditionalMineWith600DexterityUnique__1 +PlaceAdditionalMineWith600IntelligenceUnique__1 +]],[[ +Eye of Malice +Callous Mask +Requires Level 45, 51 Dex, 51 Int +LocalIncreasedEvasionAndEnergyShieldUnique__25 +FireResistUnique__23_ +ColdResistUnique__31_ +ColdExposureOnHitUnique__1 +FireExposureOnHitUnique__1 +NearbyEnemiesIncreasedFireColdResistUnique__1_ +]],[[ +Farrul's Bite +Harlequin Mask +League: Bestiary +Source: Drops from unique{Farrul, First of the Plains} +Requires Level 57, 64 Dex, 64 Int +GrantsCatAspect1 +LocalIncreasedEvasionAndEnergyShieldUnique__12 +ColdResistUnique__25 +AdditionalCriticalStrikeChanceWithCatAspectUnique__1 +CritsBlindChanceWithCatsStealthUnique__1 +DamageAgainstBlindedEnemiesUnique__1 +]],[[ +Fractal Thoughts +Vaal Mask +League: Legion +Requires Level: 62, 79 Dex, 72 Int +LocalIncreasedEvasionAndEnergyShieldUnique__22 +CriticalStrikeMultiplierIfDexterityHigherThanIntelligenceUnique__1 +PercentDexterityIfStrengthHigherThanIntelligenceUnique__1 +ElementalDamagePerDexterityUnique__1 +LifePer10IntelligenceUnique__1 +]],[[ +Glimpse of Chaos +Vaal Mask +League: Ultimatum +Source: Drops from unique{The Trialmaster} +Requires Level 62, 79 Dex, 72 Int +Implicits: 1 +Variant: Area of Effect +Variant: Blind +Variant: Mana Cost + Reservation +Variant: Curse Effect +Variant: Skill Effect Duration +Variant: Crushed +Variant: +2 Gems +Variant: Minimum Charges +Variant: Cooldown Recovery +Variant: Aura Effect +Variant: Additional Projectile +Variant: Malediction +Variant: Quantity +CorruptUntilFiveImplicits +{variant:7}LocalIncreaseSocketedGemLevelUnique__1 +{variant:3}UniqueSpecialCorruptionSocketedGemsManaMultiplier_ +LifeAndReducedFireResistanceUnique__1 +ManaAndReducedColdResistanceUnique__1 +EnergyShieldAndReducedLightningResistanceUnique__1 +{variant:13}UniqueSpecialCorruptionItemQuantity_ +{variant:11}UniqueSpecialCorruptionAdditionalProjectile +{variant:1}UniqueSpecialCorruptionAreaOfEffect_ +{variant:5}UniqueSpecialCorruptionSkillEffectDuration +{variant:4}CurseEffectivenessUnique__4 +{variant:2}NearbyEnemiesAreBlindedUnique__1 +{variant:6}UniqueSpecialCorruptionNearbyEnemiesCrushed +{variant:12}UniqueSpecialCorruptionNearbyEnemiesMalediction +{variant:10}AuraEffectGlobalUnique__1 +{variant:9}UniqueSpecialCorruptionCooldownRecoverySpeed__ +{variant:8}UniqueSpecialCorruptionAllMinCharges +ChaosResistanceIsZeroUnique__1 +Corrupted +]],[[ +Gorgon's Gaze +Regicide Mask +Requires Level 52, 58 Dex, 58 Int +Implicits: 0 +Grants Level 20 Summon Petrification Statue Skill +LocalIncreasedEnergyShieldPercentUnique__15_ +IncreasedLifeUnique__121 +AttackAndCastSpeedUnique__2 +AdditionalPhysicalDamageReductionWhileMovingUnique__1 +ReducedElementalDamageTakenWhileStationaryUnique__1_ +]],[[ +The Gull +Raven Mask +League: Domination +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Requires Level 38, 44 Dex, 44 Int +{variant:2,3}TriggeredSummonLesserShrineUnique__1 +LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt3 +{variant:2}LocalIncreasedEnergyShieldUnique__11[40,65] +{variant:3}LocalIncreasedEnergyShieldUnique__11 +{variant:2,3}IncreasedLifeUnique__120 +{variant:1}IncreasedManaUniqueHelmetDexInt3 +{variant:2,3}ColdResistUnique__16 +{variant:1}LifeGainedFromEnemyDeathUniqueHelmetDexInt3 +{variant:1}EnergyShieldGainedFromEnemyDeathUniqueHelmetDexInt3 +ShrineBuffEffectUniqueHelmetDexInt3 +ShrineEffectDurationUniqueHelmetDexInt3 +]],[[ +Heretic's Veil +Deicide Mask +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.20.0 +Variant: Current +Requires Level 67, 73 Dex, 88 Int +{variant:1,4}IncreaseSocketedCurseGemLevelUniqueHelmetInt9[2,2] +{variant:2,3}IncreaseSocketedCurseGemLevelUniqueHelmetInt9[1,1] +SocketedGemsSupportedByBlasphemyUnique__1 +ReducedReservationForSocketedCurseGemsUnique__1 +{variant:1,2}LocalIncreasedEvasionAndEnergyShieldUnique__2[130,150] +{variant:3,4}LocalIncreasedEvasionAndEnergyShieldUnique__2 +LocalIncreasedEnergyShieldUnique__5 +]],[[ +Leer Cast +Festival Mask +Variant: Pre 3.19.0 +Variant: Current +DexterityUniqueHelmetStrDex3 +{variant:1}AllDamageUniqueHelmetDexInt2[-30,-30] +{variant:2}AllDamageUniqueHelmetDexInt2 +{variant:1}IncreasedLifeUniqueHelmetDexInt2[20,30] +{variant:2}IncreasedLifeUniqueHelmetDexInt2 +{variant:1}IncreasedManaUniqueHelmetDexInt2[20,30] +{variant:2}IncreasedManaUniqueHelmetDexInt2 +{variant:1}DisplayDamageAuraUniqueHelmetDexInt2[15,15] +{variant:2}DisplayDamageAuraUniqueHelmetDexInt2 +]],[[ +Replica Leer Cast +Festival Mask +Variant: Pre 3.19.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +DexterityUniqueHelmetDexInt2 +{variant:1}IncreasedLifeUniqueHelmetDexInt2[20,30] +{variant:2}IncreasedLifeUniqueHelmetDexInt2 +{variant:1}IncreasedManaUniqueHelmetDexInt2[20,30] +{variant:2}IncreasedManaUniqueHelmetDexInt2 +ManaRegenerationUnique__14___ +ManaRegenerationAuraUnique__1 +]],[[ +Malachai's Simula +Iron Mask +Variant: Pre 1.0.0 +Variant: Pre 2.0.0 +Variant: Pre 3.7.0 +Variant: Pre 3.17.0 +Variant: Pre 3.19.0 +Variant: Current +StrengthUniqueHelmetDexInt1 +{variant:1,2,3,4,5}SpellDamageUniqueHelmetDexInt1 +{variant:1,2,3,4,5}LightningDamageUniqueHelmetDexInt1 +{variant:1,2,3,4,5}LightningResistUniqueStrDexHelmet1[10,10] +{variant:6}LightningResistUniqueDexHelmet1 +{variant:1}ManaCostReductionUniqueJewel44[100,100] +{variant:2}ManaCostReductionUniqueJewel44[20,20] +{variant:6}SpellsDoubleDamageChanceUnique__1 +KeystoneMortalConvictionUnique__1 +{variant:4}KeystoneMortalConvictionUnique__1 +]],[[ +Malachai's Awakening +Iron Mask +Source: No longer obtainable +Variant: Pre 3.7.0 +Variant: Pre 3.17.0 +Variant: Current +Requires Level 60, 21 Dex, 21 Int +StrengthUniqueHelmetDexInt1 +SpellDamageUniqueHelmetDexInt1 +AllResistancesUniqueIntHelmet3 +AddedColdDamageWhileNoLifeReservedUnique__1__ +AddedFireDamageWhileNoLifeReservedUnique__1 +AddedLightningDamageWhileNoLifeReservedUnique__1 +KeystoneBloodMagicUnique__1_ +{variant:2}KeystoneBloodMagicUnique__1_ +]],[[ +Mind of the Council +Harlequin Mask +Variant: Pre 3.10.0 +Variant: Current +Requires Level 57, 64 Dex, 64 Int +LocalIncreasedEvasionAndEnergyShieldUnique__3 +{variant:2}LocalIncreasedEnergyShieldUnique__29 +MaximumManaUnique___2 +ChanceToShockUnique__1 +ChanceToBeShockedUnique__1 +PercentLightningDamageTakenFromManaBeforeLifeUnique__1 +{variant:1}PercentManaRecoveredWhenYouShockUnique__1 +{variant:2}AttackLightningDamageMaximumManaUnique__1__ +{variant:2}LoseManaOnAttackSkillUnique__1 +]],[[ +The Tempest's Binding +Callous Mask +League: Harbinger +Source: No longer obtainable +Requires Level 45, 51 Dex, 51 Int +SupportedByIceBiteUnique__1 +SupportedByInnervateUnique__1 +HarbingerSkillOnEquipUnique__5 +LocalIncreasedEvasionRatingUnique__1 +LocalIncreasedEnergyShieldUniqueHelmetInt6 +IncreasedLifeUnique__105 +AllResistancesUnique__12 +]],[[ +The Tempest's Liberation +Callous Mask +Requires Level 60, 51 Dex, 51 Int +SupportedByIceBiteUnique__1 +SupportedByInnervateUnique__1 +HarbingerSkillOnEquipUnique2_5 +LocalIncreasedEvasionRatingUnique__1 +LocalIncreasedEnergyShieldUniqueHelmetInt5_ +IncreasedLifeUnique__103 +AllResistancesUnique__10 +]],[[ +The Three Dragons +Golden Mask +Requires Level 35, 40 Dex, 40 Int +AllResistancesUniqueHelmetDexInt4 +FireShocksUniqueHelmetDexInt4 +ColdIgnitesUniqueHelmetDexInt4_ +LightningFreezesUniqueHelmetDexInt4 +]],[[ +The Vertex +Vaal Mask +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Alluring Abyss} +Requires Level 62, 79 Dex, 72 Int +LocalIncreaseSocketedGemLevelUniqueHelmetDexInt5 +SocketedGemsHaveReducedManaCostUniqueHelmetDexInt5 +LocalIncreasedEvasionAndEnergyShieldUniqueHelmetDexInt5 +LocalIncreasedEnergyShieldUniqueHelmetDexInt5 +ChaosResistUniqueHelmetDexInt5 +EnemiesCannotLeechMana +]],[[ +Viridi's Veil +Praetor Crown +League: Ritual +Source: Drops from unique{The Maven} (Uber) +Requires Level 68, 62 Str, 91 Int +LocalIncreaseSocketedGemLevelUnique__10 +LocalIncreasedArmourAndEnergyShieldUnique__24 +AllResistancesDemigodsImplicit +AnyRingMagicDamageExtraRollUnique__1 +RightRingMagicHexproofUnique__1 +LeftRingMagicNoCritDamageUnique__1 +]],[[ +Willclash +Golden Mask +League: Heist +Requires Level 35, 40 Dex, 40 Int +LocalIncreasedEvasionAndEnergyShieldUnique__29 +ChanceToBlockSpellsPerPowerChargeUnique__2_ +ElementalDamagePerPowerChargeUnique__1 +GainPowerChargesNotLostRecentlyUnique__1_ +LosePowerChargesOnBlockUnique__1 +]], +-- Helmet: Ward +[[ +Faithguard +Runic Helm +League: Expedition +Variant: Pre 3.19.0 +Variant: Current +IntelligenceUniqueHelmetInt9 +LocalIncreasedWardPercentUnique__2 +{variant:1}WardDelayRecoveryUnique__1[20,30] +{variant:2}WardDelayRecoveryUnique__1 +LightRadiusUnique__5 +EnergyShieldAdditiveModifiersInsteadApplyToWardUnique__ +]],[[ +Cadigan's Crown +Runic Crown +League: Expedition +Source: Drops from unique{Olroth, Origin of the Fall} in normal{Expedition Logbook} +Requires Level 68, 66 Str, 66 Dex, 66 Int +CannotCrit +BattlemageKeystoneUnique__6 +]],} diff --git a/src/Export/Uniques/jewel.lua b/src/Export/Uniques/jewel.lua new file mode 100644 index 0000000000..18a26b60a4 --- /dev/null +++ b/src/Export/Uniques/jewel.lua @@ -0,0 +1,1866 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Jewel: Drop +[[ +Anatomical Knowledge +Cobalt Jewel +Source: No longer obtainable +Radius: Large +MaximumLifeUniqueJewel52 +LifePerIntelligenceInRadusUniqueJewel52 +]],[[ +The Anima Stone +Prismatic Jewel +Variant: Pre 3.23.0 +Variant: Current +Source: Vendor Recipe +Limited to: 1 +{variant:1}MaximumGolemsUnique__1 +GolemPerPrimordialJewel +]],[[ +Apex Mode +Cobalt Jewel +League: Heist +Source: Drops from unique{The Unbreakable} in normal{Contract: Breaking the Unbreakable} +Limited to: 1 +Requires Level 20 +SpellDamageUnique__12 +CriticalStrikeChancePerIntensityUnique__1 +SpellsGainIntensityUnique__1 +]],[[ +Apparitions +Viridian Jewel +Source: No longer obtainable +MinionRunSpeedUniqueJewel16 +MinionDodgeChanceUniqueJewel16 +]],[[ +The Blue Dream +Cobalt Jewel +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Drops in Chayula Breach or from unique{Chayula, Who Dreamt} +Upgrade: Upgrades to unique{The Blue Nightmare} using currency{Blessing of Chayula} +Radius: Large +{variant:1}ChaosDamageAsPortionOfLightningDamageUnique__1[5,5] +{variant:2}ChaosDamageAsPortionOfLightningDamageUnique__1 +LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1 +]],[[ +The Blue Nightmare +Cobalt Jewel +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Upgraded from unique{The Blue Dream} using currency{Blessing of Chayula} +Limited to: 1 +Radius: Large +{variant:1}Gain 5% of Lightning Damage as Extra Chaos Damage +{variant:2}ChaosDamageAsPortionOfLightningDamageUnique__1 +{variant:1}LightningResistConvertedToSpellBlockChanceScaledJewelUnique__1[35,35] +{variant:2}LightningResistConvertedToSpellBlockChanceScaledJewelUnique__1 +{variant:1}LightningResistAlsoGrantsPowerChargeOnKillJewelUnique__1 +]],[[ +Brawn +Crimson Jewel +Source: No longer obtainable +PercentageStrengthUniqueJewel29 +PercentageDexterityUniqueJewel29 +PercentageIntelligenceUniqueJewel29 +]],[[ +Bloodnotch +Crimson Jewel +Variant: Pre 3.28.0 +Variant: Current +Limited to: 1 +{variant:1}StunningHitsRecoverLifeUnique__1[40,60] +{variant:2}StunningHitsRecoverLifeUnique__1 +]],[[ +Calamitous Visions +Small Cluster Jewel +League: Delirium +Source: Drops from unique Delirium bosses in maps +JewelExpansionLoneMessenger_ +]],[[ +Cheap Construction +Viridian Jewel +Source: No longer obtainable +TrapDurationUnique__1 +AdditionalTrapsThresholdJewel +]],[[ +Replica Cheap Construction +Viridian Jewel +Source: No longer obtainable +League: Heist +TrapCritChanceUnique__1 +AdditionalTrapsUnique__2__ +]],[[ +Clear Mind +Cobalt Jewel +Source: No longer obtainable +Limited to: 1 +ManaRegenerationUniqueJewel30 +SpellDamageWithNoManaReservedUniqueJewel30 +]],[[ +Coated Shrapnel +Crimson Jewel +Source: No longer obtainable +Radius: Small +Variant: Pre 3.8.0 +Variant: Current +{variant:1}TrapAndMineAddedPhysicalDamageUnique__1 +TrapPoisonChanceUnique__1 +{variant:2}PassivesGrantTrapMineAddedPhysicalUnique__1_ +]],[[ +Cold Steel +Viridian Jewel +Source: No longer obtainable +Radius: Large +ColdAndPhysicalNodesInRadiusSwapPropertiesUniqueJewel48_ +]],[[ +Dissolution of the Flesh +Prismatic Jewel +Source: Drops from unique{The Searing Exarch} +Limited to: 1 +GlobalNoEnergyShieldUnique__1 +LifeLossReservesLifeUnique__1 +MoreMaximumReservedLifeUnique__1 +]],[[ +Divine Inferno +Crimson Jewel +Source: No longer obtainable +Limited to: 1 +Radius: Medium +InfernalCryThresholdJewel +]],[[ +Eldritch Knowledge +Cobalt Jewel +Source: No longer obtainable +Radius: Medium +ChaosDamageIncreasedPerIntUniqueJewel2 +]],[[ +Endless Misery +Cobalt Jewel +Source: No longer obtainable +League: Heist +Limited to: 1 +Radius: Medium +ElementalDamageUnique__4 +DischargeThresholdJewel__1 +]],[[ +Fireborn +Crimson Jewel +Source: No longer obtainable +Radius: Medium +AllDamageInRadiusBecomesFireUniqueJewel49 +]],[[ +Fortified Legion +Cobalt Jewel +Source: No longer obtainable +Limited to: 1 +MinionLifeUniqueJewel18 +MinionLifeRecoveryOnBlockUniqueJewel18 +]],[[ +Fragile Bloom +Crimson Jewel +Source: No longer obtainable +Limited to: 1 +Variant: Pre 3.11.0 +Variant: Current +{variant:1}LifeRegenerationRatePercentageUniqueJewel24 +{variant:1}DamageTakenUniqueJewel24 +{variant:2}FragileRegrowthLifeRegenerationUnique__1 +]],[[ +Replica Fragile Bloom +Crimson Jewel +Source: No longer obtainable +League: Heist +Limited to: 1 +Implicits: 0 +FragileRegrowthLifeRegenerationUnique__2_ +]],[[ +From Dust +Cobalt Jewel +Source: No longer obtainable +Limited to: 1 +Variant: Pre 3.8.0 +Variant: Current +Implicits: 0 +{variant:1}SummonSkeletonsNumberOfSkeletonsToSummonUnique__1[2,2] +{variant:2}SummonSkeletonsNumberOfSkeletonsToSummonUnique__1 +SummonSkeletonsCooldownTimeUnique__1 +]],[[ +The Front Line +Small Cluster Jewel +League: Delirium +Source: Drops from unique Delirium bosses in maps +JewelExpansionVeteransAwareness_ +]],[[ +Grand Spectrum +Cobalt Jewel +Source: Drops in The Lord's Labyrinth +Limited to: 3 +Variant: Pre 3.0.0 +Variant: Pre 3.10.0 +Variant: Current - Crit Chance +Variant: Current - Minion Crit Multi +Variant: Current - Min Power Charge +{variant:1}ManaPerStackableJewelUnique__1[15,15] +{variant:2}ManaPerStackableJewelUnique__1 +{variant:3}CriticalStrikeChancePerStackableJewelUnique__1 +{variant:5}MinimumPowerChargesPerStackableJewelUnique__1 +{variant:4}MinionCriticalStrikeMultiplierPerStackableJewelUnique__1 +]],[[ +Grand Spectrum +Crimson Jewel +Source: Drops in The Lord's Labyrinth +Limited to: 3 +Variant: Pre 3.0.0 +Variant: Pre 3.10.0 +Variant: Current - Elemental Resistances +Variant: Current - Maximum Life +Variant: Current - Min Endurance Charge +{variant:1}ArmourPerStackableJewelUnique__1[75,75] +{variant:2}ArmourPerStackableJewelUnique__1 +{variant:3}AllResistancePerStackableJewelUnique__1 +{variant:4}MaximumLifePerStackableJewelUnique__1 +{variant:5}MinimumEnduranceChargesPerStackableJewelUnique__1 +]],[[ +Grand Spectrum +Viridian Jewel +Source: Drops in The Lord's Labyrinth +Limited to: 3 +Variant: Pre 2.5.0 +Variant: Pre 3.0.0 +Variant: Pre 3.10.0 +Variant: Current - Elemental Damage +Variant: Current - Chance to avoid Ailments +Variant: Current - Min Frenzy Charge +{variant:1}IncreasedDamagePerStackableJewelUnique__1[5,5] +{variant:2}IncreasedDamagePerStackableJewelUnique__1[4,4] +{variant:3}IncreasedDamagePerStackableJewelUnique__1[12,12] +{variant:5}AvoidElementalAilmentsPerStackableJewelUnique__1 +{variant:4}IncreasedDamagePerStackableJewelUnique__1 +{variant:6}MinimumFrenzyChargesPerStackableJewelUnique__1 +]],[[ +The Green Dream +Viridian Jewel +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Drops in Chayula Breach or from unique{Chayula, Who Dreamt} +Upgrade: Upgrades to unique{The Green Nightmare} using currency{Blessing of Chayula} +Radius: Large +{variant:1}ChaosDamageAsPortionOfColdDamageUnique__1[5,5] +{variant:2}ChaosDamageAsPortionOfColdDamageUnique__1 +ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1 +]],[[ +The Green Nightmare +Viridian Jewel +Variant: Pre 3.16.0 +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Upgraded from unique{The Green Dream} using currency{Blessing of Chayula} +Limited to: 1 +Radius: Large +{variant:1,2}ChaosDamageAsPortionOfColdDamageUnique__1[5,5] +{variant:3}ChaosDamageAsPortionOfColdDamageUnique__1 +{variant:1}ColdResistConvertedToDodgeChanceScaledJewelUnique__1[35,35] +{variant:2}ColdResistConvertedToDodgeChanceScaledJewelUnique__1[50,50] +{variant:3}ColdResistConvertedToDodgeChanceScaledJewelUnique__1 +{variant:1,2}ColdResistAlsoGrantsFrenzyChargeOnKillJewelUnique__1 +]],[[ +Hair Trigger +Viridian Jewel +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +TrapDamageUnique___1 +{variant:1}TrapTriggerRadiusUnique__1[20,30] +{variant:2}TrapTriggerRadiusUnique__1 +]],[[ +Hotheaded +Viridian Jewel +Source: No longer obtainable +Limited to: 1 +Variant: Pre 3.11.0 +Variant: Current +{variant:1}MovementVelocityWhileIgnitedUniqueJewel20[10,15] +{variant:2}MovementVelocityWhileIgnitedUniqueJewel20 +{variant:2}IncreasedAttackSpeedWhileIgnitedUniqueJewel20 +{variant:2}IncreasedCastSpeedWhileIgnitedUniqueJewel20_ +]],[[ +Replica Hotheaded +Viridian Jewel +Source: No longer obtainable +League: Heist +Limited to: 1 +AttackSpeedWhileChilledUnique__1 +CastSpeedWhileChilledUnique__1 +MovementVelocityWhileChilledUnique__1_ +]],[[ +Inspired Learning +Crimson Jewel +Radius: Small +StealRareModUniqueJewel3 +]],[[ +The Interrogation +Small Cluster Jewel +League: Delirium +Source: Drops from unique Delirium bosses in maps +JewelExpansionSecretsOfSuffering +]],[[ +Intuitive Leap +Viridian Jewel +Radius: Small +JewelUniqueAllocateDisconnectedPassives +]],[[ +Izaro's Turmoil +Crimson Jewel +Source: No longer obtainable +FireDamagePercentUnique__3 +ColdDamagePercentUnique__4 +ChanceToFreezeUnique__2 +IncreasedChanceToIgniteUnique__1 +]],[[ +Kitava's Teachings +Small Cluster Jewel +League: Delirium +Source: Drops from unique Delirium bosses in maps +JewelExpansionKeystoneDiscipleOfKitava_ +]],[[ +The Light of Meaning +Prismatic Jewel +Variant: Life +Variant: Energy Shield +Variant: Mana +Variant: Armour +Variant: Evasion Rating +Variant: Attributes +Variant: Global Crit Chance +Variant: Physical Damage +Variant: Lightning Damage +Variant: Cold Damage +Variant: Fire Damage +Variant: Chaos Damage +Variant: Chaos Resistance +Selected Variant: 1 +Source: King of The Mists +Limited to: 1 +Radius: Large +{variant:1}UniqueJewelNodeIncreasedLifeUnique__1 +{variant:2}UniqueJewelNodeEnergyShieldUnique__1 +{variant:3}UniqueJewelNodeIncreasedManaUnique__1 +{variant:4}UniqueJewelNodeArmourUnique__1 +{variant:5}UniqueJewelNodeEvasionUnique__1 +{variant:6}UniqueJewelNodeAllAttributesUnique__1 +{variant:7}UniqueJewelNodeCriticalStrikeChanceUnique__1 +{variant:8}UniqueJewelNodePhysicalDamageUnique__1 +{variant:9}UniqueJewelNodeLightningDamageUnique__1 +{variant:10}UniqueJewelNodeColdDamageUnique__1 +{variant:11}UniqueJewelNodeFireDamageUnique__1 +{variant:12}UniqueJewelNodeChaosDamageUnique__1 +{variant:13}UniqueJewelNodeChaosResistUnique__1 +]],[[ +Lioneye's Fall +Viridian Jewel +Radius: Medium +UniqueJewelMeleeToBow +]],[[ +Lord of Steel +Viridian Jewel +Source: No longer obtainable +League: Heist +Limited to: 1 +Variant: Impale Chance (Pre 3.13.0) +Variant: Impale Overwhelm (Pre 3.13.0) +Variant: Impale Effect (Pre 3.13.0) +Variant: Impale Chance (Current) +Variant: Impale Overwhelm (Current) +Variant: Impale Effect (Current) +{variant:1,4}ChanceToImpaleUnique__1 +{variant:2,5}ImpalePhysicalReductionPenaltyUnique__1 +{variant:3,6}ImpaleEffectUnique__2 +{variant:1,3,4,6}CallOfSteelAreaOfEffectUnique__1 +{variant:2,3,5,6}CallOfSteelUseSpeedUnique__1 +{variant:1,2}CallOfSteelReflectDamageUnique__1[40,50] +{variant:4,5}CallOfSteelReflectDamageUnique__1 +]],[[ +Malicious Intent +Cobalt Jewel +Source: No longer obtainable +UnholyMightOnMeleeKillUniqueJewel28 +]],[[ +Mantra of Flames +Crimson Jewel +Source: No longer obtainable +Limited to: 1 +FireDamagePerBuffUniqueJewel17 +FireSpellDamagePerBuffUniqueJewel17 +]],[[ +Martial Artistry +Crimson Jewel +Source: No longer obtainable +Limited to: 1 +Variant: Pre 3.11.0 +Variant: Current +Radius: Small +{variant:1}UnarmedAreaOfEffectUniqueJewel4 +{variant:2}UnarmedStrikeRangeUniqueJewel__1_ +{variant:2}PassivesGrantUnarmedAttackSpeedUnique__1_ +]],[[ +Melding of the Flesh +Cobalt Jewel +Variant: Pre 3.19.0 +Variant: Current +Source: Drops from unique{The Eater of Worlds} +Limited to: 1 +AllResistancesUnique__24_ +{variant:2}MaximumElementalResistanceUnique__2 +ElementalResistanceHighestMaxResistanceUnique__1_ +]],[[ +Might in All Forms +Crimson Jewel +Source: No longer obtainable +Radius: Medium +DexterityAndIntelligenceGiveStrengthMeleeBonusInRadiusUniqueJewel55 +]],[[ +Might of the Meek +Crimson Jewel +Radius: Large +PassiveEffectivenessJewelUnique__1_ +]],[[ +Immutable Force +Crimson Jewel +Limited to: 1 +StunRecoveryUnique__4 +]],[[ +Firesong +Crimson Jewel +FireResistUnique__31 +SelfIgniteDurationAllElementalAilmentsUnique__1 +]],[[ +Stormshroud +Viridian Jewel +LightningResistUnique__28 +ShockAvoidanceAllElementalAilmentsUnique__1 +]],[[ +Witchbane +Cobalt Jewel +IntelligenceUnique__31 +ImmuneToCursesRemainingDurationUnique__1 +]],[[ +Rational Doctrine +Cobalt Jewel +Source: Drops from unique{Synthete Nightmare} in normal{The Cortex} (Uber) +ConsecratedGroundStationarySTRHighestUnique__1 +ProfaneGroundCriticalStrikeINTHighestUnique__1 +ConsecratedGroundLingersUnique__1 +ProfaneGroundLingersUnique__1 +]],[[ +Nadir Mode +Cobalt Jewel +Variant: Pre 3.26 +Variant: Current +League: Heist +Source: Drops from unique{The Unbreakable} in normal{Contract: Breaking the Unbreakable} +Limited to: 1 +Item Level: 82 +SpellDamageUnique__13 +{variant:1}CriticalStrikeChancePerIntensityUnique__2[30,30] +{variant:2}CriticalStrikeChancePerIntensityUnique__2 +SpellsLoseIntensityUnique__1 +]],[[ +Natural Affinity +Small Cluster Jewel +League: Delirium +Source: Drops from unique Delirium bosses in maps +JewelExpansionNaturesPatience +]],[[ +One With Nothing +Small Cluster Jewel +League: Delirium +Source: Drops from unique Delirium bosses in maps +JewelExpansionHollowPalmTechnique +]],[[ +The Perandus Pact +Prismatic Jewel +Variant: Life +Variant: Energy Shield +Variant: Mana +Variant: Armour +Variant: Evasion Rating +Variant: Attributes +Variant: Global Crit Chance +Variant: Physical Damage +Variant: Lightning Damage +Variant: Cold Damage +Variant: Fire Damage +Variant: Chaos Damage +Variant: Chaos Resistance +Selected Variant: 1 +League: Necropolis +Source: No longer obtainable +Limited to: 1 +Radius: Large +{variant:1}UniqueJewelNodeIncreasedLifeUnique__1 +{variant:2}UniqueJewelNodeEnergyShieldUnique__1 +{variant:3}UniqueJewelNodeIncreasedManaUnique__1 +{variant:4}UniqueJewelNodeArmourUnique__1 +{variant:5}UniqueJewelNodeEvasionUnique__1 +{variant:6}UniqueJewelNodeAllAttributesUnique__1 +{variant:7}UniqueJewelNodeCriticalStrikeChanceUnique__1 +{variant:8}UniqueJewelNodePhysicalDamageUnique__1 +{variant:9}UniqueJewelNodeLightningDamageUnique__1 +{variant:10}UniqueJewelNodeColdDamageUnique__1 +{variant:11}UniqueJewelNodeFireDamageUnique__1 +{variant:12}UniqueJewelNodeChaosDamageUnique__1 +{variant:13}UniqueJewelNodeChaosResistUnique__1 +]],[[ +Primordial Eminence +Viridian Jewel +GolemAttackAndCastSpeedUnique__1 +GolemBuffEffectUnique__1 +GolemArmourRatingUnique__1 +PrimordialJewelCountUnique__4 +]],[[ +Primordial Harmony +Cobalt Jewel +Variant: Pre 3.3.0 +Variant: Current +GolemSkillsCooldownRecoveryUnique__1 +{variant:1}GolemsSkillsCooldownRecoveryUnique__1_[10,15] +{variant:2}GolemsSkillsCooldownRecoveryUnique__1_ +IncreasedGolemDamagePerGolemUnique__1 +GolemLifeRegenerationUnique__1 +PrimordialJewelCountUnique__3 +]],[[ +Primordial Might +Crimson Jewel +IncreasedDamageIfGolemSummonedRecently__1 +IncreasedGolemDamageIfGolemSummonedRecently__1_ +GolemLifeUnique__1 +GolemLargerAggroRadiusUnique__1 +PrimordialJewelCountUnique__2 +]],[[ +Replica Primordial Might +Crimson Jewel +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +MaximumGolemsUnique__4_ +IncreasedDamageIfGolemSummonedRecently__1 +IncreasedGolemDamageIfGolemSummonedRecentlyUnique__1 +GolemLifeUnique__1 +GolemLargerAggroRadiusUnique__1 +PrimordialJewelCountUnique__1 +]],[[ +Pugilist +Viridian Jewel +Source: No longer obtainable +Radius: Large +ClawPhysDamageAndEvasionPerDexUniqueJewel47 +]],[[ +Pure Talent +Viridian Jewel +Variant: Pre 3.20.0 +Variant: Current +Limited to: 1 +While your Passive Skill Tree connects to a class' starting location, you gain: +{variant:1}Marauder: Melee Skills have 15% increased Area of Effect +{variant:2}Marauder: Melee Skills have 25% increased Area of Effect +Duelist: 1% of Attack Damage Leeched as Life +Ranger: 7% increased Movement Speed +Shadow: +0.5% to Critical Strike Chance +Witch: 0.5% of Mana Regenerated per second +Templar: Damage Penetrates 5% Elemental Resistances +Scion: +25 to All Attributes +]],[[ +Replica Pure Talent +Viridian Jewel +Source: No longer obtainable +League: Heist +Limited to: 1 +While your Passive Skill Tree connects to a class' starting location, you gain: +Marauder: 1% of Life Regenerated per second +Duelist: +2 to Melee Strike Range +Ranger: 20% increased Flask Charges gained +Shadow: 12% increased Attack and Cast Speed +Witch: 20% increased Skill Effect Duration +Templar: +4% Chance to Block Attack and Spell Damage +Scion: 30% increased Damage +]],[[ +Replica Reckless Defence +Cobalt Jewel +Variant: Pre 3.25.0 +Variant: Current +League: Heist +{variant:1}SpellBlockPercentageUnique__1[2,4] +{variant:2}SpellBlockPercentageUnique__1 +{variant:1}AdditionalBlockUnique__1[2,4] +{variant:2}AdditionalBlockUnique__1 +ChanceToBeFrozenShockedIgnitedUnique__1 +]],[[ +The Red Dream +Crimson Jewel +League: Breach +Source: Drops in Chayula Breach or from unique{Chayula, Who Dreamt} +Upgrade: Upgrades to unique{The Red Nightmare} using currency{Blessing of Chayula} +Radius: Large +Variant: Pre 3.21.0 +Variant: Current +{variant:1}ChaosDamageAsPortionOfFireDamageUnique__1[5,5] +{variant:2}ChaosDamageAsPortionOfFireDamageUnique__1 +FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1 +]],[[ +The Red Nightmare +Crimson Jewel +League: Breach +Source: Upgraded from unique{The Red Dream} using currency{Blessing of Chayula} +Limited to: 1 +Radius: Large +Variant: Pre 3.21.0 +Variant: Current +{variant:1}ChaosDamageAsPortionOfFireDamageUnique__1[5,5] +{variant:2}ChaosDamageAsPortionOfFireDamageUnique__1 +{variant:1}FireResistAlsoGrantsEnduranceChargeOnKillJewelUnique__1 +{variant:1}FireResistConvertedToBlockChanceScaledJewelUnique__1_[35,35] +{variant:2}FireResistConvertedToBlockChanceScaledJewelUnique__1_ +]],[[ +The Siege +Small Cluster Jewel +League: Delirium +Source: Drops from unique Delirium bosses in maps +JewelExpansionKineticism +]],[[ +Spire of Stone +Crimson Jewel +Source: No longer obtainable +Limited to: 1 +Radius: Large +TotemLifePerStrengthUniqueJewel15 +TotemsCannotBeStunnedUniqueJewel15 +]],[[ +Static Electricity +Viridian Jewel +Source: No longer obtainable +Radius: Large +AddedLightningDamagePerDexInRadiusUniqueJewel53 +]],[[ +Tempered Flesh +Crimson Jewel +League: Incursion +Source: Drops from unique{The Vaal Omnitect} +Upgrade: Upgrades to unique{Transcendent Flesh} via currency{Vial of Transcendence} +Variant: Pre 3.8.0 +Variant: Pre 3.10.0 +Variant: Current +Radius: Medium +AdditionalStrengthPerAllocatedStrengthJewelUnique__1_ +{variant:1}CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_[5,5][10,10] +{variant:2}CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_ +{variant:3}LifeRecoveryRatePerAllocatedStrengthUnique__1_ +]],[[ +Transcendent Flesh +Crimson Jewel +League: Incursion +Source: Upgraded from unique{Tempered Flesh} via currency{Vial of Transcendence} +Variant: Pre 3.8.0 +Variant: Pre 3.10.0 +Variant: Current +Radius: Medium +AdditionalStrengthPerAllocatedStrengthJewelUnique__1_ +{variant:1,2}AdditionalPhysicalReductionPerAllocatedStrengthJewelUnique__1 +{variant:2,3}CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_ +{variant:1}CriticalStrikeMultiplierPerUnallocatedStrengthJewelUnique__1_[5,5][10,10] +{variant:3}LifeRecoveryRatePerAllocatedStrengthUnique__2 +{variant:3}LifeRecoveryRatePerUnallocatedStrengthUnique__1_ +]],[[ +Tempered Mind +Cobalt Jewel +League: Incursion +Source: Drops from unique{The Vaal Omnitect} +Upgrade: Upgrades to unique{Transcendent Mind} via currency{Vial of Transcendence} +Variant: Pre 3.8.0 +Variant: Pre 3.10.0 +Variant: Current +Radius: Medium +AdditionalIntelligencePerAllocatedIntelligenceJewelUnique__1__ +{variant:1}AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1[100,100][10,10] +{variant:2}AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1 +{variant:3}ManaRecoveryRatePerAllocatedIntelligenceUnique__1 +]],[[ +Transcendent Mind +Cobalt Jewel +League: Incursion +Source: Upgraded from unique{Tempered Mind} via currency{Vial of Transcendence} +Variant: Pre 3.8.0 +Variant: Pre 3.10.0 +Variant: Current +Radius: Medium +AdditionalIntelligencePerAllocatedIntelligenceJewelUnique__1__ +{variant:1,2}EnergyShieldRegenPerAllocatedIntelligenceJewelUnique__1_ +{variant:1}AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1[100,100][10,10] +{variant:2}AccuracyRatingPerUnallocatedIntelligenceJewelUnique__1 +{variant:3}DamageOverTimeMultiplierPerUnallocatedIntelligenceUnique__1___ +{variant:3}ManaRecoveryRatePerAllocatedIntelligenceUnique__2 +{variant:3}ManaRecoveryRatePerUnallocatedIntelligenceUnique__1 +]],[[ +Tempered Spirit +Viridian Jewel +League: Incursion +Source: Drops from unique{The Vaal Omnitect} +Upgrade: Upgrades to unique{Transcendent Spirit} via currency{Vial of Transcendence} +Variant: Pre 3.10.0 +Variant: Current +Radius: Medium +AdditionalDexterityPerAllocatedDexterityJewelUnique__1 +{variant:1}FlatManaPerUnallocatedDexterityJewelUnique__1 +{variant:2}MovementSpeedPerAllocatedDexterityJewelUnique__1 +]],[[ +Transcendent Spirit +Viridian Jewel +League: Incursion +Source: Upgraded from unique{Tempered Spirit} via currency{Vial of Transcendence} +Variant: Pre 3.10.0 +Variant: Current +Radius: Medium +AdditionalDexterityPerAllocatedDexterityJewelUnique__1 +{variant:1}MovementSpeedPerAllocatedDexterityUnique__2[2,2][10,10] +{variant:2}MovementSpeedPerAllocatedDexterityUnique__2 +{variant:1}FlatManaPerUnallocatedDexterityJewelUnique__1 +{variant:2}AccuracyRatingPerUnallocatedDexterityUnique__1_ +{variant:2}MovementSpeedPerUnallocatedDexterityUnique__1_ +]],[[ +Thread of Hope +Crimson Jewel +Source: Drops from unique{Sirus, Awakener of Worlds} +Variant: Small Ring +Variant: Medium Ring +Variant: Large Ring +Variant: Very Large Ring +Variant: Massive Ring (Uber) +Radius: Variable +Implicits: 0 +{variant:1}JewelRingRadiusValuesUnique__1 +{variant:5}JewelRingRadiusValuesUnique__2 +JewelUniqueAllocateDisconnectedPassives +AllResistancesUnique__6 +{variant:2}Only affects Passives in Medium Ring +{variant:3}Only affects Passives in Large Ring +{variant:4}Only affects Passives in Very Large Ring +]],[[ +Unnatural Instinct +Viridian Jewel +Limited to: 1 +Radius: Small +AllocatedNonNotablesGrantNothingUnique__1_ +GrantsStatsFromNonNotablesInRadiusUnique__1 +]],[[ +Unstable Payload +Cobalt Jewel +Source: No longer obtainable +TrapTriggerTwiceChanceUnique__1 +]],[[ +Replica Unstable Payload +Cobalt Jewel +Source: No longer obtainable +League: Heist +Implicits: 0 +GainLifeOnTrapTriggeredUnique__2__ +]],[[ +Voices +Large Cluster Jewel +League: Delirium +Source: Drops from the Simulacrum Encounter +Variant: Adds 1 Small Passive Skill +Variant: Adds 3 Small Passive Skills +Variant: Adds 5 Small Passive Skills +Variant: Adds 7 Small Passive Skills +ExpansionJewel3JewelSockets +{variant:1}ExpansionJewelEmptyPassiveUnique__1 +{variant:2}ExpansionJewelEmptyPassiveUnique__2 +{variant:3}ExpansionJewelEmptyPassiveUnique_3_ +{variant:4}ExpansionJewelEmptyPassiveUnique__4 +]],[[ +Split Personality +Crimson Jewel +League: Delirium +Source: Drops from the Simulacrum Encounter +Has Alt Variant: true +Variant: Strength +Variant: Dexterity +Variant: Intelligence +Variant: Life +Variant: Mana +Variant: Energy Shield +Variant: Armour +Variant: Evasion Rating +Variant: Accuracy Rating +Limited to: 2 +LocalIncreasedEffectPathToClassStartUnique__1 +{variant:1}StrengthPerPointToClassStartUnique__1 +{variant:2}DexterityPerPointToClassStartUnique__1 +{variant:3}IntelligencePerPointToClassStartUnique__1 +{variant:4}LifePerPointToClassStartUnique__1_ +{variant:5}ManaPerPointToClassStartUnique__1 +{variant:6}EnergyShieldPerPointToClassStartUnique__1 +{variant:7}ArmourPerPointToClassStartUnique__1 +{variant:8}EvasionPerPointToClassStartUnique__1 +{variant:9}AccuracyPerPointToClassStartUnique__1 +Corrupted +]],[[ +Warrior's Tale +Crimson Jewel +League: Ancestor +Source: No longer obtainable +Limited to: 1 +Radius: Medium +SoulTattooEffectUnique__1 +]], +-- Jewel: Abyss +[[ +Amanamu's Gaze +Ghastly Eye Jewel +AllAttributesUnique__23 +MinionDamageOverTimeMultiplierPerMinionAbyssJewelUnique__1 +]],[[ +Kurgal's Gaze +Hypnotic Eye Jewel +IntelligenceUnique__28 +ArcaneSurgeEffectPerCasterAbyssJewelUnique__1 +]],[[ +Tecrod's Gaze +Murderous Eye Jewel +Variant: Pre 3.21.0 +Variant: Current +Requires Level 40 +StrengthUnique__21 +{variant:1}MainHandCriticalStrikeChancePerMeleeAbyssJewelUnique__1[20,20] +{variant:2}MainHandCriticalStrikeChancePerMeleeAbyssJewelUnique__1 +{variant:1}OffHandCriticalStrikeMultiplierPerMeleeAbyssJewelUnique__1__[10,10] +{variant:2}OffHandCriticalStrikeMultiplierPerMeleeAbyssJewelUnique__1__ +]],[[ +Ulaman's Gaze +Searching Eye Jewel +Requires Level 40 +DexterityUnique__21_ +ChainOffTerrainChancePerRangedAbyssJewelUnique__1__ +]], +-- Jewel: Threshold +[[ +Combat Focus +Crimson Jewel +Source: Vendor Recipe +Limited to: 2 +Variant: Pre 3.21.0 +Variant: Current +Radius: Medium +{variant:1}WeaponElementalDamageUnique__3[10,15] +{variant:2}ElementalDamageUniqueJewel_1 +ElementalHitDisableColdUniqueJewel_1 +]],[[ +Combat Focus +Cobalt Jewel +Source: Vendor Recipe +Limited to: 2 +Variant: Pre 3.21.0 +Variant: Current +Radius: Medium +{variant:1}WeaponElementalDamageUnique__2[10,15] +{variant:2}ElementalDamageUniqueJewel_1 +ElementalHitDisableFireUniqueJewel_1 +]],[[ +Combat Focus +Viridian Jewel +Source: Vendor Recipe +Limited to: 2 +Variant: Pre 3.21.0 +Variant: Current +Radius: Medium +{variant:1}WeaponElementalDamageUnique__1[10,15] +{variant:2}ElementalDamageUniqueJewel_1 +ElementalHitDisableLightningUniqueJewel_1 +]],[[ +Collateral Damage +Viridian Jewel +Source: No longer obtainable +Limited to: 2 +Radius: Medium +IncreasedPhysicalDamagePercentUnique__7 +ShrapnelShotThresholdJewel_1 +]],[[ +Dead Reckoning +Cobalt Jewel +Limited to: 1 +Variant: Pre 3.0.0 +Variant: Pre 3.8.0 +Variant: Pre 3.23.0 +Variant: Current +Radius: Medium +{variant:1,2,3}MinionElementalResistancesUnique__1 +{variant:1}SummonSkeletonsThresholdUnique__1[3,3] +{variant:2}SummonSkeletonsThresholdUnique__1[5,5] +{variant:3}SummonSkeletonsThresholdUnique__1 +{variant:4}SkeletonAddedChaosDamageShieldUnique__1 +]],[[ +Fight for Survival +Viridian Jewel +Source: No longer obtainable +Limited to: 2 +Radius: Medium +ColdDamagePercentUnique__2 +FrostBladesThresholdJewel_1 +]],[[ +First Snow +Cobalt Jewel +Source: No longer obtainable +Limited to: 2 +Radius: Medium +IncreasedProjectileDamageUnique___8 +FreezingPulseThresholdJewel_1 +]],[[ +Frozen Trail +Cobalt Jewel +Source: No longer obtainable +Limited to: 2 +Radius: Medium +IncreasedProjectileDamageUnique___3 +FrostboltThresholdJewel_1 +]],[[ +Growing Agony +Viridian Jewel +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +Limited to: 1 +Radius: Medium +{variant:1}DamageOverTimeUnique___1[4,12] +{variant:2}DamageOverTimeUnique___1 +ViperStrikeThresholdJewel__1 +{variant:2}ViperStrikeThresholdJewel__2 +]],[[ +Hazardous Research +Cobalt Jewel +Source: No longer obtainable +Variant: Pre 3.17.0 +Variant: Current +Limited to: 1 +Radius: Medium +LightningDamagePercentUnique__5 +{variant:1}SparkThresholdJewel1 +SparkThresholdJewel_2 +{variant:1}(20-15)% reduced Spark Duration +]],[[ +Inevitability +Cobalt Jewel +Source: No longer obtainable +Variant: Pre 3.11.0 +Variant: Current +Limited to: 1 +Radius: Medium +FireDamagePercentUnique___2 +{variant:1}MagmaOrbThresholdJewel_1 +{variant:2}MagmaOrbThresholdJewel_2 +]],[[ +The Long Winter +Cobalt Jewel +Source: No longer obtainable +Limited to: 2 +Radius: Medium +ColdDamagePercentUnique__15 +GlacialCascadeThresholdJewel1 +]],[[ +Might and Influence +Viridian Jewel +Source: No longer obtainable +Has Alt Variant: true +Variant: Pre 3.11.0 +Variant: Axe +Variant: Claw +Variant: Dagger +Variant: Mace +Variant: Sword +Limited to: 1 +Radius: Medium +{variant:1}IncreasedPhysicalDamagePercentUnique__6 +{variant:1}DualStrikeThresholdJewel_1 +{variant:2,3,4,5,6}DualStrikeThresholdJewel__2_ +{variant:2}DualStrikeThresholdJewelAxe +{variant:3}DualStrikeThresholdJewelClaw +{variant:4}DualStrikeThresholdJewelDagger +{variant:5}DualStrikeThresholdJewelMace +{variant:6}DualStrikeThresholdJewelSword_ +]],[[ +Omen on the Winds +Viridian Jewel +Source: No longer obtainable +Variant: Pre 3.1.0 +Variant: Current +Limited to: 2 +Radius: Medium +IncreasedDamageToChilledEnemies1 +{variant:1}IceShotThresholdJewel__2[25,25][5,5] +{variant:2}IceShotThresholdJewel__2 +]],[[ +Overwhelming Odds +Crimson Jewel +Source: No longer obtainable +Limited to: 1 +Radius: Medium +IncreasedPhysicalDamagePercentUnique__5 +CleaveThresholdJewel_1 +]],[[ +Pitch Darkness +Viridian Jewel +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +Radius: Medium +BurningArrowThresholdJewelUnique__1 +{variant:1}FireDamagePercentUnique__9[5,15] +{variant:2}FireDamagePercentUnique__9 +]],[[ +Rapid Expansion +Crimson Jewel +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.3.0 +Variant: Current +Limited to: 2 +Radius: Medium +{variant:1}IncreasedPhysicalDamagePercentUnique__2[4,12] +{variant:2,3}IncreasedPhysicalDamagePercentUnique__2 +{variant:1}GroundSlamThresholdUnique__1[20,20] +{variant:2}GroundSlamThresholdUnique__1[35,35] +{variant:3}GroundSlamThresholdUnique__1 +{variant:2}GroundSlamThresholdUnique__2[25,25] +{variant:3}GroundSlamThresholdUnique__2 +]],[[ +Ring of Blades +Viridian Jewel +Source: No longer obtainable +Variant: Pre 3.0.0 +Variant: Pre 3.17.0 +Variant: Current +Limited to: 1 +Radius: Medium +IncreasedPhysicalDamagePercentUnique__3 +EtherealKnivesThresholdJewel_1 +{variant:1}With at least 40 Dexterity in Radius, Ethereal Knives fires 10 additional Projectiles +{variant:2}With at least 40 Dexterity in Radius, Ethereal Knives fires 5 additional Projectiles +]],[[ +Rolling Flames +Cobalt Jewel +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Current +Limited to: 1 +Radius: Medium +{variant:1}FireDamagePercentUnique__11[5,15] +{variant:2,3}FireDamagePercentUnique__11 +{variant:1}FireballThresholdJewel__1 +{variant:2}FireballThresholdJewel__2_ +{variant:3}FireballThresholdJewel__3 +]],[[ +Shattered Chains +Crimson Jewel +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +Radius: Medium +{variant:1}ColdDamagePercentUnique__13[5,15] +{variant:2}ColdDamagePercentUnique__13 +GlacialHammerThresholdJewel__1 +]],[[ +Spirit Guards +Viridian Jewel +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.20.0 +Variant: Current +Limited to: 1 +Radius: Medium +MinionDamageUniqueJewel1 +{variant:1}AnimateBowsAndWandsUnique____70[40,40][4,4] +{variant:2}AnimateBowsAndWandsUnique____70[40,40][12,12] +{variant:3}AnimateBowsAndWandsUnique____70 +]],[[ +Spirited Response +Cobalt Jewel +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +Limited to: 1 +Radius: Medium +{variant:1}MaximumManaUnique__1[5,10] +{variant:2}MaximumManaUnique__1 +RallyingCryThresholdJewel__1 +]],[[ +Spreading Rot +Cobalt Jewel +Source: No longer obtainable +Variant: Pre 3.17.0 +Variant: Current +Limited to: 1 +Radius: Medium +IncreasedChaosDamageUnique__3 +{variant:1,2}BlightThresholdJewel_2 +]],[[ +Steel Spirit +Viridian Jewel +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +Radius: Medium +{variant:1}IncreasedProjectileDamageUnique__7[6,10] +{variant:2}IncreasedProjectileDamageUnique__7 +{variant:1}SpectralThrowThresholdJewel__1[4,4] +{variant:2}SpectralThrowThresholdJewel__1 +]],[[ +Sudden Ignition +Viridian Jewel +Source: No longer obtainable +Limited to: 1 +Radius: Medium +FireDamagePercentUnique__10 +BurningArrowThresholdJewel_2 +]],[[ +Unending Hunger +Cobalt Jewel +Variant: Pre 2.6.0 +Variant: Current +Limited to: 2 +Radius: Medium +{variant:1}MinionAreaOfEffectUnique__1[5,8] +{variant:2}MinionAreaOfEffectUnique__1 +ChanceForSpectersToGainSoulEaterOnKillUnique__1 +]],[[ +The Vigil +Crimson Jewel +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.14.0 +Variant: Current +Limited to: 1 +Radius: Medium +(8-15)% increased Armour +{variant:1}VigilantStrikeThresholdJewel__1[3,3] +{variant:2}VigilantStrikeThresholdJewel__1[12,12] +{variant:3}VigilantStrikeThresholdJewel__1 +]],[[ +Violent Dead +Cobalt Jewel +Source: No longer obtainable +Limited to: 2 +Radius: Medium +MinionDamageUnique4 +RaiseZombieThresholdJewel1 +]],[[ +Volley Fire +Viridian Jewel +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.9.0 +Variant: Current +Limited to: 1 +Radius: Medium +{variant:1}IncreasedProjectileDamageUnique__2[6,10] +{variant:2,3}IncreasedProjectileDamageUnique__2 +{variant:1,2}BarrageThresholdUnique__1[2,2] +{variant:3}BarrageThresholdUnique__1 +]],[[ +Weight of the Empire +Crimson Jewel +Source: No longer obtainable +Limited to: 2 +Radius: Medium +IncreasedPhysicalDamagePercentUnique__1 +HeavyStrikeThresholdJewel___1 +]],[[ +Wildfire +Crimson Jewel +Source: No longer obtainable +Variant: Pre 3.11.0 +Variant: Current +Limited to: 1 +Radius: Medium +FireDamagePercentUnique__1 +{variant:1}MoltenStrikeThresholdJewel_1 +{variant:2}MoltenStrikeThresholdJewel__2 +]],[[ +Winter Burial +Crimson Jewel +Source: No longer obtainable +Limited to: 2 +Radius: Medium +ColdDamagePercentUnique__12 +GlacialHammerThresholdJewel_2 +]],[[ +Winter's Bounty +Cobalt Jewel +Source: No longer obtainable +Limited to: 1 +Radius: Medium +ColdDamagePercentUnique__1 +ColdsnapThresholdJewel__1 +]],[[ +Ancestral Vision +Viridian Jewel +Limited to: 1 +DexterityUnique__26 +ModifiersToSuppressionApplyToAilmentAvoidUnique__1 +]], +-- Jewel: Corrupted +[[ +Ancient Waystones +Crimson Jewel +Source: No longer obtainable +Limited to: 1 +ManaCostOfTotemAurasUniqueCorruptedJewel8 +Corrupted +]],[[ +Atziri's Reign +Crimson Jewel +Source: Use currency{Vaal Orb} on normal{Crimson Jewel} +Variant: Pre 3.14.0 +Variant: Current +Limited to: 1 +{variant:1,2}VaalSkillDurationUniqueCorruptedJewel5 +{variant:2}VaalSkillRefundChanceUniqueCorruptedJewel5 +Corrupted +]],[[ +Brute Force Solution +Cobalt Jewel +Source: Use currency{Vaal Orb} on normal{Cobalt Jewel} +Variant: Pre 3.20.0 +Variant: Current +Radius: Large +IntelligenceUniqueJewel35 +JewelStrToInt +{variant:2}Corrupted +]],[[ +Blood Sacrifice +Crimson Jewel +Source: No longer obtainable +LifeLostOnKillPercentageUniqueCorruptedJewel14 +ManaGainedOnKillPercentageUniqueCorruptedJewel14 +EnergyShieldLostOnKillPercentageUniqueCorruptedJewel14 +Corrupted +]],[[ +Replica Blood Sacrifice +Crimson Jewel +Source: No longer obtainable +League: Heist +Implicits: 0 +MaximumLifeOnKillPercentUnique__1 +MaximumEnergyShieldOnKillPercentUnique__2 +CannotLeechOrRegenerateManaUnique__1_ +]],[[ +Brittle Barrier +Cobalt Jewel +Source: No longer obtainable +ReducedEnergyShieldDelayUniqueCorruptedJewel15 +DamageTakenOnFullESUniqueCorruptedJewel15 +Corrupted +]],[[ +Careful Planning +Viridian Jewel +Source: Use currency{Vaal Orb} on normal{Viridian Jewel} +Variant: Pre 3.20.0 +Variant: Current +Radius: Large +DexterityUniqueJewel36 +JewelIntToDex +{variant:2}Corrupted +]],[[ +Chill of Corruption +Viridian Jewel +Source: Use currency{Vaal Orb} on normal{Viridian Jewel} +Limited to: 1 +AdditionalVaalSoulOnShatterUniqueCorruptedJewel7 +Corrupted +]],[[ +Combustibles +Crimson Jewel +Source: No longer obtainable +ItemFoundQuantityReduceUniqueCorruptedJewel1 +BurnDamageUniqueCorruptedJewel1 +Corrupted +]],[[ +Corrupted Energy +Cobalt Jewel +Source: No longer obtainable +Implicits: 0 +CorruptThresholdPhysBypassesESUniqueCorruptedJewel12 +Corrupted +]],[[ +Efficient Training +Crimson Jewel +Source: Use currency{Vaal Orb} on normal{Crimson Jewel} +Variant: Pre 3.20.0 +Variant: Current +Radius: Large +StrengthUniqueJewel37 +JewelIntToStr +{variant:2}Corrupted +]],[[ +Energised Armour +Crimson Jewel +Source: Use currency{Vaal Orb} on normal{Crimson Jewel} +Variant: Pre 3.20.0 +Variant: Current +Radius: Large +IncreasedPhysicalDamageReductionRatingPercentUniqueJewel50 +EnergyShieldInRadiusIncreasesArmourUniqueJewel50 +{variant:2}Corrupted +]],[[ +Energy From Within +Cobalt Jewel +Source: Use currency{Vaal Orb} on normal{Cobalt Jewel} +Variant: Pre 2.5.0 +Variant: Pre 3.20.0 +Variant: Current +Radius: Large +{variant:1}IncreasedEnergyShieldPercentUniqueJewel51[8,12] +{variant:2,3}IncreasedEnergyShieldPercentUniqueJewel51 +LifeInRadiusBecomesEnergyShieldAtHalfValueUniqueJewel51 +{variant:3}Corrupted +]],[[ +Fertile Mind +Cobalt Jewel +Source: Use currency{Vaal Orb} on normal{Cobalt Jewel} +Variant: Pre 3.20.0 +Variant: Current +Radius: Large +IntelligenceUniqueJewel11 +JewelDexToInt +{variant:2}Corrupted +]],[[ +Fevered Mind +Cobalt Jewel +Source: Use currency{Vaal Orb} on normal{Cobalt Jewel} +Variant: Pre 3.10.0 +Variant: Pre 3.11.0 +Variant: Current +Limited to: 1 +Radius: Small +{variant:3}IntelligenceUnique__21 +{variant:1}SpellDamageUniqueCorruptedJewel3_[20,30] +{variant:2}SpellDamageUniqueCorruptedJewel3_ +{variant:1}ManaCostIncreasedUniqueCorruptedJewel3[-100,-100] +{variant:2}ManaCostIncreasedUniqueCorruptedJewel3 +{variant:3}NotablesGrantManaCostAndSpellDamageUnique1 +Corrupted +]],[[ +Fluid Motion +Viridian Jewel +Source: Use currency{Vaal Orb} on normal{Viridian Jewel} +Variant: Pre 3.20.0 +Variant: Current +Radius: Large +DexterityUniqueJewel13 +JewelStrToDex +{variant:2}Corrupted +]],[[ +Fortress Covenant +Cobalt Jewel +Source: Use currency{Vaal Orb} on normal{Cobalt Jewel} +Variant: Pre 3.20.0 +Variant: Current +Requires Level: 20 +Limited to: 1 +Radius: Medium +NotablesGrantMinionDamageTakenUnique__1_ +MinionDamageUnique__6 +MinionAttackBlockChanceUnique__1 +MinionSpellBlockChanceUnique__1_ +{variant:2}Corrupted +]],[[ +Fragility +Crimson Jewel +Source: Use currency{Vaal Orb} on normal{Crimson Jewel} +ReducedMaximumEnduranceChargeUniqueCorruptedJewel17 +Corrupted +]],[[ +Replica Fragility +Crimson Jewel +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +GainEnduranceChargeEverySecondUnique__1 +Corrupted +]],[[ +Healthy Mind +Cobalt Jewel +Source: Use currency{Vaal Orb} on normal{Cobalt Jewel} +Variant: Pre 3.20.0 +Variant: Current +Limited to: 1 +Radius: Large +MaximumManaUniqueJewel54 +LifePassivesBecomeManaPassivesInRadiusUniqueJewel54 +{variant:2}Corrupted +]],[[ +Hidden Potential +Viridian Jewel +Source: Use currency{Vaal Orb} on normal{Viridian Jewel} +Variant: Pre 3.20.0 +Variant: Current +Limited to: 1 +IncreasedDamagePerMagicItemJewel25 +{variant:2}Corrupted +]],[[ +Hungry Abyss +Viridian Jewel +Source: No longer obtainable +Limited to: 1 +CorruptThresholdLifeLeechUsesChaosDamageUniqueCorruptedJewel10 +Corrupted +]],[[ +Inertia +Crimson Jewel +Source: Use currency{Vaal Orb} on normal{Crimson Jewel} +Variant: Pre 3.20.0 +Variant: Current +Radius: Large +StrengthUniqueJewel34 +JewelDexToStr +{variant:2}Corrupted +]],[[ +Mutated Growth +Cobalt Jewel +Source: No longer obtainable +Limited to: 1 +IncreasedCorruptedGemExperienceUniqueCorruptedJewel9 +Corrupted +]],[[ +Pacifism +Viridian Jewel +Source: Use currency{Vaal Orb} on normal{Viridian Jewel} +ReducedMaximumFrenzyChargesUniqueCorruptedJewel16 +Corrupted +]],[[ +Replica Pacifism +Viridian Jewel +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +GainFrenzyChargeEverySecondUnique__1 +Corrupted +]],[[ +Powerlessness +Cobalt Jewel +Source: Use currency{Vaal Orb} on normal{Cobalt Jewel} +ReducedMaximumPowerChargesUniqueCorruptedJewel18 +Corrupted +]],[[ +Replica Powerlessness +Cobalt Jewel +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +GainPowerChargeEverySecondUnique__1 +Corrupted +]],[[ +Quickening Covenant +Viridian Jewel +Source: Use currency{Vaal Orb} on normal{Viridian Jewel} +Variant: Pre 3.20.0 +Variant: Current +Requires Level: 20 +Limited to: 1 +Radius: Medium +NotablesGrantMinionMovementSpeedUnique__1_ +MinionAttackAndCastSpeedUnique__1 +MinionSuppressSpellChanceUnique__1 +{variant:2}Corrupted +]],[[ +Rain of Splinters +Crimson Jewel +Source: Use currency{Vaal Orb} on normal{Crimson Jewel} +Variant: Pre 3.20.0 +Variant: Current +Limited to: 1 +ReducedTotemDamageUniqueJewel26 +AdditionalTotemProjectilesUniqueJewel26 +{variant:2}Corrupted +]],[[ +Reckless Defence +Cobalt Jewel +Source: Use currency{Vaal Orb} on normal{Cobalt Jewel} +Variant: Pre 3.4.0 +Variant: Pre 3.20.0 +Variant: Pre 3.25.0 +Variant: Current +{variant:1}SpellBlockPercentageUnique__1[6,6] +{variant:2,3}SpellBlockPercentageUnique__1[2,4] +{variant:4}SpellBlockPercentageUnique__1 +ChanceToBeCritJewelUnique__1 +{variant:1,2,3}BlockPercentUnique__1[2,4] +{variant:4}AdditionalBlockUnique__1 +{variant:3}Corrupted +]],[[ +Sacrificial Harvest +Viridian Jewel +Source: No longer obtainable +Limited to: 1 +AdditionalVaalSoulOnKillUniqueCorruptedJewel4_ +Corrupted +]],[[ +Seething Fury +Viridian Jewel +Source: Use currency{Vaal Orb} on normal{Viridian Jewel} +Variant: Pre 3.16.0 +Variant: Pre 3.20.0 +Variant: Current +League: Legion +Requires Level: 20 +Limited to: 1 +AttackDamageWhileHoldingShieldUnique__1 +{variant:1}SpectralShieldThrowThresholdJewel1_[20,20] +SpectralShieldThrowThresholdJewel2 +{variant:2,3}SpectralShieldThrowThresholdJewel1_[15,15] +{variant:3}Corrupted +]],[[ +Self-Flagellation +Viridian Jewel +Source: Use currency{Vaal Orb} on normal{Viridian Jewel} +Limited to: 1 +IncreasedDamagePerCurseOnSelfCorruptedJewel13_ +AdditionalCurseOnSelfUniqueCorruptedJewel13 +Corrupted +]],[[ +Soul's Wick +Cobalt Jewel +Source: No longer obtainable +Variant: Pre 3.20.0 +Variant: Current +Limited to: 1 +MaximumMinionCountUnique__1__ +RaiseSpectreManaCostUnique__1_ +SpectreCriticalStrikeChanceUnique__1 +SpectreHaveBaseDurationUnique__1 +{variant:2}Corrupted +]],[[ +The Golden Rule +Viridian Jewel +Source: Use currency{Vaal Orb} on normal{Viridian Jewel} +Variant: Pre 3.20.0 +Variant: Current +IncreasedArmourWhileBleedingUnique__1 +ReflectBleedingToSelfUnique__1 +ChaosResistancePerPoisonOnSelfUnique__1 +ReflectPoisonsToSelfUnique__1 +{variant:2}Corrupted +]],[[ +To Dust +Cobalt Jewel +Source: Use currency{Vaal Orb} on normal{Cobalt Jewel} +Variant: Pre 3.0.0 +Variant: Pre 3.20.0 +Variant: Current +SkeletonDurationUniqueJewel1_ +MinionDamageUniqueJewel1 +{variant:1}SkeletonAttackSpeedUniqueJewel1[2,2] +{variant:2,3}MaximumMinionCountUniqueJewel1 +{variant:3}Corrupted +]],[[ +Vaal Sentencing +Cobalt Jewel +Source: No longer obtainable +VaalSkillCriticalStrikeChanceCorruptedJewel6 +Corrupted +]],[[ +Weight of Sin +Viridian Jewel +Source: No longer obtainable +IncreasedChaosDamageUniqueCorruptedJewel2 +ReducedMovementVelocityUniqueCorruptedJewel2_ +Corrupted +]], +-- Jewel: Quest rewards +[[ +Assassin's Haste +Cobalt Jewel +Source: No longer obtainable +Limited to: 1 +ManaRegenerationUniqueJewel43 +MovementVelocityUniqueJewel43 +AttackAndCastSpeedJewelUniqueJewel43 +]],[[ +Conqueror's Efficiency +Crimson Jewel +Source: No longer obtainable +Limited to: 1 +ManaCostReductionUniqueJewel44 +SkillEffectDurationUniqueJewel44 +ManaReservationEfficiencyUniqueJewel44_ +]],[[ +Replica Conqueror's Efficiency +Crimson Jewel +Source: No longer obtainable +League: Heist +Limited to: 1 +SkillEffectDurationUniqueJewel44 +MaximumRageUnique__2 +ManaCostTotalNonChannelledUnique__1__ +]],[[ +Conqueror's Longevity +Viridian Jewel +Source: No longer obtainable +Variant: Pre 3.16.0 +Variant: Current +Limited to: 1 +{variant:1}ChanceToAvoidElementalStatusAilmentsUniqueJewel46[3,3] +{variant:2}ChanceToAvoidElementalStatusAilmentsUniqueJewel46 +{variant:1}FlaskLifeRecoveryRateUniqueJewel46[8,8] +{variant:2}FlaskLifeRecoveryRateUniqueJewel46 +{variant:1}ChanceToSuppressSpellsUniqueJewel46[3,3] +{variant:2}ChanceToSuppressSpellsUniqueJewel46 +]],[[ +Conqueror's Potency +Cobalt Jewel +Source: No longer obtainable +Limited to: 1 +CurseEffectivenessUniqueJewel45 +IncreasedFlaskEffectUniqueJewel45 +IncreasedAuraEffectUniqueJewel45 +]],[[ +Poacher's Aim +Viridian Jewel +Source: No longer obtainable +Limited to: 1 +ProjectileDamageJewelUniqueJewel41 +AdditionalPierceUniqueJewel__1 +]],[[ +Survival Instincts +Viridian Jewel +Source: No longer obtainable +Limited to: 1 Survival +Variant: Pre 3.16.0 +Variant: Current +{variant:1}DexterityUniqueJewel8 +{variant:1}AllResistancesUniqueJewel8 +{variant:2}FlaskChargesUniqueJewel___8 +{variant:2}FlaskDurationUniqueJewel_____8 +ItemLimitUniqueJewel9 +]],[[ +Survival Secrets +Cobalt Jewel +Source: No longer obtainable +Limited to: 1 Survival +Variant: Pre 3.16.0 +Variant: Current +{variant:1}AddedManaRegenerationUniqueJewel10 +{variant:1}ElementalDamageUniqueJewel10 +{variant:2}FlaskEffectUniqueJewel_10 +{variant:2}FlaskChargePerSecondInactiveUniqueJewel_10 +ItemLimitUniqueJewel8 +]],[[ +Survival Skills +Crimson Jewel +Source: No longer obtainable +Limited to: 1 Survival +Variant: Pre 3.16.0 +Variant: Current +{variant:1}IncreasedPhysicalDamagePercentUniqueJewel9 +{variant:1}IncreasedPhysicalDamageReductionRatingUniqueJewel9 +{variant:2}FlaskChargeOnHitNonUniqueUniqueJewel____9 +{variant:2}FlaskChargesFromKillUniqueJewel_9 +ItemLimitUniqueJewel10 +]],[[ +Warlord's Reach +Crimson Jewel +Source: No longer obtainable +Variant: Pre 3.16.0 +Variant: Current +Limited to: 1 +{variant:1}AttackDamageUniqueJewel42[8,8] +{variant:1}IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42[1,1] +{variant:2}AttackDamageUniqueJewel42 +{variant:2}IncreasedMeleeWeaponAndUnarmedRangeUniqueJewel42 +]],[[ +The Adorned +Crimson Jewel +Variant: Pre 3.25.0 +Variant: Current +League: Affliction +Source: Vaal Aspect Combination +{variant:1}CorruptedMagicJewelModEffectUnique__1[50,150] +{variant:2}CorruptedMagicJewelModEffectUnique__1 +]], +-- Jewel: Labyrinth rewards +[[ +Emperor's Cunning +Viridian Jewel +Source: Drops in The Eternal Labyrinth +Limited to: 1 +PercentageDexterityUniqueJewel29 +PercentIncreasedAccuracyJewelUnique__1 +ActorSizeUnique__1 +]],[[ +Emperor's Mastery +Prismatic Jewel +Source: Drops in The Eternal Labyrinth +Limited to: 1 +AllAttributesPercentUnique__1 +MaximumLifeUnique__2 +ActorSizeUnique__1 +AllDefencesUnique__1 +]],[[ +Emperor's Might +Crimson Jewel +Source: Drops in The Eternal Labyrinth +Limited to: 1 +PercentageStrengthUniqueJewel29 +AllDamageUnique__1 +ActorSizeUnique__1 +]],[[ +Emperor's Wit +Cobalt Jewel +Source: Drops in The Eternal Labyrinth +Limited to: 1 +PercentageIntelligenceUnique__2 +CriticalStrikeChanceUnique__1 +ActorSizeUnique__1 +]], +-- Jewel: Timeless +[[ +Brutal Restraint +Timeless Jewel +League: Legion +Source: Drops from Maraketh Legion +Limited to: 1 Historic +Variant: Asenath (Dance with Death) +Variant: Deshret (Wind Dancer) (Pre 3.11.0) +Variant: Nasima (Second Sight) +Variant: Balbala (The Traitor) +Radius: Large +Implicits: 0 +{variant:1}Denoted service of (500-8000) dekhara in the akhara of Asenath +{variant:2}Denoted service of (500-8000) dekhara in the akhara of Deshret +{variant:3}Denoted service of (500-8000) dekhara in the akhara of Nasima +Passives in radius are Conquered by the Maraketh +Historic +]],[[ +Elegant Hubris +Timeless Jewel +League: Legion +Source: Drops from Eternal Legion +Limited to: 1 Historic +Variant: Cadiro (Supreme Decadence) +Variant: Chitus (Supreme Ego) (Pre 3.11.0) +Variant: Victario (Supreme Grandstanding) +Variant: Caspiro (Supreme Ostentation) +Radius: Large +Implicits: 0 +{variant:1}Commissioned (2000-160000) coins to commemorate Cadiro +{variant:2}Commissioned (2000-160000) coins to commemorate Chitus +{variant:3}Commissioned (2000-160000) coins to commemorate Victario +{variant:4}Commissioned (2000-160000) coins to commemorate Caspiro +Passives in radius are Conquered by the Eternal Empire +Historic +]],[[ +Glorious Vanity +Timeless Jewel +League: Legion +Source: Drops from Vaal Legion +Limited to: 1 Historic +Variant: Doryani (Corrupted Soul) +Variant: Xibaqua (Divine Flesh) +Variant: Zerphi (Eternal Youth) (Pre 3.11.0) +Variant: Ahuana (Immortal Ambition) +Radius: Large +Implicits: 0 +{variant:1}Bathed in the blood of (100-8000) sacrificed in the name of Doryani +{variant:2}Bathed in the blood of (100-8000) sacrificed in the name of Xibaqua +{variant:3}Bathed in the blood of (100-8000) sacrificed in the name of Zerphi +{variant:4}Bathed in the blood of (100-8000) sacrificed in the name of Ahuana +Passives in radius are Conquered by the Vaal +Historic +]],[[ +Heroic Tragedy +Timeless Jewel +League: Legion +Source: Drops from Legion in Mirage +Limited to: 1 Historic +Variant: Vorana (Black Scythe Training) +Variant: Uhtred (Celestial Mathematics) +Variant: Medved (The Unbreaking Circle) +Radius: Large +Implicits: 0 +{variant:1}Remembrancing (100-8000) songworthy deeds by the line of Vorana +{variant:2}Remembrancing (100-8000) songworthy deeds by the line of Uhtred +{variant:3}Remembrancing (100-8000) songworthy deeds by the line of Medved +Passives in radius are Conquered by the Kalguur +Historic +]],[[ +Lethal Pride +Timeless Jewel +League: Legion +Source: Drops from Karui Legion +Limited to: 1 Historic +Variant: Kaom (Strength of Blood) +Variant: Kiloava (Glancing Blows) (Pre 3.11.0) +Variant: Rakiata (Tempered by War) +Variant: Akoya (Chainbreaker) +Radius: Large +Implicits: 0 +{variant:1}Commanded leadership over (10000-18000) warriors under Kaom +{variant:2}Commanded leadership over (10000-18000) warriors under Kiloava +{variant:3}Commanded leadership over (10000-18000) warriors under Rakiata +{variant:4}Commanded leadership over (10000-18000) warriors under Akoya +Passives in radius are Conquered by the Karui +Historic +]],[[ +Militant Faith +Timeless Jewel +League: Legion +Source: Drops from Templar Legion +Limited to: 1 Historic +Has Alt Variant: true +Has Alt Variant Two: true +Selected Variant: 1 +Variant: Avarius (Power of Purpose) +Variant: Dominus (Inner Conviction) +Variant: Venarius (The Agnostic) (Pre 3.11.0) +Variant: Maxarius (Transcendence) +Variant: Totem Damage +Variant: Brand Damage +Variant: Channelling Damage +Variant: Area Damage +Variant: Elemental Damage +Variant: Elemental Resistances +Variant: Effect of non-Damaging Ailments +Variant: Elemental Ailment Duration +Variant: Duration of Curses +Variant: Minion Attack and Cast Speed +Variant: Minions Accuracy Rating +Variant: Mana Regen +Variant: Skill Cost +Variant: Non-Curse Aura Effect +Variant: Defences from Shield +Radius: Large +Implicits: 0 +{variant:1}Carved to glorify (2000-10000) new faithful converted by High Templar Avarius +{variant:2}Carved to glorify (2000-10000) new faithful converted by High Templar Dominus +{variant:3}Carved to glorify (2000-10000) new faithful converted by High Templar Venarius +{variant:4}Carved to glorify (2000-10000) new faithful converted by High Templar Maxarius +{variant:5}TotemDamagePerDevotion +{variant:6}BrandDamagePerDevotion +{variant:7}ChannelledSkillDamagePerDevotion +{variant:8}AreaDamagePerDevotion +{variant:9}ElementalDamagePerDevotion_ +{variant:10}ElementalResistancesPerDevotion +{variant:11}AilmentEffectPerDevotion +{variant:12}ElementalAilmentSelfDurationPerDevotion_ +{variant:13}CurseSelfDurationPerDevotion +{variant:14}MinionAttackAndCastSpeedPerDevotion +{variant:15}MinionAccuracyRatingPerDevotion_ +{variant:16}AddedManaRegenerationPerDevotion +{variant:17}ReducedManaCostPerDevotion +{variant:18}AuraEffectPerDevotion +{variant:19}ShieldDefencesPerDevotion +Passives in radius are Conquered by the Templars +Historic +]], +} diff --git a/src/Export/Uniques/mace.lua b/src/Export/Uniques/mace.lua new file mode 100644 index 0000000000..c5a38dd2a5 --- /dev/null +++ b/src/Export/Uniques/mace.lua @@ -0,0 +1,929 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Weapon: One Handed Mace +[[ +Brightbeak +War Hammer +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Current +Requires Level 20, 71 Str +Implicits: 2 +{variant:2,3}StunThresholdReductionImplicitMace1 +{variant:1}StunDurationImplicitMace1[20,20] +LocalIncreasedPhysicalDamagePercentUniqueOneHandMace1 +{variant:1,2}LocalIncreasedAttackSpeedUniqueOneHandMace1[50,50] +{variant:3}LocalIncreasedAttackSpeedUniqueOneHandMace1 +LocalCriticalStrikeChanceUniqueOneHandMace1 +FireResistUniqueOneHandMace1 +LightningResistUniqueOneHandMace1 +]],[[ +Callinellus Malleus +Auric Mace +Variant: Pre 2.6.0 +Variant: Current +Requires Level 66, 212 Str +Implicits: 2 +{variant:2}StunThresholdReductionImplicitMace2 +{variant:1}StunDurationImplicitMace1[40,40] +LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace8 +LocalAddedPhysicalDamageUniqueOneHandMace5 +StunThresholdReductionUniqueOneHandMace5 +CannotKnockBackUniqueOneHandMace5_ +ChillOnAttackStunUniqueOneHandMace5 +]],[[ +Cameria's Maul +Gavel +Variant: Pre 2.6.0 +Variant: Current +Requires Level 60, 212 Str +Implicits: 2 +{variant:2}StunThresholdReductionImplicitMace2 +{variant:1}StunDurationImplicitMace1[40,40] +LocalIncreasedPhysicalDamageUniqueOneHandMace4 +LocalAddedColdDamageUniqueOneHandMace4_ +LocalCriticalStrikeChanceUniqueOneHandMace4 +IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4 +ColdWeaponDamageUniqueOneHandMace4 +]],[[ +Cameria's Avarice +Gavel +Source: Vendor Recipe +Requires Level 60, 212 Str +Implicits: 1 +StunThresholdReductionImplicitMace2 +GrantsLevel20IcicleNovaTriggerUnique__1 +LocalIncreasedPhysicalDamageUniqueOneHandMace4 +LocalAddedPhysicalDamageUnique__34 +LocalCriticalStrikeChanceUniqueOneHandMace4 +IncreasedRarityWhenSlayingFrozenUniqueOneHandMace4 +ColdWeaponDamageUniqueOneHandMace4 +]],[[ +Clayshaper +Rock Breaker +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 41, 134 Str +Implicits: 2 +{variant:2}StunThresholdReductionImplicitMace2 +{variant:1}StunDurationImplicitMace1[40,40] +GrantsLevel12StoneGolem +LocalAddedPhysicalDamageUnique__9 +LocalIncreasedAttackSpeedUnique__10 +{variant:1,2}MinionLifeUnique__1 +MaximumGolemsUnique__1 +{variant:1,2}AddedPhysicalToMinionAttacksUnique__1 +{variant:3}GolemsAddedPhysicalDamageUnique__1 +]],[[ +Flesh-Eater +Dream Mace +Variant: Pre 2.6.0 +Variant: Current +Requires Level 32, 107 Str +Implicits: 2 +{variant:2}StunThresholdReductionImplicitMace1 +{variant:1}StunDurationImplicitMace1[20,20] +LocalIncreasedPhysicalDamagePercentUniqueOneHandMace8 +LocalAddedPhysicalDamageUniqueOneHandMace8 +LocalIncreasedAttackSpeedUniqueOneHandMace8 +LifeLeechLocalPermyriadUniqueOneHandMace8__ +{variant:1}LifeLeechPhysicalAgainstBleedingEnemiesUniqueOneHandMace8[100,100] +{variant:2}LifeLeechPhysicalAgainstBleedingEnemiesUniqueOneHandMace8 +{variant:1}LocalChanceToBleedUniqueOneHandMace8[10,10] +{variant:2}LocalChanceToBleedUniqueOneHandMace8 +]],[[ +Frostbreath +Ornate Mace +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Requires Level 50, 161 Str +Implicits: 2 +{variant:2,3}StunThresholdReductionImplicitMace2 +{variant:1}StunDurationImplicitMace1[40,40] +{variant:1,2}LocalAddedPhysicalDamageUnique__6_[16,22][26,32] +{variant:3}LocalAddedPhysicalDamageUnique__6_ +{variant:1,2}LocalAddedColdDamageUnique__2[16,22][26,32] +{variant:3}LocalAddedColdDamageUnique__2 +LocalIncreasedAttackSpeedUnique__12 +FireResistUnique__4 +IncreasedChillDurationUnique__1 +LocalDoubleDamageToChilledEnemiesUnique__1 +]],[[ +Replica Frostbreath +Ornate Mace +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 50, 161 Str +Implicits: 1 +StunThresholdReductionImplicitMace2 +LocalAddedChaosDamageUnique__2 +LocalIncreasedAttackSpeedUnique__11 +ChaosResistUnique__15 +ChaosDamageCanChill +LocalDoubleDamageToChilledEnemiesUnique__1 +]],[[ +Gorebreaker +Spiked Club +Variant: Pre 2.6.0 +Variant: Current +Requires Level 10, 41 Str +Implicits: 2 +{variant:2}StunThresholdReductionImplicitMace1 +{variant:1}StunDurationImplicitMace1[20,20] +LocalIncreasedPhysicalDamagePercentUniqueOneHandMace6 +LocalReducedAttackSpeedUniqueOneHandMace6 +StunThresholdReductionUniqueOneHandMace6 +StunDurationUniqueOneHandMace6 +MeleeDamageAgainstBleedingEnemiesUniqueOneHandMace6 +]],[[ +Lavianga's Wisdom +War Hammer +League: Legion +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Current +Requires Level 20, 71 Str +Implicits: 2 +{variant:2,3}StunThresholdReductionImplicitMace1 +{variant:1}StunDurationImplicitMace1[20,20] +{variant:3}LocalIncreasedPhysicalDamagePercentUnique__55[160,200] +{variant:1,2}LocalIncreasedPhysicalDamagePercentUnique__55 +{variant:1,2}IncreasedLifeImplicitShield1 +{variant:3}IncreasedLifeUniqueOneHandMace7 +{variant:1,2}IncreasedManaUniqueBootsStrDex3 +{variant:3}IncreasedManaUniqueOneHandMace7 +ReducedMovementVelocityUniqueOneHandMace7 +{variant:1,2}AreaOfEffectImplicitTwoHandMace1__ +{variant:3}AreaOfEffectUniqueOneHandMace7 +{variant:1,2}AreaDamageUniqueOneHandMace7[10,15] +{variant:3}AreaDamageUniqueOneHandMace7 +]],[[ +Mjölner +Gavel +Variant: Pre 2.0.0 +Variant: Pre 2.4.0 +Variant: Pre 2.6.0 +Variant: Pre 3.15.0 +Variant: Current +Requires Level 60, 412 Str, 300 Int +Implicits: 2 +{variant:4,5}StunThresholdReductionImplicitMace2 +{variant:1,2,3}StunDurationImplicitMace1[40,40] +{variant:1}CastSocketedLightningSpellsOnHit[50,50] +{variant:2}CastSocketedLightningSpellsOnHit[30,30] +{variant:3,4,5}CastSocketedLightningSpellsOnHit +IntelligenceRequirementsUniqueOneHandMace3 +StrengthRequirementsUniqueOneHandMace3 +LocalIncreasedPhysicalDamagePercentUniqueOneHandMace3 +{variant:1,2,3,4}WeaponLightningDamageUniqueOneHandMace3[30,40] +{variant:5}WeaponLightningDamageUniqueOneHandMace3 +AdditionalChainUniqueOneHandMace3 +{variant:1,2,3,4}Socketed Lightning Spells deal 100% increased Spell Damage if Triggered +]],[[ +Nebulis +Void Sceptre +Variant: Pre 3.27.0 +Variant: Current +League: Synthesis +Source: Drops from unique{Synthete Nightmare} in normal{The Cortex} (Uber) +Requires Level 68, 104 Str, 122 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptre3 +{variant:2}ClassicNebulisImplicitModifierMagnitudeUnique_1 +IncreasedCastSpeedUnique__16 +{variant:1}ColdDamagePerResistanceAbove75Unique__1 +{variant:2}ElementalDamagePerResistanceAbove75Unique_1 +{variant:1}LightningDamagePerResistanceAbove75Unique__1 +]],[[ +Replica Nebulis +Void Sceptre +Variant: Pre 3.27.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 68, 104 Str, 122 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptre3 +{variant:2}ReplicaNebulisImplicitModifierMagnitudeUnique_1 +IncreasedCastSpeedUnique__14 +{variant:1}ColdDamagePerMissingColdResistanceUnique__1 +{variant:2}ElementalDamagePerMissingResistanceUnique_1 +{variant:1}FireDamagePerMissingFireResistanceUnique__1 +]],[[ +Nebuloch +Nightmare Mace +Elder Item +Source: Drops from unique{The Elder} +Variant: Pre 3.4.0 +Variant: Current +Requires Level 68, 212 Str +Implicits: 1 +StunThresholdReductionImplicitMace1 +LocalAddedPhysicalDamageUnique__30_ +AttackPhysicalDamageAddedAsFireUnique__2 +ChaosResistancePerEnduranceChargeUnique__1_ +ReducedElementalDamageTakenHitsPerEnduranceChargeUnique__1 +AddedPhysicalDamagePerEnduranceChargeUnique__1 +ArmourPerEnduranceChargeUnique__1 +{variant:1}DamageTakenPerEnduranceChargeWhenHitUnique__1_[24000,24000] +{variant:2}DamageTakenPerEnduranceChargeWhenHitUnique__1_ +]], +[[ +The Monastery Bell +Dream Mace +Requires Level 32, 107 Str +Implicits: 1 +StunThresholdReductionImplicitMace1 +LocalIncreasedPhysicalDamagePercentUniqueOneHandMace1 +LocalAddedPhyiscalDamageUnique__43 +IncreasedAttackSpeedUniqueShieldDex6 +BlockIsUnluckyUnique__1 +CountAsBlockingAttackFromShieldAttackFirstTargetUnique__1 +]], +-- Weapon: Sceptre +[[ +Augyre +Void Sceptre +Elder Item +Variant: Pre 3.5.0 +Variant: Current +Requires Level 68, 104 Str, 122 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew22 +LocalIncreasedPhysicalDamagePercentUnique__29 +LocalIncreasedAttackSpeedUnique__20 +LocalCriticalStrikeChanceUnique__14 +ConvertPhysicaltoLightningUnique__3 +GainElementalOverloadEvery16SecondsUnique__1 +GainResoluteTechniqueWithoutElementalOverloadUnique__1 +{variant:2}PhysicalDamageWhileResoluteTechniqueUnique__1__ +]],[[ +Axiom Perpetuum +Bronze Sceptre +Variant: Pre 2.3.0 +Variant: Current +Requires Level 10, 22 Str, 22 Int +Implicits: 2 +{variant:1}ElementalDamagePercentImplicitSceptreNew2[10,10] +{variant:2}ElementalDamagePercentImplicitSceptreNew2 +SpellAddedFireDamageUnique__4 +SpellAddedColdDamageUnique__3 +SpellAddedLightningDamageUnique__3 +IncreasedCastSpeedUnique__4 +SpellCriticalStrikeChanceUnique__1 +]],[[ +Balefire +Opal Sceptre +Requires Level 60, 95 Str, 131 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew18 +ScorchingRaySkillUnique__1 +IncreasedCastSpeedUnique__10 +MaximumLifeOnKillPercentUnique__2 +MaximumManaOnKillPercentUnique__1 +FireBeamLengthUnique__1 +]],[[ +Bitterdream +Shadow Sceptre +Requires Level 32, 52 Str, 62 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew12___ +DisplaySupportedByBonechillUnique__1 +DisplaySupportedByHypothermiaUnique__1 +DisplaySupportedByIceBiteUnique__2 +DisplaySupportedByColdPenetrationUnique__1 +DisplaySupportedByAddedColdDamageUnique__1 +DisplaySupportedByReducedManaUnique__2 +]],[[ +Replica Bitterdream +Shadow Sceptre +Variant: Pre 3.23.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 32, 52 Str, 62 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew8 +{variant:1}DisplaySupportedByElementalPenetrationUnique__2[1,1] +{variant:2}DisplaySupportedByElementalPenetrationUnique__2 +DisplaySupportedByImmolateUnique__1 +DisplaySupportedByUnboundAilmentsUnique__1__ +DisplaySupportedByIceBiteUnique__1 +DisplaySupportedByReducedManaUnique__1 +SupportedByInnervateUnique__2 +]],[[ +The Black Cane +Royal Sceptre +Requires Level 50, 86 Str, 86 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew14 +Intelligence__1 +IncreasedCastSpeedUnique__19__ +ManaRegenerationUnique__11___ +MinionDamageUnique__8_ +PhantasmGrantsBuffUnique__1 +]],[[ +Breath of the Council +Carnal Sceptre +Variant: Pre 3.0.0 +Variant: Current +Requires Level 66, 113 Str, 113 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew20 +LocalIncreasedPhysicalDamagePercentUnique__16 +{variant:1}IncreasedChaosDamageUnique__2[60,80] +{variant:2}IncreasedChaosDamageUnique__2 +AreaOfEffectImplicitTwoHandMace1__ +ChaosSkillEffectDurationUnique__1 +]],[[ +Brutus' Lead Sprinkler +Ritual Sceptre +League: Torment +Variant: Pre 2.3.0 +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Requires Level 28, 51 Str, 51 Int +Implicits: 2 +{variant:1}ElementalDamagePercentImplicitSceptreNew6[10,10] +{variant:2,3,4}ElementalDamagePercentImplicitSceptreNew6 +LocalIncreasedPhysicalDamageUniqueSceptre9 +{variant:1,2}LocalAddedFireDamageAgainstIgnitedEnemiesUniqueSceptre9 +LocalAddedPhysicalDamageUniqueSceptre9 +FireDamagePercentUniqueSceptre9 +LocalIncreasedAttackSpeedUnique__33 +LocalCriticalStrikeChanceUniqueTwoHandMace6 +{variant:3}AddedFireDamagePerStrengthUnique__1[2,2][4,4] +{variant:4}AddedFireDamagePerStrengthUnique__1 +]],[[ +Cerberus Limb +Blood Sceptre +League: Delve +Source: Drops from unique{Ahuatotli, the Blind} +Requires Level 47, 81 Str, 81 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew13 +SpellDamageUnique__9 +IncreasedCastSpeedUnique__11__ +LifeLeechFromSpellsWith30BlockOnShieldUnique__1_ +EnergyShieldPerArmourOnShieldUnique__1 +ArmourPerEvasionRatingOnShieldUnique__1 +EvasionRatingPerEnergyShieldOnShieldUnique__1 +]],[[ +The Dark Seer +Shadow Sceptre +League: Beyond +Variant: Pre 2.3.0 +Variant: Pre 3.0.0 +Variant: Pre 3.11.0 (Life/Mana) +Variant: Pre 3.11.0 (Life/ES) +Variant: Pre 3.11.0 (Mana/ES) +Variant: Pre 3.24.0 (Life/Mana) +Variant: Pre 3.24.0 (Life/ES) +Variant: Pre 3.24.0 (Mana/ES) +Variant: Current (Life/Mana) +Variant: Current (Life/ES) +Variant: Current (Mana/ES) +Requires Level 32, 52 Str, 62 Int +Implicits: 2 +{variant:1}ElementalDamagePercentImplicitSceptreNew12___[15,15] +{variant:2,3,4,5,6,7,8,9,10,11}ElementalDamagePercentImplicitSceptreNew12___ +{variant:1,2,3,4,5}AllDamageUniqueSceptre8[30,50] +{variant:6,7,8}AllDamageUniqueSceptre8 +{variant:9,10,11}GlobalSpellGemsLevelUnique__1 +{variant:1,2,3,4,5}GlobalChanceToBlindOnHitUniqueSceptre8[7,7] +{variant:6,7,8,9,10,11}GlobalChanceToBlindOnHitUniqueSceptre8 +{variant:1,2}ManaGainedOnEnemyDeathPerLevelUniqueSceptre8 +{variant:1,2}EnergyShieldGainedOnEnemyDeathPerLevelUniqueSceptre8 +BlindImmunityUnique__1 +MaledictionOnBlindWhileBlindedUnique__1 +{variant:4,5,7,8}EnergyShieldPerLevelUnique__1[1,1] +{variant:10,11}EnergyShieldPerLevelUnique__1 +{variant:3,4,6,7}LifePerLevelUnique__1[1,1] +{variant:9,10}LifePerLevelUnique__1 +{variant:3,5,6,8}ManaPerLevelUnique__1[1,1] +{variant:9,11}ManaPerLevelUnique__1 +]],[[ +Death's Hand +Karui Sceptre +Variant: Pre 2.3.0 +Variant: Pre 3.7.0 +Variant: Current +Requires Level 56, 96 Str, 96 Int +Implicits: 2 +{variant:1}ElementalDamagePercentImplicitSceptreNew16[10,10] +{variant:2,3}ElementalDamagePercentImplicitSceptreNew16 +{variant:1,2}LocalAddedPhysicalDamageUniqueSceptre10[30,41][80,123] +{variant:3}LocalAddedPhysicalDamageUniqueSceptre10 +LocalCriticalStrikeChanceUniquSceptre10 +PowerChargeOnStunUniqueSceptre10 +UnholyMightOnCritUniqueSceptre10 +]],[[ +Doon Cuebiyari +Vaal Sceptre +Variant: Pre 2.3.0 +Variant: Current +Requires Level 64, 113 Str, 113 Int +Implicits: 2 +{variant:1}ElementalDamagePercentImplicitSceptreNew20[10,10] +{variant:2}ElementalDamagePercentImplicitSceptreNew20 +DisplaySocketedGemsSupportedByIronWillUniqueSceptre6 +StrengthUniqueSceptre6 +IncreasedCastSpeedUniqueSceptre6 +IncreasedManaUniqueSceptre6 +DamagePerStrengthInMainHandUniqueSceptre6 +ArmourPerStrengthInOffHandUniqueSceptre6 +]],[[ +Doryani's Catalyst +Vaal Sceptre +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Apex of Sacrifice} +Variant: Pre 2.3.0 +Variant: Current +Requires Level 75, 113 Str, 113 Int +Implicits: 2 +{variant:1}ElementalDamagePercentImplicitSceptreNew21__[10,10] +{variant:2}ElementalDamagePercentImplicitSceptreNew21__ +SocketedGemsGetElementalProliferationUniqueSceptre7 +LocalAddedPhysicalDamageUniqueSceptre7 +LocalIncreasedAttackSpeedUniqueSceptre7 +IncreasedCastSpeedUnique__12 +CriticalSrikeChanceUniqueSceptre7 +ElementalDamageLeechedAsLifePermyriadUniqueSceptre7_ +ElementalDamageUniqueSceptre7 +]],[[ +Earendel's Embrace +Grinning Fetish +Requires Level 35, 62 Str, 62 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew9 +AllAttributesUnique__18 +MinionDamageUnique__5 +SkeletonsCoverEnemiesInAshUnique__1 +SkeletonsTakeFireDamagrPerSecondUnique__1 +SkeletonsHaveAvatarOfFireUnique__1_ +]],[[ +Replica Earendel's Embrace +Grinning Fetish +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 35, 62 Str, 62 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew10 +AllAttributesUnique__11 +MinionDamageUnique__5 +ZombiesCoverInAshOnHitUnique__1 +ZombiesHaveAvatarOfFireUnique__1 +ZombiesTakeFireDamagePerSecondUnique__1_ +]],[[ +Maata's Teaching +Karui Sceptre +Variant: Pre 3.25.0 +Variant: Current +Requires Level 56, 96 Str, 96 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew17 +IntelligenceUnique__10 +{variant:1}LocalCriticalStrikeChanceUnique__21[25,50] +{variant:2}LocalCriticalStrikeChanceUnique__21 +GlobalIncreaseMinionSpellSkillGemLevelUnique__1 +MinionsUseMainHandBaseCritUnique__1 +]],[[ +Mon'tregul's Grasp +Void Sceptre +Variant: Pre 1.2.0 +Variant: Pre 2.3.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 68, 104 Str, 122 Int +Implicits: 2 +{variant:1,2}ElementalDamagePercentImplicitSceptre3[15,15] +{variant:3,4,5}ElementalDamagePercentImplicitSceptre3 +NumberOfZombiesSummonedPercentageUniqueSceptre3 +{variant:1}ZombieLifeUniqueSceptre3[500,500] +{variant:2,3}ZombieLifeUniqueSceptre3[2000,2000] +{variant:4,5}ZombieLifeUniqueSceptre3 +ZombieChaosElementalResistsUniqueSceptre3 +ZombieSizeUniqueSceptre3_ +{variant:1,2,3,4}ZombiesExplodeEnemiesOnHitUniqueSceptre3[20,20] +{variant:5}ZombiesExplodeEnemiesOnHitUniqueSceptre3 +{variant:1,2,3,4}ZombieDamageUniqueSceptre3[80,100] +{variant:5}ZombieDamageUniqueSceptre3 +]],[[ +Nycta's Lantern +Crystal Sceptre +Variant: Pre 2.0.0 +Variant: Pre 2.3.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 41, 59 Str, 85 Int +Implicits: 2 +{variant:1,2}ElementalDamagePercentImplicitSceptreNew15[20,20] +{variant:3,4,5}ElementalDamagePercentImplicitSceptreNew15 +{variant:4}LocalIncreaseSocketedFireGemLevelUnique__1_ +{variant:1,2,3}ItemActsAsFireDamageSupportUniqueSceptre2 +{variant:1,2,3}ItemActsAsColdToFireSupportUniqueSceptre2 +{variant:1,2,3,4}ItemActsAsFirePenetrationSupportUniqueSceptre2 +{variant:4}SupportFlatAddedFireDamageUnique__1 +{variant:1,2,3,4}SpellDamageUniqueSceptre2 +{variant:2,3,4,5}LocalIncreasedPhysicalDamageUniqueOneHandMace5 +{variant:5}LocalAddedFireDamageUnique__7 +{variant:1,2,3,4}LifeGainPerTargetUniqueSceptre2 +{variant:1,2,3,4}LightRadiusUnique__11[25,25] +{variant:5}LightRadiusUnique__11 +{variant:5}BattlemageKeystoneUnique__3 +]],[[ +Sign of the Sin Eater +Tyrant's Sekhem +League: Legion +Requires Level 58, 99 Str, 99 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew16 +GrantsLevel30SmiteUnique__1 +StrengthIntelligenceUnique__2 +ElementalAilmentsOnYouInsteadOfAlliesUnique__1 +]],[[ +Singularity +Platinum Sceptre +Variant: Pre 2.3.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 62, 113 Str, 113 Int +Implicits: 2 +{variant:1}ElementalDamagePercentImplicitSceptreNew11[10,10] +{variant:2,3}ElementalDamagePercentImplicitSceptreNew11 +{variant:1,2}SpellAddedLightningDamageUnique__2[30,40][60,70] +{variant:3}SpellAddedLightningDamageUnique__2 +IncreasedCastSpeedUnique__2 +ManaCostReductionUnique__1 +DisplayNearbyEnemiesAreSlowedUnique__1 +{variant:1,2}DamageAgainstNearEnemiesUnique__1[60,80] +{variant:3}DamageAgainstNearEnemiesUnique__1 +]],[[ +Spine of the First Claimant +Iron Sceptre +Source: No longer obtainable +Variant: Pre 2.3.0 +Variant: Pre 3.5.0 +Variant: Current +Requires Level 20, 38 Str, 38 Int +Implicits: 2 +{variant:1}ElementalDamagePercentImplicitSceptreNew5[10,10] +{variant:2,3}ElementalDamagePercentImplicitSceptreNew5 +LocalIncreasedPhysicalDamagePercentUnique__13 +IncreasedDamageAgainstFrozenEnemiesUnique__1 +{variant:3}ColdDamageOverTimeMultiplierUnique__1 +ColdDamagePercentUnique__3 +IncreasedAttackSpeedTransformedUnique__1 +IncreasedCastSpeedUnique__1 +ChanceToFreezeUnique__1 +]],[[ +The Supreme Truth +Crystal Sceptre +Variant: Pre 2.0.0 +Variant: Pre 2.3.0 +Variant: Pre 2.28.0 +Variant: Current +Requires Level 41, 59 Str, 136 Int +Implicits: 2 +{variant:1,2}ElementalDamagePercentImplicitSceptre2[20,20] +{variant:3,4}ElementalDamagePercentImplicitSceptre2 +{variant:4}LocalInflictHallowingFlameOnHitUnique__1 +LocalIncreaseSocketedGemLevelUniqueSceptre1 +IncreasedIntelligenceRequirementsUniqueSceptre1 +LocalIncreasedPhysicalDamagePercentUniqueSceptre1 +LocalIncreasedAttackSpeedUniqueSceptre1 +{variant:1}IncreasedExperienceUniqueSceptre1[5,5] +{variant:2,3}IncreasedExperienceUniqueSceptre1 +{variant:1,2,3}ElementalDamagePercentImplicitSceptre1 + +]],[[ +Yaomac's Accord +Vaal Sceptre +League: Ultimatum +Source: Drops from unique{The Trialmaster} +Requires Level 64, 113 Str, 113 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptreNew20 +VaalSkillDamageUnique__1 +VaalSoulGainPreventionUnique__1__ +GainRandomChargeOnVaalSkillUseUnique__1_ +KeystoneShepherdOfSoulsUnique__1 +]],[[ +Cadigan's Authority +Platinum Sceptre +Source: Obtained from unique{Shipping} in normal{Kingsmarch} +Requires Level 62, 113 Str, 113 Int +Implicits: 1 +ElementalDamagePercentImplicitSceptre2 +LocalAddedPhysicalDamageUnique__38 +AdditionalTotemsUniqueScepter_1 +Maximum2OfSameTotemUnique__1 +SummonTotemCastSpeedUnique__3 +BattlemageKeystoneUnique__2_ +]], +-- Weapon: Two Handed Mace +[[ +Brain Rattler +Meatgrinder +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Pre 3.26.0 +Variant: Current +Implicits: 3 +{variant:1}StunDurationImplicitMace1[20,20] +{variant:2}StunDurationImplicitMace1 +{variant:3,4}DoubleDamageChanceImplicitMace1 +{variant:1,2}LocalAddedPhysicalDamageUnique__24[80,100][320,370] +{variant:3}LocalAddedPhysicalDamageUnique__24[60,80][270,320] +{variant:4}LocalAddedPhysicalDamageUnique__24 +ConvertPhysicaltoLightningUnique__1 +{variant:1,2}ChanceToShockUnique__2_[15,15] +{variant:3,4}ChanceToShockUnique__2_ +{variant:1,2}HitsCauseMonsterFleeUnique__1 +LightningPenetrationUnique__1 +ShockedEnemyCastSpeedUnique__1 +ShockedEnemyMovementSpeedUnique__1 +{variant:3,4}AttacksShockAsIfDealingMoreDamageUnique__2 +]],[[ +Chober Chaber +Great Mallet +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Requires Level 40, 104 Str +Implicits: 2 +{variant:1}StunDurationImplicitMace1[20,20] +{variant:2,3}StunDurationImplicitMace1 +LocalIncreaseSocketedMeleeGemLevelUniqueTwoHandMace5 +LocalIncreaseSocketedMinionGemLevelUniqueTwoHandMace5 +ReducedStrengthRequirementsUniqueTwoHandMace5 +{variant:1,2}LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace5[100,120] +{variant:3}LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace5 +MaximumManaUniqueTwoHandMace5 +MinionLifeUniqueTwoHandMace5 +SkillEffectDurationUniqueTwoHandMace5 +]],[[ +Chaber Cairn +Great Mallet +Source: No longer obtainable +Requires Level 60, 131 Str +Implicits: 1 +StunDurationImplicitMace1 +LocalIncreaseSocketedMeleeGemLevelUniqueTwoHandMace5 +LocalIncreaseSocketedMinionGemLevelUnique__1 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace5 +LocalAddedPhyiscalDamageUnique__38 +MaximumManaUniqueTwoHandMace5 +MinionLifeUniqueTwoHandMace5 +SkillEffectDurationUnique__3 +]],[[ +Geofri's Baptism +Brass Maul +Variant: Pre 2.6.0 +Variant: Current +Requires Level 27, 92 Str +Implicits: 2 +{variant:1}StunDurationImplicitMace1[20,20] +{variant:2}StunDurationImplicitMace1 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace2 +LocalAddedColdDamageUniqueTwoHandMace2 +StunDurationUniqueTwoHandMace2 +CannotCrit +]],[[ +Geofri's Devotion +Brass Maul +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Current +Requires Level 61, 92 Str +Implicits: 2 +{variant:1}StunDurationImplicitMace1[20,20] +{variant:2,3}StunDurationImplicitMace1 +OnHitWhileCursedTriggeredCurseNovaUnique__1 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace2 +{variant:1,2}LocalAddedPhysicalDamageUnique__37[50,56][73,78] +{variant:3}LocalAddedPhysicalDamageUnique__37 +LocalAddedColdDamageUniqueTwoHandMace2 +StunDurationUniqueTwoHandMace2 +CannotCrit +]],[[ +Hrimnor's Hymn +Sledgehammer +Variant: Pre 2.6.0 +Variant: Current +Requires Level 17, 62 Str +Implicits: 2 +{variant:1}StunDurationImplicitMace2[40,40] +{variant:2}StunDurationImplicitMace2 +StrengthUniqueTwoHandMace1 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace1 +StunThresholdReductionUniqueTwoHandMace1 +LifeLeechPermyriadUniqueTwoHandMace1 +StunDurationUniqueTwoHandMace1 +]],[[ +Hrimnor's Dirge +Sledgehammer +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +Requires Level 36, 62 Str +Implicits: 2 +{variant:1}StunDurationImplicitMace2[40,40] +{variant:2}StunDurationImplicitMace2 +StrengthUniqueTwoHandMace1 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace1 +LocalAddedPhysicalDamageUnique__20_ +StunThresholdReductionUniqueTwoHandMace1 +LifeLeechPermyriadUniqueTwoHandMace1 +StunDurationUniqueTwoHandMace1 +PhysicalAddedAsColdUnique__1 +]],[[ +Jorrhast's Blacksteel +Steelhead +League: Tempest +Variant: Pre 2.6.0 +Variant: Current +Requires Level 44, 143 Str +Implicits: 2 +{variant:1}StunDurationImplicitMace2[40,40] +{variant:2}StunDurationImplicitMace2 +{variant:2}TriggeredAnimateWeaponUnique__1 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace8 +LocalIncreasedAttackSpeedUniqueTwoHandMace8_ +IncreasedCastSpeedUniqueTwoHandMace8 +AnimateWeaponDurationUniqueTwoHandMace8 +NumberOfAdditionalAnimateWeaponCopiesUniqueTwoHandMace8 +]],[[ +Kongor's Undying Rage +Terror Maul +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Current +Requires Level 67, 212 Str +Implicits: 3 +{variant:1,2}StunDurationImplicitMace1[20,20] +{variant:3}StunDurationImplicitMace1 +{variant:4}ChanceForDoubleStunDurationImplicitMace_1 +{variant:1}LocalAddedPhysicalDamageUniqueTwoHandMace6[27,36][270,360] +{variant:2,3,4}LocalAddedPhysicalDamageUniqueTwoHandMace6 +{variant:2,3,4}LocalCriticalStrikeChanceUniqueTwoHandMace6 +AllResistancesUniqueTwoHandMace6_ +AlwaysHitsUniqueTwoHandMace6 +NoBonusesFromCriticalStrikes +{variant:1,2}UndyingRageOnCritUniqueTwoHandMace6[2000,2000] +{variant:3,4}UndyingRageOnCritUniqueTwoHandMace6 +]],[[ +Replica Kongor's Undying Rage +Terror Maul +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 67, 212 Str +Implicits: 1 +ChanceForDoubleStunDurationImplicitMace_1 +LocalAddedPhysicalDamageUniqueTwoHandMace6 +LocalCriticalStrikeChanceUniqueTwoHandMace6 +AllResistancesUniqueTwoHandMace6_ +AlwaysHitsUniqueTwoHandMace6 +CriticalMultiplierUniqueAmulet18 +LocalEnergyShieldRegenerationIfCritRecentlyUnique__1 +]],[[ +Marohi Erqi +Karui Maul +League: Legion +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Pre 3.11.0 +Variant: Pre 3.19.0 +Variant: Pre 3.20.0 +Variant: Pre 3.28.0 +Variant: Current +Requires Level 57, 182 Str +Implicits: 3 +{variant:1}StunDurationImplicitMace2[20,20] +{variant:2,3}StunDurationImplicitMace2[30,30] +{variant:4,5,6,7}StunDurationImplicitMace2 +{variant:1,2,3,4}SocketedGemsGetIncreasedAreaOfEffectUniqueTwoHandMace3 +{variant:1,2}LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3[220,250] +{variant:3}LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3[230,260] +{variant:4}LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3[200,230] +{variant:5}LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3[400,500] +{variant:6,7}LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace3 +{variant:1,2}LocalAddedPhysicalDamageOneHandAxe1[10,10][20,20] +{variant:3,4}LocalAddedPhysicalDamageOneHandAxe1 +{variant:1,2,3,4}LocalIncreasedAttackSpeedUniqueTwoHandMace3[-10,-10] +{variant:5,6,7}LocalIncreasedAttackSpeedUniqueTwoHandMace3 +{variant:1,2,3,4}MovementVelocityUniqueTwoHandMace3 +StunDurationUniqueTwoHandMace3 +{variant:1,2,3,4}IncreasedAccuracyUniqueTwoHandMace3[-100,-100] +{variant:5,6,7}IncreasedAccuracyUniqueTwoHandMace3 +{variant:7}AreaOfEffectUnique__10 +]],[[ +Quecholli +Jagged Maul +Variant: Pre 2.6.0 +Variant: Current +Requires Level 22, 77 Str +Implicits: 2 +{variant:1}StunDurationImplicitMace1[20,20] +{variant:2}StunDurationImplicitMace1 +AllAttributesUniqueTwoHandMace7 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace7 +LocalAddedPhysicalDamageUniqueTwoHandMace7 +LifeGainedFromEnemyDeathUniqueTwoHandMace7 +Enemies killed explode dealing 10% of their Life as Fire Damage +]],[[ +Panquetzaliztli +Jagged Maul +Source: No longer obtainable +Requires Level 61, 77 Str +Implicits: 1 +StunDurationImplicitMace1 +AllAttributesUniqueTwoHandMace7 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace7 +LocalAddedPhysicalDamageUnique__32 +RecoverPercentMaxLifeOnKillUnique__2 +Enemies killed explode dealing 10% of their Life as Fire Damage +]],[[ +Serle's Masterwork +Phantom Mace +League: Settlers of Kalguur +Requires Level 53, 170 Str +Implicits: 1 +StunThresholdReductionImplicitMace1 +StrengthUnique__25 +DexterityImplicitQuiver1 +LocalIncreasedPhysicalDamagePercentUnique__50 +LocalIncreasedAccuracyUnique__3 +VillageTripleEnchant1H +]],[[ +Tawhoa's Felling +Piledriver +League: Settlers of Kalguur +Requires Level 61, 212 Str +Implicits: 1 +StunThresholdReductionImplicitMace3_ +GrantsTawhoasChosenUnique__1 +StrengthUnique__11 +LocalIncreasedPhysicalDamagePercentUnique__49 +StunDurationUnique__1 +StunThresholdReductionUnique__2 +]],[[ +Tidebreaker +Imperial Maul +Variant: Pre 3.5.0 +Variant: Pre 3.11.0 +Variant: Current +Requires Level 65, 212 Str +Implicits: 2 +{variant:3}PercentageStrengthImplicitMace1 +{variant:1,2}StunDurationImplicitMace1 +SocketedGemsSupportedByEnduranceChargeOnStunUnique__1 +IntelligenceUnique__5 +{variant:1}LocalAddedPhysicalDamageUnique__26[60,70][300,350] +{variant:2,3}LocalAddedPhysicalDamageUnique__26 +IncreasedPhysicalDamagePerEnduranceChargeUnique__1 +StunThresholdReductionUnique__1___ +]],[[ +Trypanon +Great Mallet +League: Perandus +Variant: Pre 2.6.0 +Variant: Current +Requires Level 40, 131 Str +Implicits: 2 +{variant:1}StunDurationImplicitMace1[20,20] +{variant:2}StunDurationImplicitMace1 +LocalReducedAttackSpeedUnique__1 +LocalAttacksAlwaysCritUnique__1 +]],[[ +Replica Trypanon +Great Mallet +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 40, 131 Str +Implicits: 1 +StunDurationImplicitMace1 +IncreasedAccuracyUnique__9____ +LocalAlwaysCrit +]],[[ +Voidhome +Dread Maul +Variant: Pre 2.6.0 +Variant: Current +Requires Level 54, 173 Str +Implicits: 2 +{variant:1}StunDurationImplicitMace1[20,20] +{variant:2}StunDurationImplicitMace1 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandMace4 +LocalIncreasedAttackSpeedUniqueTwoHandMace4 +ItemFoundRarityDecreaseUniqueTwoHandMace4 +IncreasedExperienceUniqueTwoHandMace4 +ManaLeechPermyriadUniqueTwoHandMace4 +]],} diff --git a/src/Export/Uniques/quiver.lua b/src/Export/Uniques/quiver.lua new file mode 100644 index 0000000000..e5132e9580 --- /dev/null +++ b/src/Export/Uniques/quiver.lua @@ -0,0 +1,409 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Quiver +[[ +Ahuana's Bite +Sharktooth Arrow Quiver +LevelReq: 56 +Implicits: 1 +LifeGainPerTargetImplicitQuiver3New +AddedColdDamageUnique__11 +ColdResistUnique__37 +EnemiesChilledIncreasedDamageTakenUnique__1 +QuiverChillAsThoughtDealingMoreDamageUnique__1 +]],[[ +Asphyxia's Wrath +{variant:1,2}Two-Point Arrow Quiver +{variant:3}Feathered Arrow Quiver +Variant: Pre 3.0.0 +Variant: Pre 3.17.0 +Variant: Current +{variant:1,2}LevelReq: 10 +Implicits: 2 +{variant:1,2}IncreasedAccuracyPercentImplicitQuiver7 +{variant:3}ProjectileSpeedImplicitQuiver4New +{variant:2,3}GrantsFrostbiteUnique__1 +IncreasedAttackSpeedUniqueQuiver3 +ColdResistUniqueQuiver5 +IncreasedChillDurationUniqueQuiver5 +ConvertPhysicalToColdUniqueQuiver5 +ChanceToFreezeUniqueQuiver5 +{variant:1}CurseAreaOfEffectUniqueQuiver5 +CurseTransferOnKillUniqueQuiver5 +]],[[ +Blackgleam +{variant:1}Cured Quiver +{variant:2,3}Fire Arrow Quiver +{variant:4}Blazing Arrow Quiver +Variant: Pre 1.2.0 +Variant: Pre 2.0.0 +Variant: Pre 3.17.0 +Variant: Current +{variant:1,2,3}LevelReq: 22 +{variant:4}LevelReq: 45 +Implicits: 3 +{variant:1}AddedFireDamageImplicitQuiver1 +{variant:2,3}AddedFireDamageImplicitQuiver10 +{variant:4}AddedFireDamageImplicitQuiver9New +IncreasedAttackSpeedUniqueQuiver1 +{variant:1}IncreasedEvasionRatingUniqueQuiver3_[20,20] +{variant:2,3,4}IncreasedEvasionRatingUniqueQuiver1 +IncreasedManaUniqueQuiver1 +{variant:1,2}ConvertPhysicalToFireUniqueQuiver1_[30,50] +{variant:3,4}ConvertPhysicalToFireUniqueQuiver1_ +{variant:3,4}AddedFireDamageUniqueQuiver1a +]],[[ +The Signal Fire +{variant:1}Cured Quiver +{variant:2,3}Fire Arrow Quiver +{variant:4}Blazing Arrow Quiver +Variant: Pre 1.2.0 +Variant: Pre 2.0.0 +Variant: Pre 3.17.0 +Variant: Current +Source: No longer obtainable +{variant:1,2,3}LevelReq: 24 +{variant:4}LevelReq: 45 +Implicits: 3 +{variant:1}AddedFireDamageImplicitQuiver1 +{variant:2,3}AddedFireDamageImplicitQuiver10 +{variant:4}AddedFireDamageImplicitQuiver9New +IncreasedAttackSpeedUniqueQuiver9 +{variant:1}IncreasedEvasionRatingUniqueQuiver3_[20,20] +{variant:2,3,4}IncreasedEvasionRatingUniqueQuiver1 +IncreasedManaUniqueQuiver1a +{variant:1,2}ConvertPhysicalToFireUniqueQuiver1_[30,50] +{variant:3,4}ConvertPhysicalToFireUniqueQuiver1_ +{variant:3,4}AddedFireDamageUniqueQuiver1a +PhysicalAddedAsFireUnique__1 +]],[[ +Craghead +Serrated Arrow Quiver +Variant: Pre 3.17.0 +Variant: Current +Requires Level 5 +Implicits: 1 +AddedPhysicalDamageImplicitQuiver6_ +StunThresholdReductionUniqueQuiver8 +ProjectileSpeedUniqueQuiver8 +{variant:1}StunDurationUniqueQuiver8[60,80] +{variant:2}StunDurationUniqueQuiver8 +AddedPhysicalDamageUniqueQuiver8 +]],[[ +Cragfall +Serrated Arrow Quiver +Source: No longer obtainable +Requires Level 5 +Implicits: 1 +AddedPhysicalDamageImplicitQuiver6_ +StunThresholdReductionUniqueQuiver8 +ProjectileSpeedUniqueQuiver8 +StunDurationUniqueQuiver8[60,80] +AddedPhysicalDamageUniqueQuiver8 +ChanceForDoubleStunDurationUnique__1 +]],[[ +Drillneck +Penetrating Arrow Quiver +Requires Level 36 +Implicits: 1 +AdditionalArrowPierceImplicitQuiver5New +IncreasedAttackSpeedUniqueQuiver3 +IncreasedEvasionRatingUniqueQuiver3_ +IncreasedLifeUniqueQuiver3 +AddedPhysicalDamageUniqueQuiver3 +ArrowPierceAppliesToProjectileDamageUniqueQuiver3 +]],[[ +The Fracturing Spinner +Blunt Arrow Quiver +League: Harbinger +Source: No longer obtainable +Requires Level 60 +Implicits: 1 +AddedPhysicalDamageImplicitQuiver6New +HarbingerSkillOnEquipUnique__4_ +HybridStrDexUnique__1 +AddedFireDamageUnique__2 +AddedColdDamageUnique__3 +FireAndColdResistUnique__1 +]],[[ +The Shattered Divinity +Blunt Arrow Quiver +Requires Level 60 +Implicits: 1 +AddedPhysicalDamageImplicitQuiver6New +HarbingerSkillOnEquipUnique2_4 +HybridStrDexUnique__1 +AddedFireDamageUnique__2 +AddedColdDamageUnique__3 +FireAndColdResistUnique__1 +]],[[ +Hyrri's Bite +Sharktooth Arrow Quiver +Source: Vendor Recipe +Variant: Pre 2.6.0 +Variant: Current +Requires Level 14 +Implicits: 1 +LifeGainPerTargetImplicitQuiver3New +StrengthUniqueQuiver6 +DexterityUniqueQuiver6 +IntelligenceUniqueQuiver6 +{variant:2}AddedColdDamageUnique__1 +IncreasedAttackSpeedUniqueQuiver6 +LifeGainPerTargetUniqueQuiver6_ +AreaOfEffectUniqueQuiver6 +]],[[ +Hyrri's Demise +Sharktooth Arrow Quiver +Source: No longer obtainable +Requires Level 45 +Implicits: 1 +LifeGainPerTargetImplicitQuiver3New +AllAttributesUnique__7 +IncreasedAttackSpeedUniqueQuiver6 +LifeGainPerTargetUniqueQuiver6_ +AreaOfEffectUniqueQuiver6 +ColdDamageToAttacksPerDexterityUnique__1 +FireDamageToAttacksPerStrengthUnique__1 +LightningDamageToAttacksPerIntelligenceUnique__1 +]],[[ +Maloney's Mechanism +Ornate Quiver +Requires Level 45 +Implicits: 1 +QuiverHasOneSocket +HasTwoSocketsUnique__1 +TriggerBowSkillsOnBowAttackUnique__1 +IncreasedAttackSpeedUnique__4_ +IncreasedLifeUniqueQuiver9 +AttacksBlindOnHitChanceUnique__1 +]],[[ +Replica Maloney's Mechanism +Ornate Quiver +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 45 +Implicits: 1 +QuiverHasOneSocket +HasTwoSocketsUnique__1 +TriggerBowSkillsOnCastUnique__1 +IncreasedCastSpeedUnique__21 +IncreasedLifeUniqueQuiver9 +AttacksBlindOnHitChanceUnique__1 +]],[[ +Maloney's Nightfall +{variant:1,2}Blunt Arrow Quiver +{variant:3}Vile Arrow Quiver +Variant: Pre 2.6.0 +Variant: Pre 3.17.0 +Variant: Current +LevelReq: 55 +Implicits: 2 +{variant:1,2}StunDurationImplicitQuiver9 +{variant:3}PhysicalDamageAddedAsChaosImplicitQuiver11New +{variant:1}IncreasedAttackSpeedImplicitQuiver10New +{variant:2,3}IncreasedAttackSpeedUniqueQuiver1 +IncreasedLifeUniqueQuiver9 +ChaosResistUniqueQuiver9 +{variant:1}AddedPhysicalDamageUniqueQuiver9[5,7][8,10] +{variant:2,3}AddedPhysicalDamageUniqueQuiver9 +{variant:1}SmokeCloudWhenHitUniqueQuiver9[10,10] +{variant:2,3}SmokeCloudWhenHitUniqueQuiver9 +{variant:1}IncreaseDamageOnBlindedEnemiesUniqueQuiver9_[20,40] +{variant:2,3}IncreaseDamageOnBlindedEnemiesUniqueQuiver9_ +]],[[ +Rearguard +{variant:1}Broadhead Arrow Quiver +{variant:2}Blunt Arrow Quiver +Variant: Pre 3.17.0 +Variant: Current +Implicits: 2 +{variant:1}AddedPhysicalDamageImplicitQuiver11 +{variant:2}AddedPhysicalDamageImplicitQuiver6New +BlockPercentUniqueQuiver4 +SpellBlockPercentageUniqueQuiver4 +IncreasedPhysicalDamageReductionRatingUniqueQuiver4 +ProjectileSpeedImplicitQuiver4New +StunRecoveryUniqueQuiver4 +IncreasedProjectileDamageUniqueQuiver4 +]],[[ +Rigwald's Quills +Two-Point Arrow Quiver +Variant: Pre 3.14.0 +Variant: Current +League: Talisman Standard, Talisman Hardcore +Source: Drops from unique{Rigwald, The Wolven King} (Level 70+) +Requires Level 56 +Implicits: 1 +IncreasedAccuracyPercentImplicitQuiver7New +FireResistUnique__3 +LightningResistImplicitRing1 +LifeGainPerTargetUnique__1 +ProjectileSpeedUniqueQuiver2 +IncreasedProjectileDamageUnique__1 +{variant:1}Projectiles Fork +{variant:2}ProjectilesForkUnique____1 +]],[[ +Saemus' Gift +{variant:1}Spike-Point Arrow Quiver +{variant:2}Feathered Arrow Quiver +Variant: Pre 3.17.0 +Variant: Current +Requires Level 45 +Implicits: 2 +{variant:1}CriticalStrikeChanceImplicitQuiver8New +{variant:2}ProjectileSpeedImplicitQuiver4New +DexterityImplicitQuiver1 +IncreasedCastSpeedUnique__5 +IncreasedLifeUnique__1 +LightningResistUnique__12 +StunAvoidanceUnique___1 +IncreasedLightningDamagePer10IntelligenceUnique__1 +]],[[ +Scorpion's Call +{variant:1}Broadhead Arrow Quiver +{variant:2}Heavy Arrow Quiver +Variant: Pre 3.17.0 +Variant: Current +League: Harvest +Requires Level 57 +Implicits: 2 +{variant:1}AddedPhysicalDamageImplicitQuiver11 +{variant:2}AddedPhysicalDamageImplicitQuiver12New +DexterityUnique__18 +LifeRegenerationBloodStanceUnique__1 +ProjectileDamageBloodStanceUnique__1 +EvasionRatingSandStanceUnique__1 +AreaOfEffectSandStanceUnique__1 +(20-30)% increased Attack Speed if you've changed Stance Recently +]],[[ +Skirmish +Two-Point Arrow Quiver +Requires Level 36 +Implicits: 1 +IncreasedAccuracyPercentImplicitQuiver7 +IntelligenceUniqueQuiver6 +IncreasedManaUnique__16 +ManaRegenerationImplicitAmulet1 +ManaLeechPermyriadUnique__1 +Attack skills can have 1 additional Totem Summoned at a time +]],[[ +Steelworm +Broadhead Arrow Quiver +Variant: Pre 3.17.0 +Variant: Current +LevelReq: 52 +Implicits: 2 +{variant:1}AddedPhysicalDamageImplicitQuiver11 +{variant:2}IncreasedAttackSpeedImplicitQuiver10New +GrantsCallOfSteelSkillUnique__1_ +GlobalEvasionRatingAndArmourPercentUnique__1_ +DealNoNonPhysicalDamageUniqueBelt__1 +RangedAttacksConsumeAmmoUniqueBelt__1 +AdditionalProjectilesAfterAmmoConsumedUniqueBelt__1 +]],[[ +Soul Strike +Spike-Point Arrow Quiver +Variant: Pre 2.5.0 +Variant: Current +Requires Level 64 +Implicits: 1 +CriticalStrikeChanceImplicitQuiver8New +DexterityUniqueQuiver7 +AddedChaosDamageUniqueQuiver7 +IncreasedAttackSpeedUniqueQuiver5 +IncreasedEnergyShieldUniqueQuiver7 +ReducedEnergyShieldRegenerationRateUniqueQuiver7 +{variant:1}ReducedEnergyShieldDelayUniqueQuiver7[150,150] +{variant:2}ReducedEnergyShieldDelayUniqueQuiver7 +]],[[ +Replica Soul Strike +Spike-Point Arrow Quiver +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 64 +Implicits: 1 +CriticalStrikeChanceImplicitQuiver8New +DexterityUniqueQuiver7 +AddedPhysicalDamageUnique__10 +IncreasedAttackSpeedUniqueQuiver3 +IncreasedLifeUnique__103 +MaximumLifeLeechAmountUnique__2 +MaximumLifeLeechRateUnique__1 +]],[[ +Voidfletcher +{variant:1,2}Penetrating Arrow Quiver +{variant:3}Primal Arrow Quiver +Shaper Item +Elder Item +Variant: Pre 3.5.0 +Variant: Pre 3.17.0 +Variant: Current +Source: Drops from unique{The Elder} (Uber) +{variant:1,2}LevelReq: 64 +Implicits: 2 +{variant:1,2}AdditionalArrowPierceImplicitQuiver12_ +{variant:3}WeaponElementalDamageImplicitQuiver13New +VoidShotOnSkillUseUnique__1_ +AddedColdDamageUnique__7 +IncreasedEnergyShieldUnique__7 +ColdResistUnique__1 +ManaGainedFromEnemyDeathUnique__2 +ProjectileSpeedUnique__2 +{variant:1}MaximumVoidArrowsUnique__1[5,5][1000,1000] +{variant:2,3}MaximumVoidArrowsUnique__1 +]],[[ +The Poised Prism +Primal Arrow Quiver +Implicits: 1 +WeaponElementalDamageImplicitQuiver13New +FireResistUnique__24 +ColdResistUnique__19 +LightningResistUnique__27 +ColdDamageToAttacksPerDexterityUnique__1 +FireDamageToAttacksPerStrengthUnique__1 +LightningDamageToAttacksPerIntelligenceUnique__1 +]],[[ +Spinehail +Vile Arrow Quiver +Source: Drops from unique{Catarina} in normal{Mastermind's Lair} +Variant: Minion Damage affects you +Variant: Minion Attack Speed affects you +Variant: Minion Cast Speed affects you +Variant: Cast Speed with Minion Skills +Variant: Minions are Aggressive +Variant: Armour and Evasion Rating +Variant: Evasion Rating and Energy Shield +Variant: Life and Mana Regen +Variant: Mana and Life Regen +Variant: Fire and Cold Damage +Variant: Fire and Lightning Damage +Variant: Cold and Lightning Damage +Requires Level 55 +Implicits: 1 +PhysicalDamageAddedAsChaosImplicitQuiver11New +DexterityAndIntelligenceUniqueQuiver_1 +IncreasedAttackSpeedUniqueQuiver10 +MinionDamageUniqueQuiver_1 +AddedPhysicalDamageUniqueQuiver10 +SacrificeMinionToFireAdditionalArrowsUnique__1 +{variant:1}Increases and Reductions to Minion Damage also affect you +{variant:2}Increases and Reductions to Minion Attack Speed also affect you +{variant:3}Increases and Reductions to Minion Cast Speed also affect you +{variant:4}(20-40)% increased Cast Speed with Minion Skills +{variant:5}Minions are Aggressive +{variant:6}+(365-400) to Armour and Evasion Rating +{variant:7}+(365-400) to Evasion Rating +{variant:7}+(31-35) to maximum Energy Shield +{variant:8}+(55-60) to maximum Life +{variant:8}Regenerate 5.3 Mana per second +{variant:9}+(55-60) to maximum Mana +{variant:9}Regenerate 33.3 Life per second +{variant:10}Adds (14-16) to (20-22) Fire Damage +{variant:10}Adds (14-16) to (20-22) Cold Damage +{variant:11}Adds (14-16) to (20-22) Fire Damage +{variant:11}Adds (14-16) to (20-22) Lightning Damage +{variant:12}Adds (14-16) to (20-22) Cold Damage +{variant:12}Adds (14-16) to (20-22) Lightning Damage +]],} diff --git a/src/Export/Uniques/ring.lua b/src/Export/Uniques/ring.lua new file mode 100644 index 0000000000..cdd86edfd8 --- /dev/null +++ b/src/Export/Uniques/ring.lua @@ -0,0 +1,1758 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Ring +[[ +Ahkeli's Meadow +Ruby Ring +League: Delve +Source: Drops from unique{Aul, the Crystal King} +Requires Level 49 +Implicits: 1 +FireResistImplicitRing1 +StrengthUnique__15 +IncreasedEnergyShieldPercentUnique__4 +MaximumLifeUnique__14 +]],[[ +Ahkeli's Mountain +Ruby Ring +League: Delve +Source: Drops from unique{Ahuatotli, the Blind} +Requires Level 49 +Implicits: 1 +FireResistImplicitRing1 +StrengthUnique__20_ +IncreasedEnergyShieldPercentUnique__4 +MaximumLifeUnique__14 +]],[[ +Ahkeli's Valley +Ruby Ring +League: Delve +Source: Drops from unique{Kurgal, the Blackblooded} +Requires Level 49 +Implicits: 1 +FireResistImplicitRing1 +StrengthUnique__15 +IncreasedEnergyShieldPercentUnique__4 +MaximumLifeUnique__14 +]],[[ +Andvarius +Gold Ring +Requires Level 20 +Implicits: 1 +ItemFoundRarityIncreaseImplicitRing1 +DexterityUniqueRing3 +ItemFoundRarityIncreaseUniqueRing3 +AllResistancesUniqueRing25 +]],[[ +Astral Projector +Topaz Ring +Requires Level 40 +Implicits: 1 +LightningResistImplicitRing1 +IntelligenceUnique__22_ +SpellDamageUniqueRing35 +AvoidElementalAilmentsUnique__1_ +NovaSpellsAreaOfEffectUnique__1 +NovaSkillsTargetLocationUnique__1__ +]],[[ +Berek's Grip +Two-Stone Ring +League: Domination, Nemesis +Variant: Pre 2.6.0 +Variant: Pre 3.8.0 +Variant: Current +Requires Level 20 +Implicits: 1 +ColdAndLightningResistImplicitRing1 +{variant:1}ColdDamagePercentUniqueRing19[10,15] +{variant:2,3}ColdDamagePercentUniqueRing19 +{variant:1}AddedLightningDamageUniqueBodyStrDex2[1,1][1,50] +{variant:2,3}AddedLightningDamageUniqueRing19 +IncreasedLifeUniqueRing19 +{variant:1}LifeLeechPermyriadOnFrozenEnemiesUniqueRing19 +{variant:2,3}LifeLeechPermyriadVsShockedEnemiesUniqueRing29 +{variant:1,2}ManaLeechPermyriadOnShockedEnemiesUniqueRing19 +{variant:3}EnergyShieldLeechPermyriadOnFrozenEnemiesUniqueRing19 +]],[[ +Berek's Pass +Two-Stone Ring +League: Domination, Nemesis +Variant: Pre 2.6.0 +Variant: Current +Requires Level 20 +Implicits: 1 +FireAndColdResistImplicitRing1 +{variant:1}FireDamagePercentUniqueRing18[10,15] +{variant:2}FireDamagePercentUniqueRing18 +{variant:1}AddedColdDamageUniqueRing18[1,1][10,30] +{variant:2}AddedColdDamageUniqueRing18 +IncreasedEnergyShieldUniqueRing18 +DamageWhileIgnitedUniqueRing18 +ArmourWhileFrozenUniqueRing18 +]],[[ +Berek's Respite +Two-Stone Ring +League: Domination, Nemesis +Variant: Pre 2.6.0 +Variant: Current +Requires Level 20 +Implicits: 1 +FireAndLightningResistImplicitRing1 +{variant:1}AddedFireDamageUniqueRing20[1,1][10,30] +{variant:2}AddedFireDamageUniqueRing20 +{variant:1}LightningDamagePercentUniqueRing20[10,15] +{variant:2}LightningDamagePercentUniqueRing20 +IncreasedManaUniqueRing20 +ShockNearbyEnemyOnShockedKillUniqueRing20 +IgniteNearbyEnemyOnIgnitedKillUniqueRing20 +]],[[ +Blackflame +Amethyst Ring +League: Ritual +Source: Purchase from Ritual Reward +Requires Level 49 +Implicits: 1 +ChaosResistImplicitRing1 +FireDamageOverTimeMultiplierUnique__3 +IgniteDurationUnique__3_ +ChanceToIgniteUnique__6 +EnemiesIgniteChaosDamageUnique__1 +EnemiesIgniteWitherNeverExpiresUnique__1 +FireAndChaosDamageResistanceUnique__1__ +]],[[ +Blackheart +Iron Ring +Variant: Pre 3.19.0 +Variant: Current +Implicits: 1 +AddedPhysicalDamageImplicitRing1 +{variant:1}IncreasedPhysicalDamagePercentUniqueRing1 +{variant:1}AddedChaosDamageUnique__1[1,1][3,3] +{variant:2}AddedChaosDamageUniqueRing1 +{variant:1}IncreasedLifeImplicitRing1 +{variant:1}LifeRegenerationUniqueRing33[120,240] +{variant:2}LifeRegenerationUniqueRing33 +HitsCauseMonsterFleeUniqueRing1 +]],[[ +Voidheart +Iron Ring +Source: No longer obtainable +Variant: Pre 2.4.0 +Variant: Current +Requires Level 48 +Implicits: 1 +AddedPhysicalDamageImplicitRing1 +IncreasedPhysicalDamagePercentUniqueRing1 +AddedChaosDamageUnique__1[1,1][3,3] +IncreasedLifeImplicitRing1 +LifeRegenerationImplicitAmulet1 +HitsCauseMonsterFleeUniqueRing1 +{variant:1}BleedOnMeleeHitChanceUnique__1[100,100] +{variant:2}BleedOnMeleeHitChanceUnique__1 +{variant:1}PoisonOnMeleeHitUnique__1[100,100] +{variant:2}PoisonOnMeleeHitUnique__1 +]],[[ +Bloodboil +Coral Ring +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +Requires Level 24 +Implicits: 1 +IncreasedLifeImplicitRing1 +{variant:1}AddedFireDamageUniqueRing28[7,10][15,20] +{variant:2}AddedFireDamageUniqueRing28 +IncreasedLifeUniqueRing28 +ColdResistUniqueRing28 +{variant:1}ChillEffectivenessOnSelfUniqueRing28[45,45] +{variant:2}ChillEffectivenessOnSelfUniqueRing28 +{variant:1}IncreasedSelfBurnDurationUniqueRing28 +{variant:2}MovementVelocityWhileIgnitedUnique__1 +]],[[ +Winterweave +Coral Ring +Requires Level 24 +Implicits: 1 +IncreasedLifeImplicitRing1 +AddedFireDamageUniqueRing28 +AddedColdDamageUnique__6 +IncreasedLifeUniqueRing28 +ColdResistUnique__24 +MovementVelocityWhileIgnitedUnique__1 +EffectOfChillIsReversedUnique__1 +]],[[ +Brinerot Mark +Unset Ring +League: Warbands +Variant: Pre 2.6.0 +Variant: Current +Requires Level 45 +Implicits: 1 +RingHasOneSocket +{variant:1}LocalIncreaseSocketedGolemLevelUniqueRing35[2,2] +{variant:2}LocalIncreaseSocketedGolemLevelUniqueRing35 +{variant:1}ItemActsAsConcentratedAOESupportUniqueRing35 +{variant:2}LocalGolemBuffEffectUnique__1 +{variant:2}LocalGolemLifeAddedAsESUnique__1 +{variant:1}SpellDamageUniqueRing35[10,25] +{variant:2}SpellDamageUniqueRing35 +IncreasedEnergyShieldUniqueRing35 +LightningResistUniqueRing35 +{variant:1}DisplaySocketedGemsSupportedByMinionLifeUniqueRing35 +]],[[ +Call of the Brotherhood +Two-Stone Ring +Variant: Pre 2.6.0 +Variant: Current +Requires Level 20 +Implicits: 1 +ColdAndLightningResistImplicitRing1 +IntelligenceUniqueRing34 +LightningDamagePercentUniqueRing34 +ManaRegenerationUniqueRing34 +{variant:1}ConvertLightningToColdUniqueRing34[50,50] +{variant:2}ConvertLightningToColdUniqueRing34 +SpellChanceToShockFrozenEnemiesUniqueRing34 +]],[[ +Circle of Ambition +Prismatic Ring +Source: Drops from unique{Synthete Nightmare} in normal{The Cortex} (Uber) +Requires Level 20 +Variant: Thunder: Skill Reservation +Variant: Thunder: Lightning Damage +Variant: Thunder: Buff Effect +Variant: Thunder: Max Resistance +Variant: Thunder: Lightning Resistance +Variant: Ash: Ash: Skill Reservation +Variant: Ash: Fire Damage +Variant: Ash: Buff Effect +Variant: Ash: Max Resistance +Variant: Ash: Fire Resistance +Variant: Ice: Skill Reservation +Variant: Ice: Cold Damage +Variant: Ice: Buff Effect +Variant: Ice: Max Resistance +Variant: Ice: Cold Resistance +Variant: Purity: Skill Reservation +Variant: Purity: Physical Damage +Variant: Purity: Buff Effect +Variant: Purity: Sentinel Damage +Variant: Purity: Damage Reduction +Variant: Agony: Skill Reservationwatcher +Variant: Agony: Chaos Damage +Variant: Agony: Buff Effect +Variant: Agony: Agony Damage +Variant: Agony: Chaos Resistance +Selected Variant: 1 +Has Alt Variant: true +Selected Alt Variant: 2 +Has Alt Variant Two: true +Selected Alt Variant Two: 3 +Implicits: 0 +AllAttributesUnique__29 +AllResistancesUnique__33 +HeraldReservationEfficiencyUnique__1 +{variant:1}HeraldBonusThunderReservationEfficiency +{variant:2}HeraldBonusThunderLightningDamage +{variant:3}HeraldBonusThunderEffect +{variant:4}HeraldBonusThunderMaxLightningResist +{variant:5}HeraldBonusThunderLightningResist_ +{variant:6}HeraldBonusAshReservationEfficiency__ +{variant:7}HeraldBonusAshFireDamage +{variant:8}HeraldBonusAshEffect +{variant:9}HeraldBonusAshMaxFireResist +{variant:10}HeraldBonusFireResist +{variant:11}HeraldBonusIceReservationEfficiency__ +{variant:12}HeraldBonusIceColdDamage +{variant:13}HeraldBonusIceEffect_ +{variant:14}HeraldBonusMaxColdResist__ +{variant:15}HeraldBonusColdResist +{variant:16}HeraldBonusPurityReservationEfficiency_ +{variant:17}HeraldBonusPurityPhysicalDamage +{variant:18}HeraldBonusPurityEffect +{variant:19}HeraldBonusPurityMinionDamage +{variant:20}HeraldBonusPurityPhysicalDamageReduction +{variant:21}HeraldBonusAgonyReservationEfficiency +{variant:22}HeraldBonusAgonyChaosDamage_ +{variant:23}HeraldBonusAgonyEffect +{variant:24}HeraldBonusAgonyMinionDamage_ +{variant:25}HeraldBonusAgonyChaosResist_ +]],[[ +Circle of Anguish +Ruby Ring +League: Synthesis +Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} +Requires Level 52 +Has Alt Variant: true +Variant: Skill Reservation (Pre 3.11.0) +Variant: Skill Reservation (Current) +Variant: Fire Damage +Variant: Buff Effect (Pre 3.11.0) +Variant: Buff Effect (Current) +Variant: Max Resistance +Variant: Fire Resistance +Implicits: 1 +FireResistImplicitRing1 +{fractured}StrengthUniqueRing8 +GlobalAddedFireDamageUnique__3_ +FireResistImplicitRing1 +{variant:1}HeraldBonusAshReservation[30,40] +{variant:2}HeraldBonusAshReservation +{variant:3}HeraldBonusAshFireDamage +{variant:4}HeraldBonusAshEffect[70,100] +{variant:5}HeraldBonusAshEffect +{variant:6}HeraldBonusAshMaxFireResist +{variant:7}HeraldBonusFireResist +]],[[ +Circle of Fear +Sapphire Ring +League: Synthesis +Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} +Requires Level 52 +Has Alt Variant: true +Variant: Skill Reservation (Pre 3.11.0) +Variant: Skill Reservation (Current) +Variant: Cold Damage +Variant: Buff Effect (Pre 3.11.0) +Variant: Buff Effect (Current) +Variant: Max Resistance +Variant: Cold Resistance +Implicits: 1 +ColdResistImplicitRing1 +{fractured}DexterityUnique__12 +GlobalAddedColdDamageUnique__3 +ColdResistImplicitRing1 +{variant:1}HeraldBonusIceReservation_[30,40] +{variant:2}HeraldBonusIceReservation_ +{variant:3}HeraldBonusIceColdDamage +{variant:4}HeraldBonusIceEffect_[70,100] +{variant:5}HeraldBonusIceEffect_ +{variant:6}HeraldBonusMaxColdResist__ +{variant:7}HeraldBonusColdResist +]],[[ +Circle of Guilt +Iron Ring +League: Synthesis +Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} +Requires Level 52 +Has Alt Variant: true +Variant: Skill Reservation (Pre 3.11.0) +Variant: Skill Reservation (Current) +Variant: Physical Damage +Variant: Buff Effect (Pre 3.11.0) +Variant: Buff Effect (Current) +Variant: Sentinel Damage +Variant: Damage Reduction +Implicits: 1 +AddedPhysicalDamageImplicitRing1 +{fractured}AllAttributesUnique__27 +GlobalAddedPhysicalDamageUnique__2 +IncreasedPhysicalDamageReductionRatingUnique__4 +{variant:1}HeraldBonusPurityReservation_[30,40] +{variant:2}HeraldBonusPurityReservation_ +{variant:3}HeraldBonusPurityPhysicalDamage +{variant:4}HeraldBonusPurityEffect[70,100] +{variant:5}HeraldBonusPurityEffect +{variant:6}HeraldBonusPurityMinionDamage +{variant:7}HeraldBonusPurityPhysicalDamageReduction +]],[[ +Circle of Nostalgia +Amethyst Ring +League: Synthesis +Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} +Requires Level 52 +Has Alt Variant: true +Variant: Skill Reservation (Pre 3.11.0) +Variant: Skill Reservation (Current) +Variant: Chaos Damage +Variant: Buff Effect (Pre 3.11.0) +Variant: Buff Effect (Current) +Variant: Agony Damage +Variant: Chaos Resistance +Implicits: 1 +ChaosResistImplicitRing1 +{fractured}AllAttributesUnique__25 +GlobalAddedChaosDamageUnique__5_ +ChaosResistImplicitRing1 +{variant:1}HeraldBonusAgonyReservation[30,40] +{variant:2}HeraldBonusAgonyReservation +{variant:3}HeraldBonusAgonyChaosDamage_ +{variant:4}HeraldBonusAgonyEffect[70,100] +{variant:5}HeraldBonusAgonyEffect +{variant:6}HeraldBonusAgonyMinionDamage_ +{variant:7}HeraldBonusAgonyChaosResist_ +]],[[ +Circle of Regret +Topaz Ring +League: Synthesis +Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} +Requires Level 52 +Has Alt Variant: true +Variant: Skill Reservation (Pre 3.11.0) +Variant: Skill Reservation (Current) +Variant: Lightning Damage +Variant: Buff Effect (Pre 3.11.0) +Variant: Buff Effect (Current) +Variant: Max Resistance +Variant: Lightning Resistance +Implicits: 1 +LightningResistImplicitRing1 +{fractured}IntelligenceUnique__14 +GlobalAddedLightningDamageUnique__3 +LightningResistImplicitRing1 +{variant:1}HeraldBonusThunderReservation[30,40] +{variant:2}HeraldBonusThunderReservation +{variant:3}HeraldBonusThunderLightningDamage +{variant:4}HeraldBonusThunderEffect[70,100] +{variant:5}HeraldBonusThunderEffect +{variant:6}HeraldBonusThunderMaxLightningResist +{variant:7}HeraldBonusThunderLightningResist_ +]],[[ +Death Rush +Amethyst Ring +League: Onslaught +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 46 +Implicits: 1 +ChaosResistImplicitRing1 +{variant:1,2}IncreasedAccuracyUniqueRing12 +{variant:1}IncreasedPhysicalDamageReductionRatingUniqueRing12[60,80] +{variant:2}IncreasedPhysicalDamageReductionRatingUniqueRing12 +{variant:2}IncreasedLifeUnique__77 +{variant:1,2}ChaosResistUniqueRing12 +{variant:1,2}LifeLeechPermyriadUniqueRing12 +{variant:1}OnslaughtBuffOnKillUniqueRing12[2000,2000] +{variant:2}OnslaughtBuffOnKillUniqueRing12 +{variant:3}RecoverPercentMaxLifeOnKillUnique__1 +{variant:3}AdrenalineOnKillUnique__1[3,3] +]],[[ +Doedre's Damning +Paua Ring +Variant: Pre 3.19.0 +Variant: Current +Implicits: 1 +IncreasedManaImplicitRing1 +{variant:1}IntelligenceUniqueRing4[5,10] +{variant:2}IntelligenceUniqueRing4 +{variant:1}AllResistancesUniqueRing9[5,5] +{variant:2}AllResistancesUniqueRing4 +{variant:1}ManaGainedFromEnemyDeathUnique__1[5,5] +{variant:2}ManaGainedFromEnemyDeathUniqueRing4 +AdditionalCurseOnEnemiesUnique__1 +]],[[ +Replica Doedre's Damning +Paua Ring +Variant: Pre 3.16.0 +Variant: Pre 3.19.0 +Variant: Pre 3.20.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +IncreasedManaImplicitRing1 +{variant:1,2}IntelligenceUniqueRing4[5,10] +{variant:3,4}IntelligenceUniqueRing4 +{variant:1,2}AllResistancesUniqueRing4[5,5] +{variant:3,4}AllResistancesUniqueRing4 +{variant:1,2}ManaGainedFromEnemyDeathUnique__1[5,5] +{variant:3,4}ManaGainedFromEnemyDeathUniqueRing4 +AdditionalCurseOnEnemiesUnique__3 +{variant:1}CurseEffectivenessUnique__4[25,35] +{variant:2,3}CurseEffectivenessUnique__4[15,25] +{variant:4}CurseEffectivenessUnique__4 +]],[[ +Dream Fragments +Sapphire Ring +Variant: Pre 2.6.0 +Variant: Current +Requires Level 24 +Implicits: 1 +ColdResistImplicitRing1 +MaximumManaUniqueRing5 +ManaRegenerationUniqueRing5 +{variant:2}ColdResistUnique__17 +{variant:1}CannotBeFrozen +{variant:2}CannotBeFrozenOrChilledUnique__1 +]],[[ +Emberwake +Ruby Ring +Variant: Pre 3.0.0 +Variant: Pre 3.9.0 +Variant: Pre 3.16.0 +Variant: Current +Requires Level 16 +Implicits: 1 +FireResistImplicitRing1 +{variant:1}FireDamagePercentUniqueRing38[15,25] +{variant:2,3,4}FireDamagePercentUniqueRing38 +IncreasedCastSpeedUniqueRing38 +{variant:1}ChanceToIgniteUniqueRing38[5,5] +{variant:2,3,4}ChanceToIgniteUniqueRing38 +CanInflictMultipleIgnitesUniqueRing38 +{variant:1}NoBonusesFromCriticalStrikes +{variant:1}EmberwakeLessBurningDamageUniqueRing38[80,80] +{variant:2}EmberwakeLessBurningDamageUniqueRing38[65,65] +{variant:3}EmberwakeLessBurningDamageUniqueRing38[65,50] +{variant:4}EmberwakeLessBurningDamageUnique__1 +]],[[ +Replica Emberwake +Ruby Ring +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 16 +Implicits: 1 +FireResistImplicitRing1 +FireDamagePercentUniqueRing38 +IncreasedCastSpeedUniqueRing38 +IgniteDurationUnique__2 +ChanceToIgniteUniqueRing38 +FasterIgniteDamageUnique__1 +]],[[ +Essence Worm +Unset Ring +Requires Level 38 +Implicits: 1 +RingHasOneSocket +LocalIncreaseSocketedAuraGemLevelUnique___1 +SocketedAurasReserveNoManaUnique__1 +IncreasedManaReservationsCostUnique__1 +]],[[ +Fated End +Paua Ring +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 38 +Implicits: 1 +IncreasedManaImplicitRing1 +IntelligenceUnique__25 +CurseCastSpeedUnique__2 +HexExpiresMaxDoomUnique__1[-20,20] +DoubleDoomEffectUnique__1 +]],[[ +Gifts from Above +Diamond Ring +League: Anarchy +Variant: Pre 2.6.0 +Variant: Current +Requires Level 28 +Implicits: 1 +CriticalStrikeChanceImplicitRing1 +{variant:2}TriggeredConsecrateUnique__1 +CriticalStrikeChanceUniqueRing11_ +LightRadiusUniqueRing11 +{variant:1}ConsecrateOnCritChanceToCreateUniqueRing11 +KilledMonsterItemRarityOnCritUniqueRing11 +{variant:2}IncreasedDamageOnConsecratedGroundUnique__1 +{variant:2}BlockChanceOnConsecratedGroundUnique__1 +]],[[ +Grattus Signet +Diamond Ring +League: Necropolis +Source: Created from 4 different unique{Grattus} family corpses in the normal{Necropolis} +Requires Level 64 +Implicits: 1 +CriticalStrikeChanceImplicitRing1 +IncreasedAttackSpeedUniqueRing37 +IncreasedCastSpeedUniqueRing38 +IncreasedEnergyShieldUnique__13 +IncreasedLifeUnique__15 +AttackCriticalStrikesUnnerveUnique__1 +SpellCriticalStrikesIntimidateUnique__1 +]],[[ +The Hateful Accuser +Nameless Ring +League: Settlers of Kalguur +Requires Level 50 +Implicits: 1 +CurseEffectElementalAilmentDurationOnSelfR1 +RitualRingPenanceMark +RitualRingCastSpeed +RitualRingLife +ChaosResistUnique__31 +]],[[ +Heartbound Loop +Moonstone Ring +Requires Level 20 +Implicits: 1 +IncreasedEnergyShieldImplicitRing1 +LifeRegenerationUniqueRing1 +ManaRegenerationUniqueRing33 +MinionLifeUniqueRing33 +MinonAreaOfEffectUniqueRing33 +PhysicalDamageToSelfOnMinionDeathUniqueRing33 +]],[[ +Ixchel's Temptation +Gold Ring +League: Affliction +Requires Level 20 +Implicits: 1 +ItemFoundRarityIncreaseImplicitRing1 +AllAttributesUniqueRing26 +AddedChaosDamageUnique__2 +SpellAddedFireDamageUnique__7 +IncreasedPhysicalDamageReductionRatingUnique__9 +IncreasedEvasionRatingUnique__7 +IncreasedEnergyShieldUnique__11 +IncreasedLifeUnique__122 +CriticalMultiplierUnique__7 +IncreasedManaImplicitArmour1 +AllResistancesImplicitRing1 +AttackAndCastSpeedUnique__8 +MaximumQualityOverrideUnique__1 +Corrupted +]],[[ +Anathema +Moonstone Ring +LevelReq: 49 +Implicits: 1 +IncreasedEnergyShieldImplicitRing1 +IntelligenceUnique__16 +IncreasedCastSpeedUniqueRing27 +PowerChargeOnCurseUnique__1 +CurseLimitMaximumPowerChargesUnique__1 +]],[[ +The Highwayman +Gold Ring +League: Heist +Variant: Pre 3.19.0 +Variant: Current +Requires Level 44 +Implicits: 1 +ItemFoundRarityIncreaseImplicitRing1 +ItemFoundRarityIncreaseUnique__5 +{variant:2}LifeLeechAnyDamageUnique__1 +{variant:1}MovementVelocityUnique__4 +{variant:2}MovementVelocityUnique__33_ +{variant:1}StealChargesOnHitPercentUniqueGlovesStrDex6[25,25] +{variant:1}DamageLeechWith5ChargesUnique__1 +{variant:2}StealChargesOnHitPercentUnique__1 +TotalRecoveryLifeLeechDoubledUnique__1 +]],[[ +Honoured Alliance +Coral Ring +League: Ancestor +Source: No longer obtainable +LevelReq: 49 +Implicits: 1 +IncreasedLifeImplicitRing1 +TukohamasEmbraceOnKillUnique__1 +AllAttributesUnique__24 +ManaRegenerationUnique__15 +DamageTakenGainedAsLifeUnique__4 +]], +[[ +The Hungry Loop +Unset Ring +Requires Level 45 +Implicits: 1 +RingHasOneSocket +ConsumesSupportGemsUnique +]],[[ +Icefang Orbit +Iron Ring +Requires Level: 49 +League: Blight +Implicits: 1 +AddedPhysicalDamageImplicitRing1 +DexterityUnique__1 +ChanceToPoisonUnique__1_______ +PoisonDamageUnique__1 +ChilledWhilePoisonedUnique__1 +NonChilledEnemiesPoisonAndChillUnique__1 +PoisonedEnemiesShatterOnKillUnique__1 +]],[[ +Kaom's Sign +Coral Ring +Variant: Pre 2.0.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 1 +IncreasedLifeImplicitRing1 +{variant:3}EnduringCrySkillUnique__1 +StrengthUniqueRing2 +{variant:1}LifeLeechPermyriadUniqueRing2 +{variant:2}LifeGainPerTargetUniqueRing2 +MaximumEnduranceChargeUniqueRing2 +]],[[ +Kaom's Way +Coral Ring +Variant: Pre 3.16.0 +Variant: Current +Source: No longer obtainable +Requires Level 32 +Implicits: 1 +IncreasedLifeImplicitRing1 +StrengthUniqueRing2 +{variant:1}LifeRegenerationPercentPerEnduranceChargeUnique__1[24,24] +{variant:2}LifeRegenerationPercentPerEnduranceChargeUnique__1 +{variant:2}AreaOfEffectPerEnduranceChargeUnique__1 +LifeGainPerTargetUniqueRing2 +MaximumEnduranceChargeUniqueRing2 +]],[[ +Kikazaru +Topaz Ring +Variant: Pre 2.6.0 +Variant: Pre 3.16.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 20 +Implicits: 1 +LightningResistImplicitRing1 +AllAttributesUniqueRing26 +{variant:1}LifeRegenerationUniqueRing26 +ManaRegenerationUniqueRing26 +{variant:1}ReducedCurseEffectUniqueRing26[20,20] +{variant:2}ReducedCurseEffectUniqueRing26[40,40] +{variant:3,4}ReducedCurseEffectUniqueRing26 +{variant:2,3}LifeRegenerationPerLevelUnique__1[60,60] +{variant:4}LifeRegenerationPerLevelUnique__1 +]],[[ +Nimis +Topaz Ring +Source: Drops from unique{The Eater of Worlds} (Uber) +LevelReq: 48 +Implicits: 1 +LightningResistImplicitRing1 +DexterityUnique__3 +IncreasedProjectileDamageUnique___11 +ReturningProjectilesUnique__1 +RandomProjectileDirectionUnique__1 +]],[[ +Le Heup of All +Iron Ring +Variant: Pre 2.6.0 +Variant: Current +Requires Level 24 +Implicits: 1 +AddedPhysicalDamageImplicitRing1 +{variant:1}AllDamageUniqueRing6[10,20] +{variant:2}AllDamageUniqueRing6 +{variant:1}AllAttributesUniqueRing6[10,20] +{variant:2}AllAttributesUniqueRing6 +{variant:1}ItemFoundRarityIncreaseUniqueRing6[10,20] +{variant:2}ItemFoundRarityIncreaseUniqueRing6 +{variant:1}AllResistancesUniqueRing6[10,20] +{variant:2}AllResistancesUniqueRing6 +]],[[ +Lori's Lantern +Prismatic Ring +Variant: Pre 1.0.0 +Variant: Current +Requires Level 30 +Implicits: 2 +{variant:1}AllResistancesImplicitRing1[8,12] +{variant:2}AllResistancesImplicitRing1 +AllResistancesUniqueRing9 +MovementVelocityOnLowLifeUniqueRing9 +LightRadiusUniqueRing9_ +ChaosResistanceOnLowLifeUniqueRing9 +EnemyExtraDamageRollsOnLowLifeUniqueRing9 +]],[[ +Malachai's Artifice +Unset Ring +Variant: Pre 2.6.0 +Variant: Current +Sockets: W +Requires Level 5 +Implicits: 1 +RingHasOneSocket +{variant:1}AllResistancesUniqueRing3[-25,-25] +{variant:2}AllResistancesUniqueRing3 +FireResistanceWhenSocketedWithRedGemUniqueRing25 +ColdResistanceWhenSocketedWithGreenGemUniqueRing25 +LightningResistanceWhenSocketedWithBlueGemUniqueRing25 +AllSocketsAreWhiteUniqueRing25 +SocketedGemHasElementalEquilibriumUniqueRing25 +]],[[ +Replica Malachai's Artifice +Unset Ring +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 5 +Implicits: 1 +RingHasOneSocket +SocketedGemHasSecretsOfSufferingUnique__1 +AllResistancesUniqueRing25 +FireResistanceWhenSocketedWithRedGemUniqueRing25 +ColdResistanceWhenSocketedWithGreenGemUniqueRing25 +LightningResistanceWhenSocketedWithBlueGemUniqueRing25 +AllSocketsAreWhiteUniqueRing25 +]],[[ +Mark of Submission +Unset Ring +Requires Level 24 +Implicits: 1 +RingHasOneSocket +UniqueCurseWithSocketedCurseOnHit_ +]],[[ +Mark of the Elder +Steel Ring +Elder Item +Source: Drops from unique{The Elder} (Uber) +Requires Level 80 +Implicits: 1 +AddedPhysicalDamageImplicitRing2 +AddedColdDamageUnique__5 +IncreasedEnergyShieldPercentUnique__5 +MaximumLifeUnique__16 +AttackDamageShaperItemUnique__1 +CannotBeStunnedByAttacksElderItemUnique__1 +TentacleSmashOnKillUnique__1_ +]],[[ +Mark of the Shaper +Opal Ring +Shaper Item +Source: Drops from unique{The Elder} (Uber) +Requires Level 80 +Implicits: 1 +ElementalDamagePercentImplicitAtlasRing_ +SpellAddedLightningDamageUnique__6_ +IncreasedEnergyShieldPercentUnique__3 +MaximumLifeUnique__11 +SpellDamageElderItemUnique__1_ +CannotBeStunnedBySpellsShaperItemUnique__1 +SummonVoidSphereOnKillUnique__1_ +]],[[ +Ming's Heart +Amethyst Ring +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 69 +Implicits: 1 +ChaosResistImplicitRing1 +{variant:1}MaximumLifeUniqueRing16[15,15] +{variant:2}MaximumLifeUniqueRing16[10,10] +{variant:3}MaximumLifeUniqueRing16[5,10] +{variant:4}MaximumLifeUniqueRing16 +{variant:1}ReducedEnergyShieldPercentUniqueRing16[15,15] +{variant:2}ReducedEnergyShieldPercentUniqueRing16[10,10] +{variant:3}ReducedEnergyShieldPercentUniqueRing16[5,10] +{variant:4}ReducedEnergyShieldPercentUniqueRing16 +ChaosResistUniqueRing16 +{variant:1,2,3}ChaosDamageAsPortionOfDamageUniqueRing16[20,20] +{variant:4}ChaosDamageAsPortionOfDamageUniqueRing16 +]],[[ +Mokou's Embrace +Ruby Ring +Variant: Pre 3.19.0 +Variant: Current +Requires Level 16 +Implicits: 1 +FireResistImplicitRing1 +{variant:1}FireDamagePercentUniqueRing24 +ColdResistUniqueRing24 +{variant:1}IncreasedChanceToIgniteUniqueRing24 +{variant:1}IncreasedAttackSpeedWhileIgnitedUniqueRing24[20,20] +{variant:2}IncreasedAttackSpeedWhileIgnitedUniqueRing24 +{variant:1}IncreasedCastSpeedWhileIgnitedUniqueRing24[20,20] +{variant:2}IncreasedCastSpeedWhileIgnitedUniqueRing24 +IncreasedChanceToBeIgnitedUniqueRing24 +{variant:2}AllDamageTakenCanIgniteUnique__1 +]],[[ +Mutewind Seal +Unset Ring +League: Warbands +Variant: Pre 2.6.0 +Variant: Pre 3.16.0 +Variant: Current +Requires Level 45 +Implicits: 1 +RingHasOneSocket +{variant:1}LocalIncreaseSocketedGolemLevelUniqueRing37[2,2] +{variant:2,3}LocalIncreaseSocketedGolemLevelUniqueRing37 +{variant:1}DisplaySocketedGemGetsFasterAttackUniqueRing37 +{variant:2,3}LocalGolemIncreasedAttackAndCastSpeedUnique__1 +AddedPhysicalDamageUniqueRing37 +IncreasedAttackSpeedUniqueRing37 +{variant:1}ChanceToDodgeUniqueRing37[1,2] +{variant:2}ChanceToDodgeUniqueRing37 +{variant:1}DisplaySocketedGemsSupportedByMinionSpeedUniqueRing37 +{variant:2,3}LocalGolemGrantOnslaughtOnSummonUnique__1 +]],[[ +Ngamahu's Sign +Ruby Ring +League: Bloodlines +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 29 +Implicits: 1 +FireResistImplicitRing1 +StrengthUniqueRing31__ +{variant:1}AddedFireDamageUniqueRing31[8,10][12,14] +{variant:2}AddedFireDamageUniqueRing31[8,10][12,14] +{variant:3}AddedFireDamageUniqueRing31 +{variant:1}LifeGainOnHitVsIgnitedEnemiesUniqueRing31 +BurnDurationUniqueRing31 +{variant:1}IncreasedChanceToIgniteUniqueRing31[5,5] +{variant:2,3}IncreasedChanceToIgniteUniqueRing31 +{variant:2,3}GainLifeOnIgnitingEnemyUnique__2 +]],[[ +Original Sin +Amethyst Ring +League: Sanctum +Source: Drops from unique{Lycia, Herald of the Scourge} in normal{The Beyond} while unique{The Original Scripture} is active in the normal{Relic Altar} +LevelReq: 52 +Implicits: 1 +ChaosResistImplicitRing1 +AllElementalDamageConvertedToChaosUnique__1 +NearbyEnemyZeroChaosDamageResistanceUnique__1 +]],[[ +The Pariah +Unset Ring +Variant: Pre 3.25.0 +Variant: Current +League: Warbands +Requires Level 60 +Implicits: 1 +RingHasOneSocket +LocalIncreaseSocketedGemLevelUniqueRing39 +AttackAndCastSpeedUniqueRing39 +LifePerRedSocketUniqueRing39 +EnergyShieldPerBlueSocketUniqueRing39 +ManaPerGreenSocketUniqueRing39 +{variant:1}ItemQuantityPerWhiteSocketUniqueRing39_ +{variant:2}ItemRarityPerWhiteSocketUniqueRing39 +]],[[ +Perandus Signet +Paua Ring +Variant: Pre 2.0.0 +Variant: Current +Implicits: 1 +IncreasedManaImplicitRing1 +IncreasedManaUniqueRing14 +ManaRegenerationUniqueRing14 +{variant:1}IncreasedExperienceUniqueRing14[3,3] +{variant:2}IncreasedExperienceUniqueRing14 +{variant:1}IncreasedIntelligencePerUniqueUniqueRing14[3,3] +{variant:2}IncreasedIntelligencePerUniqueUniqueRing14 +IncreasedChanceForMonstersToDropWisdomScrollsUniqueRing14 +]],[[ +Polaric Devastation +Opal Ring +Source: Drops from unique{The Black Star} +Requires Level 80 +Implicits: 1 +ElementalDamagePercentImplicitAtlasRing_ +CriticalStrikeChanceUnique__5__ +FireResistUnique__9 +ColdResistUnique__15 +IncreasedAilmentDurationUnique__3_ +LeftRingCoveredInAshUnique__1_ +RightRingCoveredInFrostUnique__1 +]],[[ +Praxis +Paua Ring +Requires Level 22 +Implicits: 1 +IncreasedManaImplicitRing1 +IncreasedManaUnique__8 +AddedManaRegenerationUnique__1 +ReduceGlobalFlatManaCostUnique__1 +PercentDamageGoesToManaUnique__1 +]],[[ +Profane Proxy +Unset Ring +Sockets: G +LevelReq: 52 +Implicits: 1 +RingHasOneSocket +IncreaseSocketedCurseGemLevelUnique__2 +ColdResistImplicitRing1 +LightningResistImplicitRing1 +SupportSkitterBotAilmentAuraReplaceWithCurse____1 +]],[[ +Putembo's Meadow +Topaz Ring +League: Delve +Source: Drops from unique{Kurgal, the Blackblooded} +Requires Level 49 +Implicits: 1 +LightningResistImplicitRing1 +IntelligenceUnique__13 +IncreasedEnergyShieldPercentUnique__4 +MaximumLifeUnique__14 +]],[[ +Putembo's Mountain +Topaz Ring +League: Delve +Source: Drops from unique{Aul, the Crystal King} +Requires Level 49 +Implicits: 1 +LightningResistImplicitRing1 +IntelligenceUnique__13 +IncreasedEnergyShieldPercentUnique__4 +MaximumLifeUnique__14 +]],[[ +Putembo's Valley +Topaz Ring +League: Delve +Source: Drops from unique{Ahuatotli, the Blind} +Requires Level 49 +Implicits: 1 +LightningResistImplicitRing1 +IntelligenceUnique__13 +IncreasedEnergyShieldPercentUnique__4 +MaximumLifeUnique__14 +]],[[ +Pyre +Sapphire Ring +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Requires Level 11 +Implicits: 1 +ColdResistImplicitRing1 +FireResistUniqueRing15 +{variant:1,2}BurnDamageUniqueRing15[25,35] +{variant:3}BurnDamageUniqueRing15 +{variant:1}ConvertColdToFireUniqueRing15[100,100] +{variant:2,3}ConvertColdToFireUniqueRing15 +LightRadiusUniqueRing15 +IgnitedEnemiesTurnToAshUniqueRing15 +]],[[ +The Queller of Minds +Nameless Ring +League: Settlers of Kalguur +Requires Level 50 +Implicits: 1 +CurseEffectElementalAilmentDurationOnSelfR1 +RitualRingPacify +RitualRingCastSpeed +RitualRingMana +ChaosResistUnique__31 +]],[[ +Redblade Band +Unset Ring +League: Warbands +Variant: Pre 2.6.0 +Variant: Current +Requires Level 45 +Implicits: 1 +RingHasOneSocket +{variant:1}LocalIncreaseSocketedGolemLevelUniqueRing36[2,2] +{variant:2}LocalIncreaseSocketedGolemLevelUniqueRing36 +StrengthUniqueRing36 +{variant:2}IncreasedLifeUniqueRing19 +{variant:1}AddedFireDamageUniqueRing36 +FireDamagePercentUniqueRing36 +{variant:1}DisplaySocketedGemsSupportedByLesserMultipleProjectilesUniqueRing36 +{variant:2}LocalGolemTauntOnHitUnique__1_ +{variant:1}DisplaySocketedGemsSupportedByIncreasedMinionDamageUniqueRing36 +{variant:2}LocalGolemLifeRegenerationUnique__1 +]],[[ +Rigwald's Crest +Two-Stone Ring +League: Talisman +Variant: Pre 3.19.0 +Variant: Current +Source: Drops from unique{Rigwald, the Wolven King} (Level 60+) +Requires Level 49 +Implicits: 1 +FireAndColdResistImplicitRing1 +SummonWolfOnKillUnique__1 +{variant:1}FireDamagePercentUniqueRing36 +{variant:1}ColdDamagePercentUnique___11 +ManaRegenerationUnique__4 +]],[[ +Romira's Banquet +Diamond Ring +Variant: Pre 1.1.0 +Variant: Pre 2.2.0 +Variant: Current +Requires Level 60 +Implicits: 1 +CriticalStrikeChanceImplicitRing1 +IncreasedAccuracyUniqueRing17 +{variant:1}CriticalMultiplierUniqueRing17[10,20] +{variant:2}CriticalMultiplierUniqueRing17[10,15] +{variant:3}CriticalMultiplierUniqueRing17 +IncreasedManaUniqueRing17 +ManaLeechPermyriadUniqueRing17 +PowerChargeOnNonCritUniqueRing17 +ConsumeAllPowerChargesOnCritUniqueRing17 +]],[[ +Rotblood Promise +Unset Ring +League: Ritual +Source: Purchase from Ritual Reward +Variant: Pre 3.16.0 +Variant: Current +Requires Level 56 +Implicits: 1 +RingHasOneSocket +SupportedByBlasphemyUnique +CurseAurasAffectYouUnique__1 +{variant:1}ReducedReservationForSocketedCurseGemsUnique__2[-50,-50] +{variant:2}ReducedReservationForSocketedCurseGemsUnique__2 +IntelligenceUnique__12 +ReducedCurseEffectUnique__1 +HitAndAilmentDamageCursedEnemiesUnique__1 +]],[[ +The Selfish Shepherd +Nameless Ring +League: Settlers of Kalguur +Requires Level 50 +Implicits: 2 +SelfStatusAilmentDurationUnique__1 +ReducedCurseEffectUniqueRing7 +RitualRingAffliction +RitualRingCastSpeed +RitualRingEnergyShield +ChaosResistUnique__31 +]],[[ +Shavronne's Revelation +Moonstone Ring +League: Anarchy, Onslaught +Variant: Pre 1.2.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Requires Level 30 +Implicits: 1 +IncreasedEnergyShieldImplicitRing1 +IntelligenceUniqueRing13 +RightRingSlotNoManaRegenUniqueRing13 +{variant:1}RightRingSlotEnergyShieldRegenUniqueRing13[240,240] +{variant:2,3}RightRingSlotEnergyShieldRegenUniqueRing13[180,180] +{variant:4}RightRingSlotEnergyShieldRegenUniqueRing13 +{variant:3}RightRingSlotMaximumManaUnique__1[100,100] +{variant:4}RightRingSlotMaximumManaUnique__1 +LeftRingSlotNoEnergyShieldRegenUniqueRing13 +{variant:3,4}LeftRingSlotFlatManaRegenerationUnique__1 +{variant:3}LeftRingSlotMaximumEnergyShieldUnique__1[100,100] +{variant:4}LeftRingSlotMaximumEnergyShieldUnique__1 +{variant:1,2}LeftRingSlotManaRegenUniqueRing13 +]],[[ +Sibyl's Lament +Coral Ring +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.9.0 +Variant: Pre 3.28.0 +Variant: Current +Requires Level 45 +Implicits: 1 +IncreasedLifeImplicitRing1 +WeaponElementalDamageUniqueRing10 +AddedFireDamageUniqueRing10 +{variant:1}ItemFoundRarityDecreaseUniqueRing10[20,40] +{variant:2,3,4,5}ItemFoundRarityDecreaseUniqueRing10 +{variant:1,2}LeftRingSlotElementalReflectDamageTakenUniqueRing10[-30,-30] +{variant:3}LeftRingSlotElementalReflectDamageTakenUniqueRing10[-40,-40] +{variant:4}LeftRingSlotElementalReflectDamageTakenUniqueRing10[-80,-80] +{variant:5}LeftRingSlotElementalReflectDamageTakenUniqueRing10 +{variant:1,2}RightRingSlotPhysicalReflectDamageTakenUniqueRing10[-30,-30] +{variant:3}RightRingSlotPhysicalReflectDamageTakenUniqueRing10[-40,-40] +{variant:4}RightRingSlotPhysicalReflectDamageTakenUniqueRing10[-80,-80] +{variant:5}RightRingSlotPhysicalReflectDamageTakenUniqueRing10 +]],[[ +Snakepit +Sapphire Ring +Variant: Pre 3.5.0 +Variant: Current +Requires Level 68 +Implicits: 1 +ColdResistImplicitRing1 +{variant:1}ColdDamagePercentUnique__9 +{variant:2}SpellDamageUnique__11 +IncreasedCastSpeedUniqueRing38 +{variant:1}AdditionalSpellProjectilesUnique__1 +{variant:2}LeftRingSpellProjectilesCannotChainUnique__1 +{variant:2}LeftRingSpellProjectilesForkUnique__1_ +{variant:2}RightRingSpellProjectilesChainUnique__1 +{variant:2}RightRingSpellProjectilesCannotForkUnique__1 +{variant:2}SpellsCannotPierceUnique__1__ +]],[[ +Soulbound +Paua Ring +LevelReq: 44 +Implicits: 1 +IncreasedManaImplicitRing1 +AllAttributesUnique__17_ +LinkSkillCastSpeedUnique__1 +LinkSkillEffectDurationUnique__1 +LinkTargetCannotDieUnique__1 +LinkLoseNoExperienceUnique__1 +]],[[ +Stormfire +Opal Ring +Variant: Pre 3.17.0 +Variant: Current +Requires Level 80 +Implicits: 1 +ElementalDamagePercentImplicitAtlasRing_ +ManaRegenerationUnique__8 +FireAndLightningResistUnique__2 +{variant:1}BurningDamagePerEnemyShockedRecentlyUnique__1_[4,6][120,120] +{variant:2}BurningDamagePerEnemyShockedRecentlyUnique__1_ +AddedLightningDamageAgainstIgnitedEnemiesUnique__1 +LightningDamageCanIgniteUnique__1 +]],[[ +Storm Secret +Topaz Ring +League: Harvest +Requires Level 56 +Implicits: 1 +LightningResistImplicitRing1 +Intelligence__1 +LightningDamagePercentUnique__7 +ChanceToShockUnique__4_ +ActivateHeraldOfThunderOnShockUnique__1 +HeraldOfThunderBoltFrequencyUnique__1 +TakeDamageWhenHeraldOfThunderHitsUnique__1__ +]],[[ +The Taming +Prismatic Ring +League: Domination, Nemesis +Source: Vendor Recipe +Variant: Pre 3.0.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 30 +Implicits: 1 +AllResistancesImplicitRing1 +{variant:1}WeaponElementalDamageImplicitSword1[15,15] +{variant:2}WeaponElementalDamageImplicitSword1 +{variant:1}AllResistancesUniqueRing21[10,15] +{variant:2,3}AllResistancesUniqueRing21 +{variant:1}ElementalDamageUnique__1[15,15] +{variant:2}ElementalDamageUnique__1 +{variant:1}ChanceToFreezeShockIgniteUniqueRing21[5,5] +{variant:2,3}ChanceToFreezeShockIgniteUniqueRing21 +{variant:1}DamagePerStatusAilmentOnEnemiesUniqueRing21[10,10] +{variant:2}DamagePerStatusAilmentOnEnemiesUniqueRing21[20,20] +{variant:3}DamagePerStatusAilmentOnEnemiesUniqueRing21 +]],[[ +Tasalio's Sign +Sapphire Ring +League: Bloodlines +Variant: Pre 2.6.0 +Variant: Current +Requires Level 20 +Implicits: 1 +ColdResistImplicitRing1 +{variant:1}AddedPhysicalDamageVsFrozenEnemiesUniqueRing30 +{variant:2}AddedColdDamageAgainstFrozenEnemiesUnique__1 +{variant:1}AddedColdDamageUnique__11[5,6][7,9] +{variant:2}AddedColdDamageUniqueRing30 +IncreasedEvasionRatingUniqueRing30 +{variant:1}ReducedChillDurationOnSelfUniqueRing30 +{variant:2}ChanceToAvoidChilledUnique__1 +{variant:1}ChanceToFreezeUniqueRing30[5,5] +{variant:2}ChanceToFreezeUniqueRing30 +]],[[ +Replica Tasalio's Sign +Sapphire Ring +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 20 +Implicits: 1 +ColdResistImplicitRing1 +AddedColdDamageUnique__10 +IncreasedEvasionRatingUniqueRing30 +ColdDamageCannotFreeze +ImmuneToChillUnique__2__ +AddedColdDamageAgainstFrozenEnemiesUnique__2 +]],[[ +Tawhanuku's Timing +Moonstone Ring +IncreasedEnergyShieldImplicitRing1 +SpellDamageUnique__16 +IncreasedManaUnique__27 +ChanceToFreezeShockIgniteUnique__3 +ChanceToCastOnManaSpentUnique__1 +]],[[ +Thief's Torment +Prismatic Ring +Variant: Pre 1.0.0 +Variant: Pre 1.1.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 30 +Implicits: 2 +{variant:1}AllResistancesImplicitRing1[8,12] +{variant:2,3,4,5,6}AllResistancesImplicitRing1 +{variant:1,2}ItemFoundQuantityIncreaseUniqueRing7[15,25] +{variant:3,4,5}ItemFoundQuantityIncreaseUniqueRing7 +{variant:6}ItemFoundRarityIncreaseUnique__9 +DisablesOtherRingSlot +{variant:1,2,3}AllResistancesUniqueRing7[8,12] +{variant:4}AllResistancesUniqueRing7[16,24] +{variant:5,6}AllResistancesUniqueRing7 +{variant:1,2,3}LifeGainPerTargetUniqueRing7[20,30] +{variant:4,5,6}LifeGainPerTargetUniqueRing7 +{variant:1,2,3}ManaGainPerTargetUniqueRing7[15,15] +{variant:4,5,6}ManaGainPerTargetUniqueRing7 +ReducedCurseEffectUniqueRing7 +]],[[ +Timeclasp +Moonstone Ring +Variant: Pre 2.6.0 +Variant: Pre 3.17.0 +Variant: Pre 3.19.0 +Variant: Current +LevelReq: 25 +Implicits: 1 +IncreasedEnergyShieldImplicitRing1 +IncreasedAttackSpeedUniqueRing27 +{variant:1}IncreasedCastSpeedUniqueRing27[5,8] +{variant:2,3}IncreasedCastSpeedUniqueRing27[5,10] +{variant:4}IncreasedCastSpeedUniqueRing27 +{variant:1}IncreasedEnergyShieldUnique__8[10,25] +{variant:2}IncreasedEnergyShieldUnique__8[15,25] +{variant:3}IncreasedEnergyShieldUnique__8 +{variant:1}ManaRegenerationUnique__14___[15,15] +{variant:2,3}ReducedManaRegenerationUniqueRing27 +{variant:1}TemporalChainsEffectivenessOnSelfUniqueRing27[-30,-30] +{variant:2}TemporalChainsEffectivenessOnSelfUniqueRing27 +{variant:3}SkillEffectDurationUnique__1[-10,10] +{variant:4}SkillEffectDurationUnique__1[-20,20] +{variant:4}DamageTakenGainedAsLifeUnique__3 +{variant:4}PercentDamageGoesToManaUnique__2 +{variant:3,4}TemporalChainsEffectivenessOnSelfUnique__1 +]],[[ +Timetwist +Moonstone Ring +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +LevelReq: 25 +Implicits: 1 +IncreasedEnergyShieldImplicitRing1 +IncreasedAttackSpeedUniqueRing27 +{variant:1}IncreasedCastSpeedUniqueRing27[5,8] +{variant:2}IncreasedCastSpeedUniqueRing27 +IncreasedEnergyShieldUnique__8 +{variant:1}ManaRegenerationUnique__14___[15,15] +{variant:2}ReducedManaRegenerationUniqueRing27 +SkillEffectDurationUnique__1[-10,10] +TemporalChainsEffectivenessOnSelfUnique__1 +]],[[ +Triumvirate Authority +Unset Ring +Requires Level 64 +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Apex of Sacrifice} (3 stats) or in normal{The Alluring Abyss} (4 stats) +Has Alt Variant: true +Has Alt Variant Two: true +Has Alt Variant Three: true +Variant: More Damage +Variant: Less souls +Variant: Regain Souls +Variant: Ignore resistances +Variant: Ignore Phys. Dmg. Reduction +Variant: Grant Elusive +Variant: Tailwind +Variant: Area of Effect +Variant: Proj. Speed +Variant: Skill Effect Duration +Variant: Soul Gain Prevention Duration +Variant: Lucky Damage +Variant: Aura Effect +Implicits: 1 +RingHasOneSocket +LocalIncreaseSocketedVaalGemLevelUnique__1 +{variant:1}LocalVaalDamageUnique__1_ +{variant:2}LocalVaalSoulRequirementUnique__1 +{variant:3}LocalVaalUsesToStoreUnique__1 +{variant:4}LocalVaalIgnoreMonsterResistancesUnique__1 +{variant:5}LocalVaalIgnoreMonsterPhysicalReductionUnique__1 +{variant:6}LocalVaalElusiveOnUseUnique__1_ +{variant:7}LocalVaalTailwindIfUsedRecentlyUnique__1 +{variant:8}LocalVaalAreaOfEffectUnique__1 +{variant:9}LocalVaalProjectileSpeedUnique__1 +{variant:10}LocalVaalSkillEffectDurationUnique__1 +{variant:11}LocalVaalSoulGainPreventionUnique__1 +{variant:12}LocalVaalLuckyDamageUnique__1 +{variant:13}LocalVaalAuraEffectUnique__1 +]],[[ +Uzaza's Meadow +Sapphire Ring +League: Delve +Source: Drops from unique{Ahuatotli, the Blind} +Requires Level 49 +Implicits: 1 +ColdResistImplicitRing1 +DexterityUnique__13 +IncreasedEnergyShieldPercentUnique__4 +MaximumLifeUnique__14 +]],[[ +Uzaza's Mountain +Sapphire Ring +League: Delve +Source: Drops from unique{Kurgal, the Blackblooded} +Requires Level 49 +Implicits: 1 +ColdResistImplicitRing1 +DexterityUnique__13 +IncreasedEnergyShieldPercentUnique__4 +MaximumLifeUnique__14 +]],[[ +Uzaza's Valley +Sapphire Ring +League: Delve +Source: Drops from unique{Aul, the Crystal King} +Requires Level 49 +Implicits: 1 +ColdResistImplicitRing1 +DexterityUnique__13 +IncreasedEnergyShieldPercentUnique__4 +MaximumLifeUnique__14 +]],[[ +Valako's Sign +Topaz Ring +League: Bloodlines +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Current +Requires Level 38 +Implicits: 1 +LightningResistImplicitRing1 +{variant:1}IncreasedDamageToShockedTargetsUniqueRing29[15,15] +{variant:2,3}IncreasedDamageToShockedTargetsUniqueRing29 +LightningDamagePercentUniqueRing29 +IncreasedManaUniqueRing29 +{variant:1,2}LifeLeechPermyriadVsShockedEnemiesUniqueRing29[200,200] +{variant:3}LifeLeechPermyriadVsShockedEnemiesUniqueRing29 +{variant:1}ChanceToShockUniqueRing29[5,5] +{variant:2}ChanceToShockUniqueRing29[10,10] +{variant:3}ChanceToShockUniqueRing29 +]],[[ +Valyrium +Moonstone Ring +Variant: Pre 3.11.0 +Variant: Current +Requires Level 38 +Implicits: 1 +IncreasedEnergyShieldImplicitRing1 +{variant:1}IncreasedEnergyShieldUniqueRing18[10,20] +{variant:2}IncreasedEnergyShieldUniqueRing18 +{variant:1}FireResistUnique__20_[20,30] +{variant:2}FireResistUnique__20_ +ColdResistUnique__9 +StunDurationBasedOnEnergyShieldUnique__1 +]],[[ +Venopuncture +Iron Ring +Requires Level: 49 +League: Blight +Implicits: 1 +AddedPhysicalDamageImplicitRing1 +StrengthUniqueRing8 +CausesBleedingUnique__1 +BleedDamageUnique__1_ +ChilledWhileBleedingUnique__1_ +NonChilledEnemiesBleedAndChillUnique__1_ +BleedingEnemiesShatterOnKillUnique__1 +]],[[ +Ventor's Gamble +Gold Ring +Variant: Pre 3.25.0 +Variant: Current +Requires Level 65 +Implicits: 1 +ItemFoundRarityIncreaseImplicitRing1 +IncreasedLifeUniqueRing32 +{variant:1}ItemFoundQuantityIncreaseUniqueRing32 +ItemFoundRarityIncreaseUniqueRing32_ +FireResistUniqueRing32 +ColdResistUniqueRing32 +LightningResistUniqueRing32 +{variant:2}ManaReservationEfficiencyUnique__1 +]],[[ +Vivinsect +Unset Ring +League: Betrayal +Source: Drops from unique{Research Leaders} in normal{Safehouses} +Variant: Fire and Chaos Resistances Pre 3.16.0 +Variant: Cold and Chaos Resistances Pre 3.16.0 +Variant: Lightning and Chaos Resistances Pre 3.16.0 +Variant: Strength and Dexterity Pre 3.16.0 +Variant: Dexterity and Intelligence Pre 3.16.0 +Variant: Strength and Intelligence Pre 3.16.0 +Variant: Effect of non-Damaging Ailments Pre 3.16.0 +Variant: Focus Shock Nearby Enemies Pre 3.16.0 +Variant: Minimum Frenzy Charges Pre 3.16.0 +Variant: Minimum Power Charges Pre 3.16.0 +Variant: Minimum Endurance Charges Pre 3.16.0 +Variant: Fire and Chaos Resistances +Variant: Cold and Chaos Resistances +Variant: Lightning and Chaos Resistances +Variant: Strength and Dexterity +Variant: Dexterity and Intelligence +Variant: Strength and Intelligence +Variant: Focus Shock Nearby Enemies +Variant: Minimum Frenzy Charges +Variant: Minimum Power Charges +Variant: Minimum Endurance Charges +Requires Level 45 +Implicits: 1 +RingHasOneSocket +LocalIncreaseSocketedAuraGemLevelUnique___2___ +{variant:1,2,3,4,5,6,7,8,9,10,11}Socketed Gems have 20% reduced Mana Reservation Efficiency +{variant:13,14,15,16,17,18,19,20,21}SocketedItemsHaveIncreasedReservationUnique__1 +AllAttributesUnique__16_ +LifeRegenPerUncorruptedItemUnique__1 +TotalManaCostPerCorruptedItemUnique__1 +{variant:1}FireAndChaosDamageResistanceUnique__1__[8,15] +{variant:2}{crafted}{tags:chaos,jewellery_resistance}+(8-15)% to Cold and Chaos Resistances +{variant:3}{crafted}{tags:chaos,jewellery_resistance}+(8-15)% to Lightning and Chaos Resistances +{variant:4}StrengthAndDexterityUnique_1[6,17] +{variant:5}DexterityAndIntelligenceUnique_2[6,17] +{variant:6}StrengthIntelligenceUnique__2[6,17] +{variant:7}{crafted}(11-30)% increased Effect of non-Damaging Ailments on Enemies +{variant:8}{crafted}Shock nearby Enemies for (2-4) Seconds when you Focus +{variant:9}{crafted}+1 to Minimum Frenzy Charges +{variant:10}{crafted}+1 to Minimum Power Charges +{variant:11}{crafted}+1 to Minimum Endurance Charges +{variant:12}FireAndChaosDamageResistanceUnique__1__[16,20] +{variant:13}{crafted}{tags:chaos,jewellery_resistance}+(16-20)% to Cold and Chaos Resistances +{variant:14}{crafted}{tags:chaos,jewellery_resistance}+(16-20)% to Lightning and Chaos Resistances +{variant:15}StrengthAndDexterityUnique_1[31,35] +{variant:16}DexterityAndIntelligenceUnique_2[31,35] +{variant:17}StrengthIntelligenceUnique__2[31,35] +{variant:18}{crafted}Shock nearby Enemies for 4 Seconds when you Focus +{variant:18}FocusCooldownRecoveryUnique__1_[5,8] +{variant:19}{crafted}+1 to Minimum Frenzy Charges +{variant:19}VillageFrenzyChargeOnKillChance[3,4] +{variant:20}{crafted}+1 to Minimum Power Charges +{variant:20}PowerChargeOnKillChanceUnique__1[3,4] +{variant:21}{crafted}+1 to Minimum Endurance Charges +{variant:21}{crafted}(3-4)% chance to gain a Endurance Charge on Kill +]],[[ +Voideye +Unset Ring +League: Ambush, Invasion +Requires Level 45 +Implicits: 1 +RingHasOneSocket +LocalIncreaseSocketedGemLevelUniqueRing23 +]],[[ +Replica Voideye +Unset Ring +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 45 +Implicits: 1 +RingHasOneSocket +SocketedGemQualityUnique__2_ +]],[[ +The Warden's Brand +Iron Ring +Requires Level 30 +Implicits: 1 +AddedPhysicalDamageImplicitRing1 +AddedPhysicalDamageUnique__2 +ReducedAttackSpeedUnique__1 +ChanceToGainFrenzyChargeOnStunUnique__1 +]],[[ +Warrior's Legacy +Ruby Ring +Requires Level 16 +Implicits: 1 +FireResistImplicitRing1 +StrengthUnique__32 +MeleeDamageUnique__1 +AvoidStunUnique__1 +RingAttackSpeedUnique__1 +StrikeSkillMemoryUseUnique__1_______ +]],[[ +Call of the Void +Sapphire Ring +Shaper Item +Elder Item +Source: Drops from unique{The Elder} (Uber Uber) +Requires Level 16 +Implicits: 1 +ColdResistImplicitRing1 +ColdResistImplicitRing1 +AllDamageCanChillUnique__1 +AllDamageTakenCanChillUnique__1 +ChillHitsCauseShatteringUnique__1 +EnemiesChilledLessDamageDealtUnique__1 +]],[[ +Kalandra's Touch +Ring +League: Kalandra +DuplicatesRingStats +Mirrored +]],[[ +Betrayal's Sting +Steel Ring +Source: Drops from unique{Incarnation of Neglect} in normal{Moment of Loneliness} +Requires Level 80 +Implicits: 1 +AddedPhysicalDamageImplicitRing2 +DexterityUnique__33 +AllResistancesUnique_1 +ChaosResistUnique__18_ +MovementVelocityUnique__3 +AdditionalPoisonChanceUnique__1 +]],[[ +Coiling Whisper +Amethyst Ring +Source: Drops from unique{Incarnation of Fear} in normal{Moment of Trauma} +Requires Level 32 +Implicits: 1 +ChaosResistImplicitRing1 +CurseAreaOfEffectUnique__4 +TargetsUnaffectedByYourHexesUnique__1 +EatSoulAfterHexPercentCurseExpireUnique__1 +]],[[ +Enmity's Embrace +Vermillion Ring +Source: Drops from unique{Incarnation of Fear} in normal{Moment of Trauma} +Requires Level 80 +Implicits: 1 +MaximumLifeImplicitAtlasRing +StrengthUnique__27 +FireDamagePercentUnique__13 +ReducedFireResistanceUnique__2 +FireDamageOnSkillUseUnique__1 +OvercappedFireResistanceAsFirePrenetrationUnique__1 +]],[[ +Prospero's Protection +Iron Ring +Requires Level 32 +Implicits: 1 +AddedPhysicalDamageImplicitRing1 +BlockPercentUnique__3 +StrengthUnique__31 +IncreasedLifeUnique__14 +ArmourFromShieldDoubledUnique__1 +GainNoArmourFromBodyArmourUnique__1 +]],[[ +Squirming Terror +Unset Ring +Requires Level 32 +Implicits: 1 +RingHasOneSocket +SummonWrithingWormEveryXMsUnique__1 +TriggerSocketedSpellOnKillUnique__1 +LoseLifePerTargetUnique__2 +ManaGainPerTargetUnique__3 +]], +[[ +Lost Unity +Formless Ring +Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} +Requires Level 42 +Implicits: 1 +FormlessBreachRingImplicit +HeraldOfTheBreachUnique_1 +AllResistancesUnique__33 +ChaosResistUnique__36 +]], +[[ +The Sundered Will +Fugitive Ring +Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} +Requires Level 42 +Implicits: 1 +ChayulaBreachRingImplicit +AllAttributesUnique__31 +GlobalAddedChaosDamageUnique__7 +ChaosResistUnique__35 +AuraIncreasedIncreasedAreaOfEffectUnique_3 +ReservationEfficiencyUnique__6 +ChaosDamageModsApplyToChaosAuraEffectAtPercentUnique_1 +]], +[[ +The Unseen Hue +Opal Ring +Source: Drops from unique{Incarnation of Dread} in normal{Moment of Reverence} +Requires Level 80 +Variant: Scorch +Variant: Brittle +Variant: Sap +Implicits: 1 +ElementalDamagePercentImplicitAtlasRing_ +FireResistUnique__36 +ColdResistUnique__42 +LightningResistUnique__32 +AttackAndCastSpeedUnique__10 +NonDamagingAilmentEffectUnique_1 +{variant:1}PrismaticSkillsInflictScorchUnique_1 +{variant:2}PrismaticSkillsInflictBrittleUnique_1 +{variant:3}PrismaticSkillsInflictSapUnique_1 +]],[[ +The Will of Esh +Synaptic Ring +Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} +Requires Level 42 +Implicits: 1 +EshBreachRingImplicit +IntelligenceUniqueRing34 +GlobalAddedLightningDamageUnique__5 +LightningResistImplicitRing1 +AuraIncreasedIncreasedAreaOfEffectUnique_2 +ReservationEfficiencyUnique__10 +LightningDamageModsApplyToLightningAuraEffectAtPercentUnique_1 +]], +[[ +The Will of Tul +Cryonic Ring +Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} +Requires Level 42 +Implicits: 1 +TulBreachRingImplicit +DexterityUnique__34 +GlobalAddedColdDamageUnique__5 +ColdResistImplicitRing1 +AuraIncreasedIncreasedAreaOfEffectUnique_2 +ReservationEfficiencyUnique__10 +ColdDamageModsApplyToColdAuraEffectAtPercentUnique_1 +]], +[[ +The Will of Uul-Netol +Organic Ring +Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} +Requires Level 42 +Implicits: 1 +UulNetolBreachRingImplicit +StrengthUniqueRing31__ +GlobalAddedPhysicalDamageUnique__3 +GlobalPhysicalDamageReductionRatingPercentUnique__2 +AuraIncreasedIncreasedAreaOfEffectUnique_2 +ReservationEfficiencyUnique__10 +PhysicalDamageModsApplyToPhysicalAuraEffectAtPercentUnique_1 +]], +[[ +The Will of Xoph +Enthalpic Ring +Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} +Requires Level 42 +Implicits: 1 +XophBreachRingImplicit +StrengthUniqueRing31__ +GlobalAddedFireDamageUnique__6 +FireResistImplicitRing1 +AuraIncreasedIncreasedAreaOfEffectUnique_2 +ReservationEfficiencyUnique__10 +FireDamageModsApplyToFireAuraEffectAtPercentUnique_1 +]], +[[ +Woespike +Steel Ring +Source: Drops from unique{Uber Incarnation of Fear} in normal{Moment of Trauma} +Variant: Pre 3.28.0 +Variant: Current +Requires Level 80 +Implicits: 1 +AddedPhysicalDamageImplicitRing2 +StrengthAndDexterityUnique_1 +AddedPhysicalDamageUnique__12 +AttackImpaleChanceUnique__2 +{variant:1}(40-25)% reduced Impale Duration +{variant:2}ImpaleDurationUnique_1[-50,-40] +{variant:1}ChanceMeleeHitsDontRemoveSTRONGESTImpaleUnique_1[45,60] +{variant:2}ChanceMeleeHitsDontRemoveSTRONGESTImpaleUnique_1 +]], +} diff --git a/src/Export/Uniques/shield.lua b/src/Export/Uniques/shield.lua new file mode 100644 index 0000000000..984d4bbcda --- /dev/null +++ b/src/Export/Uniques/shield.lua @@ -0,0 +1,1249 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Shield: Armour +[[ +Ahn's Heritage +Colossal Tower Shield +Variant: Pre 3.0.0 +Variant: Pre 3.10.0 +Variant: Current +Implicits: 1 +{variant:2,3}IncreasedLifeImplicitShield1 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__8 +IncreasedLifeUniqueShieldDex2 +ReducedMaximumEnduranceChargeUnique__1 +MaximumBlockChanceUnique__1 +AdditionalBlockChanceUniqueShieldStrInt4 +{variant:1,2}MaximumResistanceWithNoEnduranceChargesUnique__1__[3,3] +{variant:3}MaximumResistanceWithNoEnduranceChargesUnique__1__ +OnslaughtWithMaxEnduranceChargesUnique__1 +]],[[ +The Anticipation +Ezomyte Tower Shield +League: Breach +Source: Drops in Uul-Netol Breach or from unique{Uul-Netol, Unburdened Flesh} +Upgrade: Upgrades to unique{The Surrender} using currency{Blessing of Uul-Netol} +Variant: Pre 3.0.0 +Variant: Pre 3.21.0 +Variant: Current +Implicits: 1 +{variant:2,3}IncreasedLifeUniqueShieldDex6[30,40] +{variant:1,2}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__4[120,160] +{variant:3}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__4 +IncreasedLifeUniqueShieldDex6 +AdditionalBlockChanceUniqueShieldStrInt4 +{variant:1,2}GainArmourIfBlockedRecentlyUnique__1[1000,1000] +{variant:3}GainArmourIfBlockedRecentlyUnique__1 +EnemiesBlockedAreIntimidatedUnique__1 +]],[[ +The Surrender +Ezomyte Tower Shield +League: Breach +Source: Upgraded from unique{The Anticipation} using currency{Blessing of Uul-Netol} +Variant: Pre 3.0.0 +Variant: Pre 3.21.0 +Variant: Pre 3.25.0 +Variant: Current +Implicits: 1 +{variant:2,3,4}IncreasedLifeImplicitShield3 +{variant:1,2,3}GrantsLevel30ReckoningUnique__1 +{variant:1,2}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__5[130,170] +{variant:3,4}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__5 +IncreasedLifeUnique__31 +{variant:1,2}GainLifeOnBlockUnique__1[250,250] +{variant:3,4}GainLifeOnBlockUnique__1 +AdditionalBlockChanceUniqueShieldStrInt4 +{variant:1,2}GainArmourIfBlockedRecentlyUnique__1[1500,1500] +]],[[ +Chernobog's Pillar +Ebony Tower Shield +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +{variant:4}IncreasedLifeImplicitShield2 +{variant:1}AddedFireDamageUniqueShieldStr3[10,10][25,25] +{variant:2}AddedFireDamageUniqueShieldStr3[7,10][15,25] +{variant:3,4}AddedFireDamageUniqueShieldStr3 +LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr3 +{variant:3,4}IncreasedLifeUniqueShieldDex2 +FireResistUniqueShieldStr3 +ConvertPhysicalToFireUniqueShieldStr3 +{variant:1,2}EnfeebleOnHitUniqueShieldStr3[10,10] +{variant:3,4}EnfeebleOnHitUniqueShieldStr3 +]],[[ +Dawnbreaker +Colossal Tower Shield +Source: Drops from unique{The Searing Exarch} +Implicits: 1 +IncreasedLifeImplicitShield1 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__25 +AdditionalBlockChanceUnique__9 +AttackBlockPerFireDamageTakenUnique__1 +ColdHitAndDoTDamageTakenAsFireUnique__1 +LightningHitAndDoTDamageTakenAsFireUnique__1 +PhysicalHitAndDoTDamageTakenAsFireUnique__1 +ScorchOnEnemiesOnBlockUnique__1 +]],[[ +Lioneye's Remorse +Pinnacle Tower Shield +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.16.0 +Variant: Current +Implicits: 1 +{variant:3,4}IncreasedLifeImplicitShield2 +{variant:1,2,3}LocalIncreasedArmourPercentAndStunRecoveryUniqueShieldStr1[200,250][20,20] +{variant:4}LocalIncreasedArmourPercentAndStunRecoveryUniqueShieldStr1 +{variant:1}IncreasedLifeUniqueShieldStr1[80,100] +{variant:2,3,4}IncreasedLifeUniqueShieldStr1 +MovementVelocityUniqueShieldStr1 +RangedAttackDamageReducedUniqueShieldStr1 +AdditionalBlockChanceUniqueShieldDex1 +]],[[ +Lycosidae +Rawhide Tower Shield +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +{variant:2}IncreasedLifeImplicitShield1 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__2 +IncreasedLifeImplicitShield3 +AlwaysHitsUnique__2 +AdditionalBlockChanceUniqueShieldStrDex3__ +CounterAttacksAddedColdDamageUnique__1 +]],[[ +Magna Eclipsis +Pinnacle Tower Shield +Variant: Pre 3.16.0 +Variant: Current +Source: Vendor Recipe +Implicits: 1 +IncreasedLifeImplicitShield2 +LocalIncreaseSocketedGemLevelUnique__6 +TriggeredElementalAegisSkillUnique__1_ +{variant:1}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__14_[200,250] +{variant:2}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__14_ +IncreasedLifeUniqueShieldDex2 +LocalFlatIncreasedEvasionAndEnergyShieldUnique__1 +]],[[ +Redblade Banner +Painted Tower Shield +League: Warbands +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 1 +{variant:3,4}IncreasedLifeImplicitShield2 +{variant:2,3,4}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__12 +{variant:1}LocalIncreaseSocketedWarcryGemLevelUniqueShieldStr4 +{variant:1}IncreasedLifeUniqueShieldStr4[20,60] +{variant:2,3,4}IncreasedLifeUniqueShieldStr4 +IncreasedTauntDurationUniqueShieldStr4 +{variant:1}LifeGainedOnTauntingEnemyUniqueShieldStr4 +{variant:1}EnduranceChargeDurationUniqueBodyStrInt4[20,20] +AdditionalBlockChanceUniqueShieldDex1 +{variant:2,3,4}WarcryCooldownSpeedUnique__2 +{variant:2,3}AttackLeechAgainstTauntedEnemyUnique__1 +{variant:4}WarcryInfiniteEnemyPowerUnique__1__ +]],[[ +Svalinn +Girded Tower Shield +League: Settlers of Kalguur +Requires Level 51, 123 Str +Implicits: 1 +IncreasedLifeImplicitShield1 +SpellBlockPercentageUniqueShieldInt1 +LocalIncreasedWardUnique__1 +MaximumBlockChanceUnique__1 +MaximumSpellBlockChanceUnique__1 +BlockIsLuckyUnique__1 +TriggerSocketedElementalSpellOnBlockUnique__1 +]],[[ +Titucius' Span +Reinforced Tower Shield +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +{variant:3}IncreasedLifeImplicitShield1 +LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStr2 +IncreasedLifeUniqueShieldStr2 +{variant:1}RangedAttackDamageReducedUniqueShieldStr2[-10,-10] +{variant:2,3}RangedAttackDamageReducedUniqueShieldStr2 +ArmourPercent VsProjectilesUniqueShieldStr2 +BlockVsProjectilesUniqueShieldStr2 +]],[[ +Trolltimber Spire +Cedar Tower Shield +League: Tempest +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +{variant:3}IncreasedLifeImplicitShield2 +{variant:2,3}LocalIncreasedPhysicalDamageReductionRatingPercentUnique__11 +IncreasedLifeUniqueShieldStr5 +TotemAreaOfEffectUniqueShieldStr5 +{variant:1}LifeLeechFromTotemSkillsUniqueShieldStr5 +{variant:2,3}TotemLeechLifeToYouUnique__1 +LifeRegenerationRatePercentUniqueShieldStr5 +]],[[ +Tukohama's Fortress +Ebony Tower Shield +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +{variant:2}IncreasedLifeImplicitShield2 +TotemDamageUnique__1_ +IncreasedLifeUnique__82 +AdditionalTotemsUnique__1 +ArmourPerTotemUnique__1 +KeystoneBloodMagicUnique__1_ +]],[[ +Replica Tukohama's Fortress +Ebony Tower Shield +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +IncreasedLifeImplicitShield2 +IncreasedLifeUnique__90 +AdditionalBrandUnique__1 +CriticalStrikeChancePerBrandUnique__1___ +BrandDamageUnique__1 +BloodMagic +]], +-- Shield: Evasion +[[ +Atziri's Mirror +Golden Buckler +Source: No longer obtainable +Variant: Pre 2.0.0 +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +{variant:3}MovementVelocityImplicitShield2 +IntelligenceUniqueShieldDex3 +{variant:1,2}LocalIncreasedEvasionRatingPercentUniqueShieldDex3[80,100] +{variant:3}LocalIncreasedEvasionRatingPercentUniqueShieldDex3 +AllResistancesUniqueShieldDex3 +{variant:2,3}ReducedSelfCurseDurationUniqueShieldDex3 +ReflectCurses +{variant:3}AdditionalBlockWhileNotCursedUnique__1 +{variant:3}AdditionalSpellBlockWhileCursedUnique__1 +]],[[ +Atziri's Reflection +Golden Buckler +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Alluring Abyss} +LevelReq: 68 +Implicits: 1 +MovementVelocityImplicitShield2 +IntelligenceUniqueShieldDex3 +LocalIncreasedEvasionRatingPercentUniqueShieldDex3 +LocalIncreasedEnergyShieldUnique__19 +AllResistancesUniqueShieldDex3 +ReflectCurses +UnaffectedByCursesUnique__1 +CurseEffectivenessUnique__2_ +]],[[ +Chalice of Horrors +War Buckler +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.17.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 1 +{variant:3,4}MovementVelocityImplicitShield3 +{variant:1,2,3,4}IncreaseSocketedCurseGemLevelUniqueShieldDex4[1,1] +{variant:5}IncreaseSocketedCurseGemLevelUniqueShieldDex4 +LocalIncreasedEvasionRatingPercentUniqueShieldDex4 +{variant:2,3,4,5}LocalIncreasedEnergyShieldUnique__10 +{variant:2,3,4}IncreasedLifeUnique__41 +{variant:1,2,3,4}AdditionalBlockChanceUniqueShieldStrInt6 +{variant:1,2,3,4}ChanceForEnemyToFleeOnBlockUniqueShieldDex4[10,10] +{variant:5}ChanceForEnemyToFleeOnBlockUniqueShieldDex4 +{variant:5}BlockChanceVersusCursedEnemiesUnique__1 +{variant:1,2,3}IncreasedCurseDurationUniqueShieldDex4 +{variant:4}LifeLeechVsCursedEnemiesUnique__1 +{variant:5}ApplyDecayOnCurseUnique__1 +]],[[ +Thirst for Horrors +War Buckler +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +{variant:3}MovementVelocityImplicitShield3 +IncreaseSocketedCurseGemLevelUniqueShieldDex4[1,1] +LocalIncreasedEvasionRatingPercentUniqueShieldDex4 +{variant:2,3}IncreasedEnergyShieldUnique__9 +{variant:2,3}IncreasedLifeUnique__118 +AdditionalBlockChanceUniqueShieldStrDex2 +ChanceForEnemyToFleeOnBlockUniqueShieldDex4[10,10] +LifeLeechVsCursedEnemiesUnique__1 +IncreasedCurseDurationUniqueShieldStrDex2 +]],[[ +Crest of Perandus +Pine Buckler +Variant: Pre 1.3.0 +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +{variant:3}MovementVelocityImplicitShield1 +IncreasedLifeUniqueShieldDex2 +LifeRegenerationUniqueShieldDex2 +LightningResistUniqueShieldDex2 +LifeLeechPermyriadUniqueShieldDex2 +{variant:1}AdditionalBlockChanceUniqueShieldStr4[10,10] +{variant:2,3}AdditionalBlockChanceUniqueShieldStr4 +]],[[ +Great Old One's Ward +Corrugated Buckler +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +{variant:2}MovementVelocityImplicitShield1 +SpellBlockPercentageUniqueShieldDex6 +AddedPhysicalDamageUniqueShieldDex6 +IncreasedAttackSpeedUniqueShieldDex6 +IncreasedLifeUniqueShieldDex6 +]],[[ +Kaltenhalt +Painted Buckler +Variant: Pre 1.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +{variant:4}MovementVelocityImplicitShield2 +LocalIncreasedEvasionRatingPercentUniqueShieldDex1 +IncreasedMaximumColdResistUniqueShieldStrInt4 +ColdResistUniqueShieldDex1 +{variant:3,4}PhysicalAddedAsColdUnique__2 +{variant:1}MeleeAttackerTakesColdDamageUniqueShieldDex1[5,10] +{variant:2,3,4}MeleeAttackerTakesColdDamageUniqueShieldDex1 +AdditionalBlockChanceUniqueShieldStr1 +]],[[ +Kaltensoul +Painted Buckler +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Current +Implicits: 1 +{variant:3}MovementVelocityImplicitShield2 +LocalIncreasedEvasionRatingPercentUniqueShieldDex1 +MaximumColdResistUniqueShieldDex1 +ColdResistUniqueShieldDex1 +{variant:2,3}PhysicalAddedAsColdUnique__2 +MeleeAttackerTakesColdDamageUniqueShieldDex1 +AdditionalBlockChanceUniqueShieldInt4 +FireDamageTakenAsColdUnique___1 +]],[[ +Kiloava's Bluster +Ironwood Buckler +Requires Level 57, 137 Dex +Implicits: 1 +MovementVelocityImplicitShield1 +LocalIncreasedEvasionRatingPercentUnique__20 +AvoidElementalAilmentsUnique__3 +AdditionalBlockChanceUnique__10 +TreatResistancesAsMaxChanceUnique__1 +]], +[[ +Mistwall +Lacquered Buckler +Implicits: 1 +MovementVelocityImplicitShield2 +LocalIncreasedEvasionRatingPercentUnique__17 +MovementVelocityUnique__37 +FireAndColdResistUnique__4_ +AvoidElementalDamagePhasingUnique__1 +MaximumBlockChanceIfNotBlockedRecentlyUnique__1 +PhasingIfBlockedRecentlyUnique__1 +]],[[ +Replica Mistwall +Lacquered Buckler +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +MovementVelocityImplicitShield2 +LocalIncreasedEvasionRatingPercentUnique__14 +MovementVelocityUnique__37 +FireAndColdResistUnique__4_ +SpellBlockIfNotBlockedRecentlyUnique__1 +AvoidPhysicalDamageWhilePhasingUnique__1 +PhasingIfBlockedRecentlyUnique__1 +]],[[ +Mutewind Pennant +Enameled Buckler +League: Warbands +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 1 +{variant:3,4,5}MovementVelocityImplicitShield2 +{variant:1}LocalIncreaseSocketedWarcryGemLevelUniqueShieldDex7 +{variant:1}IncreasedChaosDamageUniqueShieldDex7 +{variant:2,3,4}LocalIncreasedEvasionRatingPercentUnique__5 +ColdResistUniqueShieldDex7 +AreaOfEffectUniqueShieldDexInt2 +{variant:1}OnslaughtOnKillingTauntedEnemyUniqueShieldDex7 +{variant:2,3,4}OnslaughtOnUsingWarcryUnique__1 +{variant:2,3,4}WarcryEffectUnique__1 +{variant:4}KeystoneCallToArmsUnique__1 +]],[[ +Thousand Teeth Temu +Vaal Buckler +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 1 +{variant:3,4}MovementVelocityImplicitShield1 +LocalIncreasedEvasionRatingPercentUniqueShieldDex5 +IncreasedLifeUniqueShieldDex5 +LifeLeechPermyriadUniqueShieldDex5 +{variant:1,2,3}AdditionalBlockChanceUniqueShieldDex5[5,5] +{variant:4}AdditionalBlockChanceUniqueShieldDex5 +{variant:1,2,3}ReflectDamageToAttackersOnBlockUniqueShieldDex5[1,1][1000,1000] +{variant:4}ReflectDamageToAttackersOnBlockUniqueShieldDex5 +{variant:2,3}DamageYouReflectGainedAsLifeUnique__1 +]],[[ +Cowards' Wail +Ezomyte Tower Shield +Requires Level 64, 159 Str +Implicits: 1 +IncreasedLifeImplicitShield3 +LocalIncreasedPhysicalDamageReductionRatingPercentUnique__38 +AdditionalBlockChanceUnique__13 +GhostTotemDurationUnique__1 +GhostTotemDamageUnique__1 +GhostTotemLimitUnique__1 +UnwaveringStanceUnique_2 +]], +-- Shield: Energy Shield +[[ +Apep's Slumber +{variant:1}Ancient Spirit Shield +{variant:2}Vaal Spirit Shield +Variant: Pre 3.14.0 +Variant: Current +League: Incursion +Source: Opening normal{Grove Vessel} in normal{Toxic Grove} +Upgrade: Upgrades to unique{Apep's Supremacy} via currency{Vial of Awakening} +Implicits: 1 +SpellDamageImplicitShield1 +{variant:1}GlobalAddedChaosDamageUnique__3[20,22][30,37] +{variant:2}GlobalAddedChaosDamageUnique__3 +LocalIncreasedEnergyShieldUnique__21 +ChanceToBePoisonedUnique__1 +MaximumResistancesWhilePoisonedUnique__1 +{variant:1}EnergyShieldRegenPerPoisonUnique__1[3000,3000][24000,24000] +{variant:2}EnergyShieldRegenPerPoisonUnique__1 +PoisonExpiresSlowerUnique__1 +]],[[ +Apep's Supremacy +Vaal Spirit Shield +League: Incursion +Source: Upgraded from unique{Apep's Slumber} via currency{Vial of Awakening} +Implicits: 1 +SpellDamageImplicitShield1 +GlobalAddedChaosDamageUnique__3 +LocalIncreasedEnergyShieldUnique__22 +ReducedEnergyShieldDelayUnique__1 +BleedOnSelfDealChaosDamageUnique__1 +ChanceToBePoisonedUnique__1 +MaximumResistancesWhilePoisonedUnique__1 +PoisonExpiresSlowerUnique__1 +]],[[ +Bitterbind Point +Titanium Spirit Shield +League: Betrayal +Source: Drops from unique{Catarina, Master of Undeath} +Variant: Fire and Cold Damage (Pre 3.14) +Variant: Cold and Lightning Damage (Pre 3.14) +Variant: Fire and Lightning Damage (Pre 3.14) +Variant: Energy Shield and Life (Pre 3.14) +Variant: Armour during Soul Gain Prevention (Pre 3.14) +Variant: Level of Socketed Support Gems (Pre 3.14) +Variant: Fire and Cold Damage (Pre 3.26) +Variant: Cold and Lightning Damage (Pre 3.26) +Variant: Fire and Lightning Damage (Pre 3.26) +Variant: Energy Shield and Life (Pre 3.26) +Variant: Armour during Soul Gain Prevention (Pre 3.26) +Variant: Level of Socketed Support Gems (Pre 3.26) +Variant: Fire and Cold Damage (Current) +Variant: Cold and Lightning Damage (Current) +Variant: Fire and Lightning Damage (Current) +Variant: Energy Shield and Life (Current) +Variant: Armour during Soul Gain Prevention (Current) +Variant: Level of Socketed Support Gems (Current) +Variant: Maximum Number of Spectres (Current) +Variant: Spectre Max Resistances (Current) +Variant: Spectre Additional Projectiles (Current) +Variant: Spectre Flat Crit (Current) +Variant: Spectre Increased AoE (Current) +{variant:1,2,3,4,5,6,7,8,9,10,11,12}SpellDamageUnique__10 +LocalIncreasedEnergyShieldPercentUnique__19 +SpectreIncreasedLifeUnique__1 +GainArcaneSurgeOnCritUnique__1 +SpectresGainArcaneSurgeWhenYouDoUnique__1_ +{variant:1,2,3,4,5,6,7,8,9,10,11,12}SpellCriticalStrikeChancePerSpectreUnique__1_[40,50] +{variant:13,14,15,16,17,18,19,20,21,22,23}SpellCriticalStrikeChancePerSpectreUnique__1_ +{variant:1}{crafted}Adds (3-12) to (5-16) Fire Damage +{variant:1}{crafted}Adds (3-12) to (5-16) Cold Damage +{variant:2}{crafted}Adds (3-12) to (5-16) Cold Damage +{variant:2}{crafted}Adds 1 to (7-24) Lightning Damage +{variant:3}{crafted}Adds (3-12) to (5-16) Fire Damage +{variant:3}{crafted}Adds 1 to (7-24) Lightning Damage +{variant:4}{crafted}(20-40)% increased Energy Shield +{variant:4}{crafted}+(10-28) to maximum Life +{variant:5}{crafted}+(500-3000) to Armour during Soul Gain Prevention +{variant:6}{crafted}+(1-2) to Level of Socketed Support Gems +{variant:7,13}Adds (14-16) to (20-22) Fire Damage +{variant:7,13}Adds (14-16) to (20-22) Cold Damage +{variant:8,14}Adds (14-16) to (20-22) Cold Damage +{variant:8,14}Adds (14-16) to (20-22) Lightning Damage +{variant:9,15}Adds (14-16) to (20-22) Fire Damage +{variant:9,15}Adds (14-16) to (20-22) Lightning Damage +{variant:10,16}(24-28)% increased Energy Shield +{variant:10,16}+(19-22) to maximum Life +{variant:11,17}+(3201-4000) to Armour during Soul Gain Prevention +{variant:12,18}+2 to Level of Socketed Support Gems +{variant:12,18}+(5-8)% to Quality of Socketed Support Gems +{variant:19}+1 to maximum number of Spectres +{variant:20}Raised Spectres have +(5-10)% to all maximum Resistances +{variant:21}Raised Spectres fire 2 additional Projectiles +{variant:22}Raised Spectres have +(3-5)% to Critical Strike Chance +{variant:23}Raised Spectres have (30-50)% increased Area of Effect +]],[[ +Brinerot Flag +Tarnished Spirit Shield +League: Warbands +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 2 +{variant:1,2}SpellDamageImplicitShield1[5,5] +{variant:3,4}SpellDamageImplicitShield1 +{variant:1}LocalIncreaseSocketedWarcryGemLevelUniqueShieldInt5[1,1] +{variant:2,3,4}LocalIncreaseSocketedWarcryGemLevelUniqueShieldInt5 +{variant:1}IncreasedAttackSpeedUniqueShieldInt5 +{variant:2,3,4}IncreasedCastSpeedUnique__5 +LocalIncreasedEnergyShieldUniqueShieldInt5 +ManaRegenerationUniqueShieldInt5 +{variant:1}ManaGainedOnHitAgainstTauntedEnemyUniqueShieldInt5 +{variant:2,3}GainPowerChargesOnUsingWarcryUnique__1 +{variant:4}WarcryGrantsArcaneSurgeUnique__1 +]],[[ +Esh's Mirror +{variant:1}Thorium Spirit Shield +{variant:2}Vaal Spirit Shield +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Drops in Esh Breach or from unique{Esh, Forked Thought} +Upgrade: Upgrades to unique{Esh's Visage} using currency{Blessing of Esh} +Implicits: 1 +{variant:2}SpellDamageImplicitShield1 +IntelligenceUniqueShieldInt4 +{variant:1}LocalIncreasedEnergyShieldPercentUnique__7[80,100] +{variant:2}LocalIncreasedEnergyShieldPercentUnique__7 +{variant:1}IncreasedLifeUnique__36_ +LightningResistUnique__7 +{variant:2}ShockProliferationUnique__2 +AddedLightningDamagePerShockedEnemyKilledUnique__1 +{variant:1}ReflectsShocksUnique__1 +]],[[ +Esh's Visage +Vaal Spirit Shield +League: Breach +Source: Upgraded from unique{Esh's Mirror} using currency{Blessing of Esh} +Variant: Pre 3.0.0 +Variant: Pre 3.16.0 +Variant: Current +Implicits: 2 +{variant:1}SpellDamageImplicitShield1[5,5] +{variant:2,3}SpellDamageImplicitShield1 +LocalIncreasedEnergyShieldPercentUnique__9 +{variant:1,2}IncreasedLifeUnique__36_[40,70] +{variant:3}IncreasedLifeUnique__36_ +LightningResistUnique__10 +ChaosResistUnique__25 +ChaosDamageDoesNotBypassESNotLowLifeOrManaUnique__1 +ReflectsShockToEnemiesInRadiusUnique__1 +]],[[ +The Eternal Apple +Chiming Spirit Shield +Implicits: 1 +SpellDamageImplicitShield2 +UniqueTriggerSocketedWarcriesOnEnduranceChargeExpireOrUse +IncreasedLifeUniqueShieldDex2 +ChaosResistUnique__10 +LoseEnduranceChargesOnMaxEnduranceChargesUnique__1_ +NeverBlockUnique__1 +WarcryCooldownSpeedUnique__1 +]],[[ +Kongming's Stratagem +{variant:1,2,3,4}Ivory Spirit Shield +{variant:5}Ancient Spirit Shield +Variant: Pre 3.0.0 +Variant: Pre 3.1.0 +Variant: Pre 3.11.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 3 +{variant:1}SpellDamageImplicitShield1[15,15] +{variant:2,3,4}SpellDamageImplicitShield1[15,20] +{variant:5}SpellDamageImplicitShield1 +{variant:1,2}SocketedTrapSkillsCreateSmokeCloudWhenDetonated__1 +{variant:3,4,5}CreateSmokeCloudWhenTrapTriggeredUnique__1 +IntelligenceUniqueShieldInt4 +{variant:1,2}LocalIncreasedEnergyShieldPercent__1[80,120] +{variant:3,4,5}LocalIncreasedEnergyShieldPercent__1 +{variant:1,2,3}FireDamageToBlindEnemies__1[30,30] +{variant:4,5}FireDamageToBlindEnemies__1 +SpellDamageTakenFromBlindEnemies__1 +LocalShieldHasNoBlockChanceUnique__1 +]],[[ +Light of Lunaris +Jingling Spirit Shield +Variant: Pre 3.0.0 +Variant: Pre 3.5.0 +Variant: Current +Implicits: 2 +{variant:1}SpellDamageImplicitShield2[10,10] +{variant:2,3}SpellDamageImplicitShield2 +{variant:3}SpellAddedColdDamageUnique__5 +SpellCriticalStrikeChanceUnique__2 +{variant:1,2}LocalIncreasedEnergyShieldPercentUnique__8[100,140] +{variant:3}LocalIncreasedEnergyShieldPercentUnique__8 +{variant:1,2}AdditionalBlockChanceUnique__3[3,5] +{variant:3}AdditionalBlockChanceUnique__3 +CriticalMultiplierPerBlockChanceUnique__1 +CritMultiIfDealtNonCritRecentlyUnique__1 +]],[[ +Malachai's Loop +Harmonic Spirit Shield +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 2 +{variant:1,2}SpellDamageImplicitShield2[10,10] +{variant:3,4}SpellDamageImplicitShield2 +{variant:1}LocalIncreasedEnergyShieldPercent__2[160,200] +{variant:2,3,4}LocalIncreasedEnergyShieldPercent__2 +IncreasedMaximumPowerChargesUnique__3 +PowerChargeOnHitUnique__1 +{variant:1,2,3}IncreasedSpellDamagePerPowerChargeUnique__1[6,6] +{variant:4}IncreasedSpellDamagePerPowerChargeUnique__1 +LosePowerChargesOnMaxPowerChargesUnique__1 +ShockOnMaxPowerChargesUnique__1 +]],[[ +Manastorm +{variant:1}Fossilised Spirit Shield +{variant:2,3}Lacewood Spirit Shield +Variant: Pre 3.19.0 +Variant: Pre 3.24.0 +Variant: Current +Implicits: 2 +{variant:1}SpellDamageImplicitShield1[15,20] +{variant:2,3}SpellDamageImplicitShield1 +{variant:1,2}LocalIncreasedEnergyShieldPercentUnique__27 +{variant:1,2}IncreasedManaUnique__18[50,70] +{variant:1,2}ManaRegenerationUnique__10[30,50] +{variant:3}IncreasedManaUnique__18 +{variant:3}ManaRegenerationUnique__10 +{variant:3}ManaGainedFromEnemyDeathUnique__3 +{variant:3}FlaskManaRecoveryUnique__2 +{variant:1,2}DrainAllManaLightningDamageUnique__1[25,25] +{variant:3}DrainAllManaLightningDamageUnique__1 +]],[[ +Matua Tupuna +Tarnished Spirit Shield +Variant: Pre 3.0.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 2 +{variant:1}SpellDamageImplicitShield1[5,5] +{variant:2,3}SpellDamageImplicitShield1 +LocalIncreaseSocketedMinionGemLevelUniqueShieldInt2 +LocalIncreasedEnergyShieldPercentUniqueShieldInt2 +IncreasedManaUniqueShieldInt2 +{variant:1,2}AuraEffectOnMinionsUniqueShieldInt2[10,10] +{variant:3}AuraEffectOnMinionsUniqueShieldInt2 +{variant:1,2}GroundTarOnCritTakenUniqueShieldInt2 +{variant:1,2}AuraEffectUniqueShieldInt2[10,10] +{variant:3}AuraEffectUniqueShieldInt2 +{variant:3}GroundTarOnBlockUnique__1 +]],[[ +Whakatutuki o Matua +Tarnished Spirit Shield +Source: No longer obtainable +LevelReq: 63 +Implicits: 1 +SpellDamageImplicitShield1 +LocalIncreaseSocketedMinionGemLevelUnique__5____ +LocalIncreasedEnergyShieldUnique__26 +LocalIncreasedEnergyShieldPercentUniqueShieldInt2 +IncreasedManaUniqueShieldInt2 +AuraEffectOnMinionsUniqueShieldInt2 +AuraEffectUniqueShieldInt2 +GroundTarOnBlockUnique__1 +LifeRegenerationIfBlockedRecentlyUnique__1 +]],[[ +Rathpith Globe +Titanium Spirit Shield +League: Legion +Variant: Pre 3.4.0 +Variant: Pre 3.7.0 +Variant: 3.19.0 +Variant: Current +Implicits: 0 +{variant:1}SpellBlockPercentageUnique__1[12,18] +{variant:2,3,4}SpellBlockPercentageUnique__1[10,15] +{variant:1,2}SpellDamageUniqueShieldInt1 +LocalIncreasedEnergyShieldPercent___3 +MaximumLifeShieldInt1 +{variant:1,2}LightningResistUniqueShieldInt1 +{variant:3}SacrificeLifeOnSpellSkillUnique__1[4,4] +{variant:4}SacrificeLifeOnSpellSkillUnique__1 +{variant:3}SpellCriticalStrikeChancePerLifeUnique__1[2,2][100,100] +{variant:4}SpellCriticalStrikeChancePerLifeUnique__1 +{variant:3}SpellDamagePerLifeUnique__1[2,2][100,100] +{variant:4}SpellDamagePerLifeUnique__1 +]],[[ +The Scales of Justice +Chiming Spirit Shield +Implicits: 1 +SpellDamageImplicitShield2 +NoEnergyShieldUnique__1 +IncreasedLifeUnique__111__ +IncreasedManaUnique__21 +AddedFireDamagePer100LowestOfLifeOrManaUnique__1 +ImmuneToElementalAilmentsWhileLifeAndManaCloseUnique__1 +]],[[ +Sentari's Answer +Brass Spirit Shield +Variant: Pre 3.4.0 +Variant: Pre 3.25.0 +Variant: Current +Implicits: 0 +{variant:1}SpellBlockPercentageUniqueShieldInt4[7,7] +{variant:2,3}SpellBlockPercentageUniqueShieldInt4 +IntelligenceUniqueShieldInt4 +{variant:1,2}ItemFoundQuantityIncreaseUniqueShieldInt4 +AdditionalBlockChanceUniqueShieldDex4 +PunishmentOnMeleeBlockUniqueShieldInt4 +TemporalChainsOnProjectileBlockUniqueShieldInt4 +ElementalWeaknessOnSpellBlockUniqueShieldInt4 +]], +-- Shield: Armour/Evasion +[[ +The Flawed Refuge +Maple Round Shield +League: Affliction +Requires Level 39, 52 Str, 52 Dex +Implicits: 1 +BlockRecoveryImplicitShield3 +LocalIncreasedArmourAndEvasionUniqueShieldStrDex4 +AdditionalBlockChanceUnique__11 +ElementalDamageFromBlockedHitsUnique__1 +ElementalDamageTakenAsPhysicalUnique__1 +]],[[ +Daresso's Courage +Baroque Round Shield +Variant: Pre 2.6.0 +Variant: Pre 3.4.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 1 +BlockRecoveryImplicitShield2 +{variant:1,2}SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_[36,36] +{variant:3,4}SpellBlockPercentageOnLowLifeUniqueShieldStrDex1_ +{variant:1,2,3}IncreasedPhysicalDamagePercentUniqueShieldStrDex1 +{variant:1,2,3}LocalIncreasedArmourAndEvasionUniqueShieldStrDex1[100,120] +{variant:4}LocalIncreasedArmourAndEvasionUniqueShieldStrDex1 +{variant:1}FireResistUniqueShieldStrDex1 +{variant:1}ColdResistUniqueShieldInt3 +{variant:1}LightningResistUniqueShieldInt3 +{variant:2,3}AllResistancesUniqueShieldStrInt1[10,20] +{variant:4}AllResistancesUniqueShieldStrInt1 +{variant:1,2,3}AdditionalBlockChanceUniqueShieldStrDex1 +{variant:2,3}AttackBlockIfBlockedSpellRecentlyUnique__1_[20,20] +{variant:4}AttackBlockIfBlockedSpellRecentlyUnique__1_ +{variant:2,3}SpellBlockIfBlockedAttackRecentlyUnique__1[20,20] +{variant:4}SpellBlockIfBlockedAttackRecentlyUnique__1 +]],[[ +The Deep One's Hide +Studded Round Shield +Variant: Pre 2.6.0 +Variant: Current +Implicits: 1 +BlockRecoveryImplicitShield1 +AddedPhysicalDamageUniqueShieldStrDex3 +{variant:1}AddedColdDamageUniqueShieldStrDex3[4,4][8,8] +{variant:2}AddedColdDamageUniqueShieldStrDex3 +LocalIncreasedArmourAndEvasionUniqueShieldStrDex3 +FireResistUniqueShieldStrDex3 +VulnerabilityOnBlockUniqueShieldStrDex3 +]],[[ +The Ghastly Theatre +Teak Round Shield +Variant: Pre 3.16.0 +Variant: Current +League: Heist +Implicits: 1 +BlockRecoveryImplicitShield3 +LocalIncreaseSocketedSupportGemLevelUnique__1 +TriggeredPhysicalAegisSkillUnique__1 +LocalIncreasedArmourAndEvasionRatingUnique__1 +{variant:1}ChanceToAvoidBleedingUnique__1[30,50] +{variant:2}BleedingImmunityUnique__1 +AttackAndCastSpeedWithoutPhysicalAegisUnique__1 +CriticalStrikeChanceWithoutPhysicalAegisUnique__1 +NearbyEnemiesAreBlindedPhysicalAegisUnique__1 +]],[[ +The Oppressor +Elegant Round Shield +Implicits: 1 +BlockRecoveryImplicitShield2 +SpellDamageSuppressedUnique__2 +ChanceToSuppressSpellsUnique__1_ +LocalIncreasedArmourAndEvasionUniqueShieldStrDex1 +AdditionalBlockChanceUnique__8_ +BaseBlockDamageTakenUnique__1___ +]],[[ +Shattershard +Crimson Round Shield +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 0 +StrUniqueShieldTriggerShieldShatterOnBlock +LocalIncreasedArmourAndEvasionUnique__15_ +IncreasedLifeUnique__112 +AdditionalBlockChanceUnique__7__ +]],[[ +The Squire +Elegant Round Shield +Implicits: 1 +BlockRecoveryImplicitShield2 +HasThreeSocketsUnique__1_ +AllSocketsAreWhiteUniqueShieldStrDex7_ +IncreaseSocketedSupportGemQualityUnique__1___ +SupportGemsSocketedInOffHandAlsoSupportMainHandSkills +LocalIncreasedArmourAndEvasionUniqueShieldStrDex4 +AdditionalBlockChanceUniqueShieldStrDex3__ +]],[[ +Vix Lunaris +Cardinal Round Shield +Implicits: 0 +LocalIncreaseSocketedGemLevelUnique__11_ +TriggeredColdAegisSkillUnique__1 +LocalIncreasedArmourAndEvasionUniqueShieldStrDex1 +IncreasedLifeUniqueShieldDex2 +CannotBeFrozen +]],[[ +Wheel of the Stormsail +Rotted Round Shield +Variant: Pre 3.16.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 1 +BlockRecoveryImplicitShield1 +{variant:1,2}LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStrDex2[5,10] +{variant:3}LocalIncreasedPhysicalDamageReductionRatingUniqueShieldStrDex2 +{variant:3}LocalIncreasedEvasionRatingUniqueShieldStrDex2 +ItemFoundRarityIncreaseUniqueShieldStrDex2 +{variant:3}LightningResistUnique__26 +IncreasedSelfCurseDurationUniqueShieldStrDex2 +{variant:1,2}AdditionalBlockChanceUniqueShieldStrInt4[5,5] +{variant:1}IncreasedCurseDurationUniqueShieldDex4[25,25] +{variant:2}IncreasedCurseDurationUniqueShieldDex4 +]],[[ +Bitter Instinct +Spiny Round Shield +Source: Drops from unique{Uber Incarnation of Neglect} in normal{Moment of Loneliness} +Requires Level 68, 85 Str, 85 Dex +Implicits: 1 +BlockRecoveryImplicitShield1 +LocalIncreasedArmourAndEvasionUniqueShieldStrDex5 +AttackerTakesDamageUnique_1 +RetaliationSkillDamageUnique_1 +RetaliationSkillsBecomeUsableEveryXSecondsUnique_1 +RetaliateSkillUseWindowDuration_1 +]], +-- Shield: Armour/Energy Shield +[[ +Aegis Aurora +Champion Kite Shield +Variant: Pre 1.1.0 +Variant: Pre 3.5.0 +Variant: Current +Implicits: 0 +{variant:1,2}LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4[80,100] +{variant:3}LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4 +AllResistancesUniqueShieldStrInt4 +IncreasedMaximumColdResistUniqueShieldStrInt4 +AdditionalBlockChanceUniqueShieldStrInt4 +{variant:1}EnergyShieldGainedOnBlockUniqueShieldStrInt4[4,4] +{variant:2,3}EnergyShieldGainedOnBlockUniqueShieldStrInt4 +WeaponElementalDamageUniqueShieldStrInt4 +]],[[ +Broken Faith +Archon Kite Shield +League: Warbands +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 1 +AllResistancesImplicitShield3 +ChaosDamageLifeLeechPermyriadUniqueShieldStrInt8 +{variant:1,2}PhysicalDamageAddedAsChaosUniqueShiledStrInt8 +{variant:1,3}SubtractedBlockChanceUniqueShieldStrInt8[-10,-10] +{variant:2}SubtractedBlockChanceUniqueShieldStrInt8[5,5] +{variant:1}IncreasedDamageOnZeroEnergyShieldUniqueShieldStrInt8 +{variant:2,3}IncreasedArmourOnZeroEnergyShieldUnique__1 +{variant:1}UnholyMightOnBlockChanceUniqueShieldStrInt8 +{variant:2}UnholyMightOnBlockChanceUnique__1 +{variant:3}UnholyMightOnZeroEnergyShieldUnique__1 +ProfaneGroundInsteadOfConsecratedGround__1_ +]],[[ +Emperor's Vigilance +Steel Kite Shield +League: Harvest +Variant: Pre 3.19.0 +Variant: Current +Implicits: 0 +SpellBlockPercentageUnique__3_ +{variant:1}LocalIncreasedArmourAndEnergyShieldUniqueShieldStrInt4 +{variant:2}LocalIncreasedArmourAndEnergyShieldUnique__22 +{variant:1}MaximumLifeUnique__20___ +{variant:1}CannotBlockWithNoEnergyShieldUnique__1 +DamageBypassEnergyShieldBlockUnique__1 +KeystoneGlancingBlowsUnique__1___ +]],[[ +Invictus Solaris +Archon Kite Shield +Implicits: 1 +AllResistancesImplicitShield3 +LocalIncreaseSocketedGemLevelUnique__1 +TriggeredFireAegisSkillUnique__1_ +LocalIncreasedArmourAndEnergyShieldUnique__18_ +IncreasedLifeUniqueShieldDex2 +AvoidIgniteUnique__1 +]],[[ +Prism Guardian +Archon Kite Shield +Variant: Pre 1.1.0 +Variant: Pre 2.0.0 +Variant: Pre 3.16.0 +Variant: Current +Implicits: 2 +{variant:1}AllResistancesImplicitShield3[24,24] +{variant:2,3,4}AllResistancesImplicitShield3 +{variant:1,2}LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2[1,1] +{variant:3,4}LocalIncreaseSocketedAuraLevelUniqueShieldStrInt2 +SocketedemsHaveBloodMagicUniqueShieldStrInt2 +SocketedItemsHaveReducedReservationUniqueShieldStrInt2 +DexterityUniqueShieldStrInt2 +AllResistancesUniqueShieldStrInt2 +]],[[ +Mahuxotl's Machination +Steel Kite Shield +League: Ultimatum +Source: Drops from unique{The Trialmaster} +Implicits: 0 +KeystoneCorruptedSoulUnique_1 +KeystoneDivineFleshUnique__1_ +KeystoneEternalYouthUnique__1 +KeystoneEverlastingSacrificeUnique__1 +NoEnergyShieldRegenerationUnique__1 +KeystoneVaalPactUnique__1 +]],[[ +Rise of the Phoenix +Mosaic Kite Shield +Variant: Pre 1.1.0 +Variant: Pre 3.1.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 2 +{variant:1}AllResistancesImplicitShield2[16,16] +{variant:2,3,4}AllResistancesImplicitShield2 +{variant:1,2,3}LocalIncreasedArmourAndEnergyShieldUnique__6[80,100] +{variant:4}LocalIncreasedArmourAndEnergyShieldUnique__6 +{variant:3}IncreasedLifeUniqueShieldStrInt6 +{variant:1,2}LifeRegenerationUniqueTwoHandAxe4[360,360] +{variant:3}LifeRegenerationUniqueShieldStrInt5[900,1200] +{variant:4}LifeRegenerationUniqueShieldStrInt5 +{variant:1,2}MaximumFireResistUniqueShieldStrInt5[8,8] +{variant:3,4}MaximumFireResistUniqueShieldStrInt5 +FireResistUniqueShieldStrInt5 +FireResistOnLowLifeUniqueShieldStrInt5 +MovementVelocityOnLowLifeUniqueShieldStrInt5 +AvoidIgniteOnLowLifeUniqueShieldStrInt5 +]],[[ +Saffell's Frame +Branded Kite Shield +Variant: Pre 1.1.0 +Variant: Pre 3.4.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 2 +{variant:1}AllResistancesImplicitShield2 +{variant:2,3,4}AllResistancesImplicitShield1 +{variant:1,2}SpellBlockPercentageUniqueShieldStrInt1[21,24] +{variant:3}SpellBlockPercentageUniqueShieldStrInt1[15,20] +{variant:4}SpellBlockPercentageUniqueShieldStrInt1 +SpellDamageUniqueShieldStrInt1 +{variant:1,2,3}AllResistancesUniqueShieldStrInt4 +{variant:4}AllResistancesUniqueShieldDex3 +{variant:1}IncreasedMaximumResistsUniqueShieldStrInt1[5,5] +{variant:2,3,4}IncreasedMaximumResistsUniqueShieldStrInt1 +CannotBlockAttacks +]],[[ +Springleaf +Plank Kite Shield +Variant: Pre 1.1.0 +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 2 +{variant:1}AllResistancesImplicitShield1[8,8] +{variant:2,3,4,5}AllResistancesImplicitShield1 +LocalIncreasedArmourAndEnergyShieldUnique__27 +{variant:5}LifeRegenerationUnique__3 +{variant:1,2,3,4}ReducedFreezeDurationUniqueShieldStrInt3[50,50] +{variant:5}ReducedFreezeDurationUniqueShieldStrInt3 +{variant:3}LifeRegenerationRatePercentageUniqueShieldStrInt3[60,60] +{variant:4}LifeRegenerationRatePercentageUniqueShieldStrInt3 +{variant:1,2}LifeRegenerationOnLowLifeUniqueShieldStrInt3_[360,360] +{variant:3}LifeRegenerationOnLowLifeUniqueShieldStrInt3_[300,300] +{variant:4}LifeRegenerationOnLowLifeUniqueShieldStrInt3_ +{variant:5}LifeRegenerationFlatOnLowLifeUnique__1 +]],[[ +The Oak +Plank Kite Shield +Source: No longer obtainable +Variant: Pre 1.1.0 +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Current +LevelReq: 40 +Implicits: 2 +{variant:1}AllResistancesImplicitShield1[8,8] +{variant:2,3,4,5}AllResistancesImplicitShield1 +LocalIncreasedArmourAndEnergyShieldUnique__16 +IncreasedLifeUnique__22 +{variant:1,2,3,4}ReducedFreezeDurationUniqueShieldStrInt3[50,50] +{variant:5}ReducedFreezeDurationUniqueShieldStrInt3 +{variant:3}LifeRegenerationRatePercentageUniqueShieldStrInt3[60,60] +{variant:4,5}LifeRegenerationRatePercentageUniqueShieldStrInt3 +{variant:1,2}LifeRegenerationOnLowLifeUniqueShieldStrInt3_[360,360] +{variant:3}LifeRegenerationOnLowLifeUniqueShieldStrInt3_[300,300] +{variant:4,5}LifeRegenerationOnLowLifeUniqueShieldStrInt3_ +]],[[ +The Unshattered Will +Archon Kite Shield +League: Harbinger +Source: Created from item parts obtained from Boss in The Beachhead +Upgrade: Upgrades to unique{The Immortal Will} via currency{Specularity Scroll} +Implicits: 1 +AllResistancesImplicitShield3 +HarbingerSkillOnEquipUnique__3 +IncreasedLifeUniqueShieldDex2 +AllResistancesUnique__12 +GainManaOnBlockUnique__1 +AdditionalBlockChanceUniqueShieldDex2 +ChannelledSkillDamageUnique__1 +]],[[ +The Immortal Will +Archon Kite Shield +League: Harvest +Source: Upgraded from unique{The Unshattered Will} via currency{Specularity Scroll} +Implicits: 1 +AllResistancesImplicitShield3 +HarbingerSkillOnEquipUnique2__3 +IncreasedLifeUniqueShieldDex2 +AllResistancesUnique__10 +GainManaOnBlockUnique__1 +AdditionalBlockChanceUniqueShieldDex1 +ChannelledSkillDamageUnique__1 +]],[[ +Unyielding Flame +Archon Kite Shield +Source: Drops in The Lord's Labyrinth +Implicits: 1 +AllResistancesImplicitShield3 +CommandmentOfInfernoOnCritUnique__1 +CriticalStrikeChanceUnique__3 +IncreasedLifeUniqueShieldDex2 +FireResistUnique__1 +AttackSpeedIfCriticalStrikeDealtRecentlyUnique__1 +CastSpeedIfCriticalStrikeDealtRecentlyUnique__1 +]],[[ +Victario's Charity +Laminated Kite Shield +Variant: Pre 2.6.0 +Variant: Current +Implicits: 1 +AllResistancesImplicitShield2 +IncreasedLifeUniqueShieldDex6 +LightningResistUnique__15 +ChaosResistUnique__1 +{variant:1}IncreasedAuraRadiusUnique__1[10,10] +{variant:2}IncreasedAuraRadiusUnique__1 +GrantAlliesPowerChargeOnKillUnique__1 +GrantAlliesFrenzyChargeOnHitUnique__1 +]],[[ +Replica Victario's Charity +Laminated Kite Shield +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +AllResistancesImplicitShield2 +IncreasedLifeUniqueShieldStrDex7 +LightningResistImplicitRing1 +ChaosResistUnique__1 +AuraEffectUnique__2____ +GrantsAlliesEnduranceChargeOnHitUnique__1 +GrantsAlliesFrenzyChargeOnKillUnique__1_ +]], +-- Shield: Evasion/Energy Shield +[[ +Font of Thunder +Mirrored Spiked Shield +Variant: 3.16.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +ChanceToDodgeImplicitShield2 +{variant:1}LocalIncreasedEvasionAndEnergyShieldUnique__25[500,600] +{variant:2}LocalIncreasedEvasionAndEnergyShieldUnique__25 +ManaRegenerationUnique__12 +ChanceToBeShockedUnique__2 +ColdHitAndDoTDamageTakenAsLightningUnique__1 +FireHitAndDoTDamageTakenAsLightningUnique__1 +]],[[ +Glitterdisc +Burnished Spiked Shield +Source: No longer obtainable +Variant: Pre 3.0.0 +Variant: Current +Implicits: 2 +{variant:1}AttackerTakesDamageShieldImplicit3 +{variant:2}ChanceToDodgeImplicitShield2 +LocalIncreasedEvasionAndEnergyShieldUnique__1 +IncreasedEnergyShieldUnique___1 +IncreasedLifeUniqueShieldStr2 +ItemFoundRarityIncreaseUnique__1 +ChanceToAvoidFireDamageUnique__1 +{variant:2}AlwaysIgniteWhileBurningUnique__1 +]],[[ +Jaws of Agony +Supreme Spiked Shield +Variant: Pre 2.0.0 +Variant: Pre 3.0.0 +Variant: Pre 3.8.0 +Variant: Current +Implicits: 2 +{variant:1,2}AttackerTakesDamageShieldImplicit12 +{variant:3,4}ChanceToDodgeImplicitShield2 +{variant:1,2,3}GrantsBearTrapUniqueShieldDexInt1[20,20] +{variant:4}GrantsBearTrapUniqueShieldDexInt1 +TrapDamageUniqueShieldDexInt1 +IncreasedPhysicalDamagePercentUniqueShieldDexInt1 +IncreasedLifeUniqueShieldDexInt1 +PhysicalAttackDamageReducedUniqueShieldDexInt1 +{variant:1}PowerChargeOnTrapThrowChanceUniqueShieldDexInt1[15,15] +{variant:2,3,4}PowerChargeOnTrapThrowChanceUniqueShieldDexInt1 +]],[[ +Leper's Alms +Mirrored Spiked Shield +Source: Drops from unique{The Eradicator} +Variant: Pre 3.5.0 +Variant: Current +Implicits: 1 +ChanceToDodgeImplicitShield2 +{variant:1}LocalIncreasedEvasionAndEnergyShieldUnique__9[130,150] +{variant:2}LocalIncreasedEvasionAndEnergyShieldUnique__9 +IncreasedLifeUniqueShieldDex2 +IncreasedAilmentDurationUnique__1 +AdditionalBlockChanceUnique__6 +SharedSufferingUnique__1 +]],[[ +Maligaro's Lens +Compound Spiked Shield +Variant: Pre 3.0.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 2 +{variant:1}AttackerTakesDamageShieldImplicit6 +{variant:2,3}ChanceToDodgeSpellsImplicitShield1 +IncreasedAttackSpeedUniqueShieldDexInt2 +MaximumLifeUniqueShieldDexInt2 +AllResistancesUniqueShieldDexInt2 +AreaOfEffectUniqueShieldDex7 +{variant:1,2}HealAlliesOnDeathUniqueShieldDexInt2[200,200] +{variant:3}HealAlliesOnDeathUniqueShieldDexInt2 +]],[[ +Perepiteia +Ezomyte Spiked Shield +League: Synthesis +Source: Drops from unique{Altered/Augmented/Rewritten/Twisted Synthete} +Implicits: 1 +ChanceToDodgeImplicitShield1 +LocalIncreaseSocketedLightningGemLevelUnique__1 +TriggeredLightningAegisSkillUnique__1 +IncreasedAttackSpeedUnique__3_ +IncreasedCastSpeedUnique__17 +LocalIncreasedEvasionAndEnergyShieldUnique__20 +IncreasedManaUnique__15 +MovementVelocityUnique__38 +]],[[ +Qotra's Regulator +Sovereign Spiked Shield +League: Ritual +Source: Purchase from Ritual Reward +Implicits: 1 +ChanceToDodgeSpellsImplicitShield2 +LocalIncreasedEvasionAndEnergyShieldUnique__32_ +DamageOverTimeMultiplierIfCrit8SecondsUnique__1_ +LifeRegenerationIfCrit8SecondsUnique__1 +LoseEnergyShieldPercentOnCritUnique__1 +LoseLifePercentOnCritUnique__1 +]],[[ +Zeel's Amplifier +Polished Spiked Shield +Implicits: 1 +ChanceToDodgeImplicitShield2 +SpellDamageUnique__7 +LocalIncreasedEnergyShieldUnique__23 +IncreasedLifeUniqueShieldDex6 +AreaOfEffectPerEnemyKilledRecentlyUnique__1 +ZealotsOathIfHaventBeenHitRecentlyUnique__1 +]],[[ +Azadi Crest +Lacquered Buckler +Source: Drops from unique{Mercenary} after winning a duel +League: Mercenaries of Trarthus +Requires Level 60, 154 Dex +Implicits: 1 +MovementVelocityImplicitShield2 +IncreasedLifeUnique__125 +AdditionalBlockChanceUnique__12 +ProjectileAvoidUnique +ExtremelyLuckyUnique +]],} diff --git a/src/Export/Uniques/staff.lua b/src/Export/Uniques/staff.lua new file mode 100644 index 0000000000..f8fef9d07c --- /dev/null +++ b/src/Export/Uniques/staff.lua @@ -0,0 +1,750 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Weapon: Staff +[[ +Agnerod East +Imperial Staff +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 66, 158 Str, 113 Int +Implicits: 3 +{variant:3}StaffSpellBlockPercent3 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +IncreasedStrengthRequirementUniqueStaff8 +IntelligenceUniqueStaff8 +LightningDamagePercentUniqueStaff8 +{variant:1}LocalIncreaseSocketedLightningGemLevelUniqueStaff8[1,1] +{variant:2,3}LocalIncreaseSocketedLightningGemLevelUniqueStaff8 +LightningPenetrationUniqueStaff8 +ShockDurationUniqueStaff8 +]],[[ +Agnerod North +Imperial Staff +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 66, 158 Str, 113 Int +Implicits: 3 +{variant:3}StaffSpellBlockPercent3 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +IncreasedStrengthRequirementUniqueStaff8 +IntelligenceUniqueStaff8 +LightningDamagePercentUniqueStaff8 +{variant:1}LocalIncreaseSocketedLightningGemLevelUniqueStaff8[1,1] +{variant:2,3}LocalIncreaseSocketedLightningGemLevelUniqueStaff8 +ChanceToShockUniqueStaff8 +LightningPenetrationUniqueStaff8 +]],[[ +Agnerod South +Imperial Staff +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 66, 158 Str, 113 Int +Implicits: 3 +{variant:3}StaffSpellBlockPercent3 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +IncreasedStrengthRequirementUniqueStaff8 +IntelligenceUniqueStaff8 +LightningDamagePercentUniqueStaff8 +{variant:1}LocalIncreaseSocketedLightningGemLevelUniqueStaff8[1,1] +{variant:2,3}LocalIncreaseSocketedLightningGemLevelUniqueStaff8 +MaximumLightningResistUniqueStaff8c +LightningPenetrationUniqueStaff8 +]],[[ +Agnerod West +Imperial Staff +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 66, 158 Str, 113 Int +Implicits: 3 +{variant:3}StaffSpellBlockPercent3 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +IncreasedStrengthRequirementUniqueStaff8 +IntelligenceUniqueStaff8 +LightningDamagePercentUniqueStaff8 +SpellAddedLightningDamageTwoHandUniqueStaff8d +{variant:1}LocalIncreaseSocketedLightningGemLevelUniqueStaff8[1,1] +{variant:2,3}LocalIncreaseSocketedLightningGemLevelUniqueStaff8 +LightningPenetrationUniqueStaff8 +]],[[ +The Annihilating Light +Quarterstaff +Variant: Pre 3.25.0 +Variant: Current +Source: Drops from unique{The Searing Exarch} (Uber) +Requires Level 68, 78 Str, 78 Int +Implicits: 2 +{variant:2}StaffSpellBlockPercent2 +{variant:1}StaffBlockPercentImplicitStaff1[18,18] +IncreasedElementalResistancesUnique__2_ +ElementalSkillsTripleDamageUnique__1 +]],[[ +Atziri's Rule +Judgement Staff +Variant: Pre 3.25.0 +Variant: Current +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Alluring Abyss} +Requires Level 68, 113 Str, 113 Int +Implicits: 2 +{variant:1}StaffSpellBlockPercentImplicitStaff__1 +{variant:2}StaffBlockPercentImplicitStaff3 +UniqueStaffGrantQueensDemand___ +UniqueStaffTriggerAtziriStormFlameblast__1 +UniqueStaffTriggerAtziriStormCall__1____ +CannotBeStunned +DamageCannotBeReflectedUnique__1 +]],[[ +The Winds of Fate +Foul Staff +Variant: Pre 3.25.0 +Variant: Pre 3.26.0 +Variant: Current +League: Sanctum +Source: Drops from unique{Lycia, Herald of the Scourge} in normal{The Beyond} +Implicits: 2 +{variant:1}StaffBlockPercentImplicitStaff2[18,18] +{variant:2,3}StaffBlockPercentImplicitStaff2 +LocalIncreasedPhysicalDamagePercentUnique__45 +{variant:1,2}CriticalMultiplierUnique__6[100,100] +{variant:3}CriticalMultiplierUnique__6 +DamageConversionToRandomElementUnique__1 +PhysicalDamageConvertedToChaosUnique__1 +MaximumCritChanceIs50Unique__1 +NonCriticalStrikesDealNoDamageUnique__1 +]],[[ +The Blood Thorn +Gnarled Branch +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Implicits: 3 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +{variant:3}StaffSpellBlockPercentImplicitStaff__1 +StaffBlockPercentUniqueStaff9 +LocalIncreasedPhysicalDamagePercentUniqueDescentStaff1 +LocalIncreasedAttackSpeedUniqueStaff9 +ReflectDamageToAttackersOnBlockUniqueStaff9 +VulnerabilityOnBlockUniqueStaff9 +]],[[ +Replica Blood Thorn +Gnarled Branch +Variant: Pre 3.25.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 2 +{variant:1}StaffBlockPercentImplicitStaff1[18,18] +{variant:2}StaffSpellBlockPercentImplicitStaff__1 +StaffBlockPercentUniqueStaff9 +IncreasedFireDamgeIfHitRecentlyUnique__1 +LocalIncreasedAttackSpeedUniqueStaff9 +FlammabilityOnBlockChanceUnique__1 +ReflectFireDamageOnBlockUnique__1___ +]],[[ +Cane of Unravelling +Ezomyte Staff +Variant: Pre 3.5.0 +Variant: Pre 3.11.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level: 60, 113 Str, 113 Int +Implicits: 3 +{variant:1,2}StaffBlockPercentImplicitStaff3[18,18] +{variant:3}StaffBlockPercentImplicitStaff3[20,20] +{variant:4}StaffBlockPercentImplicitStaff3 +{variant:2,3,4}ChaosNonAilmentDamageOverTimeMultiplierUnique__1 +{variant:1}IncreasedChaosDamageUnique__4_2[60,80] +{variant:2,3,4}IncreasedChaosDamageUnique__4_2 +IncreasedCastSpeedPerPowerChargeUnique__1 +LocalIncreaseSocketedChaosGemLevelUnique__1 +PowerChargeOnManaSpentUnique__1 +ManaRegeneratedPerSecondPerPowerChargeUnique__1 +]],[[ +Disintegrator +Maelstrom Staff +Shaper Item +Elder Item +Source: Drops from unique{The Elder} (Uber) +Variant: Pre 3.7.0 +Variant: Pre 3.11.0 +Variant: Pre 3.13.0 +Variant: Current +Requires Level 64, 113 Str, 113 Int +Implicits: 2 +{variant:1,2}StaffBlockPercentImplicitStaff3[20,20] +{variant:3,4}StaffBlockPercentImplicitStaff3 +{variant:1}LocalAddedPhysicalDamageUnique__31[270,300][340,380] +{variant:2}LocalAddedPhysicalDamageUnique__31[250,280][315,355] +{variant:3,4}LocalAddedPhysicalDamageUnique__31 +MaximumSiphoningChargePerElderOrShaperItemUnique__1 +SiphoningChargeOnSkillUseUnique__1 +PhysicalDamageToAttacksPerSiphoningChargeUnique__1 +NonChaosDamageAddedAsChaosPerSiphoningChargeUnique__1 +AdditionalPhysicalDamageReductionPerSiphoningChargeUnique__1 +LifeLeechPerSiphoningChargeUnique__1 +DamageTakenPerSiphoningChargeOnSkillUseUnique__1 +{variant:1,2,3,4}BattlemageKeystoneUnique__5 +]],[[ +Duskdawn +Maelström Staff +Source: Vendor Recipe +Variant: Pre 2.6.0 +Variant: Pre 3.5.0 +Variant: Pre 3.11.0 +Variant: Current +Requires Level 64, 113 Str, 113 Int +Implicits: 3 +{variant:1}StaffBlockPercentImplicitStaff2[18,18] +{variant:2,3}StaffBlockPercentImplicitStaff2[20,20] +{variant:4}StaffBlockPercentImplicitStaff3[25,25] +{variant:1,2}StaffBlockPercentUnique__2_[4,4] +{variant:3,4}StaffBlockPercentUnique__2_ +SpellCriticalStrikeChanceUnique__2 +ElementalDamagePercentAddedAsChaosUnique__2 +CriticalMultiplierPerBlockChanceUnique__1 +CritMultiIfDealtNonCritRecentlyUnique__2 +{variant:1,2}SpellDamageIfYouHaveCritRecentlyUnique__2[120,120] +{variant:3,4}SpellDamageIfYouHaveCritRecentlyUnique__2 +]],[[ +Replica Duskdawn +Maelström Staff +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 64, 113 Str, 113 Int +Implicits: 1 +StaffBlockPercentImplicitStaff3 +StaffBlockPercentUnique__2_ +LocalCriticalStrikeChanceUnique__19 +ElementalDamagePercentAddedAsChaosUnique__1 +CriticalMultiplierPerBlockChanceUnique__1 +CritMultiIfDealtNonCritRecentlyUnique__2 +ElementalDamageIfCritRecently +]],[[ +Dying Breath +{variant:1}Coiled Staff +{variant:2}Iron Staff +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Implicits: 2 +{variant:1,2}StaffBlockPercentImplicitStaff1[18,18] +{variant:3}StaffBlockPercentImplicitStaff1 +IncreasedCastSpeedUniqueStaff5 +MaximumManaUniqueStaff5 +AuraIncreasedIncreasedAreaOfEffectUniqueStaff5 +CurseAreaOfEffectUniqueStaff5 +UndyingBreathCurseAuraDisplayUniqueStaff5 +UndyingBreathDamageAuraDisplayUniqueStaff5 +DamageTakenUniqueStaff5 +]],[[ +The Enmity Divine +Imperial Staff +League: Harbinger +Source: Created from item parts obtained from Boss in The Beachhead +Upgrade: Upgrades to unique{The Yielding Mortality} via currency{Haemocombustion Scroll} +Variant: Pre 3.11.0 +Variant: Pre 3.25.0 +Variant: Pre 3.26.0 +Variant: Current +Requires Level 66, 113 Str, 113 Int +Implicits: 2 +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +{variant:3,4}StaffSpellBlockPercent3 +{variant:1}SupportedByLifeLeechUnique__1 +{variant:2,3,4}SupportedByChanceToBleedUnique__1 +HarbingerSkillOnEquipUnique__6 +StaffBlockPercentUnique__4_ +{variant:2,3}CriticalBleedDotMultiplierUnique__1_[30,40] +{variant:4}CriticalBleedDotMultiplierUnique__1_ +{variant:1,2,3}LocalAddedPhysicalDamageUnique__28[160,185][200,225] +{variant:4}LocalAddedPhysicalDamageUnique__28 +LocalCriticalStrikeChanceUnique__9 +]],[[ +The Yielding Mortality +Imperial Staff +Variant: Pre 3.25.0 +Variant: Pre 3.26.0 +Variant: Current +League: Harvest +Source: Upgraded from unique{The Enmity Divine} via currency{Haemocombustion Scroll} +Requires Level 66, 113 Str, 113 Int +Implicits: 2 +{variant:1}StaffBlockPercentImplicitStaff1[18,18] +{variant:2,3}StaffSpellBlockPercent3 +SupportedByChanceToBleedUnique__1 +HarbingerSkillOnEquipUnique2_6 +StaffBlockPercentUnique__4_ +{variant:1,2}CriticalBleedDotMultiplierUnique__1_[30,40] +{variant:3}CriticalBleedDotMultiplierUnique__1_ +{variant:1,2}LocalAddedPhysicalDamageUnique__28[160,185][200,225] +{variant:3}LocalAddedPhysicalDamageUnique__28 +LocalCriticalStrikeChanceUnique__3 +]],[[ +Femurs of the Saints +Primordial Staff +Variant: Pre 2.6.0 +Variant: Pre 3.8.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 58, 99 Str, 99 Int +Implicits: 3 +{variant:4}StaffSpellBlockPercent3 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2,3}StaffBlockPercentImplicitStaff1[18,18] +LocalIncreaseSocketedMinionGemLevelUnique__2_ +{variant:3,4}MinionDamageUnique__3_ +{variant:1,2}MinionLifeRegenerationPerRagingSpirit__1 +{variant:1,2}MinionAttackAndCastSpeedPerSkeleton__1 +{variant:1,2}MinionDurationPerZombie__1 +{variant:1,2}MinionDamagePerSpectre__1 +{variant:3,4}AttackBlockPerSkeletonUnique__1 +{variant:3,4}AttackAndCastSpeedPerRagingSpiritUnique__1 +{variant:3,4}LifeRegenerationPerZombieUnique__1 +{variant:3,4}ManaRegenerationPerSpectreUnique__1 +]],[[ +Fencoil +Gnarled Branch +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Implicits: 3 +{variant:3}StaffSpellBlockPercentImplicitStaff__1 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +DisplaySupportedByTrapUniqueStaff4 +AllDamageUniqueStaff4 +MaximumLifeUniqueStaff4 +MaximumManaUniqueStaff4 +]],[[ +Replica Fencoil +Gnarled Branch +Variant: Pre 3.25.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 2 +{variant:2}StaffSpellBlockPercentImplicitStaff__1 +{variant:1}StaffBlockPercentImplicitStaff1[18,18] +SupportedByMultiTotemUnique__1 +AllDamageUniqueStaff4 +MaximumLifeUniqueStaff4 +MaximumManaUniqueStaff4 +]],[[ +The Burden of Shadows +Primordial Staff +Variant: Pre 3.25.0 +Variant: Current +League: Affliction +Requires Level 58, 99 Str, 99 Int +Implicits: 2 +{variant:2}StaffSpellBlockPercent3 +{variant:1}StaffBlockPercentImplicitStaff1[18,18] +SocketedGemsGetBloodMagicUnique__1 +IncreasedCastSpeedUnique__25 +LifeDegenerationGracePeriodUnique__1 +SpellAddedChaosDamageMaximumLifeUnique__1 +]],[[ +The Fulcrum +Ezomyte Staff +Variant: Pre 3.25.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Requires Level 60, 113 Str, 113 Int +Implicits: 2 +{variant:1}StaffBlockPercentImplicitStaff3[20,20] +{variant:2}StaffBlockPercentImplicitStaff3 +LocalIncreasedPhysicalDamagePercentUnique__41___ +ConvertPhysicalToFireUnique__3__ +ConvertPhysicalToColdUnique__3 +ConvertPhysicaltoLightningUnique__5 +ReflectElementalAilmentsToSelfUnique__1 +ElementalDamageLuckyWhileShockedUnique__1__ +ElementalPenetrationWhileChilledUnique__1___ +PhysicalDamageAddedAsRandomWhileIgnitedUnique__1 +]],[[ +Mirebough +Gnarled Branch +Variant: Pre 3.25.0 +Variant: Current +Source: No longer obtainable +Requires Level 32 +Implicits: 2 +{variant:2}StaffSpellBlockPercentImplicitStaff__1 +{variant:1}StaffBlockPercentImplicitStaff1[18,18] +DisplaySupportedByTrapUnique__1 +SupportedByClusterTrapUnique__1 +SupportedByTrapAndMineDamageUnique__1 +AllDamageUniqueStaff4 +MaximumLifeUniqueStaff4 +MaximumManaUniqueStaff4 +]],[[ +The Grey Spire +Judgement Staff +Variant: Pre 3.11.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 68, 113 Str, 113 Int +Implicits: 3 +{variant:2}StaffSpellBlockPercentImplicitStaff__1 +{variant:1}StaffBlockPercentImplicitStaff3[18,18] +{variant:3}StaffBlockPercentImplicitStaff3 +HasNoSockets +AllDamageUnique__3 +LocalIncreasedAttackSpeedUnique__44 +IncreasedMaximumResistsUnique__1 +]],[[ +Hegemony's Era +Judgement Staff +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Pre 3.11.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 68, 113 Str, 113 Int +Implicits: 4 +{variant:1}StaffBlockPercentImplicitStaff3[12,12] +{variant:2,3}StaffBlockPercentImplicitStaff3[18,18] +{variant:4}StaffSpellBlockPercentImplicitStaff__1 +{variant:5}StaffBlockPercentImplicitStaff3 +StaffBlockPercentUniqueStaff7 +{variant:1,2}LocalAddedPhysicalDamageUniqueStaff7[180,190][190,220] +{variant:3}LocalAddedPhysicalDamageUniqueStaff7[165,175][185,205] +{variant:4,5}LocalAddedPhysicalDamageUniqueStaff7 +LocalIncreasedAttackSpeedUniqueStaff7 +{variant:1,2,3}LocalCriticalStrikeChanceUniqueStaff7[20,30] +{variant:4,5}LocalCriticalStrikeChanceUniqueStaff7 +IncreasedMaximumPowerChargesUniqueStaff7 +PowerChargeOnKnockbackUniqueStaff7 +]],[[ +Martyr of Innocence +Highborn Staff +Variant: Pre 3.5.0 +Variant: Pre 3.13.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 52, 89 Str, 89 Int +Implicits: 2 +{variant:4}StaffSpellBlockPercent2 +{variant:1,2,3}StaffBlockPercentImplicitStaff1[18,18] +StaffBlockPercentUnique__3 +{variant:1,2,3,4}FireDamagePercentUnique__12___ +{variant:1,2}LocalAddedFireDamageUnique__3[350,400][500,600] +{variant:3,4}LocalAddedFireDamageUnique__3 +FirePenetrationIfBlockedRecentlyUnique__1 +ImmuneToFreezeAndChillWhileIgnitedUnique__1 +{variant:1,2,3,4}BattlemageKeystoneUnique__4 +]],[[ +Pillar of the Caged God +Iron Staff +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 13, 27 Str, 27 Int +Implicits: 3 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +{variant:3}StaffBlockPercentImplicitStaff1 +WeaponPhysicalDamagePerStrength +AttackSpeedPerDexterity +IncreasedAreaOfEffectPerIntelligence +]],[[ +Pledge of Hands +Judgement Staff +League: Legion +Source: Drops from unique{Atziri, Queen of the Vaal} in normal{The Apex of Sacrifice} +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Pre 3.15.0 +Variant: Pre 3.25.0 +Variant: Pre 3.28.0 +Variant: Current +Requires Level 68, 113 Str, 113 Int +Implicits: 4 +{variant:3,4}StaffSpellBlockPercentImplicitStaff__1 +{variant:1}StaffBlockPercentImplicitStaff3[12,12] +{variant:2}StaffBlockPercentImplicitStaff3[18,18] +{variant:5,6}StaffBlockPercentImplicitStaff3 +{variant:1,2,3,4,5}SupportedByEchoUniqueStaff6[30,30] +{variant:6}SupportedByEchoUniqueStaff6 +SpellDamageUniqueStaff6 +{variant:1,2,3}MaximumManaUniqueStaff5[100,100] +{variant:4,5}MaximumManaUniqueStaff5[50,50] +{variant:6}MaximumManaUniqueStaff6 +]],[[ +Realmshaper +Iron Staff +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 18, 35 Str, 35 Int +Implicits: 3 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +{variant:3}StaffBlockPercentImplicitStaff1 +LocalIncreaseSocketedFireGemLevelUniqueStaff13 +LocalIncreaseSocketedColdGemLevelUniqueStaff13 +ItemActsAsColdToFireSupportUniqueStaff13 +LocalAddedFireDamageUniqueStaff13 +LocalAddedColdDamageUniqueStaff13 +ElementalDamageUniqueStaff13 +]],[[ +Realm Ender +Iron Staff +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 40, 35 Str, 35 Int +Implicits: 3 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +{variant:3}StaffBlockPercentImplicitStaff1 +LocalIncreaseSocketedFireGemLevelUniqueStaff13 +LocalIncreaseSocketedColdGemLevelUniqueStaff13 +LocalIncreaseSocketedElementalGemUnique___1 +ItemActsAsColdToFireSupportUniqueStaff13 +LocalAddedFireDamageUniqueStaff13 +LocalAddedColdDamageUniqueStaff13 +ElementalDamageUniqueStaff13 +]],[[ +The Searing Touch +{variant:1}Long Staff +{variant:2,3,4,5,6}Lathi +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.8.0 +Variant: Pre 3.25.0 +Variant: Current +Implicits: 3 +{variant:1,2}StaffBlockPercentImplicitStaff3[12,12] +{variant:3,4,5}StaffBlockPercentImplicitStaff3[18,18] +{variant:6}StaffBlockPercentImplicitStaff3 +{variant:1,2,3}SpellDamageUnique__10 +{variant:5,6}FireDamageOverTimeMultiplierUnique__1 +{variant:1,2,3}FireDamagePercentUniqueStaff1_[20,40] +{variant:4,5,6}FireDamagePercentUniqueStaff1_ +IncreasedCastSpeedUniqueStaff1 +LocalIncreaseSocketedFireGemLevelUniqueStaff1 +{variant:1,2,3,4}BurnDamageUniqueStaff1 +]],[[ +Sire of Shards +Serpentine Staff +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 49, 85 Str, 85 Int +Implicits: 3 +{variant:1}StaffBlockPercentImplicitStaff2[18,18] +{variant:2}StaffBlockPercentImplicitStaff2[20,20] +{variant:3}StaffBlockPercentImplicitStaff2 +SocketedGemsAdditionalProjectilesUniqueStaff10_ +SocketedGemsProjectilesNovaUniqueStaff10 +AllAttributesUniqueStaff10 +AllResistajcesUniqueStaff10 +IncreasedProjectileDamageUniqueStaff10 +LightRadiusUniqueStaff10_ +]],[[ +Soulwrest +Ezomyte Staff +League: Delve +Variant: Pre 3.11.0 +Variant: Pre 3.25.0 +Variant: Pre 3.26.0 +Variant: Current +Requires Level 62, 113 Str, 113 Int +Implicits: 3 +{variant:1}StaffBlockPercentImplicitStaff3[18,18] +{variant:2}StaffBlockPercentImplicitStaff3[20,20] +{variant:3,4}StaffBlockPercentImplicitStaff3 +{variant:1,2,3}TriggerSummonPhantasmOnCorpseConsumeUnique__1[20,20] +{variant:4}TriggerSummonPhantasmOnCorpseConsumeUnique__1 +SpellDamageUnique__8_ +IncreasedCastSpeedUnique__13 +ManaRegenerationUnique__9___ +{variant:1,2,3}MinionAddedPhysicalDamageUnique__1[45,51][66,78] +{variant:4}MinionAddedPhysicalDamageUnique__1 +LifeRegenerationIfCorpseConsumedRecentlyUnique__1 +]],[[ +The Stormheart +Royal Staff +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 28, 51 Str, 51 Int +Implicits: 3 +{variant:3}StaffSpellBlockPercentImplicitStaff__1 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +LocalIncreasedPhysicalDamagePercentUniqueStaff14 +LocalAddedColdDamageUniqueStaff14 +LocalAddedLightningDamageUniqueStaff14 +LocalCriticalStrikeChanceUniqueStaff14 +{variant:1}CannotBeShockedWhileFrozenUniqueStaff14 +{variant:2,3}CannotBeShockedWhileChilledUnique__1 +{variant:2,3}ChanceToShockChilledEnemiesUnique__1 +]],[[ +The Stormwall +Royal Staff +Variant: Pre 3.25.0 +Variant: Current +Source: No longer obtainable +Requires Level 60, 51 Str, 51 Int +Implicits: 2 +{variant:1}StaffBlockPercentImplicitStaff1[18,18] +{variant:2}StaffSpellBlockPercentImplicitStaff__1 +StaffBlockPercentUnique__1 +LocalAddedPhysicalDamageUnique__33_ +LocalCriticalStrikeChanceUniqueStaff14 +ConvertPhysicalToColdUnique__2 +ConvertPhysicaltoLightningUnique__4 +CannotBeShockedWhileChilledUnique__1 +ChanceToChillAttackersOnBlockUnique__1 +ChanceToShockAttackersOnBlockUnique__1_ +]],[[ +Taryn's Shiver +Maelström Staff +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Current +Requires Level 64, 113 Str, 113 Int +Implicits: 3 +{variant:1,2}StaffBlockPercentImplicitStaff3[18,18] +{variant:3}StaffBlockPercentImplicitStaff3[20,20] +{variant:4}StaffBlockPercentImplicitStaff3 +{variant:1}SpellDamageUniqueStaff2[40,50] +{variant:2,3,4}SpellDamageUniqueStaff2 +ColdDamagePercentUniqueStaff2 +IncreasedCastSpeedUniqueStaff2 +{variant:1,2}LocalIncreaseSocketedColdGemLevelUniqueStaff2[1,1] +{variant:3,4}LocalIncreaseSocketedColdGemLevelUniqueStaff2 +ChanceToFreezeUniqueStaff2 +FrozenMonstersTakeIncreasedDamageUnique__1 +]],[[ +Tremor Rod +Military Staff +Variant: Pre 2.6.0 +Variant: Pre 3.8.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 45, 78 Str, 78 Int +Implicits: 3 +{variant:1}StaffBlockPercentImplicitStaff2[12,12] +{variant:2,3}StaffBlockPercentImplicitStaff2[18,18] +{variant:4}StaffBlockPercentImplicitStaff2 +{variant:3,4}LocalIncreaseSocketedSpellGemLevelUnique__1 +{variant:1,2,3,4}SupportedByRemoteMineUniqueStaff11 +{variant:1,2}LessMineDamageUniqueStaff11 +SpellDamageUniqueStaff11_ +StunThresholdReductionUniqueStaff11 +{variant:1,2}RemoteMineLayingSpeedUniqueStaff11 +MinesMultipleDetonationUniqueStaff11 +]],[[ +The Whispering Ice +Vile Staff +Variant: Pre 2.6.0 +Variant: Pre 3.25.0 +Variant: Current +Requires Level 33, 59 Str, 59 Int +Implicits: 3 +{variant:1}StaffBlockPercentImplicitStaff1[12,12] +{variant:2}StaffBlockPercentImplicitStaff1[18,18] +{variant:3}StaffBlockPercentImplicitStaff1 +LocalIncreaseSocketedSupportGemLevelUniqueStaff12 +IcestormUniqueStaff12 +PercentageIntelligenceUniqueStaff12_ +IncreasedCastSpeedUniqueStaff12 +SpellDamagePerIntelligenceUniqueStaff12 +]],[[ +Witchhunter's Judgment +Highborn Staff +Variant: Pre 3.25.0 +Variant: Current +League: Harvest +Source: Drops from unique{Oshabi, Avatar of the Grove} +Requires Level 68, 89 Str, 89 Int +Implicits: 2 +{variant:1}StaffBlockPercentImplicitStaff1[18,18] +{variant:2}StaffSpellBlockPercent2 +GrantsBrandDetonateUnique__1 +BrandDurationUnique__1 +]],[[ +The Geomantic Gyre +Highborn Staff +Variant: Pre 3.25.0 +Variant: Current +League: Crucible +Implicits: 2 +{variant:1}StaffBlockPercentImplicitStaff1[18,18] +{variant:2}StaffBlockPercentImplicitStaff2 +HasOneSocketUnique__1 +SpellDamageUnique__15 +SpellCriticalStrikeChanceUnique__5 +IncreasedManaUnique__10 +LifeGainedFromEnemyDeathUnique__5 +ItemCanHaveSupportGemsOnlyTreeUnique1 +]],[[ +Xirgil's Crank +Coiled Staff +Source: Drops in The Lord's Labyrinth +Variant: Pre 2.6.0 +Variant: Pre 3.26.0 +Variant: Current +Requires Level 28, 43 Str, 43 Int +Implicits: 2 +{variant:1}StaffBlockPercentUnique__1[18,18] +{variant:2,3}StaffBlockPercentUnique__1[20,20] +StaffBlockPercentUnique__1 +SpellDamageUnique__18 +{variant:1,2}IncreasedEnergyShieldUnique__3[70,100] +{variant:3}IncreasedEnergyShieldUnique__3 +LocalIncreaseSocketedGemLevelUnique___3 +AttackerTakesLightningDamageUnique___1 +{variant:1,2}EnergyShieldRechargeOnBlockUnique__1[20,20] +{variant:3}EnergyShieldRechargeOnBlockUnique__1 +]],[[ +Legacy of the Rose +Judgement Staff +Variant: Shaper's Despair +Variant: Shaper's Ire +Variant: Shaper's Devastation +Source: Drops from unique{Incarnation of Neglect} in normal{Moment of Loneliness} +Requires Level 68, 113 Str, 113 Int +Implicits: 1 +StaffBlockPercentImplicitStaff3 +{variant:1}GrantShaperSkill_1[3,3] +{variant:2}GrantShaperSkill_1[2,2] +{variant:3}GrantShaperSkill_1[1,1] +LocalIncreasedPhysicalDamagePercentUnique__51 +IncreasedCastSpeedUniqueStaff_1 +GlobalSpellGemsLevelUniqueStaff_1 +RemembranceGainedPerEnergyShieldUnique_1 +MaximumRemembranceUnique_1 +KeystoneEldritchBatteryUnique__2 +]], +[[ +Jiquani's Potential +Imperial Staff +Source: Drops from unique{It That Was Esh} and unique{It That Was Tul} in normal{Hive Colony} +Requires Level 66, 113 Str, 113 Dex +Implicits: 1 +StaffSpellBlockPercent3 +PercentageIntelligenceUnique__5 +MaximumLifeUnique__26 +GlobalSpellGemsLevelUniqueStaff_2 +IncreasedSkillCostUnique_1 +SpellLightningDamagePerIntelligenceUnique__1 +BloodMagic +]], +} diff --git a/src/Export/Uniques/sword.lua b/src/Export/Uniques/sword.lua new file mode 100644 index 0000000000..049144dee8 --- /dev/null +++ b/src/Export/Uniques/sword.lua @@ -0,0 +1,1012 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Weapon: One Handed Sword +[[ +Ahn's Might +Midnight Blade +Implicits: 1 +AccuracyPercentImplicitSword1 +StrengthRequirementsUnique__1 +LocalAddedPhysicalDamageUnique__27 +LocalCriticalStrikeChanceUnique__12 +ReducedMaximumFrenzyChargesUnique__1 +AreaOfEffectUnique__3 +GlobalCriticalMultiplierWithNoFrenzyChargesUnique__1 +AccuracyRatingWithMaxFrenzyChargesUnique__1 +]],[[ +Beltimber Blade +Eternal Sword +Variant: Pre 3.5.0 +Variant: Current +Implicits: 1 +IncreasedAccuracySwordImplicit9 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__30[170,190] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__30 +LocalIncreasedAttackSpeedUnique__25 +EvasionRatingWhileMovingUnique__1 +NumberOfProjectilesIfUsedAMovementSkillRecentlyUnique__1 +PlayerFarShotUnique__2 +]],[[ +Dreamfeather +Eternal Sword +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Current +Implicits: 2 +{variant:1,2}AccuracyPercentImplicit2HSword1[18,18] +{variant:3,4}IncreasedAccuracySwordImplicit9 +{variant:1}LocalAddedPhysicalDamageUniqueOneHandSword9[15,30][35,50] +{variant:2}LocalAddedPhysicalDamageUniqueOneHandSword9[20,40][55,70] +{variant:3,4}LocalAddedPhysicalDamageUniqueOneHandSword9 +LocalIncreasedAttackSpeedUniqueOneHandSword9 +IncreasedEvasionRatingUniqueOneHandSword9 +MovementVelocityUniqueOneHandSword9 +{variant:1,2,3}IncreasedAccuracyUniqueOneHandSword9[180,200] +{variant:4}IncreasedAccuracyUniqueOneHandSword9 +EvasionRatingIncreasesWeaponDamageUniqueOneHandSword9 +]],[[ +Replica Dreamfeather +Eternal Sword +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +IncreasedAccuracySwordImplicit9 +LocalAddedPhyiscalDamageUnique__41_ +IncreasedAttackSpeedUnique__2 +IncreasedPhysicalDamageReductionRatingUnique__5 +ReducedMovementVelocityUnique__3 +IncreasedAccuracyUniqueOneHandSword9 +AttackDamagePer450ArmourUnique__1__ +]],[[ +Ephemeral Edge +Dusk Blade +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.19.0 +Variant: Pre 3.23.0 +Variant: Pre 3.26.0 +Variant: Current +Implicits: 2 +{variant:1,2}AccuracyPercentImplicitSword1[18,18] +{variant:3,4,5,6}AccuracyPercentImplicitSword1 +IntelligenceUniqueOneHandSword2 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueOneHandSword2[100,100] +{variant:2,3}LocalIncreasedPhysicalDamagePercentUniqueOneHandSword2 +{variant:4,5,6}LocalAddedLightningDamageUnique__6 +CriticalStrikeChanceUniqueOneHandSword2 +IncreasedEnergyShieldPercentUniqueOneHandSword2 +{variant:1,2,3}MaximumLifeUniqueOneHandSword2[-10,-10] +{variant:4,5,6}MaximumLifeUniqueOneHandSword2 +{variant:1,2,3}ManaLeechPermyriadUniqueOneHandSword2 +{variant:4,5}WeaponAddedLightningDamagePerEnergyShieldUnique__1[20,20] +{variant:6}WeaponAddedLightningDamagePerEnergyShieldUnique__1 +]],[[ +The Goddess Scorned +Elegant Sword +Source: Vendor Recipe +Variant: Pre 2.2.0 +Variant: Pre 2.6.0 +Variant: Current +Implicits: 2 +{variant:1,2}AccuracyPercentImplicit2HSword1[18,18] +{variant:3}IncreasedAccuracySwordImplicit3 +DisableOffhandSlot +LocalIncreasedPhysicalDamagePercentUniqueOneHandSword4 +LocalCriticalStrikeChanceUniqueOneHandSword4 +{variant:1}LocalCriticalMultiplierUniqueOneHandSword4[15,20] +{variant:2,3}LocalCriticalMultiplierUniqueOneHandSword4 +FireResistUniqueOneHandSword4 +AvoidIgniteUniqueOneHandSword4 +ConvertPhysicalToFireUniqueOneHandSword4 +FasterBurnFromAttacksUniqueOneHandSword4 +CanOnlyDealDamageWithThisWeapon +]],[[ +The Goddess Unleashed +Eternal Sword +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Current +LevelReq: 51 +Implicits: 2 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2}IncreasedAccuracySwordImplicit9 +DisableOffhandSlot +LocalAddedPhysicalDamageUniqueOneHandSword10 +LocalCriticalStrikeChanceUniqueOneHandSword10 +BurnDurationUnique__1 +SwordPhysicalDamageToAddAsFireUniqueOneHandSword10 +GrantUniqueBuff__1 +UniqueEffectOnBuff__3 +UniqueConditionOnBuff__1 +UniqueConditionOnBuff__2 +]],[[ +Grelwood Shank +Eternal Sword +Variant: Pre 3.5.0 +Variant: Current +Implicits: 1 +IncreasedAccuracySwordImplicit9 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__30[170,190] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__30 +LocalIncreasedAttackSpeedUniqueSceptre9 +IncreasedArmourWhileStationaryUnique__1 +NumberOfProjectilesIfHitRecentlyUnique__1 +KeystonePointBlankUnique__1 +GainIronReflexesWhileStationaryUnique__1 +]],[[ +Hyaon's Fury +Legion Sword +Variant: Pre 1.3.0 +Variant: Pre 2.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 2 +{variant:1,2,3}AccuracyPercentImplicitSword1[18,18] +{variant:4,5,6}AccuracyPercentImplicitSword1 +{variant:1,2}LocalAddedLightningDamageUniqueOneHandSword6[1,1][500,600] +{variant:3,4,5,6}LocalAddedLightningDamageUniqueOneHandSword6 +LocalIncreasedAttackSpeedUniqueOneHandSword6 +{variant:1}DamageTakenPerFrenzyChargeUniqueOneHandSword6[6,6] +{variant:2,3,4}DamageTakenPerFrenzyChargeUniqueOneHandSword6[3,3] +{variant:5,6}DamageTakenPerFrenzyChargeUniqueOneHandSword6 +{variant:1,2,3,4,5}IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6[12,12] +{variant:6}IncreaseLightningDamagePerFrenzyChargeUniqueOneHandSword6 +LifeGainedOnEnemyDeathPerFrenzyChargeUniqueOneHandSword6 +]],[[ +Ichimonji +Corsair Sword +Variant: Pre 2.6.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword1[18,18] +{variant:2}AccuracyPercentImplicitSword1 +{variant:1}LocalIncreasedPhysicalDamageUniqueOneHandSword11[60,80] +{variant:2}LocalIncreasedPhysicalDamageUniqueOneHandSword11 +LocalAddedPhysicalDamageUniqueOneHandSword11 +{variant:1}LocalIncreasedAttackSpeedUniqueOneHandSword11[10,15] +{variant:2}LocalIncreasedAttackSpeedUniqueOneHandSword11 +IncreasedBuffEffectivenessUniqueOneHandSword11 +IncreasedManaReservationsCostUniqueOneHandSword11 +CannotBeBuffedByAlliedAurasUniqueOneHandSword11 +AurasCannotBuffAlliesUniqueOneHandSword11 +]],[[ +Innsbury Edge +Elder Sword +Variant: Pre 2.6.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2}IncreasedAccuracySwordImplicit5 +LocalIncreasedPhysicalDamagePercentUnique__13 +LocalIncreasedAttackSpeedUnique__14 +ChaosDamageLifeLeechPermyriadUnique__1 +PhysicalDamageConvertToChaosUnique__1 +LocalMaimOnHitUnique__1 +]],[[ +Replica Innsbury Edge +Elder Sword +Variant: Pre 3.25.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +IncreasedAccuracySwordImplicit5 +LocalIncreasedPhysicalDamagePercentUnique__48 +ChaosDamageLifeLeechPermyriadUnique__1 +PhysicalDamageConvertedToChaosUnique__2 +{variant:1}PhysicalDamageTakenAsChaosUnique__1 +LocalWitherOnHitChanceUnique__2 +]],[[ +The Iron Mass +Gladius +Variant: Pre 3.24.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +AccuracyPercentImplicitSword1 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__39[140,175] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__39 +LocalIncreasedAttackSpeedUnique__34 +GrantsUnholyMightUnique__1 +SummonedSkeletonWarriorsGetWeaponStatsInMainHandUnique__1 +SkeletonWarriorsTripleDamageUnique__1_ +]],[[ +Lakishu's Blade +Elegant Sword +Variant: Pre 2.6.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2}IncreasedAccuracySwordImplicit3 +SupportedByMultistrikeUniqueOneHandSword13 +LocalIncreasedPhysicalDamagePercentUniqueOneHandSword13 +LocalAddedPhysicalDamageUniqueOneHandSword13 +LocalIncreasedAttackSpeedUniqueOneHandSword13_ +StunAvoidanceUniqueOneHandSword13 +StunRecoveryUniqueOneHandSword13 +]],[[ +The Living Blade +Ezomyte Blade +League: Settlers of Kalguur +Requires Level 61, 113 Str, 113 Dex +Implicits: 1 +CriticalMultiplierImplicitSword1 +LocalIncreasedPhysicalDamagePercentUnique__4 +LocalIncreasedAttackSpeedUnique__40 +CannotBePoisonedUnique__1 +AdditionalTinctureUnique__1 +TinctureRemoveToxicityOnKillUnique__1 +]],[[ +Oni-Goroshi +Charan's Sword +Source: Drops from unique{Hillock} +Sockets: R-R-R-R-R-R +Implicits: 1 +AccuracyPercentImplicitSword1 +DisableOffHandSlotUnique__1 +LocalCriticalStrikeChanceUnique__13 +PhysicalDamageToAttacksPerLevelUnique__2 +GainHerEmbraceOnIgniteUnique__1 +TakeDamagePerLevelWhileHerEmbraceUnique__1_ +]],[[ +The Princess +Sabre +Variant: Pre 2.6.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword1[18,18] +{variant:2}AccuracyPercentImplicitSword1 +LocalIncreasedPhysicalDamagePercentUniqueOneHandSword12 +LocalAddedPhysicalDamageUniqueOneHandSword12 +LocalIncreasedAttackSpeedUniqueOneHandSword12 +{variant:1}PhysicalAddedAsColdUnique__1[10,10] +{variant:2}PhysicalAddedAsColdUniqueOneHandSword12 +DamageTakenFromSkeletonsUniqueOneHandSword12_ +DamageTakenFromGhostsUniqueOneHandSword12 +]],[[ +Prismatic Eclipse +Twilight Blade +Variant: Pre 1.3.0 +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Current +Implicits: 2 +{variant:1,2}AccuracyPercentImplicitSword1[18,18] +{variant:3,4}AccuracyPercentImplicitSword1 +{variant:1}BlockWhileDualWieldingUniqueOneHandSword5[10,10] +{variant:2,3,4}BlockWhileDualWieldingUniqueOneHandSword5 +{variant:1,2,3}LocalAddedPhysicalDamageUniqueOneHandSword5[20,30][31,40] +{variant:4}LocalAddedPhysicalDamageUniqueOneHandSword5 +PhysicalDamgePerRedSocketUniqueOneHandSword5 +AttackSpeedPerGreenSocketUniqueOneHandSword5 +ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUniqueOneHandSword5 +MeleeRangePerWhiteSocketUniqueOneHandSword5 +]],[[ +Razor of the Seventh Sun +Midnight Blade +Variant: Pre 2.6.0 +Variant: Pre 3.5.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword1[18,18] +{variant:2,3,4}AccuracyPercentImplicitSword1 +{variant:1,2}LocalAddedPhysicalDamageUnique__21[65,75][110,130] +{variant:3,4}LocalAddedPhysicalDamageUnique__21 +{variant:3}ConvertPhysicalToFireUnique__2_[25,25] +{variant:4}ConvertPhysicalToFireUnique__2_ +{variant:3,4}ChanceToIgniteUnique__5 +IncreasedBurningDamageIfYouHaveIgnitedRecentlyUnique__1 +RecoverLifePercentOnIgniteUnique__1 +IncreasedMeleePhysicalDamageAgainstIgnitedEnemiesUnique__1 +]],[[ +Rebuke of the Vaal +Vaal Blade +League: Legion +Variant: Pre 1.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Current +Implicits: 2 +{variant:1,2}AccuracyPercentImplicit2HSword1[18,18] +{variant:3,4}IncreasedAccuracySwordImplicit8 +{variant:1}LocalAddedPhysicalDamageOneHandSword3[15,24][25,35] +{variant:2,3}LocalAddedPhysicalDamageOneHandSword3[19,28][31,40] +{variant:4}LocalAddedPhysicalDamageOneHandSword3 +{variant:1}LocalAddedFireDamageUniqueOneHandSword3[15,24][25,35] +{variant:2,3}LocalAddedFireDamageUniqueOneHandSword3[19,28][31,40] +{variant:4}LocalAddedFireDamageUniqueOneHandSword3 +{variant:1}LocalAddedColdDamageUniqueOneHandSword3[15,24][25,35] +{variant:2,3}LocalAddedColdDamageUniqueOneHandSword3[19,28][31,40] +{variant:4}LocalAddedColdDamageUniqueOneHandSword3 +{variant:1}LocalAddedLightningDamageUniqueOneHandSword3[1,1][40,60] +{variant:2,3}LocalAddedLightningDamageUniqueOneHandSword3[1,1][50,70] +{variant:4}LocalAddedLightningDamageUniqueOneHandSword3 +{variant:1}LocalChaosDamageUniqueOneHandSword3[15,24][25,35] +{variant:2,3}LocalChaosDamageUniqueOneHandSword3[19,28][31,40] +{variant:4}LocalChaosDamageUniqueOneHandSword3 +LocalIncreasedAttackSpeedOneHandSword3 +]],[[ +Redbeak +Rusted Sword +Variant: Pre 2.6.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword1[18,18] +{variant:2}AccuracyPercentImplicitSword1 +IncreasedPhysicalDamagePercentOnLowLifeUniqueOneHandSword1 +LocalIncreasedPhysicalDamagePercentUniqueOneHandSword1 +LocalAddedPhysicalDamageUniqueDescentOneHandSword1 +LocalIncreasedAttackSpeedUniqueOneHandSword1 +IncreasedLifeUniqueOneHandSword1 +LifeGainPerTargetUniqueOneHandSword1 +]],[[ +Dreadbeak +Rusted Sword +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Current +LevelReq: 61 +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword1[18,18] +{variant:2,3}AccuracyPercentImplicitSword1 +IncreasedPhysicalDamagePercentOnLowLifeUniqueOneHandSword1 +LocalIncreasedPhysicalDamagePercentUniqueOneHandSword1 +{variant:1,2}LocalAddedPhysicalDamageUnique__35[90,98][133,140] +{variant:3}LocalAddedPhysicalDamageUnique__35 +LocalIncreasedAttackSpeedUniqueOneHandSword1 +IncreasedLifeUniqueOneHandSword1 +LifeGainPerTargetUniqueOneHandSword7 +OnslaughtOnLowLifeUnique__1 +]],[[ +Rigwald's Command +Midnight Blade +League: Talisman Standard, Talisman Hardcore +Source: Drops from unique{Rigwald, the Wolven King} (Level 75+) +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Pre 3.25.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword1[18,18] +{variant:2,3,4}AccuracyPercentImplicitSword1 +BlockWhileDualWieldingUnique__1 +LocalAddedPhysicalDamageUnique__6 +{variant:1,2}AxePhysicalDamageUnique__1 +IncreasedAccuracyUnique__2 +{variant:1,2}FrenzyChargeOnKillChanceUnique__1 +{variant:3}BleedDotMultiplierPerRagePerEquippedAxeUnique__1[1,1] +{variant:4}BleedDotMultiplierPerRagePerEquippedAxeUnique__1 +]],[[ +The Rippling Thoughts +Legion Sword +League: Harbinger +Source: No longer obtainable +Implicits: 1 +AccuracyPercentImplicitSword1 +HarbingerSkillOnEquipUnique__1 +LocalGrantsStormCascadeOnAttackUnique__1 +SpellDamageUnique__5 +LocalIncreasedPhysicalDamagePercentUnique__27 +LocalAddedLightningDamageUnique__5 +SpellAddedLightningDamageUnique__4 +AreaOfEffectUnique__2_ +]],[[ +The Surging Thoughts +Legion Sword +Implicits: 1 +AccuracyPercentImplicitSword1 +HarbingerSkillOnEquipUnique2_1 +LocalGrantsStormCascadeOnAttackUnique__1 +SpellDamageUnique__5 +LocalIncreasedPhysicalDamagePercentUnique__5 +LocalAddedLightningDamageUnique__5 +SpellAddedLightningDamageUnique__4 +AreaOfEffectUnique__1 +]],[[ +The Saviour +Legion Sword +Variant: Pre 3.20.0 +Variant: Current +Source: Drops from unique{Sirus, Awakener of Worlds} (Uber) +Implicits: 1 +AccuracyPercentImplicitSword1 +SummonDoubleOnCritUnique__1 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__37__[40,50] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__37__ +LocalAddedPhyiscalDamageUnique__40__ +IncreasedAttackSpeedUnique__5 +LocalCriticalStrikeChanceUnique__16 +]],[[ +Scaeva +Gladius +Variant: Pre 2.6.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword1[18,18] +{variant:2}AccuracyPercentImplicitSword1 +LocalAddedPhysicalDamageUnique__7_ +LocalCriticalStrikeChanceUnique14 +LifeLeechFromPhysicalAttackDamagePerRedSocket_Unique_1 +CriticalStrikeMultiplierPerGreenSocketUnique_1 +ManaLeechPermyriadFromPhysicalDamagePerBlueSocketUnique +GlobalDefensesPerWhiteSocketUnique__1 +CriticalStrikeChanceInMainHandUnique_1 +AdditionalChanceToBlockInOffHandUnique_1 +]],[[ +The Redblade +Gladius +League: Crucible +Implicits: 1 +AccuracyPercentImplicitSword1 +LocalIncreasedPhysicalDamagePercentUnique__46 +LocalAddedPhyiscalDamageUnique__42 +LocalIncreasedAccuracyUnique__4 +LifeGainedFromEnemyDeathUnique__4 +ItemCanHaveTwoHandedSwordWeaponTreeUnique1 +]],[[ +Severed in Sleep +Cutlass +Source: Drops in Chayula Breach or from unique{Chayula, Who Dreamt} +Upgrade: Upgrades to unique{United in Dream} using currency{Blessing of Chayula} +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword1[18,18] +{variant:2,3,4}AccuracyPercentImplicitSword1 +{variant:4}GrantsEnvyUnique__1 +{variant:1,2,3}AllAttributesUnique__24 +{variant:1,2,3}MinionDamageUnique__2 +{variant:1,2,3}MinionChaosResistanceUnique___1[17,17] +{variant:4}MinionChaosResistanceUnique___1 +{variant:1,2}MinionsPoisonEnemiesOnHitUnique__1[100,100] +{variant:3}MinionsPoisonEnemiesOnHitUnique__1 +{variant:4}MinionWitherOnHitUnique__1 +{variant:4}MinionCriticalStrikeMultiplierAgainstWitheredUnique__1 +{variant:1,2,3}MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_[20,20] +]],[[ +United in Dream +Cutlass +Source: Upgraded from unique{Severed in Sleep} using currency{Blessing of Chayula} +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.16.0 +Variant: Pre 3.21.0 +Variant: Current +League: Breach +LevelReq: 69 +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword1[18,18] +{variant:2,3,4,5}AccuracyPercentImplicitSword1 +{variant:1,2,3}GrantsEnvyUnique__1[15,15] +{variant:4,5}GrantsEnvyUnique__1 +{variant:1,2,3}MinionDamageUnique__7[30,40] +{variant:4}MinionDamageUnique__7 +MinionChaosResistanceUnique__2__ +{variant:1,2}MinionsPoisonEnemiesOnHitUnique__1[100,100] +{variant:3,4,5}MinionsPoisonEnemiesOnHitUnique__1 +{variant:1,2,3,4}MinionLeechOnPoisonedEnemiesUnique__1 +{variant:5}MinionsRecoverLifeOnKillingPoisonedEnemyUnique__1_ +]],[[ +Story of the Vaal +{variant:1}Variscite Blade +{variant:2}Gemstone Sword +Variant: Pre 3.14.0 +Variant: Current +League: Incursion +Source: Opening normal{Fireproof Chest} in normal{Crucible of Flame} +Upgrade: Upgrades to unique{Fate of the Vaal} via currency{Vial of Fate} +Implicits: 2 +{variant:1}IncreasedAccuracySwordImplicit7[240,240] +{variant:2}IncreasedAccuracySwordImplicit7 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__35[110,120] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__35 +LocalIncreasedAttackSpeedUniqueOneHandSword13_ +{variant:1}LifeGainedFromEnemyDeathUnique__2 +LocalDamageConversionToRandomElementUnique__1 +LocalAlwaysInflictElementalAilmentsUnique__1 +{variant:2}LocalFreezeAsThoughDealingMoreDamageUnique__1 +{variant:2}LocalShockAsThoughDealingMoreDamageUnique__1 +{variant:2}LocalWeaponMoreIgniteDamageUnique__1 +]],[[ +Fate of the Vaal +Gemstone Sword +League: Incursion +Source: Upgraded from unique{Story of the Vaal} via currency{Vial of Fate} +Variant: Pre 3.10.0 +Variant: Current +Implicits: 1 +IncreasedAccuracy2hSwordImplicit7 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__34___[160,180] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__34___ +LocalIncreasedAttackSpeedUniqueOneHandSword13_ +LocalDamageConversionToRandomElementImplicitE1 +LocalAlwaysInflictElementalAilmentsUnique__1 +LocalElementalDamageAgainstIgnitedEnemiesUnique__1_ +LocalElementalDamageAgainstFrozenEnemiesUnique__1 +LocalElementalDamageAgainstShockedEnemiesUnique__1_ +]],[[ +The Tempestuous Steel +War Sword +Variant: Pre 2.6.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword1[18,18] +{variant:2}AccuracyPercentImplicitSword1 +LocalAddedPhysicalDamageUnique__10 +LocalIncreasedAttackSpeedUnique__11 +AlwaysHits +LocalElementalPenetrationUnique__1 +AttackPhysicalDamageAddedAsFireUnique__1 +AttackPhysicalDamageAddedAsLightningUnique__1 +]],[[ +Replica Tempestuous Steel +War Sword +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +AccuracyPercentImplicitSword1 +LocalAddedPhysicalDamageUnique__10 +LocalIncreasedAttackSpeedUnique__11 +AccuracyPercentUnique__1 +OneHandedMeleeCriticalStrikeMultiplierUnique__1 +LocalElementalPenetrationUnique__1 +AttackPhysicalDamageAddedAsFireUnique__1 +AttackPhysicalDamageAddedAsLightningUnique__1 +]],[[ +Varunastra +Vaal Blade +League: Perandus +Variant: Pre 2.6.0 +Variant: Pre 3.20.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2,3}IncreasedAccuracySwordImplicit8 +{variant:1,2}LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword1[40,60] +{variant:3}LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword1[80,100] +LocalAddedPhysicalDamageUnique__12 +ManaGainPerTargetUnique__1 +WeaponCountsAsAllOneHandedWeapons__1 +]], +-- Weapon: Thrusting Sword +[[ +Aurumvorax +Basket Rapier +Variant: Pre 2.2.0 +Variant: Pre 2.6.0 +Variant: Current +Implicits: 3 +{variant:1}CriticalMultiplierImplicitSword1[20,20] +{variant:2}CriticalMultiplierImplicitSword1[30,30] +{variant:3}CriticalMultiplierImplicitSword1 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword1 +ItemFoundRarityIncreaseUniqueRapier2 +AllResistancesUniqueRapier2 +LifeGainPerTargetUniqueRapier2 +]],[[ +Chitus' Needle +Elegant Foil +Source: No longer obtainable +Variant: Pre 2.2.0 +Variant: Pre 2.6.0 +Variant: Current +Implicits: 3 +{variant:1}CriticalMultiplierImplicitSword1[20,20] +{variant:2}CriticalMultiplierImplicitSword1[30,30] +{variant:3}CriticalMultiplierImplicitSword1 +StrengthUnique__1 +LocalIncreasedPhysicalDamagePercentUnique__27 +IncreasedManaUnique__2 +MovementVelocityUnique__58 +ElementalDamageUnique__1 +LocalIncreasedMeleeWeaponRangeUnique__1 +]],[[ +Cospri's Malice +Jewelled Foil +Variant: Pre 2.6.0 +Variant: Current +Implicits: 2 +{variant:1}CriticalMultiplierImplicitSword1[30,30] +{variant:2}CriticalMultiplierImplicitSword1 +CastSocketedColdSkillsOnCriticalStrikeUnique__1 +AddedIntelligenceRequirementsUnique__1 +LocalReducedPhysicalDamagePercentUniqueOneHandSword7 +LocalAddedColdDamageUnique__5 +SpellAddedColdDamageUnique__4 +LocalIncreasedAttackSpeedUnique__18 +GlobalCriticalStrikeChanceAgainstChilledUnique__1 +]],[[ +Daresso's Passion +Estoc +Variant: Pre 2.6.0 +Variant: Current +Implicits: 2 +{variant:1}CriticalMultiplierImplicitSword1[30,30] +{variant:2}CriticalMultiplierImplicitSword1 +LocalAddedPhysicalDamageUnique__11 +LocalAddedColdDamageUnique__3 +FrenzyChargeDurationUnique__1 +FrenzyChargeOnKillChanceUnique__2 +IncreasedDamageAtNoFrenzyChargesUnique__1 +]],[[ +Ewar's Mirage +Antique Rapier +Variant: Pre 2.6.0 +Variant: Current +Implicits: 2 +{variant:1}CriticalMultiplierImplicitSword1[30,30] +{variant:2}CriticalMultiplierImplicitSword1 +LocalAddedLightningDamageUnique__3 +LocalIncreasedAttackSpeedUnique__15 +AttacksChainInMainHandUnique__1 +AttacksExtraProjectileInOffHandUnique__1 +WeaponElementalDamageUnique__3 +]],[[ +Fidelitas' Spike +Jagged Foil +Variant: Pre 2.2.0 +Variant: Pre 2.6.0 +Variant: Current +Implicits: 3 +{variant:1}CriticalMultiplierImplicitSword1[20,20] +{variant:2}CriticalMultiplierImplicitSword1[30,30] +{variant:3}CriticalMultiplierImplicitSword1 +LocalReducedPhysicalDamagePercentUniqueOneHandSword7 +LocalAddedLightningDamageUniqueOneHandSword7 +LocalIncreasedAttackSpeedUniqueOneHandSword7 +LifeGainPerTargetUniqueOneHandSword1 +{variant:1,2}ChanceToShockUniqueDescentTwoHandSword1[5,5] +{variant:3}ChanceToShockUniqueOneHandSword7 +{variant:3}HeraldOfThunderBuffEffectUnique__1 +]],[[ +Nametaker +Graceful Sword +League: Affliction +Requires Level 50, 78 Str, 94 Dex +Implicits: 1 +IncreasedAccuracySwordImplicit6 +LocalCriticalStrikeChanceUnique__20 +LifeLeechLocalPermyriadUnique__1 +ManaLeechPermyriadLocalUnique__1 +CriticalStrikeMultiplierMonsterPowerUnique__1 +LeechInstantMonsterPowerUnique__1 +]],[[ +The Goddess Bound +Whalebone Rapier +Variant: Pre 2.2.0 +Variant: Pre 2.6.0 +Variant: Current +Implicits: 3 +{variant:1}CriticalMultiplierImplicitSword1[20,20] +{variant:2}CriticalMultiplierImplicitSword1[30,30] +{variant:3}CriticalMultiplierImplicitSword1 +LocalIncreaseSocketedMeleeGemLevelUniqueRapier1 +DisableOffhandSlot +LocalIncreasedPhysicalDamagePercentUniqueOneHandSword4 +LocalAddedFireDamageUniqueRapier1 +LocalIncreasedAttackSpeedUniqueTwoHandSword1 +CriticalStrikeChanceUnique__1 +IncreasedEvasionRatingUniqueRapier1 +ItemFoundRarityDecreaseUniqueRapier1 +MovementVelocityOnLowLifeUniqueBootsDex3 +]], +-- Weapon: Two Handed Sword +[[ +The Dancing Dervish +Reaver Sword +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Pre 3.17.0 +Variant: Current +Implicits: 3 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2}AccuracyPercentImplicit2HSword1[40,40] +{variant:3,4}AccuracyPercentImplicit2HSword1 +{variant:1,2}LocalIncreasedPhysicalDamagePercentUnique__55[160,190] +{variant:3,4}LocalIncreasedPhysicalDamagePercentUnique__55 +LocalIncreasedAttackSpeedUniqueOneHandSword7 +MovementVelocityUnique__4 +DisplayManifestWeaponUnique__1 +SimulatedRampageUnique__1 +]],[[ +The Dancing Duo +Reaver Sword +Source: No longer obtainable +Variant: Pre 3.11.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicit2HSword1[40,40] +{variant:2}AccuracyPercentImplicit2HSword1 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__7[160,190] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__7 +LocalIncreasedAttackSpeedUniqueOneHandSword7 +MovementVelocityUnique__3 +DisplayManifestWeaponUnique__1 +SimulatedRampageUnique__1 +]],[[ +Doomsower +Lion Sword +Variant: Pre 2.6.0 +Variant: Pre 3.0.0 +Variant: Pre 3.8.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 3 +{variant:5}StrengthDexterityImplicitSword_1 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2,3,4}IncreasedAccuracy2hSwordImplicit9 +SocketedMeleeGemsHaveIncreasedAoEUniqueTwoHandSword8 +{variant:1,2,3}SocketedRedGemsHaveAddedFireDamageUniqueTwoHandSword8_ +{variant:1,2,3,4}LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword8[50,70] +{variant:5}LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword8 +{variant:1,2}LocalAddedPhysicalDamageUniqueTwoHandSword8[50,75][85,110] +{variant:3,4,5}LocalAddedPhysicalDamageUniqueTwoHandSword8 +LocalIncreasedAttackSpeedUniqueTwoHandSword8 +{variant:4,5}AttackSkillsHavePhysToExtraFireDamagePerSocketedRedGemUniqueTwoHandSword8 +{variant:4,5}VaalPactIfAllSocketedGemsAreRedUniqueTwoHandSword8 +]],[[ +Edge of Madness +Etched Greatsword +League: Beyond +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Pre 3.11.1 +Variant: Current +Implicits: 3 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2}AccuracyPercentImplicit2HSword1[40,40] +{variant:3,4}AccuracyPercentImplicit2HSword1 +LocalIncreaseSocketedActiveSkillGemLevelUniqueTwoHandSword7_ +{variant:2,3,4}LocalIncreasedPhysicalDamagePercentUniqueOneHandSword13[40,60] +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueOneHandSword13 +LocalChaosDamageUniqueTwoHandSword7 +{variant:1}LifeGainedOnEnemyDeathPerLevelUniqueTwoHandSword7 +{variant:1}IncreasedChaosDamagePerLevelUniqueTwoHandSword7 +{variant:1,2,4}IncreasedElementalDamagePerLevelUniqueTwoHandSword7 +{variant:2,3,4}PhysicalDamageToAttacksPerLevelUnique__1_ +]],[[ +Hiltless +Reaver Sword +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 3 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2}AccuracyPercentImplicit2HSword1[40,40] +{variant:3}AccuracyPercentImplicit2HSword1 +SocketedGemsSupportedByLifetapUnique__1 +LocalAddedPhysicalDamageUnique__15 +LocalCriticalStrikeChanceUnique__4 +ReflectPhysicalDamageToSelfOnHitUnique__1 +LocalIncreasedMeleeWeaponRangeUnique___2 +]],[[ +Kondo's Pride +Ezomyte Blade +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 3 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2}IncreasedAccuracy2hSwordImplicit8 +{variant:3}CriticalMultiplierImplicitSword1 +{variant:1,2}LocalIncreasedPhysicalDamagePercentUnique__18[270,320] +{variant:3}LocalIncreasedPhysicalDamagePercentUnique__18 +LifeLeechPermyriadUnique__4 +MeleeDamageAgainstBleedingEnemiesUnique__1 +CannotLeechFromCriticalStrikesUnique___1 +ChanceToBlindOnCriticalStrikesUnique__1 +BleedOnMeleeCriticalStrikeUnique__1 +]],[[ +Oro's Sacrifice +Infernal Sword +Variant: Pre 1.3.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 2 +{variant:1,2}AccuracyPercentImplicitSword2 +{variant:3}WeaponElementalDamageImplicitSword1 +LocalReducedPhysicalDamagePercentUniqueTwoHandSword6 +LocalAddedFireDamageUniqueTwoHandSword6 +LocalIncreasedAttackSpeedUniqueTwoHandSword6 +ChanceToIgniteUniqueTwoHandSword6 +{variant:1}IncreasedPhysicalDamageTakenUniqueTwoHandSword6[20,20] +{variant:2,3}IncreasedPhysicalDamageTakenUniqueTwoHandSword6 +{variant:1}IncreasedFireDamageTakenUniqueTwoHandSword6[20,20] +{variant:2,3}IncreasedFireDamageTakenUniqueTwoHandSword6 +CullingAgainstBurningEnemiesUniqueTwoHandSword6 +FrenzyChargeOnIgniteUniqueTwoHandSword6 +]],[[ +Replica Oro's Sacrifice +Infernal Sword +Variant: Pre 3.23.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 1 +WeaponElementalDamageImplicitSword1 +LocalReducedPhysicalDamagePercentUniqueOneHandSword7 +LocalAddedColdDamageUnique__9_ +LocalIncreasedAttackSpeedUniqueOneHandSword13_ +{variant:1}LifeLeechPermyriadOnFrozenEnemiesUnique__1 +ChanceToFreezeUnique__5 +IncreasedPhysicalDamageTakenUniqueTwoHandSword6 +ColdDamageTakenUnique__2 +{variant:2}CullingAgainstFrozenEnemiesUnique__1 +EnduranceChargeIfAttackFreezesUnique__1 +]],[[ +Echoforge +Infernal Sword +Source: Drops from unique{The Maven} +Implicits: 1 +IncreasedChaosDamageImplicitUnique__1 +LocalAddedChaosDamageUnique__3 +LocalIncreasedAttackSpeedUnique__38 +IncreasedLifeUnique__117 +ChaosDamageCanShockUnique__1 +IncreasedAttackAreaOfEffectUnique__3 +DealNoElementalPhysicalDamageUnique__1 +]],[[ +Queen's Decree +Ornate Sword +Variant: Pre 2.6.0 +Variant: Pre 3.8.0 +Variant: Pre 3.26.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2,3,4}IncreasedAccuracy2hSwordImplicit3 +IncreasedStrengthRequirementsUniqueTwoHandSword4 +{variant:1,2}MinionLifeUniqueTwoHandSword4[10,15] +{variant:3,4}MinionLifeUniqueTwoHandSword4 +SkeletonDurationUniqueTwoHandSword4 +{variant:1,2}MinionDamageUniqueTwoHandSword4[10,15] +{variant:3,4}MinionDamageUniqueTwoHandSword4 +{variant:1,2,3}MaximumMinionCountUniqueTwoHandSword4 +{variant:4}MaximumMinionCountUniqueTwoHandSword4Updated +]],[[ +Queen's Escape +Ornate Sword +Source: No longer obtainable +Variant: Pre 2.6.0 +Variant: Pre 3.8.0 +Variant: Current +LevelReq: 38 +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword1[18,18] +{variant:2,3}IncreasedAccuracy2hSwordImplicit3 +IncreasedStrengthRequirementsUniqueTwoHandSword4 +IncreasedStrengthRequirementsUniqueTwoHandSword4 +{variant:1,2}MinionLifeUniqueTwoHandSword4[10,15] +{variant:3}MinionLifeUniqueTwoHandSword4 +MinionRunSpeedUnique__2 +SkeletonDurationUniqueTwoHandSword4 +{variant:1,2}MinionDamageUniqueTwoHandSword4[10,15] +{variant:3}MinionDamageUniqueTwoHandSword4 +MaximumMinionCountUniqueTwoHandSword4 +]],[[ +Rakiata's Dance +Engraved Greatsword +Requires Level 48, 91 Str, 76 Dex +Implicits: 1 +AccuracyPercentImplicit2HSword1 +LocalAddedColdDamageUnique__10 +LocalAddedLightningDamageUnique__7 +LocalIncreasedAttackSpeedUnique__39 +LocalTreatElementalResistanceAsInvertedUnique__1 +]],[[ +Rigwald's Charge +Highland Blade +Variant: Pre 1.0.0 +Variant: Pre 2.6.0 +Variant: Pre 3.7.0 +Variant: Pre 3.19.0 +Variant: Current +Implicits: 2 +{variant:1,2}AccuracyPercentImplicit2HSword2_[18,18] +{variant:3,4,5}IncreasedAccuracy2hSwordImplicit5 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword1 +{variant:1}LocalIncreasedAttackSpeedUniqueTwoHandSword3[10,10] +{variant:2,3,4,5}LocalIncreasedAttackSpeedUniqueTwoHandSword3 +MovementVelocityUniqueTwoHandSword3 +{variant:1,2,3}IncreasedAccuracyUniqueTwoHandSword1[150,200] +{variant:4,5}IncreasedAccuracyUniqueTwoHandSword1 +{variant:5}MovementSpeedIfKilledRecentlyUnique___2 +]],[[ +Shiversting +Bastard Sword +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Current +LevelReq: 14 +Implicits: 3 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2}AccuracyPercentImplicit2HSword1[40,40] +{variant:3}AccuracyPercentImplicit2HSword1 +LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword2 +LocalAddedColdDamageUniqueTwoHandSword2 +ManaLeechPermyriadUniqueTwoHandSword2 +CannotBeFrozen +]],[[ +Starforge +Infernal Sword +Shaper Item +Source: Drops from unique{The Shaper} (Uber) +Variant: Pre 3.11.0 +Variant: Pre 3.20.0 +Variant: Current +Implicits: 2 +{variant:2,3}IncreasedPhysicalDamagePercentUniqueSwordImplicit1 +{variant:1}AccuracyPercentImplicitSword2 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__19[400,500] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__19[200,300] +{variant:3}LocalIncreasedPhysicalDamagePercentUnique__19 +LocalIncreasedAttackSpeedUnique__27 +IncreasedLifeUnique__51 +PhysicalDamageCanShockUnique__1 +IncreasedAttackAreaOfEffectUnique__2_ +DealNoElementalDamageUnique__2 +]],[[ +Terminus Est +Tiger Sword +Variant: Pre 2.6.0 +Variant: Pre 3.11.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicit2HSword1[18,18] +{variant:2,3}IncreasedAccuracy2hSwordImplicit6 +{variant:1}LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword3[120,180] +{variant:2}LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword3[220,260] +{variant:3}LocalIncreasedPhysicalDamagePercentUniqueTwoHandSword3 +LocalIncreasedAttackSpeedUniqueTwoHandSword1 +{variant:2,3}LocalCriticalStrikeChanceUnique__8 +ManaGainedFromEnemyDeathUniqueTwoHandSword3 +MovementVelocityUniqueTwoHandSword1 +GainFrenzyChargeOnCriticalHit +]],[[ +Voidforge +Infernal Sword +Shaper Item +Elder Item +Source: Drops from unique{The Elder} (Uber Uber) +Variant: Pre 3.11.0 +Variant: Pre 3.20.0 +Variant: Current +Implicits: 2 +{variant:1}AccuracyPercentImplicitSword2 +{variant:2,3}WeaponElementalDamageImplicitSword1 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__53[50,100] +{variant:2}LocalIncreasedPhysicalDamagePercentUnique__53[30,60] +LocalIncreasedAttackSpeedUnique__19 +IncreasedLifeUnique__24 +ElementalDamageCanShockUnique__1__ +{variant:1,2}WeaponPhysicalDamageAddedAsRandomElementUnique__1__[300,300] +{variant:3}WeaponPhysicalDamageAddedAsRandomElementUnique__1__ +IncreasedAttackAreaOfEffectUnique__1_ +DealNoNonElementalDamageUnique__1 +]], +[[ +The Golden Charlatan +Lion Sword +Source: Drops from unique{Uber Incarnation of Dread} in normal{Moment of Reverence} +Requires Level 65, 104 Str, 122 Dex +Implicits: 1 +StrengthDexterityImplicitSword_1 +IntelligenceRequirementsUnique_1 +LocalIncreasedPhysicalDamagePercentUnique__53 +IncreasedAttackSpeedUniqueGlovesDemigods1 +LocalCriticalStrikeChanceUnique__24 +LocalNoCriticalStrikeMultiplierUnique_1 +GainShrineOnRareOrUniqueKillUnique_1 +GainManaPer2IntelligenceUnique_1 +]], +} diff --git a/src/Export/Uniques/tincture.lua b/src/Export/Uniques/tincture.lua new file mode 100644 index 0000000000..a9f595c0a9 --- /dev/null +++ b/src/Export/Uniques/tincture.lua @@ -0,0 +1,53 @@ +-- Item data (c) Grinding Gear Games + +return { +[[ +The Battle Within +Oakbranch Tincture +League: Settlers of Kalguur +Requires Level 18 +Implicits: 1 +TinctureRageOnHitImplicit1 +TinctureToxicityOnHitUnique__1 +TinctureRarityPerToxicityUnique__1 +TinctureCullingStrikeUnique__1 +]],[[ +Grasping Nightshade +Sporebloom Tincture +League: Settlers of Kalguur +Requires Level 52 +Implicits: 1 +TinctureChanceToBlindImplicit1 +TinctureApplyWitherStacksOnHitUnique__1 +TinctureGraspingVineOnWeaponHitUnique__1 +]],[[ +Mightblood Ire +Ironwood Tincture +League: Settlers of Kalguur +Requires Level 18 +Implicits: 1 +TinctureStunThresholdImplicit1 +TinctureMeleeSplashOnWeaponHitUnique__1 +TinctureToxicityRateUnique__1 +]],[[ +Sap of the Seasons +Prismatic Tincture +League: Settlers of Kalguur +Requires Level 18 +Implicits: 1 +TinctureElementalDamageImplicit1 +TincturePenetrationPerToxicityUnique__1 +TinctureCooldownRecoveryUnique__1 +(35--35)% increased Mana Burn rate +]],[[ +Wildfire Phloem +Ashbark Tincture +League: Settlers of Kalguur +Requires Level 32 +Implicits: 1 +TinctureChanceToIgniteImplicit1 +TinctureFireDamageTakenPerToxicityUnique__1 +TinctureRefreshIgniteDurationUnique__1 +TinctureCoverInAshOnFullLifeUnique__1 +]] +} diff --git a/src/Export/Uniques/wand.lua b/src/Export/Uniques/wand.lua new file mode 100644 index 0000000000..3b36f725cf --- /dev/null +++ b/src/Export/Uniques/wand.lua @@ -0,0 +1,474 @@ +-- Item data (c) Grinding Gear Games + +return { +-- Weapon: Wand +[[ +Abberath's Horn +Goat's Horn +Variant: Pre 2.3.0 +Variant: Pre 3.21.0 +Variant: Current +Implicits: 3 +{variant:1}SpellDamageOnWeaponImplicitWand2[9,12] +{variant:2}SpellDamageOnWeaponImplicitWand2 +{variant:3}AddedFireDamageSpellsAndAttacksImplicit1 +FireDamagePercentUniqueWand10 +SpellAddedFireDamageUniqueWand10 +CriticalStrikeChanceUniqueWand10 +LifeGainedOnKillingIgnitedEnemiesUniqueWand10_ +BurnDurationUniqueWand10 +]],[[ +Apep's Rage +{variant:1,2,3,4,5}Opal Wand +{variant:6}Omen Wand +Variant: Pre 2.3.0 +Variant: Pre 3.7.0 +Variant: Pre 3.11.0 +Variant: Pre 3.19.0 +Variant: Pre 3.21.0 +Variant: Current +Implicits: 3 +{variant:1}SpellDamageOnWeaponImplicitWand12[17,20] +{variant:2,3,4,5}SpellDamageOnWeaponImplicitWand12[38,42] +{variant:6}SpellDamageOnWeaponImplicitWand12 +{variant:1,2}SpellAddedChaosDamageUniqueWand7[50,65][90,105] +{variant:3,4,5,6}SpellAddedChaosDamageUniqueWand7 +IncreasedCastSpeedUniqueWand7 +ChaosResistUniqueWand7 +{variant:1,2,3}ManaCostIncreasedUniqueWand7 +{variant:3,4}FasterPoisonDamageUnique__1[20,20] +{variant:5,6}FasterPoisonDamageUnique__1 +{variant:4,5,6}IncreaseGlobalFlatManaCostUnique__3_ +]],[[ +Ashcaller +{variant:1,2,3}Quartz Wand +{variant:4}Carved Wand +{variant:5}Goat's Horn +Variant: Pre 3.8.0 +Variant: Pre 3.19.0 +Variant: Pre 3.21.0 +Variant: Pre 3.27.0 +Variant: Current +Implicits: 3 +{variant:1,2,3}SpellDamageOnWeaponImplicitWand3[18,22] +{variant:4}SpellDamageOnWeaponImplicitWand3 +{variant:5}AddedFireDamageSpellsAndAttacksImplicit1 +{variant:1,2}SummonRagingSpiritOnKillUnique__1[10,10] +{variant:3,4,5}SummonRagingSpiritOnKillUnique__1 +{variant:2}FireDamageOverTimeMultiplierUnique__2_ +{variant:1}LocalAddedFireDamageUnique__2[10,14][18,22] +{variant:3,4,5}LocalAddedFireDamageUnique__2 +{variant:1,2}SpellAddedFireDamageUniqueWand10[4,6][7,9] +{variant:3,4,5}SpellAddedFireDamageUniqueWand10[20,24][36,46] +{variant:1}BurnDamageUnique__1[40,50] +{variant:2}BurnDamageUnique__1 +{variant:1,2}ChanceToIgniteUnique__1 +{variant:3,4,5}CoverInAshOnHitUnique__1 +]],[[ +Eclipse Solaris +{variant:1,2,3,4}Crystal Wand +{variant:5}Engraved Wand +{variant:6}Faun's Horn +Variant: Pre 2.2.0 +Variant: Pre 2.3.0 +Variant: Pre 3.10.0 +Variant: Pre 3.21.0 +Variant: Pre 3.27.0 +Variant: Current +Implicits: 4 +{variant:1,2}SpellDamageOnWeaponImplicitWand9[14,18] +{variant:3,4}SpellDamageOnWeaponImplicitWand9[29,33] +{variant:5}SpellDamageOnWeaponImplicitWand9 +{variant:6}AddedFireDamageSpellsAndAttacksImplicit2 +{variant:1,2,3}LocalAddedPhysicalDamageUnique__4 +{variant:4,5}LocalAddedFireDamageUnique__6 +{variant:4,5}LocalIncreasedAttackSpeedUnique__32[6,10] +{variant:6}LocalIncreasedAttackSpeedUnique__32 +{variant:1}CriticalMultiplierUnique__1[18,30] +{variant:2,3,4,5,6}CriticalMultiplierUnique__1 +{variant:1,2,3,4,5}LightRadiusUnique__4 +{variant:6}LightRadiusUnique__1 +DisplayBlindAuraUnique__1 +CriticalChanceAgainstBlindedEnemiesUnique__1 +AddedFireDamageFromLightRadiusUnique__1 +]],[[ +Corona Solaris +Crystal Wand +Source: No longer obtainable +Variant: Pre 3.10.0 +Variant: Current +LevelReq: 63 +Implicits: 1 +SpellDamageOnWeaponImplicitWand13 +BlindingAuraSkillUnique__1 +{variant:1}LocalAddedPhysicalDamageUnique__4 +{variant:2}LocalAddedFireDamageUnique__6 +{variant:2}LocalIncreasedAttackSpeedUnique__42 +CriticalMultiplierUnique__1 +LightRadiusUnique__3 +CriticalChanceAgainstBlindedEnemiesUnique__1 +LightRadiusAppliesToAccuracyUnique__1_ +AddedFireDamageAgainstBlindedEnemiesUnique__1_ +]],[[ +Grace of the Goddess +Prophecy Wand +Source: Drops from unique{The Maven} (Uber) +Variant: Pre 3.26.0 +Variant: Current +Implicits: 1 +SpellDamageOnWeaponImplicitWand17 +LocalIncreasedPhysicalDamagePercentUnique__47 +{variant:1}PhysicalAddedAsFireUnique__4[10,30] +{variant:2}PhysicalAddedAsFireUnique__4 +{variant:1}PhysicalAddedAsColdUnique__3[10,30] +{variant:2}PhysicalAddedAsColdUnique__3 +{variant:1}PhysicalAddedAsLightningUnique__1[10,30] +{variant:2}PhysicalAddedAsLightningUnique__1 +AdditionalSacredWispUnique__1 +]],[[ +Lifesprig +Driftwood Wand +Implicits: 1 +SpellDamageOnWeaponImplicitWand1 +LocalIncreaseSocketedSpellGemLevelUniqueWand4 +SpellDamageUniqueWand4 +IncreasedCastSpeedUniqueWand4 +IncreasedLifeUniqueWand4 +IncreasedManaUniqueWand4 +Regenerate (6-8) Life over 1 second for each Spell you Cast +]],[[ +Midnight Bargain +{variant:1,2,3}Engraved Wand +{variant:4}Calling Wand +Variant: Pre 2.3.0 +Variant: Pre 3.8.0 +Variant: Pre 3.27.0 +Variant: Current +Implicits: 3 +{variant:1}SpellDamageOnWeaponImplicitWand9[12,16] +{variant:2,3}SpellDamageOnWeaponImplicitWand9 +{variant:4}MinionDamageUniqueWand2[12,16] +LifeReservationUniqueWand2 +IntelligenceUniqueWand2 +{variant:1,2}MinionRunSpeedUniqueWand2[10,20] +{variant:3,4}MinionRunSpeedUniqueWand2 +{variant:1,2}MinionDamageUniqueWand2[10,30] +{variant:3,4}MinionDamageUniqueWand2 +MaximumMinionCountUniqueWand2 +]],[[ +Replica Midnight Bargain +{variant:1}Engraved Wand +{variant:2}Calling Wand +Variant: Pre 3.27.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 2 +{variant:1}SpellDamageOnWeaponImplicitWand9 +{variant:2}MinionDamageUniqueWand2[12,16] +LifeReservationUniqueWand2 +IntelligenceUniqueWand2 +MinionRunSpeedUnique__5 +MinionDamageUniqueWand2 +ExtraRagingSpiritsUnique__1 +ExtraMaximumPhantasmsUnique__1 +]],[[ +Moonsorrow +Imbued Wand +{variant:1,2,3,4}Imbued Wand +{variant:5}Kinetic Wand +Variant: Pre 2.0.0 +Variant: Pre 2.3.0 +Variant: Pre 3.0.0 +Variant: Pre 3.27.0 +Variant: Current +Implicits: 3 +{variant:1,2}SpellDamageUniqueWand1[15,19] +{variant:3,4}SpellDamageUniqueWand1[33,37] +{variant:5}KineticWandImplicit +{variant:1,2,3}ItemActsAsSupportBlindUniqueWand1[5,5] +{variant:4,5}ItemActsAsSupportBlindUniqueWand1 +IntelligenceUniqueWand1 +SpellDamageUniqueWand1 +{variant:1}LocalIncreasedPhysicalDamagePercentUnique__26[125,125] +{variant:2,3}LocalIncreasedPhysicalDamagePercentUnique__26[175,175] +{variant:4,5}LocalIncreasedPhysicalDamagePercentUniqueWand1 +LightningDamageUniqueWand1 +IncreasedCastSpeedImplicitMarakethWand1 +BlindingHitUniqueWand1 +]],[[ +Obliteration +{variant:1,2,3,4}Demon's Horn +{variant:5}Imbued Wand +{variant:6}Omen Wand +Variant: Pre 2.3.0 +Variant: Pre 3.10.0 +Variant: Pre 3.19.0 +Variant: Pre 3.21.0 +Variant: Pre 3.27.0 +Variant: Current +Implicits: 4 +{variant:1}SpellDamageOnWeaponImplicitWand12[15,18] +{variant:2,3,4}SpellDamageOnWeaponImplicitWand12[31,35] +{variant:5}SpellDamageOnWeaponImplicitWand12[33,37] +{variant:6}SpellDamageOnWeaponImplicitWand12 +{variant:1,2}LocalAddedPhysicalDamageUnique__2_[24,30][80,92] +{variant:3}LocalAddedPhysicalDamageUnique__2_ +{variant:1,2,3}LocalCriticalStrikeChanceUnique__1 +{variant:1,2,3}ChaosDamageAsPortionOfDamageUnique__1[13,15] +{variant:4,5,6}ChaosDamageAsPortionOfDamageUnique__1 +ExplodeOnKillChaosUnique__1 +]],[[ +Piscator's Vigil +{variant:1,2,3}Tornado Wand +{variant:4}Imbued Wand +{variant:5}Kinetic Wand +Variant: Pre 2.3.0 +Variant: Pre 2.6.0 +Variant: Pre 3.21.0 +Variant: Current +Implicits: 4 +{variant:1}SpellDamageOnWeaponImplicitWand15[16,19] +{variant:2,3}SpellDamageOnWeaponImplicitWand15[35,39] +{variant:4}SpellDamageOnWeaponImplicitWand15 +{variant:5}KineticWandImplicit +LocalReducedPhysicalDamagePercentUniqueWand6 +LocalIncreasedAttackSpeedUniqueWand6 +LocalCriticalStrikeChanceUniqueWand6_ +IncreasedAccuracyUniqueWand6 +ThisWeaponsWeaponElementalDamageUniqueWand6 +{variant:3,4,5}WeaponElementalPenetrationUnique__1 +]],[[ +The Poet's Pen +{variant:1}Carved Wand +{variant:2}Somatic Wand +Implicits: 1 +{variant:1}SpellDamageOnWeaponImplicitWand3 +SocketedGemLevelPer25PlayerLevelsUnique__1 +TriggerSocketedSpellOnAttackUnique__1 +AddsPhysicalDamagePer3PlayerLevelsUnique__1_ +LocalIncreasedAttackSpeedUnique__24 +{variant:2}KineticWandImplicit +]],[[ +Reverberation Rod +Spiraled Wand +Variant: Pre 2.3.0 +Variant: Pre 3.11.0 +Variant: Pre 3.19.0 +Variant: Pre 3.21.0 +Variant: Current +Implicits: 3 +{variant:1}SpellDamageOnWeaponImplicitWand5[10,14] +{variant:2,3,4}SpellDamageOnWeaponImplicitWand5 +{variant:5}AddedLightningDamageSpellsAndAttacksImplicit1 +{variant:1,2}LocalIncreaseSocketedGemLevelUniqueWand8[1,1] +{variant:3,4,5}LocalIncreaseSocketedGemLevelUniqueWand8 +{variant:4,5}SupportedByArcaneSurgeUniqueWand8 +SupportedByEchoUniqueWand8New_ +{variant:4,5}ControlledDestructionSupportUniqueWand8 +IntelligenceUniqueWand8 +]],[[ +Relic of the Pact +{variant:1}Spiraled Wand +{variant:2}Sage Wand +Variant: Pre 3.21.0 +Variant: Current +League: Ultimatum +Source: Drops from unique{The Trialmaster} +Implicits: 2 +{variant:1}SpellDamageOnWeaponImplicitWand6[15,19] +{variant:2}SpellDamageOnWeaponImplicitWand6 +UniqueWandGrantsBloodSacrament__1 +LuckyCriticalsOnLowLifeUnique__1___ +]],[[ +Amplification Rod +Spiraled Wand +Source: No longer obtainable +Variant: Pre 3.11.0 +Variant: Current +LevelReq: 36 +Implicits: 1 +SpellDamageOnWeaponImplicitWand5 +{variant:1}LocalIncreaseSocketedGemLevelUniqueWand8[1,1] +{variant:2}LocalIncreaseSocketedGemLevelUniqueWand8 +SocketedGemsGetIncreasedAreaOfEffectUnique__1 +SupportedByEchoUniqueWand8 +ControlledDestructionSupportUniqueWand8 +IntelligenceUniqueWand8 +]],[[ +Shade of Solaris +Sage Wand +Variant: Pre 3.5.0 +Variant: Current +Implicits: 1 +SpellDamageOnWeaponImplicitWand6 +ElementalDamagePercentAddedAsChaosUnique__3 +CriticalStrikesDealNoDamageUnique__1 +{variant:1}SpellDamageIfYouHaveCritRecentlyUnique__1[120,120] +{variant:2}SpellDamageIfYouHaveCritRecentlyUnique__1 +]],[[ +Shimmeron +Tornado Wand +Elder Item +Source: Drops from unique{The Elder} +Variant: Pre 3.4.0 +Variant: Pre 3.21.0 +Variant: Current +Implicits: 2 +{variant:1,2}SpellDamageUniqueWand1[35,39] +{variant:3}AddedLightningDamageSpellsAndAttacksImplicit3 +SpellDamageUniqueWand1 +SpellAddedLightningDamageUnique__5 +CriticalMultiplierPerPowerChargeUnique__1 +AdditionalCriticalStrikeChancePerPowerChargeUnique__1 +ChanceToBlockSpellsPerPowerChargeUnique__1 +AddedLightningDamagePerPowerChargeUnique__1 +{variant:1}DamageTakenPerPowerChargeOnCritUnique__1[24000,24000] +{variant:2,3}DamageTakenPerPowerChargeOnCritUnique__1 +]],[[ +Storm Prison +{variant:1,2}Carved Wand +{variant:3}Spiraled Wand +Variant: Pre 2.3.0 +Variant: Pre 3.21.0 +Variant: Current +Implicits: 3 +{variant:1}SpellDamageOnWeaponImplicitWand3[9,13] +{variant:2}SpellDamageOnWeaponImplicitWand3 +{variant:3}AddedLightningDamageSpellsAndAttacksImplicit1 +LocalIncreasedPhysicalDamagePercentUnique__8 +LocalAddedLightningDamageUnique__2 +ManaRegenerationUnique__1 +IncreasedMaximumPowerChargesUniqueWand3 +PowerChargeOnKillChanceUnique__1 +]],[[ +Tulborn +{variant:1,2}Spiraled Wand +{variant:3}Opal Wand +Variant: Pre 3.16.0 +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Drops in Tul Breach or from unique{Tul, Creeping Avalanche} +Upgrade: Upgrades to unique{Tulfall} using currency{Blessing of Tul} +Implicits: 2 +{variant:1,2}SpellDamageOnWeaponImplicitWand5 +{variant:3}AddedColdDamageSpellsAndAttacksImplicit3 +{variant:1,2}IncreasedCastSpeedUnique__20 +{variant:3}SpellAddedColdDamageUnique__7 +{variant:1,2}GainPowerChargeOnKillingFrozenEnemyUnique__1[50,50] +{variant:3}GainPowerChargeOnKillingFrozenEnemyUnique__1 +{variant:1,2}AddedColdDamagePerPowerChargeUnique__1 +{variant:3}ColdExposureAdditionalResistanceUnique__1 +GainManaOnKillingFrozenEnemyUnique__1 +]],[[ +Tulfall +{variant:1,2}Tornado Wand +{variant:3}Opal Wand +Variant: Pre 3.16.0 +Variant: Pre 3.21.0 +Variant: Current +League: Breach +Source: Upgraded from unique{Tulborn} using currency{Blessing of Tul} +Implicits: 2 +{variant:1,2}SpellDamageOnWeaponImplicitWand16 +{variant:3}AddedColdDamageSpellsAndAttacksImplicit3 +{variant:1,2}IncreasedCastSpeedUniqueWand3[10,15] +{variant:3}IncreasedCastSpeedUniqueWand3 +{variant:1}GainPowerChargeOnKillingFrozenEnemyUnique__1[50,50] +{variant:2,3}GainPowerChargeOnKillingFrozenEnemyUnique__1 +{variant:1,2}AddedColdDamagePerPowerChargeUnique__2[15,15][25,25] +{variant:3}AddedColdDamagePerPowerChargeUnique__2 +LosePowerChargesOnMaxPowerChargesUnique__2 +WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1 +{variant:1}IncreasedColdDamagePerFrenzyChargeUnique__2[10,15] +{variant:2}IncreasedColdDamagePerFrenzyChargeUnique__2 +]],[[ +Replica Tulfall +{variant:1}Tornado Wand +{variant:2}Opal Wand +Variant: Pre 3.21.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 2 +{variant:1}SpellDamageOnWeaponImplicitWand16 +{variant:2}AddedColdDamageSpellsAndAttacksImplicit3 +IncreasedCastSpeedUnique__22 +LosePowerChargesOnMaxPowerChargesUnique__1 +WhenReachingMaxPowerChargesGainAFrenzyChargeUnique__1 +IncreasedColdDamagePerFrenzyChargeUnique__1 +PowerChargeOnHittingFrozenEnemyUnique__1 +TakeColdDamageOnMaximumPowerChargesUnique__1____ +]],[[ +Twyzel +{variant:1,2}Sage Wand +{variant:3}Blasting Wand +Variant: Pre 2.3.0 +Variant: Pre 2.27.0 +Variant: Current +Implicits: 2 +{variant:1}SpellDamageOnWeaponImplicitWand6[11,14] +{variant:2}SpellDamageOnWeaponImplicitWand6 +{variant:1,2}SocketedGemsAdditionalProjectilesUniqueWand9 +{variant:1,2}LocalIncreasedPhysicalDamagePercentUniqueWand9[80,120] +{variant:3}LocalIncreasedPhysicalDamagePercentUniqueWand9 +LocalAddedPhysicalDamageUniqueWand9 +LocalIncreasedAttackSpeedUniqueWand9 +LocalCriticalStrikeChanceUniqueWand9 +{variant:3}KineticWandImplicit +{variant:3}MainHandAdditionalProjectilesWhileInOffHandUnique__1 +{variant:3}OffHandAreaOfEffectWhileInMainHandUnique__1 +]],[[ +Replica Twyzel +{variant:1}Sage Wand +{variant:2}Blasting Wand +Variant: Pre 2.27.0 +Variant: Current +League: Heist +Source: Steal from a unique{Curio Display} during a Grand Heist +Implicits: 2 +{variant:1}SpellDamageOnWeaponImplicitWand6 +{variant:2}KineticWandImplicit +LocalIncreasedPhysicalDamagePercentUniqueWand9x +LocalIncreasedAttackSpeedUniqueWand9 +LocalCriticalStrikeChanceUnique__22 +AttackAdditionalProjectilesUnique__1 +]],[[ +Void Battery +Prophecy Wand +Variant: Pre 2.3.0 +Variant: Current +Implicits: 2 +{variant:1}SpellDamageOnWeaponImplicitWand17[16,20] +{variant:2}SpellDamageOnWeaponImplicitWand17 +SpellDamageOnWeaponUniqueWand3 +IncreasedCastSpeedUniqueWand3 +CriticalStrikeChanceUniqueWand3 +IncreasedManaUniqueWand3 +IncreasedMaximumPowerChargesUniqueWand3 +IncreasedSpellDamagePerPowerChargeUniqueWand3 +]],[[ +Mystic Refractor +Pagan Wand +Requires Level 34, 118 Int +Implicits: 1 +IncreasedCastSpeedImplicitMarakethWand1 +AdditionalProjectilesUniqueWand_1 +ProjectileSpeedUnique__9 +IncreasedProjectileDamageUnique__1 +ProjectilesExpireOnHitUniqueWand_1 +]], +[[ +Unlight Extant +Sage Wand +Requires Level 30, 119 Int +Implicits: 1 +SpellDamageOnWeaponImplicitWand6 +IncreasedChaosDamageUniqueWand_1 +IncreasedCastSpeedUniqueWand11 +GlobalChaosSpellGemsLevelUniqueWand_1 +ApplyMaximumWitherOnChaosSkillHitUnique__1 +CanOnlyInflictWitherAgainstFullLifeEnemies__1 +]], +} diff --git a/src/Export/statdesc.lua b/src/Export/statdesc.lua index ae7fb6b5f9..4069b13a3f 100644 --- a/src/Export/statdesc.lua +++ b/src/Export/statdesc.lua @@ -38,7 +38,7 @@ local function parseStatFile(target, order, fileName) curLang = { } --curDescriptor.lang[langName] = curLang else - local statLimits, text, special = line:match('([%d%-#| ]+) "(.-)"%s*(.*)') + local statLimits, text, special = line:match('([%d%-#| !]+) "(.-)"%s*(.*)') if statLimits then local desc = { text = text, limit = { } } for statLimit in statLimits:gmatch("[!%d%-#|]+") do @@ -151,7 +151,12 @@ local function matchLimit(lang, val) for _, desc in ipairs(lang) do local match = true for i, limit in ipairs(desc.limit) do - if (limit[2] ~= "#" and val[i].min > limit[2]) or (limit[1] ~= "#" and val[i].min < limit[1]) then + if limit[1] == "!" then + if val[i].min == limit[2] then + match = false + break + end + elseif (limit[2] ~= "#" and val[i].min > limit[2]) or (limit[1] ~= "#" and val[i].min < limit[1]) then match = false break end @@ -200,6 +205,24 @@ function describeStats(stats) val[i].fmt = "d" end local desc = matchLimit(descriptor[1], val) + -- Hack to handle ranges starting or ending at 0 where no descriptor is defined for 0 + -- Attempt to adapt existing ranges + if not desc then + for _, s in ipairs(val) do + if s.min == 0 and s.max > 0 then + s.min = 1 + s.minZ = true + elseif s.min < 0 and s.max == 0 then + s.max = -1 + s.maxZ = true + end + end + desc = matchLimit(descriptor[1], val) + for _, s in ipairs(val) do + if s.minZ then s.min = 0 end + if s.maxZ then s.max = 0 end + end + end if desc then for _, spec in ipairs(desc) do if spec.k == "negate" then @@ -272,6 +295,10 @@ function describeStats(stats) elseif spec.k == "per_minute_to_per_second_0dp" then val[spec.v].min = val[spec.v].min / 60 val[spec.v].max = val[spec.v].max / 60 + elseif spec.k == "per_minute_to_per_second_1dp" then + val[spec.v].min = round(val[spec.v].min / 60, 1) + val[spec.v].max = round(val[spec.v].max / 60, 1) + val[spec.v].fmt = "g" elseif spec.k == "milliseconds_to_seconds" then val[spec.v].min = val[spec.v].min / 1000 val[spec.v].max = val[spec.v].max / 1000 @@ -316,6 +343,9 @@ function describeStats(stats) elseif spec.k == "double" then val[spec.v].min = val[spec.v].min * 2 val[spec.v].max = val[spec.v].max * 2 + elseif spec.k == "plus_two_hundred" then + val[spec.v].min = val[spec.v].min + 200 + val[spec.v].max = val[spec.v].max + 200 elseif spec.k == "reminderstring" or spec.k == "canonical_line" or spec.k == "_stat" then elseif spec.k then ConPrintf("Unknown description function: %s", spec.k) diff --git a/src/Modules/ModParser.lua b/src/Modules/ModParser.lua index 49510213e8..4ce33b4297 100644 --- a/src/Modules/ModParser.lua +++ b/src/Modules/ModParser.lua @@ -737,6 +737,7 @@ local modNameList = { ["effect of chill and shock on you"] = { "SelfChillEffect", "SelfShockEffect" }, ["chill effect"] = "EnemyChillEffect", ["effect of chill you inflict"] = "EnemyChillEffect", + ["effect of chills you inflict"] = "EnemyChillEffect", ["effect of cold ailments"] = { "EnemyChillEffect" , "EnemyBrittleEffect" }, ["effect of chill on you"] = "SelfChillEffect", ["effect of freeze on you"] = "SelfFreezeEffect", @@ -1697,7 +1698,7 @@ local modTagList = { ["while not ignited, frozen or shocked"] = { tag = { type = "Condition", varList = { "Ignited", "Frozen", "Shocked" }, neg = true } }, ["while bleeding"] = { tag = { type = "Condition", var = "Bleeding" } }, ["while poisoned"] = { tag = { type = "Condition", var = "Poisoned" } }, - ["while you are poisoned"] = { tag = { type = "Condition", var = "Poisoned" } }, + ["wh[ei][nl][ e] ?you are poisoned"] = { tag = { type = "Condition", var = "Poisoned" } }, ["while cursed"] = { tag = { type = "Condition", var = "Cursed" } }, ["while not cursed"] = { tag = { type = "Condition", var = "Cursed", neg = true } }, ["while there is only one nearby enemy"] = { tagList = { { type = "Multiplier", var = "NearbyEnemies", limit = 1 }, { type = "Condition", var = "OnlyOneNearbyEnemy" } } }, @@ -3623,7 +3624,7 @@ local specialModList = { ["hits with prismatic skills always ?i?n?f?l?i?c?t? (%w+)"] = function(_, type) return { mod("Enemy" .. firstToUpper(type) .. "Chance", "BASE", 100, nil, ModFlag.Hit, { type = "SkillType", skillType = SkillType.RandomElement }), } end, - ["critical strikes do not inherently apply non%-damaging ailments"] = { + ["critical strikes do not [ia][np][fp]l[iy]c?t? non%-damaging ailments"] = { flag("CritsDontAlwaysChill"), flag("CritsDontAlwaysFreeze"), flag("CritsDontAlwaysShock"), @@ -4403,7 +4404,7 @@ local specialModList = { ["arrows always pierce"] = { flag("PierceAllTargets", nil, 0, KeywordFlag.Arrow) }, ["arrows pierce all targets"] = { flag("PierceAllTargets", nil, 0, KeywordFlag.Arrow) }, ["arrows that pierce cause bleeding"] = { mod("BleedChance", "BASE", 100, nil, ModFlag.Projectile, KeywordFlag.Arrow, { type = "StatThreshold", stat = "PierceCount", threshold = 1 }) }, - ["arrows that pierce have (%d+)%% chance to cause bleeding"] = function(num) return { mod("BleedChance", "BASE", num, nil, ModFlag.Projectile, KeywordFlag.Arrow, { type = "StatThreshold", stat = "PierceCount", threshold = 1 }) } end, + ["arrows that pierce have (%d+)%% chance to [ic][na][fu][ls][ie]c?t? bleeding"] = function(num) return { mod("BleedChance", "BASE", num, nil, ModFlag.Projectile, KeywordFlag.Arrow, { type = "StatThreshold", stat = "PierceCount", threshold = 1 }) } end, ["arrows that pierce deal (%d+)%% increased damage"] = function(num) return { mod("Damage", "INC", num, nil, ModFlag.Projectile, KeywordFlag.Arrow, { type = "StatThreshold", stat = "PierceCount", threshold = 1 }) } end, ["projectiles gain (%d+)%% of non%-chaos damage as extra chaos damage per chain"] = function(num) return { mod("NonChaosDamageGainAsChaos", "BASE", num, nil, ModFlag.Projectile, { type = "PerStat", stat = "Chain" }) } end, ["projectiles that have chained gain (%d+)%% of non%-chaos damage as extra chaos damage"] = function(num) return { mod("NonChaosDamageGainAsChaos", "BASE", num, nil, ModFlag.Projectile, { type = "StatThreshold", stat = "Chain", threshold = 1 }) } end, @@ -5275,6 +5276,9 @@ local specialModList = { ["gain %d+ rage on critical hit with attacks, no more than once every [%d%.]+ seconds"] = { flag("Condition:CanGainRage"), }, + ["gain %d+ rage on critical hit with attacks"] = { + flag("Condition:CanGainRage"), + }, ["warcry skills' cooldown time is (%d+) seconds"] = function(num) return { mod("CooldownRecovery", "OVERRIDE", num, nil, 0, KeywordFlag.Warcry) } end, ["non%-instant warcries you use yourself have no cooldown"] = function(num) return { mod("CooldownRecovery", "OVERRIDE", 0, nil, 0, KeywordFlag.Warcry, { type = "SkillType", skillTypeList = { SkillType.Instant, SkillType.Totem, SkillType.Triggered }, neg = true }) } end, ["non%-instant warcries ignore their cooldown when used"] = function(num) return { mod("CooldownRecovery", "OVERRIDE", 0, nil, 0, KeywordFlag.Warcry, { type = "SkillType", skillType = SkillType.Instant, neg = true }) } end, @@ -5456,6 +5460,9 @@ local specialModList = { ["(%d+)%% chance for hits to ignore enemy physical damage reduction while you have sacrificial zeal"] = function(num) return { mod("ChanceToIgnoreEnemyPhysicalDamageReduction", "BASE", num, nil, { type = "Condition", var = "SacrificialZeal" }), } end, + ["hits have (%d+)%% chance to ignore enemy physical damage reduction while you have sacrificial zeal"] = function(num) return { + mod("ChanceToIgnoreEnemyPhysicalDamageReduction", "BASE", num, nil, { type = "Condition", var = "SacrificialZeal" }), + } end, ["minions attacks overwhelm (%d+)%% physical damage reduction"] = function(num) return { mod("MinionModifier", "LIST", { mod = mod("EnemyPhysicalDamageReduction", "BASE", -num, { type = "SkillType", skillType = SkillType.Attack }) }) } end, diff --git a/src/Modules/StatDescriber.lua b/src/Modules/StatDescriber.lua index 7cec35be05..9a3dc9d3cb 100644 --- a/src/Modules/StatDescriber.lua +++ b/src/Modules/StatDescriber.lua @@ -182,6 +182,9 @@ local function applySpecial(val, spec) elseif spec.k == "double" then val[spec.v].min = val[spec.v].min * 2 val[spec.v].max = val[spec.v].max * 2 + elseif spec.k == "plus_two_hundred" then + val[spec.v].min = val[spec.v].min + 200 + val[spec.v].max = val[spec.v].max + 200 elseif spec.k == "reminderstring" or spec.k == "canonical_line" or spec.k == "_stat" then elseif spec.k then ConPrintf("Unknown description function: %s", spec.k)